This commit is contained in:
friendica 2013-02-26 17:33:47 -08:00
commit 0433263866
22 changed files with 9836 additions and 9774 deletions

View file

@ -415,6 +415,9 @@ intval($params['uid']), LOGGER_DEBUG);
call_hooks('enotify_mail', $datarray);
// check whether sending post content in email notifications is allowed
$content_allowed = !get_config('system','enotify_no_content');
// load the template for private message notifications
$tpl = get_markup_template('email_notify_html.tpl');
$email_html_body = replace_macros($tpl,array(
@ -432,7 +435,8 @@ intval($params['uid']), LOGGER_DEBUG);
'$thanks' => $datarray['thanks'],
'$site_admin' => $datarray['site_admin'],
'$title' => $datarray['title'],
'$htmlversion' => $datarray['htmlversion'],
'$htmlversion' => $datarray['htmlversion'],
'$content_allowed' => $content_allowed,
));
// load the template for private message notifications
@ -453,6 +457,7 @@ intval($params['uid']), LOGGER_DEBUG);
'$site_admin' => $datarray['site_admin'],
'$title' => $datarray['title'],
'$textversion' => $datarray['textversion'],
'$content_allowed' => $content_allowed,
));
// logger('text: ' . $email_text_body);

View file

@ -426,6 +426,7 @@ function onepoll_run(&$argv, &$argc){
continue;
}
$datarray['body'] = escape_tags($r['body']);
$datarray['body'] = limit_body_size($datarray['body']);
logger("Mail: Importing ".$msg_uid." for ".$mailconf[0]['user']);

View file

@ -75,6 +75,9 @@ function complete_conversation($itemid, $conversation_url, $only_add_conversatio
$conv_as = json_decode($conv_as);
$first_id = "";
if (!is_array($conv_as->items))
return;
$items = array_reverse($conv_as->items);
foreach ($items as $single_conv) {

View file

@ -255,6 +255,8 @@ function admin_page_site_post(&$a){
$global_directory = ((x($_POST,'directory_submit_url')) ? notags(trim($_POST['directory_submit_url'])) : '');
$thread_allow = ((x($_POST,'thread_allow')) ? True : False);
$newuser_private = ((x($_POST,'newuser_private')) ? True : False);
$enotify_no_content = ((x($_POST,'enotify_no_content')) ? True : False);
$no_multi_reg = ((x($_POST,'no_multi_reg')) ? True : False);
$no_openid = !((x($_POST,'no_openid')) ? True : False);
$no_regfullname = !((x($_POST,'no_regfullname')) ? True : False);
@ -371,6 +373,7 @@ function admin_page_site_post(&$a){
}
set_config('system','thread_allow', $thread_allow);
set_config('system','newuser_private', $newuser_private);
set_config('system','enotify_no_content', $enotify_no_content);
set_config('system','block_extended_register', $no_multi_reg);
set_config('system','no_openid', $no_openid);
@ -505,6 +508,7 @@ function admin_page_site(&$a) {
'$global_directory' => array('directory_submit_url', t("Global directory update URL"), get_config('system','directory_submit_url'), t("URL to update the global directory. If this is not set, the global directory is completely unavailable to the application.")),
'$thread_allow' => array('thread_allow', t("Allow threaded items"), get_config('system','thread_allow'), t("Allow infinite level threading for items on this site.")),
'$newuser_private' => array('newuser_private', t("Private posts by default for new users"), get_config('system','newuser_private'), t("Set default post permissions for all new members to the default privacy group rather than public.")),
'$enotify_no_content' => array('enotify_no_content', t("Don't include post content in email notifications"), get_config('system','enotify_no_content'), t("Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure.")),
'$no_multi_reg' => array('no_multi_reg', t("Block multiple registrations"), get_config('system','block_extended_register'), t("Disallow users to register additional accounts for use as pages.")),
'$no_openid' => array('no_openid', t("OpenID support"), !get_config('system','no_openid'), t("OpenID support for registration and logins.")),
@ -690,7 +694,7 @@ function admin_page_users(&$a){
}
$users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro`, `lastitem`.`lastitem_date`
$users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro`, `lastitem`.`lastitem_date`, `user`.`account_expired`
FROM
(SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid`
FROM `item`
@ -714,7 +718,7 @@ function admin_page_users(&$a){
t('Normal Account'),
t('Soapbox Account'),
t('Community/Celebrity Account'),
t('Automatic Friend Account')
t('Automatic Friend Account')
);
$e['page-flags'] = $accounts[$e['page-flags']];
$e['register_date'] = relative_date($e['register_date']);
@ -752,6 +756,7 @@ function admin_page_users(&$a){
'$block' => t('Block'),
'$unblock' => t('Unblock'),
'$siteadmin' => t('Site admin'),
'$accountexpired' => t('Account expired'),
'$h_users' => t('Users'),
'$th_users' => array( t('Name'), t('Email'), t('Register date'), t('Last login'), t('Last item'), t('Account') ),

View file

@ -84,6 +84,7 @@
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$enotify_no_content }}{{ endinc }}
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>

View file

@ -70,7 +70,7 @@
<td class='register_date'>$u.register_date</td>
<td class='login_date'>$u.login_date</td>
<td class='lastitem_date'>$u.lastitem_date</td>
<td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }}</td>
<td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} {{ if $u.account_expired }}($accountexpired){{ endif }}</td>
<td class="checkbox">
{{ if $u.is_admin }}
&nbsp;

View file

@ -25,8 +25,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2013-02-07 10:00-0800\n"
"PO-Revision-Date: 2013-02-17 10:09+0000\n"
"POT-Creation-Date: 2013-02-22 00:00-0800\n"
"PO-Revision-Date: 2013-02-23 18:52+0000\n"
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
@ -35,15 +35,7550 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../../mod/oexchange.php:25
msgid "Post successful."
msgstr "Beitrag erfolgreich veröffentlicht."
#: ../../addon.old/altpager/altpager.php:46
#: ../../addon/altpager/altpager.php:46
msgid "Altpager settings updated."
msgstr "Altpager Einstellungen sind aktualisiert."
#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
#: ../../mod/update_display.php:22
msgid "[Embedded content - reload page to view]"
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
#: ../../addon.old/altpager/altpager.php:79
#: ../../addon/altpager/altpager.php:83
msgid "Alternate Pagination Setting"
msgstr "Alternative Seitenumbruch Einstellung"
#: ../../addon.old/altpager/altpager.php:81
#: ../../addon/altpager/altpager.php:85
msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
msgstr "Nutze Links zu \"neuer\" und \"älter\" Seiten, statt Seiten Nummern?"
#: ../../addon.old/altpager/altpager.php:87 ../../addon.old/bg/bg.php:90
#: ../../addon.old/blackout/blackout.php:98
#: ../../addon.old/blockem/blockem.php:57
#: ../../addon.old/blogger/blogger.php:102
#: ../../addon.old/drpost/drpost.php:110 ../../addon.old/dwpost/dwpost.php:93
#: ../../addon.old/editplain/editplain.php:84
#: ../../addon.old/facebook/facebook.php:619
#: ../../addon.old/fbpost/fbpost.php:226
#: ../../addon.old/forumlist/forumlist.php:175
#: ../../addon.old/fromapp/fromapp.php:77
#: ../../addon.old/fromgplus/fromgplus.php:40
#: ../../addon.old/geonames/geonames.php:187 ../../addon.old/gnot/gnot.php:88
#: ../../addon.old/gravatar/gravatar.php:95
#: ../../addon.old/group_text/group_text.php:84
#: ../../addon.old/ijpost/ijpost.php:93
#: ../../addon.old/impressum/impressum.php:83 ../../addon.old/irc/irc.php:55
#: ../../addon.old/jappixmini/jappixmini.php:307
#: ../../addon.old/libertree/libertree.php:90
#: ../../addon.old/libravatar/libravatar.php:99
#: ../../addon.old/ljpost/ljpost.php:93 ../../addon.old/mathjax/mathjax.php:42
#: ../../addon.old/notimeline/notimeline.php:64
#: ../../addon.old/nsfw/nsfw.php:88
#: ../../addon.old/numfriends/numfriends.php:85
#: ../../addon.old/oembed.old/oembed.php:41
#: ../../addon.old/openstreetmap/openstreetmap.php:70
#: ../../addon.old/page/page.php:211
#: ../../addon.old/pageheader/pageheader.php:55
#: ../../addon.old/piwik/piwik.php:89 ../../addon.old/planets/planets.php:158
#: ../../addon.old/posterous/posterous.php:103
#: ../../addon.old/qcomment/qcomment.php:61
#: ../../addon.old/randplace/randplace.php:177
#: ../../addon.old/showmore/showmore.php:48
#: ../../addon.old/snautofollow/snautofollow.php:64
#: ../../addon.old/startpage/startpage.php:92
#: ../../addon.old/statusnet/statusnet.php:278
#: ../../addon.old/statusnet/statusnet.php:292
#: ../../addon.old/statusnet/statusnet.php:318
#: ../../addon.old/statusnet/statusnet.php:325
#: ../../addon.old/statusnet/statusnet.php:353
#: ../../addon.old/statusnet/statusnet.php:576
#: ../../addon.old/tumblr/tumblr.php:90
#: ../../addon.old/twitter/twitter.php:180
#: ../../addon.old/twitter/twitter.php:209
#: ../../addon.old/twitter/twitter.php:394
#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
#: ../../addon.old/wppost/wppost.php:110 ../../addon.old/yourls/yourls.php:76
#: ../../addon/altpager/altpager.php:91 ../../addon/altpager/altpager.php:98
#: ../../addon/blackout/blackout.php:99 ../../addon/blockem/blockem.php:57
#: ../../addon/blogger/blogger.php:102 ../../addon/dwpost/dwpost.php:93
#: ../../addon/editplain/editplain.php:84
#: ../../addon/facebook/facebook.php:621 ../../addon/fbpost/fbpost.php:280
#: ../../addon/forumlist/forumlist.php:178 ../../addon/fromapp/fromapp.php:77
#: ../../addon/fromgplus/fromgplus.php:44
#: ../../addon/geonames/geonames.php:187 ../../addon/gnot/gnot.php:88
#: ../../addon/gravatar/gravatar.php:95
#: ../../addon/group_text/group_text.php:84 ../../addon/ijpost/ijpost.php:93
#: ../../addon/impressum/impressum.php:83 ../../addon/irc/irc.php:55
#: ../../addon/jappixmini/jappixmini.php:307
#: ../../addon/libertree/libertree.php:90
#: ../../addon/libravatar/libravatar.php:99 ../../addon/ljpost/ljpost.php:93
#: ../../addon/mathjax/mathjax.php:42 ../../addon/notimeline/notimeline.php:64
#: ../../addon/nsfw/nsfw.php:88 ../../addon/numfriends/numfriends.php:85
#: ../../addon/openstreetmap/openstreetmap.php:94
#: ../../addon/page/page.php:211 ../../addon/pageheader/pageheader.php:55
#: ../../addon/piwik/piwik.php:89 ../../addon/planets/planets.php:158
#: ../../addon/posterous/posterous.php:103
#: ../../addon/qcomment/qcomment.php:61
#: ../../addon/randplace/randplace.php:177
#: ../../addon/remote_permissions/remote_permissions.php:48
#: ../../addon/remote_permissions/remote_permissions.php:196
#: ../../addon/showmore/showmore.php:48
#: ../../addon/snautofollow/snautofollow.php:64
#: ../../addon/startpage/startpage.php:92
#: ../../addon/statusnet/statusnet.php:290
#: ../../addon/statusnet/statusnet.php:304
#: ../../addon/statusnet/statusnet.php:330
#: ../../addon/statusnet/statusnet.php:337
#: ../../addon/statusnet/statusnet.php:374
#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
#: ../../addon/twitter/twitter.php:191 ../../addon/twitter/twitter.php:229
#: ../../addon/twitter/twitter.php:556
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/wppost/wppost.php:110 ../../addon/yourls/yourls.php:76
#: ../../mod/profiles.php:626 ../../mod/admin.php:475 ../../mod/admin.php:744
#: ../../mod/admin.php:882 ../../mod/admin.php:1082 ../../mod/admin.php:1169
#: ../../mod/contacts.php:386 ../../mod/settings.php:560
#: ../../mod/settings.php:670 ../../mod/settings.php:739
#: ../../mod/settings.php:811 ../../mod/settings.php:1037
#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/install.php:248
#: ../../mod/install.php:286 ../../mod/invite.php:140
#: ../../mod/localtime.php:45 ../../mod/manage.php:110
#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137
#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
#: ../../mod/content.php:733 ../../object/Item.php:643
#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
#: ../../view/theme/quattro/config.php:64
msgid "Submit"
msgstr "Senden"
#: ../../addon.old/bg/bg.php:51
msgid "Bg settings updated."
msgstr "Bg Einstellungen sind aktualisiert."
#: ../../addon.old/bg/bg.php:82
msgid "Bg Settings"
msgstr "Bg Einstellungen"
#: ../../addon.old/bg/bg.php:84 ../../addon.old/numfriends/numfriends.php:79
#: ../../addon/numfriends/numfriends.php:79
msgid "How many contacts to display on profile sidebar"
msgstr "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden"
#: ../../addon.old/blockem/blockem.php:51 ../../addon/blockem/blockem.php:51
msgid "\"Blockem\" Settings"
msgstr "\"Blockem\"-Einstellungen"
#: ../../addon.old/blockem/blockem.php:53 ../../addon/blockem/blockem.php:53
msgid "Comma separated profile URLS to block"
msgstr "Profil-URLs, die blockiert werden sollen (durch Kommas getrennt)"
#: ../../addon.old/blockem/blockem.php:70 ../../addon/blockem/blockem.php:70
msgid "BLOCKEM Settings saved."
msgstr "BLOCKEM-Einstellungen gesichert."
#: ../../addon.old/blockem/blockem.php:105 ../../addon/blockem/blockem.php:105
#, php-format
msgid "Blocked %s - Click to open/close"
msgstr "%s blockiert - Zum Öffnen/Schließen klicken"
#: ../../addon.old/blockem/blockem.php:160 ../../addon/blockem/blockem.php:160
msgid "Unblock Author"
msgstr "Autor freischalten"
#: ../../addon.old/blockem/blockem.php:162 ../../addon/blockem/blockem.php:162
msgid "Block Author"
msgstr "Autor blockieren"
#: ../../addon.old/blockem/blockem.php:194 ../../addon/blockem/blockem.php:194
msgid "blockem settings updated"
msgstr "blockem Einstellungen aktualisiert"
#: ../../addon.old/blogger/blogger.php:42 ../../addon/blogger/blogger.php:42
msgid "Post to blogger"
msgstr "Auf Blogger posten"
#: ../../addon.old/blogger/blogger.php:74 ../../addon/blogger/blogger.php:74
msgid "Blogger Post Settings"
msgstr "Einstellungen zum posten auf Blogger"
#: ../../addon.old/blogger/blogger.php:76 ../../addon/blogger/blogger.php:76
msgid "Enable Blogger Post Plugin"
msgstr "Blogger-Post-Plugin aktivieren"
#: ../../addon.old/blogger/blogger.php:81 ../../addon/blogger/blogger.php:81
msgid "Blogger username"
msgstr "Blogger-Benutzername"
#: ../../addon.old/blogger/blogger.php:86 ../../addon/blogger/blogger.php:86
msgid "Blogger password"
msgstr "Blogger-Passwort"
#: ../../addon.old/blogger/blogger.php:91 ../../addon/blogger/blogger.php:91
msgid "Blogger API URL"
msgstr "Blogger-API-URL"
#: ../../addon.old/blogger/blogger.php:96 ../../addon/blogger/blogger.php:96
msgid "Post to Blogger by default"
msgstr "Standardmäßig auf Blogger posten"
#: ../../addon.old/blogger/blogger.php:172
#: ../../addon.old/drpost/drpost.php:184
#: ../../addon.old/posterous/posterous.php:189
#: ../../addon.old/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
#: ../../addon/posterous/posterous.php:189 ../../addon/wppost/wppost.php:201
msgid "Post from Friendica"
msgstr "Beitrag via Friendica"
#: ../../addon.old/buglink/buglink.php:15 ../../addon/buglink/buglink.php:15
msgid "Report Bug"
msgstr "Fehlerreport erstellen"
#: ../../addon.old/communityhome/twillingham/communityhome.php:28
#: ../../addon.old/communityhome/twillingham/communityhome.php:34
#: ../../addon.old/communityhome/communityhome.php:28
#: ../../addon.old/communityhome/communityhome.php:34
#: ../../addon/communityhome/communityhome.php:28
#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
#: ../../boot.php:1058
msgid "Login"
msgstr "Anmeldung"
#: ../../addon.old/communityhome/twillingham/communityhome.php:29
#: ../../addon.old/communityhome/communityhome.php:29
#: ../../addon/communityhome/communityhome.php:29
msgid "OpenID"
msgstr "OpenID"
#: ../../addon.old/communityhome/twillingham/communityhome.php:38
#: ../../addon.old/communityhome/communityhome.php:38
#: ../../addon/communityhome/communityhome.php:39
msgid "Latest users"
msgstr "Letzte Benutzer"
#: ../../addon.old/communityhome/twillingham/communityhome.php:81
#: ../../addon.old/communityhome/communityhome.php:81
#: ../../addon/communityhome/communityhome.php:84
msgid "Most active users"
msgstr "Aktivste Nutzer"
#: ../../addon.old/communityhome/communityhome.php:98
#: ../../addon/communityhome/communityhome.php:102
msgid "Latest photos"
msgstr "Neueste Fotos"
#: ../../addon.old/communityhome/communityhome.php:110
#: ../../addon/communityhome/communityhome.php:115 ../../mod/photos.php:59
#: ../../mod/photos.php:154 ../../mod/photos.php:1058
#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
#: ../../view/theme/diabook/theme.php:492
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: ../../addon.old/communityhome/communityhome.php:111
#: ../../addon/communityhome/communityhome.php:116 ../../include/user.php:325
#: ../../include/user.php:332 ../../include/user.php:339
#: ../../mod/photos.php:154 ../../mod/photos.php:725 ../../mod/photos.php:1183
#: ../../mod/photos.php:1206 ../../mod/profile_photo.php:74
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:493
msgid "Profile Photos"
msgstr "Profilbilder"
#: ../../addon.old/communityhome/communityhome.php:133
#: ../../addon/communityhome/communityhome.php:141
msgid "Latest likes"
msgstr "Neueste Favoriten"
#: ../../addon.old/communityhome/communityhome.php:155
#: ../../addon/communityhome/communityhome.php:163 ../../include/text.php:1554
#: ../../include/conversation.php:118 ../../include/conversation.php:246
#: ../../view/theme/diabook/theme.php:456
msgid "event"
msgstr "Veranstaltung"
#: ../../addon.old/communityhome/communityhome.php:158
#: ../../addon.old/communityhome/communityhome.php:167
#: ../../addon.old/facebook/facebook.php:1598
#: ../../addon/communityhome/communityhome.php:166
#: ../../addon/communityhome/communityhome.php:175
#: ../../addon/facebook/facebook.php:1600 ../../include/diaspora.php:1874
#: ../../include/conversation.php:121 ../../include/conversation.php:130
#: ../../include/conversation.php:249 ../../include/conversation.php:258
#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../mod/like.php:322 ../../view/theme/diabook/theme.php:459
#: ../../view/theme/diabook/theme.php:468
msgid "status"
msgstr "Status"
#: ../../addon.old/communityhome/communityhome.php:163
#: ../../addon/communityhome/communityhome.php:171 ../../include/text.php:1556
#: ../../include/diaspora.php:1874 ../../include/conversation.php:126
#: ../../include/conversation.php:254 ../../mod/subthread.php:87
#: ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../view/theme/diabook/theme.php:464
msgid "photo"
msgstr "Foto"
#: ../../addon.old/communityhome/communityhome.php:172
#: ../../addon.old/facebook/facebook.php:1602
#: ../../addon/communityhome/communityhome.php:180
#: ../../addon/facebook/facebook.php:1604 ../../include/diaspora.php:1890
#: ../../include/conversation.php:137 ../../mod/like.php:168
#: ../../view/theme/diabook/theme.php:473
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s"
#: ../../addon.old/communityhome/communityhome.php:179
#: ../../addon/communityhome/communityhome.php:189 ../../mod/home.php:34
#, php-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
msgid "Private Events"
msgstr "Privater Termin"
#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
msgid "Private Addressbooks"
msgstr "Private Adressbücher"
#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
#: ../../addon/dav/common/wdcal_backend.inc.php:92
#: ../../addon/dav/common/wdcal_backend.inc.php:166
#: ../../addon/dav/common/wdcal_backend.inc.php:178
#: ../../addon/dav/common/wdcal_backend.inc.php:206
#: ../../addon/dav/common/wdcal_backend.inc.php:214
#: ../../addon/dav/common/wdcal_backend.inc.php:229
msgid "No access"
msgstr "Kein Zugriff"
#: ../../addon.old/dav/common/wdcal_configuration.php:148
#: ../../addon/dav/common/wdcal_configuration.php:148
msgid "U.S. Time Format (mm/dd/YYYY)"
msgstr "U.S. Datumsformat (mm/dd/YYYY)"
#: ../../addon.old/dav/common/wdcal_configuration.php:243
#: ../../addon/dav/common/wdcal_configuration.php:243
msgid "German Time Format (dd.mm.YYYY)"
msgstr "Deutsches Datumsformat (dd.mm.YYYY)"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
#: ../../addon/dav/common/wdcal_edit.inc.php:30
#: ../../addon/dav/common/wdcal_edit.inc.php:738
msgid "Could not open component for editing"
msgstr "Kalender-Editierfunktion konnte nicht geöffnet werden"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
#: ../../addon.old/dav/friendica/layout.fnk.php:143
#: ../../addon.old/dav/friendica/layout.fnk.php:422
#: ../../addon/dav/common/wdcal_edit.inc.php:140
#: ../../addon/dav/friendica/layout.fnk.php:143
#: ../../addon/dav/friendica/layout.fnk.php:422
msgid "Go back to the calendar"
msgstr "Zurück zum Kalender"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
#: ../../addon/dav/common/wdcal_edit.inc.php:144
msgid "Event data"
msgstr "Veranstaltungsdetails"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
#: ../../addon.old/dav/friendica/main.php:239
#: ../../addon/dav/common/wdcal_edit.inc.php:146
#: ../../addon/dav/friendica/main.php:239
msgid "Calendar"
msgstr "Kalender"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
#: ../../addon/dav/common/wdcal_edit.inc.php:163
msgid "Special color"
msgstr "Spezielle Farbe"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
#: ../../addon/dav/common/wdcal_edit.inc.php:169
msgid "Subject"
msgstr "Betreff:"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
#: ../../addon/dav/common/wdcal_edit.inc.php:173
msgid "Starts"
msgstr "Beginnt"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
#: ../../addon/dav/common/wdcal_edit.inc.php:178
msgid "Ends"
msgstr "Endet"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
#: ../../addon/dav/common/wdcal_edit.inc.php:183 ../../mod/profiles.php:367
msgid "Location"
msgstr "Wohnort"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
#: ../../addon/dav/common/wdcal_edit.inc.php:185
msgid "Description"
msgstr "Beschreibung"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
#: ../../addon/dav/common/wdcal_edit.inc.php:188
msgid "Recurrence"
msgstr "Wiederholungen:"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
#: ../../addon/dav/common/wdcal_edit.inc.php:190
msgid "Frequency"
msgstr "Frequenz"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
#: ../../addon/dav/common/wdcal_edit.inc.php:191
#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
#: ../../mod/settings.php:732 ../../mod/settings.php:737
msgid "None"
msgstr "Keine"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
#: ../../addon/dav/common/wdcal_edit.inc.php:194
#: ../../include/contact_selectors.php:59
msgid "Daily"
msgstr "Täglich"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
#: ../../addon/dav/common/wdcal_edit.inc.php:197
#: ../../include/contact_selectors.php:60
msgid "Weekly"
msgstr "Wöchentlich"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
#: ../../addon/dav/common/wdcal_edit.inc.php:200
#: ../../include/contact_selectors.php:61
msgid "Monthly"
msgstr "Monatlich"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
#: ../../addon/dav/common/wdcal_edit.inc.php:203
msgid "Yearly"
msgstr "Jährlich"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
#: ../../addon/dav/common/wdcal_edit.inc.php:214
#: ../../include/datetime.php:288
msgid "days"
msgstr "Tage"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
#: ../../addon/dav/common/wdcal_edit.inc.php:215
#: ../../include/datetime.php:287
msgid "weeks"
msgstr "Wochen"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
#: ../../addon/dav/common/wdcal_edit.inc.php:216
#: ../../include/datetime.php:286
msgid "months"
msgstr "Monate"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
#: ../../addon/dav/common/wdcal_edit.inc.php:217
#: ../../include/datetime.php:285
msgid "years"
msgstr "Jahre"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "Interval"
msgstr "Intervall"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "All %select% %time%"
msgstr "Jeden %select% %time%"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
#: ../../addon/dav/common/wdcal_edit.inc.php:222
#: ../../addon/dav/common/wdcal_edit.inc.php:260
#: ../../addon/dav/common/wdcal_edit.inc.php:481
msgid "Days"
msgstr "Tage"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
#: ../../addon/dav/common/wdcal_edit.inc.php:231
#: ../../addon/dav/common/wdcal_edit.inc.php:254
#: ../../addon/dav/common/wdcal_edit.inc.php:270
#: ../../addon/dav/common/wdcal_edit.inc.php:293
#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:1015
msgid "Sunday"
msgstr "Sonntag"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
#: ../../addon/dav/common/wdcal_edit.inc.php:235
#: ../../addon/dav/common/wdcal_edit.inc.php:274
#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:1015
msgid "Monday"
msgstr "Montag"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
#: ../../addon/dav/common/wdcal_edit.inc.php:238
#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:1015
msgid "Tuesday"
msgstr "Dienstag"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
#: ../../addon/dav/common/wdcal_edit.inc.php:241
#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:1015
msgid "Wednesday"
msgstr "Mittwoch"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
#: ../../addon/dav/common/wdcal_edit.inc.php:244
#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:1015
msgid "Thursday"
msgstr "Donnerstag"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
#: ../../addon/dav/common/wdcal_edit.inc.php:247
#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:1015
msgid "Friday"
msgstr "Freitag"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
#: ../../addon/dav/common/wdcal_edit.inc.php:250
#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:1015
msgid "Saturday"
msgstr "Samstag"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
#: ../../addon/dav/common/wdcal_edit.inc.php:297
msgid "First day of week:"
msgstr "Erster Tag der Woche"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
#: ../../addon/dav/common/wdcal_edit.inc.php:350
#: ../../addon/dav/common/wdcal_edit.inc.php:373
msgid "Day of month"
msgstr "Tag des Monats"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
#: ../../addon/dav/common/wdcal_edit.inc.php:354
msgid "#num#th of each month"
msgstr "#num#ten jedes Monats"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
#: ../../addon/dav/common/wdcal_edit.inc.php:357
msgid "#num#th-last of each month"
msgstr "letzten #num#ten jedes Monats"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
#: ../../addon/dav/common/wdcal_edit.inc.php:360
msgid "#num#th #wkday# of each month"
msgstr "jeden #num#ten #wkday# eines Monats"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
#: ../../addon/dav/common/wdcal_edit.inc.php:363
msgid "#num#th-last #wkday# of each month"
msgstr "jeden #num#ten letzten #wkday# eines Monats"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
#: ../../addon.old/dav/friendica/layout.fnk.php:255
#: ../../addon/dav/common/wdcal_edit.inc.php:372
#: ../../addon/dav/friendica/layout.fnk.php:255
msgid "Month"
msgstr "Monat"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
#: ../../addon/dav/common/wdcal_edit.inc.php:377
msgid "#num#th of the given month"
msgstr "#num#ten des Monats"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
#: ../../addon/dav/common/wdcal_edit.inc.php:380
msgid "#num#th-last of the given month"
msgstr "letzten #num#ten des Monats"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
#: ../../addon/dav/common/wdcal_edit.inc.php:383
msgid "#num#th #wkday# of the given month"
msgstr "jeden #num#ten eines Monats"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
#: ../../addon/dav/common/wdcal_edit.inc.php:386
msgid "#num#th-last #wkday# of the given month"
msgstr "jeden #num#ten letzten eines Monats"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
#: ../../addon/dav/common/wdcal_edit.inc.php:413
msgid "Repeat until"
msgstr "Wiederholungen"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
#: ../../addon/dav/common/wdcal_edit.inc.php:417
msgid "Infinite"
msgstr "unendlich"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
#: ../../addon/dav/common/wdcal_edit.inc.php:420
msgid "Until the following date"
msgstr "bis zum folgenden Datum"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
#: ../../addon/dav/common/wdcal_edit.inc.php:423
msgid "Number of times"
msgstr "Bestimmte Anzahl von Wiederholungen"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
#: ../../addon/dav/common/wdcal_edit.inc.php:429
msgid "Exceptions"
msgstr "Ausnahmen"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
#: ../../addon/dav/common/wdcal_edit.inc.php:432
msgid "none"
msgstr "keine"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
#: ../../addon/dav/common/wdcal_edit.inc.php:449
msgid "Notification"
msgstr "Benachrichtigung"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
#: ../../addon/dav/common/wdcal_edit.inc.php:466
msgid "Notify by"
msgstr "Benarchrichtigungsmethode"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
#: ../../addon/dav/common/wdcal_edit.inc.php:468 ../../mod/delegate.php:130
#: ../../mod/tagrm.php:93
msgid "Remove"
msgstr "Entfernen"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
#: ../../addon/dav/common/wdcal_edit.inc.php:469
msgid "E-Mail"
msgstr "E-Mail"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
#: ../../addon/dav/common/wdcal_edit.inc.php:470
msgid "On Friendica / Display"
msgstr "Bei Friendica / Anzeige"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
#: ../../addon/dav/common/wdcal_edit.inc.php:474
msgid "Time"
msgstr "Zeit"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
#: ../../addon/dav/common/wdcal_edit.inc.php:478
msgid "Hours"
msgstr "Stunden"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
#: ../../addon/dav/common/wdcal_edit.inc.php:479
msgid "Minutes"
msgstr "Minuten"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
#: ../../addon/dav/common/wdcal_edit.inc.php:480
msgid "Seconds"
msgstr "Sekunden"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
#: ../../addon/dav/common/wdcal_edit.inc.php:482
msgid "Weeks"
msgstr "Wochen"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
#: ../../addon/dav/common/wdcal_edit.inc.php:485
msgid "before the"
msgstr "vor dem"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
#: ../../addon/dav/common/wdcal_edit.inc.php:486
msgid "start of the event"
msgstr "Beginn des Termins"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
#: ../../addon/dav/common/wdcal_edit.inc.php:487
msgid "end of the event"
msgstr "Ende des Termins"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
#: ../../addon/dav/common/wdcal_edit.inc.php:492
msgid "Add a notification"
msgstr "Benachrichtigung hinzufügen"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
#: ../../addon/dav/common/wdcal_edit.inc.php:687
msgid "The event #name# will start at #date"
msgstr "Der Termin #name# wird am #date anfangen"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
#: ../../addon/dav/common/wdcal_edit.inc.php:696
msgid "#name# is about to begin."
msgstr "#name# beginnt demnächst."
#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
#: ../../addon/dav/common/wdcal_edit.inc.php:769
msgid "Saved"
msgstr "Gespeichert"
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
msgid "Private Calendar"
msgstr "Privater Kalender"
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
msgid "Friendica Events: Mine"
msgstr "Meine Friendica-Veranstaltungen"
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
msgid "Friendica Events: Contacts"
msgstr "Friendica Veranstaltungen meiner Kontakte"
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
msgid "Private Addresses"
msgstr "Private Adressen"
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
msgid "Friendica Contacts"
msgstr "Friendica Kontakte"
#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
msgid "Friendica-Native events"
msgstr "Friendica Veranstaltungen"
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
msgid "Friendica-Contacts"
msgstr "Friendica-Kontakte"
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
msgid "Your Friendica-Contacts"
msgstr "Deine Friendica-Kontakte"
#: ../../addon.old/dav/friendica/layout.fnk.php:99
#: ../../addon.old/dav/friendica/layout.fnk.php:136
#: ../../addon/dav/friendica/layout.fnk.php:99
#: ../../addon/dav/friendica/layout.fnk.php:136
msgid ""
"Something went wrong when trying to import the file. Sorry. Maybe some "
"events were imported anyway."
msgstr "Entschuldigung. Bei dem Versuch die Datei zu importieren ist etwas schief gelaufen. Vielleicht wurden aber einige der Termine dennoch importiert."
#: ../../addon.old/dav/friendica/layout.fnk.php:131
#: ../../addon/dav/friendica/layout.fnk.php:131
msgid "Something went wrong when trying to import the file. Sorry."
msgstr "Entschuldigung. Beim Importieren der Datei ist etwas schief gelaufen."
#: ../../addon.old/dav/friendica/layout.fnk.php:134
#: ../../addon/dav/friendica/layout.fnk.php:134
msgid "The ICS-File has been imported."
msgstr "Die ICS-Datei wurde importoert."
#: ../../addon.old/dav/friendica/layout.fnk.php:138
#: ../../addon/dav/friendica/layout.fnk.php:138
msgid "No file was uploaded."
msgstr "Es wurde keine Datei geladen."
#: ../../addon.old/dav/friendica/layout.fnk.php:147
#: ../../addon/dav/friendica/layout.fnk.php:147
msgid "Import a ICS-file"
msgstr "Importiere eine ICS-Datei"
#: ../../addon.old/dav/friendica/layout.fnk.php:150
#: ../../addon/dav/friendica/layout.fnk.php:150
msgid "ICS-File"
msgstr "ICS-Datei"
#: ../../addon.old/dav/friendica/layout.fnk.php:151
#: ../../addon/dav/friendica/layout.fnk.php:151
msgid "Overwrite all #num# existing events"
msgstr "Überschreibe alle #num# existierenden Einträge"
#: ../../addon.old/dav/friendica/layout.fnk.php:152
#: ../../addon/dav/friendica/layout.fnk.php:152
#: ../../mod/profile_photo.php:245
msgid "Upload"
msgstr "Hochladen"
#: ../../addon.old/dav/friendica/layout.fnk.php:225
#: ../../addon.old/mathjax/mathjax.php:36
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:167
#: ../../mod/admin.php:841 ../../mod/admin.php:1049 ../../mod/settings.php:74
#: ../../mod/uexport.php:48 ../../mod/newmember.php:22
#: ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:658
msgid "Settings"
msgstr "Einstellungen"
#: ../../addon.old/dav/friendica/layout.fnk.php:225
#: ../../addon/dav/friendica/layout.fnk.php:225 ../../include/nav.php:113
#: ../../mod/help.php:84
msgid "Help"
msgstr "Hilfe"
#: ../../addon.old/dav/friendica/layout.fnk.php:228
#: ../../addon/dav/friendica/layout.fnk.php:228
msgid "New event"
msgstr "Neue Veranstaltung"
#: ../../addon.old/dav/friendica/layout.fnk.php:232
#: ../../addon/dav/friendica/layout.fnk.php:232
msgid "Today"
msgstr "Heute"
#: ../../addon.old/dav/friendica/layout.fnk.php:241
#: ../../addon/dav/friendica/layout.fnk.php:241
msgid "Day"
msgstr "Tag"
#: ../../addon.old/dav/friendica/layout.fnk.php:248
#: ../../addon/dav/friendica/layout.fnk.php:248
msgid "Week"
msgstr "Woche"
#: ../../addon.old/dav/friendica/layout.fnk.php:260
#: ../../addon/dav/friendica/layout.fnk.php:260
msgid "Reload"
msgstr "Neu Laden"
#: ../../addon.old/dav/friendica/layout.fnk.php:263
#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372
msgid "Previous"
msgstr "Vorherige"
#: ../../addon.old/dav/friendica/layout.fnk.php:266
#: ../../addon/dav/friendica/layout.fnk.php:266 ../../mod/events.php:373
#: ../../mod/install.php:207
msgid "Next"
msgstr "Nächste"
#: ../../addon.old/dav/friendica/layout.fnk.php:271
#: ../../addon/dav/friendica/layout.fnk.php:271
msgid "Date"
msgstr "Datum"
#: ../../addon.old/dav/friendica/layout.fnk.php:313
#: ../../addon/dav/friendica/layout.fnk.php:313
msgid "Error"
msgstr "Fehler"
#: ../../addon.old/dav/friendica/layout.fnk.php:354
#: ../../addon.old/facebook/facebook.php:510
#: ../../addon.old/facebook/facebook.php:516
#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
#: ../../addon/dav/friendica/layout.fnk.php:354
#: ../../addon/facebook/facebook.php:512 ../../addon/facebook/facebook.php:518
#: ../../addon/fbpost/fbpost.php:170 ../../addon/fbpost/fbpost.php:176
#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4090
#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
#: ../../mod/notes.php:20 ../../mod/nogroup.php:25 ../../mod/item.php:140
#: ../../mod/item.php:156 ../../mod/allfriends.php:9 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/register.php:40 ../../mod/regmod.php:118
#: ../../mod/attach.php:33 ../../mod/contacts.php:147
#: ../../mod/settings.php:91 ../../mod/settings.php:542
#: ../../mod/settings.php:547 ../../mod/crepair.php:115
#: ../../mod/delegate.php:6 ../../mod/poke.php:135
#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
#: ../../mod/display.php:180 ../../mod/editpost.php:10
#: ../../mod/events.php:140 ../../mod/uimport.php:23 ../../mod/follow.php:9
#: ../../mod/fsuggest.php:78 ../../mod/group.php:19
#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
#: ../../mod/install.php:151 ../../mod/wall_upload.php:66
#: ../../mod/invite.php:15 ../../mod/invite.php:101
#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
#: ../../mod/manage.php:96 ../../mod/message.php:38 ../../mod/message.php:174
#: ../../mod/mood.php:114 ../../mod/network.php:6 ../../mod/photos.php:133
#: ../../mod/photos.php:1044 ../../mod/notifications.php:66
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../index.php:341
msgid "Permission denied."
msgstr "Zugriff verweigert."
#: ../../addon.old/dav/friendica/layout.fnk.php:361
#: ../../addon.old/facebook/facebook.php:799
#: ../../addon.old/fbpost/fbpost.php:282
#: ../../addon/dav/friendica/layout.fnk.php:361
#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
msgid "The new values have been saved."
msgstr "Die neuen Einstellungen wurden gespeichert."
#: ../../addon.old/dav/friendica/layout.fnk.php:380
#: ../../addon/dav/friendica/layout.fnk.php:380
msgid "The calendar has been updated."
msgstr "Der Kalender wurde aktualisiert."
#: ../../addon.old/dav/friendica/layout.fnk.php:393
#: ../../addon/dav/friendica/layout.fnk.php:393
msgid "The new calendar has been created."
msgstr "Der neue Kalender wurde erstellt."
#: ../../addon.old/dav/friendica/layout.fnk.php:417
#: ../../addon/dav/friendica/layout.fnk.php:417
msgid "The calendar has been deleted."
msgstr "Der Kalender wurde gelöscht."
#: ../../addon.old/dav/friendica/layout.fnk.php:424
#: ../../addon/dav/friendica/layout.fnk.php:424
msgid "Calendar Settings"
msgstr "Kalendereinstellungen"
#: ../../addon.old/dav/friendica/layout.fnk.php:430
#: ../../addon/dav/friendica/layout.fnk.php:430
msgid "Date format"
msgstr "Datumsformat"
#: ../../addon.old/dav/friendica/layout.fnk.php:439
#: ../../addon/dav/friendica/layout.fnk.php:439
msgid "Time zone"
msgstr "Zeitzone"
#: ../../addon.old/dav/friendica/layout.fnk.php:441
#: ../../addon.old/dav/friendica/layout.fnk.php:488
#: ../../addon.old/facebook/facebook.php:770
#: ../../addon.old/fbpost/fbpost.php:267
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
#: ../../addon/dav/friendica/layout.fnk.php:441
#: ../../addon/dav/friendica/layout.fnk.php:488
#: ../../addon/facebook/facebook.php:772 ../../addon/fbpost/fbpost.php:322
#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
#: ../../include/text.php:781 ../../mod/notes.php:63 ../../mod/filer.php:31
msgid "Save"
msgstr "Speichern"
#: ../../addon.old/dav/friendica/layout.fnk.php:445
#: ../../addon/dav/friendica/layout.fnk.php:445
msgid "Calendars"
msgstr "Kalender"
#: ../../addon.old/dav/friendica/layout.fnk.php:487
#: ../../addon/dav/friendica/layout.fnk.php:487
msgid "Create a new calendar"
msgstr "Neuen Kalender anlegen"
#: ../../addon.old/dav/friendica/layout.fnk.php:496
#: ../../addon/dav/friendica/layout.fnk.php:496
msgid "Limitations"
msgstr "Einschränkungen"
#: ../../addon.old/dav/friendica/layout.fnk.php:500
#: ../../addon.old/libravatar/libravatar.php:82
#: ../../addon/dav/friendica/layout.fnk.php:500
#: ../../addon/libravatar/libravatar.php:82
msgid "Warning"
msgstr "Warnung"
#: ../../addon.old/dav/friendica/layout.fnk.php:504
#: ../../addon/dav/friendica/layout.fnk.php:504
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
msgstr "Synchronisation (iPhone, Thunderbird Lightning, Android, ...)"
#: ../../addon.old/dav/friendica/layout.fnk.php:511
#: ../../addon/dav/friendica/layout.fnk.php:511
msgid "Synchronizing this calendar with the iPhone"
msgstr "Diesen Kalender mit dem iPhone synchronisieren"
#: ../../addon.old/dav/friendica/layout.fnk.php:522
#: ../../addon/dav/friendica/layout.fnk.php:522
msgid "Synchronizing your Friendica-Contacts with the iPhone"
msgstr "Friendica-Kontakte mit dem iPhone synchronisieren"
#: ../../addon.old/dav/friendica/main.php:202
#: ../../addon/dav/friendica/main.php:202
msgid ""
"The current version of this plugin has not been set up correctly. Please "
"contact the system administrator of your installation of friendica to fix "
"this."
msgstr "Die aktuelle Version dieses Plugins wurde nicht korrekt eingestellt. Bitte kontaktiere den System-Administrator deiner Friendica Installation um den Fehler zu beheben."
#: ../../addon.old/dav/friendica/main.php:242
#: ../../addon/dav/friendica/main.php:242
msgid "Extended calendar with CalDAV-support"
msgstr "Erweiterter Kalender mit CalDAV Unterstützung."
#: ../../addon.old/dav/friendica/main.php:279
#: ../../addon.old/dav/friendica/main.php:280
#: ../../addon/dav/friendica/main.php:279
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
#: ../../include/enotify.php:28 ../../include/notifier.php:785
msgid "noreply"
msgstr "noreply"
#: ../../addon.old/dav/friendica/main.php:282
#: ../../addon/dav/friendica/main.php:282
msgid "Notification: "
msgstr "Benachrichtigungen: "
#: ../../addon.old/dav/friendica/main.php:309
#: ../../addon/dav/friendica/main.php:309
msgid "The database tables have been installed."
msgstr "Die Datenbanktabellen wurden installiert."
#: ../../addon.old/dav/friendica/main.php:310
#: ../../addon/dav/friendica/main.php:310
msgid "An error occurred during the installation."
msgstr "Während der Installation trat ein Fehler auf."
#: ../../addon.old/dav/friendica/main.php:316
#: ../../addon/dav/friendica/main.php:316
msgid "The database tables have been updated."
msgstr "Die Tabellen in der Datenbank wurden aktualisiert."
#: ../../addon.old/dav/friendica/main.php:317
#: ../../addon/dav/friendica/main.php:317
msgid "An error occurred during the update."
msgstr "Während der Aktualisierung trat ein Fehler auf."
#: ../../addon.old/dav/friendica/main.php:333
#: ../../addon/dav/friendica/main.php:333
msgid "No system-wide settings yet."
msgstr "Momentan keine systemweiten Einstellungen."
#: ../../addon.old/dav/friendica/main.php:336
#: ../../addon/dav/friendica/main.php:336
msgid "Database status"
msgstr "Datenbankstatus"
#: ../../addon.old/dav/friendica/main.php:339
#: ../../addon/dav/friendica/main.php:339
msgid "Installed"
msgstr "Installiert"
#: ../../addon.old/dav/friendica/main.php:343
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade needed"
msgstr "Upgrade erforderlich"
#: ../../addon.old/dav/friendica/main.php:343
#: ../../addon/dav/friendica/main.php:343
msgid ""
"Please back up all calendar data (the tables beginning with dav_*) before "
"proceeding. While all calendar events <i>should</i> be converted to the new "
"database structure, it's always safe to have a backup. Below, you can have a"
" look at the database-queries that will be made when pressing the "
"'update'-button."
msgstr "Bitte sichere alle Kalenderdaten (die Tabellen mit dav_* beginnend) bevor du mit dem Update fortfährst. Eigentliche <i>sollten</i> alle Kalendereinträge in die neue Datenbankstruktur übernommen werden, aber sicher ist sicher. Weiter unten kannst du die Datenbank-Anfragen ansehen, die im Verlauf des Updates gemacht werden."
#: ../../addon.old/dav/friendica/main.php:343
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade"
msgstr "Upgrade"
#: ../../addon.old/dav/friendica/main.php:346
#: ../../addon/dav/friendica/main.php:346
msgid "Not installed"
msgstr "Nicht installiert"
#: ../../addon.old/dav/friendica/main.php:346
#: ../../addon/dav/friendica/main.php:346
msgid "Install"
msgstr "Installieren"
#: ../../addon.old/dav/friendica/main.php:350
#: ../../addon/dav/friendica/main.php:350
msgid "Unknown"
msgstr "Unbekannt"
#: ../../addon.old/dav/friendica/main.php:350
#: ../../addon/dav/friendica/main.php:350
msgid ""
"Something really went wrong. I cannot recover from this state automatically,"
" sorry. Please go to the database backend, back up the data, and delete all "
"tables beginning with 'dav_' manually. Afterwards, this installation routine"
" should be able to reinitialize the tables automatically."
msgstr "Irgendetwas ging schief. Ich kann leider von diesem Zustand der Datenbank leider nicht automatisch fortfahren. Bitte mache ein Backup der Daten aus der Datenbank und lösche anschließend alle Tabellen deren Name mit 'dav_' anfangen. Anschließend sollte diese Installations-Routine in der Lage sein die nötigen Tabellen automatisch neu anzulegen."
#: ../../addon.old/dav/friendica/main.php:355
#: ../../addon/dav/friendica/main.php:355
msgid "Troubleshooting"
msgstr "Problembehebung"
#: ../../addon.old/dav/friendica/main.php:356
#: ../../addon/dav/friendica/main.php:356
msgid "Manual creation of the database tables:"
msgstr "Manuelles Anlegen der Datenbanktabellen:"
#: ../../addon.old/dav/friendica/main.php:357
#: ../../addon/dav/friendica/main.php:357
msgid "Show SQL-statements"
msgstr "SQL-Anweisungen anzeigen"
#: ../../addon.old/drpost/drpost.php:35
msgid "Post to Drupal"
msgstr "Bei Drupal veröffentlichen"
#: ../../addon.old/drpost/drpost.php:72
msgid "Drupal Post Settings"
msgstr "Drupal-Beitragseinstellungen"
#: ../../addon.old/drpost/drpost.php:74
msgid "Enable Drupal Post Plugin"
msgstr "Veröffentlichung bei Drupal erlauben"
#: ../../addon.old/drpost/drpost.php:79
msgid "Drupal username"
msgstr "Drupal Nutzername"
#: ../../addon.old/drpost/drpost.php:84
msgid "Drupal password"
msgstr "Drupal Passwort"
#: ../../addon.old/drpost/drpost.php:89
msgid "Post Type - article,page,or blog"
msgstr "Beitragstyp - Artikel, Seite oder Blog"
#: ../../addon.old/drpost/drpost.php:94
msgid "Drupal site URL"
msgstr "URL der Drupal Seite"
#: ../../addon.old/drpost/drpost.php:99
msgid "Drupal site uses clean URLS"
msgstr "Drupal Seite verwendet bereinigte URLs"
#: ../../addon.old/drpost/drpost.php:104
msgid "Post to Drupal by default"
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal"
#: ../../addon.old/dwpost/dwpost.php:39 ../../addon/dwpost/dwpost.php:39
msgid "Post to Dreamwidth"
msgstr "In Dreamwidth veröffentlichen"
#: ../../addon.old/dwpost/dwpost.php:70 ../../addon/dwpost/dwpost.php:70
msgid "Dreamwidth Post Settings"
msgstr "Dreamwidth Veröffentlichungs-Einstellungen"
#: ../../addon.old/dwpost/dwpost.php:72 ../../addon/dwpost/dwpost.php:72
msgid "Enable dreamwidth Post Plugin"
msgstr "Dreamwidth Post Plugin aktivieren"
#: ../../addon.old/dwpost/dwpost.php:77 ../../addon/dwpost/dwpost.php:77
msgid "dreamwidth username"
msgstr "Dreamwidth Benutzername"
#: ../../addon.old/dwpost/dwpost.php:82 ../../addon/dwpost/dwpost.php:82
msgid "dreamwidth password"
msgstr "Dreamwidth Passwort"
#: ../../addon.old/dwpost/dwpost.php:87 ../../addon/dwpost/dwpost.php:87
msgid "Post to dreamwidth by default"
msgstr "Standardmäßig bei Dreamwidth veröffentlichen"
#: ../../addon.old/editplain/editplain.php:46
#: ../../addon.old/group_text/group_text.php:46
#: ../../addon/editplain/editplain.php:46
msgid "Editplain settings updated."
msgstr "Editplain Einstellungen aktualisiert"
#: ../../addon.old/editplain/editplain.php:76
#: ../../addon/editplain/editplain.php:76
msgid "Editplain Settings"
msgstr "Editplain Einstellungen"
#: ../../addon.old/editplain/editplain.php:78
#: ../../addon/editplain/editplain.php:78
msgid "Disable richtext status editor"
msgstr "RichText Editor deaktivieren"
#: ../../addon.old/facebook/facebook.php:495
#: ../../addon.old/fbpost/fbpost.php:144
#: ../../addon.old/impressum/impressum.php:78
#: ../../addon.old/mathjax/mathjax.php:66
#: ../../addon.old/openstreetmap/openstreetmap.php:80
#: ../../addon.old/piwik/piwik.php:105 ../../addon.old/twitter/twitter.php:389
#: ../../addon/altpager/altpager.php:107 ../../addon/facebook/facebook.php:497
#: ../../addon/fbpost/fbpost.php:155 ../../addon/impressum/impressum.php:78
#: ../../addon/mathjax/mathjax.php:66
#: ../../addon/openstreetmap/openstreetmap.php:104
#: ../../addon/piwik/piwik.php:105
#: ../../addon/remote_permissions/remote_permissions.php:205
#: ../../addon/twitter/twitter.php:550 ../../mod/settings.php:488
msgid "Settings updated."
msgstr "Einstellungen aktualisiert."
#: ../../addon.old/facebook/facebook.php:523
#: ../../addon/facebook/facebook.php:525
msgid "Facebook disabled"
msgstr "Facebook deaktiviert"
#: ../../addon.old/facebook/facebook.php:528
#: ../../addon/facebook/facebook.php:530
msgid "Updating contacts"
msgstr "Aktualisiere Kontakte"
#: ../../addon.old/facebook/facebook.php:551
#: ../../addon.old/fbpost/fbpost.php:192 ../../addon/facebook/facebook.php:553
#: ../../addon/fbpost/fbpost.php:203
msgid "Facebook API key is missing."
msgstr "Facebook-API-Schlüssel nicht gefunden"
#: ../../addon.old/facebook/facebook.php:558
#: ../../addon/facebook/facebook.php:560
msgid "Facebook Connect"
msgstr "Mit Facebook verbinden"
#: ../../addon.old/facebook/facebook.php:564
#: ../../addon/facebook/facebook.php:566
msgid "Install Facebook connector for this account."
msgstr "Facebook-Connector für dieses Konto installieren."
#: ../../addon.old/facebook/facebook.php:571
#: ../../addon/facebook/facebook.php:573
msgid "Remove Facebook connector"
msgstr "Facebook-Connector entfernen"
#: ../../addon.old/facebook/facebook.php:576
#: ../../addon.old/fbpost/fbpost.php:217 ../../addon/facebook/facebook.php:578
#: ../../addon/fbpost/fbpost.php:228
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr "Neu authentifizieren [Das ist immer dann nötig, wenn du dein Facebook-Passwort geändert hast.]"
#: ../../addon.old/facebook/facebook.php:583
#: ../../addon.old/fbpost/fbpost.php:224 ../../addon/facebook/facebook.php:585
#: ../../addon/fbpost/fbpost.php:235
msgid "Post to Facebook by default"
msgstr "Veröffentliche standardmäßig bei Facebook"
#: ../../addon.old/facebook/facebook.php:589
#: ../../addon/facebook/facebook.php:591
msgid ""
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt."
#: ../../addon.old/facebook/facebook.php:593
#: ../../addon/facebook/facebook.php:595
msgid ""
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren."
#: ../../addon.old/facebook/facebook.php:596
#: ../../addon/facebook/facebook.php:598
msgid "Link all your Facebook friends and conversations on this website"
msgstr "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren"
#: ../../addon.old/facebook/facebook.php:598
#: ../../addon/facebook/facebook.php:600
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend"
" <em>stream</em>."
msgstr "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>."
#: ../../addon.old/facebook/facebook.php:599
#: ../../addon/facebook/facebook.php:601
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen."
#: ../../addon.old/facebook/facebook.php:600
#: ../../addon/facebook/facebook.php:602
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr "Mit den folgenden Einstellungen kannst du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen."
#: ../../addon.old/facebook/facebook.php:604
#: ../../addon/facebook/facebook.php:606
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen"
#: ../../addon.old/facebook/facebook.php:609
#: ../../addon/facebook/facebook.php:611
msgid "Do not import your Facebook profile wall conversations"
msgstr "Facebook-Pinnwand nicht importieren"
#: ../../addon.old/facebook/facebook.php:611
#: ../../addon/facebook/facebook.php:613
msgid ""
"If you choose to link conversations and leave both of these boxes unchecked,"
" your Facebook profile wall will be merged with your profile wall on this "
"website and your privacy settings on this website will be used to determine "
"who may see the conversations."
msgstr "Wenn du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann."
#: ../../addon.old/facebook/facebook.php:616
#: ../../addon/facebook/facebook.php:618
msgid "Comma separated applications to ignore"
msgstr "Kommaseparierte Anwendungen, die ignoriert werden sollen"
#: ../../addon.old/facebook/facebook.php:700
#: ../../addon/facebook/facebook.php:702
msgid "Problems with Facebook Real-Time Updates"
msgstr "Probleme mit Facebook Echtzeit-Updates"
#: ../../addon.old/facebook/facebook.php:702
#: ../../addon.old/facebook/facebook.php:1200
#: ../../addon.old/fbpost/fbpost.php:661
#: ../../addon.old/public_server/public_server.php:62
#: ../../addon.old/testdrive/testdrive.php:67
#: ../../addon/facebook/facebook.php:704
#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67
msgid "Administrator"
msgstr "Administrator"
#: ../../addon.old/facebook/facebook.php:728
#: ../../addon.old/fbpost/fbpost.php:239 ../../addon/facebook/facebook.php:730
#: ../../addon/fbpost/fbpost.php:294 ../../include/contact_selectors.php:81
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
msgid "Facebook"
msgstr "Facebook"
#: ../../addon.old/facebook/facebook.php:729
#: ../../addon/facebook/facebook.php:731
msgid "Facebook Connector Settings"
msgstr "Facebook-Verbindungseinstellungen"
#: ../../addon.old/facebook/facebook.php:744
#: ../../addon.old/fbpost/fbpost.php:255 ../../addon/facebook/facebook.php:746
#: ../../addon/fbpost/fbpost.php:310
msgid "Facebook API Key"
msgstr "Facebook API Schlüssel"
#: ../../addon.old/facebook/facebook.php:754
#: ../../addon.old/fbpost/fbpost.php:262 ../../addon/facebook/facebook.php:756
#: ../../addon/fbpost/fbpost.php:317
msgid ""
"Error: it appears that you have specified the App-ID and -Secret in your "
".htconfig.php file. As long as they are specified there, they cannot be set "
"using this form.<br><br>"
msgstr "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.<br><br>"
#: ../../addon.old/facebook/facebook.php:759
#: ../../addon/facebook/facebook.php:761
msgid ""
"Error: the given API Key seems to be incorrect (the application access token"
" could not be retrieved)."
msgstr "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden)."
#: ../../addon.old/facebook/facebook.php:761
#: ../../addon/facebook/facebook.php:763
msgid "The given API Key seems to work correctly."
msgstr "Der angegebene API Schlüssel scheint korrekt zu funktionieren."
#: ../../addon.old/facebook/facebook.php:763
#: ../../addon/facebook/facebook.php:765
msgid ""
"The correctness of the API Key could not be detected. Something strange's "
"going on."
msgstr "Die Richtigkeit des API Schlüssels konnte nicht gefunden werden. Irgendwas stimmt nicht."
#: ../../addon.old/facebook/facebook.php:766
#: ../../addon.old/fbpost/fbpost.php:264 ../../addon/facebook/facebook.php:768
#: ../../addon/fbpost/fbpost.php:319
msgid "App-ID / API-Key"
msgstr "App-ID / API-Key"
#: ../../addon.old/facebook/facebook.php:767
#: ../../addon.old/fbpost/fbpost.php:265 ../../addon/facebook/facebook.php:769
#: ../../addon/fbpost/fbpost.php:320
msgid "Application secret"
msgstr "Anwendungs-Geheimnis"
#: ../../addon.old/facebook/facebook.php:768
#: ../../addon/facebook/facebook.php:770
#, php-format
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr "Abfrageintervall in Minuten (min %1$s Minuten)"
#: ../../addon.old/facebook/facebook.php:769
#: ../../addon/facebook/facebook.php:771
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr "Kommentare synchronisieren (Kein Kommentar von Facebook geht verloren, verursacht höhere Last auf dem Server)"
#: ../../addon.old/facebook/facebook.php:773
#: ../../addon/facebook/facebook.php:775
msgid "Real-Time Updates"
msgstr "Echtzeit Aktualisierungen"
#: ../../addon.old/facebook/facebook.php:777
#: ../../addon/facebook/facebook.php:779
msgid "Real-Time Updates are activated."
msgstr "Echtzeit-Updates sind aktiviert."
#: ../../addon.old/facebook/facebook.php:778
#: ../../addon/facebook/facebook.php:780
msgid "Deactivate Real-Time Updates"
msgstr "Echtzeit-Updates deaktivieren"
#: ../../addon.old/facebook/facebook.php:780
#: ../../addon/facebook/facebook.php:782
msgid "Real-Time Updates not activated."
msgstr "Echtzeit-Updates nicht aktiviert."
#: ../../addon.old/facebook/facebook.php:780
#: ../../addon/facebook/facebook.php:782
msgid "Activate Real-Time Updates"
msgstr "Echtzeit-Updates aktivieren"
#: ../../addon.old/facebook/facebook.php:823
#: ../../addon.old/fbpost/fbpost.php:301 ../../addon/facebook/facebook.php:825
#: ../../addon/fbpost/fbpost.php:356
msgid "Post to Facebook"
msgstr "Bei Facebook veröffentlichen"
#: ../../addon.old/facebook/facebook.php:921
#: ../../addon.old/fbpost/fbpost.php:399 ../../addon/facebook/facebook.php:923
#: ../../addon/fbpost/fbpost.php:487
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen."
#: ../../addon.old/facebook/facebook.php:1149
#: ../../addon.old/fbpost/fbpost.php:610
#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
msgid "View on Friendica"
msgstr "In Friendica betrachten"
#: ../../addon.old/facebook/facebook.php:1182
#: ../../addon.old/fbpost/fbpost.php:643
#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
msgid "Facebook post failed. Queued for retry."
msgstr "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut."
#: ../../addon.old/facebook/facebook.php:1222
#: ../../addon.old/fbpost/fbpost.php:683
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich."
#: ../../addon.old/facebook/facebook.php:1223
#: ../../addon.old/fbpost/fbpost.php:684
#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
msgid "Facebook connection became invalid"
msgstr "Facebook Anmeldedaten sind ungültig geworden"
#: ../../addon.old/facebook/facebook.php:1224
#: ../../addon.old/fbpost/fbpost.php:685
#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr "Hallo %1$s,\n\ndie Verbindung zwischen deinem Account auf %2$s und Facebook funktioniert derzeit nicht. Dies ist normalerweise das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du %3$sden Facebook-Connector neu authentifizieren%4$s."
#: ../../addon.old/fbpost/fbpost.php:172 ../../addon/fbpost/fbpost.php:183
msgid "Facebook Post disabled"
msgstr "Nach Facebook senden deaktiviert"
#: ../../addon.old/fbpost/fbpost.php:199 ../../addon/fbpost/fbpost.php:210
msgid "Facebook Post"
msgstr "Facebook Relai"
#: ../../addon.old/fbpost/fbpost.php:205 ../../addon/fbpost/fbpost.php:216
msgid "Install Facebook Post connector for this account."
msgstr "Facebook-Connector für dieses Konto installieren."
#: ../../addon.old/fbpost/fbpost.php:212 ../../addon/fbpost/fbpost.php:223
msgid "Remove Facebook Post connector"
msgstr "Facebook-Connector entfernen"
#: ../../addon.old/fbpost/fbpost.php:240 ../../addon/fbpost/fbpost.php:295
msgid "Facebook Post Settings"
msgstr "Facebook-Beitragseinstellungen"
#: ../../addon.old/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
#: ../../addon.old/page/page.php:92 ../../addon/forumlist/forumlist.php:64
#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
msgid "Forums"
msgstr "Foren"
#: ../../addon.old/forumlist/forumlist.php:63
#: ../../addon/forumlist/forumlist.php:67
msgid "show/hide"
msgstr "anzeigen/verbergen"
#: ../../addon.old/forumlist/forumlist.php:77
#: ../../addon/forumlist/forumlist.php:81
msgid "No forum subscriptions"
msgstr "Keine Foren-Mitgliedschaften."
#: ../../addon.old/forumlist/forumlist.php:94
#: ../../addon.old/page/page.php:130 ../../addon/forumlist/forumlist.php:98
#: ../../addon/page/page.php:130
msgid "Forums:"
msgstr "Foren:"
#: ../../addon.old/forumlist/forumlist.php:131
#: ../../addon/forumlist/forumlist.php:134
msgid "Forumlist settings updated."
msgstr "Einstellungen zur Foren-Liste aktualisiert."
#: ../../addon.old/forumlist/forumlist.php:159
#: ../../addon/forumlist/forumlist.php:162
msgid "Forumlist Settings"
msgstr "Foren-Liste Einstellungen"
#: ../../addon.old/forumlist/forumlist.php:161
#: ../../addon/forumlist/forumlist.php:164
msgid "Randomise forum list"
msgstr "Zufällige Zusammenstellung der Foren-Liste"
#: ../../addon.old/forumlist/forumlist.php:164
#: ../../addon/forumlist/forumlist.php:167
msgid "Show forums on profile page"
msgstr "Zeige die Liste der Foren auf der Profilseite"
#: ../../addon.old/forumlist/forumlist.php:167
#: ../../addon/forumlist/forumlist.php:170
msgid "Show forums on network page"
msgstr "Zeige Foren auf der Netzwerk-Seite"
#: ../../addon.old/fromapp/fromapp.php:38 ../../addon/fromapp/fromapp.php:38
msgid "Fromapp settings updated."
msgstr "FromApp Einstellungen aktualisiert."
#: ../../addon.old/fromapp/fromapp.php:64 ../../addon/fromapp/fromapp.php:64
msgid "FromApp Settings"
msgstr "FromApp Einstellungen"
#: ../../addon.old/fromapp/fromapp.php:66 ../../addon/fromapp/fromapp.php:66
msgid ""
"The application name you would like to show your posts originating from."
msgstr "Der Name der Anwendung von der deine Beiträge stammen sollen."
#: ../../addon.old/fromapp/fromapp.php:70 ../../addon/fromapp/fromapp.php:70
msgid "Use this application name even if another application was used."
msgstr "Verwende diesen Namen auch wenn eine andere Anwendung den Anwendungsnamen bereits gesetzt hat."
#: ../../addon.old/fromgplus/fromgplus.php:29
#: ../../addon/fromgplus/fromgplus.php:33
msgid "Google+ Import Settings"
msgstr "Google+ Import Einstellungen"
#: ../../addon.old/fromgplus/fromgplus.php:32
#: ../../addon/fromgplus/fromgplus.php:36
msgid "Enable Google+ Import"
msgstr "Aktiviere Google+ Import"
#: ../../addon.old/fromgplus/fromgplus.php:35
#: ../../addon/fromgplus/fromgplus.php:39
msgid "Google Account ID"
msgstr "Google Account ID"
#: ../../addon.old/fromgplus/fromgplus.php:55
#: ../../addon/fromgplus/fromgplus.php:59
msgid "Google+ Import Settings saved."
msgstr "Google+ Import Einstellungen gespeichert."
#: ../../addon.old/geonames/geonames.php:143
#: ../../addon/geonames/geonames.php:143
msgid "Geonames settings updated."
msgstr "Geonames Einstellungen aktualisiert"
#: ../../addon.old/geonames/geonames.php:179
#: ../../addon/geonames/geonames.php:179
msgid "Geonames Settings"
msgstr "Geonames Einstellungen"
#: ../../addon.old/geonames/geonames.php:181
#: ../../addon/geonames/geonames.php:181
msgid "Enable Geonames Plugin"
msgstr "Geonames Plugin aktivieren"
#: ../../addon.old/gnot/gnot.php:48 ../../addon/gnot/gnot.php:48
msgid "Gnot settings updated."
msgstr "Gnot Einstellungen aktualisiert."
#: ../../addon.old/gnot/gnot.php:79 ../../addon/gnot/gnot.php:79
msgid "Gnot Settings"
msgstr "Gnot Einstellungen"
#: ../../addon.old/gnot/gnot.php:81 ../../addon/gnot/gnot.php:81
msgid ""
"Allows threading of email comment notifications on Gmail and anonymising the"
" subject line."
msgstr "Erlaubt das Veröffentlichen von E-Mail Kommentar Benachrichtigungen bei Gmail mit anonymisiertem Betreff"
#: ../../addon.old/gnot/gnot.php:82 ../../addon/gnot/gnot.php:82
msgid "Enable this plugin/addon?"
msgstr "Dieses Plugin/Addon aktivieren?"
#: ../../addon.old/gnot/gnot.php:97 ../../addon/gnot/gnot.php:97
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%d"
#: ../../addon.old/gravatar/gravatar.php:71
#: ../../addon.old/libravatar/libravatar.php:73
#: ../../addon/gravatar/gravatar.php:71
#: ../../addon/libravatar/libravatar.php:73
msgid "generic profile image"
msgstr "allgemeines Profilbild"
#: ../../addon.old/gravatar/gravatar.php:72
#: ../../addon.old/libravatar/libravatar.php:74
#: ../../addon/gravatar/gravatar.php:72
#: ../../addon/libravatar/libravatar.php:74
msgid "random geometric pattern"
msgstr "zufällig erzeugtes geometrisches Muster"
#: ../../addon.old/gravatar/gravatar.php:73
#: ../../addon.old/libravatar/libravatar.php:75
#: ../../addon/gravatar/gravatar.php:73
#: ../../addon/libravatar/libravatar.php:75
msgid "monster face"
msgstr "Monstergesicht"
#: ../../addon.old/gravatar/gravatar.php:74
#: ../../addon.old/libravatar/libravatar.php:76
#: ../../addon/gravatar/gravatar.php:74
#: ../../addon/libravatar/libravatar.php:76
msgid "computer generated face"
msgstr "Computergesicht"
#: ../../addon.old/gravatar/gravatar.php:75
#: ../../addon.old/libravatar/libravatar.php:77
#: ../../addon/gravatar/gravatar.php:75
#: ../../addon/libravatar/libravatar.php:77
msgid "retro arcade style face"
msgstr "Retro Arcade Design Gesicht"
#: ../../addon.old/gravatar/gravatar.php:89
#: ../../addon.old/libravatar/libravatar.php:93
#: ../../addon/gravatar/gravatar.php:89
#: ../../addon/libravatar/libravatar.php:93
msgid "Information"
msgstr "Information"
#: ../../addon.old/gravatar/gravatar.php:89
#: ../../addon/gravatar/gravatar.php:89
msgid ""
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
"nothing was found at Libravatar."
msgstr "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere das Libravatar Addon oder dieses Gravatar Addon.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden."
#: ../../addon.old/gravatar/gravatar.php:96
#: ../../addon.old/libravatar/libravatar.php:100
#: ../../addon/gravatar/gravatar.php:96
#: ../../addon/libravatar/libravatar.php:100
msgid "Default avatar image"
msgstr "Standard Profilbild "
#: ../../addon.old/gravatar/gravatar.php:96
#: ../../addon/gravatar/gravatar.php:96
msgid "Select default avatar image if none was found at Gravatar. See README"
msgstr "Wähle das Standardgesicht, wenn kein Bild auf Gravatar gefunden wurde. Schaue auch sonst im README nach."
#: ../../addon.old/gravatar/gravatar.php:97
#: ../../addon/gravatar/gravatar.php:97
msgid "Rating of images"
msgstr "Bildbewertung"
#: ../../addon.old/gravatar/gravatar.php:97
#: ../../addon/gravatar/gravatar.php:97
msgid "Select the appropriate avatar rating for your site. See README"
msgstr "Wähle eine angemessene Bildbewertung für deinen Server. Schaue auch sonst im README nach."
#: ../../addon.old/gravatar/gravatar.php:111
#: ../../addon/gravatar/gravatar.php:111
msgid "Gravatar settings updated."
msgstr "Gravatar Einstellungen aktualisiert."
#: ../../addon.old/group_text/group_text.php:76
#: ../../addon/group_text/group_text.php:76
msgid "Group Text"
msgstr "Gruppen als Text"
#: ../../addon.old/group_text/group_text.php:78
#: ../../addon/group_text/group_text.php:78
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
msgstr "Beim Bearbeiten von Gruppen Text statt Bilder anzeigen"
#: ../../addon.old/ijpost/ijpost.php:39 ../../addon/ijpost/ijpost.php:39
msgid "Post to Insanejournal"
msgstr "Auf InsaneJournal posten."
#: ../../addon.old/ijpost/ijpost.php:70 ../../addon/ijpost/ijpost.php:70
msgid "InsaneJournal Post Settings"
msgstr "InsaneJournal Beitrags-Einstellungen"
#: ../../addon.old/ijpost/ijpost.php:72 ../../addon/ijpost/ijpost.php:72
msgid "Enable InsaneJournal Post Plugin"
msgstr "InsaneJournal Plugin aktivieren"
#: ../../addon.old/ijpost/ijpost.php:77 ../../addon/ijpost/ijpost.php:77
msgid "InsaneJournal username"
msgstr "InsaneJournal Benutzername"
#: ../../addon.old/ijpost/ijpost.php:82 ../../addon/ijpost/ijpost.php:82
msgid "InsaneJournal password"
msgstr "InsaneJournal Passwort"
#: ../../addon.old/ijpost/ijpost.php:87 ../../addon/ijpost/ijpost.php:87
msgid "Post to InsaneJournal by default"
msgstr "Standardmäßig auf InsaneJournal posten."
#: ../../addon.old/impressum/impressum.php:37
#: ../../addon/impressum/impressum.php:37
msgid "Impressum"
msgstr "Impressum"
#: ../../addon.old/impressum/impressum.php:50
#: ../../addon.old/impressum/impressum.php:52
#: ../../addon.old/impressum/impressum.php:84
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:84
msgid "Site Owner"
msgstr "Betreiber der Seite"
#: ../../addon.old/impressum/impressum.php:50
#: ../../addon.old/impressum/impressum.php:88
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:88
msgid "Email Address"
msgstr "Email Adresse"
#: ../../addon.old/impressum/impressum.php:55
#: ../../addon.old/impressum/impressum.php:86
#: ../../addon/impressum/impressum.php:55
#: ../../addon/impressum/impressum.php:86
msgid "Postal Address"
msgstr "Postalische Anschrift"
#: ../../addon.old/impressum/impressum.php:61
#: ../../addon/impressum/impressum.php:61
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe mindestens den <tt>Betreiber</tt> in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert."
#: ../../addon.old/impressum/impressum.php:84
#: ../../addon/impressum/impressum.php:84
msgid "The page operators name."
msgstr "Name des Serveradministrators"
#: ../../addon.old/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:85
msgid "Site Owners Profile"
msgstr "Profil des Seitenbetreibers"
#: ../../addon.old/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:85
msgid "Profile address of the operator."
msgstr "Profil-Adresse des Serveradministrators"
#: ../../addon.old/impressum/impressum.php:86
#: ../../addon/impressum/impressum.php:86
msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden."
#: ../../addon.old/impressum/impressum.php:87
#: ../../addon/impressum/impressum.php:87
msgid "Notes"
msgstr "Hinweise"
#: ../../addon.old/impressum/impressum.php:87
#: ../../addon/impressum/impressum.php:87
msgid ""
"Additional notes that are displayed beneath the contact information. You can"
" use BBCode here."
msgstr "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden."
#: ../../addon.old/impressum/impressum.php:88
#: ../../addon/impressum/impressum.php:88
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr "Wie man den Betreiber per Email erreicht. (Adresse wird verschleiert dargestellt)"
#: ../../addon.old/impressum/impressum.php:89
#: ../../addon/impressum/impressum.php:89
msgid "Footer note"
msgstr "Fußnote"
#: ../../addon.old/impressum/impressum.php:89
#: ../../addon/impressum/impressum.php:89
msgid "Text for the footer. You can use BBCode here."
msgstr "Text für die Fußzeile. Du kannst BBCode verwenden."
#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
msgid "Infinite Improbability Drive"
msgstr "Infinite Improbability Drive"
#: ../../addon.old/irc/irc.php:44 ../../addon/irc/irc.php:44
msgid "IRC Settings"
msgstr "IRC Einstellungen"
#: ../../addon.old/irc/irc.php:46 ../../addon/irc/irc.php:46
msgid "Channel(s) to auto connect (comma separated)"
msgstr "mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)"
#: ../../addon.old/irc/irc.php:51 ../../addon/irc/irc.php:51
msgid "Popular Channels (comma separated)"
msgstr "Beliebte Kanäle (mit Komma getrennt)"
#: ../../addon.old/irc/irc.php:69 ../../addon/irc/irc.php:69
msgid "IRC settings saved."
msgstr "IRC Einstellungen gespeichert."
#: ../../addon.old/irc/irc.php:74 ../../addon/irc/irc.php:74
msgid "IRC Chatroom"
msgstr "IRC Chatraum"
#: ../../addon.old/irc/irc.php:96 ../../addon/irc/irc.php:96
msgid "Popular Channels"
msgstr "Beliebte Räume"
#: ../../addon.old/jappixmini/jappixmini.php:266
#: ../../addon/jappixmini/jappixmini.php:266
msgid "Jappix Mini addon settings"
msgstr "Jappix Mini Addon Einstellungen"
#: ../../addon.old/jappixmini/jappixmini.php:268
#: ../../addon/jappixmini/jappixmini.php:268
msgid "Activate addon"
msgstr "Addon aktivieren"
#: ../../addon.old/jappixmini/jappixmini.php:271
#: ../../addon/jappixmini/jappixmini.php:271
msgid ""
"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
msgstr "Füge das Jappix Mini Chat Widget <em>nicht</em> zum Webinterface hinzu"
#: ../../addon.old/jappixmini/jappixmini.php:274
#: ../../addon/jappixmini/jappixmini.php:274
msgid "Jabber username"
msgstr "Jabber Nutzername"
#: ../../addon.old/jappixmini/jappixmini.php:277
#: ../../addon/jappixmini/jappixmini.php:277
msgid "Jabber server"
msgstr "Jabber Server"
#: ../../addon.old/jappixmini/jappixmini.php:281
#: ../../addon/jappixmini/jappixmini.php:281
msgid "Jabber BOSH host"
msgstr "Jabber BOSH Host"
#: ../../addon.old/jappixmini/jappixmini.php:285
#: ../../addon/jappixmini/jappixmini.php:285
msgid "Jabber password"
msgstr "Japper Passwort"
#: ../../addon.old/jappixmini/jappixmini.php:290
#: ../../addon/jappixmini/jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr "Verschlüssele das Jabber Passwort mit dem Friendica Passwort (empfohlen)"
#: ../../addon.old/jappixmini/jappixmini.php:293
#: ../../addon/jappixmini/jappixmini.php:293
msgid "Friendica password"
msgstr "Friendica Passwort"
#: ../../addon.old/jappixmini/jappixmini.php:296
#: ../../addon/jappixmini/jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically"
msgstr "Kontaktanfragen von Friendica Kontakten automatisch akzeptieren"
#: ../../addon.old/jappixmini/jappixmini.php:299
#: ../../addon/jappixmini/jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically"
msgstr "Automatisch Friendica Kontakten bei Jabber folgen"
#: ../../addon.old/jappixmini/jappixmini.php:302
#: ../../addon/jappixmini/jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts"
msgstr "Lösche die interne Liste der Jabber Adressen der Kontakte"
#: ../../addon.old/jappixmini/jappixmini.php:308
#: ../../addon/jappixmini/jappixmini.php:308
msgid "Add contact"
msgstr "Kontakt hinzufügen"
#: ../../addon.old/js_upload/js_upload.php:43
#: ../../addon/js_upload/js_upload.php:43
msgid "Upload a file"
msgstr "Datei hochladen"
#: ../../addon.old/js_upload/js_upload.php:44
#: ../../addon/js_upload/js_upload.php:44
msgid "Drop files here to upload"
msgstr "Ziehe Dateien hierher, um sie hochzuladen"
#: ../../addon.old/js_upload/js_upload.php:45
#: ../../addon/js_upload/js_upload.php:45 ../../include/items.php:3970
#: ../../include/conversation.php:1080 ../../mod/contacts.php:249
#: ../../mod/settings.php:561 ../../mod/settings.php:587
#: ../../mod/dfrn_request.php:848 ../../mod/suggest.php:32
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:148
#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290
msgid "Cancel"
msgstr "Abbrechen"
#: ../../addon.old/js_upload/js_upload.php:46
#: ../../addon/js_upload/js_upload.php:46
msgid "Failed"
msgstr "Fehlgeschlagen"
#: ../../addon.old/js_upload/js_upload.php:297
#: ../../addon/js_upload/js_upload.php:303
msgid "No files were uploaded."
msgstr "Keine Dateien hochgeladen."
#: ../../addon.old/js_upload/js_upload.php:303
#: ../../addon/js_upload/js_upload.php:309
msgid "Uploaded file is empty"
msgstr "Hochgeladene Datei ist leer"
#: ../../addon.old/js_upload/js_upload.php:315
#: ../../addon/js_upload/js_upload.php:321 ../../mod/photos.php:761
msgid "Image exceeds size limit of "
msgstr "Die Bildgröße übersteigt das Limit von "
#: ../../addon.old/js_upload/js_upload.php:326
#: ../../addon/js_upload/js_upload.php:332
msgid "File has an invalid extension, it should be one of "
msgstr "Die Dateierweiterung ist nicht erlaubt, sie muss eine der folgenden sein "
#: ../../addon.old/js_upload/js_upload.php:337
#: ../../addon/js_upload/js_upload.php:343
msgid "Upload was cancelled, or server error encountered"
msgstr "Upload abgebrochen oder Serverfehler aufgetreten"
#: ../../addon.old/libertree/libertree.php:36
#: ../../addon/libertree/libertree.php:36
msgid "Post to libertree"
msgstr "bei libertree veröffentlichen"
#: ../../addon.old/libertree/libertree.php:67
#: ../../addon/libertree/libertree.php:67
msgid "libertree Post Settings"
msgstr "libertree Post Einstellungen"
#: ../../addon.old/libertree/libertree.php:69
#: ../../addon/libertree/libertree.php:69
msgid "Enable Libertree Post Plugin"
msgstr "Libertree Post Plugin aktivieren"
#: ../../addon.old/libertree/libertree.php:74
#: ../../addon/libertree/libertree.php:74
msgid "Libertree API token"
msgstr "Libertree API Token"
#: ../../addon.old/libertree/libertree.php:79
#: ../../addon/libertree/libertree.php:79
msgid "Libertree site URL"
msgstr "Libertree URL"
#: ../../addon.old/libertree/libertree.php:84
#: ../../addon/libertree/libertree.php:84
msgid "Post to Libertree by default"
msgstr "Standardmäßig bei libertree veröffentlichen"
#: ../../addon.old/libravatar/libravatar.php:14
#: ../../addon/libravatar/libravatar.php:14
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
msgstr "Kann Libravatar NICHT erfolgreich installieren.<br>PHP >=5.3 wird benötigt"
#: ../../addon.old/libravatar/libravatar.php:83
#: ../../addon/libravatar/libravatar.php:83
#, php-format
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
msgstr "Deine PHP Version %s ist niedriger als die benötigte Version PHP >= 5.3."
#: ../../addon.old/libravatar/libravatar.php:84
#: ../../addon/libravatar/libravatar.php:84
msgid "This addon is not functional on your server."
msgstr "Dieses Addon funktioniert auf deinem Server nicht."
#: ../../addon.old/libravatar/libravatar.php:93
#: ../../addon/libravatar/libravatar.php:93
msgid ""
"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
"Libravatar addon will fall back to Gravatar if nothing was found at "
"Libravatar."
msgstr "Das Gravatar Addon ist installiert. Bitte schalte das Gravatar Addon aus.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden."
#: ../../addon.old/libravatar/libravatar.php:100
#: ../../addon/libravatar/libravatar.php:100
msgid "Select default avatar image if none was found. See README"
msgstr "Das Standard Avatar Bild wurde nicht gefunden. Siehe README"
#: ../../addon.old/libravatar/libravatar.php:112
#: ../../addon/libravatar/libravatar.php:112
msgid "Libravatar settings updated."
msgstr "Libravatar Einstellungen sind aktualisiert."
#: ../../addon.old/ljpost/ljpost.php:39 ../../addon/ljpost/ljpost.php:39
msgid "Post to LiveJournal"
msgstr "In LiveJournal veröffentlichen."
#: ../../addon.old/ljpost/ljpost.php:70 ../../addon/ljpost/ljpost.php:70
msgid "LiveJournal Post Settings"
msgstr "LiveJournal Veröffentlichungs-Einstellungen"
#: ../../addon.old/ljpost/ljpost.php:72 ../../addon/ljpost/ljpost.php:72
msgid "Enable LiveJournal Post Plugin"
msgstr "LiveJournal Post Plugin aktivieren"
#: ../../addon.old/ljpost/ljpost.php:77 ../../addon/ljpost/ljpost.php:77
msgid "LiveJournal username"
msgstr "LiveJournal Benutzername"
#: ../../addon.old/ljpost/ljpost.php:82 ../../addon/ljpost/ljpost.php:82
msgid "LiveJournal password"
msgstr "LiveJournal Passwort"
#: ../../addon.old/ljpost/ljpost.php:87 ../../addon/ljpost/ljpost.php:87
msgid "Post to LiveJournal by default"
msgstr "Standardmäßig bei LiveJournal veröffentlichen"
#: ../../addon.old/mathjax/mathjax.php:37 ../../addon/mathjax/mathjax.php:37
msgid ""
"The MathJax addon renders mathematical formulae written using the LaTeX "
"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
"your wall,network tab and private mail."
msgstr "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerkstream sowie privaten Nachrichten gerendert."
#: ../../addon.old/mathjax/mathjax.php:38 ../../addon/mathjax/mathjax.php:38
msgid "Use the MathJax renderer"
msgstr "MathJax verwenden"
#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
msgid "MathJax Base URL"
msgstr "MathJax Basis-URL"
#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
msgid ""
"The URL for the javascript file that should be included to use MathJax. Can "
"be either the MathJax CDN or another installation of MathJax."
msgstr "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen."
#: ../../addon.old/membersince/membersince.php:18
#: ../../addon/membersince/membersince.php:18
msgid "Member since:"
msgstr "Mitglied seit:"
#: ../../addon.old/morepokes/morepokes.php:19
#: ../../addon/morepokes/morepokes.php:19
msgid "bitchslap"
msgstr "abwatschen"
#: ../../addon.old/morepokes/morepokes.php:19
#: ../../addon/morepokes/morepokes.php:19
msgid "bitchslapped"
msgstr "watschte"
#: ../../addon.old/morepokes/morepokes.php:20
#: ../../addon/morepokes/morepokes.php:20
msgid "shag"
msgstr "poppen"
#: ../../addon.old/morepokes/morepokes.php:20
#: ../../addon/morepokes/morepokes.php:20
msgid "shagged"
msgstr "poppte"
#: ../../addon.old/morepokes/morepokes.php:21
#: ../../addon/morepokes/morepokes.php:21
msgid "do something obscenely biological to"
msgstr "mit ihm/ihr etwas obszönes Körperliches machen"
#: ../../addon.old/morepokes/morepokes.php:21
#: ../../addon/morepokes/morepokes.php:21
msgid "did something obscenely biological to"
msgstr "machte etwas obszönes Körperliches mit"
#: ../../addon.old/morepokes/morepokes.php:22
#: ../../addon/morepokes/morepokes.php:22
msgid "point out the poke feature to"
msgstr "zeigte die neue Anstups-Funktion"
#: ../../addon.old/morepokes/morepokes.php:22
#: ../../addon/morepokes/morepokes.php:22
msgid "pointed out the poke feature to"
msgstr "zeigte die neue Anstups-Funktion"
#: ../../addon.old/morepokes/morepokes.php:23
#: ../../addon/morepokes/morepokes.php:23
msgid "declare undying love for"
msgstr "unterbliche Liebe verkünden"
#: ../../addon.old/morepokes/morepokes.php:23
#: ../../addon/morepokes/morepokes.php:23
msgid "declared undying love for"
msgstr "verkündete unsterbliche Liebe für"
#: ../../addon.old/morepokes/morepokes.php:24
#: ../../addon/morepokes/morepokes.php:24
msgid "patent"
msgstr "patentieren"
#: ../../addon.old/morepokes/morepokes.php:24
#: ../../addon/morepokes/morepokes.php:24
msgid "patented"
msgstr "patentierte"
#: ../../addon.old/morepokes/morepokes.php:25
#: ../../addon/morepokes/morepokes.php:25
msgid "stroke beard"
msgstr "sich den Bart kratzen"
#: ../../addon.old/morepokes/morepokes.php:25
#: ../../addon/morepokes/morepokes.php:25
msgid "stroked their beard at"
msgstr "kratzte sich den Bart in Richtung"
#: ../../addon.old/morepokes/morepokes.php:26
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoan the declining standards of modern secondary and tertiary education to"
msgstr "sich über die sinkenden Standards der Schul- und Hochschulbildung beklagen"
#: ../../addon.old/morepokes/morepokes.php:26
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoans the declining standards of modern secondary and tertiary education "
"to"
msgstr "beklagte sich über die sinkenden Standards der Schul- und Hochschulbildung bei"
#: ../../addon.old/morepokes/morepokes.php:27
#: ../../addon/morepokes/morepokes.php:27
msgid "hug"
msgstr "umarmen"
#: ../../addon.old/morepokes/morepokes.php:27
#: ../../addon/morepokes/morepokes.php:27
msgid "hugged"
msgstr "umarmte"
#: ../../addon.old/morepokes/morepokes.php:28
#: ../../addon/morepokes/morepokes.php:28
msgid "kiss"
msgstr "küssen"
#: ../../addon.old/morepokes/morepokes.php:28
#: ../../addon/morepokes/morepokes.php:28
msgid "kissed"
msgstr "küsste"
#: ../../addon.old/morepokes/morepokes.php:29
#: ../../addon/morepokes/morepokes.php:29
msgid "raise eyebrows at"
msgstr "Augenbrauen hochziehen"
#: ../../addon.old/morepokes/morepokes.php:29
#: ../../addon/morepokes/morepokes.php:29
msgid "raised their eyebrows at"
msgstr "zog die Augenbrauen hoch in Richtung"
#: ../../addon.old/morepokes/morepokes.php:30
#: ../../addon/morepokes/morepokes.php:30
msgid "insult"
msgstr "beleidigen"
#: ../../addon.old/morepokes/morepokes.php:30
#: ../../addon/morepokes/morepokes.php:30
msgid "insulted"
msgstr "beleidigte"
#: ../../addon.old/morepokes/morepokes.php:31
#: ../../addon/morepokes/morepokes.php:31
msgid "praise"
msgstr "preisen"
#: ../../addon.old/morepokes/morepokes.php:31
#: ../../addon/morepokes/morepokes.php:31
msgid "praised"
msgstr "pries"
#: ../../addon.old/morepokes/morepokes.php:32
#: ../../addon/morepokes/morepokes.php:32
msgid "be dubious of"
msgstr "ungewiss sein"
#: ../../addon.old/morepokes/morepokes.php:32
#: ../../addon/morepokes/morepokes.php:32
msgid "was dubious of"
msgstr "war ungewiss über"
#: ../../addon.old/morepokes/morepokes.php:33
#: ../../addon/morepokes/morepokes.php:33
msgid "eat"
msgstr "essen"
#: ../../addon.old/morepokes/morepokes.php:33
#: ../../addon/morepokes/morepokes.php:33
msgid "ate"
msgstr "aß"
#: ../../addon.old/morepokes/morepokes.php:34
#: ../../addon/morepokes/morepokes.php:34
msgid "giggle and fawn at"
msgstr "kichern und einschleimen"
#: ../../addon.old/morepokes/morepokes.php:34
#: ../../addon/morepokes/morepokes.php:34
msgid "giggled and fawned at"
msgstr "kicherte und schleimte sich ein bei"
#: ../../addon.old/morepokes/morepokes.php:35
#: ../../addon/morepokes/morepokes.php:35
msgid "doubt"
msgstr "bezweifeln"
#: ../../addon.old/morepokes/morepokes.php:35
#: ../../addon/morepokes/morepokes.php:35
msgid "doubted"
msgstr "bezweifelte"
#: ../../addon.old/morepokes/morepokes.php:36
#: ../../addon/morepokes/morepokes.php:36
msgid "glare"
msgstr "zornig anstarren"
#: ../../addon.old/morepokes/morepokes.php:36
#: ../../addon/morepokes/morepokes.php:36
msgid "glared at"
msgstr "starrte zornig auf"
#: ../../addon.old/notimeline/notimeline.php:32
#: ../../addon/notimeline/notimeline.php:32
msgid "No Timeline settings updated."
msgstr "Keine Timeline-Einstellungen aktualisiert."
#: ../../addon.old/notimeline/notimeline.php:56
#: ../../addon/notimeline/notimeline.php:56
msgid "No Timeline Settings"
msgstr "Keine Timeline-Einstellungen"
#: ../../addon.old/notimeline/notimeline.php:58
#: ../../addon/notimeline/notimeline.php:58
msgid "Disable Archive selector on profile wall"
msgstr "Deaktiviere Archiv-Auswahl auf Deiner Pinnwand"
#: ../../addon.old/nsfw/nsfw.php:78 ../../addon/nsfw/nsfw.php:78
msgid "Not Safe For Work (General Purpose Content Filter) settings"
msgstr "Not Safe for Work (allg. Filter für ungewollte Inhalte) Einstellungen:"
#: ../../addon.old/nsfw/nsfw.php:80 ../../addon/nsfw/nsfw.php:80
msgid ""
"This plugin looks in posts for the words/text you specify below, and "
"collapses any content containing those keywords so it is not displayed at "
"inappropriate times, such as sexual innuendo that may be improper in a work "
"setting. It is polite and recommended to tag any content containing nudity "
"with #NSFW. This filter can also match any other word/text you specify, and"
" can thereby be used as a general purpose content filter."
msgstr "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden."
#: ../../addon.old/nsfw/nsfw.php:81 ../../addon/nsfw/nsfw.php:81
msgid "Enable Content filter"
msgstr "Aktiviere den Inhaltsfilter"
#: ../../addon.old/nsfw/nsfw.php:84 ../../addon/nsfw/nsfw.php:84
msgid "Comma separated list of keywords to hide"
msgstr "Durch Komma getrennte Liste von Schlüsselwörtern die verborgen werden sollen"
#: ../../addon.old/nsfw/nsfw.php:89 ../../addon/nsfw/nsfw.php:89
msgid "Use /expression/ to provide regular expressions"
msgstr "Verwende /expression/ um reguläre Ausdrücke zu verwenden"
#: ../../addon.old/nsfw/nsfw.php:105 ../../addon/nsfw/nsfw.php:105
msgid "NSFW Settings saved."
msgstr "NSFW-Einstellungen gespeichert"
#: ../../addon.old/nsfw/nsfw.php:157 ../../addon/nsfw/nsfw.php:157
#, php-format
msgid "%s - Click to open/close"
msgstr "%s Zum Öffnen/Schließen klicken"
#: ../../addon.old/numfriends/numfriends.php:46
#: ../../addon/numfriends/numfriends.php:46
msgid "Numfriends settings updated."
msgstr "Numfriends Einstellungen aktualisiert"
#: ../../addon.old/numfriends/numfriends.php:77
#: ../../addon/numfriends/numfriends.php:77
msgid "Numfriends Settings"
msgstr "Numfriends Einstellungen"
#: ../../addon.old/oembed.old/oembed.php:30
msgid "OEmbed settings updated"
msgstr "OEmbed Einstellungen aktualisiert."
#: ../../addon.old/oembed.old/oembed.php:43
msgid "Use OEmbed for YouTube videos"
msgstr "OEmbed für Youtube Videos verwenden"
#: ../../addon.old/oembed.old/oembed.php:71
msgid "URL to embed:"
msgstr "URL zum Einbetten:"
#: ../../addon.old/openstreetmap/openstreetmap.php:71
#: ../../addon/openstreetmap/openstreetmap.php:95
msgid "Tile Server URL"
msgstr "Tile Server URL"
#: ../../addon.old/openstreetmap/openstreetmap.php:71
#: ../../addon/openstreetmap/openstreetmap.php:95
msgid ""
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
"target=\"_blank\">public tile servers</a>"
msgstr "Eine Liste <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">öffentlicher Tile Server</a>"
#: ../../addon.old/openstreetmap/openstreetmap.php:72
#: ../../addon/openstreetmap/openstreetmap.php:96
msgid "Default zoom"
msgstr "Standard Zoom"
#: ../../addon.old/openstreetmap/openstreetmap.php:72
#: ../../addon/openstreetmap/openstreetmap.php:96
msgid "The default zoom level. (1:world, 18:highest)"
msgstr "Standard Zoomlevel (1: Welt; 18: höchstes)"
#: ../../addon.old/page/page.php:77 ../../addon.old/page/page.php:111
#: ../../addon.old/showmore/showmore.php:119 ../../addon/page/page.php:77
#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
#: ../../object/Item.php:355 ../../boot.php:652
msgid "show more"
msgstr "mehr anzeigen"
#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166
msgid "Page settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195
msgid "Page Settings"
msgstr "Seiteneinstellungen"
#: ../../addon.old/page/page.php:197 ../../addon/page/page.php:197
msgid "How many forums to display on sidebar without paging"
msgstr "Wie viele Foren sollen in der Seitenleiste ohne Umblättern angezeigt werden"
#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200
msgid "Randomise Page/Forum list"
msgstr "Zufällige Seiten/Foren Liste"
#: ../../addon.old/page/page.php:203 ../../addon/page/page.php:203
msgid "Show pages/forums on profile page"
msgstr "Foren/Seiten auf der Profilseite anzeigen"
#: ../../addon.old/pageheader/pageheader.php:50
#: ../../addon/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings"
msgstr "\"pageheader\"-Einstellungen"
#: ../../addon.old/pageheader/pageheader.php:68
#: ../../addon/pageheader/pageheader.php:68
msgid "pageheader Settings saved."
msgstr "pageheader-Einstellungen gespeichert."
#: ../../addon.old/piwik/piwik.php:79 ../../addon/piwik/piwik.php:79
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
"analytics tool."
msgstr "Diese Website benutzt <a href='http://www.piwik.org'>Piwik</a>, eine Open Source-Software zur statistischen Auswertung der Besucherzugriffe."
#: ../../addon.old/piwik/piwik.php:82 ../../addon/piwik/piwik.php:82
#, php-format
msgid ""
"If you do not want that your visits are logged this way you <a href='%s'>can"
" set a cookie to prevent Piwik from tracking further visits of the site</a> "
"(opt-out)."
msgstr "Wenn du nicht willst, dass deine Besuche auf diese Weise gespeichert werden, kannst du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik dich auf dieser Website nicht mehr verfolgen (opt-out)."
#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
msgid "Piwik Base URL"
msgstr "Piwik Basis URL"
#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
msgid ""
"Absolute path to your Piwik installation. (without protocol (http/s), with "
"trailing slash)"
msgstr "Absoluter Pfad zu deiner Piwik Installation (ohne Protokoll (http/s) und mit abschließendem Schrägstrich)"
#: ../../addon.old/piwik/piwik.php:91 ../../addon/piwik/piwik.php:91
msgid "Site ID"
msgstr "Seiten ID"
#: ../../addon.old/piwik/piwik.php:92 ../../addon/piwik/piwik.php:92
msgid "Show opt-out cookie link?"
msgstr "Link zum Setzen des Opt-Out Cookies anzeigen?"
#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93
msgid "Asynchronous tracking"
msgstr "Asynchrones Tracken"
#: ../../addon.old/planets/planets.php:150 ../../addon/planets/planets.php:150
msgid "Planets Settings"
msgstr "Planeten Einstellungen"
#: ../../addon.old/planets/planets.php:152 ../../addon/planets/planets.php:152
msgid "Enable Planets Plugin"
msgstr "Aktiviere Planeten Plugin"
#: ../../addon.old/posterous/posterous.php:37
#: ../../addon/posterous/posterous.php:37
msgid "Post to Posterous"
msgstr "Nach Posterous senden"
#: ../../addon.old/posterous/posterous.php:70
#: ../../addon/posterous/posterous.php:70
msgid "Posterous Post Settings"
msgstr "Posterous Beitrags-Einstellungen"
#: ../../addon.old/posterous/posterous.php:72
#: ../../addon/posterous/posterous.php:72
msgid "Enable Posterous Post Plugin"
msgstr "Posterous-Plugin aktivieren"
#: ../../addon.old/posterous/posterous.php:77
#: ../../addon/posterous/posterous.php:77
msgid "Posterous login"
msgstr "Posterous-Anmeldename"
#: ../../addon.old/posterous/posterous.php:82
#: ../../addon/posterous/posterous.php:82
msgid "Posterous password"
msgstr "Posterous-Passwort"
#: ../../addon.old/posterous/posterous.php:87
#: ../../addon/posterous/posterous.php:87
msgid "Posterous site ID"
msgstr "Posterous site ID"
#: ../../addon.old/posterous/posterous.php:92
#: ../../addon/posterous/posterous.php:92
msgid "Posterous API token"
msgstr "Posterous API token"
#: ../../addon.old/posterous/posterous.php:97
#: ../../addon/posterous/posterous.php:97
msgid "Post to Posterous by default"
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous"
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
msgid "Lifetime of the cache (in hours)"
msgstr "Lebenszeit des Caches (in Stunden)"
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
msgid "Cache Statistics"
msgstr "Cache Statistik"
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
msgid "Number of items"
msgstr "Anzahl der Einträge"
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
msgid "Size of the cache"
msgstr "Größe des Caches"
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
msgid "Delete the whole cache"
msgstr "Cache leeren"
#: ../../addon.old/public_server/public_server.php:126
#: ../../addon.old/testdrive/testdrive.php:94
#: ../../addon/public_server/public_server.php:126
#: ../../addon/testdrive/testdrive.php:94
#, php-format
msgid "Your account on %s will expire in a few days."
msgstr "Dein Konto auf %s wird in ein paar Tagen verfallen."
#: ../../addon.old/public_server/public_server.php:127
#: ../../addon/public_server/public_server.php:127
msgid "Your Friendica account is about to expire."
msgstr "Dein Friendica-Konto wird in Kürze auslaufen."
#: ../../addon.old/public_server/public_server.php:128
#: ../../addon/public_server/public_server.php:128
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
msgstr "Hallo %1$s,\n\ndein Account auf %2$s wird in weniger als fünf Tagen auslaufen. Du kannst das verhindern, indem du dich mindestens einmal alle 30 Tage anmeldest."
#: ../../addon.old/qcomment/qcomment.php:51
#: ../../addon/qcomment/qcomment.php:51
msgid ":-)"
msgstr ":-)"
#: ../../addon.old/qcomment/qcomment.php:51
#: ../../addon/qcomment/qcomment.php:51
msgid ":-("
msgstr ":-("
#: ../../addon.old/qcomment/qcomment.php:51
#: ../../addon/qcomment/qcomment.php:51
msgid "lol"
msgstr "lol"
#: ../../addon.old/qcomment/qcomment.php:54
#: ../../addon/qcomment/qcomment.php:54
msgid "Quick Comment Settings"
msgstr "Schnell-Kommentar Einstellungen"
#: ../../addon.old/qcomment/qcomment.php:56
#: ../../addon/qcomment/qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
" provide simple replies."
msgstr "Kurzkommentare findet man in der Nähe der Kommentarboxen. Ein Klick darauf erstellt einfache Antworten."
#: ../../addon.old/qcomment/qcomment.php:57
#: ../../addon/qcomment/qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr "Gib einen Schnell-Kommentar pro Zeile ein"
#: ../../addon.old/qcomment/qcomment.php:75
#: ../../addon/qcomment/qcomment.php:75
msgid "Quick Comment settings saved."
msgstr "Schnell-Kommentare Einstellungen gespeichert"
#: ../../addon.old/randplace/randplace.php:169
#: ../../addon/randplace/randplace.php:169
msgid "Randplace Settings"
msgstr "Randplace-Einstellungen"
#: ../../addon.old/randplace/randplace.php:171
#: ../../addon/randplace/randplace.php:171
msgid "Enable Randplace Plugin"
msgstr "Randplace-Plugin aktivieren"
#: ../../addon.old/showmore/showmore.php:38
#: ../../addon/showmore/showmore.php:38
msgid "\"Show more\" Settings"
msgstr "\"Mehr zeigen\" Einstellungen"
#: ../../addon.old/showmore/showmore.php:41
#: ../../addon/showmore/showmore.php:41
msgid "Enable Show More"
msgstr "Aktiviere \"Mehr zeigen\""
#: ../../addon.old/showmore/showmore.php:44
#: ../../addon/showmore/showmore.php:44
msgid "Cutting posts after how much characters"
msgstr "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben"
#: ../../addon.old/showmore/showmore.php:65
#: ../../addon/showmore/showmore.php:65
msgid "Show More Settings saved."
msgstr "\"Mehr zeigen\" Einstellungen gesichert."
#: ../../addon.old/snautofollow/snautofollow.php:32
#: ../../addon/snautofollow/snautofollow.php:32
msgid "StatusNet AutoFollow settings updated."
msgstr "StatusNet AutoFollow Einstellungen aktualisiert."
#: ../../addon.old/snautofollow/snautofollow.php:56
#: ../../addon/snautofollow/snautofollow.php:56
msgid "StatusNet AutoFollow Settings"
msgstr "StatusNet AutoFollow Einstellungen"
#: ../../addon.old/snautofollow/snautofollow.php:58
#: ../../addon/snautofollow/snautofollow.php:58
msgid "Automatically follow any StatusNet followers/mentioners"
msgstr "Automatisch allen StatusNet Followern/Erwähnungen folgen"
#: ../../addon.old/startpage/startpage.php:83
#: ../../addon/startpage/startpage.php:83
msgid "Startpage Settings"
msgstr "Startseiten-Einstellungen"
#: ../../addon.old/startpage/startpage.php:85
#: ../../addon/startpage/startpage.php:85
msgid "Home page to load after login - leave blank for profile wall"
msgstr "Seite, die nach dem Anmelden geladen werden soll. Leer = Pinnwand"
#: ../../addon.old/startpage/startpage.php:88
#: ../../addon/startpage/startpage.php:88
msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr "Beispiele: network, notifications/system"
#: ../../addon.old/statusnet/statusnet.php:134
#: ../../addon/statusnet/statusnet.php:138
msgid "Post to StatusNet"
msgstr "Bei StatusNet veröffentlichen"
#: ../../addon.old/statusnet/statusnet.php:176
#: ../../addon/statusnet/statusnet.php:180
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"valid."
msgstr "Bitte kontaktiere den Administrator des Servers.<br />Die angegebene API-URL ist nicht gültig."
#: ../../addon.old/statusnet/statusnet.php:204
#: ../../addon/statusnet/statusnet.php:208
msgid "We could not contact the StatusNet API with the Path you entered."
msgstr "Die StatusNet-API konnte mit dem angegebenen Pfad nicht erreicht werden."
#: ../../addon.old/statusnet/statusnet.php:232
#: ../../addon/statusnet/statusnet.php:238
msgid "StatusNet settings updated."
msgstr "StatusNet Einstellungen aktualisiert."
#: ../../addon.old/statusnet/statusnet.php:257
#: ../../addon/statusnet/statusnet.php:269
msgid "StatusNet Posting Settings"
msgstr "StatusNet-Beitragseinstellungen"
#: ../../addon.old/statusnet/statusnet.php:271
#: ../../addon/statusnet/statusnet.php:283
msgid "Globally Available StatusNet OAuthKeys"
msgstr "Verfügbare OAuth Schlüssel für StatusNet"
#: ../../addon.old/statusnet/statusnet.php:272
#: ../../addon/statusnet/statusnet.php:284
msgid ""
"There are preconfigured OAuth key pairs for some StatusNet servers "
"available. If you are useing one of them, please use these credentials. If "
"not feel free to connect to any other StatusNet instance (see below)."
msgstr "Für einige StatusNet Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen StatusNet Server her (siehe unten)."
#: ../../addon.old/statusnet/statusnet.php:280
#: ../../addon/statusnet/statusnet.php:292
msgid "Provide your own OAuth Credentials"
msgstr "Eigene OAuth Schlüssel eintragen"
#: ../../addon.old/statusnet/statusnet.php:281
#: ../../addon/statusnet/statusnet.php:293
msgid ""
"No consumer key pair for StatusNet found. Register your Friendica Account as"
" an desktop client on your StatusNet account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Friendica installation at your favorited StatusNet installation."
msgstr "Kein Consumer-Schlüsselpaar für StatusNet gefunden. Registriere deinen Friendica-Account als Desktop-Client, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br />Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem StatusNet-Server existiert."
#: ../../addon.old/statusnet/statusnet.php:283
#: ../../addon/statusnet/statusnet.php:295
msgid "OAuth Consumer Key"
msgstr "OAuth Consumer Key"
#: ../../addon.old/statusnet/statusnet.php:286
#: ../../addon/statusnet/statusnet.php:298
msgid "OAuth Consumer Secret"
msgstr "OAuth Consumer Secret"
#: ../../addon.old/statusnet/statusnet.php:289
#: ../../addon/statusnet/statusnet.php:301
msgid "Base API Path (remember the trailing /)"
msgstr "Basis-URL der StatusNet-API (vergiss den abschließenden / nicht)"
#: ../../addon.old/statusnet/statusnet.php:310
#: ../../addon/statusnet/statusnet.php:322
msgid ""
"To connect to your StatusNet account click the button below to get a "
"security code from StatusNet which you have to copy into the input box below"
" and submit the form. Only your <strong>public</strong> posts will be posted"
" to StatusNet."
msgstr "Um dein Konto mit einem StatusNet-Konto zu verknüpfen, klicke den Button an, um einen Sicherheitscode von StatusNet zu erhalten, und kopiere diesen in das Eingabefeld weiter unten. Es werden ausschließlich deine <strong>öffentlichen</strong> Nachrichten an StatusNet gesendet."
#: ../../addon.old/statusnet/statusnet.php:311
#: ../../addon/statusnet/statusnet.php:323
msgid "Log in with StatusNet"
msgstr "Bei StatusNet anmelden"
#: ../../addon.old/statusnet/statusnet.php:313
#: ../../addon/statusnet/statusnet.php:325
msgid "Copy the security code from StatusNet here"
msgstr "Kopiere den Sicherheitscode von StatusNet hier hin"
#: ../../addon.old/statusnet/statusnet.php:319
#: ../../addon/statusnet/statusnet.php:331
msgid "Cancel Connection Process"
msgstr "Verbindungsprozess abbrechen"
#: ../../addon.old/statusnet/statusnet.php:321
#: ../../addon/statusnet/statusnet.php:333
msgid "Current StatusNet API is"
msgstr "Derzeitige StatusNet-API-URL lautet"
#: ../../addon.old/statusnet/statusnet.php:322
#: ../../addon/statusnet/statusnet.php:334
msgid "Cancel StatusNet Connection"
msgstr "Verbindung zum StatusNet Server abbrechen"
#: ../../addon.old/statusnet/statusnet.php:333
#: ../../addon.old/twitter/twitter.php:189
#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
msgid "Currently connected to: "
msgstr "Momentan verbunden mit: "
#: ../../addon.old/statusnet/statusnet.php:334
#: ../../addon/statusnet/statusnet.php:346
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated StatusNet account. You can choose to do so by default (here) or "
"for every posting separately in the posting options when writing the entry."
msgstr "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen StatusNet-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen."
#: ../../addon.old/statusnet/statusnet.php:336
#: ../../addon/statusnet/statusnet.php:348
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to StatusNet will lead the visitor to a blank page "
"informing the visitor that the access to your profile has been restricted."
msgstr "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an deinen StatusNet-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde."
#: ../../addon.old/statusnet/statusnet.php:339
#: ../../addon/statusnet/statusnet.php:351
msgid "Allow posting to StatusNet"
msgstr "Veröffentlichung bei StatusNet erlauben"
#: ../../addon.old/statusnet/statusnet.php:342
#: ../../addon/statusnet/statusnet.php:354
msgid "Send public postings to StatusNet by default"
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet"
#: ../../addon.old/statusnet/statusnet.php:345
#: ../../addon/statusnet/statusnet.php:366
msgid "Send linked #-tags and @-names to StatusNet"
msgstr "Sende verlinkte #-Tags und @-Namen nach StatusNet"
#: ../../addon.old/statusnet/statusnet.php:350
#: ../../addon.old/twitter/twitter.php:206
#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
msgid "Clear OAuth configuration"
msgstr "OAuth-Konfiguration löschen"
#: ../../addon.old/statusnet/statusnet.php:567
#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:484
msgid "Site name"
msgstr "Seitenname"
#: ../../addon.old/statusnet/statusnet.php:568
#: ../../addon/statusnet/statusnet.php:745
msgid "API URL"
msgstr "API-URL"
#: ../../addon.old/statusnet/statusnet.php:569
#: ../../addon/statusnet/statusnet.php:746 ../../mod/settings.php:564
#: ../../mod/settings.php:590
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../addon.old/statusnet/statusnet.php:570
#: ../../addon/statusnet/statusnet.php:747 ../../mod/settings.php:563
#: ../../mod/settings.php:589
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../addon.old/testdrive/testdrive.php:95
#: ../../addon/testdrive/testdrive.php:95
msgid "Your Friendica test account is about to expire."
msgstr "Dein Friendica-Testkonto wird bald verfallen."
#: ../../addon.old/testdrive/testdrive.php:96
#: ../../addon/testdrive/testdrive.php:96
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
msgstr "Hallo %1$s,\n\ndein Testkonto auf %2$s wird in weniger als fünf Tagen verfallen. Wir hoffen, dass dir dieser Testlauf gefallen hat, so dass du die Gelegenheit nutzt und dir einen normalen Friendica-Server für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Server findest du auf http://dir.friendica.com/siteinfo . Um mehr Information darüber zu bekommen, wie man einen eigenen Friendica-Server aufsetzt, kannst du auch einen Blick auf die Friendica-Projektseite werfen: http://friendica.com"
#: ../../addon.old/tictac/tictac.php:20 ../../addon/tictac/tictac.php:20
msgid "Three Dimensional Tic-Tac-Toe"
msgstr "Dreidimensionales Tic-Tac-Toe"
#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53
msgid "3D Tic-Tac-Toe"
msgstr "3D Tic-Tac-Toe"
#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58
msgid "New game"
msgstr "Neues Spiel"
#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59
msgid "New game with handicap"
msgstr "Neues Handicap Spiel"
#: ../../addon.old/tictac/tictac.php:60 ../../addon/tictac/tictac.php:60
msgid ""
"Three dimensional tic-tac-toe is just like the traditional game except that "
"it is played on multiple levels simultaneously. "
msgstr "3D-Tic-Tac-Toe ist genauso wie das herkömmliche Spiel, nur dass man es auf mehreren Ebenen gleichzeitig spielt."
#: ../../addon.old/tictac/tictac.php:61 ../../addon/tictac/tictac.php:61
msgid ""
"In this case there are three levels. You win by getting three in a row on "
"any level, as well as up, down, and diagonally across the different levels."
msgstr "In diesem Fall sind es drei Ebenen. Man gewinnt indem man drei in einer Reihe auf einer beliebigen Reihe schafft, oder drei übereinander oder diagonal auf verschiedenen Ebenen."
#: ../../addon.old/tictac/tictac.php:63 ../../addon/tictac/tictac.php:63
msgid ""
"The handicap game disables the center position on the middle level because "
"the player claiming this square often has an unfair advantage."
msgstr "Beim Handicap-Spiel wird die zentrale Position der mittleren Ebene gesperrt, da der Spieler, der diese Ebene besitzt, oft einen unfairen Vorteil genießt."
#: ../../addon.old/tictac/tictac.php:182 ../../addon/tictac/tictac.php:182
msgid "You go first..."
msgstr "Du fängst an..."
#: ../../addon.old/tictac/tictac.php:187 ../../addon/tictac/tictac.php:187
msgid "I'm going first this time..."
msgstr "Diesmal fange ich an..."
#: ../../addon.old/tictac/tictac.php:193 ../../addon/tictac/tictac.php:193
msgid "You won!"
msgstr "Du gewinnst!"
#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
msgid "\"Cat\" game!"
msgstr "Unentschieden!"
#: ../../addon.old/tictac/tictac.php:222 ../../addon/tictac/tictac.php:222
msgid "I won!"
msgstr "Ich gewinne!"
#: ../../addon.old/tumblr/tumblr.php:36 ../../addon/tumblr/tumblr.php:158
msgid "Post to Tumblr"
msgstr "Bei Tumblr veröffentlichen"
#: ../../addon.old/tumblr/tumblr.php:67 ../../addon/tumblr/tumblr.php:185
msgid "Tumblr Post Settings"
msgstr "Tumblr-Beitragseinstellungen"
#: ../../addon.old/tumblr/tumblr.php:69 ../../addon/tumblr/tumblr.php:192
msgid "Enable Tumblr Post Plugin"
msgstr "Tumblr-Plugin aktivieren"
#: ../../addon.old/tumblr/tumblr.php:74
msgid "Tumblr login"
msgstr "Tumblr Login"
#: ../../addon.old/tumblr/tumblr.php:79
msgid "Tumblr password"
msgstr "Tumblr Passwort"
#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197
msgid "Post to Tumblr by default"
msgstr "Standardmäßig bei Tumblr veröffentlichen"
#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77
msgid "Post to Twitter"
msgstr "Bei Twitter veröffentlichen"
#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129
msgid "Twitter settings updated."
msgstr "Twitter Einstellungen aktualisiert."
#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157
msgid "Twitter Posting Settings"
msgstr "Twitter-Beitragseinstellungen"
#: ../../addon.old/twitter/twitter.php:153 ../../addon/twitter/twitter.php:164
msgid ""
"No consumer key pair for Twitter found. Please contact your site "
"administrator."
msgstr "Kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte wende dich an den Administrator der Seite."
#: ../../addon.old/twitter/twitter.php:172 ../../addon/twitter/twitter.php:183
msgid ""
"At this Friendica instance the Twitter plugin was enabled but you have not "
"yet connected your account to your Twitter account. To do so click the "
"button below to get a PIN from Twitter which you have to copy into the input"
" box below and submit the form. Only your <strong>public</strong> posts will"
" be posted to Twitter."
msgstr "Auf diesem Friendica-Server wurde das Twitter-Plugin aktiviert, aber du hast deinen Account noch nicht mit deinem Twitter-Account verbunden. Klicke dazu auf die Schaltfläche unten. Du erhältst dann eine PIN von Twitter, die du dann in das Eingabefeld unten einfügst. Denk daran, den Senden-Knopf zu drücken! Nur <strong>öffentliche</strong> Beiträge werden bei Twitter veröffentlicht."
#: ../../addon.old/twitter/twitter.php:173 ../../addon/twitter/twitter.php:184
msgid "Log in with Twitter"
msgstr "bei Twitter anmelden"
#: ../../addon.old/twitter/twitter.php:175 ../../addon/twitter/twitter.php:186
msgid "Copy the PIN from Twitter here"
msgstr "Kopiere die Twitter-PIN hier her"
#: ../../addon.old/twitter/twitter.php:190 ../../addon/twitter/twitter.php:201
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated Twitter account. You can choose to do so by default (here) or for"
" every posting separately in the posting options when writing the entry."
msgstr "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen."
#: ../../addon.old/twitter/twitter.php:192 ../../addon/twitter/twitter.php:203
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to Twitter will lead the visitor to a blank page informing "
"the visitor that the access to your profile has been restricted."
msgstr "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an an deinen Twitter-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde."
#: ../../addon.old/twitter/twitter.php:195 ../../addon/twitter/twitter.php:206
msgid "Allow posting to Twitter"
msgstr "Veröffentlichung bei Twitter erlauben"
#: ../../addon.old/twitter/twitter.php:198 ../../addon/twitter/twitter.php:209
msgid "Send public postings to Twitter by default"
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter"
#: ../../addon.old/twitter/twitter.php:201 ../../addon/twitter/twitter.php:221
msgid "Send linked #-tags and @-names to Twitter"
msgstr "Sende verlinkte #-Tags und @-Namen nach Twitter"
#: ../../addon.old/twitter/twitter.php:396 ../../addon/twitter/twitter.php:558
msgid "Consumer key"
msgstr "Consumer Key"
#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559
msgid "Consumer secret"
msgstr "Consumer Secret"
#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
#: ../../addon/uhremotestorage/uhremotestorage.php:84
#, php-format
msgid ""
"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
" storage (like ownCloud). See <a "
"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
" WebFinger</a>"
msgstr "Ermöglicht dir, deine Friendica ID (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
#: ../../addon/uhremotestorage/uhremotestorage.php:85
msgid "Template URL (with {category})"
msgstr "Vorlagen URL (mit {Kategorie})"
#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
#: ../../addon/uhremotestorage/uhremotestorage.php:86
msgid "OAuth end-point"
msgstr "OAuth Endpunkt"
#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
#: ../../addon/uhremotestorage/uhremotestorage.php:87
msgid "Api"
msgstr "Api"
#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39
msgid "View Source"
msgstr "Quelle ansehen"
#: ../../addon.old/widgets/widget_friendheader.php:40
#: ../../addon/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr "Werde Mitglied dieser Liste"
#: ../../addon.old/widgets/widget_friends.php:40
#: ../../addon/widgets/widget_friends.php:40
msgid "Connect on Friendica!"
msgstr "In Friendica verbinden!"
#: ../../addon.old/widgets/widget_like.php:58
#: ../../addon/widgets/widget_like.php:59
#, php-format
msgid "%d person likes this"
msgid_plural "%d people like this"
msgstr[0] "%d Person mag das"
msgstr[1] "%d Leute mögen das"
#: ../../addon.old/widgets/widget_like.php:61
#: ../../addon/widgets/widget_like.php:62
#, php-format
msgid "%d person doesn't like this"
msgid_plural "%d people don't like this"
msgstr[0] " %d Person mag das nicht"
msgstr[1] "%d Leute mögen das nicht"
#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57
msgid "Generate new key"
msgstr "Neuen Schlüssel erstellen"
#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60
msgid "Widgets key"
msgstr "Widgets Schlüssel"
#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62
msgid "Widgets available"
msgstr "Verfügbare Widgets"
#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124
#: ../../mod/settings.php:646
msgid "Plugin Settings"
msgstr "Plugin-Einstellungen"
#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42
msgid "Post to Wordpress"
msgstr "Bei WordPress veröffentlichen"
#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76
msgid "WordPress Post Settings"
msgstr "WordPress-Beitragseinstellungen"
#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78
msgid "Enable WordPress Post Plugin"
msgstr "WordPress-Plugin aktivieren."
#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83
msgid "WordPress username"
msgstr "WordPress-Benutzername"
#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88
msgid "WordPress password"
msgstr "WordPress-Passwort"
#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93
msgid "WordPress API URL"
msgstr "WordPress-API-URL"
#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98
msgid "Post to WordPress by default"
msgstr "Standardmäßig auf WordPress veröffentlichen"
#: ../../addon.old/wppost/wppost.php:103 ../../addon/wppost/wppost.php:103
msgid "Provide a backlink to the Friendica post"
msgstr "Einen Link zurück zum Friendica-Beitrag hinzufügen"
#: ../../addon.old/wppost/wppost.php:207 ../../addon/wppost/wppost.php:207
msgid "Read the original post and comment stream on Friendica"
msgstr "Den Originalbeitrag samt Kommentaren bei Friendica lesen"
#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55
msgid "YourLS Settings"
msgstr "YourLS Einstellungen"
#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57
msgid "URL: http://"
msgstr "URL: http://"
#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62
msgid "Username:"
msgstr "Nutzername:"
#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67
msgid "Password:"
msgstr "Passwort:"
#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72
msgid "Use SSL "
msgstr "SSL Verwenden "
#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92
msgid "yourls Settings saved."
msgstr "yourls Einstellungen gespeichert"
#: ../../addon/altpager/altpager.php:99
#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "Global"
msgstr "Global"
#: ../../addon/altpager/altpager.php:99
msgid "Force global use of the alternate pager"
msgstr "Erzwinge die Verwendung des \"Alternate Pager\" auf diesem Server"
#: ../../addon/altpager/altpager.php:100
#: ../../addon/remote_permissions/remote_permissions.php:198
msgid "Individual"
msgstr "Individuell"
#: ../../addon/altpager/altpager.php:100
msgid "Each user chooses whether to use the alternate pager"
msgstr "Jede/r Nutzer/in kann wählen ob der \"Alternate Pager\" verwendet werden soll"
#: ../../addon/fbpost/fbpost.php:239
msgid "Suppress \"View on friendica\""
msgstr "Unterdrücke \"Auf Friendica Ansehen\""
#: ../../addon/fbpost/fbpost.php:243
msgid "Mirror wall posts from facebook to friendica."
msgstr "Spiegle Pinnwandeinträge von Facebook auf friendica"
#: ../../addon/fbpost/fbpost.php:253
msgid "Post to page/group:"
msgstr "Auf FB Seite/Gruppe veröffentlichen"
#: ../../addon/fbpost/fbpost.php:375
#, php-format
msgid "%s:"
msgstr "%s:"
#: ../../addon/forumdirectory/forumdirectory.php:22
msgid "Forum Directory"
msgstr "Foren Verzeichnis"
#: ../../addon/forumdirectory/forumdirectory.php:53 ../../mod/search.php:89
#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
#: ../../mod/display.php:19 ../../mod/viewcontacts.php:17
#: ../../mod/community.php:18 ../../mod/photos.php:914
msgid "Public access denied."
msgstr "Öffentlicher Zugriff verweigert."
#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49
#: ../../view/theme/diabook/theme.php:518
msgid "Global Directory"
msgstr "Weltweites Verzeichnis"
#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57
msgid "Find on this site"
msgstr "Auf diesem Server suchen"
#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612
#: ../../mod/directory.php:59
msgid "Finding: "
msgstr "Funde: "
#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60
msgid "Site Directory"
msgstr "Verzeichnis"
#: ../../addon/forumdirectory/forumdirectory.php:83
#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
#: ../../mod/directory.php:61
msgid "Find"
msgstr "Finde"
#: ../../addon/forumdirectory/forumdirectory.php:133
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
msgid "Age: "
msgstr "Alter: "
#: ../../addon/forumdirectory/forumdirectory.php:136
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr "Geschlecht:"
#: ../../addon/forumdirectory/forumdirectory.php:156
#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1406
msgid "Location:"
msgstr "Ort:"
#: ../../addon/forumdirectory/forumdirectory.php:158
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
#: ../../boot.php:1408
msgid "Gender:"
msgstr "Geschlecht:"
#: ../../addon/forumdirectory/forumdirectory.php:160
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
#: ../../boot.php:1411
msgid "Status:"
msgstr "Status:"
#: ../../addon/forumdirectory/forumdirectory.php:162
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
#: ../../boot.php:1413
msgid "Homepage:"
msgstr "Homepage:"
#: ../../addon/forumdirectory/forumdirectory.php:164
#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
msgid "About:"
msgstr "Über:"
#: ../../addon/forumdirectory/forumdirectory.php:201
#: ../../mod/directory.php:187
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
#: ../../addon/group_text/group_text.php:46
msgid "Group Text settings updated."
msgstr "Gruppen Text Einstellungen aktualisiert"
#: ../../addon/remote_permissions/remote_permissions.php:45
msgid "Remote Permissions Settings"
msgstr "Entfernte Privatsphäreneinstellungen"
#: ../../addon/remote_permissions/remote_permissions.php:46
msgid ""
"Allow recipients of your private posts to see the other recipients of the "
"posts"
msgstr "Erlaube Empfängern von privaten Nachrichten zu sehen wer die anderen Empfänger sind"
#: ../../addon/remote_permissions/remote_permissions.php:58
msgid "Remote Permissions settings updated."
msgstr "Entfernte Privatsphäreneinstellungen aktualisiert."
#: ../../addon/remote_permissions/remote_permissions.php:124
#: ../../mod/lockview.php:48
msgid "Visible to:"
msgstr "Sichtbar für:"
#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "Visible to"
msgstr "Sichtbar für"
#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "may only be a partial list"
msgstr "könnte nur ein Teil der Liste sein"
#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "The posts of every user on this server show the post recipients"
msgstr "Die Beiträge jedes Nutzers dieses Servers werden die Empfänger des Beitrags anzeigen"
#: ../../addon/remote_permissions/remote_permissions.php:198
msgid "Each user chooses whether his/her posts show the post recipients"
msgstr "Jede/r Nutzer/in kann wählen ob die Empfänger der Beiträge angezeigt werden sollen oder nicht"
#: ../../addon/statusnet/statusnet.php:358
msgid ""
"Mirror all posts from statusnet that are no replies or repeated messages"
msgstr "Spiegle alle Beiträge von StatusNet die keine Antworten oder wiederholten Nachrichten sind"
#: ../../addon/statusnet/statusnet.php:362
msgid "Shortening method that optimizes the post"
msgstr "Kürzungsverfahren, das den Beitrag optimiert"
#: ../../addon/tumblr/tumblr.php:144
msgid "You are now authenticated to tumblr."
msgstr "Du bist nun auf tumblr authentifiziert."
#: ../../addon/tumblr/tumblr.php:145
msgid "return to the connector page"
msgstr "zurück zur Connector Seite"
#: ../../addon/tumblr/tumblr.php:188
msgid "(Re-)Authenticate your tumblr page"
msgstr "(Re-)Authentifizierung deiner tumblr Seite"
#: ../../addon/tumblr/tumblr.php:217
msgid "Post to page:"
msgstr "Auf tumblr veröffentlichen"
#: ../../addon/tumblr/tumblr.php:228
msgid "You are not authenticated to tumblr"
msgstr "Du bist gegenüber tumblr nicht authentifiziert"
#: ../../addon/twitter/twitter.php:213
msgid "Mirror all posts from twitter that are no replies or retweets"
msgstr "Spiegle alle Beiträge von Twitter die keine Antworten oder wiederholten Nachrichten sind"
#: ../../addon/twitter/twitter.php:217
msgid "Shortening method that optimizes the tweet"
msgstr "Kürzungsverfahren, das den Tweet optimiert"
#: ../../addon/twitter/twitter.php:560
msgid "Name of the Twitter Application"
msgstr "Name der Twitter Anwendung"
#: ../../addon/twitter/twitter.php:560
msgid ""
"set this to avoid mirroring postings from ~friendica back to ~friendica"
msgstr "Setze dies um eine Spiegelung von ~friendica zu ~friendica zu vermeiden"
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
#: ../../include/nav.php:77 ../../mod/profperm.php:103
#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
#: ../../boot.php:1868
msgid "Profile"
msgstr "Profil"
#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050
msgid "Full Name:"
msgstr "Kompletter Name:"
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr "j F, Y"
#: ../../include/profile_advanced.php:23
msgid "j F"
msgstr "j F"
#: ../../include/profile_advanced.php:30
msgid "Birthday:"
msgstr "Geburtstag:"
#: ../../include/profile_advanced.php:34
msgid "Age:"
msgstr "Alter:"
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
msgstr "für %1$d %2$s"
#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646
msgid "Sexual Preference:"
msgstr "Sexuelle Vorlieben:"
#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648
msgid "Hometown:"
msgstr "Heimatort:"
#: ../../include/profile_advanced.php:52
msgid "Tags:"
msgstr "Tags"
#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649
msgid "Political Views:"
msgstr "Politische Ansichten:"
#: ../../include/profile_advanced.php:56
msgid "Religion:"
msgstr "Religion:"
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr "Hobbies/Interessen:"
#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653
msgid "Likes:"
msgstr "Likes:"
#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654
msgid "Dislikes:"
msgstr "Dislikes:"
#: ../../include/profile_advanced.php:67
msgid "Contact information and Social Networks:"
msgstr "Kontaktinformationen und Soziale Netzwerke:"
#: ../../include/profile_advanced.php:69
msgid "Musical interests:"
msgstr "Musikalische Interessen:"
#: ../../include/profile_advanced.php:71
msgid "Books, literature:"
msgstr "Literatur/Bücher:"
#: ../../include/profile_advanced.php:73
msgid "Television:"
msgstr "Fernsehen:"
#: ../../include/profile_advanced.php:75
msgid "Film/dance/culture/entertainment:"
msgstr "Filme/Tänze/Kultur/Unterhaltung:"
#: ../../include/profile_advanced.php:77
msgid "Love/Romance:"
msgstr "Liebesleben:"
#: ../../include/profile_advanced.php:79
msgid "Work/employment:"
msgstr "Arbeit/Beschäftigung:"
#: ../../include/profile_advanced.php:81
msgid "School/education:"
msgstr "Schule/Ausbildung:"
#: ../../include/profile_selectors.php:6
msgid "Male"
msgstr "Männlich"
#: ../../include/profile_selectors.php:6
msgid "Female"
msgstr "Weiblich"
#: ../../include/profile_selectors.php:6
msgid "Currently Male"
msgstr "Momentan männlich"
#: ../../include/profile_selectors.php:6
msgid "Currently Female"
msgstr "Momentan weiblich"
#: ../../include/profile_selectors.php:6
msgid "Mostly Male"
msgstr "Hauptsächlich männlich"
#: ../../include/profile_selectors.php:6
msgid "Mostly Female"
msgstr "Hauptsächlich weiblich"
#: ../../include/profile_selectors.php:6
msgid "Transgender"
msgstr "Transgender"
#: ../../include/profile_selectors.php:6
msgid "Intersex"
msgstr "Intersex"
#: ../../include/profile_selectors.php:6
msgid "Transsexual"
msgstr "Transsexuell"
#: ../../include/profile_selectors.php:6
msgid "Hermaphrodite"
msgstr "Hermaphrodit"
#: ../../include/profile_selectors.php:6
msgid "Neuter"
msgstr "Neuter"
#: ../../include/profile_selectors.php:6
msgid "Non-specific"
msgstr "Nicht spezifiziert"
#: ../../include/profile_selectors.php:6
msgid "Other"
msgstr "Andere"
#: ../../include/profile_selectors.php:6
msgid "Undecided"
msgstr "Unentschieden"
#: ../../include/profile_selectors.php:23
msgid "Males"
msgstr "Männer"
#: ../../include/profile_selectors.php:23
msgid "Females"
msgstr "Frauen"
#: ../../include/profile_selectors.php:23
msgid "Gay"
msgstr "Schwul"
#: ../../include/profile_selectors.php:23
msgid "Lesbian"
msgstr "Lesbisch"
#: ../../include/profile_selectors.php:23
msgid "No Preference"
msgstr "Keine Vorlieben"
#: ../../include/profile_selectors.php:23
msgid "Bisexual"
msgstr "Bisexuell"
#: ../../include/profile_selectors.php:23
msgid "Autosexual"
msgstr "Autosexual"
#: ../../include/profile_selectors.php:23
msgid "Abstinent"
msgstr "Abstinent"
#: ../../include/profile_selectors.php:23
msgid "Virgin"
msgstr "Jungfrauen"
#: ../../include/profile_selectors.php:23
msgid "Deviant"
msgstr "Deviant"
#: ../../include/profile_selectors.php:23
msgid "Fetish"
msgstr "Fetish"
#: ../../include/profile_selectors.php:23
msgid "Oodles"
msgstr "Oodles"
#: ../../include/profile_selectors.php:23
msgid "Nonsexual"
msgstr "Nonsexual"
#: ../../include/profile_selectors.php:42
msgid "Single"
msgstr "Single"
#: ../../include/profile_selectors.php:42
msgid "Lonely"
msgstr "Einsam"
#: ../../include/profile_selectors.php:42
msgid "Available"
msgstr "Verfügbar"
#: ../../include/profile_selectors.php:42
msgid "Unavailable"
msgstr "Nicht verfügbar"
#: ../../include/profile_selectors.php:42
msgid "Has crush"
msgstr "verknallt"
#: ../../include/profile_selectors.php:42
msgid "Infatuated"
msgstr "verliebt"
#: ../../include/profile_selectors.php:42
msgid "Dating"
msgstr "Dating"
#: ../../include/profile_selectors.php:42
msgid "Unfaithful"
msgstr "Untreu"
#: ../../include/profile_selectors.php:42
msgid "Sex Addict"
msgstr "Sexbesessen"
#: ../../include/profile_selectors.php:42 ../../include/user.php:279
#: ../../include/user.php:283
msgid "Friends"
msgstr "Freunde"
#: ../../include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr "Freunde/Zuwendungen"
#: ../../include/profile_selectors.php:42
msgid "Casual"
msgstr "Casual"
#: ../../include/profile_selectors.php:42
msgid "Engaged"
msgstr "Verlobt"
#: ../../include/profile_selectors.php:42
msgid "Married"
msgstr "Verheiratet"
#: ../../include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr "imaginär verheiratet"
#: ../../include/profile_selectors.php:42
msgid "Partners"
msgstr "Partner"
#: ../../include/profile_selectors.php:42
msgid "Cohabiting"
msgstr "zusammenlebend"
#: ../../include/profile_selectors.php:42
msgid "Common law"
msgstr "wilde Ehe"
#: ../../include/profile_selectors.php:42
msgid "Happy"
msgstr "Glücklich"
#: ../../include/profile_selectors.php:42
msgid "Not looking"
msgstr "Nicht auf der Suche"
#: ../../include/profile_selectors.php:42
msgid "Swinger"
msgstr "Swinger"
#: ../../include/profile_selectors.php:42
msgid "Betrayed"
msgstr "Betrogen"
#: ../../include/profile_selectors.php:42
msgid "Separated"
msgstr "Getrennt"
#: ../../include/profile_selectors.php:42
msgid "Unstable"
msgstr "Unstabil"
#: ../../include/profile_selectors.php:42
msgid "Divorced"
msgstr "Geschieden"
#: ../../include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr "imaginär geschieden"
#: ../../include/profile_selectors.php:42
msgid "Widowed"
msgstr "Verwitwet"
#: ../../include/profile_selectors.php:42
msgid "Uncertain"
msgstr "Unsicher"
#: ../../include/profile_selectors.php:42
msgid "It's complicated"
msgstr "Ist kompliziert"
#: ../../include/profile_selectors.php:42
msgid "Don't care"
msgstr "Ist mir nicht wichtig"
#: ../../include/profile_selectors.php:42
msgid "Ask me"
msgstr "Frag mich"
#: ../../include/Contact.php:115
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: ../../include/Contact.php:225 ../../include/conversation.php:838
msgid "Poke"
msgstr "Anstupsen"
#: ../../include/Contact.php:226 ../../include/conversation.php:832
msgid "View Status"
msgstr "Pinnwand anschauen"
#: ../../include/Contact.php:227 ../../include/conversation.php:833
msgid "View Profile"
msgstr "Profil anschauen"
#: ../../include/Contact.php:228 ../../include/conversation.php:834
msgid "View Photos"
msgstr "Bilder anschauen"
#: ../../include/Contact.php:229 ../../include/Contact.php:251
#: ../../include/conversation.php:835
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
#: ../../include/Contact.php:230 ../../include/Contact.php:251
#: ../../include/conversation.php:836
msgid "Edit Contact"
msgstr "Kontakt bearbeiten"
#: ../../include/Contact.php:231 ../../include/Contact.php:251
#: ../../include/conversation.php:837
msgid "Send PM"
msgstr "Private Nachricht senden"
#: ../../include/text.php:276
msgid "prev"
msgstr "vorige"
#: ../../include/text.php:278
msgid "first"
msgstr "erste"
#: ../../include/text.php:307
msgid "last"
msgstr "letzte"
#: ../../include/text.php:310
msgid "next"
msgstr "nächste"
#: ../../include/text.php:328
msgid "newer"
msgstr "neuer"
#: ../../include/text.php:332
msgid "older"
msgstr "älter"
#: ../../include/text.php:697
msgid "No contacts"
msgstr "Keine Kontakte"
#: ../../include/text.php:706
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d Kontakt"
msgstr[1] "%d Kontakte"
#: ../../include/text.php:718 ../../mod/viewcontacts.php:76
msgid "View Contacts"
msgstr "Kontakte anzeigen"
#: ../../include/text.php:778 ../../include/text.php:779
#: ../../include/nav.php:118 ../../mod/search.php:99
msgid "Search"
msgstr "Suche"
#: ../../include/text.php:819
msgid "poke"
msgstr "anstupsen"
#: ../../include/text.php:819 ../../include/conversation.php:211
msgid "poked"
msgstr "stupste"
#: ../../include/text.php:820
msgid "ping"
msgstr "anpingen"
#: ../../include/text.php:820
msgid "pinged"
msgstr "pingte"
#: ../../include/text.php:821
msgid "prod"
msgstr "knuffen"
#: ../../include/text.php:821
msgid "prodded"
msgstr "knuffte"
#: ../../include/text.php:822
msgid "slap"
msgstr "ohrfeigen"
#: ../../include/text.php:822
msgid "slapped"
msgstr "ohrfeigte"
#: ../../include/text.php:823
msgid "finger"
msgstr "befummeln"
#: ../../include/text.php:823
msgid "fingered"
msgstr "befummelte"
#: ../../include/text.php:824
msgid "rebuff"
msgstr "eine Abfuhr erteilen"
#: ../../include/text.php:824
msgid "rebuffed"
msgstr "abfuhrerteilte"
#: ../../include/text.php:836
msgid "happy"
msgstr "glücklich"
#: ../../include/text.php:837
msgid "sad"
msgstr "traurig"
#: ../../include/text.php:838
msgid "mellow"
msgstr "sanft"
#: ../../include/text.php:839
msgid "tired"
msgstr "müde"
#: ../../include/text.php:840
msgid "perky"
msgstr "frech"
#: ../../include/text.php:841
msgid "angry"
msgstr "sauer"
#: ../../include/text.php:842
msgid "stupified"
msgstr "verblüfft"
#: ../../include/text.php:843
msgid "puzzled"
msgstr "verwirrt"
#: ../../include/text.php:844
msgid "interested"
msgstr "interessiert"
#: ../../include/text.php:845
msgid "bitter"
msgstr "verbittert"
#: ../../include/text.php:846
msgid "cheerful"
msgstr "fröhlich"
#: ../../include/text.php:847
msgid "alive"
msgstr "lebendig"
#: ../../include/text.php:848
msgid "annoyed"
msgstr "verärgert"
#: ../../include/text.php:849
msgid "anxious"
msgstr "unruhig"
#: ../../include/text.php:850
msgid "cranky"
msgstr "schrullig"
#: ../../include/text.php:851
msgid "disturbed"
msgstr "verstört"
#: ../../include/text.php:852
msgid "frustrated"
msgstr "frustriert"
#: ../../include/text.php:853
msgid "motivated"
msgstr "motiviert"
#: ../../include/text.php:854
msgid "relaxed"
msgstr "entspannt"
#: ../../include/text.php:855
msgid "surprised"
msgstr "überrascht"
#: ../../include/text.php:1019
msgid "January"
msgstr "Januar"
#: ../../include/text.php:1019
msgid "February"
msgstr "Februar"
#: ../../include/text.php:1019
msgid "March"
msgstr "März"
#: ../../include/text.php:1019
msgid "April"
msgstr "April"
#: ../../include/text.php:1019
msgid "May"
msgstr "Mai"
#: ../../include/text.php:1019
msgid "June"
msgstr "Juni"
#: ../../include/text.php:1019
msgid "July"
msgstr "Juli"
#: ../../include/text.php:1019
msgid "August"
msgstr "August"
#: ../../include/text.php:1019
msgid "September"
msgstr "September"
#: ../../include/text.php:1019
msgid "October"
msgstr "Oktober"
#: ../../include/text.php:1019
msgid "November"
msgstr "November"
#: ../../include/text.php:1019
msgid "December"
msgstr "Dezember"
#: ../../include/text.php:1124
msgid "bytes"
msgstr "Byte"
#: ../../include/text.php:1151 ../../include/text.php:1163
msgid "Click to open/close"
msgstr "Zum öffnen/schließen klicken"
#: ../../include/text.php:1304 ../../mod/events.php:335
msgid "link to source"
msgstr "Link zum Originalbeitrag"
#: ../../include/text.php:1336 ../../include/user.php:237
msgid "default"
msgstr "Standard"
#: ../../include/text.php:1348
msgid "Select an alternate language"
msgstr "Alternative Sprache auswählen"
#: ../../include/text.php:1558
msgid "activity"
msgstr "Aktivität"
#: ../../include/text.php:1560 ../../mod/content.php:628
#: ../../object/Item.php:354 ../../object/Item.php:367
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] "Kommentar"
#: ../../include/text.php:1561
msgid "post"
msgstr "Beitrag"
#: ../../include/text.php:1716
msgid "Item filed"
msgstr "Beitrag abgelegt"
#: ../../include/acl_selectors.php:325
msgid "Visible to everybody"
msgstr "Für jeden sichtbar"
#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
#: ../../view/theme/diabook/theme.php:629
msgid "show"
msgstr "zeigen"
#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
#: ../../view/theme/diabook/theme.php:629
msgid "don't show"
msgstr "nicht zeigen"
#: ../../include/auth.php:38
msgid "Logged out."
msgstr "Abgemeldet."
#: ../../include/auth.php:112 ../../include/auth.php:175
#: ../../mod/openid.php:93
msgid "Login failed."
msgstr "Anmeldung fehlgeschlagen."
#: ../../include/auth.php:128
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
#: ../../include/auth.php:128
msgid "The error message was:"
msgstr "Die Fehlermeldung lautete:"
#: ../../include/uimport.php:61
msgid "Error decoding account file"
msgstr "Fehler beim Verarbeiten der Account Datei"
#: ../../include/uimport.php:67
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
#: ../../include/uimport.php:72
msgid "Error! I can't import this file: DB schema version is not compatible."
msgstr "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel."
#: ../../include/uimport.php:81
msgid "Error! Cannot check nickname"
msgstr "Fehler! Konnte den Nickname nicht überprüfen."
#: ../../include/uimport.php:85
#, php-format
msgid "User '%s' already exists on this server!"
msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
#: ../../include/uimport.php:104
msgid "User creation error"
msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
#: ../../include/uimport.php:122
msgid "User profile creation error"
msgstr "Fehler beim Anlegen des Nutzerkontos"
#: ../../include/uimport.php:167
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] "%d Kontakt nicht importiert"
msgstr[1] "%d Kontakte nicht importiert"
#: ../../include/uimport.php:245
msgid "Done. You can now login with your username and password"
msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
#: ../../mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l, d. F Y\\, H:i"
#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
msgid "Starts:"
msgstr "Beginnt:"
#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
msgid "Finishes:"
msgstr "Endet:"
#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
msgid "Disallowed profile URL."
msgstr "Nicht erlaubte Profil-URL."
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr "Connect-URL fehlt"
#: ../../include/follow.php:59
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
#: ../../include/follow.php:60 ../../include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
#: ../../include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
#: ../../include/follow.php:82
msgid "An author or name was not found."
msgstr "Es wurde kein Autor oder Name gefunden."
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
#: ../../include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
#: ../../include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
#: ../../include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr "Konnte die Kontaktinformationen nicht empfangen."
#: ../../include/follow.php:259
msgid "following"
msgstr "folgen"
#: ../../include/user.php:39
msgid "An invitation is required."
msgstr "Du benötigst eine Einladung."
#: ../../include/user.php:44
msgid "Invitation could not be verified."
msgstr "Die Einladung konnte nicht überprüft werden."
#: ../../include/user.php:52
msgid "Invalid OpenID url"
msgstr "Ungültige OpenID URL"
#: ../../include/user.php:67
msgid "Please enter the required information."
msgstr "Bitte trage die erforderlichen Informationen ein."
#: ../../include/user.php:81
msgid "Please use a shorter name."
msgstr "Bitte verwende einen kürzeren Namen."
#: ../../include/user.php:83
msgid "Name too short."
msgstr "Der Name ist zu kurz."
#: ../../include/user.php:98
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
#: ../../include/user.php:103
msgid "Your email domain is not among those allowed on this site."
msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
#: ../../include/user.php:106
msgid "Not a valid email address."
msgstr "Keine gültige E-Mail-Adresse."
#: ../../include/user.php:116
msgid "Cannot use that email."
msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
#: ../../include/user.php:122
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
#: ../../include/user.php:128 ../../include/user.php:226
msgid "Nickname is already registered. Please choose another."
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
#: ../../include/user.php:138
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
#: ../../include/user.php:154
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
#: ../../include/user.php:212
msgid "An error occurred during registration. Please try again."
msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: ../../include/user.php:247
msgid "An error occurred creating your default profile. Please try again."
msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: ../../include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Unbekannt | Nicht kategorisiert"
#: ../../include/contact_selectors.php:33
msgid "Block immediately"
msgstr "Sofort blockieren"
#: ../../include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr "Zwielichtig, Spammer, Selbstdarsteller"
#: ../../include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Ist mir bekannt, hab aber keine Meinung"
#: ../../include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr "OK, wahrscheinlich harmlos"
#: ../../include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr "Seriös, hat mein Vertrauen"
#: ../../include/contact_selectors.php:56
msgid "Frequently"
msgstr "immer wieder"
#: ../../include/contact_selectors.php:57
msgid "Hourly"
msgstr "Stündlich"
#: ../../include/contact_selectors.php:58
msgid "Twice daily"
msgstr "Zweimal täglich"
#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
msgid "Friendica"
msgstr "Friendica"
#: ../../include/contact_selectors.php:77
msgid "OStatus"
msgstr "OStatus"
#: ../../include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr "RSS/Atom"
#: ../../include/contact_selectors.php:79
#: ../../include/contact_selectors.php:86 ../../mod/admin.php:747
#: ../../mod/admin.php:757
msgid "Email"
msgstr "E-Mail"
#: ../../include/contact_selectors.php:80 ../../mod/settings.php:681
#: ../../mod/dfrn_request.php:842
msgid "Diaspora"
msgstr "Diaspora"
#: ../../include/contact_selectors.php:82
msgid "Zot!"
msgstr "Zott"
#: ../../include/contact_selectors.php:83
msgid "LinkedIn"
msgstr "LinkedIn"
#: ../../include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr "XMPP/Chat"
#: ../../include/contact_selectors.php:85
msgid "MySpace"
msgstr "MySpace"
#: ../../include/contact_selectors.php:87
msgid "Google+"
msgstr "Google+"
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Neuen Kontakt hinzufügen"
#: ../../include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr "Adresse oder Web-Link eingeben"
#: ../../include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Beispiel: bob@example.com, http://example.com/barbara"
#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
#: ../../mod/match.php:58 ../../boot.php:1338
msgid "Connect"
msgstr "Verbinden"
#: ../../include/contact_widgets.php:23
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d Einladung verfügbar"
msgstr[1] "%d Einladungen verfügbar"
#: ../../include/contact_widgets.php:29
msgid "Find People"
msgstr "Leute finden"
#: ../../include/contact_widgets.php:30
msgid "Enter name or interest"
msgstr "Name oder Interessen eingeben"
#: ../../include/contact_widgets.php:31
msgid "Connect/Follow"
msgstr "Verbinden/Folgen"
#: ../../include/contact_widgets.php:32
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Beispiel: Robert Morgenstein, Angeln"
#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
#: ../../view/theme/diabook/theme.php:520
msgid "Friend Suggestions"
msgstr "Kontaktvorschläge"
#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
msgid "Similar Interests"
msgstr "Ähnliche Interessen"
#: ../../include/contact_widgets.php:36
msgid "Random Profile"
msgstr "Zufälliges Profil"
#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
msgid "Invite Friends"
msgstr "Freunde einladen"
#: ../../include/contact_widgets.php:70
msgid "Networks"
msgstr "Netzwerke"
#: ../../include/contact_widgets.php:73
msgid "All Networks"
msgstr "Alle Netzwerke"
#: ../../include/contact_widgets.php:103 ../../include/features.php:59
msgid "Saved Folders"
msgstr "Gespeicherte Ordner"
#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
msgid "Everything"
msgstr "Alles"
#: ../../include/contact_widgets.php:135
msgid "Categories"
msgstr "Kategorien"
#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gemeinsamer Kontakt"
msgstr[1] "%d gemeinsame Kontakte"
#: ../../include/Scrape.php:583
msgid " on Last.fm"
msgstr " bei Last.fm"
#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
msgid "Image/photo"
msgstr "Bild/Foto"
#: ../../include/bbcode.php:272
#, php-format
msgid ""
"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
"href=\"%s\" target=\"external-link\">post</a>"
msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>"
#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
msgid "$1 wrote:"
msgstr "$1 hat geschrieben:"
#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr "Verschiedenes"
#: ../../include/datetime.php:153 ../../include/datetime.php:285
msgid "year"
msgstr "Jahr"
#: ../../include/datetime.php:158 ../../include/datetime.php:286
msgid "month"
msgstr "Monat"
#: ../../include/datetime.php:163 ../../include/datetime.php:288
msgid "day"
msgstr "Tag"
#: ../../include/datetime.php:276
msgid "never"
msgstr "nie"
#: ../../include/datetime.php:282
msgid "less than a second ago"
msgstr "vor weniger als einer Sekunde"
#: ../../include/datetime.php:287
msgid "week"
msgstr "Woche"
#: ../../include/datetime.php:289
msgid "hour"
msgstr "Stunde"
#: ../../include/datetime.php:289
msgid "hours"
msgstr "Stunden"
#: ../../include/datetime.php:290
msgid "minute"
msgstr "Minute"
#: ../../include/datetime.php:290
msgid "minutes"
msgstr "Minuten"
#: ../../include/datetime.php:291
msgid "second"
msgstr "Sekunde"
#: ../../include/datetime.php:291
msgid "seconds"
msgstr "Sekunden"
#: ../../include/datetime.php:300
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s her"
#: ../../include/datetime.php:472 ../../include/items.php:1764
#, php-format
msgid "%s's birthday"
msgstr "%ss Geburtstag"
#: ../../include/datetime.php:473 ../../include/items.php:1765
#, php-format
msgid "Happy Birthday %s"
msgstr "Herzlichen Glückwunsch %s"
#: ../../include/items.php:3439 ../../mod/dfrn_request.php:716
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
#: ../../include/items.php:3446
msgid "A new person is sharing with you at "
msgstr "Eine neue Person teilt mit dir auf "
#: ../../include/items.php:3446
msgid "You have a new follower at "
msgstr "Du hast einen neuen Kontakt auf "
#: ../../include/items.php:3926 ../../mod/admin.php:158
#: ../../mod/admin.php:789 ../../mod/admin.php:989 ../../mod/display.php:51
#: ../../mod/display.php:184 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
#: ../../include/items.php:3965
msgid "Do you really want to delete this item?"
msgstr "Möchtest du wirklich dieses Item löschen?"
#: ../../include/items.php:3967 ../../mod/profiles.php:606
#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
#: ../../mod/settings.php:934 ../../mod/settings.php:940
#: ../../mod/settings.php:948 ../../mod/settings.php:952
#: ../../mod/settings.php:957 ../../mod/settings.php:963
#: ../../mod/settings.php:969 ../../mod/settings.php:975
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
#: ../../mod/suggest.php:29 ../../mod/message.php:209
msgid "Yes"
msgstr "Ja"
#: ../../include/items.php:4160
msgid "Archives"
msgstr "Archiv"
#: ../../include/plugin.php:439 ../../include/plugin.php:441
msgid "Click here to upgrade."
msgstr "Zum Upgraden hier klicken."
#: ../../include/plugin.php:447
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
#: ../../include/plugin.php:452
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
#: ../../include/delivery.php:457 ../../include/notifier.php:775
msgid "(no subject)"
msgstr "(kein Betreff)"
#: ../../include/diaspora.php:621 ../../include/conversation.php:172
#: ../../mod/dfrn_confirm.php:477
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ist nun mit %2$s befreundet"
#: ../../include/diaspora.php:704
msgid "Sharing notification from Diaspora network"
msgstr "Freigabe-Benachrichtigung von Diaspora"
#: ../../include/diaspora.php:2262
msgid "Attachments:"
msgstr "Anhänge:"
#: ../../include/enotify.php:16
msgid "Friendica Notification"
msgstr "Friendica-Benachrichtigung"
#: ../../include/enotify.php:19
msgid "Thank You,"
msgstr "Danke,"
#: ../../include/enotify.php:21
#, php-format
msgid "%s Administrator"
msgstr "der Administrator von %s"
#: ../../include/enotify.php:40
#, php-format
msgid "%s <!item_type!>"
msgstr "%s <!item_type!>"
#: ../../include/enotify.php:44
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
#: ../../include/enotify.php:46
#, php-format
msgid "%1$s sent you a new private message at %2$s."
msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt."
#: ../../include/enotify.php:47
#, php-format
msgid "%1$s sent you %2$s."
msgstr "%1$s schickte dir %2$s."
#: ../../include/enotify.php:47
msgid "a private message"
msgstr "eine private Nachricht"
#: ../../include/enotify.php:48
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."
#: ../../include/enotify.php:90
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
#: ../../include/enotify.php:97
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
#: ../../include/enotify.php:105
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]"
#: ../../include/enotify.php:115
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
#: ../../include/enotify.php:116
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
#: ../../include/enotify.php:119 ../../include/enotify.php:134
#: ../../include/enotify.php:147 ../../include/enotify.php:165
#: ../../include/enotify.php:178
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
#: ../../include/enotify.php:126
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"
#: ../../include/enotify.php:128
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
#: ../../include/enotify.php:130
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr "%1$s hat etwas auf [url=%2$s]deiner Pinnwand[/url] gepostet"
#: ../../include/enotify.php:141
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr "[Friendica-Meldung] %s hat dich erwähnt"
#: ../../include/enotify.php:142
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr "%1$s erwähnte dich auf %2$s"
#: ../../include/enotify.php:143
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
#: ../../include/enotify.php:155
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr "[Friendica-Meldung] %1$s hat dich angestupst"
#: ../../include/enotify.php:156
#, php-format
msgid "%1$s poked you at %2$s"
msgstr "%1$s hat dich auf %2$s angestupst"
#: ../../include/enotify.php:157
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr "%1$s [url=%2$s]hat dich angestupst[/url]."
#: ../../include/enotify.php:172
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt"
#: ../../include/enotify.php:173
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
#: ../../include/enotify.php:174
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
#: ../../include/enotify.php:185
msgid "[Friendica:Notify] Introduction received"
msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
#: ../../include/enotify.php:186
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
#: ../../include/enotify.php:187
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
#: ../../include/enotify.php:190 ../../include/enotify.php:208
#, php-format
msgid "You may visit their profile at %s"
msgstr "Hier kannst du das Profil betrachten: %s"
#: ../../include/enotify.php:192
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
#: ../../include/enotify.php:199
msgid "[Friendica:Notify] Friend suggestion received"
msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
#: ../../include/enotify.php:200
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
#: ../../include/enotify.php:201
#, php-format
msgid ""
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
#: ../../include/enotify.php:206
msgid "Name:"
msgstr "Name:"
#: ../../include/enotify.php:207
msgid "Photo:"
msgstr "Foto:"
#: ../../include/enotify.php:210
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
#: ../../include/features.php:23
msgid "General Features"
msgstr "Allgemeine Features"
#: ../../include/features.php:25
msgid "Multiple Profiles"
msgstr "Mehrere Profile"
#: ../../include/features.php:25
msgid "Ability to create multiple profiles"
msgstr "Möglichkeit mehrere Profile zu erstellen"
#: ../../include/features.php:30
msgid "Post Composition Features"
msgstr "Beitragserstellung Features"
#: ../../include/features.php:31
msgid "Richtext Editor"
msgstr "Web-Editor"
#: ../../include/features.php:31
msgid "Enable richtext editor"
msgstr "Den Web-Editor für neue Beiträge aktivieren"
#: ../../include/features.php:32
msgid "Post Preview"
msgstr "Beitragsvorschau"
#: ../../include/features.php:32
msgid "Allow previewing posts and comments before publishing them"
msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
#: ../../include/features.php:37
msgid "Network Sidebar Widgets"
msgstr "Widgets für Netzwerk und Seitenleiste"
#: ../../include/features.php:38
msgid "Search by Date"
msgstr "Archiv"
#: ../../include/features.php:38
msgid "Ability to select posts by date ranges"
msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
#: ../../include/features.php:39
msgid "Group Filter"
msgstr "Gruppen Filter"
#: ../../include/features.php:39
msgid "Enable widget to display Network posts only from selected group"
msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
#: ../../include/features.php:40
msgid "Network Filter"
msgstr "Netzwerk Filter"
#: ../../include/features.php:40
msgid "Enable widget to display Network posts only from selected network"
msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
#: ../../include/features.php:41 ../../mod/search.php:30
#: ../../mod/network.php:233
msgid "Saved Searches"
msgstr "Gespeicherte Suchen"
#: ../../include/features.php:41
msgid "Save search terms for re-use"
msgstr "Speichere Suchanfragen für spätere Wiederholung."
#: ../../include/features.php:46
msgid "Network Tabs"
msgstr "Netzwerk Reiter"
#: ../../include/features.php:47
msgid "Network Personal Tab"
msgstr "Netzwerk-Reiter: Persönlich"
#: ../../include/features.php:47
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"
#: ../../include/features.php:48
msgid "Network New Tab"
msgstr "Netzwerk-Reiter: Neue"
#: ../../include/features.php:48
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
#: ../../include/features.php:49
msgid "Network Shared Links Tab"
msgstr "Netzwerk-Reiter: Geteilte Links"
#: ../../include/features.php:49
msgid "Enable tab to display only Network posts with links in them"
msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
#: ../../include/features.php:54
msgid "Post/Comment Tools"
msgstr "Werkzeuge für Beiträge und Kommentare"
#: ../../include/features.php:55
msgid "Multiple Deletion"
msgstr "Mehrere Beiträge löschen"
#: ../../include/features.php:55
msgid "Select and delete multiple posts/comments at once"
msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
#: ../../include/features.php:56
msgid "Edit Sent Posts"
msgstr "Gesendete Beiträge editieren"
#: ../../include/features.php:56
msgid "Edit and correct posts and comments after sending"
msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
#: ../../include/features.php:57
msgid "Tagging"
msgstr "Tagging"
#: ../../include/features.php:57
msgid "Ability to tag existing posts"
msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
#: ../../include/features.php:58
msgid "Post Categories"
msgstr "Beitragskategorien"
#: ../../include/features.php:58
msgid "Add categories to your posts"
msgstr "Eigene Beiträge mit Kategorien versehen"
#: ../../include/features.php:59
msgid "Ability to file posts under folders"
msgstr "Beiträge in Ordnern speichern aktivieren"
#: ../../include/features.php:60
msgid "Dislike Posts"
msgstr "Beiträge 'nicht mögen'"
#: ../../include/features.php:60
msgid "Ability to dislike posts/comments"
msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
#: ../../include/features.php:61
msgid "Star Posts"
msgstr "Beiträge Markieren"
#: ../../include/features.php:61
msgid "Ability to mark special posts with a star indicator"
msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
#: ../../include/dba.php:44
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
#: ../../include/group.php:207
msgid "Default privacy group for new contacts"
msgstr "Voreingestellte Gruppe für neue Kontakte"
#: ../../include/group.php:226
msgid "Everybody"
msgstr "Alle Kontakte"
#: ../../include/group.php:249
msgid "edit"
msgstr "bearbeiten"
#: ../../include/group.php:270 ../../mod/newmember.php:66
msgid "Groups"
msgstr "Gruppen"
#: ../../include/group.php:271
msgid "Edit group"
msgstr "Gruppe bearbeiten"
#: ../../include/group.php:272
msgid "Create a new group"
msgstr "Neue Gruppe erstellen"
#: ../../include/group.php:273
msgid "Contacts not in any group"
msgstr "Kontakte in keiner Gruppe"
#: ../../include/group.php:275 ../../mod/network.php:234
msgid "add"
msgstr "hinzufügen"
#: ../../include/conversation.php:140 ../../mod/like.php:170
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s nicht"
#: ../../include/conversation.php:207
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s stupste %2$s"
#: ../../include/conversation.php:227 ../../mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s ist momentan %2$s"
#: ../../include/conversation.php:266 ../../mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
#: ../../include/conversation.php:291
msgid "post/item"
msgstr "Nachricht/Beitrag"
#: ../../include/conversation.php:292
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
#: ../../include/conversation.php:587 ../../mod/content.php:461
#: ../../mod/content.php:763 ../../object/Item.php:119
msgid "Select"
msgstr "Auswählen"
#: ../../include/conversation.php:588 ../../mod/admin.php:751
#: ../../mod/settings.php:623 ../../mod/group.php:171
#: ../../mod/photos.php:1637 ../../mod/content.php:462
#: ../../mod/content.php:764 ../../object/Item.php:120
msgid "Delete"
msgstr "Löschen"
#: ../../include/conversation.php:627 ../../mod/content.php:495
#: ../../mod/content.php:875 ../../mod/content.php:876
#: ../../object/Item.php:297 ../../object/Item.php:298
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: ../../include/conversation.php:639 ../../object/Item.php:288
msgid "Categories:"
msgstr "Kategorien"
#: ../../include/conversation.php:640 ../../object/Item.php:289
msgid "Filed under:"
msgstr "Abgelegt unter:"
#: ../../include/conversation.php:647 ../../mod/content.php:505
#: ../../mod/content.php:887 ../../object/Item.php:311
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: ../../include/conversation.php:662 ../../mod/content.php:520
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
#: ../../include/conversation.php:664 ../../include/conversation.php:1060
#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
#: ../../mod/message.php:334 ../../mod/message.php:565
#: ../../mod/photos.php:1532 ../../mod/content.php:522
#: ../../mod/content.php:906 ../../object/Item.php:332
msgid "Please wait"
msgstr "Bitte warten"
#: ../../include/conversation.php:728
msgid "remove"
msgstr "löschen"
#: ../../include/conversation.php:732
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: ../../include/conversation.php:831
msgid "Follow Thread"
msgstr "Folge der Unterhaltung"
#: ../../include/conversation.php:900
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: ../../include/conversation.php:900
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: ../../include/conversation.php:905
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das"
#: ../../include/conversation.php:908
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das nicht"
#: ../../include/conversation.php:922
msgid "and"
msgstr "und"
#: ../../include/conversation.php:928
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: ../../include/conversation.php:930
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: ../../include/conversation.php:930
#, php-format
msgid "%s don't like this."
msgstr "%s mögen das nicht."
#: ../../include/conversation.php:957 ../../include/conversation.php:975
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: ../../include/conversation.php:958 ../../include/conversation.php:976
#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
#: ../../mod/message.php:283 ../../mod/message.php:291
#: ../../mod/message.php:466 ../../mod/message.php:474
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
#: ../../include/conversation.php:959 ../../include/conversation.php:977
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: ../../include/conversation.php:960 ../../include/conversation.php:978
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: ../../include/conversation.php:961 ../../include/conversation.php:979
msgid "Tag term:"
msgstr "Tag:"
#: ../../include/conversation.php:962 ../../include/conversation.php:980
#: ../../mod/filer.php:30
msgid "Save to Folder:"
msgstr "In diesen Ordner verschieben:"
#: ../../include/conversation.php:963 ../../include/conversation.php:981
msgid "Where are you right now?"
msgstr "Wo hältst du dich jetzt gerade auf?"
#: ../../include/conversation.php:964
msgid "Delete item(s)?"
msgstr "Einträge löschen?"
#: ../../include/conversation.php:1006
msgid "Post to Email"
msgstr "An E-Mail senden"
#: ../../include/conversation.php:1041 ../../mod/photos.php:1531
msgid "Share"
msgstr "Teilen"
#: ../../include/conversation.php:1042 ../../mod/editpost.php:110
#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
#: ../../mod/message.php:562
msgid "Upload photo"
msgstr "Foto hochladen"
#: ../../include/conversation.php:1043 ../../mod/editpost.php:111
msgid "upload photo"
msgstr "Bild hochladen"
#: ../../include/conversation.php:1044 ../../mod/editpost.php:112
msgid "Attach file"
msgstr "Datei anhängen"
#: ../../include/conversation.php:1045 ../../mod/editpost.php:113
msgid "attach file"
msgstr "Datei anhängen"
#: ../../include/conversation.php:1046 ../../mod/editpost.php:114
#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
#: ../../mod/message.php:563
msgid "Insert web link"
msgstr "Einen Link einfügen"
#: ../../include/conversation.php:1047 ../../mod/editpost.php:115
msgid "web link"
msgstr "Weblink"
#: ../../include/conversation.php:1048 ../../mod/editpost.php:116
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: ../../include/conversation.php:1049 ../../mod/editpost.php:117
msgid "video link"
msgstr "Video-Link"
#: ../../include/conversation.php:1050 ../../mod/editpost.php:118
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: ../../include/conversation.php:1051 ../../mod/editpost.php:119
msgid "audio link"
msgstr "Audio-Link"
#: ../../include/conversation.php:1052 ../../mod/editpost.php:120
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: ../../include/conversation.php:1053 ../../mod/editpost.php:121
msgid "set location"
msgstr "Ort setzen"
#: ../../include/conversation.php:1054 ../../mod/editpost.php:122
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: ../../include/conversation.php:1055 ../../mod/editpost.php:123
msgid "clear location"
msgstr "Ort löschen"
#: ../../include/conversation.php:1057 ../../mod/editpost.php:137
msgid "Set title"
msgstr "Titel setzen"
#: ../../include/conversation.php:1059 ../../mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)"
#: ../../include/conversation.php:1061 ../../mod/editpost.php:125
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: ../../include/conversation.php:1062
msgid "permissions"
msgstr "Zugriffsrechte"
#: ../../include/conversation.php:1070 ../../mod/editpost.php:133
msgid "CC: email addresses"
msgstr "Cc: E-Mail-Addressen"
#: ../../include/conversation.php:1071 ../../mod/editpost.php:134
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: ../../include/conversation.php:1073 ../../mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
#: ../../include/conversation.php:1077 ../../mod/editpost.php:145
#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
#: ../../mod/photos.php:1680 ../../mod/content.php:742
#: ../../object/Item.php:652
msgid "Preview"
msgstr "Vorschau"
#: ../../include/conversation.php:1086
msgid "Post to Groups"
msgstr "Poste an Gruppe"
#: ../../include/conversation.php:1087
msgid "Post to Contacts"
msgstr "Poste an Kontakte"
#: ../../include/conversation.php:1088
msgid "Private post"
msgstr "Privater Beitrag"
#: ../../include/message.php:15 ../../include/message.php:172
msgid "[no subject]"
msgstr "[kein Betreff]"
#: ../../include/message.php:144 ../../mod/item.php:443
#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
#: ../../mod/wall_upload.php:151
msgid "Wall Photos"
msgstr "Pinnwand-Bilder"
#: ../../include/nav.php:34 ../../mod/navigation.php:20
msgid "Nothing new here"
msgstr "Keine Neuigkeiten."
#: ../../include/nav.php:38 ../../mod/navigation.php:24
msgid "Clear notifications"
msgstr "Bereinige Benachrichtigungen"
#: ../../include/nav.php:73 ../../boot.php:1057
msgid "Logout"
msgstr "Abmelden"
#: ../../include/nav.php:73
msgid "End this session"
msgstr "Diese Sitzung beenden"
#: ../../include/nav.php:76 ../../boot.php:1861
msgid "Status"
msgstr "Status"
#: ../../include/nav.php:76 ../../include/nav.php:143
#: ../../view/theme/diabook/theme.php:87
msgid "Your posts and conversations"
msgstr "Deine Beiträge und Unterhaltungen"
#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
msgid "Your profile page"
msgstr "Deine Profilseite"
#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875
msgid "Photos"
msgstr "Bilder"
#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
msgid "Your photos"
msgstr "Deine Fotos"
#: ../../include/nav.php:79 ../../mod/events.php:370
#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885
msgid "Events"
msgstr "Veranstaltungen"
#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
msgid "Your events"
msgstr "Deine Ereignisse"
#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
msgid "Personal notes"
msgstr "Persönliche Notizen"
#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
msgid "Your personal photos"
msgstr "Deine privaten Fotos"
#: ../../include/nav.php:91
msgid "Sign in"
msgstr "Anmelden"
#: ../../include/nav.php:104 ../../include/nav.php:143
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
msgid "Home"
msgstr "Pinnwand"
#: ../../include/nav.php:104
msgid "Home Page"
msgstr "Homepage"
#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033
msgid "Register"
msgstr "Registrieren"
#: ../../include/nav.php:108
msgid "Create an account"
msgstr "Nutzerkonto erstellen"
#: ../../include/nav.php:113
msgid "Help and documentation"
msgstr "Hilfe und Dokumentation"
#: ../../include/nav.php:116
msgid "Apps"
msgstr "Apps"
#: ../../include/nav.php:116
msgid "Addon applications, utilities, games"
msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
#: ../../include/nav.php:118
msgid "Search site content"
msgstr "Inhalt der Seite durchsuchen"
#: ../../include/nav.php:128 ../../mod/community.php:32
#: ../../view/theme/diabook/theme.php:93
msgid "Community"
msgstr "Gemeinschaft"
#: ../../include/nav.php:128
msgid "Conversations on this site"
msgstr "Unterhaltungen auf dieser Seite"
#: ../../include/nav.php:130
msgid "Directory"
msgstr "Verzeichnis"
#: ../../include/nav.php:130
msgid "People directory"
msgstr "Nutzerverzeichnis"
#: ../../include/nav.php:140 ../../mod/notifications.php:83
msgid "Network"
msgstr "Netzwerk"
#: ../../include/nav.php:140
msgid "Conversations from your friends"
msgstr "Unterhaltungen deiner Kontakte"
#: ../../include/nav.php:141
msgid "Network Reset"
msgstr "Netzwerk zurücksetzen"
#: ../../include/nav.php:141
msgid "Load Network page with no filters"
msgstr "Netzwerk-Seite ohne Filter laden"
#: ../../include/nav.php:149 ../../mod/notifications.php:98
msgid "Introductions"
msgstr "Kontaktanfragen"
#: ../../include/nav.php:149
msgid "Friend Requests"
msgstr "Kontaktanfragen"
#: ../../include/nav.php:150 ../../mod/notifications.php:220
msgid "Notifications"
msgstr "Benachrichtigungen"
#: ../../include/nav.php:151
msgid "See all notifications"
msgstr "Alle Benachrichtigungen anzeigen"
#: ../../include/nav.php:152
msgid "Mark all system notifications seen"
msgstr "Markiere alle Systembenachrichtigungen als gelesen"
#: ../../include/nav.php:156 ../../mod/message.php:182
#: ../../mod/notifications.php:103
msgid "Messages"
msgstr "Nachrichten"
#: ../../include/nav.php:156
msgid "Private mail"
msgstr "Private E-Mail"
#: ../../include/nav.php:157
msgid "Inbox"
msgstr "Eingang"
#: ../../include/nav.php:158
msgid "Outbox"
msgstr "Ausgang"
#: ../../include/nav.php:159 ../../mod/message.php:9
msgid "New Message"
msgstr "Neue Nachricht"
#: ../../include/nav.php:162
msgid "Manage"
msgstr "Verwalten"
#: ../../include/nav.php:162
msgid "Manage other pages"
msgstr "Andere Seiten verwalten"
#: ../../include/nav.php:165
msgid "Delegations"
msgstr "Delegierungen"
#: ../../include/nav.php:165 ../../mod/delegate.php:121
msgid "Delegate Page Management"
msgstr "Delegiere das Management für die Seite"
#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
msgid "Account settings"
msgstr "Kontoeinstellungen"
#: ../../include/nav.php:169 ../../boot.php:1360
msgid "Profiles"
msgstr "Profile"
#: ../../include/nav.php:169
msgid "Manage/Edit Profiles"
msgstr "Profile Verwalten/Editieren"
#: ../../include/nav.php:171 ../../mod/contacts.php:607
#: ../../view/theme/diabook/theme.php:89
msgid "Contacts"
msgstr "Kontakte"
#: ../../include/nav.php:171
msgid "Manage/edit friends and contacts"
msgstr "Freunde und Kontakte verwalten/editieren"
#: ../../include/nav.php:178 ../../mod/admin.php:120
msgid "Admin"
msgstr "Administration"
#: ../../include/nav.php:178
msgid "Site setup and configuration"
msgstr "Einstellungen der Seite und Konfiguration"
#: ../../include/nav.php:182
msgid "Navigation"
msgstr "Navigation"
#: ../../include/nav.php:182
msgid "Site map"
msgstr "Sitemap"
#: ../../include/network.php:875
msgid "view full size"
msgstr "Volle Größe anzeigen"
#: ../../include/oembed.php:138
msgid "Embedded content"
msgstr "Eingebetteter Inhalt"
#: ../../include/oembed.php:147
msgid "Embedding disabled"
msgstr "Einbettungen deaktiviert"
#: ../../include/security.php:22
msgid "Welcome "
msgstr "Willkommen "
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr "Bitte lade ein Profilbild hoch."
#: ../../include/security.php:26
msgid "Welcome back "
msgstr "Willkommen zurück "
#: ../../include/security.php:366
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
#: ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Profil nicht gefunden."
#: ../../mod/profiles.php:37
msgid "Profile deleted."
msgstr "Profil gelöscht."
#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
msgid "Profile-"
msgstr "Profil-"
#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
msgid "New profile created."
msgstr "Neues Profil angelegt."
#: ../../mod/profiles.php:95
msgid "Profile unavailable to clone."
msgstr "Profil nicht zum Duplizieren verfügbar."
#: ../../mod/profiles.php:170
msgid "Profile Name is required."
msgstr "Profilname ist erforderlich."
#: ../../mod/profiles.php:317
msgid "Marital Status"
msgstr "Familienstand"
#: ../../mod/profiles.php:321
msgid "Romantic Partner"
msgstr "Romanze"
#: ../../mod/profiles.php:325
msgid "Likes"
msgstr "Likes"
#: ../../mod/profiles.php:329
msgid "Dislikes"
msgstr "Dislikes"
#: ../../mod/profiles.php:333
msgid "Work/Employment"
msgstr "Arbeit / Beschäftigung"
#: ../../mod/profiles.php:336
msgid "Religion"
msgstr "Religion"
#: ../../mod/profiles.php:340
msgid "Political Views"
msgstr "Politische Ansichten"
#: ../../mod/profiles.php:344
msgid "Gender"
msgstr "Geschlecht"
#: ../../mod/profiles.php:348
msgid "Sexual Preference"
msgstr "Sexuelle Vorlieben"
#: ../../mod/profiles.php:352
msgid "Homepage"
msgstr "Webseite"
#: ../../mod/profiles.php:356
msgid "Interests"
msgstr "Interessen"
#: ../../mod/profiles.php:360
msgid "Address"
msgstr "Adresse"
#: ../../mod/profiles.php:450
msgid "Profile updated."
msgstr "Profil aktualisiert."
#: ../../mod/profiles.php:517
msgid " and "
msgstr " und "
#: ../../mod/profiles.php:525
msgid "public profile"
msgstr "öffentliches Profil"
#: ../../mod/profiles.php:528
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
#: ../../mod/profiles.php:529
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr " %1$ss %2$s besuchen"
#: ../../mod/profiles.php:532
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
#: ../../mod/profiles.php:605
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
#: ../../mod/profiles.php:607 ../../mod/api.php:106 ../../mod/register.php:240
#: ../../mod/settings.php:934 ../../mod/settings.php:940
#: ../../mod/settings.php:948 ../../mod/settings.php:952
#: ../../mod/settings.php:957 ../../mod/settings.php:963
#: ../../mod/settings.php:969 ../../mod/settings.php:975
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:837
msgid "No"
msgstr "Nein"
#: ../../mod/profiles.php:625
msgid "Edit Profile Details"
msgstr "Profil bearbeiten"
#: ../../mod/profiles.php:627
msgid "Change Profile Photo"
msgstr "Profilbild ändern"
#: ../../mod/profiles.php:628
msgid "View this profile"
msgstr "Dieses Profil anzeigen"
#: ../../mod/profiles.php:629
msgid "Create a new profile using these settings"
msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
#: ../../mod/profiles.php:630
msgid "Clone this profile"
msgstr "Dieses Profil duplizieren"
#: ../../mod/profiles.php:631
msgid "Delete this profile"
msgstr "Dieses Profil löschen"
#: ../../mod/profiles.php:632
msgid "Profile Name:"
msgstr "Profilname:"
#: ../../mod/profiles.php:633
msgid "Your Full Name:"
msgstr "Dein kompletter Name:"
#: ../../mod/profiles.php:634
msgid "Title/Description:"
msgstr "Titel/Beschreibung:"
#: ../../mod/profiles.php:635
msgid "Your Gender:"
msgstr "Dein Geschlecht:"
#: ../../mod/profiles.php:636
#, php-format
msgid "Birthday (%s):"
msgstr "Geburtstag (%s):"
#: ../../mod/profiles.php:637
msgid "Street Address:"
msgstr "Adresse:"
#: ../../mod/profiles.php:638
msgid "Locality/City:"
msgstr "Wohnort:"
#: ../../mod/profiles.php:639
msgid "Postal/Zip Code:"
msgstr "Postleitzahl:"
#: ../../mod/profiles.php:640
msgid "Country:"
msgstr "Land:"
#: ../../mod/profiles.php:641
msgid "Region/State:"
msgstr "Region/Bundesstaat:"
#: ../../mod/profiles.php:642
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
#: ../../mod/profiles.php:643
msgid "Who: (if applicable)"
msgstr "Wer: (falls anwendbar)"
#: ../../mod/profiles.php:644
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
#: ../../mod/profiles.php:645
msgid "Since [date]:"
msgstr "Seit [Datum]:"
#: ../../mod/profiles.php:647
msgid "Homepage URL:"
msgstr "Adresse der Homepage:"
#: ../../mod/profiles.php:650
msgid "Religious Views:"
msgstr "Religiöse Ansichten:"
#: ../../mod/profiles.php:651
msgid "Public Keywords:"
msgstr "Öffentliche Schlüsselwörter:"
#: ../../mod/profiles.php:652
msgid "Private Keywords:"
msgstr "Private Schlüsselwörter:"
#: ../../mod/profiles.php:655
msgid "Example: fishing photography software"
msgstr "Beispiel: Fischen Fotografie Software"
#: ../../mod/profiles.php:656
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)"
#: ../../mod/profiles.php:657
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
#: ../../mod/profiles.php:658
msgid "Tell us about yourself..."
msgstr "Erzähle uns ein bisschen von dir …"
#: ../../mod/profiles.php:659
msgid "Hobbies/Interests"
msgstr "Hobbies/Interessen"
#: ../../mod/profiles.php:660
msgid "Contact information and Social Networks"
msgstr "Kontaktinformationen und Soziale Netzwerke"
#: ../../mod/profiles.php:661
msgid "Musical interests"
msgstr "Musikalische Interessen"
#: ../../mod/profiles.php:662
msgid "Books, literature"
msgstr "Literatur/Bücher"
#: ../../mod/profiles.php:663
msgid "Television"
msgstr "Fernsehen"
#: ../../mod/profiles.php:664
msgid "Film/dance/culture/entertainment"
msgstr "Filme/Tänze/Kultur/Unterhaltung"
#: ../../mod/profiles.php:665
msgid "Love/romance"
msgstr "Liebesleben"
#: ../../mod/profiles.php:666
msgid "Work/employment"
msgstr "Arbeit/Beschäftigung"
#: ../../mod/profiles.php:667
msgid "School/education"
msgstr "Schule/Ausbildung"
#: ../../mod/profiles.php:672
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
#: ../../mod/profiles.php:721
msgid "Edit/Manage Profiles"
msgstr "Verwalte/Editiere Profile"
#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
msgid "Change profile photo"
msgstr "Profilbild ändern"
#: ../../mod/profiles.php:723 ../../boot.php:1367
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
#: ../../mod/profiles.php:734 ../../boot.php:1377
msgid "Profile Image"
msgstr "Profilbild"
#: ../../mod/profiles.php:736 ../../boot.php:1380
msgid "visible to everybody"
msgstr "sichtbar für jeden"
#: ../../mod/profiles.php:737 ../../boot.php:1381
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340
msgid "Permission denied"
msgstr "Zugriff verweigert"
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier."
msgstr "Ungültiger Profil-Bezeichner"
#: ../../mod/profperm.php:101
msgid "Profile Visibility Editor"
msgstr "Editor für die Profil-Sichtbarkeit"
#: ../../mod/profperm.php:105 ../../mod/group.php:224
msgid "Click on a contact to add or remove."
msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
#: ../../mod/profperm.php:114
msgid "Visible To"
msgstr "Sichtbar für"
#: ../../mod/profperm.php:130
msgid "All Contacts (with secure profile access)"
msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
#: ../../mod/notes.php:44 ../../boot.php:1892
msgid "Personal Notes"
msgstr "Persönliche Notizen"
#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besuche %ss Profil [%s]"
#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
msgid "Edit contact"
msgstr "Kontakt bearbeiten"
#: ../../mod/nogroup.php:59
msgid "Contacts who are not members of a group"
msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr "{0} möchte mit dir in Kontakt treten"
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr "{0} hat dir eine Nachricht geschickt"
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
#: ../../mod/ping.php:254
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} kommentierte einen Beitrag von %s"
#: ../../mod/ping.php:259
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} mag %ss Beitrag"
#: ../../mod/ping.php:264
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} mag %ss Beitrag nicht"
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} ist jetzt mit %s befreundet"
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr "{0} hat etwas veröffentlicht"
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr "{0} hat dich in einem Beitrag erwähnt"
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr "Themeneinstellungen aktualisiert."
#: ../../mod/admin.php:96 ../../mod/admin.php:474
msgid "Site"
msgstr "Seite"
#: ../../mod/admin.php:97 ../../mod/admin.php:743 ../../mod/admin.php:756
msgid "Users"
msgstr "Nutzer"
#: ../../mod/admin.php:98 ../../mod/admin.php:839 ../../mod/admin.php:881
msgid "Plugins"
msgstr "Plugins"
#: ../../mod/admin.php:99 ../../mod/admin.php:1047 ../../mod/admin.php:1081
msgid "Themes"
msgstr "Themen"
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr "DB Updates"
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1168
msgid "Logs"
msgstr "Protokolle"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr "Plugin Features"
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
#: ../../mod/admin.php:182 ../../mod/admin.php:714
msgid "Normal Account"
msgstr "Normales Konto"
#: ../../mod/admin.php:183 ../../mod/admin.php:715
msgid "Soapbox Account"
msgstr "Marktschreier-Konto"
#: ../../mod/admin.php:184 ../../mod/admin.php:716
msgid "Community/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: ../../mod/admin.php:185 ../../mod/admin.php:717
msgid "Automatic Friend Account"
msgstr "Automatisches Freundekonto"
#: ../../mod/admin.php:186
msgid "Blog Account"
msgstr "Blog Account"
#: ../../mod/admin.php:187
msgid "Private Forum"
msgstr "Privates Forum"
#: ../../mod/admin.php:206
msgid "Message queues"
msgstr "Nachrichten-Warteschlangen"
#: ../../mod/admin.php:211 ../../mod/admin.php:473 ../../mod/admin.php:742
#: ../../mod/admin.php:838 ../../mod/admin.php:880 ../../mod/admin.php:1046
#: ../../mod/admin.php:1080 ../../mod/admin.php:1167
msgid "Administration"
msgstr "Administration"
#: ../../mod/admin.php:212
msgid "Summary"
msgstr "Zusammenfassung"
#: ../../mod/admin.php:214
msgid "Registered users"
msgstr "Registrierte Nutzer"
#: ../../mod/admin.php:216
msgid "Pending registrations"
msgstr "Anstehende Anmeldungen"
#: ../../mod/admin.php:217
msgid "Version"
msgstr "Version"
#: ../../mod/admin.php:219
msgid "Active plugins"
msgstr "Aktive Plugins"
#: ../../mod/admin.php:398
msgid "Site settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: ../../mod/admin.php:427 ../../mod/settings.php:769
msgid "No special theme for mobile devices"
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
#: ../../mod/admin.php:444
msgid "Multi user instance"
msgstr "Mehrbenutzer Instanz"
#: ../../mod/admin.php:460
msgid "Closed"
msgstr "Geschlossen"
#: ../../mod/admin.php:461
msgid "Requires approval"
msgstr "Bedarf der Zustimmung"
#: ../../mod/admin.php:462
msgid "Open"
msgstr "Offen"
#: ../../mod/admin.php:466
msgid "No SSL policy, links will track page SSL state"
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
#: ../../mod/admin.php:467
msgid "Force all links to use SSL"
msgstr "SSL für alle Links erzwingen"
#: ../../mod/admin.php:468
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
#: ../../mod/admin.php:476 ../../mod/register.php:261
msgid "Registration"
msgstr "Registrierung"
#: ../../mod/admin.php:477
msgid "File upload"
msgstr "Datei hochladen"
#: ../../mod/admin.php:478
msgid "Policies"
msgstr "Regeln"
#: ../../mod/admin.php:479
msgid "Advanced"
msgstr "Erweitert"
#: ../../mod/admin.php:480
msgid "Performance"
msgstr "Performance"
#: ../../mod/admin.php:485
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: ../../mod/admin.php:486
msgid "System language"
msgstr "Systemsprache"
#: ../../mod/admin.php:487
msgid "System theme"
msgstr "Systemweites Thema"
#: ../../mod/admin.php:487
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
#: ../../mod/admin.php:488
msgid "Mobile system theme"
msgstr "Systemweites mobiles Thema"
#: ../../mod/admin.php:488
msgid "Theme for mobile devices"
msgstr "Thema für mobile Geräte"
#: ../../mod/admin.php:489
msgid "SSL link policy"
msgstr "Regeln für SSL Links"
#: ../../mod/admin.php:489
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
#: ../../mod/admin.php:490
msgid "'Share' element"
msgstr "'Teilen' Element"
#: ../../mod/admin.php:490
msgid "Activates the bbcode element 'share' for repeating items."
msgstr "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen."
#: ../../mod/admin.php:491
msgid "Hide help entry from navigation menu"
msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
#: ../../mod/admin.php:491
msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly."
msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
#: ../../mod/admin.php:492
msgid "Single user instance"
msgstr "Ein-Nutzer Instanz"
#: ../../mod/admin.php:492
msgid "Make this instance multi-user or single-user for the named user"
msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
#: ../../mod/admin.php:493
msgid "Maximum image size"
msgstr "Maximale Größe von Bildern"
#: ../../mod/admin.php:493
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
#: ../../mod/admin.php:494
msgid "Maximum image length"
msgstr "Maximale Länge von Bildern"
#: ../../mod/admin.php:494
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
#: ../../mod/admin.php:495
msgid "JPEG image quality"
msgstr "Qualität des JPEG Bildes"
#: ../../mod/admin.php:495
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
#: ../../mod/admin.php:497
msgid "Register policy"
msgstr "Registrierungsmethode"
#: ../../mod/admin.php:498
msgid "Maximum Daily Registrations"
msgstr "Maximum täglicher Neuanmeldungen"
#: ../../mod/admin.php:498
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
#: ../../mod/admin.php:499
msgid "Register text"
msgstr "Registrierungstext"
#: ../../mod/admin.php:499
msgid "Will be displayed prominently on the registration page."
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
#: ../../mod/admin.php:500
msgid "Accounts abandoned after x days"
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
#: ../../mod/admin.php:500
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
#: ../../mod/admin.php:501
msgid "Allowed friend domains"
msgstr "Erlaubte Domains für Kontakte"
#: ../../mod/admin.php:501
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: ../../mod/admin.php:502
msgid "Allowed email domains"
msgstr "Erlaubte Domains für E-Mails"
#: ../../mod/admin.php:502
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: ../../mod/admin.php:503
msgid "Block public"
msgstr "Öffentlichen Zugriff blockieren"
#: ../../mod/admin.php:503
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
#: ../../mod/admin.php:504
msgid "Force publish"
msgstr "Erzwinge Veröffentlichung"
#: ../../mod/admin.php:504
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
#: ../../mod/admin.php:505
msgid "Global directory update URL"
msgstr "URL für Updates beim weltweiten Verzeichnis"
#: ../../mod/admin.php:505
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
#: ../../mod/admin.php:506
msgid "Allow threaded items"
msgstr "Erlaube Threads in Diskussionen"
#: ../../mod/admin.php:506
msgid "Allow infinite level threading for items on this site."
msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
#: ../../mod/admin.php:507
msgid "Private posts by default for new users"
msgstr "Private Beiträge als Standard für neue Nutzer"
#: ../../mod/admin.php:507
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
#: ../../mod/admin.php:509
msgid "Block multiple registrations"
msgstr "Unterbinde Mehrfachregistrierung"
#: ../../mod/admin.php:509
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
#: ../../mod/admin.php:510
msgid "OpenID support"
msgstr "OpenID Unterstützung"
#: ../../mod/admin.php:510
msgid "OpenID support for registration and logins."
msgstr "OpenID-Unterstützung für Registrierung und Login."
#: ../../mod/admin.php:511
msgid "Fullname check"
msgstr "Namen auf Vollständigkeit überprüfen"
#: ../../mod/admin.php:511
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
#: ../../mod/admin.php:512
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 Reguläre Ausdrücke"
#: ../../mod/admin.php:512
msgid "Use PHP UTF8 regular expressions"
msgstr "PHP UTF8 Ausdrücke verwenden"
#: ../../mod/admin.php:513
msgid "Show Community Page"
msgstr "Gemeinschaftsseite anzeigen"
#: ../../mod/admin.php:513
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
#: ../../mod/admin.php:514
msgid "Enable OStatus support"
msgstr "OStatus Unterstützung aktivieren"
#: ../../mod/admin.php:514
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
#: ../../mod/admin.php:515
msgid "Enable Diaspora support"
msgstr "Diaspora-Support aktivieren"
#: ../../mod/admin.php:515
msgid "Provide built-in Diaspora network compatibility."
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
#: ../../mod/admin.php:516
msgid "Only allow Friendica contacts"
msgstr "Nur Friendica-Kontakte erlauben"
#: ../../mod/admin.php:516
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
#: ../../mod/admin.php:517
msgid "Verify SSL"
msgstr "SSL Überprüfen"
#: ../../mod/admin.php:517
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
#: ../../mod/admin.php:518
msgid "Proxy user"
msgstr "Proxy Nutzer"
#: ../../mod/admin.php:519
msgid "Proxy URL"
msgstr "Proxy URL"
#: ../../mod/admin.php:520
msgid "Network timeout"
msgstr "Netzwerk Wartezeit"
#: ../../mod/admin.php:520
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
#: ../../mod/admin.php:521
msgid "Delivery interval"
msgstr "Zustellungsintervall"
#: ../../mod/admin.php:521
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
#: ../../mod/admin.php:522
msgid "Poll interval"
msgstr "Abfrageintervall"
#: ../../mod/admin.php:522
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
#: ../../mod/admin.php:523
msgid "Maximum Load Average"
msgstr "Maximum Load Average"
#: ../../mod/admin.php:523
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
#: ../../mod/admin.php:525
msgid "Use MySQL full text engine"
msgstr "Nutze MySQL full text engine"
#: ../../mod/admin.php:525
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
#: ../../mod/admin.php:526
msgid "Path to item cache"
msgstr "Pfad zum Eintrag Cache"
#: ../../mod/admin.php:527
msgid "Cache duration in seconds"
msgstr "Cache-Dauer in Sekunden"
#: ../../mod/admin.php:527
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day)."
msgstr "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag)."
#: ../../mod/admin.php:528
msgid "Path for lock file"
msgstr "Pfad für die Sperrdatei"
#: ../../mod/admin.php:529
msgid "Temp path"
msgstr "Temp Pfad"
#: ../../mod/admin.php:530
msgid "Base path to installation"
msgstr "Basis-Pfad zur Installation"
#: ../../mod/admin.php:548
msgid "Update has been marked successful"
msgstr "Update wurde als erfolgreich markiert"
#: ../../mod/admin.php:558
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
#: ../../mod/admin.php:561
#, php-format
msgid "Update %s was successfully applied."
msgstr "Update %s war erfolgreich."
#: ../../mod/admin.php:565
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
#: ../../mod/admin.php:568
#, php-format
msgid "Update function %s could not be found."
msgstr "Updatefunktion %s konnte nicht gefunden werden."
#: ../../mod/admin.php:583
msgid "No failed updates."
msgstr "Keine fehlgeschlagenen Updates."
#: ../../mod/admin.php:587
msgid "Failed Updates"
msgstr "Fehlgeschlagene Updates"
#: ../../mod/admin.php:588
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
#: ../../mod/admin.php:589
msgid "Mark success (if update was manually applied)"
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
#: ../../mod/admin.php:590
msgid "Attempt to execute this update step automatically"
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
#: ../../mod/admin.php:615
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s Benutzer geblockt/freigegeben"
msgstr[1] "%s Benutzer geblockt/freigegeben"
#: ../../mod/admin.php:622
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s Nutzer gelöscht"
msgstr[1] "%s Nutzer gelöscht"
#: ../../mod/admin.php:661
#, php-format
msgid "User '%s' deleted"
msgstr "Nutzer '%s' gelöscht"
#: ../../mod/admin.php:669
#, php-format
msgid "User '%s' unblocked"
msgstr "Nutzer '%s' entsperrt"
#: ../../mod/admin.php:669
#, php-format
msgid "User '%s' blocked"
msgstr "Nutzer '%s' gesperrt"
#: ../../mod/admin.php:745
msgid "select all"
msgstr "Alle auswählen"
#: ../../mod/admin.php:746
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
#: ../../mod/admin.php:747
msgid "Request date"
msgstr "Anfragedatum"
#: ../../mod/admin.php:747 ../../mod/admin.php:757 ../../mod/settings.php:562
#: ../../mod/settings.php:588 ../../mod/crepair.php:148
msgid "Name"
msgstr "Name"
#: ../../mod/admin.php:748
msgid "No registrations."
msgstr "Keine Neuanmeldungen."
#: ../../mod/admin.php:749 ../../mod/notifications.php:161
#: ../../mod/notifications.php:208
msgid "Approve"
msgstr "Genehmigen"
#: ../../mod/admin.php:750
msgid "Deny"
msgstr "Verwehren"
#: ../../mod/admin.php:752 ../../mod/contacts.php:353
#: ../../mod/contacts.php:412
msgid "Block"
msgstr "Sperren"
#: ../../mod/admin.php:753 ../../mod/contacts.php:353
#: ../../mod/contacts.php:412
msgid "Unblock"
msgstr "Entsperren"
#: ../../mod/admin.php:754
msgid "Site admin"
msgstr "Seitenadministrator"
#: ../../mod/admin.php:757
msgid "Register date"
msgstr "Anmeldedatum"
#: ../../mod/admin.php:757
msgid "Last login"
msgstr "Letzte Anmeldung"
#: ../../mod/admin.php:757
msgid "Last item"
msgstr "Letzter Beitrag"
#: ../../mod/admin.php:757
msgid "Account"
msgstr "Nutzerkonto"
#: ../../mod/admin.php:759
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
#: ../../mod/admin.php:760
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
#: ../../mod/admin.php:801
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s deaktiviert."
#: ../../mod/admin.php:805
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s aktiviert."
#: ../../mod/admin.php:815 ../../mod/admin.php:1018
msgid "Disable"
msgstr "Ausschalten"
#: ../../mod/admin.php:817 ../../mod/admin.php:1020
msgid "Enable"
msgstr "Einschalten"
#: ../../mod/admin.php:840 ../../mod/admin.php:1048
msgid "Toggle"
msgstr "Umschalten"
#: ../../mod/admin.php:848 ../../mod/admin.php:1058
msgid "Author: "
msgstr "Autor:"
#: ../../mod/admin.php:849 ../../mod/admin.php:1059
msgid "Maintainer: "
msgstr "Betreuer:"
#: ../../mod/admin.php:978
msgid "No themes found."
msgstr "Keine Themen gefunden."
#: ../../mod/admin.php:1040
msgid "Screenshot"
msgstr "Bildschirmfoto"
#: ../../mod/admin.php:1086
msgid "[Experimental]"
msgstr "[Experimentell]"
#: ../../mod/admin.php:1087
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
#: ../../mod/admin.php:1114
msgid "Log settings updated."
msgstr "Protokolleinstellungen aktualisiert."
#: ../../mod/admin.php:1170
msgid "Clear"
msgstr "löschen"
#: ../../mod/admin.php:1176
msgid "Debugging"
msgstr "Protokoll führen"
#: ../../mod/admin.php:1177
msgid "Log file"
msgstr "Protokolldatei"
#: ../../mod/admin.php:1177
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
#: ../../mod/admin.php:1178
msgid "Log level"
msgstr "Protokoll-Level"
#: ../../mod/admin.php:1227 ../../mod/contacts.php:409
msgid "Update now"
msgstr "Jetzt aktualisieren"
#: ../../mod/admin.php:1228
msgid "Close"
msgstr "Schließen"
#: ../../mod/admin.php:1234
msgid "FTP Host"
msgstr "FTP Host"
#: ../../mod/admin.php:1235
msgid "FTP Path"
msgstr "FTP Pfad"
#: ../../mod/admin.php:1236
msgid "FTP User"
msgstr "FTP Nutzername"
#: ../../mod/admin.php:1237
msgid "FTP Password"
msgstr "FTP Passwort"
#: ../../mod/item.php:105
msgid "Unable to locate original post."
msgstr "Konnte den Originalbeitrag nicht finden."
#: ../../mod/item.php:307
msgid "Empty post discarded."
msgstr "Leerer Beitrag wurde verworfen."
#: ../../mod/item.php:869
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
#: ../../mod/item.php:894
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
#: ../../mod/item.php:896
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kannst sie online unter %s besuchen"
#: ../../mod/item.php:897
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
#: ../../mod/item.php:901
#, php-format
msgid "%s posted an update."
msgstr "%s hat ein Update veröffentlicht."
#: ../../mod/allfriends.php:34
#, php-format
msgid "Friends of %s"
msgstr "Freunde von %s"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr "Keine Freunde zum Anzeigen."
#: ../../mod/search.php:21 ../../mod/network.php:224
msgid "Remove term"
msgstr "Begriff entfernen"
#: ../../mod/search.php:180 ../../mod/search.php:206
#: ../../mod/community.php:61 ../../mod/community.php:88
msgid "No results."
msgstr "Keine Ergebnisse."
#: ../../mod/api.php:76 ../../mod/api.php:102
msgid "Authorize application connection"
msgstr "Verbindung der Applikation autorisieren"
#: ../../mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
#: ../../mod/api.php:89
msgid "Please login to continue."
msgstr "Bitte melde dich an um fortzufahren."
#: ../../mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
#: ../../mod/register.php:91 ../../mod/regmod.php:54
#, php-format
msgid "Registration details for %s"
msgstr "Details der Registration von %s"
#: ../../mod/register.php:99
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
#: ../../mod/register.php:103
msgid "Failed to send email message. Here is the message that failed."
msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
#: ../../mod/register.php:108
msgid "Your registration can not be processed."
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
#: ../../mod/register.php:145
#, php-format
msgid "Registration request at %s"
msgstr "Registrierungsanfrage auf %s"
#: ../../mod/register.php:154
msgid "Your registration is pending approval by the site owner."
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
#: ../../mod/register.php:192 ../../mod/uimport.php:50
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
#: ../../mod/register.php:220
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
#: ../../mod/register.php:221
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
#: ../../mod/register.php:222
msgid "Your OpenID (optional): "
msgstr "Deine OpenID (optional): "
#: ../../mod/register.php:236
msgid "Include your profile in member directory?"
msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
#: ../../mod/register.php:257
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
#: ../../mod/register.php:258
msgid "Your invitation ID: "
msgstr "ID deiner Einladung: "
#: ../../mod/register.php:269
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Vollständiger Name (z.B. Max Mustermann): "
#: ../../mod/register.php:270
msgid "Your Email Address: "
msgstr "Deine E-Mail-Adresse: "
#: ../../mod/register.php:271
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
#: ../../mod/register.php:272
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
#: ../../mod/apps.php:4
msgid "Applications"
msgstr "Anwendungen"
#: ../../mod/apps.php:7
msgid "No installed applications."
msgstr "Keine Applikationen installiert."
#: ../../mod/regmod.php:63
msgid "Account approved."
msgstr "Konto freigegeben."
#: ../../mod/regmod.php:100
#, php-format
msgid "Registration revoked for %s"
msgstr "Registrierung für %s wurde zurückgezogen"
#: ../../mod/regmod.php:112
msgid "Please login."
msgstr "Bitte melde dich an."
#: ../../mod/attach.php:8
msgid "Item not available."
msgstr "Beitrag nicht verfügbar."
#: ../../mod/attach.php:20
msgid "Item was not found."
msgstr "Beitrag konnte nicht gefunden werden."
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr "Konto löschen"
#: ../../mod/removeme.php:46
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr "Bitte gib dein Passwort zur Verifikation ein:"
#: ../../mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr "Quelle (bbcode) Text:"
#: ../../mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:"
#: ../../mod/babel.php:31
msgid "Source input: "
msgstr "Originaltext:"
#: ../../mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr "bb2html (reines HTML): "
#: ../../mod/babel.php:39
msgid "bb2html: "
msgstr "bb2html: "
#: ../../mod/babel.php:43
msgid "bb2html2bb: "
msgstr "bb2html2bb: "
#: ../../mod/babel.php:47
msgid "bb2md: "
msgstr "bb2md: "
#: ../../mod/babel.php:51
msgid "bb2md2html: "
msgstr "bb2md2html: "
#: ../../mod/babel.php:55
msgid "bb2dia2bb: "
msgstr "bb2dia2bb: "
#: ../../mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr "bb2md2html2bb: "
#: ../../mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr "Texteingabe (Diaspora Format): "
#: ../../mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr "Gemeinsame Freunde"
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr "Keine gemeinsamen Kontakte."
#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
msgid "Could not access contact record."
msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
#: ../../mod/contacts.php:99
msgid "Could not locate selected profile."
msgstr "Konnte das ausgewählte Profil nicht finden."
#: ../../mod/contacts.php:122
msgid "Contact updated."
msgstr "Kontakt aktualisiert."
#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
msgid "Failed to update contact record."
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
#: ../../mod/contacts.php:187
msgid "Contact has been blocked"
msgstr "Kontakt wurde blockiert"
#: ../../mod/contacts.php:187
msgid "Contact has been unblocked"
msgstr "Kontakt wurde wieder freigegeben"
#: ../../mod/contacts.php:201
msgid "Contact has been ignored"
msgstr "Kontakt wurde ignoriert"
#: ../../mod/contacts.php:201
msgid "Contact has been unignored"
msgstr "Kontakt wird nicht mehr ignoriert"
#: ../../mod/contacts.php:220
msgid "Contact has been archived"
msgstr "Kontakt wurde archiviert"
#: ../../mod/contacts.php:220
msgid "Contact has been unarchived"
msgstr "Kontakt wurde aus dem Archiv geholt"
#: ../../mod/contacts.php:244
msgid "Do you really want to delete this contact?"
msgstr "Möchtest du wirklich diesen Kontakt löschen?"
#: ../../mod/contacts.php:263
msgid "Contact has been removed."
msgstr "Kontakt wurde entfernt."
#: ../../mod/contacts.php:301
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du hast mit %s eine beidseitige Freundschaft"
#: ../../mod/contacts.php:305
#, php-format
msgid "You are sharing with %s"
msgstr "Du teilst mit %s"
#: ../../mod/contacts.php:310
#, php-format
msgid "%s is sharing with you"
msgstr "%s teilt mit Dir"
#: ../../mod/contacts.php:327
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
#: ../../mod/contacts.php:330
msgid "Never"
msgstr "Niemals"
#: ../../mod/contacts.php:334
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
#: ../../mod/contacts.php:334
msgid "(Update was not successful)"
msgstr "(Aktualisierung war nicht erfolgreich)"
#: ../../mod/contacts.php:336
msgid "Suggest friends"
msgstr "Kontakte vorschlagen"
#: ../../mod/contacts.php:340
#, php-format
msgid "Network type: %s"
msgstr "Netzwerktyp: %s"
#: ../../mod/contacts.php:348
msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr "Geblockt-Status ein-/ausschalten"
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
msgid "Unignore"
msgstr "Ignorieren aufheben"
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
#: ../../mod/notifications.php:210
msgid "Ignore"
msgstr "Ignorieren"
#: ../../mod/contacts.php:362
msgid "Toggle Ignored status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: ../../mod/contacts.php:366
msgid "Unarchive"
msgstr "Aus Archiv zurückholen"
#: ../../mod/contacts.php:366
msgid "Archive"
msgstr "Archivieren"
#: ../../mod/contacts.php:369
msgid "Toggle Archive status"
msgstr "Archiviert-Status ein-/ausschalten"
#: ../../mod/contacts.php:372
msgid "Repair"
msgstr "Reparieren"
#: ../../mod/contacts.php:375
msgid "Advanced Contact Settings"
msgstr "Fortgeschrittene Kontakteinstellungen"
#: ../../mod/contacts.php:381
msgid "Communications lost with this contact!"
msgstr "Verbindungen mit diesem Kontakt verloren!"
#: ../../mod/contacts.php:384
msgid "Contact Editor"
msgstr "Kontakt Editor"
#: ../../mod/contacts.php:387
msgid "Profile Visibility"
msgstr "Profil-Sichtbarkeit"
#: ../../mod/contacts.php:388
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."
#: ../../mod/contacts.php:389
msgid "Contact Information / Notes"
msgstr "Kontakt Informationen / Notizen"
#: ../../mod/contacts.php:390
msgid "Edit contact notes"
msgstr "Notizen zum Kontakt bearbeiten"
#: ../../mod/contacts.php:396
msgid "Block/Unblock contact"
msgstr "Kontakt blockieren/freischalten"
#: ../../mod/contacts.php:397
msgid "Ignore contact"
msgstr "Ignoriere den Kontakt"
#: ../../mod/contacts.php:398
msgid "Repair URL settings"
msgstr "URL Einstellungen reparieren"
#: ../../mod/contacts.php:399
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
#: ../../mod/contacts.php:401
msgid "Delete contact"
msgstr "Lösche den Kontakt"
#: ../../mod/contacts.php:405
msgid "Last update:"
msgstr "letzte Aktualisierung:"
#: ../../mod/contacts.php:407
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr "Derzeit geblockt"
#: ../../mod/contacts.php:417
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
#: ../../mod/contacts.php:418
msgid "Currently archived"
msgstr "Momentan archiviert"
#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
#: ../../mod/notifications.php:204
msgid "Hide this contact from others"
msgstr "Verberge diesen Kontakt vor anderen"
#: ../../mod/contacts.php:419
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
#: ../../mod/contacts.php:470
msgid "Suggestions"
msgstr "Kontaktvorschläge"
#: ../../mod/contacts.php:473
msgid "Suggest potential friends"
msgstr "Freunde vorschlagen"
#: ../../mod/contacts.php:476 ../../mod/group.php:194
msgid "All Contacts"
msgstr "Alle Kontakte"
#: ../../mod/contacts.php:479
msgid "Show all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../mod/contacts.php:482
msgid "Unblocked"
msgstr "Ungeblockt"
#: ../../mod/contacts.php:485
msgid "Only show unblocked contacts"
msgstr "Nur nicht-blockierte Kontakte anzeigen"
#: ../../mod/contacts.php:489
msgid "Blocked"
msgstr "Geblockt"
#: ../../mod/contacts.php:492
msgid "Only show blocked contacts"
msgstr "Nur blockierte Kontakte anzeigen"
#: ../../mod/contacts.php:496
msgid "Ignored"
msgstr "Ignoriert"
#: ../../mod/contacts.php:499
msgid "Only show ignored contacts"
msgstr "Nur ignorierte Kontakte anzeigen"
#: ../../mod/contacts.php:503
msgid "Archived"
msgstr "Archiviert"
#: ../../mod/contacts.php:506
msgid "Only show archived contacts"
msgstr "Nur archivierte Kontakte anzeigen"
#: ../../mod/contacts.php:510
msgid "Hidden"
msgstr "Verborgen"
#: ../../mod/contacts.php:513
msgid "Only show hidden contacts"
msgstr "Nur verborgene Kontakte anzeigen"
#: ../../mod/contacts.php:561
msgid "Mutual Friendship"
msgstr "Beidseitige Freundschaft"
#: ../../mod/contacts.php:565
msgid "is a fan of yours"
msgstr "ist ein Fan von dir"
#: ../../mod/contacts.php:569
msgid "you are a fan of"
msgstr "du bist Fan von"
#: ../../mod/contacts.php:611
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
#: ../../mod/settings.php:23 ../../mod/photos.php:79
msgid "everybody"
msgstr "jeder"
#: ../../mod/settings.php:35
msgid "Additional features"
msgstr "Zusätzliche Features"
#: ../../mod/settings.php:40 ../../mod/uexport.php:14
msgid "Display settings"
msgstr "Anzeige-Einstellungen"
#: ../../mod/settings.php:46 ../../mod/uexport.php:20
msgid "Connector settings"
msgstr "Connector-Einstellungen"
#: ../../mod/settings.php:51 ../../mod/uexport.php:25
msgid "Plugin settings"
msgstr "Plugin-Einstellungen"
#: ../../mod/settings.php:56 ../../mod/uexport.php:30
msgid "Connected apps"
msgstr "Verbundene Programme"
#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
msgid "Export personal data"
msgstr "Persönliche Daten exportieren"
#: ../../mod/settings.php:66 ../../mod/uexport.php:40
msgid "Remove account"
msgstr "Konto löschen"
#: ../../mod/settings.php:118
msgid "Missing some important data!"
msgstr "Wichtige Daten fehlen!"
#: ../../mod/settings.php:121 ../../mod/settings.php:586
msgid "Update"
msgstr "Aktualisierungen"
#: ../../mod/settings.php:227
msgid "Failed to connect with email account using the settings provided."
msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
#: ../../mod/settings.php:232
msgid "Email settings updated."
msgstr "E-Mail Einstellungen bearbeitet."
#: ../../mod/settings.php:247
msgid "Features updated"
msgstr "Features aktualisiert"
#: ../../mod/settings.php:307
msgid "Passwords do not match. Password unchanged."
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
#: ../../mod/settings.php:312
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
#: ../../mod/settings.php:323
msgid "Password changed."
msgstr "Passwort ändern."
#: ../../mod/settings.php:325
msgid "Password update failed. Please try again."
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
#: ../../mod/settings.php:390
msgid " Please use a shorter name."
msgstr " Bitte verwende einen kürzeren Namen."
#: ../../mod/settings.php:392
msgid " Name too short."
msgstr " Name ist zu kurz."
#: ../../mod/settings.php:398
msgid " Not valid email."
msgstr " Keine gültige E-Mail."
#: ../../mod/settings.php:400
msgid " Cannot change to that email."
msgstr "Ändern der E-Mail nicht möglich. "
#: ../../mod/settings.php:454
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
#: ../../mod/settings.php:458
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
#: ../../mod/settings.php:559 ../../mod/settings.php:585
#: ../../mod/settings.php:621
msgid "Add application"
msgstr "Programm hinzufügen"
#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Redirect"
msgstr "Umleiten"
#: ../../mod/settings.php:566 ../../mod/settings.php:592
msgid "Icon url"
msgstr "Icon URL"
#: ../../mod/settings.php:577
msgid "You can't edit this application."
msgstr "Du kannst dieses Programm nicht bearbeiten."
#: ../../mod/settings.php:620
msgid "Connected Apps"
msgstr "Verbundene Programme"
#: ../../mod/settings.php:622 ../../mod/editpost.php:109
#: ../../mod/content.php:751 ../../object/Item.php:110
msgid "Edit"
msgstr "Bearbeiten"
#: ../../mod/settings.php:624
msgid "Client key starts with"
msgstr "Anwenderschlüssel beginnt mit"
#: ../../mod/settings.php:625
msgid "No name"
msgstr "Kein Name"
#: ../../mod/settings.php:626
msgid "Remove authorization"
msgstr "Autorisierung entziehen"
#: ../../mod/settings.php:638
msgid "No Plugin settings configured"
msgstr "Keine Plugin-Einstellungen konfiguriert"
#: ../../mod/settings.php:660
msgid "Off"
msgstr "Aus"
#: ../../mod/settings.php:660
msgid "On"
msgstr "An"
#: ../../mod/settings.php:668
msgid "Additional Features"
msgstr "Zusätzliche Features"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "enabled"
msgstr "eingeschaltet"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "disabled"
msgstr "ausgeschaltet"
#: ../../mod/settings.php:682
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:714
msgid "Email access is disabled on this site."
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
#: ../../mod/settings.php:721
msgid "Connector Settings"
msgstr "Verbindungs-Einstellungen"
#: ../../mod/settings.php:726
msgid "Email/Mailbox Setup"
msgstr "E-Mail/Postfach-Einstellungen"
#: ../../mod/settings.php:727
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."
#: ../../mod/settings.php:728
msgid "Last successful email check:"
msgstr "Letzter erfolgreicher E-Mail Check"
#: ../../mod/settings.php:730
msgid "IMAP server name:"
msgstr "IMAP-Server-Name:"
#: ../../mod/settings.php:731
msgid "IMAP port:"
msgstr "IMAP-Port:"
#: ../../mod/settings.php:732
msgid "Security:"
msgstr "Sicherheit:"
#: ../../mod/settings.php:733
msgid "Email login name:"
msgstr "E-Mail-Login-Name:"
#: ../../mod/settings.php:734
msgid "Email password:"
msgstr "E-Mail-Passwort:"
#: ../../mod/settings.php:735
msgid "Reply-to address:"
msgstr "Reply-to Adresse:"
#: ../../mod/settings.php:736
msgid "Send public posts to all email contacts:"
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
#: ../../mod/settings.php:737
msgid "Action after import:"
msgstr "Aktion nach Import:"
#: ../../mod/settings.php:737
msgid "Mark as seen"
msgstr "Als gelesen markieren"
#: ../../mod/settings.php:737
msgid "Move to folder"
msgstr "In einen Ordner verschieben"
#: ../../mod/settings.php:738
msgid "Move to folder:"
msgstr "In diesen Ordner verschieben:"
#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
#: ../../mod/settings.php:815 ../../mod/settings.php:826
msgid "Display Theme:"
msgstr "Theme:"
#: ../../mod/settings.php:816
msgid "Mobile Theme:"
msgstr "Mobiles Theme"
#: ../../mod/settings.php:817
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
#: ../../mod/settings.php:817
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimal 10 Sekunden, kein Maximum"
#: ../../mod/settings.php:818
msgid "Number of items to display per page:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
#: ../../mod/settings.php:818
msgid "Maximum of 100 items"
msgstr "Maximal 100 Beiträge"
#: ../../mod/settings.php:819
msgid "Don't show emoticons"
msgstr "Keine Smilies anzeigen"
#: ../../mod/settings.php:895
msgid "Normal Account Page"
msgstr "Normales Konto"
#: ../../mod/settings.php:896
msgid "This account is a normal personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: ../../mod/settings.php:899
msgid "Soapbox Page"
msgstr "Marktschreier-Konto"
#: ../../mod/settings.php:900
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
#: ../../mod/settings.php:903
msgid "Community Forum/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: ../../mod/settings.php:904
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
#: ../../mod/settings.php:907
msgid "Automatic Friend Page"
msgstr "Automatische Freunde Seite"
#: ../../mod/settings.php:908
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
#: ../../mod/settings.php:911
msgid "Private Forum [Experimental]"
msgstr "Privates Forum [Versuchsstadium]"
#: ../../mod/settings.php:912
msgid "Private forum - approved members only"
msgstr "Privates Forum, nur für Mitglieder"
#: ../../mod/settings.php:924
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:924
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
#: ../../mod/settings.php:934
msgid "Publish your default profile in your local site directory?"
msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
#: ../../mod/settings.php:940
msgid "Publish your default profile in the global social directory?"
msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
#: ../../mod/settings.php:948
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
#: ../../mod/settings.php:952
msgid "Hide your profile details from unknown viewers?"
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
#: ../../mod/settings.php:957
msgid "Allow friends to post to your profile page?"
msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
#: ../../mod/settings.php:963
msgid "Allow friends to tag your posts?"
msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
#: ../../mod/settings.php:969
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
#: ../../mod/settings.php:975
msgid "Permit unknown people to send you private mail?"
msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
#: ../../mod/settings.php:983
msgid "Profile is <strong>not published</strong>."
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
msgid "or"
msgstr "oder"
#: ../../mod/settings.php:991
msgid "Your Identity Address is"
msgstr "Die Adresse deines Profils lautet:"
#: ../../mod/settings.php:1002
msgid "Automatically expire posts after this many days:"
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
#: ../../mod/settings.php:1002
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
#: ../../mod/settings.php:1003
msgid "Advanced expiration settings"
msgstr "Erweiterte Verfallseinstellungen"
#: ../../mod/settings.php:1004
msgid "Advanced Expiration"
msgstr "Erweitertes Verfallen"
#: ../../mod/settings.php:1005
msgid "Expire posts:"
msgstr "Beiträge verfallen lassen:"
#: ../../mod/settings.php:1006
msgid "Expire personal notes:"
msgstr "Persönliche Notizen verfallen lassen:"
#: ../../mod/settings.php:1007
msgid "Expire starred posts:"
msgstr "Markierte Beiträge verfallen lassen:"
#: ../../mod/settings.php:1008
msgid "Expire photos:"
msgstr "Fotos verfallen lassen:"
#: ../../mod/settings.php:1009
msgid "Only expire posts by others:"
msgstr "Nur Beiträge anderer verfallen:"
#: ../../mod/settings.php:1035
msgid "Account Settings"
msgstr "Kontoeinstellungen"
#: ../../mod/settings.php:1043
msgid "Password Settings"
msgstr "Passwort-Einstellungen"
#: ../../mod/settings.php:1044
msgid "New Password:"
msgstr "Neues Passwort:"
#: ../../mod/settings.php:1045
msgid "Confirm:"
msgstr "Bestätigen:"
#: ../../mod/settings.php:1045
msgid "Leave password fields blank unless changing"
msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
#: ../../mod/settings.php:1049
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: ../../mod/settings.php:1051
msgid "Email Address:"
msgstr "E-Mail-Adresse:"
#: ../../mod/settings.php:1052
msgid "Your Timezone:"
msgstr "Deine Zeitzone:"
#: ../../mod/settings.php:1053
msgid "Default Post Location:"
msgstr "Standardstandort:"
#: ../../mod/settings.php:1054
msgid "Use Browser Location:"
msgstr "Standort des Browsers verwenden:"
#: ../../mod/settings.php:1057
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
#: ../../mod/settings.php:1059
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
msgid "(to prevent spam abuse)"
msgstr "(um SPAM zu vermeiden)"
#: ../../mod/settings.php:1060
msgid "Default Post Permissions"
msgstr "Standard-Zugriffsrechte für Beiträge"
#: ../../mod/settings.php:1061
msgid "(click to open/close)"
msgstr "(klicke zum öffnen/schließen)"
#: ../../mod/settings.php:1070 ../../mod/photos.php:1140
#: ../../mod/photos.php:1506
msgid "Show to Groups"
msgstr "Zeige den Gruppen"
#: ../../mod/settings.php:1071 ../../mod/photos.php:1141
#: ../../mod/photos.php:1507
msgid "Show to Contacts"
msgstr "Zeige den Kontakten"
#: ../../mod/settings.php:1072
msgid "Default Private Post"
msgstr "Privater Standardbeitrag"
#: ../../mod/settings.php:1073
msgid "Default Public Post"
msgstr "Öffentlicher Standardbeitrag"
#: ../../mod/settings.php:1077
msgid "Default Permissions for New Posts"
msgstr "Standardberechtigungen für neue Beiträge"
#: ../../mod/settings.php:1089
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
#: ../../mod/settings.php:1092
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
#: ../../mod/settings.php:1093
msgid "By default post a status message when:"
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
#: ../../mod/settings.php:1094
msgid "accepting a friend request"
msgstr " du eine Kontaktanfrage akzeptierst"
#: ../../mod/settings.php:1095
msgid "joining a forum/community"
msgstr " du einem Forum/einer Gemeinschaftsseite beitrittst"
#: ../../mod/settings.php:1096
msgid "making an <em>interesting</em> profile change"
msgstr " du eine <em>interessante</em> Änderung an deinem Profil durchführst"
#: ../../mod/settings.php:1097
msgid "Send a notification email when:"
msgstr "Benachrichtigungs-E-Mail senden wenn:"
#: ../../mod/settings.php:1098
msgid "You receive an introduction"
msgstr " du eine Kontaktanfrage erhältst"
#: ../../mod/settings.php:1099
msgid "Your introductions are confirmed"
msgstr " eine deiner Kontaktanfragen akzeptiert wurde"
#: ../../mod/settings.php:1100
msgid "Someone writes on your profile wall"
msgstr " jemand etwas auf deine Pinnwand schreibt"
#: ../../mod/settings.php:1101
msgid "Someone writes a followup comment"
msgstr " jemand auch einen Kommentar verfasst"
#: ../../mod/settings.php:1102
msgid "You receive a private message"
msgstr " du eine private Nachricht erhältst"
#: ../../mod/settings.php:1103
msgid "You receive a friend suggestion"
msgstr " du eine Empfehlung erhältst"
#: ../../mod/settings.php:1104
msgid "You are tagged in a post"
msgstr " du in einem Beitrag erwähnt wirst"
#: ../../mod/settings.php:1105
msgid "You are poked/prodded/etc. in a post"
msgstr " du von jemandem angestupst oder sonstwie behandelt wirst"
#: ../../mod/settings.php:1108
msgid "Advanced Account/Page Type Settings"
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
#: ../../mod/settings.php:1109
msgid "Change the behaviour of this account for special situations"
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
#: ../../mod/share.php:44
msgid "link"
msgstr "Link"
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
@ -53,41 +7588,8 @@ msgstr "Einstellungen zum Kontakt angewandt."
msgid "Contact update failed."
msgstr "Konnte den Kontakt nicht aktualisieren."
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:1041
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
#: ../../mod/settings.php:91 ../../mod/settings.php:542
#: ../../mod/settings.php:547 ../../mod/manage.php:96 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/item.php:139
#: ../../mod/item.php:155 ../../mod/mood.php:114
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../mod/message.php:38 ../../mod/message.php:174
#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
#: ../../mod/display.php:180 ../../mod/profiles.php:146
#: ../../mod/profiles.php:567 ../../mod/delegate.php:6
#: ../../mod/suggest.php:56 ../../mod/invite.php:15 ../../mod/invite.php:101
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:512
#: ../../addon/facebook/facebook.php:518 ../../addon/fbpost/fbpost.php:170
#: ../../addon/fbpost/fbpost.php:176
#: ../../addon/dav/friendica/layout.fnk.php:354
#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4015
#: ../../index.php:341 ../../addon.old/facebook/facebook.php:510
#: ../../addon.old/facebook/facebook.php:516
#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
#: ../../addon.old/dav/friendica/layout.fnk.php:354
msgid "Permission denied."
msgstr "Zugriff verweigert."
#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
msgid "Contact not found."
msgstr "Kontakt nicht gefunden."
@ -111,11 +7613,6 @@ msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, w
msgid "Return to contact editor"
msgstr "Zurück zum Kontakteditor"
#: ../../mod/crepair.php:148 ../../mod/settings.php:562
#: ../../mod/settings.php:588 ../../mod/admin.php:731 ../../mod/admin.php:741
msgid "Name"
msgstr "Name"
#: ../../mod/crepair.php:149
msgid "Account Nickname"
msgstr "Konto-Spitzname"
@ -148,748 +7645,143 @@ msgstr "Pull/Feed-URL"
msgid "New photo from this URL"
msgstr "Neues Foto von dieser URL"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:478 ../../mod/photos.php:1075
#: ../../mod/photos.php:1196 ../../mod/photos.php:1498
#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
#: ../../mod/photos.php:1676 ../../mod/install.php:248
#: ../../mod/install.php:286 ../../mod/localtime.php:45 ../../mod/poke.php:199
#: ../../mod/content.php:710 ../../mod/contacts.php:386
#: ../../mod/settings.php:560 ../../mod/settings.php:670
#: ../../mod/settings.php:739 ../../mod/settings.php:811
#: ../../mod/settings.php:1037 ../../mod/manage.php:110 ../../mod/group.php:87
#: ../../mod/mood.php:137 ../../mod/message.php:335 ../../mod/message.php:564
#: ../../mod/admin.php:461 ../../mod/admin.php:728 ../../mod/admin.php:865
#: ../../mod/admin.php:1068 ../../mod/admin.php:1155
#: ../../mod/profiles.php:626 ../../mod/invite.php:140
#: ../../addon/fromgplus/fromgplus.php:44
#: ../../addon/facebook/facebook.php:621
#: ../../addon/snautofollow/snautofollow.php:64
#: ../../addon/fbpost/fbpost.php:280 ../../addon/yourls/yourls.php:76
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/remote_permissions/remote_permissions.php:48
#: ../../addon/remote_permissions/remote_permissions.php:196
#: ../../addon/startpage/startpage.php:92
#: ../../addon/geonames/geonames.php:187
#: ../../addon/forumlist/forumlist.php:178
#: ../../addon/impressum/impressum.php:83
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
#: ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:94
#: ../../addon/group_text/group_text.php:84
#: ../../addon/libravatar/libravatar.php:99
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:91
#: ../../addon/altpager/altpager.php:98 ../../addon/mathjax/mathjax.php:42
#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:99
#: ../../addon/gravatar/gravatar.php:95
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
#: ../../addon/jappixmini/jappixmini.php:307
#: ../../addon/statusnet/statusnet.php:290
#: ../../addon/statusnet/statusnet.php:304
#: ../../addon/statusnet/statusnet.php:330
#: ../../addon/statusnet/statusnet.php:337
#: ../../addon/statusnet/statusnet.php:374
#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:191
#: ../../addon/twitter/twitter.php:229 ../../addon/twitter/twitter.php:556
#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/theme.php:642
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
#: ../../object/Item.php:604 ../../addon.old/fromgplus/fromgplus.php:40
#: ../../addon.old/facebook/facebook.php:619
#: ../../addon.old/snautofollow/snautofollow.php:64
#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
#: ../../addon.old/planets/planets.php:158
#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
#: ../../addon.old/randplace/randplace.php:177
#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
#: ../../addon.old/startpage/startpage.php:92
#: ../../addon.old/geonames/geonames.php:187
#: ../../addon.old/oembed.old/oembed.php:41
#: ../../addon.old/forumlist/forumlist.php:175
#: ../../addon.old/impressum/impressum.php:83
#: ../../addon.old/notimeline/notimeline.php:64
#: ../../addon.old/blockem/blockem.php:57
#: ../../addon.old/qcomment/qcomment.php:61
#: ../../addon.old/openstreetmap/openstreetmap.php:70
#: ../../addon.old/group_text/group_text.php:84
#: ../../addon.old/libravatar/libravatar.php:99
#: ../../addon.old/libertree/libertree.php:90
#: ../../addon.old/altpager/altpager.php:87
#: ../../addon.old/mathjax/mathjax.php:42
#: ../../addon.old/editplain/editplain.php:84
#: ../../addon.old/blackout/blackout.php:98
#: ../../addon.old/gravatar/gravatar.php:95
#: ../../addon.old/pageheader/pageheader.php:55
#: ../../addon.old/ijpost/ijpost.php:93
#: ../../addon.old/jappixmini/jappixmini.php:307
#: ../../addon.old/statusnet/statusnet.php:278
#: ../../addon.old/statusnet/statusnet.php:292
#: ../../addon.old/statusnet/statusnet.php:318
#: ../../addon.old/statusnet/statusnet.php:325
#: ../../addon.old/statusnet/statusnet.php:353
#: ../../addon.old/statusnet/statusnet.php:576
#: ../../addon.old/tumblr/tumblr.php:90
#: ../../addon.old/numfriends/numfriends.php:85
#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
#: ../../addon.old/twitter/twitter.php:180
#: ../../addon.old/twitter/twitter.php:209
#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
#: ../../addon.old/fromapp/fromapp.php:77
#: ../../addon.old/blogger/blogger.php:102
#: ../../addon.old/posterous/posterous.php:103
msgid "Submit"
msgstr "Senden"
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
#: ../../mod/help.php:79
msgid "Help:"
msgstr "Hilfe:"
#: ../../mod/delegate.php:123
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
#: ../../include/nav.php:113 ../../addon.old/dav/friendica/layout.fnk.php:225
msgid "Help"
msgstr "Hilfe"
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr "Vorhandene Seiten Manager"
#: ../../mod/help.php:90 ../../index.php:226
msgid "Not Found"
msgstr "Nicht gefunden"
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr "Vorhandene Bevollmächtigte für die Seite"
#: ../../mod/help.php:93 ../../index.php:229
msgid "Page not found."
msgstr "Seite nicht gefunden."
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr "Potentielle Bevollmächtigte"
#: ../../mod/wall_attach.php:69
#: ../../mod/delegate.php:131
msgid "Add"
msgstr "Hinzufügen"
#: ../../mod/delegate.php:132
msgid "No entries."
msgstr "Keine Einträge"
#: ../../mod/poke.php:192
msgid "Poke/Prod"
msgstr "Anstupsen etc."
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr "Stupse Leute an oder mache anderes mit ihnen"
#: ../../mod/poke.php:194
msgid "Recipient"
msgstr "Empfänger"
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr "Was willst du mit dem Empfänger machen:"
#: ../../mod/poke.php:198
msgid "Make this post private"
msgstr "Diesen Beitrag privat machen"
#: ../../mod/dfrn_confirm.php:119
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
#: ../../mod/dfrn_confirm.php:237
msgid "Response from remote site was not understood."
msgstr "Antwort der Gegenstelle unverständlich."
#: ../../mod/dfrn_confirm.php:246
msgid "Unexpected response from remote site: "
msgstr "Unerwartete Antwort der Gegenstelle: "
#: ../../mod/dfrn_confirm.php:254
msgid "Confirmation completed successfully."
msgstr "Bestätigung erfolgreich abgeschlossen."
#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
#: ../../mod/dfrn_confirm.php:277
msgid "Remote site reported: "
msgstr "Gegenstelle meldet: "
#: ../../mod/dfrn_confirm.php:268
msgid "Temporary failure. Please wait and try again."
msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
#: ../../mod/dfrn_confirm.php:275
msgid "Introduction failed or was revoked."
msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
#: ../../mod/dfrn_confirm.php:420
msgid "Unable to set contact photo."
msgstr "Konnte das Bild des Kontakts nicht speichern."
#: ../../mod/dfrn_confirm.php:562
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Die Datei ist größer als das erlaubte Limit von %d"
msgid "No user record found for '%s' "
msgstr "Für '%s' wurde kein Nutzer gefunden"
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr "Hochladen der Datei fehlgeschlagen."
#: ../../mod/dfrn_confirm.php:572
msgid "Our site encryption key is apparently messed up."
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
#: ../../mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Kontaktvorschlag gesendet."
#: ../../mod/dfrn_confirm.php:583
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
#: ../../mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Kontakte vorschlagen"
#: ../../mod/dfrn_confirm.php:604
msgid "Contact record was not found for you on our site."
msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
#: ../../mod/fsuggest.php:99
#: ../../mod/dfrn_confirm.php:618
#, php-format
msgid "Suggest a friend for %s"
msgstr "Schlage %s einen Kontakt vor"
msgid "Site public key not available in contact record for URL %s."
msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
#: ../../mod/events.php:66
msgid "Event title and start time are required."
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
#: ../../mod/dfrn_confirm.php:638
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
#: ../../mod/events.php:291
msgid "l, F j"
msgstr "l, F j"
#: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system."
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
#: ../../mod/events.php:313
msgid "Edit event"
msgstr "Veranstaltung bearbeiten"
#: ../../mod/dfrn_confirm.php:716
msgid "Unable to update your contact profile details on our system"
msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
#: ../../mod/events.php:335 ../../include/text.php:1258
msgid "link to source"
msgstr "Link zum Originalbeitrag"
#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
#: ../../include/nav.php:79 ../../boot.php:1857
msgid "Events"
msgstr "Veranstaltungen"
#: ../../mod/events.php:371
msgid "Create New Event"
msgstr "Neue Veranstaltung erstellen"
#: ../../mod/events.php:372 ../../addon/dav/friendica/layout.fnk.php:263
#: ../../addon.old/dav/friendica/layout.fnk.php:263
msgid "Previous"
msgstr "Vorherige"
#: ../../mod/events.php:373 ../../mod/install.php:207
#: ../../addon/dav/friendica/layout.fnk.php:266
#: ../../addon.old/dav/friendica/layout.fnk.php:266
msgid "Next"
msgstr "Nächste"
#: ../../mod/events.php:446
msgid "hour:minute"
msgstr "Stunde:Minute"
#: ../../mod/events.php:456
msgid "Event details"
msgstr "Veranstaltungsdetails"
#: ../../mod/events.php:457
#: ../../mod/dfrn_confirm.php:751
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
msgid "Connection accepted at %s"
msgstr "Auf %s wurde die Verbindung akzeptiert"
#: ../../mod/events.php:459
msgid "Event Starts:"
msgstr "Veranstaltungsbeginn:"
#: ../../mod/events.php:459 ../../mod/events.php:473
msgid "Required"
msgstr "Benötigt"
#: ../../mod/events.php:462
msgid "Finish date/time is not known or not relevant"
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
#: ../../mod/events.php:464
msgid "Event Finishes:"
msgstr "Veranstaltungsende:"
#: ../../mod/events.php:467
msgid "Adjust for viewer timezone"
msgstr "An Zeitzone des Betrachters anpassen"
#: ../../mod/events.php:469
msgid "Description:"
msgstr "Beschreibung"
#: ../../mod/events.php:471 ../../mod/directory.php:134
#: ../../addon/forumdirectory/forumdirectory.php:156
#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
#: ../../boot.php:1379
msgid "Location:"
msgstr "Ort:"
#: ../../mod/events.php:473
msgid "Title:"
msgstr "Titel:"
#: ../../mod/events.php:475
msgid "Share this event"
msgstr "Veranstaltung teilen"
#: ../../mod/maintenance.php:5
msgid "System down for maintenance"
msgstr "System zur Wartung abgeschaltet"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/photos.php:202
#: ../../mod/photos.php:289 ../../mod/editpost.php:148
#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:249
#: ../../mod/settings.php:561 ../../mod/settings.php:587
#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
#: ../../mod/message.php:212 ../../mod/suggest.php:32
#: ../../addon/js_upload/js_upload.php:45 ../../include/items.php:3897
#: ../../include/conversation.php:1062
#: ../../addon.old/js_upload/js_upload.php:45
msgid "Cancel"
msgstr "Abbrechen"
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr "Tag entfernt"
#: ../../mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Gegenstands-Tag entfernen"
#: ../../mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Wähle ein Tag zum Entfernen aus: "
#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
#: ../../addon/dav/common/wdcal_edit.inc.php:468
#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
msgid "Remove"
msgstr "Entfernen"
#: ../../mod/dfrn_confirm.php:800
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s ist %2$s beigetreten"
#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s heißt %2$s herzlich willkommen"
#: ../../mod/api.php:76 ../../mod/api.php:102
msgid "Authorize application connection"
msgstr "Verbindung der Applikation autorisieren"
#: ../../mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
#: ../../mod/api.php:89
msgid "Please login to continue."
msgstr "Bitte melde dich an um fortzufahren."
#: ../../mod/api.php:104
msgid ""
"Do you want to authorize this application to access your posts and contacts,"
" and/or create new posts for you?"
msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:836
#: ../../mod/contacts.php:246 ../../mod/settings.php:934
#: ../../mod/settings.php:940 ../../mod/settings.php:948
#: ../../mod/settings.php:952 ../../mod/settings.php:957
#: ../../mod/settings.php:963 ../../mod/settings.php:969
#: ../../mod/settings.php:975 ../../mod/settings.php:1005
#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
#: ../../mod/settings.php:1008 ../../mod/settings.php:1009
#: ../../mod/register.php:239 ../../mod/message.php:209
#: ../../mod/profiles.php:606 ../../mod/suggest.php:29
#: ../../include/items.php:3894
msgid "Yes"
msgstr "Ja"
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:837
#: ../../mod/settings.php:934 ../../mod/settings.php:940
#: ../../mod/settings.php:948 ../../mod/settings.php:952
#: ../../mod/settings.php:957 ../../mod/settings.php:963
#: ../../mod/settings.php:969 ../../mod/settings.php:975
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
#: ../../mod/settings.php:1009 ../../mod/register.php:240
#: ../../mod/profiles.php:607
msgid "No"
msgstr "Nein"
#: ../../mod/photos.php:51 ../../boot.php:1850
msgid "Photo Albums"
msgstr "Fotoalben"
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1055
#: ../../mod/photos.php:1180 ../../mod/photos.php:1203
#: ../../mod/photos.php:1733 ../../mod/photos.php:1745
#: ../../addon/communityhome/communityhome.php:115
#: ../../view/theme/diabook/theme.php:492
#: ../../addon.old/communityhome/communityhome.php:110
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792
msgid "Upload New Photos"
msgstr "Neue Fotos hochladen"
#: ../../mod/photos.php:79 ../../mod/settings.php:23
msgid "everybody"
msgstr "jeder"
#: ../../mod/photos.php:143
msgid "Contact information unavailable"
msgstr "Kontaktinformationen nicht verfügbar"
#: ../../mod/photos.php:154 ../../mod/photos.php:722 ../../mod/photos.php:1180
#: ../../mod/photos.php:1203 ../../mod/profile_photo.php:74
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
#: ../../mod/profile_photo.php:305
#: ../../addon/communityhome/communityhome.php:116
#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:325
#: ../../include/user.php:332 ../../include/user.php:339
#: ../../addon.old/communityhome/communityhome.php:111
msgid "Profile Photos"
msgstr "Profilbilder"
#: ../../mod/photos.php:164
msgid "Album not found."
msgstr "Album nicht gefunden."
#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197
msgid "Delete Album"
msgstr "Album löschen"
#: ../../mod/photos.php:197
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"
#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499
msgid "Delete Photo"
msgstr "Foto löschen"
#: ../../mod/photos.php:284
msgid "Do you really want to delete this photo?"
msgstr "Möchtest du wirklich dieses Foto löschen?"
#: ../../mod/photos.php:653
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s wurde von %3$s in %2$s getaggt"
#: ../../mod/photos.php:653
msgid "a photo"
msgstr "einem Foto"
#: ../../mod/photos.php:758 ../../addon/js_upload/js_upload.php:321
#: ../../addon.old/js_upload/js_upload.php:315
msgid "Image exceeds size limit of "
msgstr "Die Bildgröße übersteigt das Limit von "
#: ../../mod/photos.php:766
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
#: ../../mod/photos.php:798 ../../mod/profile_photo.php:153
#: ../../mod/wall_upload.php:112
msgid "Unable to process image."
msgstr "Konnte das Bild nicht bearbeiten."
#: ../../mod/photos.php:825 ../../mod/profile_photo.php:301
#: ../../mod/wall_upload.php:138
msgid "Image upload failed."
msgstr "Hochladen des Bildes gescheitert."
#: ../../mod/photos.php:911 ../../mod/community.php:18
#: ../../mod/dfrn_request.php:761 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:19 ../../mod/search.php:89 ../../mod/directory.php:31
#: ../../addon/forumdirectory/forumdirectory.php:53
msgid "Public access denied."
msgstr "Öffentlicher Zugriff verweigert."
#: ../../mod/photos.php:921
msgid "No photos selected"
msgstr "Keine Bilder ausgewählt"
#: ../../mod/photos.php:1022
msgid "Access to this item is restricted."
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
#: ../../mod/photos.php:1085
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
#: ../../mod/photos.php:1120
msgid "Upload Photos"
msgstr "Bilder hochladen"
#: ../../mod/photos.php:1124 ../../mod/photos.php:1192
msgid "New album name: "
msgstr "Name des neuen Albums: "
#: ../../mod/photos.php:1125
msgid "or existing album name: "
msgstr "oder existierender Albumname: "
#: ../../mod/photos.php:1126
msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: ../../mod/photos.php:1128 ../../mod/photos.php:1494
msgid "Permissions"
msgstr "Berechtigungen"
#: ../../mod/photos.php:1137 ../../mod/photos.php:1503
#: ../../mod/settings.php:1070
msgid "Show to Groups"
msgstr "Zeige den Gruppen"
#: ../../mod/photos.php:1138 ../../mod/photos.php:1504
#: ../../mod/settings.php:1071
msgid "Show to Contacts"
msgstr "Zeige den Kontakten"
#: ../../mod/photos.php:1139
msgid "Private Photo"
msgstr "Privates Foto"
#: ../../mod/photos.php:1140
msgid "Public Photo"
msgstr "Öffentliches Foto"
#: ../../mod/photos.php:1207
msgid "Edit Album"
msgstr "Album bearbeiten"
#: ../../mod/photos.php:1213
msgid "Show Newest First"
msgstr "Zeige neueste zuerst"
#: ../../mod/photos.php:1215
msgid "Show Oldest First"
msgstr "Zeige älteste zuerst"
#: ../../mod/photos.php:1248 ../../mod/photos.php:1775
msgid "View Photo"
msgstr "Foto betrachten"
#: ../../mod/photos.php:1283
msgid "Permission denied. Access to this item may be restricted."
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
#: ../../mod/photos.php:1285
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
#: ../../mod/photos.php:1341
msgid "View photo"
msgstr "Fotos ansehen"
#: ../../mod/photos.php:1341
msgid "Edit photo"
msgstr "Foto bearbeiten"
#: ../../mod/photos.php:1342
msgid "Use as profile photo"
msgstr "Als Profilbild verwenden"
#: ../../mod/photos.php:1348 ../../mod/content.php:620
#: ../../object/Item.php:106
msgid "Private Message"
msgstr "Private Nachricht"
#: ../../mod/photos.php:1367
msgid "View Full Size"
msgstr "Betrachte Originalgröße"
#: ../../mod/photos.php:1441
msgid "Tags: "
msgstr "Tags: "
#: ../../mod/photos.php:1444
msgid "[Remove any tag]"
msgstr "[Tag entfernen]"
#: ../../mod/photos.php:1484
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
#: ../../mod/photos.php:1485
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
#: ../../mod/photos.php:1487
msgid "New album name"
msgstr "Name des neuen Albums"
#: ../../mod/photos.php:1490
msgid "Caption"
msgstr "Bildunterschrift"
#: ../../mod/photos.php:1492
msgid "Add a Tag"
msgstr "Tag hinzufügen"
#: ../../mod/photos.php:1496
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1505
msgid "Private photo"
msgstr "Privates Foto"
#: ../../mod/photos.php:1506
msgid "Public photo"
msgstr "Öffentliches Foto"
#: ../../mod/photos.php:1526 ../../mod/content.php:684
#: ../../object/Item.php:204
msgid "I like this (toggle)"
msgstr "Ich mag das (toggle)"
#: ../../mod/photos.php:1527 ../../mod/content.php:685
#: ../../object/Item.php:205
msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (toggle)"
#: ../../mod/photos.php:1528 ../../include/conversation.php:1023
msgid "Share"
msgstr "Teilen"
#: ../../mod/photos.php:1529 ../../mod/editpost.php:124
#: ../../mod/content.php:499 ../../mod/content.php:883
#: ../../mod/wallmessage.php:156 ../../mod/message.php:334
#: ../../mod/message.php:565 ../../include/conversation.php:646
#: ../../include/conversation.php:1042 ../../object/Item.php:293
msgid "Please wait"
msgstr "Bitte warten"
#: ../../mod/photos.php:1546 ../../mod/photos.php:1590
#: ../../mod/photos.php:1673 ../../mod/content.php:707
#: ../../object/Item.php:601
msgid "This is you"
msgstr "Das bist du"
#: ../../mod/photos.php:1548 ../../mod/photos.php:1592
#: ../../mod/photos.php:1675 ../../mod/content.php:709 ../../boot.php:641
#: ../../object/Item.php:290 ../../object/Item.php:603
msgid "Comment"
msgstr "Kommentar"
#: ../../mod/photos.php:1550 ../../mod/photos.php:1594
#: ../../mod/photos.php:1677 ../../mod/editpost.php:145
#: ../../mod/content.php:719 ../../include/conversation.php:1059
#: ../../object/Item.php:613
msgid "Preview"
msgstr "Vorschau"
#: ../../mod/photos.php:1634 ../../mod/content.php:439
#: ../../mod/content.php:741 ../../mod/settings.php:623
#: ../../mod/group.php:171 ../../mod/admin.php:735
#: ../../include/conversation.php:570 ../../object/Item.php:120
msgid "Delete"
msgstr "Löschen"
#: ../../mod/photos.php:1781
msgid "View Album"
msgstr "Album betrachten"
#: ../../mod/photos.php:1790
msgid "Recent Photos"
msgstr "Neueste Fotos"
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Nicht verfügbar."
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
#: ../../include/nav.php:128
msgid "Community"
msgstr "Gemeinschaft"
#: ../../mod/community.php:61 ../../mod/community.php:86
#: ../../mod/search.php:162 ../../mod/search.php:188
msgid "No results."
msgstr "Keine Ergebnisse."
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr "Dies ist Friendica, Version"
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "die unter folgender Webadresse zu finden ist"
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Probleme oder Fehler gefunden? Bitte besuche"
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr "Installierte Plugins/Erweiterungen/Apps"
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr "Keine Plugins/Erweiterungen/Apps installiert"
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr "Beitrag nicht gefunden"
#: ../../mod/editpost.php:39
msgid "Edit post"
msgstr "Beitrag bearbeiten"
#: ../../mod/editpost.php:109 ../../mod/content.php:728
#: ../../mod/settings.php:622 ../../object/Item.php:110
msgid "Edit"
msgstr "Bearbeiten"
#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
#: ../../mod/message.php:332 ../../mod/message.php:562
#: ../../include/conversation.php:1024
msgid "Upload photo"
msgstr "Foto hochladen"
#: ../../mod/editpost.php:111 ../../include/conversation.php:1025
msgid "upload photo"
msgstr "Bild hochladen"
#: ../../mod/editpost.php:112 ../../include/conversation.php:1026
msgid "Attach file"
msgstr "Datei anhängen"
#: ../../mod/editpost.php:113 ../../include/conversation.php:1027
msgid "attach file"
msgstr "Datei anhängen"
#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
#: ../../mod/message.php:333 ../../mod/message.php:563
#: ../../include/conversation.php:1028
msgid "Insert web link"
msgstr "Einen Link einfügen"
#: ../../mod/editpost.php:115 ../../include/conversation.php:1029
msgid "web link"
msgstr "Weblink"
#: ../../mod/editpost.php:116 ../../include/conversation.php:1030
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: ../../mod/editpost.php:117 ../../include/conversation.php:1031
msgid "video link"
msgstr "Video-Link"
#: ../../mod/editpost.php:118 ../../include/conversation.php:1032
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: ../../mod/editpost.php:119 ../../include/conversation.php:1033
msgid "audio link"
msgstr "Audio-Link"
#: ../../mod/editpost.php:120 ../../include/conversation.php:1034
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: ../../mod/editpost.php:121 ../../include/conversation.php:1035
msgid "set location"
msgstr "Ort setzen"
#: ../../mod/editpost.php:122 ../../include/conversation.php:1036
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: ../../mod/editpost.php:123 ../../include/conversation.php:1037
msgid "clear location"
msgstr "Ort löschen"
#: ../../mod/editpost.php:125 ../../include/conversation.php:1043
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: ../../mod/editpost.php:133 ../../include/conversation.php:1052
msgid "CC: email addresses"
msgstr "Cc: E-Mail-Addressen"
#: ../../mod/editpost.php:134 ../../include/conversation.php:1053
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: ../../mod/editpost.php:137 ../../include/conversation.php:1039
msgid "Set title"
msgstr "Titel setzen"
#: ../../mod/editpost.php:139 ../../include/conversation.php:1041
msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)"
#: ../../mod/editpost.php:140 ../../include/conversation.php:1055
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
@ -967,14 +7859,6 @@ msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
msgid "Invalid profile URL."
msgstr "Ungültige Profil-URL."
#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
msgid "Disallowed profile URL."
msgstr "Nicht erlaubte Profil-URL."
#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
msgid "Failed to update contact record."
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
#: ../../mod/dfrn_request.php:592
msgid "Your introduction has been sent."
msgstr "Deine Kontaktanfrage wurde gesendet."
@ -1007,10 +7891,6 @@ msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
msgid "Confirm"
msgstr "Bestätigen"
#: ../../mod/dfrn_request.php:716 ../../include/items.php:3366
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
#: ../../mod/dfrn_request.php:811
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
@ -1051,19 +7931,10 @@ msgstr "Kennt %s dich?"
msgid "Add a personal note:"
msgstr "Eine persönliche Notiz beifügen:"
#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
#: ../../mod/dfrn_request.php:841
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: ../../mod/dfrn_request.php:843
#, php-format
msgid ""
@ -1079,43 +7950,125 @@ msgstr "Adresse deines Profils:"
msgid "Submit Request"
msgstr "Anfrage abschicken"
#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:167
msgid "Account settings"
msgstr "Kontoeinstellungen"
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s folgt %2$s %3$s"
#: ../../mod/uexport.php:14 ../../mod/settings.php:40
msgid "Display settings"
msgstr "Anzeige-Einstellungen"
#: ../../mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "Möchtest du wirklich diese Empfehlung löschen?"
#: ../../mod/uexport.php:20 ../../mod/settings.php:46
msgid "Connector settings"
msgstr "Connector-Einstellungen"
#: ../../mod/suggest.php:72
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
#: ../../mod/uexport.php:25 ../../mod/settings.php:51
msgid "Plugin settings"
msgstr "Plugin-Einstellungen"
#: ../../mod/suggest.php:90
msgid "Ignore/Hide"
msgstr "Ignorieren/Verbergen"
#: ../../mod/uexport.php:30 ../../mod/settings.php:56
msgid "Connected apps"
msgstr "Verbundene Programme"
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr "Personensuche"
#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
msgid "Export personal data"
msgstr "Persönliche Daten exportieren"
#: ../../mod/dirfind.php:60 ../../mod/match.php:65
msgid "No matches"
msgstr "Keine Übereinstimmungen"
#: ../../mod/uexport.php:40 ../../mod/settings.php:66
msgid "Remove account"
msgstr "Konto löschen"
#: ../../mod/display.php:99 ../../mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
#: ../../mod/uexport.php:48 ../../mod/settings.php:74
#: ../../mod/newmember.php:22 ../../mod/admin.php:824 ../../mod/admin.php:1033
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:167
#: ../../addon.old/dav/friendica/layout.fnk.php:225
#: ../../addon.old/mathjax/mathjax.php:36
msgid "Settings"
msgstr "Einstellungen"
#: ../../mod/display.php:177
msgid "Item has been removed."
msgstr "Eintrag wurde entfernt."
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr "Tag entfernt"
#: ../../mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Gegenstands-Tag entfernen"
#: ../../mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Wähle ein Tag zum Entfernen aus: "
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr "Beitrag nicht gefunden"
#: ../../mod/editpost.php:39
msgid "Edit post"
msgstr "Beitrag bearbeiten"
#: ../../mod/events.php:66
msgid "Event title and start time are required."
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
#: ../../mod/events.php:291
msgid "l, F j"
msgstr "l, F j"
#: ../../mod/events.php:313
msgid "Edit event"
msgstr "Veranstaltung bearbeiten"
#: ../../mod/events.php:371
msgid "Create New Event"
msgstr "Neue Veranstaltung erstellen"
#: ../../mod/events.php:446
msgid "hour:minute"
msgstr "Stunde:Minute"
#: ../../mod/events.php:456
msgid "Event details"
msgstr "Veranstaltungsdetails"
#: ../../mod/events.php:457
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
#: ../../mod/events.php:459
msgid "Event Starts:"
msgstr "Veranstaltungsbeginn:"
#: ../../mod/events.php:459 ../../mod/events.php:473
msgid "Required"
msgstr "Benötigt"
#: ../../mod/events.php:462
msgid "Finish date/time is not known or not relevant"
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
#: ../../mod/events.php:464
msgid "Event Finishes:"
msgstr "Veranstaltungsende:"
#: ../../mod/events.php:467
msgid "Adjust for viewer timezone"
msgstr "An Zeitzone des Betrachters anpassen"
#: ../../mod/events.php:469
msgid "Description:"
msgstr "Beschreibung"
#: ../../mod/events.php:473
msgid "Title:"
msgstr "Titel:"
#: ../../mod/events.php:475
msgid "Share this event"
msgstr "Veranstaltung teilen"
#: ../../mod/fbrowser.php:113
msgid "Files"
msgstr "Dateien"
#: ../../mod/uexport.php:72
msgid "Export account"
@ -1138,6 +8091,173 @@ msgid ""
"of your account (photos are not exported)"
msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert)."
#: ../../mod/filer.php:30
msgid "- select -"
msgstr "- auswählen -"
#: ../../mod/uimport.php:64
msgid "Import"
msgstr "Import"
#: ../../mod/uimport.php:66
msgid "Move account"
msgstr "Account umziehen"
#: ../../mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
#: ../../mod/uimport.php:68
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also"
" to inform your friends that you moved here."
msgstr "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."
#: ../../mod/uimport.php:69
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (statusnet/identi.ca) or from Diaspora"
msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
#: ../../mod/uimport.php:70
msgid "Account file"
msgstr "Account Datei"
#: ../../mod/uimport.php:70
msgid ""
"To export your accont, go to \"Settings->Export your porsonal data\" and "
"select \"Export account\""
msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
#: ../../mod/update_community.php:18 ../../mod/update_display.php:22
#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
#: ../../mod/update_profile.php:41
msgid "[Embedded content - reload page to view]"
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr "Kontakt hinzugefügt"
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr "Dies ist Friendica, Version"
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "die unter folgender Webadresse zu finden ist"
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Probleme oder Fehler gefunden? Bitte besuche"
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr "Installierte Plugins/Erweiterungen/Apps"
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr "Keine Plugins/Erweiterungen/Apps installiert"
#: ../../mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Kontaktvorschlag gesendet."
#: ../../mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Kontakte vorschlagen"
#: ../../mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr "Schlage %s einen Kontakt vor"
#: ../../mod/group.php:29
msgid "Group created."
msgstr "Gruppe erstellt."
#: ../../mod/group.php:35
msgid "Could not create group."
msgstr "Konnte die Gruppe nicht erstellen."
#: ../../mod/group.php:47 ../../mod/group.php:140
msgid "Group not found."
msgstr "Gruppe nicht gefunden."
#: ../../mod/group.php:60
msgid "Group name changed."
msgstr "Gruppenname geändert."
#: ../../mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
#: ../../mod/group.php:94 ../../mod/group.php:180
msgid "Group Name: "
msgstr "Gruppenname:"
#: ../../mod/group.php:113
msgid "Group removed."
msgstr "Gruppe entfernt."
#: ../../mod/group.php:115
msgid "Unable to remove group."
msgstr "Konnte die Gruppe nicht entfernen."
#: ../../mod/group.php:179
msgid "Group Editor"
msgstr "Gruppeneditor"
#: ../../mod/group.php:192
msgid "Members"
msgstr "Mitglieder"
#: ../../mod/hcard.php:10
msgid "No profile"
msgstr "Kein Profil"
#: ../../mod/help.php:79
msgid "Help:"
msgstr "Hilfe:"
#: ../../mod/help.php:90 ../../index.php:226
msgid "Not Found"
msgstr "Nicht gefunden"
#: ../../mod/help.php:93 ../../index.php:229
msgid "Page not found."
msgstr "Seite nicht gefunden."
#: ../../mod/viewcontacts.php:39
msgid "No contacts."
msgstr "Keine Kontakte."
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr "Zugriff verweigert."
#: ../../mod/wall_attach.php:69
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Die Datei ist größer als das erlaubte Limit von %d"
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr "Hochladen der Datei fehlgeschlagen."
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr "Friendica-Server für soziale Netzwerke Setup"
@ -1421,3519 +8541,20 @@ msgid ""
"poller."
msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
#: ../../mod/localtime.php:12 ../../include/event.php:11
#: ../../include/bb2diaspora.php:393
msgid "l F d, Y \\@ g:i A"
msgstr "l, d. F Y\\, H:i"
#: ../../mod/localtime.php:24
msgid "Time Conversion"
msgstr "Zeitumrechnung"
#: ../../mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
#: ../../mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC Zeit: %s"
#: ../../mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Aktuelle Zeitzone: %s"
#: ../../mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Umgerechnete lokale Zeit: %s"
#: ../../mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Bitte wähle deine Zeitzone."
#: ../../mod/poke.php:192
msgid "Poke/Prod"
msgstr "Anstupsen etc."
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr "Stupse Leute an oder mache anderes mit ihnen"
#: ../../mod/poke.php:194
msgid "Recipient"
msgstr "Empfänger"
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr "Was willst du mit dem Empfänger machen:"
#: ../../mod/poke.php:198
msgid "Make this post private"
msgstr "Diesen Beitrag privat machen"
#: ../../mod/match.php:12
msgid "Profile Match"
msgstr "Profilübereinstimmungen"
#: ../../mod/match.php:20
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."
#: ../../mod/match.php:57
msgid "is interested in:"
msgstr "ist interessiert an:"
#: ../../mod/match.php:58 ../../mod/suggest.php:88
#: ../../include/contact_widgets.php:9 ../../boot.php:1317
msgid "Connect"
msgstr "Verbinden"
#: ../../mod/match.php:65 ../../mod/dirfind.php:60
msgid "No matches"
msgstr "Keine Übereinstimmungen"
#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
#: ../../mod/lockview.php:48
#: ../../addon/remote_permissions/remote_permissions.php:124
msgid "Visible to:"
msgstr "Sichtbar für:"
#: ../../mod/content.php:119 ../../mod/network.php:596
msgid "No such group"
msgstr "Es gibt keine solche Gruppe"
#: ../../mod/content.php:130 ../../mod/network.php:607
msgid "Group is empty"
msgstr "Gruppe ist leer"
#: ../../mod/content.php:134 ../../mod/network.php:611
msgid "Group: "
msgstr "Gruppe: "
#: ../../mod/content.php:438 ../../mod/content.php:740
#: ../../include/conversation.php:569 ../../object/Item.php:119
msgid "Select"
msgstr "Auswählen"
#: ../../mod/content.php:472 ../../mod/content.php:852
#: ../../mod/content.php:853 ../../include/conversation.php:609
#: ../../object/Item.php:258 ../../object/Item.php:259
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: ../../mod/content.php:482 ../../mod/content.php:864
#: ../../include/conversation.php:629 ../../object/Item.php:272
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: ../../mod/content.php:497 ../../include/conversation.php:644
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
#: ../../mod/content.php:603 ../../object/Item.php:313
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d Kommentar"
msgstr[1] "%d Kommentare"
#: ../../mod/content.php:605 ../../include/text.php:1514
#: ../../object/Item.php:315 ../../object/Item.php:328
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] "Kommentar"
#: ../../mod/content.php:606 ../../addon/page/page.php:77
#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:204 ../../boot.php:642
#: ../../object/Item.php:316 ../../addon.old/page/page.php:77
#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
msgid "show more"
msgstr "mehr anzeigen"
#: ../../mod/content.php:684 ../../object/Item.php:204
msgid "like"
msgstr "mag ich"
#: ../../mod/content.php:685 ../../object/Item.php:205
msgid "dislike"
msgstr "mag ich nicht"
#: ../../mod/content.php:687 ../../object/Item.php:207
msgid "Share this"
msgstr "Weitersagen"
#: ../../mod/content.php:687 ../../object/Item.php:207
msgid "share"
msgstr "Teilen"
#: ../../mod/content.php:711 ../../object/Item.php:605
msgid "Bold"
msgstr "Fett"
#: ../../mod/content.php:712 ../../object/Item.php:606
msgid "Italic"
msgstr "Kursiv"
#: ../../mod/content.php:713 ../../object/Item.php:607
msgid "Underline"
msgstr "Unterstrichen"
#: ../../mod/content.php:714 ../../object/Item.php:608
msgid "Quote"
msgstr "Zitat"
#: ../../mod/content.php:715 ../../object/Item.php:609
msgid "Code"
msgstr "Code"
#: ../../mod/content.php:716 ../../object/Item.php:610
msgid "Image"
msgstr "Bild"
#: ../../mod/content.php:717 ../../object/Item.php:611
msgid "Link"
msgstr "Verweis"
#: ../../mod/content.php:718 ../../object/Item.php:612
msgid "Video"
msgstr "Video"
#: ../../mod/content.php:753 ../../object/Item.php:183
msgid "add star"
msgstr "markieren"
#: ../../mod/content.php:754 ../../object/Item.php:184
msgid "remove star"
msgstr "Markierung entfernen"
#: ../../mod/content.php:755 ../../object/Item.php:185
msgid "toggle star status"
msgstr "Markierung umschalten"
#: ../../mod/content.php:758 ../../object/Item.php:188
msgid "starred"
msgstr "markiert"
#: ../../mod/content.php:759 ../../object/Item.php:193
msgid "add tag"
msgstr "Tag hinzufügen"
#: ../../mod/content.php:763 ../../object/Item.php:123
msgid "save to folder"
msgstr "In Ordner speichern"
#: ../../mod/content.php:854 ../../object/Item.php:260
msgid "to"
msgstr "zu"
#: ../../mod/content.php:855 ../../object/Item.php:262
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
#: ../../mod/content.php:856 ../../object/Item.php:263
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
#: ../../mod/home.php:34 ../../addon/communityhome/communityhome.php:189
#: ../../addon.old/communityhome/communityhome.php:179
#, php-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "Invalid request identifier."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
#: ../../mod/notifications.php:211
msgid "Discard"
msgstr "Verwerfen"
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
#: ../../mod/contacts.php:413
msgid "Ignore"
msgstr "Ignorieren"
#: ../../mod/notifications.php:78
msgid "System"
msgstr "System"
#: ../../mod/notifications.php:83 ../../include/nav.php:140
msgid "Network"
msgstr "Netzwerk"
#: ../../mod/notifications.php:88 ../../mod/network.php:444
msgid "Personal"
msgstr "Persönlich"
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
#: ../../include/nav.php:104 ../../include/nav.php:143
msgid "Home"
msgstr "Pinnwand"
#: ../../mod/notifications.php:98 ../../include/nav.php:149
msgid "Introductions"
msgstr "Kontaktanfragen"
#: ../../mod/notifications.php:103 ../../mod/message.php:182
#: ../../include/nav.php:156
msgid "Messages"
msgstr "Nachrichten"
#: ../../mod/notifications.php:122
msgid "Show Ignored Requests"
msgstr "Zeige ignorierte Anfragen"
#: ../../mod/notifications.php:122
msgid "Hide Ignored Requests"
msgstr "Verberge ignorierte Anfragen"
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
msgid "Notification type: "
msgstr "Benachrichtigungstyp: "
#: ../../mod/notifications.php:150
msgid "Friend Suggestion"
msgstr "Kontaktvorschlag"
#: ../../mod/notifications.php:152
#, php-format
msgid "suggested by %s"
msgstr "vorgeschlagen von %s"
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/contacts.php:419
msgid "Hide this contact from others"
msgstr "Verberge diesen Kontakt vor anderen"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "Post a new friend activity"
msgstr "Neue-Kontakt Nachricht senden"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "if applicable"
msgstr "falls anwendbar"
#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
#: ../../mod/admin.php:733
msgid "Approve"
msgstr "Genehmigen"
#: ../../mod/notifications.php:181
msgid "Claims to be known to you: "
msgstr "Behauptet dich zu kennen: "
#: ../../mod/notifications.php:181
msgid "yes"
msgstr "ja"
#: ../../mod/notifications.php:181
msgid "no"
msgstr "nein"
#: ../../mod/notifications.php:188
msgid "Approve as: "
msgstr "Genehmigen als: "
#: ../../mod/notifications.php:189
msgid "Friend"
msgstr "Freund"
#: ../../mod/notifications.php:190
msgid "Sharer"
msgstr "Teilenden"
#: ../../mod/notifications.php:190
msgid "Fan/Admirer"
msgstr "Fan/Verehrer"
#: ../../mod/notifications.php:196
msgid "Friend/Connect Request"
msgstr "Kontakt-/Freundschaftsanfrage"
#: ../../mod/notifications.php:196
msgid "New Follower"
msgstr "Neuer Bewunderer"
#: ../../mod/notifications.php:217
msgid "No introductions."
msgstr "Keine Kontaktanfragen."
#: ../../mod/notifications.php:220 ../../include/nav.php:150
msgid "Notifications"
msgstr "Benachrichtigungen"
#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
#: ../../mod/notifications.php:469
#, php-format
msgid "%s liked %s's post"
msgstr "%s mag %ss Beitrag"
#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
#: ../../mod/notifications.php:478
#, php-format
msgid "%s disliked %s's post"
msgstr "%s mag %ss Beitrag nicht"
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
#: ../../mod/notifications.php:492
#, php-format
msgid "%s is now friends with %s"
msgstr "%s ist jetzt mit %s befreundet"
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#, php-format
msgid "%s created a new post"
msgstr "%s hat einen neuen Beitrag erstellt"
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
#: ../../mod/notifications.php:501
#, php-format
msgid "%s commented on %s's post"
msgstr "%s hat %ss Beitrag kommentiert"
#: ../../mod/notifications.php:302
msgid "No more network notifications."
msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
#: ../../mod/notifications.php:306
msgid "Network Notifications"
msgstr "Netzwerk Benachrichtigungen"
#: ../../mod/notifications.php:332 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr "Keine weiteren Systembenachrichtigungen."
#: ../../mod/notifications.php:336 ../../mod/notify.php:65
msgid "System Notifications"
msgstr "Systembenachrichtigungen"
#: ../../mod/notifications.php:427
msgid "No more personal notifications."
msgstr "Keine weiteren persönlichen Benachrichtigungen"
#: ../../mod/notifications.php:431
msgid "Personal Notifications"
msgstr "Persönliche Benachrichtigungen"
#: ../../mod/notifications.php:508
msgid "No more home notifications."
msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
#: ../../mod/notifications.php:512
msgid "Home Notifications"
msgstr "Pinnwand Benachrichtigungen"
#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
msgid "Could not access contact record."
msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
#: ../../mod/contacts.php:99
msgid "Could not locate selected profile."
msgstr "Konnte das ausgewählte Profil nicht finden."
#: ../../mod/contacts.php:122
msgid "Contact updated."
msgstr "Kontakt aktualisiert."
#: ../../mod/contacts.php:187
msgid "Contact has been blocked"
msgstr "Kontakt wurde blockiert"
#: ../../mod/contacts.php:187
msgid "Contact has been unblocked"
msgstr "Kontakt wurde wieder freigegeben"
#: ../../mod/contacts.php:201
msgid "Contact has been ignored"
msgstr "Kontakt wurde ignoriert"
#: ../../mod/contacts.php:201
msgid "Contact has been unignored"
msgstr "Kontakt wird nicht mehr ignoriert"
#: ../../mod/contacts.php:220
msgid "Contact has been archived"
msgstr "Kontakt wurde archiviert"
#: ../../mod/contacts.php:220
msgid "Contact has been unarchived"
msgstr "Kontakt wurde aus dem Archiv geholt"
#: ../../mod/contacts.php:244
msgid "Do you really want to delete this contact?"
msgstr "Möchtest du wirklich diesen Kontakt löschen?"
#: ../../mod/contacts.php:263
msgid "Contact has been removed."
msgstr "Kontakt wurde entfernt."
#: ../../mod/contacts.php:301
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du hast mit %s eine beidseitige Freundschaft"
#: ../../mod/contacts.php:305
#, php-format
msgid "You are sharing with %s"
msgstr "Du teilst mit %s"
#: ../../mod/contacts.php:310
#, php-format
msgid "%s is sharing with you"
msgstr "%s teilt mit Dir"
#: ../../mod/contacts.php:327
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
#: ../../mod/contacts.php:330
msgid "Never"
msgstr "Niemals"
#: ../../mod/contacts.php:334
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
#: ../../mod/contacts.php:334
msgid "(Update was not successful)"
msgstr "(Aktualisierung war nicht erfolgreich)"
#: ../../mod/contacts.php:336
msgid "Suggest friends"
msgstr "Kontakte vorschlagen"
#: ../../mod/contacts.php:340
#, php-format
msgid "Network type: %s"
msgstr "Netzwerktyp: %s"
#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gemeinsamer Kontakt"
msgstr[1] "%d gemeinsame Kontakte"
#: ../../mod/contacts.php:348
msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:737
msgid "Unblock"
msgstr "Entsperren"
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:736
msgid "Block"
msgstr "Sperren"
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr "Geblockt-Status ein-/ausschalten"
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
msgid "Unignore"
msgstr "Ignorieren aufheben"
#: ../../mod/contacts.php:362
msgid "Toggle Ignored status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: ../../mod/contacts.php:366
msgid "Unarchive"
msgstr "Aus Archiv zurückholen"
#: ../../mod/contacts.php:366
msgid "Archive"
msgstr "Archivieren"
#: ../../mod/contacts.php:369
msgid "Toggle Archive status"
msgstr "Archiviert-Status ein-/ausschalten"
#: ../../mod/contacts.php:372
msgid "Repair"
msgstr "Reparieren"
#: ../../mod/contacts.php:375
msgid "Advanced Contact Settings"
msgstr "Fortgeschrittene Kontakteinstellungen"
#: ../../mod/contacts.php:381
msgid "Communications lost with this contact!"
msgstr "Verbindungen mit diesem Kontakt verloren!"
#: ../../mod/contacts.php:384
msgid "Contact Editor"
msgstr "Kontakt Editor"
#: ../../mod/contacts.php:387
msgid "Profile Visibility"
msgstr "Profil-Sichtbarkeit"
#: ../../mod/contacts.php:388
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."
#: ../../mod/contacts.php:389
msgid "Contact Information / Notes"
msgstr "Kontakt Informationen / Notizen"
#: ../../mod/contacts.php:390
msgid "Edit contact notes"
msgstr "Notizen zum Kontakt bearbeiten"
#: ../../mod/contacts.php:395 ../../mod/contacts.php:585
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besuche %ss Profil [%s]"
#: ../../mod/contacts.php:396
msgid "Block/Unblock contact"
msgstr "Kontakt blockieren/freischalten"
#: ../../mod/contacts.php:397
msgid "Ignore contact"
msgstr "Ignoriere den Kontakt"
#: ../../mod/contacts.php:398
msgid "Repair URL settings"
msgstr "URL Einstellungen reparieren"
#: ../../mod/contacts.php:399
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
#: ../../mod/contacts.php:401
msgid "Delete contact"
msgstr "Lösche den Kontakt"
#: ../../mod/contacts.php:405
msgid "Last update:"
msgstr "letzte Aktualisierung:"
#: ../../mod/contacts.php:407
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
#: ../../mod/contacts.php:409 ../../mod/admin.php:1213
msgid "Update now"
msgstr "Jetzt aktualisieren"
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr "Derzeit geblockt"
#: ../../mod/contacts.php:417
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
#: ../../mod/contacts.php:418
msgid "Currently archived"
msgstr "Momentan archiviert"
#: ../../mod/contacts.php:419
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
#: ../../mod/contacts.php:470
msgid "Suggestions"
msgstr "Kontaktvorschläge"
#: ../../mod/contacts.php:473
msgid "Suggest potential friends"
msgstr "Freunde vorschlagen"
#: ../../mod/contacts.php:476 ../../mod/group.php:194
msgid "All Contacts"
msgstr "Alle Kontakte"
#: ../../mod/contacts.php:479
msgid "Show all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../mod/contacts.php:482
msgid "Unblocked"
msgstr "Ungeblockt"
#: ../../mod/contacts.php:485
msgid "Only show unblocked contacts"
msgstr "Nur nicht-blockierte Kontakte anzeigen"
#: ../../mod/contacts.php:489
msgid "Blocked"
msgstr "Geblockt"
#: ../../mod/contacts.php:492
msgid "Only show blocked contacts"
msgstr "Nur blockierte Kontakte anzeigen"
#: ../../mod/contacts.php:496
msgid "Ignored"
msgstr "Ignoriert"
#: ../../mod/contacts.php:499
msgid "Only show ignored contacts"
msgstr "Nur ignorierte Kontakte anzeigen"
#: ../../mod/contacts.php:503
msgid "Archived"
msgstr "Archiviert"
#: ../../mod/contacts.php:506
msgid "Only show archived contacts"
msgstr "Nur archivierte Kontakte anzeigen"
#: ../../mod/contacts.php:510
msgid "Hidden"
msgstr "Verborgen"
#: ../../mod/contacts.php:513
msgid "Only show hidden contacts"
msgstr "Nur verborgene Kontakte anzeigen"
#: ../../mod/contacts.php:561
msgid "Mutual Friendship"
msgstr "Beidseitige Freundschaft"
#: ../../mod/contacts.php:565
msgid "is a fan of yours"
msgstr "ist ein Fan von dir"
#: ../../mod/contacts.php:569
msgid "you are a fan of"
msgstr "du bist Fan von"
#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Kontakt bearbeiten"
#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
#: ../../include/nav.php:171
msgid "Contacts"
msgstr "Kontakte"
#: ../../mod/contacts.php:611
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
#: ../../mod/contacts.php:612 ../../mod/directory.php:59
#: ../../addon/forumdirectory/forumdirectory.php:81
msgid "Finding: "
msgstr "Funde: "
#: ../../mod/contacts.php:613 ../../mod/directory.php:61
#: ../../addon/forumdirectory/forumdirectory.php:83
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr "Finde"
#: ../../mod/lostpass.php:17
msgid "No valid account found."
msgstr "Kein gültiges Konto gefunden."
#: ../../mod/lostpass.php:33
msgid "Password reset request issued. Check your email."
msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."
#: ../../mod/lostpass.php:44
#, php-format
msgid "Password reset requested at %s"
msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
#: ../../mod/lostpass.php:66
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
#: ../../mod/lostpass.php:84 ../../boot.php:1051
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
#: ../../mod/lostpass.php:85
msgid "Your password has been reset as requested."
msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
#: ../../mod/lostpass.php:86
msgid "Your new password is"
msgstr "Dein neues Passwort lautet"
#: ../../mod/lostpass.php:87
msgid "Save or copy your new password - and then"
msgstr "Speichere oder kopiere dein neues Passwort - und dann"
#: ../../mod/lostpass.php:88
msgid "click here to login"
msgstr "hier klicken, um dich anzumelden"
#: ../../mod/lostpass.php:89
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast."
#: ../../mod/lostpass.php:107
#, php-format
msgid "Your password has been changed at %s"
msgstr "Auf %s wurde dein Passwort geändert"
#: ../../mod/lostpass.php:122
msgid "Forgot your Password?"
msgstr "Hast du dein Passwort vergessen?"
#: ../../mod/lostpass.php:123
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
#: ../../mod/lostpass.php:124
msgid "Nickname or Email: "
msgstr "Spitzname oder E-Mail:"
#: ../../mod/lostpass.php:125
msgid "Reset"
msgstr "Zurücksetzen"
#: ../../mod/settings.php:35
msgid "Additional features"
msgstr "Zusätzliche Features"
#: ../../mod/settings.php:118
msgid "Missing some important data!"
msgstr "Wichtige Daten fehlen!"
#: ../../mod/settings.php:121 ../../mod/settings.php:586
msgid "Update"
msgstr "Aktualisierungen"
#: ../../mod/settings.php:227
msgid "Failed to connect with email account using the settings provided."
msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
#: ../../mod/settings.php:232
msgid "Email settings updated."
msgstr "E-Mail Einstellungen bearbeitet."
#: ../../mod/settings.php:247
msgid "Features updated"
msgstr "Features aktualisiert"
#: ../../mod/settings.php:307
msgid "Passwords do not match. Password unchanged."
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
#: ../../mod/settings.php:312
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
#: ../../mod/settings.php:323
msgid "Password changed."
msgstr "Passwort ändern."
#: ../../mod/settings.php:325
msgid "Password update failed. Please try again."
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
#: ../../mod/settings.php:390
msgid " Please use a shorter name."
msgstr " Bitte verwende einen kürzeren Namen."
#: ../../mod/settings.php:392
msgid " Name too short."
msgstr " Name ist zu kurz."
#: ../../mod/settings.php:398
msgid " Not valid email."
msgstr " Keine gültige E-Mail."
#: ../../mod/settings.php:400
msgid " Cannot change to that email."
msgstr "Ändern der E-Mail nicht möglich. "
#: ../../mod/settings.php:454
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
#: ../../mod/settings.php:458
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
#: ../../mod/settings.php:488 ../../addon/facebook/facebook.php:497
#: ../../addon/fbpost/fbpost.php:155
#: ../../addon/remote_permissions/remote_permissions.php:205
#: ../../addon/impressum/impressum.php:78
#: ../../addon/openstreetmap/openstreetmap.php:104
#: ../../addon/altpager/altpager.php:107 ../../addon/mathjax/mathjax.php:66
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:550
#: ../../addon.old/facebook/facebook.php:495
#: ../../addon.old/fbpost/fbpost.php:144
#: ../../addon.old/impressum/impressum.php:78
#: ../../addon.old/openstreetmap/openstreetmap.php:80
#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
#: ../../addon.old/twitter/twitter.php:389
msgid "Settings updated."
msgstr "Einstellungen aktualisiert."
#: ../../mod/settings.php:559 ../../mod/settings.php:585
#: ../../mod/settings.php:621
msgid "Add application"
msgstr "Programm hinzufügen"
#: ../../mod/settings.php:563 ../../mod/settings.php:589
#: ../../addon/statusnet/statusnet.php:747
#: ../../addon.old/statusnet/statusnet.php:570
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/settings.php:564 ../../mod/settings.php:590
#: ../../addon/statusnet/statusnet.php:746
#: ../../addon.old/statusnet/statusnet.php:569
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Redirect"
msgstr "Umleiten"
#: ../../mod/settings.php:566 ../../mod/settings.php:592
msgid "Icon url"
msgstr "Icon URL"
#: ../../mod/settings.php:577
msgid "You can't edit this application."
msgstr "Du kannst dieses Programm nicht bearbeiten."
#: ../../mod/settings.php:620
msgid "Connected Apps"
msgstr "Verbundene Programme"
#: ../../mod/settings.php:624
msgid "Client key starts with"
msgstr "Anwenderschlüssel beginnt mit"
#: ../../mod/settings.php:625
msgid "No name"
msgstr "Kein Name"
#: ../../mod/settings.php:626
msgid "Remove authorization"
msgstr "Autorisierung entziehen"
#: ../../mod/settings.php:638
msgid "No Plugin settings configured"
msgstr "Keine Plugin-Einstellungen konfiguriert"
#: ../../mod/settings.php:646 ../../addon/widgets/widgets.php:124
#: ../../addon.old/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr "Plugin-Einstellungen"
#: ../../mod/settings.php:660
msgid "Off"
msgstr "Aus"
#: ../../mod/settings.php:660
msgid "On"
msgstr "An"
#: ../../mod/settings.php:668
msgid "Additional Features"
msgstr "Zusätzliche Features"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "enabled"
msgstr "eingeschaltet"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "disabled"
msgstr "ausgeschaltet"
#: ../../mod/settings.php:682
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:714
msgid "Email access is disabled on this site."
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
#: ../../mod/settings.php:721
msgid "Connector Settings"
msgstr "Verbindungs-Einstellungen"
#: ../../mod/settings.php:726
msgid "Email/Mailbox Setup"
msgstr "E-Mail/Postfach-Einstellungen"
#: ../../mod/settings.php:727
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."
#: ../../mod/settings.php:728
msgid "Last successful email check:"
msgstr "Letzter erfolgreicher E-Mail Check"
#: ../../mod/settings.php:730
msgid "IMAP server name:"
msgstr "IMAP-Server-Name:"
#: ../../mod/settings.php:731
msgid "IMAP port:"
msgstr "IMAP-Port:"
#: ../../mod/settings.php:732
msgid "Security:"
msgstr "Sicherheit:"
#: ../../mod/settings.php:732 ../../mod/settings.php:737
#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
#: ../../addon/dav/common/wdcal_edit.inc.php:191
#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
msgid "None"
msgstr "Keine"
#: ../../mod/settings.php:733
msgid "Email login name:"
msgstr "E-Mail-Login-Name:"
#: ../../mod/settings.php:734
msgid "Email password:"
msgstr "E-Mail-Passwort:"
#: ../../mod/settings.php:735
msgid "Reply-to address:"
msgstr "Reply-to Adresse:"
#: ../../mod/settings.php:736
msgid "Send public posts to all email contacts:"
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
#: ../../mod/settings.php:737
msgid "Action after import:"
msgstr "Aktion nach Import:"
#: ../../mod/settings.php:737
msgid "Mark as seen"
msgstr "Als gelesen markieren"
#: ../../mod/settings.php:737
msgid "Move to folder"
msgstr "In einen Ordner verschieben"
#: ../../mod/settings.php:738
msgid "Move to folder:"
msgstr "In diesen Ordner verschieben:"
#: ../../mod/settings.php:769 ../../mod/admin.php:420
msgid "No special theme for mobile devices"
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
#: ../../mod/settings.php:815 ../../mod/settings.php:826
msgid "Display Theme:"
msgstr "Theme:"
#: ../../mod/settings.php:816
msgid "Mobile Theme:"
msgstr "Mobiles Theme"
#: ../../mod/settings.php:817
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
#: ../../mod/settings.php:817
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimal 10 Sekunden, kein Maximum"
#: ../../mod/settings.php:818
msgid "Number of items to display per page:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
#: ../../mod/settings.php:818
msgid "Maximum of 100 items"
msgstr "Maximal 100 Beiträge"
#: ../../mod/settings.php:819
msgid "Don't show emoticons"
msgstr "Keine Smilies anzeigen"
#: ../../mod/settings.php:895
msgid "Normal Account Page"
msgstr "Normales Konto"
#: ../../mod/settings.php:896
msgid "This account is a normal personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: ../../mod/settings.php:899
msgid "Soapbox Page"
msgstr "Marktschreier-Konto"
#: ../../mod/settings.php:900
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
#: ../../mod/settings.php:903
msgid "Community Forum/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: ../../mod/settings.php:904
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
#: ../../mod/settings.php:907
msgid "Automatic Friend Page"
msgstr "Automatische Freunde Seite"
#: ../../mod/settings.php:908
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
#: ../../mod/settings.php:911
msgid "Private Forum [Experimental]"
msgstr "Privates Forum [Versuchsstadium]"
#: ../../mod/settings.php:912
msgid "Private forum - approved members only"
msgstr "Privates Forum, nur für Mitglieder"
#: ../../mod/settings.php:924
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:924
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
#: ../../mod/settings.php:934
msgid "Publish your default profile in your local site directory?"
msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
#: ../../mod/settings.php:940
msgid "Publish your default profile in the global social directory?"
msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
#: ../../mod/settings.php:948
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
#: ../../mod/settings.php:952
msgid "Hide your profile details from unknown viewers?"
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
#: ../../mod/settings.php:957
msgid "Allow friends to post to your profile page?"
msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
#: ../../mod/settings.php:963
msgid "Allow friends to tag your posts?"
msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
#: ../../mod/settings.php:969
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
#: ../../mod/settings.php:975
msgid "Permit unknown people to send you private mail?"
msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
#: ../../mod/settings.php:983
msgid "Profile is <strong>not published</strong>."
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
msgid "or"
msgstr "oder"
#: ../../mod/settings.php:991
msgid "Your Identity Address is"
msgstr "Die Adresse deines Profils lautet:"
#: ../../mod/settings.php:1002
msgid "Automatically expire posts after this many days:"
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
#: ../../mod/settings.php:1002
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
#: ../../mod/settings.php:1003
msgid "Advanced expiration settings"
msgstr "Erweiterte Verfallseinstellungen"
#: ../../mod/settings.php:1004
msgid "Advanced Expiration"
msgstr "Erweitertes Verfallen"
#: ../../mod/settings.php:1005
msgid "Expire posts:"
msgstr "Beiträge verfallen lassen:"
#: ../../mod/settings.php:1006
msgid "Expire personal notes:"
msgstr "Persönliche Notizen verfallen lassen:"
#: ../../mod/settings.php:1007
msgid "Expire starred posts:"
msgstr "Markierte Beiträge verfallen lassen:"
#: ../../mod/settings.php:1008
msgid "Expire photos:"
msgstr "Fotos verfallen lassen:"
#: ../../mod/settings.php:1009
msgid "Only expire posts by others:"
msgstr "Nur Beiträge anderer verfallen:"
#: ../../mod/settings.php:1035
msgid "Account Settings"
msgstr "Kontoeinstellungen"
#: ../../mod/settings.php:1043
msgid "Password Settings"
msgstr "Passwort-Einstellungen"
#: ../../mod/settings.php:1044
msgid "New Password:"
msgstr "Neues Passwort:"
#: ../../mod/settings.php:1045
msgid "Confirm:"
msgstr "Bestätigen:"
#: ../../mod/settings.php:1045
msgid "Leave password fields blank unless changing"
msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
#: ../../mod/settings.php:1049
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Kompletter Name:"
#: ../../mod/settings.php:1051
msgid "Email Address:"
msgstr "E-Mail-Adresse:"
#: ../../mod/settings.php:1052
msgid "Your Timezone:"
msgstr "Deine Zeitzone:"
#: ../../mod/settings.php:1053
msgid "Default Post Location:"
msgstr "Standardstandort:"
#: ../../mod/settings.php:1054
msgid "Use Browser Location:"
msgstr "Standort des Browsers verwenden:"
#: ../../mod/settings.php:1057
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
#: ../../mod/settings.php:1059
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
msgid "(to prevent spam abuse)"
msgstr "(um SPAM zu vermeiden)"
#: ../../mod/settings.php:1060
msgid "Default Post Permissions"
msgstr "Standard-Zugriffsrechte für Beiträge"
#: ../../mod/settings.php:1061
msgid "(click to open/close)"
msgstr "(klicke zum öffnen/schließen)"
#: ../../mod/settings.php:1072
msgid "Default Private Post"
msgstr "Privater Standardbeitrag"
#: ../../mod/settings.php:1073
msgid "Default Public Post"
msgstr "Öffentlicher Standardbeitrag"
#: ../../mod/settings.php:1077
msgid "Default Permissions for New Posts"
msgstr "Standardberechtigungen für neue Beiträge"
#: ../../mod/settings.php:1089
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
#: ../../mod/settings.php:1092
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
#: ../../mod/settings.php:1093
msgid "By default post a status message when:"
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
#: ../../mod/settings.php:1094
msgid "accepting a friend request"
msgstr " du eine Kontaktanfrage akzeptierst"
#: ../../mod/settings.php:1095
msgid "joining a forum/community"
msgstr " du einem Forum/einer Gemeinschaftsseite beitrittst"
#: ../../mod/settings.php:1096
msgid "making an <em>interesting</em> profile change"
msgstr " du eine <em>interessante</em> Änderung an deinem Profil durchführst"
#: ../../mod/settings.php:1097
msgid "Send a notification email when:"
msgstr "Benachrichtigungs-E-Mail senden wenn:"
#: ../../mod/settings.php:1098
msgid "You receive an introduction"
msgstr " du eine Kontaktanfrage erhältst"
#: ../../mod/settings.php:1099
msgid "Your introductions are confirmed"
msgstr " eine deiner Kontaktanfragen akzeptiert wurde"
#: ../../mod/settings.php:1100
msgid "Someone writes on your profile wall"
msgstr " jemand etwas auf deine Pinnwand schreibt"
#: ../../mod/settings.php:1101
msgid "Someone writes a followup comment"
msgstr " jemand auch einen Kommentar verfasst"
#: ../../mod/settings.php:1102
msgid "You receive a private message"
msgstr " du eine private Nachricht erhältst"
#: ../../mod/settings.php:1103
msgid "You receive a friend suggestion"
msgstr " du eine Empfehlung erhältst"
#: ../../mod/settings.php:1104
msgid "You are tagged in a post"
msgstr " du in einem Beitrag erwähnt wirst"
#: ../../mod/settings.php:1105
msgid "You are poked/prodded/etc. in a post"
msgstr " du von jemandem angestupst oder sonstwie behandelt wirst"
#: ../../mod/settings.php:1108
msgid "Advanced Account/Page Type Settings"
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
#: ../../mod/settings.php:1109
msgid "Change the behaviour of this account for special situations"
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
#: ../../mod/manage.php:106
msgid "Manage Identities and/or Pages"
msgstr "Verwalte Identitäten und/oder Seiten"
#: ../../mod/manage.php:107
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr "Zwischen verschiedenen Identitäten oder Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
#: ../../mod/manage.php:108
msgid "Select an identity to manage: "
msgstr "Wähle eine Identität zum Verwalten: "
#: ../../mod/network.php:181
msgid "Search Results For:"
msgstr "Suchergebnisse für:"
#: ../../mod/network.php:224 ../../mod/search.php:21
msgid "Remove term"
msgstr "Begriff entfernen"
#: ../../mod/network.php:233 ../../mod/search.php:30
#: ../../include/features.php:41
msgid "Saved Searches"
msgstr "Gespeicherte Suchen"
#: ../../mod/network.php:234 ../../include/group.php:275
msgid "add"
msgstr "hinzufügen"
#: ../../mod/network.php:397
msgid "Commented Order"
msgstr "Neueste Kommentare"
#: ../../mod/network.php:400
msgid "Sort by Comment Date"
msgstr "Nach Kommentardatum sortieren"
#: ../../mod/network.php:403
msgid "Posted Order"
msgstr "Neueste Beiträge"
#: ../../mod/network.php:406
msgid "Sort by Post Date"
msgstr "Nach Beitragsdatum sortieren"
#: ../../mod/network.php:447
msgid "Posts that mention or involve you"
msgstr "Beiträge, in denen es um dich geht"
#: ../../mod/network.php:453
msgid "New"
msgstr "Neue"
#: ../../mod/network.php:456
msgid "Activity Stream - by date"
msgstr "Aktivitäten-Stream - nach Datum"
#: ../../mod/network.php:462
msgid "Shared Links"
msgstr "Geteilte Links"
#: ../../mod/network.php:465
msgid "Interesting Links"
msgstr "Interessante Links"
#: ../../mod/network.php:471
msgid "Starred"
msgstr "Markierte"
#: ../../mod/network.php:474
msgid "Favourite Posts"
msgstr "Favorisierte Beiträge"
#: ../../mod/network.php:546
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
#: ../../mod/network.php:549
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
#: ../../mod/network.php:621
msgid "Contact: "
msgstr "Kontakt: "
#: ../../mod/network.php:623
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
#: ../../mod/network.php:628
msgid "Invalid contact."
msgstr "Ungültiger Kontakt."
#: ../../mod/notes.php:44 ../../boot.php:1864
msgid "Personal Notes"
msgstr "Persönliche Notizen"
#: ../../mod/notes.php:63 ../../mod/filer.php:31
#: ../../addon/facebook/facebook.php:772
#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
#: ../../addon/fbpost/fbpost.php:322
#: ../../addon/dav/friendica/layout.fnk.php:441
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:741
#: ../../addon.old/facebook/facebook.php:770
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
#: ../../addon.old/fbpost/fbpost.php:267
#: ../../addon.old/dav/friendica/layout.fnk.php:441
#: ../../addon.old/dav/friendica/layout.fnk.php:488
msgid "Save"
msgstr "Speichern"
#: ../../mod/uimport.php:50 ../../mod/register.php:192
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
#: ../../mod/uimport.php:64
msgid "Import"
msgstr "Import"
#: ../../mod/uimport.php:66
msgid "Move account"
msgstr "Account umziehen"
#: ../../mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
#: ../../mod/uimport.php:68
msgid ""
"You need to export your account from the old server and upload it here. We "
"will recreate your old account here with all your contacts. We will try also"
" to inform your friends that you moved here."
msgstr "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."
#: ../../mod/uimport.php:69
msgid ""
"This feature is experimental. We can't import contacts from the OStatus "
"network (statusnet/identi.ca) or from Diaspora"
msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
#: ../../mod/uimport.php:70
msgid "Account file"
msgstr "Account Datei"
#: ../../mod/uimport.php:70
msgid ""
"To export your accont, go to \"Settings->Export your porsonal data\" and "
"select \"Export account\""
msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
msgid "No recipient selected."
msgstr "Kein Empfänger gewählt."
#: ../../mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Konnte deinen Heimatort nicht bestimmen."
#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
msgid "Message could not be sent."
msgstr "Nachricht konnte nicht gesendet werden."
#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
msgid "Message collection failure."
msgstr "Konnte Nachrichten nicht abrufen."
#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
msgid "Message sent."
msgstr "Nachricht gesendet."
#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
msgid "No recipient."
msgstr "Kein Empfänger."
#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
#: ../../mod/message.php:283 ../../mod/message.php:291
#: ../../mod/message.php:466 ../../mod/message.php:474
#: ../../include/conversation.php:940 ../../include/conversation.php:958
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
msgid "Send Private Message"
msgstr "Private Nachricht senden"
#: ../../mod/wallmessage.php:143
#, php-format
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
#: ../../mod/message.php:553
msgid "To:"
msgstr "An:"
#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
#: ../../mod/message.php:555
msgid "Subject:"
msgstr "Betreff:"
#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
#: ../../mod/message.php:558 ../../mod/invite.php:134
msgid "Your message:"
msgstr "Deine Nachricht:"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Willkommen bei Friendica"
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Checkliste für neue Mitglieder"
#: ../../mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr "Einstieg"
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr "Friendica Rundgang"
#: ../../mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr "Gehe zu deinen Einstellungen"
#: ../../mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
#: ../../mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
#: ../../include/profile_advanced.php:84 ../../include/nav.php:77
#: ../../boot.php:1840
msgid "Profile"
msgstr "Profil"
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
msgstr "Profilbild hochladen"
#: ../../mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr "Editiere dein Profil"
#: ../../mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr "Profil Schlüsselbegriffe"
#: ../../mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr "Verbindungen knüpfen"
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
#: ../../addon/facebook/facebook.php:730 ../../addon/fbpost/fbpost.php:294
#: ../../include/contact_selectors.php:81
#: ../../addon.old/facebook/facebook.php:728
#: ../../addon.old/fbpost/fbpost.php:239
msgid "Facebook"
msgstr "Facebook"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr "Emails Importieren"
#: ../../mod/newmember.php:56
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr "Gehe zu deiner Kontakt-Seite"
#: ../../mod/newmember.php:58
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog."
msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
#: ../../mod/newmember.php:60
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr "Neue Leute kennenlernen"
#: ../../mod/newmember.php:62
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
#: ../../mod/newmember.php:66 ../../include/group.php:270
msgid "Groups"
msgstr "Gruppen"
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr "Gruppiere deine Kontakte"
#: ../../mod/newmember.php:70
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr "Warum sind meine Beiträge nicht öffentlich?"
#: ../../mod/newmember.php:73
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr "Hilfe bekommen"
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr "Zum Hilfe Abschnitt gehen"
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
#: ../../mod/attach.php:8
msgid "Item not available."
msgstr "Beitrag nicht verfügbar."
#: ../../mod/attach.php:20
msgid "Item was not found."
msgstr "Beitrag konnte nicht gefunden werden."
#: ../../mod/group.php:29
msgid "Group created."
msgstr "Gruppe erstellt."
#: ../../mod/group.php:35
msgid "Could not create group."
msgstr "Konnte die Gruppe nicht erstellen."
#: ../../mod/group.php:47 ../../mod/group.php:140
msgid "Group not found."
msgstr "Gruppe nicht gefunden."
#: ../../mod/group.php:60
msgid "Group name changed."
msgstr "Gruppenname geändert."
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:340
msgid "Permission denied"
msgstr "Zugriff verweigert"
#: ../../mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
#: ../../mod/group.php:94 ../../mod/group.php:180
msgid "Group Name: "
msgstr "Gruppenname:"
#: ../../mod/group.php:113
msgid "Group removed."
msgstr "Gruppe entfernt."
#: ../../mod/group.php:115
msgid "Unable to remove group."
msgstr "Konnte die Gruppe nicht entfernen."
#: ../../mod/group.php:179
msgid "Group Editor"
msgstr "Gruppeneditor"
#: ../../mod/group.php:192
msgid "Members"
msgstr "Mitglieder"
#: ../../mod/group.php:224 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove."
msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier."
msgstr "Ungültiger Profil-Bezeichner"
#: ../../mod/profperm.php:101
msgid "Profile Visibility Editor"
msgstr "Editor für die Profil-Sichtbarkeit"
#: ../../mod/profperm.php:114
msgid "Visible To"
msgstr "Sichtbar für"
#: ../../mod/profperm.php:130
msgid "All Contacts (with secure profile access)"
msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
#: ../../mod/viewcontacts.php:39
msgid "No contacts."
msgstr "Keine Kontakte."
#: ../../mod/viewcontacts.php:76 ../../include/text.php:678
msgid "View Contacts"
msgstr "Kontakte anzeigen"
#: ../../mod/register.php:91 ../../mod/regmod.php:54
#, php-format
msgid "Registration details for %s"
msgstr "Details der Registration von %s"
#: ../../mod/register.php:99
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
#: ../../mod/register.php:103
msgid "Failed to send email message. Here is the message that failed."
msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
#: ../../mod/register.php:108
msgid "Your registration can not be processed."
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
#: ../../mod/register.php:145
#, php-format
msgid "Registration request at %s"
msgstr "Registrierungsanfrage auf %s"
#: ../../mod/register.php:154
msgid "Your registration is pending approval by the site owner."
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
#: ../../mod/register.php:220
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
#: ../../mod/register.php:221
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
#: ../../mod/register.php:222
msgid "Your OpenID (optional): "
msgstr "Deine OpenID (optional): "
#: ../../mod/register.php:236
msgid "Include your profile in member directory?"
msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
#: ../../mod/register.php:257
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
#: ../../mod/register.php:258
msgid "Your invitation ID: "
msgstr "ID deiner Einladung: "
#: ../../mod/register.php:261 ../../mod/admin.php:462
msgid "Registration"
msgstr "Registrierung"
#: ../../mod/register.php:269
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Vollständiger Name (z.B. Max Mustermann): "
#: ../../mod/register.php:270
msgid "Your Email Address: "
msgstr "Deine E-Mail-Adresse: "
#: ../../mod/register.php:271
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
#: ../../mod/register.php:272
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
#: ../../mod/register.php:275 ../../include/nav.php:108 ../../boot.php:1012
msgid "Register"
msgstr "Registrieren"
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr "Personensuche"
#: ../../mod/like.php:151 ../../mod/subthread.php:87 ../../mod/tagger.php:62
#: ../../addon/communityhome/communityhome.php:171
#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1510
#: ../../include/diaspora.php:1860 ../../include/conversation.php:126
#: ../../include/conversation.php:254
#: ../../addon.old/communityhome/communityhome.php:163
msgid "photo"
msgstr "Foto"
#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87
#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1600
#: ../../addon/communityhome/communityhome.php:166
#: ../../addon/communityhome/communityhome.php:175
#: ../../view/theme/diabook/theme.php:459
#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1860
#: ../../include/conversation.php:121 ../../include/conversation.php:130
#: ../../include/conversation.php:249 ../../include/conversation.php:258
#: ../../addon.old/facebook/facebook.php:1598
#: ../../addon.old/communityhome/communityhome.php:158
#: ../../addon.old/communityhome/communityhome.php:167
msgid "status"
msgstr "Status"
#: ../../mod/like.php:168 ../../addon/facebook/facebook.php:1604
#: ../../addon/communityhome/communityhome.php:180
#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1876
#: ../../include/conversation.php:137
#: ../../addon.old/facebook/facebook.php:1602
#: ../../addon.old/communityhome/communityhome.php:172
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s"
#: ../../mod/like.php:170 ../../include/conversation.php:140
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s nicht"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:773 ../../mod/admin.php:972 ../../mod/display.php:51
#: ../../mod/display.php:184 ../../include/items.php:3853
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr "Zugriff verweigert."
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
#: ../../include/nav.php:78 ../../boot.php:1847
msgid "Photos"
msgstr "Bilder"
#: ../../mod/fbrowser.php:113
msgid "Files"
msgstr "Dateien"
#: ../../mod/regmod.php:63
msgid "Account approved."
msgstr "Konto freigegeben."
#: ../../mod/regmod.php:100
#, php-format
msgid "Registration revoked for %s"
msgstr "Registrierung für %s wurde zurückgezogen"
#: ../../mod/regmod.php:112
msgid "Please login."
msgstr "Bitte melde dich an."
#: ../../mod/item.php:104
msgid "Unable to locate original post."
msgstr "Konnte den Originalbeitrag nicht finden."
#: ../../mod/item.php:292
msgid "Empty post discarded."
msgstr "Leerer Beitrag wurde verworfen."
#: ../../mod/item.php:428 ../../mod/wall_upload.php:135
#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr "Pinnwand-Bilder"
#: ../../mod/item.php:841
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
#: ../../mod/item.php:866
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
#: ../../mod/item.php:868
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kannst sie online unter %s besuchen"
#: ../../mod/item.php:869
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
#: ../../mod/item.php:871
#, php-format
msgid "%s posted an update."
msgstr "%s hat ein Update veröffentlicht."
#: ../../mod/mood.php:62 ../../include/conversation.php:227
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s ist momentan %2$s"
#: ../../mod/mood.php:133
msgid "Mood"
msgstr "Stimmung"
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
#: ../../mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen."
#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Verkleinern der Bildgröße von [%s] ist gescheitert."
#: ../../mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
#: ../../mod/profile_photo.php:128
msgid "Unable to process image"
msgstr "Bild konnte nicht verarbeitet werden"
#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "Bildgröße überschreitet das Limit von %d"
#: ../../mod/profile_photo.php:242
msgid "Upload File:"
msgstr "Datei hochladen:"
#: ../../mod/profile_photo.php:243
msgid "Select a profile:"
msgstr "Profil auswählen"
#: ../../mod/profile_photo.php:245
#: ../../addon/dav/friendica/layout.fnk.php:152
#: ../../addon.old/dav/friendica/layout.fnk.php:152
msgid "Upload"
msgstr "Hochladen"
#: ../../mod/profile_photo.php:248
msgid "skip this step"
msgstr "diesen Schritt überspringen"
#: ../../mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr "wähle ein Foto von deinen Fotoalben"
#: ../../mod/profile_photo.php:262
msgid "Crop Image"
msgstr "Bild zurechtschneiden"
#: ../../mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
#: ../../mod/profile_photo.php:265
msgid "Done Editing"
msgstr "Bearbeitung abgeschlossen"
#: ../../mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr "Bild erfolgreich auf den Server geladen."
#: ../../mod/hcard.php:10
msgid "No profile"
msgstr "Kein Profil"
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr "Konto löschen"
#: ../../mod/removeme.php:46
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr "Bitte gib dein Passwort zur Verifikation ein:"
#: ../../mod/navigation.php:20 ../../include/nav.php:34
msgid "Nothing new here"
msgstr "Keine Neuigkeiten."
#: ../../mod/navigation.php:24 ../../include/nav.php:38
msgid "Clear notifications"
msgstr "Bereinige Benachrichtigungen"
#: ../../mod/message.php:9 ../../include/nav.php:159
msgid "New Message"
msgstr "Neue Nachricht"
#: ../../mod/message.php:67
msgid "Unable to locate contact information."
msgstr "Konnte die Kontaktinformationen nicht finden."
#: ../../mod/message.php:207
msgid "Do you really want to delete this message?"
msgstr "Möchtest du wirklich diese Nachricht löschen?"
#: ../../mod/message.php:227
msgid "Message deleted."
msgstr "Nachricht gelöscht."
#: ../../mod/message.php:258
msgid "Conversation removed."
msgstr "Unterhaltung gelöscht."
#: ../../mod/message.php:371
msgid "No messages."
msgstr "Keine Nachrichten."
#: ../../mod/message.php:378
#, php-format
msgid "Unknown sender - %s"
msgstr "'Unbekannter Absender - %s"
#: ../../mod/message.php:381
#, php-format
msgid "You and %s"
msgstr "Du und %s"
#: ../../mod/message.php:384
#, php-format
msgid "%s and You"
msgstr "%s und du"
#: ../../mod/message.php:405 ../../mod/message.php:546
msgid "Delete conversation"
msgstr "Unterhaltung löschen"
#: ../../mod/message.php:408
msgid "D, d M Y - g:i A"
msgstr "D, d. M Y - g:i A"
#: ../../mod/message.php:411
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d Nachricht"
msgstr[1] "%d Nachrichten"
#: ../../mod/message.php:450
msgid "Message not available."
msgstr "Nachricht nicht verfügbar."
#: ../../mod/message.php:520
msgid "Delete message"
msgstr "Nachricht löschen"
#: ../../mod/message.php:548
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
#: ../../mod/message.php:552
msgid "Send Reply"
msgstr "Antwort senden"
#: ../../mod/allfriends.php:34
#, php-format
msgid "Friends of %s"
msgstr "Freunde von %s"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr "Keine Freunde zum Anzeigen."
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr "Themeneinstellungen aktualisiert."
#: ../../mod/admin.php:96 ../../mod/admin.php:460
msgid "Site"
msgstr "Seite"
#: ../../mod/admin.php:97 ../../mod/admin.php:727 ../../mod/admin.php:740
msgid "Users"
msgstr "Nutzer"
#: ../../mod/admin.php:98 ../../mod/admin.php:822 ../../mod/admin.php:864
msgid "Plugins"
msgstr "Plugins"
#: ../../mod/admin.php:99 ../../mod/admin.php:1031 ../../mod/admin.php:1067
msgid "Themes"
msgstr "Themen"
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr "DB Updates"
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1154
msgid "Logs"
msgstr "Protokolle"
#: ../../mod/admin.php:120 ../../include/nav.php:178
msgid "Admin"
msgstr "Administration"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr "Plugin Features"
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
#: ../../mod/admin.php:183 ../../mod/admin.php:698
msgid "Normal Account"
msgstr "Normales Konto"
#: ../../mod/admin.php:184 ../../mod/admin.php:699
msgid "Soapbox Account"
msgstr "Marktschreier-Konto"
#: ../../mod/admin.php:185 ../../mod/admin.php:700
msgid "Community/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: ../../mod/admin.php:186 ../../mod/admin.php:701
msgid "Automatic Friend Account"
msgstr "Automatisches Freundekonto"
#: ../../mod/admin.php:187
msgid "Blog Account"
msgstr "Blog Account"
#: ../../mod/admin.php:188
msgid "Private Forum"
msgstr "Privates Forum"
#: ../../mod/admin.php:207
msgid "Message queues"
msgstr "Nachrichten-Warteschlangen"
#: ../../mod/admin.php:212 ../../mod/admin.php:459 ../../mod/admin.php:726
#: ../../mod/admin.php:821 ../../mod/admin.php:863 ../../mod/admin.php:1030
#: ../../mod/admin.php:1066 ../../mod/admin.php:1153
msgid "Administration"
msgstr "Administration"
#: ../../mod/admin.php:213
msgid "Summary"
msgstr "Zusammenfassung"
#: ../../mod/admin.php:215
msgid "Registered users"
msgstr "Registrierte Nutzer"
#: ../../mod/admin.php:217
msgid "Pending registrations"
msgstr "Anstehende Anmeldungen"
#: ../../mod/admin.php:218
msgid "Version"
msgstr "Version"
#: ../../mod/admin.php:220
msgid "Active plugins"
msgstr "Aktive Plugins"
#: ../../mod/admin.php:391
msgid "Site settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: ../../mod/admin.php:446
msgid "Closed"
msgstr "Geschlossen"
#: ../../mod/admin.php:447
msgid "Requires approval"
msgstr "Bedarf der Zustimmung"
#: ../../mod/admin.php:448
msgid "Open"
msgstr "Offen"
#: ../../mod/admin.php:452
msgid "No SSL policy, links will track page SSL state"
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
#: ../../mod/admin.php:453
msgid "Force all links to use SSL"
msgstr "SSL für alle Links erzwingen"
#: ../../mod/admin.php:454
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
#: ../../mod/admin.php:463
msgid "File upload"
msgstr "Datei hochladen"
#: ../../mod/admin.php:464
msgid "Policies"
msgstr "Regeln"
#: ../../mod/admin.php:465
msgid "Advanced"
msgstr "Erweitert"
#: ../../mod/admin.php:466
msgid "Performance"
msgstr "Performance"
#: ../../mod/admin.php:470 ../../addon/statusnet/statusnet.php:744
#: ../../addon.old/statusnet/statusnet.php:567
msgid "Site name"
msgstr "Seitenname"
#: ../../mod/admin.php:471
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: ../../mod/admin.php:472
msgid "System language"
msgstr "Systemsprache"
#: ../../mod/admin.php:473
msgid "System theme"
msgstr "Systemweites Thema"
#: ../../mod/admin.php:473
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
#: ../../mod/admin.php:474
msgid "Mobile system theme"
msgstr "Systemweites mobiles Thema"
#: ../../mod/admin.php:474
msgid "Theme for mobile devices"
msgstr "Thema für mobile Geräte"
#: ../../mod/admin.php:475
msgid "SSL link policy"
msgstr "Regeln für SSL Links"
#: ../../mod/admin.php:475
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
#: ../../mod/admin.php:476
msgid "'Share' element"
msgstr "'Teilen' Element"
#: ../../mod/admin.php:476
msgid "Activates the bbcode element 'share' for repeating items."
msgstr "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen."
#: ../../mod/admin.php:477
msgid "Maximum image size"
msgstr "Maximale Größe von Bildern"
#: ../../mod/admin.php:477
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
#: ../../mod/admin.php:478
msgid "Maximum image length"
msgstr "Maximale Länge von Bildern"
#: ../../mod/admin.php:478
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
#: ../../mod/admin.php:479
msgid "JPEG image quality"
msgstr "Qualität des JPEG Bildes"
#: ../../mod/admin.php:479
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
#: ../../mod/admin.php:481
msgid "Register policy"
msgstr "Registrierungsmethode"
#: ../../mod/admin.php:482
msgid "Maximum Daily Registrations"
msgstr "Maximum täglicher Neuanmeldungen"
#: ../../mod/admin.php:482
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
#: ../../mod/admin.php:483
msgid "Register text"
msgstr "Registrierungstext"
#: ../../mod/admin.php:483
msgid "Will be displayed prominently on the registration page."
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
#: ../../mod/admin.php:484
msgid "Accounts abandoned after x days"
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
#: ../../mod/admin.php:484
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
#: ../../mod/admin.php:485
msgid "Allowed friend domains"
msgstr "Erlaubte Domains für Kontakte"
#: ../../mod/admin.php:485
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: ../../mod/admin.php:486
msgid "Allowed email domains"
msgstr "Erlaubte Domains für E-Mails"
#: ../../mod/admin.php:486
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: ../../mod/admin.php:487
msgid "Block public"
msgstr "Öffentlichen Zugriff blockieren"
#: ../../mod/admin.php:487
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
#: ../../mod/admin.php:488
msgid "Force publish"
msgstr "Erzwinge Veröffentlichung"
#: ../../mod/admin.php:488
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
#: ../../mod/admin.php:489
msgid "Global directory update URL"
msgstr "URL für Updates beim weltweiten Verzeichnis"
#: ../../mod/admin.php:489
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
#: ../../mod/admin.php:490
msgid "Allow threaded items"
msgstr "Erlaube Threads in Diskussionen"
#: ../../mod/admin.php:490
msgid "Allow infinite level threading for items on this site."
msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
#: ../../mod/admin.php:491
msgid "Private posts by default for new users"
msgstr "Private Beiträge als Standard für neue Nutzer"
#: ../../mod/admin.php:491
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
#: ../../mod/admin.php:493
msgid "Block multiple registrations"
msgstr "Unterbinde Mehrfachregistrierung"
#: ../../mod/admin.php:493
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
#: ../../mod/admin.php:494
msgid "OpenID support"
msgstr "OpenID Unterstützung"
#: ../../mod/admin.php:494
msgid "OpenID support for registration and logins."
msgstr "OpenID-Unterstützung für Registrierung und Login."
#: ../../mod/admin.php:495
msgid "Fullname check"
msgstr "Namen auf Vollständigkeit überprüfen"
#: ../../mod/admin.php:495
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
#: ../../mod/admin.php:496
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 Reguläre Ausdrücke"
#: ../../mod/admin.php:496
msgid "Use PHP UTF8 regular expressions"
msgstr "PHP UTF8 Ausdrücke verwenden"
#: ../../mod/admin.php:497
msgid "Show Community Page"
msgstr "Gemeinschaftsseite anzeigen"
#: ../../mod/admin.php:497
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
#: ../../mod/admin.php:498
msgid "Enable OStatus support"
msgstr "OStatus Unterstützung aktivieren"
#: ../../mod/admin.php:498
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
#: ../../mod/admin.php:499
msgid "Enable Diaspora support"
msgstr "Diaspora-Support aktivieren"
#: ../../mod/admin.php:499
msgid "Provide built-in Diaspora network compatibility."
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
#: ../../mod/admin.php:500
msgid "Only allow Friendica contacts"
msgstr "Nur Friendica-Kontakte erlauben"
#: ../../mod/admin.php:500
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
#: ../../mod/admin.php:501
msgid "Verify SSL"
msgstr "SSL Überprüfen"
#: ../../mod/admin.php:501
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
#: ../../mod/admin.php:502
msgid "Proxy user"
msgstr "Proxy Nutzer"
#: ../../mod/admin.php:503
msgid "Proxy URL"
msgstr "Proxy URL"
#: ../../mod/admin.php:504
msgid "Network timeout"
msgstr "Netzwerk Wartezeit"
#: ../../mod/admin.php:504
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
#: ../../mod/admin.php:505
msgid "Delivery interval"
msgstr "Zustellungsintervall"
#: ../../mod/admin.php:505
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
#: ../../mod/admin.php:506
msgid "Poll interval"
msgstr "Abfrageintervall"
#: ../../mod/admin.php:506
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
#: ../../mod/admin.php:507
msgid "Maximum Load Average"
msgstr "Maximum Load Average"
#: ../../mod/admin.php:507
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
#: ../../mod/admin.php:509
msgid "Use MySQL full text engine"
msgstr "Nutze MySQL full text engine"
#: ../../mod/admin.php:509
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
#: ../../mod/admin.php:510
msgid "Path to item cache"
msgstr "Pfad zum Eintrag Cache"
#: ../../mod/admin.php:511
msgid "Cache duration in seconds"
msgstr "Cache-Dauer in Sekunden"
#: ../../mod/admin.php:511
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day)."
msgstr "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag)."
#: ../../mod/admin.php:512
msgid "Path for lock file"
msgstr "Pfad für die Sperrdatei"
#: ../../mod/admin.php:513
msgid "Temp path"
msgstr "Temp Pfad"
#: ../../mod/admin.php:514
msgid "Base path to installation"
msgstr "Basis-Pfad zur Installation"
#: ../../mod/admin.php:532
msgid "Update has been marked successful"
msgstr "Update wurde als erfolgreich markiert"
#: ../../mod/admin.php:542
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
#: ../../mod/admin.php:545
#, php-format
msgid "Update %s was successfully applied."
msgstr "Update %s war erfolgreich."
#: ../../mod/admin.php:549
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
#: ../../mod/admin.php:552
#, php-format
msgid "Update function %s could not be found."
msgstr "Updatefunktion %s konnte nicht gefunden werden."
#: ../../mod/admin.php:567
msgid "No failed updates."
msgstr "Keine fehlgeschlagenen Updates."
#: ../../mod/admin.php:571
msgid "Failed Updates"
msgstr "Fehlgeschlagene Updates"
#: ../../mod/admin.php:572
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
#: ../../mod/admin.php:573
msgid "Mark success (if update was manually applied)"
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
#: ../../mod/admin.php:574
msgid "Attempt to execute this update step automatically"
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
#: ../../mod/admin.php:599
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s Benutzer geblockt/freigegeben"
msgstr[1] "%s Benutzer geblockt/freigegeben"
#: ../../mod/admin.php:606
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s Nutzer gelöscht"
msgstr[1] "%s Nutzer gelöscht"
#: ../../mod/admin.php:645
#, php-format
msgid "User '%s' deleted"
msgstr "Nutzer '%s' gelöscht"
#: ../../mod/admin.php:653
#, php-format
msgid "User '%s' unblocked"
msgstr "Nutzer '%s' entsperrt"
#: ../../mod/admin.php:653
#, php-format
msgid "User '%s' blocked"
msgstr "Nutzer '%s' gesperrt"
#: ../../mod/admin.php:729
msgid "select all"
msgstr "Alle auswählen"
#: ../../mod/admin.php:730
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
#: ../../mod/admin.php:731
msgid "Request date"
msgstr "Anfragedatum"
#: ../../mod/admin.php:731 ../../mod/admin.php:741
#: ../../include/contact_selectors.php:79
#: ../../include/contact_selectors.php:86
msgid "Email"
msgstr "E-Mail"
#: ../../mod/admin.php:732
msgid "No registrations."
msgstr "Keine Neuanmeldungen."
#: ../../mod/admin.php:734
msgid "Deny"
msgstr "Verwehren"
#: ../../mod/admin.php:738
msgid "Site admin"
msgstr "Seitenadministrator"
#: ../../mod/admin.php:741
msgid "Register date"
msgstr "Anmeldedatum"
#: ../../mod/admin.php:741
msgid "Last login"
msgstr "Letzte Anmeldung"
#: ../../mod/admin.php:741
msgid "Last item"
msgstr "Letzter Beitrag"
#: ../../mod/admin.php:741
msgid "Account"
msgstr "Nutzerkonto"
#: ../../mod/admin.php:743
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
#: ../../mod/admin.php:744
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
#: ../../mod/admin.php:785
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s deaktiviert."
#: ../../mod/admin.php:789
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s aktiviert."
#: ../../mod/admin.php:799 ../../mod/admin.php:1001
msgid "Disable"
msgstr "Ausschalten"
#: ../../mod/admin.php:801 ../../mod/admin.php:1003
msgid "Enable"
msgstr "Einschalten"
#: ../../mod/admin.php:823 ../../mod/admin.php:1032
msgid "Toggle"
msgstr "Umschalten"
#: ../../mod/admin.php:831 ../../mod/admin.php:1042
msgid "Author: "
msgstr "Autor:"
#: ../../mod/admin.php:832 ../../mod/admin.php:1043
msgid "Maintainer: "
msgstr "Betreuer:"
#: ../../mod/admin.php:961
msgid "No themes found."
msgstr "Keine Themen gefunden."
#: ../../mod/admin.php:1024
msgid "Screenshot"
msgstr "Bildschirmfoto"
#: ../../mod/admin.php:1072
msgid "[Experimental]"
msgstr "[Experimentell]"
#: ../../mod/admin.php:1073
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
#: ../../mod/admin.php:1100
msgid "Log settings updated."
msgstr "Protokolleinstellungen aktualisiert."
#: ../../mod/admin.php:1156
msgid "Clear"
msgstr "löschen"
#: ../../mod/admin.php:1162
msgid "Debugging"
msgstr "Protokoll führen"
#: ../../mod/admin.php:1163
msgid "Log file"
msgstr "Protokolldatei"
#: ../../mod/admin.php:1163
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
#: ../../mod/admin.php:1164
msgid "Log level"
msgstr "Protokoll-Level"
#: ../../mod/admin.php:1214
msgid "Close"
msgstr "Schließen"
#: ../../mod/admin.php:1220
msgid "FTP Host"
msgstr "FTP Host"
#: ../../mod/admin.php:1221
msgid "FTP Path"
msgstr "FTP Pfad"
#: ../../mod/admin.php:1222
msgid "FTP User"
msgstr "FTP Nutzername"
#: ../../mod/admin.php:1223
msgid "FTP Password"
msgstr "FTP Passwort"
#: ../../mod/profile.php:21 ../../boot.php:1225
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: ../../mod/profile.php:155 ../../mod/display.php:99
msgid "Access to this profile has been restricted."
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
#: ../../mod/profile.php:180
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr "{0} möchte mit dir in Kontakt treten"
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr "{0} hat dir eine Nachricht geschickt"
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
#: ../../mod/ping.php:254
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} kommentierte einen Beitrag von %s"
#: ../../mod/ping.php:259
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} mag %ss Beitrag"
#: ../../mod/ping.php:264
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} mag %ss Beitrag nicht"
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} ist jetzt mit %s befreundet"
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr "{0} hat etwas veröffentlicht"
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr "{0} hat dich in einem Beitrag erwähnt"
#: ../../mod/nogroup.php:59
msgid "Contacts who are not members of a group"
msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
#: ../../mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
#: ../../mod/openid.php:53
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet."
#: ../../mod/openid.php:93 ../../include/auth.php:112
#: ../../include/auth.php:175
msgid "Login failed."
msgstr "Anmeldung fehlgeschlagen."
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr "Kontakt hinzugefügt"
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr "Gemeinsame Freunde"
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr "Keine gemeinsamen Kontakte."
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s folgt %2$s %3$s"
#: ../../mod/share.php:44
msgid "link"
msgstr "Link"
#: ../../mod/display.php:177
msgid "Item has been removed."
msgstr "Eintrag wurde entfernt."
#: ../../mod/apps.php:4
msgid "Applications"
msgstr "Anwendungen"
#: ../../mod/apps.php:7
msgid "No installed applications."
msgstr "Keine Applikationen installiert."
#: ../../mod/search.php:99 ../../include/text.php:738
#: ../../include/text.php:739 ../../include/nav.php:118
msgid "Search"
msgstr "Suche"
#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
#: ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Profil nicht gefunden."
#: ../../mod/profiles.php:37
msgid "Profile deleted."
msgstr "Profil gelöscht."
#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
msgid "Profile-"
msgstr "Profil-"
#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
msgid "New profile created."
msgstr "Neues Profil angelegt."
#: ../../mod/profiles.php:95
msgid "Profile unavailable to clone."
msgstr "Profil nicht zum Duplizieren verfügbar."
#: ../../mod/profiles.php:170
msgid "Profile Name is required."
msgstr "Profilname ist erforderlich."
#: ../../mod/profiles.php:317
msgid "Marital Status"
msgstr "Familienstand"
#: ../../mod/profiles.php:321
msgid "Romantic Partner"
msgstr "Romanze"
#: ../../mod/profiles.php:325
msgid "Likes"
msgstr "Likes"
#: ../../mod/profiles.php:329
msgid "Dislikes"
msgstr "Dislikes"
#: ../../mod/profiles.php:333
msgid "Work/Employment"
msgstr "Arbeit / Beschäftigung"
#: ../../mod/profiles.php:336
msgid "Religion"
msgstr "Religion"
#: ../../mod/profiles.php:340
msgid "Political Views"
msgstr "Politische Ansichten"
#: ../../mod/profiles.php:344
msgid "Gender"
msgstr "Geschlecht"
#: ../../mod/profiles.php:348
msgid "Sexual Preference"
msgstr "Sexuelle Vorlieben"
#: ../../mod/profiles.php:352
msgid "Homepage"
msgstr "Webseite"
#: ../../mod/profiles.php:356
msgid "Interests"
msgstr "Interessen"
#: ../../mod/profiles.php:360
msgid "Address"
msgstr "Adresse"
#: ../../mod/profiles.php:367 ../../addon/dav/common/wdcal_edit.inc.php:183
#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
msgid "Location"
msgstr "Wohnort"
#: ../../mod/profiles.php:450
msgid "Profile updated."
msgstr "Profil aktualisiert."
#: ../../mod/profiles.php:517
msgid " and "
msgstr " und "
#: ../../mod/profiles.php:525
msgid "public profile"
msgstr "öffentliches Profil"
#: ../../mod/profiles.php:528
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
#: ../../mod/profiles.php:529
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr " %1$ss %2$s besuchen"
#: ../../mod/profiles.php:532
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
#: ../../mod/profiles.php:605
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
#: ../../mod/profiles.php:625
msgid "Edit Profile Details"
msgstr "Profil bearbeiten"
#: ../../mod/profiles.php:627
msgid "Change Profile Photo"
msgstr "Profilbild ändern"
#: ../../mod/profiles.php:628
msgid "View this profile"
msgstr "Dieses Profil anzeigen"
#: ../../mod/profiles.php:629
msgid "Create a new profile using these settings"
msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
#: ../../mod/profiles.php:630
msgid "Clone this profile"
msgstr "Dieses Profil duplizieren"
#: ../../mod/profiles.php:631
msgid "Delete this profile"
msgstr "Dieses Profil löschen"
#: ../../mod/profiles.php:632
msgid "Profile Name:"
msgstr "Profilname:"
#: ../../mod/profiles.php:633
msgid "Your Full Name:"
msgstr "Dein kompletter Name:"
#: ../../mod/profiles.php:634
msgid "Title/Description:"
msgstr "Titel/Beschreibung:"
#: ../../mod/profiles.php:635
msgid "Your Gender:"
msgstr "Dein Geschlecht:"
#: ../../mod/profiles.php:636
#, php-format
msgid "Birthday (%s):"
msgstr "Geburtstag (%s):"
#: ../../mod/profiles.php:637
msgid "Street Address:"
msgstr "Adresse:"
#: ../../mod/profiles.php:638
msgid "Locality/City:"
msgstr "Wohnort:"
#: ../../mod/profiles.php:639
msgid "Postal/Zip Code:"
msgstr "Postleitzahl:"
#: ../../mod/profiles.php:640
msgid "Country:"
msgstr "Land:"
#: ../../mod/profiles.php:641
msgid "Region/State:"
msgstr "Region/Bundesstaat:"
#: ../../mod/profiles.php:642
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
#: ../../mod/profiles.php:643
msgid "Who: (if applicable)"
msgstr "Wer: (falls anwendbar)"
#: ../../mod/profiles.php:644
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
#: ../../mod/profiles.php:645
msgid "Since [date]:"
msgstr "Seit [Datum]:"
#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46
msgid "Sexual Preference:"
msgstr "Sexuelle Vorlieben:"
#: ../../mod/profiles.php:647
msgid "Homepage URL:"
msgstr "Adresse der Homepage:"
#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50
msgid "Hometown:"
msgstr "Heimatort:"
#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54
msgid "Political Views:"
msgstr "Politische Ansichten:"
#: ../../mod/profiles.php:650
msgid "Religious Views:"
msgstr "Religiöse Ansichten:"
#: ../../mod/profiles.php:651
msgid "Public Keywords:"
msgstr "Öffentliche Schlüsselwörter:"
#: ../../mod/profiles.php:652
msgid "Private Keywords:"
msgstr "Private Schlüsselwörter:"
#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62
msgid "Likes:"
msgstr "Likes:"
#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64
msgid "Dislikes:"
msgstr "Dislikes:"
#: ../../mod/profiles.php:655
msgid "Example: fishing photography software"
msgstr "Beispiel: Fischen Fotografie Software"
#: ../../mod/profiles.php:656
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)"
#: ../../mod/profiles.php:657
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
#: ../../mod/profiles.php:658
msgid "Tell us about yourself..."
msgstr "Erzähle uns ein bisschen von dir …"
#: ../../mod/profiles.php:659
msgid "Hobbies/Interests"
msgstr "Hobbies/Interessen"
#: ../../mod/profiles.php:660
msgid "Contact information and Social Networks"
msgstr "Kontaktinformationen und Soziale Netzwerke"
#: ../../mod/profiles.php:661
msgid "Musical interests"
msgstr "Musikalische Interessen"
#: ../../mod/profiles.php:662
msgid "Books, literature"
msgstr "Literatur/Bücher"
#: ../../mod/profiles.php:663
msgid "Television"
msgstr "Fernsehen"
#: ../../mod/profiles.php:664
msgid "Film/dance/culture/entertainment"
msgstr "Filme/Tänze/Kultur/Unterhaltung"
#: ../../mod/profiles.php:665
msgid "Love/romance"
msgstr "Liebesleben"
#: ../../mod/profiles.php:666
msgid "Work/employment"
msgstr "Arbeit/Beschäftigung"
#: ../../mod/profiles.php:667
msgid "School/education"
msgstr "Schule/Ausbildung"
#: ../../mod/profiles.php:672
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
#: ../../addon/forumdirectory/forumdirectory.php:133
msgid "Age: "
msgstr "Alter: "
#: ../../mod/profiles.php:721
msgid "Edit/Manage Profiles"
msgstr "Verwalte/Editiere Profile"
#: ../../mod/profiles.php:722 ../../boot.php:1345
msgid "Change profile photo"
msgstr "Profilbild ändern"
#: ../../mod/profiles.php:723 ../../boot.php:1346
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
#: ../../mod/profiles.php:734 ../../boot.php:1356
msgid "Profile Image"
msgstr "Profilbild"
#: ../../mod/profiles.php:736 ../../boot.php:1359
msgid "visible to everybody"
msgstr "sichtbar für jeden"
#: ../../mod/profiles.php:737 ../../boot.php:1360
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: ../../mod/filer.php:30 ../../include/conversation.php:944
#: ../../include/conversation.php:962
msgid "Save to Folder:"
msgstr "In diesen Ordner verschieben:"
#: ../../mod/filer.php:30
msgid "- select -"
msgstr "- auswählen -"
#: ../../mod/tagger.php:95 ../../include/conversation.php:266
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
#: ../../mod/delegate.php:121 ../../include/nav.php:165
msgid "Delegate Page Management"
msgstr "Delegiere das Management für die Seite"
#: ../../mod/delegate.php:123
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr "Vorhandene Seiten Manager"
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr "Vorhandene Bevollmächtigte für die Seite"
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr "Potentielle Bevollmächtigte"
#: ../../mod/delegate.php:131
msgid "Add"
msgstr "Hinzufügen"
#: ../../mod/delegate.php:132
msgid "No entries."
msgstr "Keine Einträge"
#: ../../mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr "Quelle (bbcode) Text:"
#: ../../mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:"
#: ../../mod/babel.php:31
msgid "Source input: "
msgstr "Originaltext:"
#: ../../mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr "bb2html (reines HTML): "
#: ../../mod/babel.php:39
msgid "bb2html: "
msgstr "bb2html: "
#: ../../mod/babel.php:43
msgid "bb2html2bb: "
msgstr "bb2html2bb: "
#: ../../mod/babel.php:47
msgid "bb2md: "
msgstr "bb2md: "
#: ../../mod/babel.php:51
msgid "bb2md2html: "
msgstr "bb2md2html: "
#: ../../mod/babel.php:55
msgid "bb2dia2bb: "
msgstr "bb2dia2bb: "
#: ../../mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr "bb2md2html2bb: "
#: ../../mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr "Texteingabe (Diaspora Format): "
#: ../../mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: ../../mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "Möchtest du wirklich diese Empfehlung löschen?"
#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr "Kontaktvorschläge"
#: ../../mod/suggest.php:72
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
#: ../../mod/suggest.php:90
msgid "Ignore/Hide"
msgstr "Ignorieren/Verbergen"
#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
#: ../../view/theme/diabook/theme.php:518
msgid "Global Directory"
msgstr "Weltweites Verzeichnis"
#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
msgid "Find on this site"
msgstr "Auf diesem Server suchen"
#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
msgid "Site Directory"
msgstr "Verzeichnis"
#: ../../mod/directory.php:114
#: ../../addon/forumdirectory/forumdirectory.php:136
msgid "Gender: "
msgstr "Geschlecht:"
#: ../../mod/directory.php:136
#: ../../addon/forumdirectory/forumdirectory.php:158
#: ../../include/profile_advanced.php:17 ../../boot.php:1381
msgid "Gender:"
msgstr "Geschlecht:"
#: ../../mod/directory.php:138
#: ../../addon/forumdirectory/forumdirectory.php:160
#: ../../include/profile_advanced.php:37 ../../boot.php:1384
msgid "Status:"
msgstr "Status:"
#: ../../mod/directory.php:140
#: ../../addon/forumdirectory/forumdirectory.php:162
#: ../../include/profile_advanced.php:48 ../../boot.php:1386
msgid "Homepage:"
msgstr "Homepage:"
#: ../../mod/directory.php:142
#: ../../addon/forumdirectory/forumdirectory.php:164
#: ../../include/profile_advanced.php:58
msgid "About:"
msgstr "Über:"
#: ../../mod/directory.php:187
#: ../../addon/forumdirectory/forumdirectory.php:201
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
#: ../../mod/profile_photo.php:153
msgid "Unable to process image."
msgstr "Konnte das Bild nicht bearbeiten."
#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
#: ../../mod/profile_photo.php:301
msgid "Image upload failed."
msgstr "Hochladen des Bildes gescheitert."
#: ../../mod/invite.php:27
msgid "Total invitation limit exceeded."
@ -5006,6 +8627,11 @@ msgstr "Einladungen senden"
msgid "Enter email addresses, one per line:"
msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
#: ../../mod/message.php:329 ../../mod/message.php:558
msgid "Your message:"
msgstr "Deine Nachricht:"
#: ../../mod/invite.php:135
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
@ -5027,2890 +8653,1052 @@ msgid ""
"important, please visit http://friendica.com"
msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
#: ../../mod/dfrn_confirm.php:119
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
#: ../../mod/dfrn_confirm.php:237
msgid "Response from remote site was not understood."
msgstr "Antwort der Gegenstelle unverständlich."
#: ../../mod/dfrn_confirm.php:246
msgid "Unexpected response from remote site: "
msgstr "Unerwartete Antwort der Gegenstelle: "
#: ../../mod/dfrn_confirm.php:254
msgid "Confirmation completed successfully."
msgstr "Bestätigung erfolgreich abgeschlossen."
#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
#: ../../mod/dfrn_confirm.php:277
msgid "Remote site reported: "
msgstr "Gegenstelle meldet: "
#: ../../mod/dfrn_confirm.php:268
msgid "Temporary failure. Please wait and try again."
msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
#: ../../mod/dfrn_confirm.php:275
msgid "Introduction failed or was revoked."
msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
#: ../../mod/dfrn_confirm.php:420
msgid "Unable to set contact photo."
msgstr "Konnte das Bild des Kontakts nicht speichern."
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
#: ../../include/conversation.php:172
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ist nun mit %2$s befreundet"
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
#: ../../mod/dfrn_confirm.php:562
#, php-format
msgid "No user record found for '%s' "
msgstr "Für '%s' wurde kein Nutzer gefunden"
#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
msgid "No recipient selected."
msgstr "Kein Empfänger gewählt."
#: ../../mod/dfrn_confirm.php:572
msgid "Our site encryption key is apparently messed up."
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
#: ../../mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Konnte deinen Heimatort nicht bestimmen."
#: ../../mod/dfrn_confirm.php:583
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
msgid "Message could not be sent."
msgstr "Nachricht konnte nicht gesendet werden."
#: ../../mod/dfrn_confirm.php:604
msgid "Contact record was not found for you on our site."
msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
msgid "Message collection failure."
msgstr "Konnte Nachrichten nicht abrufen."
#: ../../mod/dfrn_confirm.php:618
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
msgid "Message sent."
msgstr "Nachricht gesendet."
#: ../../mod/dfrn_confirm.php:638
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
msgid "No recipient."
msgstr "Kein Empfänger."
#: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system."
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
msgid "Send Private Message"
msgstr "Private Nachricht senden"
#: ../../mod/dfrn_confirm.php:716
msgid "Unable to update your contact profile details on our system"
msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
#: ../../mod/dfrn_confirm.php:751
#, php-format
msgid "Connection accepted at %s"
msgstr "Auf %s wurde die Verbindung akzeptiert"
#: ../../mod/dfrn_confirm.php:800
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s ist %2$s beigetreten"
#: ../../addon/fromgplus/fromgplus.php:33
#: ../../addon.old/fromgplus/fromgplus.php:29
msgid "Google+ Import Settings"
msgstr "Google+ Import Einstellungen"
#: ../../addon/fromgplus/fromgplus.php:36
#: ../../addon.old/fromgplus/fromgplus.php:32
msgid "Enable Google+ Import"
msgstr "Aktiviere Google+ Import"
#: ../../addon/fromgplus/fromgplus.php:39
#: ../../addon.old/fromgplus/fromgplus.php:35
msgid "Google Account ID"
msgstr "Google Account ID"
#: ../../addon/fromgplus/fromgplus.php:59
#: ../../addon.old/fromgplus/fromgplus.php:55
msgid "Google+ Import Settings saved."
msgstr "Google+ Import Einstellungen gespeichert."
#: ../../addon/facebook/facebook.php:525
#: ../../addon.old/facebook/facebook.php:523
msgid "Facebook disabled"
msgstr "Facebook deaktiviert"
#: ../../addon/facebook/facebook.php:530
#: ../../addon.old/facebook/facebook.php:528
msgid "Updating contacts"
msgstr "Aktualisiere Kontakte"
#: ../../addon/facebook/facebook.php:553 ../../addon/fbpost/fbpost.php:203
#: ../../addon.old/facebook/facebook.php:551
#: ../../addon.old/fbpost/fbpost.php:192
msgid "Facebook API key is missing."
msgstr "Facebook-API-Schlüssel nicht gefunden"
#: ../../addon/facebook/facebook.php:560
#: ../../addon.old/facebook/facebook.php:558
msgid "Facebook Connect"
msgstr "Mit Facebook verbinden"
#: ../../addon/facebook/facebook.php:566
#: ../../addon.old/facebook/facebook.php:564
msgid "Install Facebook connector for this account."
msgstr "Facebook-Connector für dieses Konto installieren."
#: ../../addon/facebook/facebook.php:573
#: ../../addon.old/facebook/facebook.php:571
msgid "Remove Facebook connector"
msgstr "Facebook-Connector entfernen"
#: ../../addon/facebook/facebook.php:578 ../../addon/fbpost/fbpost.php:228
#: ../../addon.old/facebook/facebook.php:576
#: ../../addon.old/fbpost/fbpost.php:217
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr "Neu authentifizieren [Das ist immer dann nötig, wenn du dein Facebook-Passwort geändert hast.]"
#: ../../addon/facebook/facebook.php:585 ../../addon/fbpost/fbpost.php:235
#: ../../addon.old/facebook/facebook.php:583
#: ../../addon.old/fbpost/fbpost.php:224
msgid "Post to Facebook by default"
msgstr "Veröffentliche standardmäßig bei Facebook"
#: ../../addon/facebook/facebook.php:591
#: ../../addon.old/facebook/facebook.php:589
msgid ""
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt."
#: ../../addon/facebook/facebook.php:595
#: ../../addon.old/facebook/facebook.php:593
msgid ""
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren."
#: ../../addon/facebook/facebook.php:598
#: ../../addon.old/facebook/facebook.php:596
msgid "Link all your Facebook friends and conversations on this website"
msgstr "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren"
#: ../../addon/facebook/facebook.php:600
#: ../../addon.old/facebook/facebook.php:598
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend"
" <em>stream</em>."
msgstr "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>."
#: ../../addon/facebook/facebook.php:601
#: ../../addon.old/facebook/facebook.php:599
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen."
#: ../../addon/facebook/facebook.php:602
#: ../../addon.old/facebook/facebook.php:600
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr "Mit den folgenden Einstellungen kannst du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen."
#: ../../addon/facebook/facebook.php:606
#: ../../addon.old/facebook/facebook.php:604
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen"
#: ../../addon/facebook/facebook.php:611
#: ../../addon.old/facebook/facebook.php:609
msgid "Do not import your Facebook profile wall conversations"
msgstr "Facebook-Pinnwand nicht importieren"
#: ../../addon/facebook/facebook.php:613
#: ../../addon.old/facebook/facebook.php:611
msgid ""
"If you choose to link conversations and leave both of these boxes unchecked,"
" your Facebook profile wall will be merged with your profile wall on this "
"website and your privacy settings on this website will be used to determine "
"who may see the conversations."
msgstr "Wenn du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann."
#: ../../addon/facebook/facebook.php:618
#: ../../addon.old/facebook/facebook.php:616
msgid "Comma separated applications to ignore"
msgstr "Kommaseparierte Anwendungen, die ignoriert werden sollen"
#: ../../addon/facebook/facebook.php:702
#: ../../addon.old/facebook/facebook.php:700
msgid "Problems with Facebook Real-Time Updates"
msgstr "Probleme mit Facebook Echtzeit-Updates"
#: ../../addon/facebook/facebook.php:704
#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67
#: ../../addon.old/facebook/facebook.php:702
#: ../../addon.old/facebook/facebook.php:1200
#: ../../addon.old/fbpost/fbpost.php:661
#: ../../addon.old/public_server/public_server.php:62
#: ../../addon.old/testdrive/testdrive.php:67
msgid "Administrator"
msgstr "Administrator"
#: ../../addon/facebook/facebook.php:731
#: ../../addon.old/facebook/facebook.php:729
msgid "Facebook Connector Settings"
msgstr "Facebook-Verbindungseinstellungen"
#: ../../addon/facebook/facebook.php:746 ../../addon/fbpost/fbpost.php:310
#: ../../addon.old/facebook/facebook.php:744
#: ../../addon.old/fbpost/fbpost.php:255
msgid "Facebook API Key"
msgstr "Facebook API Schlüssel"
#: ../../addon/facebook/facebook.php:756 ../../addon/fbpost/fbpost.php:317
#: ../../addon.old/facebook/facebook.php:754
#: ../../addon.old/fbpost/fbpost.php:262
msgid ""
"Error: it appears that you have specified the App-ID and -Secret in your "
".htconfig.php file. As long as they are specified there, they cannot be set "
"using this form.<br><br>"
msgstr "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.<br><br>"
#: ../../addon/facebook/facebook.php:761
#: ../../addon.old/facebook/facebook.php:759
msgid ""
"Error: the given API Key seems to be incorrect (the application access token"
" could not be retrieved)."
msgstr "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden)."
#: ../../addon/facebook/facebook.php:763
#: ../../addon.old/facebook/facebook.php:761
msgid "The given API Key seems to work correctly."
msgstr "Der angegebene API Schlüssel scheint korrekt zu funktionieren."
#: ../../addon/facebook/facebook.php:765
#: ../../addon.old/facebook/facebook.php:763
msgid ""
"The correctness of the API Key could not be detected. Something strange's "
"going on."
msgstr "Die Richtigkeit des API Schlüssels konnte nicht gefunden werden. Irgendwas stimmt nicht."
#: ../../addon/facebook/facebook.php:768 ../../addon/fbpost/fbpost.php:319
#: ../../addon.old/facebook/facebook.php:766
#: ../../addon.old/fbpost/fbpost.php:264
msgid "App-ID / API-Key"
msgstr "App-ID / API-Key"
#: ../../addon/facebook/facebook.php:769 ../../addon/fbpost/fbpost.php:320
#: ../../addon.old/facebook/facebook.php:767
#: ../../addon.old/fbpost/fbpost.php:265
msgid "Application secret"
msgstr "Anwendungs-Geheimnis"
#: ../../addon/facebook/facebook.php:770
#: ../../addon.old/facebook/facebook.php:768
#, php-format
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr "Abfrageintervall in Minuten (min %1$s Minuten)"
#: ../../addon/facebook/facebook.php:771
#: ../../addon.old/facebook/facebook.php:769
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr "Kommentare synchronisieren (Kein Kommentar von Facebook geht verloren, verursacht höhere Last auf dem Server)"
#: ../../addon/facebook/facebook.php:775
#: ../../addon.old/facebook/facebook.php:773
msgid "Real-Time Updates"
msgstr "Echtzeit Aktualisierungen"
#: ../../addon/facebook/facebook.php:779
#: ../../addon.old/facebook/facebook.php:777
msgid "Real-Time Updates are activated."
msgstr "Echtzeit-Updates sind aktiviert."
#: ../../addon/facebook/facebook.php:780
#: ../../addon.old/facebook/facebook.php:778
msgid "Deactivate Real-Time Updates"
msgstr "Echtzeit-Updates deaktivieren"
#: ../../addon/facebook/facebook.php:782
#: ../../addon.old/facebook/facebook.php:780
msgid "Real-Time Updates not activated."
msgstr "Echtzeit-Updates nicht aktiviert."
#: ../../addon/facebook/facebook.php:782
#: ../../addon.old/facebook/facebook.php:780
msgid "Activate Real-Time Updates"
msgstr "Echtzeit-Updates aktivieren"
#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
#: ../../addon/dav/friendica/layout.fnk.php:361
#: ../../addon.old/facebook/facebook.php:799
#: ../../addon.old/fbpost/fbpost.php:282
#: ../../addon.old/dav/friendica/layout.fnk.php:361
msgid "The new values have been saved."
msgstr "Die neuen Einstellungen wurden gespeichert."
#: ../../addon/facebook/facebook.php:825 ../../addon/fbpost/fbpost.php:356
#: ../../addon.old/facebook/facebook.php:823
#: ../../addon.old/fbpost/fbpost.php:301
msgid "Post to Facebook"
msgstr "Bei Facebook veröffentlichen"
#: ../../addon/facebook/facebook.php:923 ../../addon/fbpost/fbpost.php:487
#: ../../addon.old/facebook/facebook.php:921
#: ../../addon.old/fbpost/fbpost.php:399
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen."
#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
#: ../../addon.old/facebook/facebook.php:1149
#: ../../addon.old/fbpost/fbpost.php:610
msgid "View on Friendica"
msgstr "In Friendica betrachten"
#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
#: ../../addon.old/facebook/facebook.php:1182
#: ../../addon.old/fbpost/fbpost.php:643
msgid "Facebook post failed. Queued for retry."
msgstr "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut."
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
#: ../../addon.old/facebook/facebook.php:1222
#: ../../addon.old/fbpost/fbpost.php:683
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich."
#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
#: ../../addon.old/facebook/facebook.php:1223
#: ../../addon.old/fbpost/fbpost.php:684
msgid "Facebook connection became invalid"
msgstr "Facebook Anmeldedaten sind ungültig geworden"
#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
#: ../../addon.old/facebook/facebook.php:1224
#: ../../addon.old/fbpost/fbpost.php:685
#: ../../mod/wallmessage.php:143
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr "Hallo %1$s,\n\ndie Verbindung zwischen deinem Account auf %2$s und Facebook funktioniert derzeit nicht. Dies ist normalerweise das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du %3$sden Facebook-Connector neu authentifizieren%4$s."
#: ../../addon/snautofollow/snautofollow.php:32
#: ../../addon.old/snautofollow/snautofollow.php:32
msgid "StatusNet AutoFollow settings updated."
msgstr "StatusNet AutoFollow Einstellungen aktualisiert."
#: ../../addon/snautofollow/snautofollow.php:56
#: ../../addon.old/snautofollow/snautofollow.php:56
msgid "StatusNet AutoFollow Settings"
msgstr "StatusNet AutoFollow Einstellungen"
#: ../../addon/snautofollow/snautofollow.php:58
#: ../../addon.old/snautofollow/snautofollow.php:58
msgid "Automatically follow any StatusNet followers/mentioners"
msgstr "Automatisch allen StatusNet Followern/Erwähnungen folgen"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
msgid "Lifetime of the cache (in hours)"
msgstr "Lebenszeit des Caches (in Stunden)"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
msgid "Cache Statistics"
msgstr "Cache Statistik"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
msgid "Number of items"
msgstr "Anzahl der Einträge"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
msgid "Size of the cache"
msgstr "Größe des Caches"
#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
msgid "Delete the whole cache"
msgstr "Cache leeren"
#: ../../addon/fbpost/fbpost.php:183 ../../addon.old/fbpost/fbpost.php:172
msgid "Facebook Post disabled"
msgstr "Nach Facebook senden deaktiviert"
#: ../../addon/fbpost/fbpost.php:210 ../../addon.old/fbpost/fbpost.php:199
msgid "Facebook Post"
msgstr "Facebook Relai"
#: ../../addon/fbpost/fbpost.php:216 ../../addon.old/fbpost/fbpost.php:205
msgid "Install Facebook Post connector for this account."
msgstr "Facebook-Connector für dieses Konto installieren."
#: ../../addon/fbpost/fbpost.php:223 ../../addon.old/fbpost/fbpost.php:212
msgid "Remove Facebook Post connector"
msgstr "Facebook-Connector entfernen"
#: ../../addon/fbpost/fbpost.php:239
msgid "Suppress \"View on friendica\""
msgstr "Unterdrücke \"Auf Friendica Ansehen\""
#: ../../addon/fbpost/fbpost.php:243
msgid "Mirror wall posts from facebook to friendica."
msgstr "Spiegle Pinnwandeinträge von Facebook auf friendica"
#: ../../addon/fbpost/fbpost.php:253
msgid "Post to page/group:"
msgstr "Auf FB Seite/Gruppe veröffentlichen"
#: ../../addon/fbpost/fbpost.php:295 ../../addon.old/fbpost/fbpost.php:240
msgid "Facebook Post Settings"
msgstr "Facebook-Beitragseinstellungen"
#: ../../addon/fbpost/fbpost.php:375
#, php-format
msgid "%s:"
msgstr "%s:"
#: ../../addon/widgets/widget_like.php:59
#: ../../addon.old/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
msgid_plural "%d people like this"
msgstr[0] "%d Person mag das"
msgstr[1] "%d Leute mögen das"
#: ../../addon/widgets/widget_like.php:62
#: ../../addon.old/widgets/widget_like.php:61
#, php-format
msgid "%d person doesn't like this"
msgid_plural "%d people don't like this"
msgstr[0] " %d Person mag das nicht"
msgstr[1] "%d Leute mögen das nicht"
#: ../../addon/widgets/widget_friendheader.php:40
#: ../../addon.old/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr "Werde Mitglied dieser Liste"
#: ../../addon/widgets/widgets.php:57 ../../addon.old/widgets/widgets.php:56
msgid "Generate new key"
msgstr "Neuen Schlüssel erstellen"
#: ../../addon/widgets/widgets.php:60 ../../addon.old/widgets/widgets.php:59
msgid "Widgets key"
msgstr "Widgets Schlüssel"
#: ../../addon/widgets/widgets.php:62 ../../addon.old/widgets/widgets.php:61
msgid "Widgets available"
msgstr "Verfügbare Widgets"
#: ../../addon/widgets/widget_friends.php:40
#: ../../addon.old/widgets/widget_friends.php:40
msgid "Connect on Friendica!"
msgstr "In Friendica verbinden!"
#: ../../addon/morepokes/morepokes.php:19
#: ../../addon.old/morepokes/morepokes.php:19
msgid "bitchslap"
msgstr "abwatschen"
#: ../../addon/morepokes/morepokes.php:19
#: ../../addon.old/morepokes/morepokes.php:19
msgid "bitchslapped"
msgstr "watschte"
#: ../../addon/morepokes/morepokes.php:20
#: ../../addon.old/morepokes/morepokes.php:20
msgid "shag"
msgstr "poppen"
#: ../../addon/morepokes/morepokes.php:20
#: ../../addon.old/morepokes/morepokes.php:20
msgid "shagged"
msgstr "poppte"
#: ../../addon/morepokes/morepokes.php:21
#: ../../addon.old/morepokes/morepokes.php:21
msgid "do something obscenely biological to"
msgstr "mit ihm/ihr etwas obszönes Körperliches machen"
#: ../../addon/morepokes/morepokes.php:21
#: ../../addon.old/morepokes/morepokes.php:21
msgid "did something obscenely biological to"
msgstr "machte etwas obszönes Körperliches mit"
#: ../../addon/morepokes/morepokes.php:22
#: ../../addon.old/morepokes/morepokes.php:22
msgid "point out the poke feature to"
msgstr "zeigte die neue Anstups-Funktion"
#: ../../addon/morepokes/morepokes.php:22
#: ../../addon.old/morepokes/morepokes.php:22
msgid "pointed out the poke feature to"
msgstr "zeigte die neue Anstups-Funktion"
#: ../../addon/morepokes/morepokes.php:23
#: ../../addon.old/morepokes/morepokes.php:23
msgid "declare undying love for"
msgstr "unterbliche Liebe verkünden"
#: ../../addon/morepokes/morepokes.php:23
#: ../../addon.old/morepokes/morepokes.php:23
msgid "declared undying love for"
msgstr "verkündete unsterbliche Liebe für"
#: ../../addon/morepokes/morepokes.php:24
#: ../../addon.old/morepokes/morepokes.php:24
msgid "patent"
msgstr "patentieren"
#: ../../addon/morepokes/morepokes.php:24
#: ../../addon.old/morepokes/morepokes.php:24
msgid "patented"
msgstr "patentierte"
#: ../../addon/morepokes/morepokes.php:25
#: ../../addon.old/morepokes/morepokes.php:25
msgid "stroke beard"
msgstr "sich den Bart kratzen"
#: ../../addon/morepokes/morepokes.php:25
#: ../../addon.old/morepokes/morepokes.php:25
msgid "stroked their beard at"
msgstr "kratzte sich den Bart in Richtung"
#: ../../addon/morepokes/morepokes.php:26
#: ../../addon.old/morepokes/morepokes.php:26
msgid ""
"bemoan the declining standards of modern secondary and tertiary education to"
msgstr "sich über die sinkenden Standards der Schul- und Hochschulbildung beklagen"
#: ../../addon/morepokes/morepokes.php:26
#: ../../addon.old/morepokes/morepokes.php:26
msgid ""
"bemoans the declining standards of modern secondary and tertiary education "
"to"
msgstr "beklagte sich über die sinkenden Standards der Schul- und Hochschulbildung bei"
#: ../../addon/morepokes/morepokes.php:27
#: ../../addon.old/morepokes/morepokes.php:27
msgid "hug"
msgstr "umarmen"
#: ../../addon/morepokes/morepokes.php:27
#: ../../addon.old/morepokes/morepokes.php:27
msgid "hugged"
msgstr "umarmte"
#: ../../addon/morepokes/morepokes.php:28
#: ../../addon.old/morepokes/morepokes.php:28
msgid "kiss"
msgstr "küssen"
#: ../../addon/morepokes/morepokes.php:28
#: ../../addon.old/morepokes/morepokes.php:28
msgid "kissed"
msgstr "küsste"
#: ../../addon/morepokes/morepokes.php:29
#: ../../addon.old/morepokes/morepokes.php:29
msgid "raise eyebrows at"
msgstr "Augenbrauen hochziehen"
#: ../../addon/morepokes/morepokes.php:29
#: ../../addon.old/morepokes/morepokes.php:29
msgid "raised their eyebrows at"
msgstr "zog die Augenbrauen hoch in Richtung"
#: ../../addon/morepokes/morepokes.php:30
#: ../../addon.old/morepokes/morepokes.php:30
msgid "insult"
msgstr "beleidigen"
#: ../../addon/morepokes/morepokes.php:30
#: ../../addon.old/morepokes/morepokes.php:30
msgid "insulted"
msgstr "beleidigte"
#: ../../addon/morepokes/morepokes.php:31
#: ../../addon.old/morepokes/morepokes.php:31
msgid "praise"
msgstr "preisen"
#: ../../addon/morepokes/morepokes.php:31
#: ../../addon.old/morepokes/morepokes.php:31
msgid "praised"
msgstr "pries"
#: ../../addon/morepokes/morepokes.php:32
#: ../../addon.old/morepokes/morepokes.php:32
msgid "be dubious of"
msgstr "ungewiss sein"
#: ../../addon/morepokes/morepokes.php:32
#: ../../addon.old/morepokes/morepokes.php:32
msgid "was dubious of"
msgstr "war ungewiss über"
#: ../../addon/morepokes/morepokes.php:33
#: ../../addon.old/morepokes/morepokes.php:33
msgid "eat"
msgstr "essen"
#: ../../addon/morepokes/morepokes.php:33
#: ../../addon.old/morepokes/morepokes.php:33
msgid "ate"
msgstr "aß"
#: ../../addon/morepokes/morepokes.php:34
#: ../../addon.old/morepokes/morepokes.php:34
msgid "giggle and fawn at"
msgstr "kichern und einschleimen"
#: ../../addon/morepokes/morepokes.php:34
#: ../../addon.old/morepokes/morepokes.php:34
msgid "giggled and fawned at"
msgstr "kicherte und schleimte sich ein bei"
#: ../../addon/morepokes/morepokes.php:35
#: ../../addon.old/morepokes/morepokes.php:35
msgid "doubt"
msgstr "bezweifeln"
#: ../../addon/morepokes/morepokes.php:35
#: ../../addon.old/morepokes/morepokes.php:35
msgid "doubted"
msgstr "bezweifelte"
#: ../../addon/morepokes/morepokes.php:36
#: ../../addon.old/morepokes/morepokes.php:36
msgid "glare"
msgstr "zornig anstarren"
#: ../../addon/morepokes/morepokes.php:36
#: ../../addon.old/morepokes/morepokes.php:36
msgid "glared at"
msgstr "starrte zornig auf"
#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
msgid "YourLS Settings"
msgstr "YourLS Einstellungen"
#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
msgid "URL: http://"
msgstr "URL: http://"
#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
msgid "Username:"
msgstr "Nutzername:"
#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
msgid "Password:"
msgstr "Passwort:"
#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
msgid "Use SSL "
msgstr "SSL Verwenden "
#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
msgid "yourls Settings saved."
msgstr "yourls Einstellungen gespeichert"
#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
msgid "Post to LiveJournal"
msgstr "In LiveJournal veröffentlichen."
#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
msgid "LiveJournal Post Settings"
msgstr "LiveJournal Veröffentlichungs-Einstellungen"
#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
msgid "Enable LiveJournal Post Plugin"
msgstr "LiveJournal Post Plugin aktivieren"
#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
msgid "LiveJournal username"
msgstr "LiveJournal Benutzername"
#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
msgid "LiveJournal password"
msgstr "LiveJournal Passwort"
#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
msgid "Post to LiveJournal by default"
msgstr "Standardmäßig bei LiveJournal veröffentlichen"
#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
msgid "Not Safe For Work (General Purpose Content Filter) settings"
msgstr "Not Safe for Work (allg. Filter für ungewollte Inhalte) Einstellungen:"
#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
msgid ""
"This plugin looks in posts for the words/text you specify below, and "
"collapses any content containing those keywords so it is not displayed at "
"inappropriate times, such as sexual innuendo that may be improper in a work "
"setting. It is polite and recommended to tag any content containing nudity "
"with #NSFW. This filter can also match any other word/text you specify, and"
" can thereby be used as a general purpose content filter."
msgstr "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden."
#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
msgid "Enable Content filter"
msgstr "Aktiviere den Inhaltsfilter"
#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
msgid "Comma separated list of keywords to hide"
msgstr "Durch Komma getrennte Liste von Schlüsselwörtern die verborgen werden sollen"
#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
msgid "Use /expression/ to provide regular expressions"
msgstr "Verwende /expression/ um reguläre Ausdrücke zu verwenden"
#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
msgid "NSFW Settings saved."
msgstr "NSFW-Einstellungen gespeichert"
#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
#, php-format
msgid "%s - Click to open/close"
msgstr "%s Zum Öffnen/Schließen klicken"
#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
#: ../../addon/forumlist/forumlist.php:64 ../../addon.old/page/page.php:62
#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
msgid "Forums"
msgstr "Foren"
#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:98
#: ../../addon.old/page/page.php:130
#: ../../addon.old/forumlist/forumlist.php:94
msgid "Forums:"
msgstr "Foren:"
#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
msgid "Page settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
msgid "Page Settings"
msgstr "Seiteneinstellungen"
#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
msgid "How many forums to display on sidebar without paging"
msgstr "Wie viele Foren sollen in der Seitenleiste ohne Umblättern angezeigt werden"
#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
msgid "Randomise Page/Forum list"
msgstr "Zufällige Seiten/Foren Liste"
#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
msgid "Show pages/forums on profile page"
msgstr "Foren/Seiten auf der Profilseite anzeigen"
#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
msgid "Planets Settings"
msgstr "Planeten Einstellungen"
#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
msgid "Enable Planets Plugin"
msgstr "Aktiviere Planeten Plugin"
#: ../../addon/forumdirectory/forumdirectory.php:22
msgid "Forum Directory"
msgstr "Foren Verzeichnis"
#: ../../addon/communityhome/communityhome.php:28
#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
#: ../../boot.php:1037 ../../addon.old/communityhome/communityhome.php:28
#: ../../addon.old/communityhome/communityhome.php:34
#: ../../addon.old/communityhome/twillingham/communityhome.php:28
#: ../../addon.old/communityhome/twillingham/communityhome.php:34
msgid "Login"
msgstr "Anmeldung"
#: ../../addon/communityhome/communityhome.php:29
#: ../../addon.old/communityhome/communityhome.php:29
#: ../../addon.old/communityhome/twillingham/communityhome.php:29
msgid "OpenID"
msgstr "OpenID"
#: ../../addon/communityhome/communityhome.php:39
#: ../../addon.old/communityhome/communityhome.php:38
#: ../../addon.old/communityhome/twillingham/communityhome.php:38
msgid "Latest users"
msgstr "Letzte Benutzer"
#: ../../addon/communityhome/communityhome.php:84
#: ../../addon.old/communityhome/communityhome.php:81
#: ../../addon.old/communityhome/twillingham/communityhome.php:81
msgid "Most active users"
msgstr "Aktivste Nutzer"
#: ../../addon/communityhome/communityhome.php:102
#: ../../addon.old/communityhome/communityhome.php:98
msgid "Latest photos"
msgstr "Neueste Fotos"
#: ../../addon/communityhome/communityhome.php:141
#: ../../addon.old/communityhome/communityhome.php:133
msgid "Latest likes"
msgstr "Neueste Favoriten"
#: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1508
#: ../../include/conversation.php:118 ../../include/conversation.php:246
#: ../../addon.old/communityhome/communityhome.php:155
msgid "event"
msgstr "Veranstaltung"
#: ../../addon/dav/common/wdcal_backend.inc.php:92
#: ../../addon/dav/common/wdcal_backend.inc.php:166
#: ../../addon/dav/common/wdcal_backend.inc.php:178
#: ../../addon/dav/common/wdcal_backend.inc.php:206
#: ../../addon/dav/common/wdcal_backend.inc.php:214
#: ../../addon/dav/common/wdcal_backend.inc.php:229
#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
msgid "No access"
msgstr "Kein Zugriff"
#: ../../addon/dav/common/wdcal_edit.inc.php:30
#: ../../addon/dav/common/wdcal_edit.inc.php:738
#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
msgid "Could not open component for editing"
msgstr "Kalender-Editierfunktion konnte nicht geöffnet werden"
#: ../../addon/dav/common/wdcal_edit.inc.php:140
#: ../../addon/dav/friendica/layout.fnk.php:143
#: ../../addon/dav/friendica/layout.fnk.php:422
#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
#: ../../addon.old/dav/friendica/layout.fnk.php:143
#: ../../addon.old/dav/friendica/layout.fnk.php:422
msgid "Go back to the calendar"
msgstr "Zurück zum Kalender"
#: ../../addon/dav/common/wdcal_edit.inc.php:144
#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
msgid "Event data"
msgstr "Veranstaltungsdetails"
#: ../../addon/dav/common/wdcal_edit.inc.php:146
#: ../../addon/dav/friendica/main.php:239
#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
#: ../../addon.old/dav/friendica/main.php:239
msgid "Calendar"
msgstr "Kalender"
#: ../../addon/dav/common/wdcal_edit.inc.php:163
#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
msgid "Special color"
msgstr "Spezielle Farbe"
#: ../../addon/dav/common/wdcal_edit.inc.php:169
#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
msgid "Subject"
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
#: ../../mod/message.php:553
msgid "To:"
msgstr "An:"
#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
#: ../../mod/message.php:555
msgid "Subject:"
msgstr "Betreff:"
#: ../../addon/dav/common/wdcal_edit.inc.php:173
#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
msgid "Starts"
msgstr "Beginnt"
#: ../../mod/localtime.php:24
msgid "Time Conversion"
msgstr "Zeitumrechnung"
#: ../../addon/dav/common/wdcal_edit.inc.php:178
#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
msgid "Ends"
msgstr "Endet"
#: ../../addon/dav/common/wdcal_edit.inc.php:185
#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
msgid "Description"
msgstr "Beschreibung"
#: ../../addon/dav/common/wdcal_edit.inc.php:188
#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
msgid "Recurrence"
msgstr "Wiederholungen:"
#: ../../addon/dav/common/wdcal_edit.inc.php:190
#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
msgid "Frequency"
msgstr "Frequenz"
#: ../../addon/dav/common/wdcal_edit.inc.php:194
#: ../../include/contact_selectors.php:59
#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
msgid "Daily"
msgstr "Täglich"
#: ../../addon/dav/common/wdcal_edit.inc.php:197
#: ../../include/contact_selectors.php:60
#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
msgid "Weekly"
msgstr "Wöchentlich"
#: ../../addon/dav/common/wdcal_edit.inc.php:200
#: ../../include/contact_selectors.php:61
#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
msgid "Monthly"
msgstr "Monatlich"
#: ../../addon/dav/common/wdcal_edit.inc.php:203
#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
msgid "Yearly"
msgstr "Jährlich"
#: ../../addon/dav/common/wdcal_edit.inc.php:214
#: ../../include/datetime.php:288
#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
msgid "days"
msgstr "Tage"
#: ../../addon/dav/common/wdcal_edit.inc.php:215
#: ../../include/datetime.php:287
#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
msgid "weeks"
msgstr "Wochen"
#: ../../addon/dav/common/wdcal_edit.inc.php:216
#: ../../include/datetime.php:286
#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
msgid "months"
msgstr "Monate"
#: ../../addon/dav/common/wdcal_edit.inc.php:217
#: ../../include/datetime.php:285
#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
msgid "years"
msgstr "Jahre"
#: ../../addon/dav/common/wdcal_edit.inc.php:218
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
msgid "Interval"
msgstr "Intervall"
#: ../../addon/dav/common/wdcal_edit.inc.php:218
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
msgid "All %select% %time%"
msgstr "Jeden %select% %time%"
#: ../../addon/dav/common/wdcal_edit.inc.php:222
#: ../../addon/dav/common/wdcal_edit.inc.php:260
#: ../../addon/dav/common/wdcal_edit.inc.php:481
#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
msgid "Days"
msgstr "Tage"
#: ../../addon/dav/common/wdcal_edit.inc.php:231
#: ../../addon/dav/common/wdcal_edit.inc.php:254
#: ../../addon/dav/common/wdcal_edit.inc.php:270
#: ../../addon/dav/common/wdcal_edit.inc.php:293
#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:975
#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
msgid "Sunday"
msgstr "Sonntag"
#: ../../addon/dav/common/wdcal_edit.inc.php:235
#: ../../addon/dav/common/wdcal_edit.inc.php:274
#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:975
#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
msgid "Monday"
msgstr "Montag"
#: ../../addon/dav/common/wdcal_edit.inc.php:238
#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:975
#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
msgid "Tuesday"
msgstr "Dienstag"
#: ../../addon/dav/common/wdcal_edit.inc.php:241
#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:975
#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
msgid "Wednesday"
msgstr "Mittwoch"
#: ../../addon/dav/common/wdcal_edit.inc.php:244
#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:975
#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
msgid "Thursday"
msgstr "Donnerstag"
#: ../../addon/dav/common/wdcal_edit.inc.php:247
#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:975
#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
msgid "Friday"
msgstr "Freitag"
#: ../../addon/dav/common/wdcal_edit.inc.php:250
#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:975
#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
msgid "Saturday"
msgstr "Samstag"
#: ../../addon/dav/common/wdcal_edit.inc.php:297
#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
msgid "First day of week:"
msgstr "Erster Tag der Woche"
#: ../../addon/dav/common/wdcal_edit.inc.php:350
#: ../../addon/dav/common/wdcal_edit.inc.php:373
#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
msgid "Day of month"
msgstr "Tag des Monats"
#: ../../addon/dav/common/wdcal_edit.inc.php:354
#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
msgid "#num#th of each month"
msgstr "#num#ten jedes Monats"
#: ../../addon/dav/common/wdcal_edit.inc.php:357
#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
msgid "#num#th-last of each month"
msgstr "letzten #num#ten jedes Monats"
#: ../../addon/dav/common/wdcal_edit.inc.php:360
#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
msgid "#num#th #wkday# of each month"
msgstr "jeden #num#ten #wkday# eines Monats"
#: ../../addon/dav/common/wdcal_edit.inc.php:363
#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
msgid "#num#th-last #wkday# of each month"
msgstr "jeden #num#ten letzten #wkday# eines Monats"
#: ../../addon/dav/common/wdcal_edit.inc.php:372
#: ../../addon/dav/friendica/layout.fnk.php:255
#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
#: ../../addon.old/dav/friendica/layout.fnk.php:255
msgid "Month"
msgstr "Monat"
#: ../../addon/dav/common/wdcal_edit.inc.php:377
#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
msgid "#num#th of the given month"
msgstr "#num#ten des Monats"
#: ../../addon/dav/common/wdcal_edit.inc.php:380
#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
msgid "#num#th-last of the given month"
msgstr "letzten #num#ten des Monats"
#: ../../addon/dav/common/wdcal_edit.inc.php:383
#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
msgid "#num#th #wkday# of the given month"
msgstr "jeden #num#ten eines Monats"
#: ../../addon/dav/common/wdcal_edit.inc.php:386
#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
msgid "#num#th-last #wkday# of the given month"
msgstr "jeden #num#ten letzten eines Monats"
#: ../../addon/dav/common/wdcal_edit.inc.php:413
#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
msgid "Repeat until"
msgstr "Wiederholungen"
#: ../../addon/dav/common/wdcal_edit.inc.php:417
#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
msgid "Infinite"
msgstr "unendlich"
#: ../../addon/dav/common/wdcal_edit.inc.php:420
#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
msgid "Until the following date"
msgstr "bis zum folgenden Datum"
#: ../../addon/dav/common/wdcal_edit.inc.php:423
#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
msgid "Number of times"
msgstr "Bestimmte Anzahl von Wiederholungen"
#: ../../addon/dav/common/wdcal_edit.inc.php:429
#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
msgid "Exceptions"
msgstr "Ausnahmen"
#: ../../addon/dav/common/wdcal_edit.inc.php:432
#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
msgid "none"
msgstr "keine"
#: ../../addon/dav/common/wdcal_edit.inc.php:449
#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
msgid "Notification"
msgstr "Benachrichtigung"
#: ../../addon/dav/common/wdcal_edit.inc.php:466
#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
msgid "Notify by"
msgstr "Benarchrichtigungsmethode"
#: ../../addon/dav/common/wdcal_edit.inc.php:469
#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
msgid "E-Mail"
msgstr "E-Mail"
#: ../../addon/dav/common/wdcal_edit.inc.php:470
#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
msgid "On Friendica / Display"
msgstr "Bei Friendica / Anzeige"
#: ../../addon/dav/common/wdcal_edit.inc.php:474
#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
msgid "Time"
msgstr "Zeit"
#: ../../addon/dav/common/wdcal_edit.inc.php:478
#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
msgid "Hours"
msgstr "Stunden"
#: ../../addon/dav/common/wdcal_edit.inc.php:479
#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
msgid "Minutes"
msgstr "Minuten"
#: ../../addon/dav/common/wdcal_edit.inc.php:480
#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
msgid "Seconds"
msgstr "Sekunden"
#: ../../addon/dav/common/wdcal_edit.inc.php:482
#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
msgid "Weeks"
msgstr "Wochen"
#: ../../addon/dav/common/wdcal_edit.inc.php:485
#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
msgid "before the"
msgstr "vor dem"
#: ../../addon/dav/common/wdcal_edit.inc.php:486
#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
msgid "start of the event"
msgstr "Beginn des Termins"
#: ../../addon/dav/common/wdcal_edit.inc.php:487
#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
msgid "end of the event"
msgstr "Ende des Termins"
#: ../../addon/dav/common/wdcal_edit.inc.php:492
#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
msgid "Add a notification"
msgstr "Benachrichtigung hinzufügen"
#: ../../addon/dav/common/wdcal_edit.inc.php:687
#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
msgid "The event #name# will start at #date"
msgstr "Der Termin #name# wird am #date anfangen"
#: ../../addon/dav/common/wdcal_edit.inc.php:696
#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
msgid "#name# is about to begin."
msgstr "#name# beginnt demnächst."
#: ../../addon/dav/common/wdcal_edit.inc.php:769
#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
msgid "Saved"
msgstr "Gespeichert"
#: ../../addon/dav/common/wdcal_configuration.php:148
#: ../../addon.old/dav/common/wdcal_configuration.php:148
msgid "U.S. Time Format (mm/dd/YYYY)"
msgstr "U.S. Datumsformat (mm/dd/YYYY)"
#: ../../addon/dav/common/wdcal_configuration.php:243
#: ../../addon.old/dav/common/wdcal_configuration.php:243
msgid "German Time Format (dd.mm.YYYY)"
msgstr "Deutsches Datumsformat (dd.mm.YYYY)"
#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
msgid "Private Events"
msgstr "Privater Termin"
#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
msgid "Private Addressbooks"
msgstr "Private Adressbücher"
#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
msgid "Friendica-Native events"
msgstr "Friendica Veranstaltungen"
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
msgid "Friendica-Contacts"
msgstr "Friendica-Kontakte"
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
msgid "Your Friendica-Contacts"
msgstr "Deine Friendica-Kontakte"
#: ../../addon/dav/friendica/layout.fnk.php:99
#: ../../addon/dav/friendica/layout.fnk.php:136
#: ../../addon.old/dav/friendica/layout.fnk.php:99
#: ../../addon.old/dav/friendica/layout.fnk.php:136
#: ../../mod/localtime.php:26
msgid ""
"Something went wrong when trying to import the file. Sorry. Maybe some "
"events were imported anyway."
msgstr "Entschuldigung. Bei dem Versuch die Datei zu importieren ist etwas schief gelaufen. Vielleicht wurden aber einige der Termine dennoch importiert."
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
#: ../../addon/dav/friendica/layout.fnk.php:131
#: ../../addon.old/dav/friendica/layout.fnk.php:131
msgid "Something went wrong when trying to import the file. Sorry."
msgstr "Entschuldigung. Beim Importieren der Datei ist etwas schief gelaufen."
#: ../../addon/dav/friendica/layout.fnk.php:134
#: ../../addon.old/dav/friendica/layout.fnk.php:134
msgid "The ICS-File has been imported."
msgstr "Die ICS-Datei wurde importoert."
#: ../../addon/dav/friendica/layout.fnk.php:138
#: ../../addon.old/dav/friendica/layout.fnk.php:138
msgid "No file was uploaded."
msgstr "Es wurde keine Datei geladen."
#: ../../addon/dav/friendica/layout.fnk.php:147
#: ../../addon.old/dav/friendica/layout.fnk.php:147
msgid "Import a ICS-file"
msgstr "Importiere eine ICS-Datei"
#: ../../addon/dav/friendica/layout.fnk.php:150
#: ../../addon.old/dav/friendica/layout.fnk.php:150
msgid "ICS-File"
msgstr "ICS-Datei"
#: ../../addon/dav/friendica/layout.fnk.php:151
#: ../../addon.old/dav/friendica/layout.fnk.php:151
msgid "Overwrite all #num# existing events"
msgstr "Überschreibe alle #num# existierenden Einträge"
#: ../../addon/dav/friendica/layout.fnk.php:228
#: ../../addon.old/dav/friendica/layout.fnk.php:228
msgid "New event"
msgstr "Neue Veranstaltung"
#: ../../addon/dav/friendica/layout.fnk.php:232
#: ../../addon.old/dav/friendica/layout.fnk.php:232
msgid "Today"
msgstr "Heute"
#: ../../addon/dav/friendica/layout.fnk.php:241
#: ../../addon.old/dav/friendica/layout.fnk.php:241
msgid "Day"
msgstr "Tag"
#: ../../addon/dav/friendica/layout.fnk.php:248
#: ../../addon.old/dav/friendica/layout.fnk.php:248
msgid "Week"
msgstr "Woche"
#: ../../addon/dav/friendica/layout.fnk.php:260
#: ../../addon.old/dav/friendica/layout.fnk.php:260
msgid "Reload"
msgstr "Neu Laden"
#: ../../addon/dav/friendica/layout.fnk.php:271
#: ../../addon.old/dav/friendica/layout.fnk.php:271
msgid "Date"
msgstr "Datum"
#: ../../addon/dav/friendica/layout.fnk.php:313
#: ../../addon.old/dav/friendica/layout.fnk.php:313
msgid "Error"
msgstr "Fehler"
#: ../../addon/dav/friendica/layout.fnk.php:380
#: ../../addon.old/dav/friendica/layout.fnk.php:380
msgid "The calendar has been updated."
msgstr "Der Kalender wurde aktualisiert."
#: ../../addon/dav/friendica/layout.fnk.php:393
#: ../../addon.old/dav/friendica/layout.fnk.php:393
msgid "The new calendar has been created."
msgstr "Der neue Kalender wurde erstellt."
#: ../../addon/dav/friendica/layout.fnk.php:417
#: ../../addon.old/dav/friendica/layout.fnk.php:417
msgid "The calendar has been deleted."
msgstr "Der Kalender wurde gelöscht."
#: ../../addon/dav/friendica/layout.fnk.php:424
#: ../../addon.old/dav/friendica/layout.fnk.php:424
msgid "Calendar Settings"
msgstr "Kalendereinstellungen"
#: ../../addon/dav/friendica/layout.fnk.php:430
#: ../../addon.old/dav/friendica/layout.fnk.php:430
msgid "Date format"
msgstr "Datumsformat"
#: ../../addon/dav/friendica/layout.fnk.php:439
#: ../../addon.old/dav/friendica/layout.fnk.php:439
msgid "Time zone"
msgstr "Zeitzone"
#: ../../addon/dav/friendica/layout.fnk.php:445
#: ../../addon.old/dav/friendica/layout.fnk.php:445
msgid "Calendars"
msgstr "Kalender"
#: ../../addon/dav/friendica/layout.fnk.php:487
#: ../../addon.old/dav/friendica/layout.fnk.php:487
msgid "Create a new calendar"
msgstr "Neuen Kalender anlegen"
#: ../../addon/dav/friendica/layout.fnk.php:496
#: ../../addon.old/dav/friendica/layout.fnk.php:496
msgid "Limitations"
msgstr "Einschränkungen"
#: ../../addon/dav/friendica/layout.fnk.php:500
#: ../../addon/libravatar/libravatar.php:82
#: ../../addon.old/dav/friendica/layout.fnk.php:500
#: ../../addon.old/libravatar/libravatar.php:82
msgid "Warning"
msgstr "Warnung"
#: ../../addon/dav/friendica/layout.fnk.php:504
#: ../../addon.old/dav/friendica/layout.fnk.php:504
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
msgstr "Synchronisation (iPhone, Thunderbird Lightning, Android, ...)"
#: ../../addon/dav/friendica/layout.fnk.php:511
#: ../../addon.old/dav/friendica/layout.fnk.php:511
msgid "Synchronizing this calendar with the iPhone"
msgstr "Diesen Kalender mit dem iPhone synchronisieren"
#: ../../addon/dav/friendica/layout.fnk.php:522
#: ../../addon.old/dav/friendica/layout.fnk.php:522
msgid "Synchronizing your Friendica-Contacts with the iPhone"
msgstr "Friendica-Kontakte mit dem iPhone synchronisieren"
#: ../../addon/dav/friendica/main.php:202
#: ../../addon.old/dav/friendica/main.php:202
msgid ""
"The current version of this plugin has not been set up correctly. Please "
"contact the system administrator of your installation of friendica to fix "
"this."
msgstr "Die aktuelle Version dieses Plugins wurde nicht korrekt eingestellt. Bitte kontaktiere den System-Administrator deiner Friendica Installation um den Fehler zu beheben."
#: ../../addon/dav/friendica/main.php:242
#: ../../addon.old/dav/friendica/main.php:242
msgid "Extended calendar with CalDAV-support"
msgstr "Erweiterter Kalender mit CalDAV Unterstützung."
#: ../../addon/dav/friendica/main.php:279
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
#: ../../include/enotify.php:28 ../../include/notifier.php:785
#: ../../addon.old/dav/friendica/main.php:279
#: ../../addon.old/dav/friendica/main.php:280
msgid "noreply"
msgstr "noreply"
#: ../../addon/dav/friendica/main.php:282
#: ../../addon.old/dav/friendica/main.php:282
msgid "Notification: "
msgstr "Benachrichtigungen: "
#: ../../addon/dav/friendica/main.php:309
#: ../../addon.old/dav/friendica/main.php:309
msgid "The database tables have been installed."
msgstr "Die Datenbanktabellen wurden installiert."
#: ../../addon/dav/friendica/main.php:310
#: ../../addon.old/dav/friendica/main.php:310
msgid "An error occurred during the installation."
msgstr "Während der Installation trat ein Fehler auf."
#: ../../addon/dav/friendica/main.php:316
#: ../../addon.old/dav/friendica/main.php:316
msgid "The database tables have been updated."
msgstr "Die Tabellen in der Datenbank wurden aktualisiert."
#: ../../addon/dav/friendica/main.php:317
#: ../../addon.old/dav/friendica/main.php:317
msgid "An error occurred during the update."
msgstr "Während der Aktualisierung trat ein Fehler auf."
#: ../../addon/dav/friendica/main.php:333
#: ../../addon.old/dav/friendica/main.php:333
msgid "No system-wide settings yet."
msgstr "Momentan keine systemweiten Einstellungen."
#: ../../addon/dav/friendica/main.php:336
#: ../../addon.old/dav/friendica/main.php:336
msgid "Database status"
msgstr "Datenbankstatus"
#: ../../addon/dav/friendica/main.php:339
#: ../../addon.old/dav/friendica/main.php:339
msgid "Installed"
msgstr "Installiert"
#: ../../addon/dav/friendica/main.php:343
#: ../../addon.old/dav/friendica/main.php:343
msgid "Upgrade needed"
msgstr "Upgrade erforderlich"
#: ../../addon/dav/friendica/main.php:343
#: ../../addon.old/dav/friendica/main.php:343
msgid ""
"Please back up all calendar data (the tables beginning with dav_*) before "
"proceeding. While all calendar events <i>should</i> be converted to the new "
"database structure, it's always safe to have a backup. Below, you can have a"
" look at the database-queries that will be made when pressing the "
"'update'-button."
msgstr "Bitte sichere alle Kalenderdaten (die Tabellen mit dav_* beginnend) bevor du mit dem Update fortfährst. Eigentliche <i>sollten</i> alle Kalendereinträge in die neue Datenbankstruktur übernommen werden, aber sicher ist sicher. Weiter unten kannst du die Datenbank-Anfragen ansehen, die im Verlauf des Updates gemacht werden."
#: ../../addon/dav/friendica/main.php:343
#: ../../addon.old/dav/friendica/main.php:343
msgid "Upgrade"
msgstr "Upgrade"
#: ../../addon/dav/friendica/main.php:346
#: ../../addon.old/dav/friendica/main.php:346
msgid "Not installed"
msgstr "Nicht installiert"
#: ../../addon/dav/friendica/main.php:346
#: ../../addon.old/dav/friendica/main.php:346
msgid "Install"
msgstr "Installieren"
#: ../../addon/dav/friendica/main.php:350
#: ../../addon.old/dav/friendica/main.php:350
msgid "Unknown"
msgstr "Unbekannt"
#: ../../addon/dav/friendica/main.php:350
#: ../../addon.old/dav/friendica/main.php:350
msgid ""
"Something really went wrong. I cannot recover from this state automatically,"
" sorry. Please go to the database backend, back up the data, and delete all "
"tables beginning with 'dav_' manually. Afterwards, this installation routine"
" should be able to reinitialize the tables automatically."
msgstr "Irgendetwas ging schief. Ich kann leider von diesem Zustand der Datenbank leider nicht automatisch fortfahren. Bitte mache ein Backup der Daten aus der Datenbank und lösche anschließend alle Tabellen deren Name mit 'dav_' anfangen. Anschließend sollte diese Installations-Routine in der Lage sein die nötigen Tabellen automatisch neu anzulegen."
#: ../../addon/dav/friendica/main.php:355
#: ../../addon.old/dav/friendica/main.php:355
msgid "Troubleshooting"
msgstr "Problembehebung"
#: ../../addon/dav/friendica/main.php:356
#: ../../addon.old/dav/friendica/main.php:356
msgid "Manual creation of the database tables:"
msgstr "Manuelles Anlegen der Datenbanktabellen:"
#: ../../addon/dav/friendica/main.php:357
#: ../../addon.old/dav/friendica/main.php:357
msgid "Show SQL-statements"
msgstr "SQL-Anweisungen anzeigen"
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
msgid "Private Calendar"
msgstr "Privater Kalender"
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
msgid "Friendica Events: Mine"
msgstr "Meine Friendica-Veranstaltungen"
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
msgid "Friendica Events: Contacts"
msgstr "Friendica Veranstaltungen meiner Kontakte"
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
msgid "Private Addresses"
msgstr "Private Adressen"
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
msgid "Friendica Contacts"
msgstr "Friendica Kontakte"
#: ../../addon/uhremotestorage/uhremotestorage.php:84
#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
#: ../../mod/localtime.php:30
#, php-format
msgid ""
"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
" storage (like ownCloud). See <a "
"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
" WebFinger</a>"
msgstr "Ermöglicht dir, deine Friendica ID (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
msgid "UTC time: %s"
msgstr "UTC Zeit: %s"
#: ../../addon/uhremotestorage/uhremotestorage.php:85
#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
msgid "Template URL (with {category})"
msgstr "Vorlagen URL (mit {Kategorie})"
#: ../../addon/uhremotestorage/uhremotestorage.php:86
#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
msgid "OAuth end-point"
msgstr "OAuth Endpunkt"
#: ../../addon/uhremotestorage/uhremotestorage.php:87
#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
msgid "Api"
msgstr "Api"
#: ../../addon/membersince/membersince.php:18
#: ../../addon.old/membersince/membersince.php:18
msgid "Member since:"
msgstr "Mitglied seit:"
#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
msgid "Three Dimensional Tic-Tac-Toe"
msgstr "Dreidimensionales Tic-Tac-Toe"
#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
msgid "3D Tic-Tac-Toe"
msgstr "3D Tic-Tac-Toe"
#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
msgid "New game"
msgstr "Neues Spiel"
#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
msgid "New game with handicap"
msgstr "Neues Handicap Spiel"
#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
msgid ""
"Three dimensional tic-tac-toe is just like the traditional game except that "
"it is played on multiple levels simultaneously. "
msgstr "3D-Tic-Tac-Toe ist genauso wie das herkömmliche Spiel, nur dass man es auf mehreren Ebenen gleichzeitig spielt."
#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
msgid ""
"In this case there are three levels. You win by getting three in a row on "
"any level, as well as up, down, and diagonally across the different levels."
msgstr "In diesem Fall sind es drei Ebenen. Man gewinnt indem man drei in einer Reihe auf einer beliebigen Reihe schafft, oder drei übereinander oder diagonal auf verschiedenen Ebenen."
#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
msgid ""
"The handicap game disables the center position on the middle level because "
"the player claiming this square often has an unfair advantage."
msgstr "Beim Handicap-Spiel wird die zentrale Position der mittleren Ebene gesperrt, da der Spieler, der diese Ebene besitzt, oft einen unfairen Vorteil genießt."
#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
msgid "You go first..."
msgstr "Du fängst an..."
#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
msgid "I'm going first this time..."
msgstr "Diesmal fange ich an..."
#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
msgid "You won!"
msgstr "Du gewinnst!"
#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
msgid "\"Cat\" game!"
msgstr "Unentschieden!"
#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
msgid "I won!"
msgstr "Ich gewinne!"
#: ../../addon/randplace/randplace.php:169
#: ../../addon.old/randplace/randplace.php:169
msgid "Randplace Settings"
msgstr "Randplace-Einstellungen"
#: ../../addon/randplace/randplace.php:171
#: ../../addon.old/randplace/randplace.php:171
msgid "Enable Randplace Plugin"
msgstr "Randplace-Plugin aktivieren"
#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
msgid "Post to Dreamwidth"
msgstr "In Dreamwidth veröffentlichen"
#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
msgid "Dreamwidth Post Settings"
msgstr "Dreamwidth Veröffentlichungs-Einstellungen"
#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
msgid "Enable dreamwidth Post Plugin"
msgstr "Dreamwidth Post Plugin aktivieren"
#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
msgid "dreamwidth username"
msgstr "Dreamwidth Benutzername"
#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
msgid "dreamwidth password"
msgstr "Dreamwidth Passwort"
#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
msgid "Post to dreamwidth by default"
msgstr "Standardmäßig bei Dreamwidth veröffentlichen"
#: ../../addon/remote_permissions/remote_permissions.php:45
msgid "Remote Permissions Settings"
msgstr "Entfernte Privatsphäreneinstellungen"
#: ../../addon/remote_permissions/remote_permissions.php:46
msgid ""
"Allow recipients of your private posts to see the other recipients of the "
"posts"
msgstr "Erlaube Empfängern von privaten Nachrichten zu sehen wer die anderen Empfänger sind"
#: ../../addon/remote_permissions/remote_permissions.php:58
msgid "Remote Permissions settings updated."
msgstr "Entfernte Privatsphäreneinstellungen aktualisiert."
#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "Visible to"
msgstr "Sichtbar für"
#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "may only be a partial list"
msgstr "könnte nur ein Teil der Liste sein"
#: ../../addon/remote_permissions/remote_permissions.php:197
#: ../../addon/altpager/altpager.php:99
msgid "Global"
msgstr "Global"
#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "The posts of every user on this server show the post recipients"
msgstr "Die Beiträge jedes Nutzers dieses Servers werden die Empfänger des Beitrags anzeigen"
#: ../../addon/remote_permissions/remote_permissions.php:198
#: ../../addon/altpager/altpager.php:100
msgid "Individual"
msgstr "Individuell"
#: ../../addon/remote_permissions/remote_permissions.php:198
msgid "Each user chooses whether his/her posts show the post recipients"
msgstr "Jede/r Nutzer/in kann wählen ob die Empfänger der Beiträge angezeigt werden sollen oder nicht"
#: ../../addon/startpage/startpage.php:83
#: ../../addon.old/startpage/startpage.php:83
msgid "Startpage Settings"
msgstr "Startseiten-Einstellungen"
#: ../../addon/startpage/startpage.php:85
#: ../../addon.old/startpage/startpage.php:85
msgid "Home page to load after login - leave blank for profile wall"
msgstr "Seite, die nach dem Anmelden geladen werden soll. Leer = Pinnwand"
#: ../../addon/startpage/startpage.php:88
#: ../../addon.old/startpage/startpage.php:88
msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr "Beispiele: network, notifications/system"
#: ../../addon/geonames/geonames.php:143
#: ../../addon.old/geonames/geonames.php:143
msgid "Geonames settings updated."
msgstr "Geonames Einstellungen aktualisiert"
#: ../../addon/geonames/geonames.php:179
#: ../../addon.old/geonames/geonames.php:179
msgid "Geonames Settings"
msgstr "Geonames Einstellungen"
#: ../../addon/geonames/geonames.php:181
#: ../../addon.old/geonames/geonames.php:181
msgid "Enable Geonames Plugin"
msgstr "Geonames Plugin aktivieren"
#: ../../addon/public_server/public_server.php:126
#: ../../addon/testdrive/testdrive.php:94
#: ../../addon.old/public_server/public_server.php:126
#: ../../addon.old/testdrive/testdrive.php:94
#: ../../mod/localtime.php:33
#, php-format
msgid "Your account on %s will expire in a few days."
msgstr "Dein Konto auf %s wird in ein paar Tagen verfallen."
msgid "Current timezone: %s"
msgstr "Aktuelle Zeitzone: %s"
#: ../../addon/public_server/public_server.php:127
#: ../../addon.old/public_server/public_server.php:127
msgid "Your Friendica account is about to expire."
msgstr "Dein Friendica-Konto wird in Kürze auslaufen."
#: ../../addon/public_server/public_server.php:128
#: ../../addon.old/public_server/public_server.php:128
#: ../../mod/localtime.php:36
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
msgstr "Hallo %1$s,\n\ndein Account auf %2$s wird in weniger als fünf Tagen auslaufen. Du kannst das verhindern, indem du dich mindestens einmal alle 30 Tage anmeldest."
msgid "Converted localtime: %s"
msgstr "Umgerechnete lokale Zeit: %s"
#: ../../addon/js_upload/js_upload.php:43
#: ../../addon.old/js_upload/js_upload.php:43
msgid "Upload a file"
msgstr "Datei hochladen"
#: ../../mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Bitte wähle deine Zeitzone."
#: ../../addon/js_upload/js_upload.php:44
#: ../../addon.old/js_upload/js_upload.php:44
msgid "Drop files here to upload"
msgstr "Ziehe Dateien hierher, um sie hochzuladen"
#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
#: ../../addon/js_upload/js_upload.php:46
#: ../../addon.old/js_upload/js_upload.php:46
msgid "Failed"
msgstr "Fehlgeschlagen"
#: ../../mod/lostpass.php:17
msgid "No valid account found."
msgstr "Kein gültiges Konto gefunden."
#: ../../addon/js_upload/js_upload.php:303
#: ../../addon.old/js_upload/js_upload.php:297
msgid "No files were uploaded."
msgstr "Keine Dateien hochgeladen."
#: ../../mod/lostpass.php:33
msgid "Password reset request issued. Check your email."
msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."
#: ../../addon/js_upload/js_upload.php:309
#: ../../addon.old/js_upload/js_upload.php:303
msgid "Uploaded file is empty"
msgstr "Hochgeladene Datei ist leer"
#: ../../addon/js_upload/js_upload.php:332
#: ../../addon.old/js_upload/js_upload.php:326
msgid "File has an invalid extension, it should be one of "
msgstr "Die Dateierweiterung ist nicht erlaubt, sie muss eine der folgenden sein "
#: ../../addon/js_upload/js_upload.php:343
#: ../../addon.old/js_upload/js_upload.php:337
msgid "Upload was cancelled, or server error encountered"
msgstr "Upload abgebrochen oder Serverfehler aufgetreten"
#: ../../addon/forumlist/forumlist.php:67
#: ../../addon.old/forumlist/forumlist.php:63
msgid "show/hide"
msgstr "anzeigen/verbergen"
#: ../../addon/forumlist/forumlist.php:81
#: ../../addon.old/forumlist/forumlist.php:77
msgid "No forum subscriptions"
msgstr "Keine Foren-Mitgliedschaften."
#: ../../addon/forumlist/forumlist.php:134
#: ../../addon.old/forumlist/forumlist.php:131
msgid "Forumlist settings updated."
msgstr "Einstellungen zur Foren-Liste aktualisiert."
#: ../../addon/forumlist/forumlist.php:162
#: ../../addon.old/forumlist/forumlist.php:159
msgid "Forumlist Settings"
msgstr "Foren-Liste Einstellungen"
#: ../../addon/forumlist/forumlist.php:164
#: ../../addon.old/forumlist/forumlist.php:161
msgid "Randomise forum list"
msgstr "Zufällige Zusammenstellung der Foren-Liste"
#: ../../addon/forumlist/forumlist.php:167
#: ../../addon.old/forumlist/forumlist.php:164
msgid "Show forums on profile page"
msgstr "Zeige die Liste der Foren auf der Profilseite"
#: ../../addon/forumlist/forumlist.php:170
#: ../../addon.old/forumlist/forumlist.php:167
msgid "Show forums on network page"
msgstr "Zeige Foren auf der Netzwerk-Seite"
#: ../../addon/impressum/impressum.php:37
#: ../../addon.old/impressum/impressum.php:37
msgid "Impressum"
msgstr "Impressum"
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:84
#: ../../addon.old/impressum/impressum.php:50
#: ../../addon.old/impressum/impressum.php:52
#: ../../addon.old/impressum/impressum.php:84
msgid "Site Owner"
msgstr "Betreiber der Seite"
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:88
#: ../../addon.old/impressum/impressum.php:50
#: ../../addon.old/impressum/impressum.php:88
msgid "Email Address"
msgstr "Email Adresse"
#: ../../addon/impressum/impressum.php:55
#: ../../addon/impressum/impressum.php:86
#: ../../addon.old/impressum/impressum.php:55
#: ../../addon.old/impressum/impressum.php:86
msgid "Postal Address"
msgstr "Postalische Anschrift"
#: ../../addon/impressum/impressum.php:61
#: ../../addon.old/impressum/impressum.php:61
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe mindestens den <tt>Betreiber</tt> in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert."
#: ../../addon/impressum/impressum.php:84
#: ../../addon.old/impressum/impressum.php:84
msgid "The page operators name."
msgstr "Name des Serveradministrators"
#: ../../addon/impressum/impressum.php:85
#: ../../addon.old/impressum/impressum.php:85
msgid "Site Owners Profile"
msgstr "Profil des Seitenbetreibers"
#: ../../addon/impressum/impressum.php:85
#: ../../addon.old/impressum/impressum.php:85
msgid "Profile address of the operator."
msgstr "Profil-Adresse des Serveradministrators"
#: ../../addon/impressum/impressum.php:86
#: ../../addon.old/impressum/impressum.php:86
msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden."
#: ../../addon/impressum/impressum.php:87
#: ../../addon.old/impressum/impressum.php:87
msgid "Notes"
msgstr "Hinweise"
#: ../../addon/impressum/impressum.php:87
#: ../../addon.old/impressum/impressum.php:87
msgid ""
"Additional notes that are displayed beneath the contact information. You can"
" use BBCode here."
msgstr "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden."
#: ../../addon/impressum/impressum.php:88
#: ../../addon.old/impressum/impressum.php:88
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr "Wie man den Betreiber per Email erreicht. (Adresse wird verschleiert dargestellt)"
#: ../../addon/impressum/impressum.php:89
#: ../../addon.old/impressum/impressum.php:89
msgid "Footer note"
msgstr "Fußnote"
#: ../../addon/impressum/impressum.php:89
#: ../../addon.old/impressum/impressum.php:89
msgid "Text for the footer. You can use BBCode here."
msgstr "Text für die Fußzeile. Du kannst BBCode verwenden."
#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
msgid "Report Bug"
msgstr "Fehlerreport erstellen"
#: ../../addon/notimeline/notimeline.php:32
#: ../../addon.old/notimeline/notimeline.php:32
msgid "No Timeline settings updated."
msgstr "Keine Timeline-Einstellungen aktualisiert."
#: ../../addon/notimeline/notimeline.php:56
#: ../../addon.old/notimeline/notimeline.php:56
msgid "No Timeline Settings"
msgstr "Keine Timeline-Einstellungen"
#: ../../addon/notimeline/notimeline.php:58
#: ../../addon.old/notimeline/notimeline.php:58
msgid "Disable Archive selector on profile wall"
msgstr "Deaktiviere Archiv-Auswahl auf Deiner Pinnwand"
#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
msgid "\"Blockem\" Settings"
msgstr "\"Blockem\"-Einstellungen"
#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
msgid "Comma separated profile URLS to block"
msgstr "Profil-URLs, die blockiert werden sollen (durch Kommas getrennt)"
#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
msgid "BLOCKEM Settings saved."
msgstr "BLOCKEM-Einstellungen gesichert."
#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
#: ../../mod/lostpass.php:44
#, php-format
msgid "Blocked %s - Click to open/close"
msgstr "%s blockiert - Zum Öffnen/Schließen klicken"
msgid "Password reset requested at %s"
msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
msgid "Unblock Author"
msgstr "Autor freischalten"
#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
msgid "Block Author"
msgstr "Autor blockieren"
#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
msgid "blockem settings updated"
msgstr "blockem Einstellungen aktualisiert"
#: ../../addon/qcomment/qcomment.php:51
#: ../../addon.old/qcomment/qcomment.php:51
msgid ":-)"
msgstr ":-)"
#: ../../addon/qcomment/qcomment.php:51
#: ../../addon.old/qcomment/qcomment.php:51
msgid ":-("
msgstr ":-("
#: ../../addon/qcomment/qcomment.php:51
#: ../../addon.old/qcomment/qcomment.php:51
msgid "lol"
msgstr "lol"
#: ../../addon/qcomment/qcomment.php:54
#: ../../addon.old/qcomment/qcomment.php:54
msgid "Quick Comment Settings"
msgstr "Schnell-Kommentar Einstellungen"
#: ../../addon/qcomment/qcomment.php:56
#: ../../addon.old/qcomment/qcomment.php:56
#: ../../mod/lostpass.php:66
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
" provide simple replies."
msgstr "Kurzkommentare findet man in der Nähe der Kommentarboxen. Ein Klick darauf erstellt einfache Antworten."
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
#: ../../addon/qcomment/qcomment.php:57
#: ../../addon.old/qcomment/qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr "Gib einen Schnell-Kommentar pro Zeile ein"
#: ../../mod/lostpass.php:84 ../../boot.php:1072
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
#: ../../addon/qcomment/qcomment.php:75
#: ../../addon.old/qcomment/qcomment.php:75
msgid "Quick Comment settings saved."
msgstr "Schnell-Kommentare Einstellungen gespeichert"
#: ../../mod/lostpass.php:85
msgid "Your password has been reset as requested."
msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
#: ../../addon/openstreetmap/openstreetmap.php:95
#: ../../addon.old/openstreetmap/openstreetmap.php:71
msgid "Tile Server URL"
msgstr "Tile Server URL"
#: ../../mod/lostpass.php:86
msgid "Your new password is"
msgstr "Dein neues Passwort lautet"
#: ../../addon/openstreetmap/openstreetmap.php:95
#: ../../addon.old/openstreetmap/openstreetmap.php:71
#: ../../mod/lostpass.php:87
msgid "Save or copy your new password - and then"
msgstr "Speichere oder kopiere dein neues Passwort - und dann"
#: ../../mod/lostpass.php:88
msgid "click here to login"
msgstr "hier klicken, um dich anzumelden"
#: ../../mod/lostpass.php:89
msgid ""
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
"target=\"_blank\">public tile servers</a>"
msgstr "Eine Liste <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">öffentlicher Tile Server</a>"
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast."
#: ../../addon/openstreetmap/openstreetmap.php:96
#: ../../addon.old/openstreetmap/openstreetmap.php:72
msgid "Default zoom"
msgstr "Standard Zoom"
#: ../../addon/openstreetmap/openstreetmap.php:96
#: ../../addon.old/openstreetmap/openstreetmap.php:72
msgid "The default zoom level. (1:world, 18:highest)"
msgstr "Standard Zoomlevel (1: Welt; 18: höchstes)"
#: ../../addon/group_text/group_text.php:46
msgid "Group Text settings updated."
msgstr "Gruppen Text Einstellungen aktualisiert"
#: ../../addon/group_text/group_text.php:76
#: ../../addon.old/group_text/group_text.php:76
msgid "Group Text"
msgstr "Gruppen als Text"
#: ../../addon/group_text/group_text.php:78
#: ../../addon.old/group_text/group_text.php:78
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
msgstr "Beim Bearbeiten von Gruppen Text statt Bilder anzeigen"
#: ../../addon/libravatar/libravatar.php:14
#: ../../addon.old/libravatar/libravatar.php:14
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
msgstr "Kann Libravatar NICHT erfolgreich installieren.<br>PHP >=5.3 wird benötigt"
#: ../../addon/libravatar/libravatar.php:73
#: ../../addon/gravatar/gravatar.php:71
#: ../../addon.old/libravatar/libravatar.php:73
#: ../../addon.old/gravatar/gravatar.php:71
msgid "generic profile image"
msgstr "allgemeines Profilbild"
#: ../../addon/libravatar/libravatar.php:74
#: ../../addon/gravatar/gravatar.php:72
#: ../../addon.old/libravatar/libravatar.php:74
#: ../../addon.old/gravatar/gravatar.php:72
msgid "random geometric pattern"
msgstr "zufällig erzeugtes geometrisches Muster"
#: ../../addon/libravatar/libravatar.php:75
#: ../../addon/gravatar/gravatar.php:73
#: ../../addon.old/libravatar/libravatar.php:75
#: ../../addon.old/gravatar/gravatar.php:73
msgid "monster face"
msgstr "Monstergesicht"
#: ../../addon/libravatar/libravatar.php:76
#: ../../addon/gravatar/gravatar.php:74
#: ../../addon.old/libravatar/libravatar.php:76
#: ../../addon.old/gravatar/gravatar.php:74
msgid "computer generated face"
msgstr "Computergesicht"
#: ../../addon/libravatar/libravatar.php:77
#: ../../addon/gravatar/gravatar.php:75
#: ../../addon.old/libravatar/libravatar.php:77
#: ../../addon.old/gravatar/gravatar.php:75
msgid "retro arcade style face"
msgstr "Retro Arcade Design Gesicht"
#: ../../addon/libravatar/libravatar.php:83
#: ../../addon.old/libravatar/libravatar.php:83
#: ../../mod/lostpass.php:107
#, php-format
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
msgstr "Deine PHP Version %s ist niedriger als die benötigte Version PHP >= 5.3."
msgid "Your password has been changed at %s"
msgstr "Auf %s wurde dein Passwort geändert"
#: ../../addon/libravatar/libravatar.php:84
#: ../../addon.old/libravatar/libravatar.php:84
msgid "This addon is not functional on your server."
msgstr "Dieses Addon funktioniert auf deinem Server nicht."
#: ../../mod/lostpass.php:122
msgid "Forgot your Password?"
msgstr "Hast du dein Passwort vergessen?"
#: ../../addon/libravatar/libravatar.php:93
#: ../../addon/gravatar/gravatar.php:89
#: ../../addon.old/libravatar/libravatar.php:93
#: ../../addon.old/gravatar/gravatar.php:89
msgid "Information"
msgstr "Information"
#: ../../addon/libravatar/libravatar.php:93
#: ../../addon.old/libravatar/libravatar.php:93
#: ../../mod/lostpass.php:123
msgid ""
"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
"Libravatar addon will fall back to Gravatar if nothing was found at "
"Libravatar."
msgstr "Das Gravatar Addon ist installiert. Bitte schalte das Gravatar Addon aus.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden."
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
#: ../../addon/libravatar/libravatar.php:100
#: ../../addon/gravatar/gravatar.php:96
#: ../../addon.old/libravatar/libravatar.php:100
#: ../../addon.old/gravatar/gravatar.php:96
msgid "Default avatar image"
msgstr "Standard Profilbild "
#: ../../mod/lostpass.php:124
msgid "Nickname or Email: "
msgstr "Spitzname oder E-Mail:"
#: ../../addon/libravatar/libravatar.php:100
#: ../../addon.old/libravatar/libravatar.php:100
msgid "Select default avatar image if none was found. See README"
msgstr "Das Standard Avatar Bild wurde nicht gefunden. Siehe README"
#: ../../mod/lostpass.php:125
msgid "Reset"
msgstr "Zurücksetzen"
#: ../../addon/libravatar/libravatar.php:112
#: ../../addon.old/libravatar/libravatar.php:112
msgid "Libravatar settings updated."
msgstr "Libravatar Einstellungen sind aktualisiert."
#: ../../mod/maintenance.php:5
msgid "System down for maintenance"
msgstr "System zur Wartung abgeschaltet"
#: ../../addon/libertree/libertree.php:36
#: ../../addon.old/libertree/libertree.php:36
msgid "Post to libertree"
msgstr "bei libertree veröffentlichen"
#: ../../mod/manage.php:106
msgid "Manage Identities and/or Pages"
msgstr "Verwalte Identitäten und/oder Seiten"
#: ../../addon/libertree/libertree.php:67
#: ../../addon.old/libertree/libertree.php:67
msgid "libertree Post Settings"
msgstr "libertree Post Einstellungen"
#: ../../addon/libertree/libertree.php:69
#: ../../addon.old/libertree/libertree.php:69
msgid "Enable Libertree Post Plugin"
msgstr "Libertree Post Plugin aktivieren"
#: ../../addon/libertree/libertree.php:74
#: ../../addon.old/libertree/libertree.php:74
msgid "Libertree API token"
msgstr "Libertree API Token"
#: ../../addon/libertree/libertree.php:79
#: ../../addon.old/libertree/libertree.php:79
msgid "Libertree site URL"
msgstr "Libertree URL"
#: ../../addon/libertree/libertree.php:84
#: ../../addon.old/libertree/libertree.php:84
msgid "Post to Libertree by default"
msgstr "Standardmäßig bei libertree veröffentlichen"
#: ../../addon/altpager/altpager.php:46
#: ../../addon.old/altpager/altpager.php:46
msgid "Altpager settings updated."
msgstr "Altpager Einstellungen sind aktualisiert."
#: ../../addon/altpager/altpager.php:83
#: ../../addon.old/altpager/altpager.php:79
msgid "Alternate Pagination Setting"
msgstr "Alternative Seitenumbruch Einstellung"
#: ../../addon/altpager/altpager.php:85
#: ../../addon.old/altpager/altpager.php:81
msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
msgstr "Nutze Links zu \"neuer\" und \"älter\" Seiten, statt Seiten Nummern?"
#: ../../addon/altpager/altpager.php:99
msgid "Force global use of the alternate pager"
msgstr "Erzwinge die Verwendung des \"Alternate Pager\" auf diesem Server"
#: ../../addon/altpager/altpager.php:100
msgid "Each user chooses whether to use the alternate pager"
msgstr "Jede/r Nutzer/in kann wählen ob der \"Alternate Pager\" verwendet werden soll"
#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
#: ../../mod/manage.php:107
msgid ""
"The MathJax addon renders mathematical formulae written using the LaTeX "
"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
"your wall,network tab and private mail."
msgstr "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerkstream sowie privaten Nachrichten gerendert."
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr "Zwischen verschiedenen Identitäten oder Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
msgid "Use the MathJax renderer"
msgstr "MathJax verwenden"
#: ../../mod/manage.php:108
msgid "Select an identity to manage: "
msgstr "Wähle eine Identität zum Verwalten: "
#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
msgid "MathJax Base URL"
msgstr "MathJax Basis-URL"
#: ../../mod/match.php:12
msgid "Profile Match"
msgstr "Profilübereinstimmungen"
#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
msgid ""
"The URL for the javascript file that should be included to use MathJax. Can "
"be either the MathJax CDN or another installation of MathJax."
msgstr "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen."
#: ../../mod/match.php:20
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."
#: ../../addon/editplain/editplain.php:46
#: ../../addon.old/group_text/group_text.php:46
#: ../../addon.old/editplain/editplain.php:46
msgid "Editplain settings updated."
msgstr "Editplain Einstellungen aktualisiert"
#: ../../mod/match.php:57
msgid "is interested in:"
msgstr "ist interessiert an:"
#: ../../addon/editplain/editplain.php:76
#: ../../addon.old/editplain/editplain.php:76
msgid "Editplain Settings"
msgstr "Editplain Einstellungen"
#: ../../mod/message.php:67
msgid "Unable to locate contact information."
msgstr "Konnte die Kontaktinformationen nicht finden."
#: ../../addon/editplain/editplain.php:78
#: ../../addon.old/editplain/editplain.php:78
msgid "Disable richtext status editor"
msgstr "RichText Editor deaktivieren"
#: ../../mod/message.php:207
msgid "Do you really want to delete this message?"
msgstr "Möchtest du wirklich diese Nachricht löschen?"
#: ../../addon/gravatar/gravatar.php:89
#: ../../addon.old/gravatar/gravatar.php:89
msgid ""
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
"nothing was found at Libravatar."
msgstr "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere das Libravatar Addon oder dieses Gravatar Addon.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden."
#: ../../mod/message.php:227
msgid "Message deleted."
msgstr "Nachricht gelöscht."
#: ../../addon/gravatar/gravatar.php:96
#: ../../addon.old/gravatar/gravatar.php:96
msgid "Select default avatar image if none was found at Gravatar. See README"
msgstr "Wähle das Standardgesicht, wenn kein Bild auf Gravatar gefunden wurde. Schaue auch sonst im README nach."
#: ../../mod/message.php:258
msgid "Conversation removed."
msgstr "Unterhaltung gelöscht."
#: ../../addon/gravatar/gravatar.php:97
#: ../../addon.old/gravatar/gravatar.php:97
msgid "Rating of images"
msgstr "Bildbewertung"
#: ../../mod/message.php:371
msgid "No messages."
msgstr "Keine Nachrichten."
#: ../../addon/gravatar/gravatar.php:97
#: ../../addon.old/gravatar/gravatar.php:97
msgid "Select the appropriate avatar rating for your site. See README"
msgstr "Wähle eine angemessene Bildbewertung für deinen Server. Schaue auch sonst im README nach."
#: ../../addon/gravatar/gravatar.php:111
#: ../../addon.old/gravatar/gravatar.php:111
msgid "Gravatar settings updated."
msgstr "Gravatar Einstellungen aktualisiert."
#: ../../addon/testdrive/testdrive.php:95
#: ../../addon.old/testdrive/testdrive.php:95
msgid "Your Friendica test account is about to expire."
msgstr "Dein Friendica-Testkonto wird bald verfallen."
#: ../../addon/testdrive/testdrive.php:96
#: ../../addon.old/testdrive/testdrive.php:96
#: ../../mod/message.php:378
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
msgstr "Hallo %1$s,\n\ndein Testkonto auf %2$s wird in weniger als fünf Tagen verfallen. Wir hoffen, dass dir dieser Testlauf gefallen hat, so dass du die Gelegenheit nutzt und dir einen normalen Friendica-Server für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Server findest du auf http://dir.friendica.com/siteinfo . Um mehr Information darüber zu bekommen, wie man einen eigenen Friendica-Server aufsetzt, kannst du auch einen Blick auf die Friendica-Projektseite werfen: http://friendica.com"
msgid "Unknown sender - %s"
msgstr "'Unbekannter Absender - %s"
#: ../../addon/pageheader/pageheader.php:50
#: ../../addon.old/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings"
msgstr "\"pageheader\"-Einstellungen"
#: ../../addon/pageheader/pageheader.php:68
#: ../../addon.old/pageheader/pageheader.php:68
msgid "pageheader Settings saved."
msgstr "pageheader-Einstellungen gespeichert."
#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
msgid "Post to Insanejournal"
msgstr "Auf InsaneJournal posten."
#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
msgid "InsaneJournal Post Settings"
msgstr "InsaneJournal Beitrags-Einstellungen"
#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
msgid "Enable InsaneJournal Post Plugin"
msgstr "InsaneJournal Plugin aktivieren"
#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
msgid "InsaneJournal username"
msgstr "InsaneJournal Benutzername"
#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
msgid "InsaneJournal password"
msgstr "InsaneJournal Passwort"
#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
msgid "Post to InsaneJournal by default"
msgstr "Standardmäßig auf InsaneJournal posten."
#: ../../addon/jappixmini/jappixmini.php:266
#: ../../addon.old/jappixmini/jappixmini.php:266
msgid "Jappix Mini addon settings"
msgstr "Jappix Mini Addon Einstellungen"
#: ../../addon/jappixmini/jappixmini.php:268
#: ../../addon.old/jappixmini/jappixmini.php:268
msgid "Activate addon"
msgstr "Addon aktivieren"
#: ../../addon/jappixmini/jappixmini.php:271
#: ../../addon.old/jappixmini/jappixmini.php:271
msgid ""
"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
msgstr "Füge das Jappix Mini Chat Widget <em>nicht</em> zum Webinterface hinzu"
#: ../../addon/jappixmini/jappixmini.php:274
#: ../../addon.old/jappixmini/jappixmini.php:274
msgid "Jabber username"
msgstr "Jabber Nutzername"
#: ../../addon/jappixmini/jappixmini.php:277
#: ../../addon.old/jappixmini/jappixmini.php:277
msgid "Jabber server"
msgstr "Jabber Server"
#: ../../addon/jappixmini/jappixmini.php:281
#: ../../addon.old/jappixmini/jappixmini.php:281
msgid "Jabber BOSH host"
msgstr "Jabber BOSH Host"
#: ../../addon/jappixmini/jappixmini.php:285
#: ../../addon.old/jappixmini/jappixmini.php:285
msgid "Jabber password"
msgstr "Japper Passwort"
#: ../../addon/jappixmini/jappixmini.php:290
#: ../../addon.old/jappixmini/jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr "Verschlüssele das Jabber Passwort mit dem Friendica Passwort (empfohlen)"
#: ../../addon/jappixmini/jappixmini.php:293
#: ../../addon.old/jappixmini/jappixmini.php:293
msgid "Friendica password"
msgstr "Friendica Passwort"
#: ../../addon/jappixmini/jappixmini.php:296
#: ../../addon.old/jappixmini/jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically"
msgstr "Kontaktanfragen von Friendica Kontakten automatisch akzeptieren"
#: ../../addon/jappixmini/jappixmini.php:299
#: ../../addon.old/jappixmini/jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically"
msgstr "Automatisch Friendica Kontakten bei Jabber folgen"
#: ../../addon/jappixmini/jappixmini.php:302
#: ../../addon.old/jappixmini/jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts"
msgstr "Lösche die interne Liste der Jabber Adressen der Kontakte"
#: ../../addon/jappixmini/jappixmini.php:308
#: ../../addon.old/jappixmini/jappixmini.php:308
msgid "Add contact"
msgstr "Kontakt hinzufügen"
#: ../../addon/viewsrc/viewsrc.php:39 ../../addon.old/viewsrc/viewsrc.php:37
msgid "View Source"
msgstr "Quelle ansehen"
#: ../../addon/statusnet/statusnet.php:138
#: ../../addon.old/statusnet/statusnet.php:134
msgid "Post to StatusNet"
msgstr "Bei StatusNet veröffentlichen"
#: ../../addon/statusnet/statusnet.php:180
#: ../../addon.old/statusnet/statusnet.php:176
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"valid."
msgstr "Bitte kontaktiere den Administrator des Servers.<br />Die angegebene API-URL ist nicht gültig."
#: ../../addon/statusnet/statusnet.php:208
#: ../../addon.old/statusnet/statusnet.php:204
msgid "We could not contact the StatusNet API with the Path you entered."
msgstr "Die StatusNet-API konnte mit dem angegebenen Pfad nicht erreicht werden."
#: ../../addon/statusnet/statusnet.php:238
#: ../../addon.old/statusnet/statusnet.php:232
msgid "StatusNet settings updated."
msgstr "StatusNet Einstellungen aktualisiert."
#: ../../addon/statusnet/statusnet.php:269
#: ../../addon.old/statusnet/statusnet.php:257
msgid "StatusNet Posting Settings"
msgstr "StatusNet-Beitragseinstellungen"
#: ../../addon/statusnet/statusnet.php:283
#: ../../addon.old/statusnet/statusnet.php:271
msgid "Globally Available StatusNet OAuthKeys"
msgstr "Verfügbare OAuth Schlüssel für StatusNet"
#: ../../addon/statusnet/statusnet.php:284
#: ../../addon.old/statusnet/statusnet.php:272
msgid ""
"There are preconfigured OAuth key pairs for some StatusNet servers "
"available. If you are useing one of them, please use these credentials. If "
"not feel free to connect to any other StatusNet instance (see below)."
msgstr "Für einige StatusNet Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen StatusNet Server her (siehe unten)."
#: ../../addon/statusnet/statusnet.php:292
#: ../../addon.old/statusnet/statusnet.php:280
msgid "Provide your own OAuth Credentials"
msgstr "Eigene OAuth Schlüssel eintragen"
#: ../../addon/statusnet/statusnet.php:293
#: ../../addon.old/statusnet/statusnet.php:281
msgid ""
"No consumer key pair for StatusNet found. Register your Friendica Account as"
" an desktop client on your StatusNet account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Friendica installation at your favorited StatusNet installation."
msgstr "Kein Consumer-Schlüsselpaar für StatusNet gefunden. Registriere deinen Friendica-Account als Desktop-Client, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br />Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem StatusNet-Server existiert."
#: ../../addon/statusnet/statusnet.php:295
#: ../../addon.old/statusnet/statusnet.php:283
msgid "OAuth Consumer Key"
msgstr "OAuth Consumer Key"
#: ../../addon/statusnet/statusnet.php:298
#: ../../addon.old/statusnet/statusnet.php:286
msgid "OAuth Consumer Secret"
msgstr "OAuth Consumer Secret"
#: ../../addon/statusnet/statusnet.php:301
#: ../../addon.old/statusnet/statusnet.php:289
msgid "Base API Path (remember the trailing /)"
msgstr "Basis-URL der StatusNet-API (vergiss den abschließenden / nicht)"
#: ../../addon/statusnet/statusnet.php:322
#: ../../addon.old/statusnet/statusnet.php:310
msgid ""
"To connect to your StatusNet account click the button below to get a "
"security code from StatusNet which you have to copy into the input box below"
" and submit the form. Only your <strong>public</strong> posts will be posted"
" to StatusNet."
msgstr "Um dein Konto mit einem StatusNet-Konto zu verknüpfen, klicke den Button an, um einen Sicherheitscode von StatusNet zu erhalten, und kopiere diesen in das Eingabefeld weiter unten. Es werden ausschließlich deine <strong>öffentlichen</strong> Nachrichten an StatusNet gesendet."
#: ../../addon/statusnet/statusnet.php:323
#: ../../addon.old/statusnet/statusnet.php:311
msgid "Log in with StatusNet"
msgstr "Bei StatusNet anmelden"
#: ../../addon/statusnet/statusnet.php:325
#: ../../addon.old/statusnet/statusnet.php:313
msgid "Copy the security code from StatusNet here"
msgstr "Kopiere den Sicherheitscode von StatusNet hier hin"
#: ../../addon/statusnet/statusnet.php:331
#: ../../addon.old/statusnet/statusnet.php:319
msgid "Cancel Connection Process"
msgstr "Verbindungsprozess abbrechen"
#: ../../addon/statusnet/statusnet.php:333
#: ../../addon.old/statusnet/statusnet.php:321
msgid "Current StatusNet API is"
msgstr "Derzeitige StatusNet-API-URL lautet"
#: ../../addon/statusnet/statusnet.php:334
#: ../../addon.old/statusnet/statusnet.php:322
msgid "Cancel StatusNet Connection"
msgstr "Verbindung zum StatusNet Server abbrechen"
#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
#: ../../addon.old/statusnet/statusnet.php:333
#: ../../addon.old/twitter/twitter.php:189
msgid "Currently connected to: "
msgstr "Momentan verbunden mit: "
#: ../../addon/statusnet/statusnet.php:346
#: ../../addon.old/statusnet/statusnet.php:334
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated StatusNet account. You can choose to do so by default (here) or "
"for every posting separately in the posting options when writing the entry."
msgstr "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen StatusNet-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen."
#: ../../addon/statusnet/statusnet.php:348
#: ../../addon.old/statusnet/statusnet.php:336
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to StatusNet will lead the visitor to a blank page "
"informing the visitor that the access to your profile has been restricted."
msgstr "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an deinen StatusNet-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde."
#: ../../addon/statusnet/statusnet.php:351
#: ../../addon.old/statusnet/statusnet.php:339
msgid "Allow posting to StatusNet"
msgstr "Veröffentlichung bei StatusNet erlauben"
#: ../../addon/statusnet/statusnet.php:354
#: ../../addon.old/statusnet/statusnet.php:342
msgid "Send public postings to StatusNet by default"
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet"
#: ../../addon/statusnet/statusnet.php:358
msgid ""
"Mirror all posts from statusnet that are no replies or repeated messages"
msgstr "Spiegle alle Beiträge von StatusNet die keine Antworten oder wiederholten Nachrichten sind"
#: ../../addon/statusnet/statusnet.php:362
msgid "Shortening method that optimizes the post"
msgstr "Kürzungsverfahren, das den Beitrag optimiert"
#: ../../addon/statusnet/statusnet.php:366
#: ../../addon.old/statusnet/statusnet.php:345
msgid "Send linked #-tags and @-names to StatusNet"
msgstr "Sende verlinkte #-Tags und @-Namen nach StatusNet"
#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
#: ../../addon.old/statusnet/statusnet.php:350
#: ../../addon.old/twitter/twitter.php:206
msgid "Clear OAuth configuration"
msgstr "OAuth-Konfiguration löschen"
#: ../../addon/statusnet/statusnet.php:745
#: ../../addon.old/statusnet/statusnet.php:568
msgid "API URL"
msgstr "API-URL"
#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
msgid "Infinite Improbability Drive"
msgstr "Infinite Improbability Drive"
#: ../../addon/tumblr/tumblr.php:144
msgid "You are now authenticated to tumblr."
msgstr "Du bist nun auf tumblr authentifiziert."
#: ../../addon/tumblr/tumblr.php:145
msgid "return to the connector page"
msgstr "zurück zur Connector Seite"
#: ../../addon/tumblr/tumblr.php:158 ../../addon.old/tumblr/tumblr.php:36
msgid "Post to Tumblr"
msgstr "Bei Tumblr veröffentlichen"
#: ../../addon/tumblr/tumblr.php:185 ../../addon.old/tumblr/tumblr.php:67
msgid "Tumblr Post Settings"
msgstr "Tumblr-Beitragseinstellungen"
#: ../../addon/tumblr/tumblr.php:188
msgid "(Re-)Authenticate your tumblr page"
msgstr "(Re-)Authentifizierung deiner tumblr Seite"
#: ../../addon/tumblr/tumblr.php:192 ../../addon.old/tumblr/tumblr.php:69
msgid "Enable Tumblr Post Plugin"
msgstr "Tumblr-Plugin aktivieren"
#: ../../addon/tumblr/tumblr.php:197 ../../addon.old/tumblr/tumblr.php:84
msgid "Post to Tumblr by default"
msgstr "Standardmäßig bei Tumblr veröffentlichen"
#: ../../addon/tumblr/tumblr.php:217
msgid "Post to page:"
msgstr "Auf tumblr veröffentlichen"
#: ../../addon/tumblr/tumblr.php:228
msgid "You are not authenticated to tumblr"
msgstr "Du bist gegenüber tumblr nicht authentifiziert"
#: ../../addon/numfriends/numfriends.php:46
#: ../../addon.old/numfriends/numfriends.php:46
msgid "Numfriends settings updated."
msgstr "Numfriends Einstellungen aktualisiert"
#: ../../addon/numfriends/numfriends.php:77
#: ../../addon.old/numfriends/numfriends.php:77
msgid "Numfriends Settings"
msgstr "Numfriends Einstellungen"
#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
#: ../../addon.old/numfriends/numfriends.php:79
msgid "How many contacts to display on profile sidebar"
msgstr "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden"
#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
msgid "Gnot settings updated."
msgstr "Gnot Einstellungen aktualisiert."
#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
msgid "Gnot Settings"
msgstr "Gnot Einstellungen"
#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
msgid ""
"Allows threading of email comment notifications on Gmail and anonymising the"
" subject line."
msgstr "Erlaubt das Veröffentlichen von E-Mail Kommentar Benachrichtigungen bei Gmail mit anonymisiertem Betreff"
#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
msgid "Enable this plugin/addon?"
msgstr "Dieses Plugin/Addon aktivieren?"
#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
#: ../../mod/message.php:381
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%d"
msgid "You and %s"
msgstr "Du und %s"
#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
msgid "Post to Wordpress"
msgstr "Bei WordPress veröffentlichen"
#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
msgid "WordPress Post Settings"
msgstr "WordPress-Beitragseinstellungen"
#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
msgid "Enable WordPress Post Plugin"
msgstr "WordPress-Plugin aktivieren."
#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
msgid "WordPress username"
msgstr "WordPress-Benutzername"
#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
msgid "WordPress password"
msgstr "WordPress-Passwort"
#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
msgid "WordPress API URL"
msgstr "WordPress-API-URL"
#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
msgid "Post to WordPress by default"
msgstr "Standardmäßig auf WordPress veröffentlichen"
#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
msgid "Provide a backlink to the Friendica post"
msgstr "Einen Link zurück zum Friendica-Beitrag hinzufügen"
#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
#: ../../addon/posterous/posterous.php:189
#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
#: ../../addon.old/blogger/blogger.php:172
#: ../../addon.old/posterous/posterous.php:189
msgid "Post from Friendica"
msgstr "Beitrag via Friendica"
#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
msgid "Read the original post and comment stream on Friendica"
msgstr "Den Originalbeitrag samt Kommentaren bei Friendica lesen"
#: ../../addon/showmore/showmore.php:38
#: ../../addon.old/showmore/showmore.php:38
msgid "\"Show more\" Settings"
msgstr "\"Mehr zeigen\" Einstellungen"
#: ../../addon/showmore/showmore.php:41
#: ../../addon.old/showmore/showmore.php:41
msgid "Enable Show More"
msgstr "Aktiviere \"Mehr zeigen\""
#: ../../addon/showmore/showmore.php:44
#: ../../addon.old/showmore/showmore.php:44
msgid "Cutting posts after how much characters"
msgstr "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben"
#: ../../addon/showmore/showmore.php:65
#: ../../addon.old/showmore/showmore.php:65
msgid "Show More Settings saved."
msgstr "\"Mehr zeigen\" Einstellungen gesichert."
#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
"analytics tool."
msgstr "Diese Website benutzt <a href='http://www.piwik.org'>Piwik</a>, eine Open Source-Software zur statistischen Auswertung der Besucherzugriffe."
#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
#: ../../mod/message.php:384
#, php-format
msgid "%s and You"
msgstr "%s und du"
#: ../../mod/message.php:405 ../../mod/message.php:546
msgid "Delete conversation"
msgstr "Unterhaltung löschen"
#: ../../mod/message.php:408
msgid "D, d M Y - g:i A"
msgstr "D, d. M Y - g:i A"
#: ../../mod/message.php:411
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d Nachricht"
msgstr[1] "%d Nachrichten"
#: ../../mod/message.php:450
msgid "Message not available."
msgstr "Nachricht nicht verfügbar."
#: ../../mod/message.php:520
msgid "Delete message"
msgstr "Nachricht löschen"
#: ../../mod/message.php:548
msgid ""
"If you do not want that your visits are logged this way you <a href='%s'>can"
" set a cookie to prevent Piwik from tracking further visits of the site</a> "
"(opt-out)."
msgstr "Wenn du nicht willst, dass deine Besuche auf diese Weise gespeichert werden, kannst du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik dich auf dieser Website nicht mehr verfolgen (opt-out)."
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
msgid "Piwik Base URL"
msgstr "Piwik Basis URL"
#: ../../mod/message.php:552
msgid "Send Reply"
msgstr "Antwort senden"
#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
#: ../../mod/mood.php:133
msgid "Mood"
msgstr "Stimmung"
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
#: ../../mod/network.php:181
msgid "Search Results For:"
msgstr "Suchergebnisse für:"
#: ../../mod/network.php:397
msgid "Commented Order"
msgstr "Neueste Kommentare"
#: ../../mod/network.php:400
msgid "Sort by Comment Date"
msgstr "Nach Kommentardatum sortieren"
#: ../../mod/network.php:403
msgid "Posted Order"
msgstr "Neueste Beiträge"
#: ../../mod/network.php:406
msgid "Sort by Post Date"
msgstr "Nach Beitragsdatum sortieren"
#: ../../mod/network.php:444 ../../mod/notifications.php:88
msgid "Personal"
msgstr "Persönlich"
#: ../../mod/network.php:447
msgid "Posts that mention or involve you"
msgstr "Beiträge, in denen es um dich geht"
#: ../../mod/network.php:453
msgid "New"
msgstr "Neue"
#: ../../mod/network.php:456
msgid "Activity Stream - by date"
msgstr "Aktivitäten-Stream - nach Datum"
#: ../../mod/network.php:462
msgid "Shared Links"
msgstr "Geteilte Links"
#: ../../mod/network.php:465
msgid "Interesting Links"
msgstr "Interessante Links"
#: ../../mod/network.php:471
msgid "Starred"
msgstr "Markierte"
#: ../../mod/network.php:474
msgid "Favourite Posts"
msgstr "Favorisierte Beiträge"
#: ../../mod/network.php:546
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
#: ../../mod/network.php:549
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
#: ../../mod/network.php:596 ../../mod/content.php:119
msgid "No such group"
msgstr "Es gibt keine solche Gruppe"
#: ../../mod/network.php:607 ../../mod/content.php:130
msgid "Group is empty"
msgstr "Gruppe ist leer"
#: ../../mod/network.php:611 ../../mod/content.php:134
msgid "Group: "
msgstr "Gruppe: "
#: ../../mod/network.php:621
msgid "Contact: "
msgstr "Kontakt: "
#: ../../mod/network.php:623
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
#: ../../mod/network.php:628
msgid "Invalid contact."
msgstr "Ungültiger Kontakt."
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Nicht verfügbar."
#: ../../mod/photos.php:51 ../../boot.php:1878
msgid "Photo Albums"
msgstr "Fotoalben"
#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
msgid "Upload New Photos"
msgstr "Neue Fotos hochladen"
#: ../../mod/photos.php:143
msgid "Contact information unavailable"
msgstr "Kontaktinformationen nicht verfügbar"
#: ../../mod/photos.php:164
msgid "Album not found."
msgstr "Album nicht gefunden."
#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
msgid "Delete Album"
msgstr "Album löschen"
#: ../../mod/photos.php:197
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"
#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
msgid "Delete Photo"
msgstr "Foto löschen"
#: ../../mod/photos.php:285
msgid "Do you really want to delete this photo?"
msgstr "Möchtest du wirklich dieses Foto löschen?"
#: ../../mod/photos.php:656
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s wurde von %3$s in %2$s getaggt"
#: ../../mod/photos.php:656
msgid "a photo"
msgstr "einem Foto"
#: ../../mod/photos.php:769
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
#: ../../mod/photos.php:924
msgid "No photos selected"
msgstr "Keine Bilder ausgewählt"
#: ../../mod/photos.php:1025
msgid "Access to this item is restricted."
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
#: ../../mod/photos.php:1088
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
#: ../../mod/photos.php:1123
msgid "Upload Photos"
msgstr "Bilder hochladen"
#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
msgid "New album name: "
msgstr "Name des neuen Albums: "
#: ../../mod/photos.php:1128
msgid "or existing album name: "
msgstr "oder existierender Albumname: "
#: ../../mod/photos.php:1129
msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
msgid "Permissions"
msgstr "Berechtigungen"
#: ../../mod/photos.php:1142
msgid "Private Photo"
msgstr "Privates Foto"
#: ../../mod/photos.php:1143
msgid "Public Photo"
msgstr "Öffentliches Foto"
#: ../../mod/photos.php:1210
msgid "Edit Album"
msgstr "Album bearbeiten"
#: ../../mod/photos.php:1216
msgid "Show Newest First"
msgstr "Zeige neueste zuerst"
#: ../../mod/photos.php:1218
msgid "Show Oldest First"
msgstr "Zeige älteste zuerst"
#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
msgid "View Photo"
msgstr "Foto betrachten"
#: ../../mod/photos.php:1286
msgid "Permission denied. Access to this item may be restricted."
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
#: ../../mod/photos.php:1288
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
#: ../../mod/photos.php:1344
msgid "View photo"
msgstr "Fotos ansehen"
#: ../../mod/photos.php:1344
msgid "Edit photo"
msgstr "Foto bearbeiten"
#: ../../mod/photos.php:1345
msgid "Use as profile photo"
msgstr "Als Profilbild verwenden"
#: ../../mod/photos.php:1351 ../../mod/content.php:643
#: ../../object/Item.php:106
msgid "Private Message"
msgstr "Private Nachricht"
#: ../../mod/photos.php:1370
msgid "View Full Size"
msgstr "Betrachte Originalgröße"
#: ../../mod/photos.php:1444
msgid "Tags: "
msgstr "Tags: "
#: ../../mod/photos.php:1447
msgid "[Remove any tag]"
msgstr "[Tag entfernen]"
#: ../../mod/photos.php:1487
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
#: ../../mod/photos.php:1488
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
#: ../../mod/photos.php:1490
msgid "New album name"
msgstr "Name des neuen Albums"
#: ../../mod/photos.php:1493
msgid "Caption"
msgstr "Bildunterschrift"
#: ../../mod/photos.php:1495
msgid "Add a Tag"
msgstr "Tag hinzufügen"
#: ../../mod/photos.php:1499
msgid ""
"Absolute path to your Piwik installation. (without protocol (http/s), with "
"trailing slash)"
msgstr "Absoluter Pfad zu deiner Piwik Installation (ohne Protokoll (http/s) und mit abschließendem Schrägstrich)"
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
msgid "Site ID"
msgstr "Seiten ID"
#: ../../mod/photos.php:1508
msgid "Private photo"
msgstr "Privates Foto"
#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
msgid "Show opt-out cookie link?"
msgstr "Link zum Setzen des Opt-Out Cookies anzeigen?"
#: ../../mod/photos.php:1509
msgid "Public photo"
msgstr "Öffentliches Foto"
#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
msgid "Asynchronous tracking"
msgstr "Asynchrones Tracken"
#: ../../mod/photos.php:1529 ../../mod/content.php:707
#: ../../object/Item.php:223
msgid "I like this (toggle)"
msgstr "Ich mag das (toggle)"
#: ../../addon/twitter/twitter.php:77 ../../addon.old/twitter/twitter.php:73
msgid "Post to Twitter"
msgstr "Bei Twitter veröffentlichen"
#: ../../mod/photos.php:1530 ../../mod/content.php:708
#: ../../object/Item.php:224
msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (toggle)"
#: ../../addon/twitter/twitter.php:129 ../../addon.old/twitter/twitter.php:122
msgid "Twitter settings updated."
msgstr "Twitter Einstellungen aktualisiert."
#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
#: ../../mod/photos.php:1676 ../../mod/content.php:730
#: ../../object/Item.php:640
msgid "This is you"
msgstr "Das bist du"
#: ../../addon/twitter/twitter.php:157 ../../addon.old/twitter/twitter.php:146
msgid "Twitter Posting Settings"
msgstr "Twitter-Beitragseinstellungen"
#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
#: ../../mod/photos.php:1678 ../../mod/content.php:732
#: ../../object/Item.php:329 ../../object/Item.php:642 ../../boot.php:651
msgid "Comment"
msgstr "Kommentar"
#: ../../addon/twitter/twitter.php:164 ../../addon.old/twitter/twitter.php:153
#: ../../mod/photos.php:1784
msgid "View Album"
msgstr "Album betrachten"
#: ../../mod/photos.php:1793
msgid "Recent Photos"
msgstr "Neueste Fotos"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Willkommen bei Friendica"
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Checkliste für neue Mitglieder"
#: ../../mod/newmember.php:12
msgid ""
"No consumer key pair for Twitter found. Please contact your site "
"administrator."
msgstr "Kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte wende dich an den Administrator der Seite."
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
#: ../../addon/twitter/twitter.php:183 ../../addon.old/twitter/twitter.php:172
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr "Einstieg"
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr "Friendica Rundgang"
#: ../../mod/newmember.php:18
msgid ""
"At this Friendica instance the Twitter plugin was enabled but you have not "
"yet connected your account to your Twitter account. To do so click the "
"button below to get a PIN from Twitter which you have to copy into the input"
" box below and submit the form. Only your <strong>public</strong> posts will"
" be posted to Twitter."
msgstr "Auf diesem Friendica-Server wurde das Twitter-Plugin aktiviert, aber du hast deinen Account noch nicht mit deinem Twitter-Account verbunden. Klicke dazu auf die Schaltfläche unten. Du erhältst dann eine PIN von Twitter, die du dann in das Eingabefeld unten einfügst. Denk daran, den Senden-Knopf zu drücken! Nur <strong>öffentliche</strong> Beiträge werden bei Twitter veröffentlicht."
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
#: ../../addon/twitter/twitter.php:184 ../../addon.old/twitter/twitter.php:173
msgid "Log in with Twitter"
msgstr "bei Twitter anmelden"
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr "Gehe zu deinen Einstellungen"
#: ../../addon/twitter/twitter.php:186 ../../addon.old/twitter/twitter.php:175
msgid "Copy the PIN from Twitter here"
msgstr "Kopiere die Twitter-PIN hier her"
#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:190
#: ../../mod/newmember.php:26
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated Twitter account. You can choose to do so by default (here) or for"
" every posting separately in the posting options when writing the entry."
msgstr "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen."
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
#: ../../addon/twitter/twitter.php:203 ../../addon.old/twitter/twitter.php:192
#: ../../mod/newmember.php:28
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to Twitter will lead the visitor to a blank page informing "
"the visitor that the access to your profile has been restricted."
msgstr "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an an deinen Twitter-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde."
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
#: ../../addon/twitter/twitter.php:206 ../../addon.old/twitter/twitter.php:195
msgid "Allow posting to Twitter"
msgstr "Veröffentlichung bei Twitter erlauben"
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
msgstr "Profilbild hochladen"
#: ../../addon/twitter/twitter.php:209 ../../addon.old/twitter/twitter.php:198
msgid "Send public postings to Twitter by default"
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter"
#: ../../addon/twitter/twitter.php:213
msgid "Mirror all posts from twitter that are no replies or retweets"
msgstr "Spiegle alle Beiträge von Twitter die keine Antworten oder wiederholten Nachrichten sind"
#: ../../addon/twitter/twitter.php:217
msgid "Shortening method that optimizes the tweet"
msgstr "Kürzungsverfahren, das den Tweet optimiert"
#: ../../addon/twitter/twitter.php:221 ../../addon.old/twitter/twitter.php:201
msgid "Send linked #-tags and @-names to Twitter"
msgstr "Sende verlinkte #-Tags und @-Namen nach Twitter"
#: ../../addon/twitter/twitter.php:558 ../../addon.old/twitter/twitter.php:396
msgid "Consumer key"
msgstr "Consumer Key"
#: ../../addon/twitter/twitter.php:559 ../../addon.old/twitter/twitter.php:397
msgid "Consumer secret"
msgstr "Consumer Secret"
#: ../../addon/twitter/twitter.php:560
msgid "Name of the Twitter Application"
msgstr "Name der Twitter Anwendung"
#: ../../addon/twitter/twitter.php:560
#: ../../mod/newmember.php:36
msgid ""
"set this to avoid mirroring postings from ~friendica back to ~friendica"
msgstr "Setze dies um eine Spiegelung von ~friendica zu ~friendica zu vermeiden"
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
msgid "IRC Settings"
msgstr "IRC Einstellungen"
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr "Editiere dein Profil"
#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
msgid "Channel(s) to auto connect (comma separated)"
msgstr "mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)"
#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
msgid "Popular Channels (comma separated)"
msgstr "Beliebte Kanäle (mit Komma getrennt)"
#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
msgid "IRC settings saved."
msgstr "IRC Einstellungen gespeichert."
#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
msgid "IRC Chatroom"
msgstr "IRC Chatraum"
#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
msgid "Popular Channels"
msgstr "Beliebte Räume"
#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
msgid "Fromapp settings updated."
msgstr "FromApp Einstellungen aktualisiert."
#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
msgid "FromApp Settings"
msgstr "FromApp Einstellungen"
#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
#: ../../mod/newmember.php:38
msgid ""
"The application name you would like to show your posts originating from."
msgstr "Der Name der Anwendung von der deine Beiträge stammen sollen."
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
msgid "Use this application name even if another application was used."
msgstr "Verwende diesen Namen auch wenn eine andere Anwendung den Anwendungsnamen bereits gesetzt hat."
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr "Profil Schlüsselbegriffe"
#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
msgid "Post to blogger"
msgstr "Auf Blogger posten"
#: ../../mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
msgid "Blogger Post Settings"
msgstr "Einstellungen zum posten auf Blogger"
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr "Verbindungen knüpfen"
#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
msgid "Enable Blogger Post Plugin"
msgstr "Blogger-Post-Plugin aktivieren"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
msgid "Blogger username"
msgstr "Blogger-Benutzername"
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
msgid "Blogger password"
msgstr "Blogger-Passwort"
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr "Emails Importieren"
#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
msgid "Blogger API URL"
msgstr "Blogger-API-URL"
#: ../../mod/newmember.php:56
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
msgid "Post to Blogger by default"
msgstr "Standardmäßig auf Blogger posten"
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr "Gehe zu deiner Kontakt-Seite"
#: ../../addon/posterous/posterous.php:37
#: ../../addon.old/posterous/posterous.php:37
msgid "Post to Posterous"
msgstr "Nach Posterous senden"
#: ../../mod/newmember.php:58
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog."
msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
#: ../../addon/posterous/posterous.php:70
#: ../../addon.old/posterous/posterous.php:70
msgid "Posterous Post Settings"
msgstr "Posterous Beitrags-Einstellungen"
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
#: ../../addon/posterous/posterous.php:72
#: ../../addon.old/posterous/posterous.php:72
msgid "Enable Posterous Post Plugin"
msgstr "Posterous-Plugin aktivieren"
#: ../../mod/newmember.php:60
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
#: ../../addon/posterous/posterous.php:77
#: ../../addon.old/posterous/posterous.php:77
msgid "Posterous login"
msgstr "Posterous-Anmeldename"
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr "Neue Leute kennenlernen"
#: ../../addon/posterous/posterous.php:82
#: ../../addon.old/posterous/posterous.php:82
msgid "Posterous password"
msgstr "Posterous-Passwort"
#: ../../mod/newmember.php:62
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
#: ../../addon/posterous/posterous.php:87
#: ../../addon.old/posterous/posterous.php:87
msgid "Posterous site ID"
msgstr "Posterous site ID"
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr "Gruppiere deine Kontakte"
#: ../../addon/posterous/posterous.php:92
#: ../../addon.old/posterous/posterous.php:92
msgid "Posterous API token"
msgstr "Posterous API token"
#: ../../mod/newmember.php:70
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
#: ../../addon/posterous/posterous.php:97
#: ../../addon.old/posterous/posterous.php:97
msgid "Post to Posterous by default"
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous"
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr "Warum sind meine Beiträge nicht öffentlich?"
#: ../../mod/newmember.php:73
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr "Hilfe bekommen"
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr "Zum Hilfe Abschnitt gehen"
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
#: ../../mod/profile.php:21 ../../boot.php:1246
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: ../../mod/profile.php:180
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "Invalid request identifier."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
#: ../../mod/notifications.php:211
msgid "Discard"
msgstr "Verwerfen"
#: ../../mod/notifications.php:78
msgid "System"
msgstr "System"
#: ../../mod/notifications.php:122
msgid "Show Ignored Requests"
msgstr "Zeige ignorierte Anfragen"
#: ../../mod/notifications.php:122
msgid "Hide Ignored Requests"
msgstr "Verberge ignorierte Anfragen"
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
msgid "Notification type: "
msgstr "Benachrichtigungstyp: "
#: ../../mod/notifications.php:150
msgid "Friend Suggestion"
msgstr "Kontaktvorschlag"
#: ../../mod/notifications.php:152
#, php-format
msgid "suggested by %s"
msgstr "vorgeschlagen von %s"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "Post a new friend activity"
msgstr "Neue-Kontakt Nachricht senden"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "if applicable"
msgstr "falls anwendbar"
#: ../../mod/notifications.php:181
msgid "Claims to be known to you: "
msgstr "Behauptet dich zu kennen: "
#: ../../mod/notifications.php:181
msgid "yes"
msgstr "ja"
#: ../../mod/notifications.php:181
msgid "no"
msgstr "nein"
#: ../../mod/notifications.php:188
msgid "Approve as: "
msgstr "Genehmigen als: "
#: ../../mod/notifications.php:189
msgid "Friend"
msgstr "Freund"
#: ../../mod/notifications.php:190
msgid "Sharer"
msgstr "Teilenden"
#: ../../mod/notifications.php:190
msgid "Fan/Admirer"
msgstr "Fan/Verehrer"
#: ../../mod/notifications.php:196
msgid "Friend/Connect Request"
msgstr "Kontakt-/Freundschaftsanfrage"
#: ../../mod/notifications.php:196
msgid "New Follower"
msgstr "Neuer Bewunderer"
#: ../../mod/notifications.php:217
msgid "No introductions."
msgstr "Keine Kontaktanfragen."
#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
#: ../../mod/notifications.php:469
#, php-format
msgid "%s liked %s's post"
msgstr "%s mag %ss Beitrag"
#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
#: ../../mod/notifications.php:478
#, php-format
msgid "%s disliked %s's post"
msgstr "%s mag %ss Beitrag nicht"
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
#: ../../mod/notifications.php:492
#, php-format
msgid "%s is now friends with %s"
msgstr "%s ist jetzt mit %s befreundet"
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#, php-format
msgid "%s created a new post"
msgstr "%s hat einen neuen Beitrag erstellt"
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
#: ../../mod/notifications.php:501
#, php-format
msgid "%s commented on %s's post"
msgstr "%s hat %ss Beitrag kommentiert"
#: ../../mod/notifications.php:302
msgid "No more network notifications."
msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
#: ../../mod/notifications.php:306
msgid "Network Notifications"
msgstr "Netzwerk Benachrichtigungen"
#: ../../mod/notifications.php:332 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr "Keine weiteren Systembenachrichtigungen."
#: ../../mod/notifications.php:336 ../../mod/notify.php:65
msgid "System Notifications"
msgstr "Systembenachrichtigungen"
#: ../../mod/notifications.php:427
msgid "No more personal notifications."
msgstr "Keine weiteren persönlichen Benachrichtigungen"
#: ../../mod/notifications.php:431
msgid "Personal Notifications"
msgstr "Persönliche Benachrichtigungen"
#: ../../mod/notifications.php:508
msgid "No more home notifications."
msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
#: ../../mod/notifications.php:512
msgid "Home Notifications"
msgstr "Pinnwand Benachrichtigungen"
#: ../../mod/oexchange.php:25
msgid "Post successful."
msgstr "Beitrag erfolgreich veröffentlicht."
#: ../../mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
#: ../../mod/openid.php:53
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet."
#: ../../mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen."
#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
#, php-format
msgid "Image size reduction [%s] failed."
msgstr "Verkleinern der Bildgröße von [%s] ist gescheitert."
#: ../../mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
#: ../../mod/profile_photo.php:128
msgid "Unable to process image"
msgstr "Bild konnte nicht verarbeitet werden"
#: ../../mod/profile_photo.php:242
msgid "Upload File:"
msgstr "Datei hochladen:"
#: ../../mod/profile_photo.php:243
msgid "Select a profile:"
msgstr "Profil auswählen"
#: ../../mod/profile_photo.php:248
msgid "skip this step"
msgstr "diesen Schritt überspringen"
#: ../../mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr "wähle ein Foto von deinen Fotoalben"
#: ../../mod/profile_photo.php:262
msgid "Crop Image"
msgstr "Bild zurechtschneiden"
#: ../../mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
#: ../../mod/profile_photo.php:265
msgid "Done Editing"
msgstr "Bearbeitung abgeschlossen"
#: ../../mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr "Bild erfolgreich auf den Server geladen."
#: ../../mod/content.php:626 ../../object/Item.php:352
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d Kommentar"
msgstr[1] "%d Kommentare"
#: ../../mod/content.php:707 ../../object/Item.php:223
msgid "like"
msgstr "mag ich"
#: ../../mod/content.php:708 ../../object/Item.php:224
msgid "dislike"
msgstr "mag ich nicht"
#: ../../mod/content.php:710 ../../object/Item.php:226
msgid "Share this"
msgstr "Weitersagen"
#: ../../mod/content.php:710 ../../object/Item.php:226
msgid "share"
msgstr "Teilen"
#: ../../mod/content.php:734 ../../object/Item.php:644
msgid "Bold"
msgstr "Fett"
#: ../../mod/content.php:735 ../../object/Item.php:645
msgid "Italic"
msgstr "Kursiv"
#: ../../mod/content.php:736 ../../object/Item.php:646
msgid "Underline"
msgstr "Unterstrichen"
#: ../../mod/content.php:737 ../../object/Item.php:647
msgid "Quote"
msgstr "Zitat"
#: ../../mod/content.php:738 ../../object/Item.php:648
msgid "Code"
msgstr "Code"
#: ../../mod/content.php:739 ../../object/Item.php:649
msgid "Image"
msgstr "Bild"
#: ../../mod/content.php:740 ../../object/Item.php:650
msgid "Link"
msgstr "Verweis"
#: ../../mod/content.php:741 ../../object/Item.php:651
msgid "Video"
msgstr "Video"
#: ../../mod/content.php:776 ../../object/Item.php:202
msgid "add star"
msgstr "markieren"
#: ../../mod/content.php:777 ../../object/Item.php:203
msgid "remove star"
msgstr "Markierung entfernen"
#: ../../mod/content.php:778 ../../object/Item.php:204
msgid "toggle star status"
msgstr "Markierung umschalten"
#: ../../mod/content.php:781 ../../object/Item.php:207
msgid "starred"
msgstr "markiert"
#: ../../mod/content.php:782 ../../object/Item.php:212
msgid "add tag"
msgstr "Tag hinzufügen"
#: ../../mod/content.php:786 ../../object/Item.php:123
msgid "save to folder"
msgstr "In Ordner speichern"
#: ../../mod/content.php:877 ../../object/Item.php:299
msgid "to"
msgstr "zu"
#: ../../mod/content.php:878 ../../object/Item.php:301
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
#: ../../mod/content.php:879 ../../object/Item.php:302
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
#: ../../object/Item.php:300
msgid "via"
msgstr "via"
#: ../../view/theme/cleanzero/config.php:82
#: ../../view/theme/diabook/config.php:154
#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
msgid "Theme settings"
msgstr "Themeneinstellungen"
@ -7933,140 +9721,6 @@ msgstr "Theme Breite festlegen"
msgid "Color scheme"
msgstr "Farbschema"
#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
#: ../../include/nav.php:143
msgid "Your posts and conversations"
msgstr "Deine Beiträge und Unterhaltungen"
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
msgid "Your profile page"
msgstr "Deine Profilseite"
#: ../../view/theme/diabook/theme.php:89
msgid "Your contacts"
msgstr "Deine Kontakte"
#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
msgid "Your photos"
msgstr "Deine Fotos"
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
msgid "Your events"
msgstr "Deine Ereignisse"
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
msgid "Personal notes"
msgstr "Persönliche Notizen"
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
msgid "Your personal photos"
msgstr "Deine privaten Fotos"
#: ../../view/theme/diabook/theme.php:94
#: ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:632
#: ../../view/theme/diabook/config.php:163
msgid "Community Pages"
msgstr "Foren"
#: ../../view/theme/diabook/theme.php:384
#: ../../view/theme/diabook/theme.php:634
#: ../../view/theme/diabook/config.php:165
msgid "Community Profiles"
msgstr "Community-Profile"
#: ../../view/theme/diabook/theme.php:405
#: ../../view/theme/diabook/theme.php:639
#: ../../view/theme/diabook/config.php:170
msgid "Last users"
msgstr "Letzte Nutzer"
#: ../../view/theme/diabook/theme.php:434
#: ../../view/theme/diabook/theme.php:641
#: ../../view/theme/diabook/config.php:172
msgid "Last likes"
msgstr "Zuletzt gemocht"
#: ../../view/theme/diabook/theme.php:479
#: ../../view/theme/diabook/theme.php:640
#: ../../view/theme/diabook/config.php:171
msgid "Last photos"
msgstr "Letzte Fotos"
#: ../../view/theme/diabook/theme.php:516
#: ../../view/theme/diabook/theme.php:637
#: ../../view/theme/diabook/config.php:168
msgid "Find Friends"
msgstr "Freunde finden"
#: ../../view/theme/diabook/theme.php:517
msgid "Local Directory"
msgstr "Lokales Verzeichnis"
#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr "Ähnliche Interessen"
#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Freunde einladen"
#: ../../view/theme/diabook/theme.php:572
#: ../../view/theme/diabook/theme.php:633
#: ../../view/theme/diabook/config.php:164
msgid "Earth Layers"
msgstr "Earth Layers"
#: ../../view/theme/diabook/theme.php:577
msgid "Set zoomfactor for Earth Layers"
msgstr "Zoomfaktor der Earth Layer"
#: ../../view/theme/diabook/theme.php:578
#: ../../view/theme/diabook/config.php:161
msgid "Set longitude (X) for Earth Layers"
msgstr "Longitude (X) der Earth Layer"
#: ../../view/theme/diabook/theme.php:579
#: ../../view/theme/diabook/config.php:162
msgid "Set latitude (Y) for Earth Layers"
msgstr "Latitude (Y) der Earth Layer"
#: ../../view/theme/diabook/theme.php:592
#: ../../view/theme/diabook/theme.php:635
#: ../../view/theme/diabook/config.php:166
msgid "Help or @NewHere ?"
msgstr "Hilfe oder @NewHere"
#: ../../view/theme/diabook/theme.php:599
#: ../../view/theme/diabook/theme.php:636
#: ../../view/theme/diabook/config.php:167
msgid "Connect Services"
msgstr "Verbinde Dienste"
#: ../../view/theme/diabook/theme.php:606
#: ../../view/theme/diabook/theme.php:638
msgid "Last Tweets"
msgstr "Neueste Tweets"
#: ../../view/theme/diabook/theme.php:609
#: ../../view/theme/diabook/config.php:159
msgid "Set twitter search term"
msgstr "Twitter Suchbegriff"
#: ../../view/theme/diabook/theme.php:629
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
msgid "don't show"
msgstr "nicht zeigen"
#: ../../view/theme/diabook/theme.php:629
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
msgid "show"
msgstr "zeigen"
#: ../../view/theme/diabook/theme.php:630
msgid "Show/hide boxes at right-hand column:"
msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
#: ../../view/theme/diabook/config.php:156
#: ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
@ -8080,14 +9734,109 @@ msgstr "Auflösung für die Mittelspalte setzen"
msgid "Set color scheme"
msgstr "Wähle Farbschema"
#: ../../view/theme/diabook/config.php:159
#: ../../view/theme/diabook/theme.php:609
msgid "Set twitter search term"
msgstr "Twitter Suchbegriff"
#: ../../view/theme/diabook/config.php:160
msgid "Set zoomfactor for Earth Layer"
msgstr "Zoomfaktor der Earth Layer"
#: ../../view/theme/diabook/config.php:161
#: ../../view/theme/diabook/theme.php:578
msgid "Set longitude (X) for Earth Layers"
msgstr "Longitude (X) der Earth Layer"
#: ../../view/theme/diabook/config.php:162
#: ../../view/theme/diabook/theme.php:579
msgid "Set latitude (Y) for Earth Layers"
msgstr "Latitude (Y) der Earth Layer"
#: ../../view/theme/diabook/config.php:163
#: ../../view/theme/diabook/theme.php:94
#: ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:632
msgid "Community Pages"
msgstr "Foren"
#: ../../view/theme/diabook/config.php:164
#: ../../view/theme/diabook/theme.php:572
#: ../../view/theme/diabook/theme.php:633
msgid "Earth Layers"
msgstr "Earth Layers"
#: ../../view/theme/diabook/config.php:165
#: ../../view/theme/diabook/theme.php:384
#: ../../view/theme/diabook/theme.php:634
msgid "Community Profiles"
msgstr "Community-Profile"
#: ../../view/theme/diabook/config.php:166
#: ../../view/theme/diabook/theme.php:592
#: ../../view/theme/diabook/theme.php:635
msgid "Help or @NewHere ?"
msgstr "Hilfe oder @NewHere"
#: ../../view/theme/diabook/config.php:167
#: ../../view/theme/diabook/theme.php:599
#: ../../view/theme/diabook/theme.php:636
msgid "Connect Services"
msgstr "Verbinde Dienste"
#: ../../view/theme/diabook/config.php:168
#: ../../view/theme/diabook/theme.php:516
#: ../../view/theme/diabook/theme.php:637
msgid "Find Friends"
msgstr "Freunde finden"
#: ../../view/theme/diabook/config.php:169
msgid "Last tweets"
msgstr "Neueste Tweets"
#: ../../view/theme/diabook/config.php:170
#: ../../view/theme/diabook/theme.php:405
#: ../../view/theme/diabook/theme.php:639
msgid "Last users"
msgstr "Letzte Nutzer"
#: ../../view/theme/diabook/config.php:171
#: ../../view/theme/diabook/theme.php:479
#: ../../view/theme/diabook/theme.php:640
msgid "Last photos"
msgstr "Letzte Fotos"
#: ../../view/theme/diabook/config.php:172
#: ../../view/theme/diabook/theme.php:434
#: ../../view/theme/diabook/theme.php:641
msgid "Last likes"
msgstr "Zuletzt gemocht"
#: ../../view/theme/diabook/theme.php:89
msgid "Your contacts"
msgstr "Deine Kontakte"
#: ../../view/theme/diabook/theme.php:517
msgid "Local Directory"
msgstr "Lokales Verzeichnis"
#: ../../view/theme/diabook/theme.php:577
msgid "Set zoomfactor for Earth Layers"
msgstr "Zoomfaktor der Earth Layer"
#: ../../view/theme/diabook/theme.php:606
#: ../../view/theme/diabook/theme.php:638
msgid "Last Tweets"
msgstr "Neueste Tweets"
#: ../../view/theme/diabook/theme.php:630
msgid "Show/hide boxes at right-hand column:"
msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr "Farbschema wählen"
#: ../../view/theme/quattro/config.php:67
msgid "Alignment"
msgstr "Ausrichtung"
@ -8108,1859 +9857,128 @@ msgstr "Schriftgröße in Beiträgen"
msgid "Textareas font size"
msgstr "Schriftgröße in Eingabefeldern"
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr "Farbschema wählen"
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr "j F, Y"
#: ../../include/profile_advanced.php:23
msgid "j F"
msgstr "j F"
#: ../../include/profile_advanced.php:30
msgid "Birthday:"
msgstr "Geburtstag:"
#: ../../include/profile_advanced.php:34
msgid "Age:"
msgstr "Alter:"
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
msgstr "für %1$d %2$s"
#: ../../include/profile_advanced.php:52
msgid "Tags:"
msgstr "Tags"
#: ../../include/profile_advanced.php:56
msgid "Religion:"
msgstr "Religion:"
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr "Hobbies/Interessen:"
#: ../../include/profile_advanced.php:67
msgid "Contact information and Social Networks:"
msgstr "Kontaktinformationen und Soziale Netzwerke:"
#: ../../include/profile_advanced.php:69
msgid "Musical interests:"
msgstr "Musikalische Interessen:"
#: ../../include/profile_advanced.php:71
msgid "Books, literature:"
msgstr "Literatur/Bücher:"
#: ../../include/profile_advanced.php:73
msgid "Television:"
msgstr "Fernsehen:"
#: ../../include/profile_advanced.php:75
msgid "Film/dance/culture/entertainment:"
msgstr "Filme/Tänze/Kultur/Unterhaltung:"
#: ../../include/profile_advanced.php:77
msgid "Love/Romance:"
msgstr "Liebesleben:"
#: ../../include/profile_advanced.php:79
msgid "Work/employment:"
msgstr "Arbeit/Beschäftigung:"
#: ../../include/profile_advanced.php:81
msgid "School/education:"
msgstr "Schule/Ausbildung:"
#: ../../include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Unbekannt | Nicht kategorisiert"
#: ../../include/contact_selectors.php:33
msgid "Block immediately"
msgstr "Sofort blockieren"
#: ../../include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr "Zwielichtig, Spammer, Selbstdarsteller"
#: ../../include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Ist mir bekannt, hab aber keine Meinung"
#: ../../include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr "OK, wahrscheinlich harmlos"
#: ../../include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr "Seriös, hat mein Vertrauen"
#: ../../include/contact_selectors.php:56
msgid "Frequently"
msgstr "immer wieder"
#: ../../include/contact_selectors.php:57
msgid "Hourly"
msgstr "Stündlich"
#: ../../include/contact_selectors.php:58
msgid "Twice daily"
msgstr "Zweimal täglich"
#: ../../include/contact_selectors.php:77
msgid "OStatus"
msgstr "OStatus"
#: ../../include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr "RSS/Atom"
#: ../../include/contact_selectors.php:82
msgid "Zot!"
msgstr "Zott"
#: ../../include/contact_selectors.php:83
msgid "LinkedIn"
msgstr "LinkedIn"
#: ../../include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr "XMPP/Chat"
#: ../../include/contact_selectors.php:85
msgid "MySpace"
msgstr "MySpace"
#: ../../include/contact_selectors.php:87
msgid "Google+"
msgstr "Google+"
#: ../../include/profile_selectors.php:6
msgid "Male"
msgstr "Männlich"
#: ../../include/profile_selectors.php:6
msgid "Female"
msgstr "Weiblich"
#: ../../include/profile_selectors.php:6
msgid "Currently Male"
msgstr "Momentan männlich"
#: ../../include/profile_selectors.php:6
msgid "Currently Female"
msgstr "Momentan weiblich"
#: ../../include/profile_selectors.php:6
msgid "Mostly Male"
msgstr "Hauptsächlich männlich"
#: ../../include/profile_selectors.php:6
msgid "Mostly Female"
msgstr "Hauptsächlich weiblich"
#: ../../include/profile_selectors.php:6
msgid "Transgender"
msgstr "Transgender"
#: ../../include/profile_selectors.php:6
msgid "Intersex"
msgstr "Intersex"
#: ../../include/profile_selectors.php:6
msgid "Transsexual"
msgstr "Transsexuell"
#: ../../include/profile_selectors.php:6
msgid "Hermaphrodite"
msgstr "Hermaphrodit"
#: ../../include/profile_selectors.php:6
msgid "Neuter"
msgstr "Neuter"
#: ../../include/profile_selectors.php:6
msgid "Non-specific"
msgstr "Nicht spezifiziert"
#: ../../include/profile_selectors.php:6
msgid "Other"
msgstr "Andere"
#: ../../include/profile_selectors.php:6
msgid "Undecided"
msgstr "Unentschieden"
#: ../../include/profile_selectors.php:23
msgid "Males"
msgstr "Männer"
#: ../../include/profile_selectors.php:23
msgid "Females"
msgstr "Frauen"
#: ../../include/profile_selectors.php:23
msgid "Gay"
msgstr "Schwul"
#: ../../include/profile_selectors.php:23
msgid "Lesbian"
msgstr "Lesbisch"
#: ../../include/profile_selectors.php:23
msgid "No Preference"
msgstr "Keine Vorlieben"
#: ../../include/profile_selectors.php:23
msgid "Bisexual"
msgstr "Bisexuell"
#: ../../include/profile_selectors.php:23
msgid "Autosexual"
msgstr "Autosexual"
#: ../../include/profile_selectors.php:23
msgid "Abstinent"
msgstr "Abstinent"
#: ../../include/profile_selectors.php:23
msgid "Virgin"
msgstr "Jungfrauen"
#: ../../include/profile_selectors.php:23
msgid "Deviant"
msgstr "Deviant"
#: ../../include/profile_selectors.php:23
msgid "Fetish"
msgstr "Fetish"
#: ../../include/profile_selectors.php:23
msgid "Oodles"
msgstr "Oodles"
#: ../../include/profile_selectors.php:23
msgid "Nonsexual"
msgstr "Nonsexual"
#: ../../include/profile_selectors.php:42
msgid "Single"
msgstr "Single"
#: ../../include/profile_selectors.php:42
msgid "Lonely"
msgstr "Einsam"
#: ../../include/profile_selectors.php:42
msgid "Available"
msgstr "Verfügbar"
#: ../../include/profile_selectors.php:42
msgid "Unavailable"
msgstr "Nicht verfügbar"
#: ../../include/profile_selectors.php:42
msgid "Has crush"
msgstr "verknallt"
#: ../../include/profile_selectors.php:42
msgid "Infatuated"
msgstr "verliebt"
#: ../../include/profile_selectors.php:42
msgid "Dating"
msgstr "Dating"
#: ../../include/profile_selectors.php:42
msgid "Unfaithful"
msgstr "Untreu"
#: ../../include/profile_selectors.php:42
msgid "Sex Addict"
msgstr "Sexbesessen"
#: ../../include/profile_selectors.php:42 ../../include/user.php:279
#: ../../include/user.php:283
msgid "Friends"
msgstr "Freunde"
#: ../../include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr "Freunde/Zuwendungen"
#: ../../include/profile_selectors.php:42
msgid "Casual"
msgstr "Casual"
#: ../../include/profile_selectors.php:42
msgid "Engaged"
msgstr "Verlobt"
#: ../../include/profile_selectors.php:42
msgid "Married"
msgstr "Verheiratet"
#: ../../include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr "imaginär verheiratet"
#: ../../include/profile_selectors.php:42
msgid "Partners"
msgstr "Partner"
#: ../../include/profile_selectors.php:42
msgid "Cohabiting"
msgstr "zusammenlebend"
#: ../../include/profile_selectors.php:42
msgid "Common law"
msgstr "wilde Ehe"
#: ../../include/profile_selectors.php:42
msgid "Happy"
msgstr "Glücklich"
#: ../../include/profile_selectors.php:42
msgid "Not looking"
msgstr "Nicht auf der Suche"
#: ../../include/profile_selectors.php:42
msgid "Swinger"
msgstr "Swinger"
#: ../../include/profile_selectors.php:42
msgid "Betrayed"
msgstr "Betrogen"
#: ../../include/profile_selectors.php:42
msgid "Separated"
msgstr "Getrennt"
#: ../../include/profile_selectors.php:42
msgid "Unstable"
msgstr "Unstabil"
#: ../../include/profile_selectors.php:42
msgid "Divorced"
msgstr "Geschieden"
#: ../../include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr "imaginär geschieden"
#: ../../include/profile_selectors.php:42
msgid "Widowed"
msgstr "Verwitwet"
#: ../../include/profile_selectors.php:42
msgid "Uncertain"
msgstr "Unsicher"
#: ../../include/profile_selectors.php:42
msgid "It's complicated"
msgstr "Ist kompliziert"
#: ../../include/profile_selectors.php:42
msgid "Don't care"
msgstr "Ist mir nicht wichtig"
#: ../../include/profile_selectors.php:42
msgid "Ask me"
msgstr "Frag mich"
#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
msgid "Starts:"
msgstr "Beginnt:"
#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
msgid "Finishes:"
msgstr "Endet:"
#: ../../include/delivery.php:457 ../../include/notifier.php:775
msgid "(no subject)"
msgstr "(kein Betreff)"
#: ../../include/Scrape.php:583
msgid " on Last.fm"
msgstr " bei Last.fm"
#: ../../include/text.php:262
msgid "prev"
msgstr "vorige"
#: ../../include/text.php:264
msgid "first"
msgstr "erste"
#: ../../include/text.php:293
msgid "last"
msgstr "letzte"
#: ../../include/text.php:296
msgid "next"
msgstr "nächste"
#: ../../include/text.php:314
msgid "newer"
msgstr "neuer"
#: ../../include/text.php:318
msgid "older"
msgstr "älter"
#: ../../include/text.php:657
msgid "No contacts"
msgstr "Keine Kontakte"
#: ../../include/text.php:666
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d Kontakt"
msgstr[1] "%d Kontakte"
#: ../../include/text.php:779
msgid "poke"
msgstr "anstupsen"
#: ../../include/text.php:779 ../../include/conversation.php:211
msgid "poked"
msgstr "stupste"
#: ../../include/text.php:780
msgid "ping"
msgstr "anpingen"
#: ../../include/text.php:780
msgid "pinged"
msgstr "pingte"
#: ../../include/text.php:781
msgid "prod"
msgstr "knuffen"
#: ../../include/text.php:781
msgid "prodded"
msgstr "knuffte"
#: ../../include/text.php:782
msgid "slap"
msgstr "ohrfeigen"
#: ../../include/text.php:782
msgid "slapped"
msgstr "ohrfeigte"
#: ../../include/text.php:783
msgid "finger"
msgstr "befummeln"
#: ../../include/text.php:783
msgid "fingered"
msgstr "befummelte"
#: ../../include/text.php:784
msgid "rebuff"
msgstr "eine Abfuhr erteilen"
#: ../../include/text.php:784
msgid "rebuffed"
msgstr "abfuhrerteilte"
#: ../../include/text.php:796
msgid "happy"
msgstr "glücklich"
#: ../../include/text.php:797
msgid "sad"
msgstr "traurig"
#: ../../include/text.php:798
msgid "mellow"
msgstr "sanft"
#: ../../include/text.php:799
msgid "tired"
msgstr "müde"
#: ../../include/text.php:800
msgid "perky"
msgstr "frech"
#: ../../include/text.php:801
msgid "angry"
msgstr "sauer"
#: ../../include/text.php:802
msgid "stupified"
msgstr "verblüfft"
#: ../../include/text.php:803
msgid "puzzled"
msgstr "verwirrt"
#: ../../include/text.php:804
msgid "interested"
msgstr "interessiert"
#: ../../include/text.php:805
msgid "bitter"
msgstr "verbittert"
#: ../../include/text.php:806
msgid "cheerful"
msgstr "fröhlich"
#: ../../include/text.php:807
msgid "alive"
msgstr "lebendig"
#: ../../include/text.php:808
msgid "annoyed"
msgstr "verärgert"
#: ../../include/text.php:809
msgid "anxious"
msgstr "unruhig"
#: ../../include/text.php:810
msgid "cranky"
msgstr "schrullig"
#: ../../include/text.php:811
msgid "disturbed"
msgstr "verstört"
#: ../../include/text.php:812
msgid "frustrated"
msgstr "frustriert"
#: ../../include/text.php:813
msgid "motivated"
msgstr "motiviert"
#: ../../include/text.php:814
msgid "relaxed"
msgstr "entspannt"
#: ../../include/text.php:815
msgid "surprised"
msgstr "überrascht"
#: ../../include/text.php:979
msgid "January"
msgstr "Januar"
#: ../../include/text.php:979
msgid "February"
msgstr "Februar"
#: ../../include/text.php:979
msgid "March"
msgstr "März"
#: ../../include/text.php:979
msgid "April"
msgstr "April"
#: ../../include/text.php:979
msgid "May"
msgstr "Mai"
#: ../../include/text.php:979
msgid "June"
msgstr "Juni"
#: ../../include/text.php:979
msgid "July"
msgstr "Juli"
#: ../../include/text.php:979
msgid "August"
msgstr "August"
#: ../../include/text.php:979
msgid "September"
msgstr "September"
#: ../../include/text.php:979
msgid "October"
msgstr "Oktober"
#: ../../include/text.php:979
msgid "November"
msgstr "November"
#: ../../include/text.php:979
msgid "December"
msgstr "Dezember"
#: ../../include/text.php:1078
msgid "bytes"
msgstr "Byte"
#: ../../include/text.php:1105 ../../include/text.php:1117
msgid "Click to open/close"
msgstr "Zum öffnen/schließen klicken"
#: ../../include/text.php:1290 ../../include/user.php:237
msgid "default"
msgstr "Standard"
#: ../../include/text.php:1302
msgid "Select an alternate language"
msgstr "Alternative Sprache auswählen"
#: ../../include/text.php:1512
msgid "activity"
msgstr "Aktivität"
#: ../../include/text.php:1515
msgid "post"
msgstr "Beitrag"
#: ../../include/text.php:1670
msgid "Item filed"
msgstr "Beitrag abgelegt"
#: ../../include/diaspora.php:704
msgid "Sharing notification from Diaspora network"
msgstr "Freigabe-Benachrichtigung von Diaspora"
#: ../../include/diaspora.php:2248
msgid "Attachments:"
msgstr "Anhänge:"
#: ../../include/network.php:850
msgid "view full size"
msgstr "Volle Größe anzeigen"
#: ../../include/oembed.php:138
msgid "Embedded content"
msgstr "Eingebetteter Inhalt"
#: ../../include/oembed.php:147
msgid "Embedding disabled"
msgstr "Einbettungen deaktiviert"
#: ../../include/uimport.php:61
msgid "Error decoding account file"
msgstr "Fehler beim Verarbeiten der Account Datei"
#: ../../include/uimport.php:67
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
#: ../../include/uimport.php:72
msgid "Error! I can't import this file: DB schema version is not compatible."
msgstr "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel."
#: ../../include/uimport.php:81
msgid "Error! Cannot check nickname"
msgstr "Fehler! Konnte den Nickname nicht überprüfen."
#: ../../include/uimport.php:85
#, php-format
msgid "User '%s' already exists on this server!"
msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
#: ../../include/uimport.php:104
msgid "User creation error"
msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
#: ../../include/uimport.php:122
msgid "User profile creation error"
msgstr "Fehler beim Anlegen des Nutzerkontos"
#: ../../include/uimport.php:167
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] "%d Kontakt nicht importiert"
msgstr[1] "%d Kontakte nicht importiert"
#: ../../include/uimport.php:245
msgid "Done. You can now login with your username and password"
msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
#: ../../include/group.php:207
msgid "Default privacy group for new contacts"
msgstr "Voreingestellte Gruppe für neue Kontakte"
#: ../../include/group.php:226
msgid "Everybody"
msgstr "Alle Kontakte"
#: ../../include/group.php:249
msgid "edit"
msgstr "bearbeiten"
#: ../../include/group.php:271
msgid "Edit group"
msgstr "Gruppe bearbeiten"
#: ../../include/group.php:272
msgid "Create a new group"
msgstr "Neue Gruppe erstellen"
#: ../../include/group.php:273
msgid "Contacts not in any group"
msgstr "Kontakte in keiner Gruppe"
#: ../../include/nav.php:73 ../../boot.php:1036
msgid "Logout"
msgstr "Abmelden"
#: ../../include/nav.php:73
msgid "End this session"
msgstr "Diese Sitzung beenden"
#: ../../include/nav.php:76 ../../boot.php:1833
msgid "Status"
msgstr "Status"
#: ../../include/nav.php:91
msgid "Sign in"
msgstr "Anmelden"
#: ../../include/nav.php:104
msgid "Home Page"
msgstr "Homepage"
#: ../../include/nav.php:108
msgid "Create an account"
msgstr "Nutzerkonto erstellen"
#: ../../include/nav.php:113
msgid "Help and documentation"
msgstr "Hilfe und Dokumentation"
#: ../../include/nav.php:116
msgid "Apps"
msgstr "Apps"
#: ../../include/nav.php:116
msgid "Addon applications, utilities, games"
msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
#: ../../include/nav.php:118
msgid "Search site content"
msgstr "Inhalt der Seite durchsuchen"
#: ../../include/nav.php:128
msgid "Conversations on this site"
msgstr "Unterhaltungen auf dieser Seite"
#: ../../include/nav.php:130
msgid "Directory"
msgstr "Verzeichnis"
#: ../../include/nav.php:130
msgid "People directory"
msgstr "Nutzerverzeichnis"
#: ../../include/nav.php:140
msgid "Conversations from your friends"
msgstr "Unterhaltungen deiner Kontakte"
#: ../../include/nav.php:141
msgid "Network Reset"
msgstr "Netzwerk zurücksetzen"
#: ../../include/nav.php:141
msgid "Load Network page with no filters"
msgstr "Netzwerk-Seite ohne Filter laden"
#: ../../include/nav.php:149
msgid "Friend Requests"
msgstr "Kontaktanfragen"
#: ../../include/nav.php:151
msgid "See all notifications"
msgstr "Alle Benachrichtigungen anzeigen"
#: ../../include/nav.php:152
msgid "Mark all system notifications seen"
msgstr "Markiere alle Systembenachrichtigungen als gelesen"
#: ../../include/nav.php:156
msgid "Private mail"
msgstr "Private E-Mail"
#: ../../include/nav.php:157
msgid "Inbox"
msgstr "Eingang"
#: ../../include/nav.php:158
msgid "Outbox"
msgstr "Ausgang"
#: ../../include/nav.php:162
msgid "Manage"
msgstr "Verwalten"
#: ../../include/nav.php:162
msgid "Manage other pages"
msgstr "Andere Seiten verwalten"
#: ../../include/nav.php:165
msgid "Delegations"
msgstr "Delegierungen"
#: ../../include/nav.php:169 ../../boot.php:1339
msgid "Profiles"
msgstr "Profile"
#: ../../include/nav.php:169
msgid "Manage/Edit Profiles"
msgstr "Profile Verwalten/Editieren"
#: ../../include/nav.php:171
msgid "Manage/edit friends and contacts"
msgstr "Freunde und Kontakte verwalten/editieren"
#: ../../include/nav.php:178
msgid "Site setup and configuration"
msgstr "Einstellungen der Seite und Konfiguration"
#: ../../include/nav.php:182
msgid "Navigation"
msgstr "Navigation"
#: ../../include/nav.php:182
msgid "Site map"
msgstr "Sitemap"
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Neuen Kontakt hinzufügen"
#: ../../include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr "Adresse oder Web-Link eingeben"
#: ../../include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Beispiel: bob@example.com, http://example.com/barbara"
#: ../../include/contact_widgets.php:23
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d Einladung verfügbar"
msgstr[1] "%d Einladungen verfügbar"
#: ../../include/contact_widgets.php:29
msgid "Find People"
msgstr "Leute finden"
#: ../../include/contact_widgets.php:30
msgid "Enter name or interest"
msgstr "Name oder Interessen eingeben"
#: ../../include/contact_widgets.php:31
msgid "Connect/Follow"
msgstr "Verbinden/Folgen"
#: ../../include/contact_widgets.php:32
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Beispiel: Robert Morgenstein, Angeln"
#: ../../include/contact_widgets.php:36
msgid "Random Profile"
msgstr "Zufälliges Profil"
#: ../../include/contact_widgets.php:70
msgid "Networks"
msgstr "Netzwerke"
#: ../../include/contact_widgets.php:73
msgid "All Networks"
msgstr "Alle Netzwerke"
#: ../../include/contact_widgets.php:103 ../../include/features.php:59
msgid "Saved Folders"
msgstr "Gespeicherte Ordner"
#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
msgid "Everything"
msgstr "Alles"
#: ../../include/contact_widgets.php:135
msgid "Categories"
msgstr "Kategorien"
#: ../../include/auth.php:38
msgid "Logged out."
msgstr "Abgemeldet."
#: ../../include/auth.php:128
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
#: ../../include/auth.php:128
msgid "The error message was:"
msgstr "Die Fehlermeldung lautete:"
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr "Verschiedenes"
#: ../../include/datetime.php:153 ../../include/datetime.php:285
msgid "year"
msgstr "Jahr"
#: ../../include/datetime.php:158 ../../include/datetime.php:286
msgid "month"
msgstr "Monat"
#: ../../include/datetime.php:163 ../../include/datetime.php:288
msgid "day"
msgstr "Tag"
#: ../../include/datetime.php:276
msgid "never"
msgstr "nie"
#: ../../include/datetime.php:282
msgid "less than a second ago"
msgstr "vor weniger als einer Sekunde"
#: ../../include/datetime.php:287
msgid "week"
msgstr "Woche"
#: ../../include/datetime.php:289
msgid "hour"
msgstr "Stunde"
#: ../../include/datetime.php:289
msgid "hours"
msgstr "Stunden"
#: ../../include/datetime.php:290
msgid "minute"
msgstr "Minute"
#: ../../include/datetime.php:290
msgid "minutes"
msgstr "Minuten"
#: ../../include/datetime.php:291
msgid "second"
msgstr "Sekunde"
#: ../../include/datetime.php:291
msgid "seconds"
msgstr "Sekunden"
#: ../../include/datetime.php:300
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s her"
#: ../../include/datetime.php:472 ../../include/items.php:1705
#, php-format
msgid "%s's birthday"
msgstr "%ss Geburtstag"
#: ../../include/datetime.php:473 ../../include/items.php:1706
#, php-format
msgid "Happy Birthday %s"
msgstr "Herzlichen Glückwunsch %s"
#: ../../include/bbcode.php:210 ../../include/bbcode.php:515
msgid "Image/photo"
msgstr "Bild/Foto"
#: ../../include/bbcode.php:272
#, php-format
msgid ""
"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
"href=\"%s\" target=\"external-link\">post</a>"
msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>"
#: ../../include/bbcode.php:480 ../../include/bbcode.php:500
msgid "$1 wrote:"
msgstr "$1 hat geschrieben:"
#: ../../include/bbcode.php:520 ../../include/bbcode.php:521
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
#: ../../include/features.php:23
msgid "General Features"
msgstr "Allgemeine Features"
#: ../../include/features.php:25
msgid "Multiple Profiles"
msgstr "Mehrere Profile"
#: ../../include/features.php:25
msgid "Ability to create multiple profiles"
msgstr "Möglichkeit mehrere Profile zu erstellen"
#: ../../include/features.php:30
msgid "Post Composition Features"
msgstr "Beitragserstellung Features"
#: ../../include/features.php:31
msgid "Richtext Editor"
msgstr "Web-Editor"
#: ../../include/features.php:31
msgid "Enable richtext editor"
msgstr "Den Web-Editor für neue Beiträge aktivieren"
#: ../../include/features.php:32
msgid "Post Preview"
msgstr "Beitragsvorschau"
#: ../../include/features.php:32
msgid "Allow previewing posts and comments before publishing them"
msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
#: ../../include/features.php:37
msgid "Network Sidebar Widgets"
msgstr "Widgets für Netzwerk und Seitenleiste"
#: ../../include/features.php:38
msgid "Search by Date"
msgstr "Archiv"
#: ../../include/features.php:38
msgid "Ability to select posts by date ranges"
msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
#: ../../include/features.php:39
msgid "Group Filter"
msgstr "Gruppen Filter"
#: ../../include/features.php:39
msgid "Enable widget to display Network posts only from selected group"
msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
#: ../../include/features.php:40
msgid "Network Filter"
msgstr "Netzwerk Filter"
#: ../../include/features.php:40
msgid "Enable widget to display Network posts only from selected network"
msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
#: ../../include/features.php:41
msgid "Save search terms for re-use"
msgstr "Speichere Suchanfragen für spätere Wiederholung."
#: ../../include/features.php:46
msgid "Network Tabs"
msgstr "Netzwerk Reiter"
#: ../../include/features.php:47
msgid "Network Personal Tab"
msgstr "Netzwerk-Reiter: Persönlich"
#: ../../include/features.php:47
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"
#: ../../include/features.php:48
msgid "Network New Tab"
msgstr "Netzwerk-Reiter: Neue"
#: ../../include/features.php:48
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
#: ../../include/features.php:49
msgid "Network Shared Links Tab"
msgstr "Netzwerk-Reiter: Geteilte Links"
#: ../../include/features.php:49
msgid "Enable tab to display only Network posts with links in them"
msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
#: ../../include/features.php:54
msgid "Post/Comment Tools"
msgstr "Werkzeuge für Beiträge und Kommentare"
#: ../../include/features.php:55
msgid "Multiple Deletion"
msgstr "Mehrere Beiträge löschen"
#: ../../include/features.php:55
msgid "Select and delete multiple posts/comments at once"
msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
#: ../../include/features.php:56
msgid "Edit Sent Posts"
msgstr "Gesendete Beiträge editieren"
#: ../../include/features.php:56
msgid "Edit and correct posts and comments after sending"
msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
#: ../../include/features.php:57
msgid "Tagging"
msgstr "Tagging"
#: ../../include/features.php:57
msgid "Ability to tag existing posts"
msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
#: ../../include/features.php:58
msgid "Post Categories"
msgstr "Beitragskategorien"
#: ../../include/features.php:58
msgid "Add categories to your posts"
msgstr "Eigene Beiträge mit Kategorien versehen"
#: ../../include/features.php:59
msgid "Ability to file posts under folders"
msgstr "Beiträge in Ordnern speichern aktivieren"
#: ../../include/features.php:60
msgid "Dislike Posts"
msgstr "Beiträge 'nicht mögen'"
#: ../../include/features.php:60
msgid "Ability to dislike posts/comments"
msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
#: ../../include/features.php:61
msgid "Star Posts"
msgstr "Beiträge Markieren"
#: ../../include/features.php:61
msgid "Ability to mark special posts with a star indicator"
msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
#: ../../include/dba.php:41
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
#: ../../include/message.php:15 ../../include/message.php:172
msgid "[no subject]"
msgstr "[kein Betreff]"
#: ../../include/acl_selectors.php:325
msgid "Visible to everybody"
msgstr "Für jeden sichtbar"
#: ../../include/enotify.php:16
msgid "Friendica Notification"
msgstr "Friendica-Benachrichtigung"
#: ../../include/enotify.php:19
msgid "Thank You,"
msgstr "Danke,"
#: ../../include/enotify.php:21
#, php-format
msgid "%s Administrator"
msgstr "der Administrator von %s"
#: ../../include/enotify.php:40
#, php-format
msgid "%s <!item_type!>"
msgstr "%s <!item_type!>"
#: ../../include/enotify.php:44
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
#: ../../include/enotify.php:46
#, php-format
msgid "%1$s sent you a new private message at %2$s."
msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt."
#: ../../include/enotify.php:47
#, php-format
msgid "%1$s sent you %2$s."
msgstr "%1$s schickte dir %2$s."
#: ../../include/enotify.php:47
msgid "a private message"
msgstr "eine private Nachricht"
#: ../../include/enotify.php:48
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."
#: ../../include/enotify.php:90
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
#: ../../include/enotify.php:97
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
#: ../../include/enotify.php:105
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]"
#: ../../include/enotify.php:115
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
#: ../../include/enotify.php:116
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
#: ../../include/enotify.php:119 ../../include/enotify.php:134
#: ../../include/enotify.php:147 ../../include/enotify.php:165
#: ../../include/enotify.php:178
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
#: ../../include/enotify.php:126
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"
#: ../../include/enotify.php:128
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
#: ../../include/enotify.php:130
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr "%1$s hat etwas auf [url=%2$s]deiner Pinnwand[/url] gepostet"
#: ../../include/enotify.php:141
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr "[Friendica-Meldung] %s hat dich erwähnt"
#: ../../include/enotify.php:142
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr "%1$s erwähnte dich auf %2$s"
#: ../../include/enotify.php:143
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
#: ../../include/enotify.php:155
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr "[Friendica-Meldung] %1$s hat dich angestupst"
#: ../../include/enotify.php:156
#, php-format
msgid "%1$s poked you at %2$s"
msgstr "%1$s hat dich auf %2$s angestupst"
#: ../../include/enotify.php:157
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr "%1$s [url=%2$s]hat dich angestupst[/url]."
#: ../../include/enotify.php:172
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt"
#: ../../include/enotify.php:173
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
#: ../../include/enotify.php:174
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
#: ../../include/enotify.php:185
msgid "[Friendica:Notify] Introduction received"
msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
#: ../../include/enotify.php:186
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
#: ../../include/enotify.php:187
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
#: ../../include/enotify.php:190 ../../include/enotify.php:208
#, php-format
msgid "You may visit their profile at %s"
msgstr "Hier kannst du das Profil betrachten: %s"
#: ../../include/enotify.php:192
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
#: ../../include/enotify.php:199
msgid "[Friendica:Notify] Friend suggestion received"
msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
#: ../../include/enotify.php:200
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
#: ../../include/enotify.php:201
#, php-format
msgid ""
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
#: ../../include/enotify.php:206
msgid "Name:"
msgstr "Name:"
#: ../../include/enotify.php:207
msgid "Photo:"
msgstr "Foto:"
#: ../../include/enotify.php:210
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr "Connect-URL fehlt"
#: ../../include/follow.php:59
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
#: ../../include/follow.php:60 ../../include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
#: ../../include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
#: ../../include/follow.php:82
msgid "An author or name was not found."
msgstr "Es wurde kein Autor oder Name gefunden."
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
#: ../../include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
#: ../../include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
#: ../../include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr "Konnte die Kontaktinformationen nicht empfangen."
#: ../../include/follow.php:259
msgid "following"
msgstr "folgen"
#: ../../include/items.php:3373
msgid "A new person is sharing with you at "
msgstr "Eine neue Person teilt mit dir auf "
#: ../../include/items.php:3373
msgid "You have a new follower at "
msgstr "Du hast einen neuen Kontakt auf "
#: ../../include/items.php:3892
msgid "Do you really want to delete this item?"
msgstr "Möchtest du wirklich dieses Item löschen?"
#: ../../include/items.php:4085
msgid "Archives"
msgstr "Archiv"
#: ../../include/user.php:39
msgid "An invitation is required."
msgstr "Du benötigst eine Einladung."
#: ../../include/user.php:44
msgid "Invitation could not be verified."
msgstr "Die Einladung konnte nicht überprüft werden."
#: ../../include/user.php:52
msgid "Invalid OpenID url"
msgstr "Ungültige OpenID URL"
#: ../../include/user.php:67
msgid "Please enter the required information."
msgstr "Bitte trage die erforderlichen Informationen ein."
#: ../../include/user.php:81
msgid "Please use a shorter name."
msgstr "Bitte verwende einen kürzeren Namen."
#: ../../include/user.php:83
msgid "Name too short."
msgstr "Der Name ist zu kurz."
#: ../../include/user.php:98
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
#: ../../include/user.php:103
msgid "Your email domain is not among those allowed on this site."
msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
#: ../../include/user.php:106
msgid "Not a valid email address."
msgstr "Keine gültige E-Mail-Adresse."
#: ../../include/user.php:116
msgid "Cannot use that email."
msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
#: ../../include/user.php:122
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
#: ../../include/user.php:128 ../../include/user.php:226
msgid "Nickname is already registered. Please choose another."
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
#: ../../include/user.php:138
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
#: ../../include/user.php:154
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
#: ../../include/user.php:212
msgid "An error occurred during registration. Please try again."
msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: ../../include/user.php:247
msgid "An error occurred creating your default profile. Please try again."
msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: ../../include/security.php:22
msgid "Welcome "
msgstr "Willkommen "
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr "Bitte lade ein Profilbild hoch."
#: ../../include/security.php:26
msgid "Welcome back "
msgstr "Willkommen zurück "
#: ../../include/security.php:366
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
#: ../../include/Contact.php:115
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: ../../include/Contact.php:225 ../../include/conversation.php:820
msgid "Poke"
msgstr "Anstupsen"
#: ../../include/Contact.php:226 ../../include/conversation.php:814
msgid "View Status"
msgstr "Pinnwand anschauen"
#: ../../include/Contact.php:227 ../../include/conversation.php:815
msgid "View Profile"
msgstr "Profil anschauen"
#: ../../include/Contact.php:228 ../../include/conversation.php:816
msgid "View Photos"
msgstr "Bilder anschauen"
#: ../../include/Contact.php:229 ../../include/Contact.php:251
#: ../../include/conversation.php:817
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
#: ../../include/Contact.php:230 ../../include/Contact.php:251
#: ../../include/conversation.php:818
msgid "Edit Contact"
msgstr "Kontakt bearbeiten"
#: ../../include/Contact.php:231 ../../include/Contact.php:251
#: ../../include/conversation.php:819
msgid "Send PM"
msgstr "Private Nachricht senden"
#: ../../include/conversation.php:207
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s stupste %2$s"
#: ../../include/conversation.php:291
msgid "post/item"
msgstr "Nachricht/Beitrag"
#: ../../include/conversation.php:292
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
#: ../../include/conversation.php:621 ../../object/Item.php:249
msgid "Categories:"
msgstr "Kategorien"
#: ../../include/conversation.php:622 ../../object/Item.php:250
msgid "Filed under:"
msgstr "Abgelegt unter:"
#: ../../include/conversation.php:710
msgid "remove"
msgstr "löschen"
#: ../../include/conversation.php:714
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: ../../include/conversation.php:813
msgid "Follow Thread"
msgstr "Folge der Unterhaltung"
#: ../../include/conversation.php:882
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: ../../include/conversation.php:882
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: ../../include/conversation.php:887
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das"
#: ../../include/conversation.php:890
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das nicht"
#: ../../include/conversation.php:904
msgid "and"
msgstr "und"
#: ../../include/conversation.php:910
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: ../../include/conversation.php:912
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: ../../include/conversation.php:912
#, php-format
msgid "%s don't like this."
msgstr "%s mögen das nicht."
#: ../../include/conversation.php:939 ../../include/conversation.php:957
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: ../../include/conversation.php:941 ../../include/conversation.php:959
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: ../../include/conversation.php:942 ../../include/conversation.php:960
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: ../../include/conversation.php:943 ../../include/conversation.php:961
msgid "Tag term:"
msgstr "Tag:"
#: ../../include/conversation.php:945 ../../include/conversation.php:963
msgid "Where are you right now?"
msgstr "Wo hältst du dich jetzt gerade auf?"
#: ../../include/conversation.php:946
msgid "Delete item(s)?"
msgstr "Einträge löschen?"
#: ../../include/conversation.php:988
msgid "Post to Email"
msgstr "An E-Mail senden"
#: ../../include/conversation.php:1044
msgid "permissions"
msgstr "Zugriffsrechte"
#: ../../include/conversation.php:1068
msgid "Post to Groups"
msgstr "Poste an Gruppe"
#: ../../include/conversation.php:1069
msgid "Post to Contacts"
msgstr "Poste an Kontakte"
#: ../../include/conversation.php:1070
msgid "Private post"
msgstr "Privater Beitrag"
#: ../../include/plugin.php:429 ../../include/plugin.php:431
msgid "Click here to upgrade."
msgstr "Zum Upgraden hier klicken."
#: ../../include/plugin.php:437
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
#: ../../include/plugin.php:442
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
#: ../../boot.php:640
#: ../../boot.php:650
msgid "Delete this item?"
msgstr "Diesen Beitrag löschen?"
#: ../../boot.php:643
#: ../../boot.php:653
msgid "show fewer"
msgstr "weniger anzeigen"
#: ../../boot.php:899
#: ../../boot.php:920
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
#: ../../boot.php:901
#: ../../boot.php:922
#, php-format
msgid "Update Error at %s"
msgstr "Updatefehler bei %s"
#: ../../boot.php:1011
#: ../../boot.php:1032
msgid "Create a New Account"
msgstr "Neues Konto erstellen"
#: ../../boot.php:1039
#: ../../boot.php:1060
msgid "Nickname or Email address: "
msgstr "Spitzname oder E-Mail-Adresse: "
#: ../../boot.php:1040
#: ../../boot.php:1061
msgid "Password: "
msgstr "Passwort: "
#: ../../boot.php:1041
#: ../../boot.php:1062
msgid "Remember me"
msgstr "Anmeldedaten merken"
#: ../../boot.php:1044
#: ../../boot.php:1065
msgid "Or login using OpenID: "
msgstr "Oder melde dich mit deiner OpenID an: "
#: ../../boot.php:1050
#: ../../boot.php:1071
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
#: ../../boot.php:1053
#: ../../boot.php:1074
msgid "Website Terms of Service"
msgstr "Website Nutzungsbedingungen"
#: ../../boot.php:1054
#: ../../boot.php:1075
msgid "terms of service"
msgstr "Nutzungsbedingungen"
#: ../../boot.php:1056
#: ../../boot.php:1077
msgid "Website Privacy Policy"
msgstr "Website Datenschutzerklärung"
#: ../../boot.php:1057
#: ../../boot.php:1078
msgid "privacy policy"
msgstr "Datenschutzerklärung"
#: ../../boot.php:1186
#: ../../boot.php:1207
msgid "Requested account is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: ../../boot.php:1265
#: ../../boot.php:1286 ../../boot.php:1390
msgid "Edit profile"
msgstr "Profil bearbeiten"
#: ../../boot.php:1331
#: ../../boot.php:1352
msgid "Message"
msgstr "Nachricht"
#: ../../boot.php:1339
#: ../../boot.php:1360
msgid "Manage/edit profiles"
msgstr "Profile verwalten/editieren"
#: ../../boot.php:1461 ../../boot.php:1547
#: ../../boot.php:1489 ../../boot.php:1575
msgid "g A l F d"
msgstr "l, d. F G \\U\\h\\r"
#: ../../boot.php:1462 ../../boot.php:1548
#: ../../boot.php:1490 ../../boot.php:1576
msgid "F d"
msgstr "d. F"
#: ../../boot.php:1507 ../../boot.php:1588
#: ../../boot.php:1535 ../../boot.php:1616
msgid "[today]"
msgstr "[heute]"
#: ../../boot.php:1519
#: ../../boot.php:1547
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
#: ../../boot.php:1520
#: ../../boot.php:1548
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
#: ../../boot.php:1581
#: ../../boot.php:1609
msgid "[No description]"
msgstr "[keine Beschreibung]"
#: ../../boot.php:1599
#: ../../boot.php:1627
msgid "Event Reminders"
msgstr "Veranstaltungserinnerungen"
#: ../../boot.php:1600
#: ../../boot.php:1628
msgid "Events this week:"
msgstr "Veranstaltungen diese Woche"
#: ../../boot.php:1836
#: ../../boot.php:1864
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
#: ../../boot.php:1843
#: ../../boot.php:1871
msgid "Profile Details"
msgstr "Profildetails"
#: ../../boot.php:1860
#: ../../boot.php:1888
msgid "Events and Calendar"
msgstr "Ereignisse und Kalender"
#: ../../boot.php:1867
#: ../../boot.php:1895
msgid "Only You Can See This"
msgstr "Nur du kannst das sehen"
#: ../../object/Item.php:261
msgid "via"
msgstr "via"
#: ../../index.php:400
msgid "toggle mobile"
msgstr "auf/von Mobile Ansicht wechseln"
#: ../../addon.old/bg/bg.php:51
msgid "Bg settings updated."
msgstr "Bg Einstellungen sind aktualisiert."
#: ../../addon.old/bg/bg.php:82
msgid "Bg Settings"
msgstr "Bg Einstellungen"
#: ../../addon.old/drpost/drpost.php:35
msgid "Post to Drupal"
msgstr "Bei Drupal veröffentlichen"
#: ../../addon.old/drpost/drpost.php:72
msgid "Drupal Post Settings"
msgstr "Drupal-Beitragseinstellungen"
#: ../../addon.old/drpost/drpost.php:74
msgid "Enable Drupal Post Plugin"
msgstr "Veröffentlichung bei Drupal erlauben"
#: ../../addon.old/drpost/drpost.php:79
msgid "Drupal username"
msgstr "Drupal Nutzername"
#: ../../addon.old/drpost/drpost.php:84
msgid "Drupal password"
msgstr "Drupal Passwort"
#: ../../addon.old/drpost/drpost.php:89
msgid "Post Type - article,page,or blog"
msgstr "Beitragstyp - Artikel, Seite oder Blog"
#: ../../addon.old/drpost/drpost.php:94
msgid "Drupal site URL"
msgstr "URL der Drupal Seite"
#: ../../addon.old/drpost/drpost.php:99
msgid "Drupal site uses clean URLS"
msgstr "Drupal Seite verwendet bereinigte URLs"
#: ../../addon.old/drpost/drpost.php:104
msgid "Post to Drupal by default"
msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal"
#: ../../addon.old/oembed.old/oembed.php:30
msgid "OEmbed settings updated"
msgstr "OEmbed Einstellungen aktualisiert."
#: ../../addon.old/oembed.old/oembed.php:43
msgid "Use OEmbed for YouTube videos"
msgstr "OEmbed für Youtube Videos verwenden"
#: ../../addon.old/oembed.old/oembed.php:71
msgid "URL to embed:"
msgstr "URL zum Einbetten:"
#: ../../addon.old/tumblr/tumblr.php:74
msgid "Tumblr login"
msgstr "Tumblr Login"
#: ../../addon.old/tumblr/tumblr.php:79
msgid "Tumblr password"
msgstr "Tumblr Passwort"

View file

@ -4,142 +4,1010 @@ function string_plural_select_de($n){
return ($n != 1);;
}
;
$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
$a->strings["Permission denied."] = "Zugriff verweigert.";
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
$a->strings["Name"] = "Name";
$a->strings["Account Nickname"] = "Konto-Spitzname";
$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
$a->strings["Account URL"] = "Konto-URL";
$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
$a->strings["Altpager settings updated."] = "Altpager Einstellungen sind aktualisiert.";
$a->strings["Alternate Pagination Setting"] = "Alternative Seitenumbruch Einstellung";
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Nutze Links zu \"neuer\" und \"älter\" Seiten, statt Seiten Nummern?";
$a->strings["Submit"] = "Senden";
$a->strings["Help:"] = "Hilfe:";
$a->strings["Bg settings updated."] = "Bg Einstellungen sind aktualisiert.";
$a->strings["Bg Settings"] = "Bg Einstellungen";
$a->strings["How many contacts to display on profile sidebar"] = "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden";
$a->strings["\"Blockem\" Settings"] = "\"Blockem\"-Einstellungen";
$a->strings["Comma separated profile URLS to block"] = "Profil-URLs, die blockiert werden sollen (durch Kommas getrennt)";
$a->strings["BLOCKEM Settings saved."] = "BLOCKEM-Einstellungen gesichert.";
$a->strings["Blocked %s - Click to open/close"] = "%s blockiert - Zum Öffnen/Schließen klicken";
$a->strings["Unblock Author"] = "Autor freischalten";
$a->strings["Block Author"] = "Autor blockieren";
$a->strings["blockem settings updated"] = "blockem Einstellungen aktualisiert";
$a->strings["Post to blogger"] = "Auf Blogger posten";
$a->strings["Blogger Post Settings"] = "Einstellungen zum posten auf Blogger";
$a->strings["Enable Blogger Post Plugin"] = "Blogger-Post-Plugin aktivieren";
$a->strings["Blogger username"] = "Blogger-Benutzername";
$a->strings["Blogger password"] = "Blogger-Passwort";
$a->strings["Blogger API URL"] = "Blogger-API-URL";
$a->strings["Post to Blogger by default"] = "Standardmäßig auf Blogger posten";
$a->strings["Post from Friendica"] = "Beitrag via Friendica";
$a->strings["Report Bug"] = "Fehlerreport erstellen";
$a->strings["Login"] = "Anmeldung";
$a->strings["OpenID"] = "OpenID";
$a->strings["Latest users"] = "Letzte Benutzer";
$a->strings["Most active users"] = "Aktivste Nutzer";
$a->strings["Latest photos"] = "Neueste Fotos";
$a->strings["Contact Photos"] = "Kontaktbilder";
$a->strings["Profile Photos"] = "Profilbilder";
$a->strings["Latest likes"] = "Neueste Favoriten";
$a->strings["event"] = "Veranstaltung";
$a->strings["status"] = "Status";
$a->strings["photo"] = "Foto";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
$a->strings["Welcome to %s"] = "Willkommen zu %s";
$a->strings["Private Events"] = "Privater Termin";
$a->strings["Private Addressbooks"] = "Private Adressbücher";
$a->strings["No access"] = "Kein Zugriff";
$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "U.S. Datumsformat (mm/dd/YYYY)";
$a->strings["German Time Format (dd.mm.YYYY)"] = "Deutsches Datumsformat (dd.mm.YYYY)";
$a->strings["Could not open component for editing"] = "Kalender-Editierfunktion konnte nicht geöffnet werden";
$a->strings["Go back to the calendar"] = "Zurück zum Kalender";
$a->strings["Event data"] = "Veranstaltungsdetails";
$a->strings["Calendar"] = "Kalender";
$a->strings["Special color"] = "Spezielle Farbe";
$a->strings["Subject"] = "Betreff:";
$a->strings["Starts"] = "Beginnt";
$a->strings["Ends"] = "Endet";
$a->strings["Location"] = "Wohnort";
$a->strings["Description"] = "Beschreibung";
$a->strings["Recurrence"] = "Wiederholungen:";
$a->strings["Frequency"] = "Frequenz";
$a->strings["None"] = "Keine";
$a->strings["Daily"] = "Täglich";
$a->strings["Weekly"] = "Wöchentlich";
$a->strings["Monthly"] = "Monatlich";
$a->strings["Yearly"] = "Jährlich";
$a->strings["days"] = "Tage";
$a->strings["weeks"] = "Wochen";
$a->strings["months"] = "Monate";
$a->strings["years"] = "Jahre";
$a->strings["Interval"] = "Intervall";
$a->strings["All %select% %time%"] = "Jeden %select% %time%";
$a->strings["Days"] = "Tage";
$a->strings["Sunday"] = "Sonntag";
$a->strings["Monday"] = "Montag";
$a->strings["Tuesday"] = "Dienstag";
$a->strings["Wednesday"] = "Mittwoch";
$a->strings["Thursday"] = "Donnerstag";
$a->strings["Friday"] = "Freitag";
$a->strings["Saturday"] = "Samstag";
$a->strings["First day of week:"] = "Erster Tag der Woche";
$a->strings["Day of month"] = "Tag des Monats";
$a->strings["#num#th of each month"] = "#num#ten jedes Monats";
$a->strings["#num#th-last of each month"] = "letzten #num#ten jedes Monats";
$a->strings["#num#th #wkday# of each month"] = "jeden #num#ten #wkday# eines Monats";
$a->strings["#num#th-last #wkday# of each month"] = "jeden #num#ten letzten #wkday# eines Monats";
$a->strings["Month"] = "Monat";
$a->strings["#num#th of the given month"] = "#num#ten des Monats";
$a->strings["#num#th-last of the given month"] = "letzten #num#ten des Monats";
$a->strings["#num#th #wkday# of the given month"] = "jeden #num#ten eines Monats";
$a->strings["#num#th-last #wkday# of the given month"] = "jeden #num#ten letzten eines Monats";
$a->strings["Repeat until"] = "Wiederholungen";
$a->strings["Infinite"] = "unendlich";
$a->strings["Until the following date"] = "bis zum folgenden Datum";
$a->strings["Number of times"] = "Bestimmte Anzahl von Wiederholungen";
$a->strings["Exceptions"] = "Ausnahmen";
$a->strings["none"] = "keine";
$a->strings["Notification"] = "Benachrichtigung";
$a->strings["Notify by"] = "Benarchrichtigungsmethode";
$a->strings["Remove"] = "Entfernen";
$a->strings["E-Mail"] = "E-Mail";
$a->strings["On Friendica / Display"] = "Bei Friendica / Anzeige";
$a->strings["Time"] = "Zeit";
$a->strings["Hours"] = "Stunden";
$a->strings["Minutes"] = "Minuten";
$a->strings["Seconds"] = "Sekunden";
$a->strings["Weeks"] = "Wochen";
$a->strings["before the"] = "vor dem";
$a->strings["start of the event"] = "Beginn des Termins";
$a->strings["end of the event"] = "Ende des Termins";
$a->strings["Add a notification"] = "Benachrichtigung hinzufügen";
$a->strings["The event #name# will start at #date"] = "Der Termin #name# wird am #date anfangen";
$a->strings["#name# is about to begin."] = "#name# beginnt demnächst.";
$a->strings["Saved"] = "Gespeichert";
$a->strings["Private Calendar"] = "Privater Kalender";
$a->strings["Friendica Events: Mine"] = "Meine Friendica-Veranstaltungen";
$a->strings["Friendica Events: Contacts"] = "Friendica Veranstaltungen meiner Kontakte";
$a->strings["Private Addresses"] = "Private Adressen";
$a->strings["Friendica Contacts"] = "Friendica Kontakte";
$a->strings["Friendica-Native events"] = "Friendica Veranstaltungen";
$a->strings["Friendica-Contacts"] = "Friendica-Kontakte";
$a->strings["Your Friendica-Contacts"] = "Deine Friendica-Kontakte";
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Entschuldigung. Bei dem Versuch die Datei zu importieren ist etwas schief gelaufen. Vielleicht wurden aber einige der Termine dennoch importiert.";
$a->strings["Something went wrong when trying to import the file. Sorry."] = "Entschuldigung. Beim Importieren der Datei ist etwas schief gelaufen.";
$a->strings["The ICS-File has been imported."] = "Die ICS-Datei wurde importoert.";
$a->strings["No file was uploaded."] = "Es wurde keine Datei geladen.";
$a->strings["Import a ICS-file"] = "Importiere eine ICS-Datei";
$a->strings["ICS-File"] = "ICS-Datei";
$a->strings["Overwrite all #num# existing events"] = "Überschreibe alle #num# existierenden Einträge";
$a->strings["Upload"] = "Hochladen";
$a->strings["Settings"] = "Einstellungen";
$a->strings["Help"] = "Hilfe";
$a->strings["Not Found"] = "Nicht gefunden";
$a->strings["Page not found."] = "Seite nicht gefunden.";
$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
$a->strings["link to source"] = "Link zum Originalbeitrag";
$a->strings["Events"] = "Veranstaltungen";
$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
$a->strings["New event"] = "Neue Veranstaltung";
$a->strings["Today"] = "Heute";
$a->strings["Day"] = "Tag";
$a->strings["Week"] = "Woche";
$a->strings["Reload"] = "Neu Laden";
$a->strings["Previous"] = "Vorherige";
$a->strings["Next"] = "Nächste";
$a->strings["hour:minute"] = "Stunde:Minute";
$a->strings["Event details"] = "Veranstaltungsdetails";
$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
$a->strings["Required"] = "Benötigt";
$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
$a->strings["Event Finishes:"] = "Veranstaltungsende:";
$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
$a->strings["Description:"] = "Beschreibung";
$a->strings["Location:"] = "Ort:";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Veranstaltung teilen";
$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
$a->strings["Date"] = "Datum";
$a->strings["Error"] = "Fehler";
$a->strings["Permission denied."] = "Zugriff verweigert.";
$a->strings["The new values have been saved."] = "Die neuen Einstellungen wurden gespeichert.";
$a->strings["The calendar has been updated."] = "Der Kalender wurde aktualisiert.";
$a->strings["The new calendar has been created."] = "Der neue Kalender wurde erstellt.";
$a->strings["The calendar has been deleted."] = "Der Kalender wurde gelöscht.";
$a->strings["Calendar Settings"] = "Kalendereinstellungen";
$a->strings["Date format"] = "Datumsformat";
$a->strings["Time zone"] = "Zeitzone";
$a->strings["Save"] = "Speichern";
$a->strings["Calendars"] = "Kalender";
$a->strings["Create a new calendar"] = "Neuen Kalender anlegen";
$a->strings["Limitations"] = "Einschränkungen";
$a->strings["Warning"] = "Warnung";
$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Synchronisation (iPhone, Thunderbird Lightning, Android, ...)";
$a->strings["Synchronizing this calendar with the iPhone"] = "Diesen Kalender mit dem iPhone synchronisieren";
$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Friendica-Kontakte mit dem iPhone synchronisieren";
$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "Die aktuelle Version dieses Plugins wurde nicht korrekt eingestellt. Bitte kontaktiere den System-Administrator deiner Friendica Installation um den Fehler zu beheben.";
$a->strings["Extended calendar with CalDAV-support"] = "Erweiterter Kalender mit CalDAV Unterstützung.";
$a->strings["noreply"] = "noreply";
$a->strings["Notification: "] = "Benachrichtigungen: ";
$a->strings["The database tables have been installed."] = "Die Datenbanktabellen wurden installiert.";
$a->strings["An error occurred during the installation."] = "Während der Installation trat ein Fehler auf.";
$a->strings["The database tables have been updated."] = "Die Tabellen in der Datenbank wurden aktualisiert.";
$a->strings["An error occurred during the update."] = "Während der Aktualisierung trat ein Fehler auf.";
$a->strings["No system-wide settings yet."] = "Momentan keine systemweiten Einstellungen.";
$a->strings["Database status"] = "Datenbankstatus";
$a->strings["Installed"] = "Installiert";
$a->strings["Upgrade needed"] = "Upgrade erforderlich";
$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "Bitte sichere alle Kalenderdaten (die Tabellen mit dav_* beginnend) bevor du mit dem Update fortfährst. Eigentliche <i>sollten</i> alle Kalendereinträge in die neue Datenbankstruktur übernommen werden, aber sicher ist sicher. Weiter unten kannst du die Datenbank-Anfragen ansehen, die im Verlauf des Updates gemacht werden.";
$a->strings["Upgrade"] = "Upgrade";
$a->strings["Not installed"] = "Nicht installiert";
$a->strings["Install"] = "Installieren";
$a->strings["Unknown"] = "Unbekannt";
$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "Irgendetwas ging schief. Ich kann leider von diesem Zustand der Datenbank leider nicht automatisch fortfahren. Bitte mache ein Backup der Daten aus der Datenbank und lösche anschließend alle Tabellen deren Name mit 'dav_' anfangen. Anschließend sollte diese Installations-Routine in der Lage sein die nötigen Tabellen automatisch neu anzulegen.";
$a->strings["Troubleshooting"] = "Problembehebung";
$a->strings["Manual creation of the database tables:"] = "Manuelles Anlegen der Datenbanktabellen:";
$a->strings["Show SQL-statements"] = "SQL-Anweisungen anzeigen";
$a->strings["Post to Drupal"] = "Bei Drupal veröffentlichen";
$a->strings["Drupal Post Settings"] = "Drupal-Beitragseinstellungen";
$a->strings["Enable Drupal Post Plugin"] = "Veröffentlichung bei Drupal erlauben";
$a->strings["Drupal username"] = "Drupal Nutzername";
$a->strings["Drupal password"] = "Drupal Passwort";
$a->strings["Post Type - article,page,or blog"] = "Beitragstyp - Artikel, Seite oder Blog";
$a->strings["Drupal site URL"] = "URL der Drupal Seite";
$a->strings["Drupal site uses clean URLS"] = "Drupal Seite verwendet bereinigte URLs";
$a->strings["Post to Drupal by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal";
$a->strings["Post to Dreamwidth"] = "In Dreamwidth veröffentlichen";
$a->strings["Dreamwidth Post Settings"] = "Dreamwidth Veröffentlichungs-Einstellungen";
$a->strings["Enable dreamwidth Post Plugin"] = "Dreamwidth Post Plugin aktivieren";
$a->strings["dreamwidth username"] = "Dreamwidth Benutzername";
$a->strings["dreamwidth password"] = "Dreamwidth Passwort";
$a->strings["Post to dreamwidth by default"] = "Standardmäßig bei Dreamwidth veröffentlichen";
$a->strings["Editplain settings updated."] = "Editplain Einstellungen aktualisiert";
$a->strings["Editplain Settings"] = "Editplain Einstellungen";
$a->strings["Disable richtext status editor"] = "RichText Editor deaktivieren";
$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
$a->strings["Facebook disabled"] = "Facebook deaktiviert";
$a->strings["Updating contacts"] = "Aktualisiere Kontakte";
$a->strings["Facebook API key is missing."] = "Facebook-API-Schlüssel nicht gefunden";
$a->strings["Facebook Connect"] = "Mit Facebook verbinden";
$a->strings["Install Facebook connector for this account."] = "Facebook-Connector für dieses Konto installieren.";
$a->strings["Remove Facebook connector"] = "Facebook-Connector entfernen";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Neu authentifizieren [Das ist immer dann nötig, wenn du dein Facebook-Passwort geändert hast.]";
$a->strings["Post to Facebook by default"] = "Veröffentliche standardmäßig bei Facebook";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt.";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren.";
$a->strings["Link all your Facebook friends and conversations on this website"] = "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Mit den folgenden Einstellungen kannst du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen";
$a->strings["Do not import your Facebook profile wall conversations"] = "Facebook-Pinnwand nicht importieren";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Wenn du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann.";
$a->strings["Comma separated applications to ignore"] = "Kommaseparierte Anwendungen, die ignoriert werden sollen";
$a->strings["Problems with Facebook Real-Time Updates"] = "Probleme mit Facebook Echtzeit-Updates";
$a->strings["Administrator"] = "Administrator";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Facebook-Verbindungseinstellungen";
$a->strings["Facebook API Key"] = "Facebook API Schlüssel";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden).";
$a->strings["The given API Key seems to work correctly."] = "Der angegebene API Schlüssel scheint korrekt zu funktionieren.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "Die Richtigkeit des API Schlüssels konnte nicht gefunden werden. Irgendwas stimmt nicht.";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Anwendungs-Geheimnis";
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Abfrageintervall in Minuten (min %1\$s Minuten)";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Kommentare synchronisieren (Kein Kommentar von Facebook geht verloren, verursacht höhere Last auf dem Server)";
$a->strings["Real-Time Updates"] = "Echtzeit Aktualisierungen";
$a->strings["Real-Time Updates are activated."] = "Echtzeit-Updates sind aktiviert.";
$a->strings["Deactivate Real-Time Updates"] = "Echtzeit-Updates deaktivieren";
$a->strings["Real-Time Updates not activated."] = "Echtzeit-Updates nicht aktiviert.";
$a->strings["Activate Real-Time Updates"] = "Echtzeit-Updates aktivieren";
$a->strings["Post to Facebook"] = "Bei Facebook veröffentlichen";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen.";
$a->strings["View on Friendica"] = "In Friendica betrachten";
$a->strings["Facebook post failed. Queued for retry."] = "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich.";
$a->strings["Facebook connection became invalid"] = "Facebook Anmeldedaten sind ungültig geworden";
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "Hallo %1\$s,\n\ndie Verbindung zwischen deinem Account auf %2\$s und Facebook funktioniert derzeit nicht. Dies ist normalerweise das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du %3\$sden Facebook-Connector neu authentifizieren%4\$s.";
$a->strings["Facebook Post disabled"] = "Nach Facebook senden deaktiviert";
$a->strings["Facebook Post"] = "Facebook Relai";
$a->strings["Install Facebook Post connector for this account."] = "Facebook-Connector für dieses Konto installieren.";
$a->strings["Remove Facebook Post connector"] = "Facebook-Connector entfernen";
$a->strings["Facebook Post Settings"] = "Facebook-Beitragseinstellungen";
$a->strings["Forums"] = "Foren";
$a->strings["show/hide"] = "anzeigen/verbergen";
$a->strings["No forum subscriptions"] = "Keine Foren-Mitgliedschaften.";
$a->strings["Forums:"] = "Foren:";
$a->strings["Forumlist settings updated."] = "Einstellungen zur Foren-Liste aktualisiert.";
$a->strings["Forumlist Settings"] = "Foren-Liste Einstellungen";
$a->strings["Randomise forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
$a->strings["Show forums on profile page"] = "Zeige die Liste der Foren auf der Profilseite";
$a->strings["Show forums on network page"] = "Zeige Foren auf der Netzwerk-Seite";
$a->strings["Fromapp settings updated."] = "FromApp Einstellungen aktualisiert.";
$a->strings["FromApp Settings"] = "FromApp Einstellungen";
$a->strings["The application name you would like to show your posts originating from."] = "Der Name der Anwendung von der deine Beiträge stammen sollen.";
$a->strings["Use this application name even if another application was used."] = "Verwende diesen Namen auch wenn eine andere Anwendung den Anwendungsnamen bereits gesetzt hat.";
$a->strings["Google+ Import Settings"] = "Google+ Import Einstellungen";
$a->strings["Enable Google+ Import"] = "Aktiviere Google+ Import";
$a->strings["Google Account ID"] = "Google Account ID";
$a->strings["Google+ Import Settings saved."] = "Google+ Import Einstellungen gespeichert.";
$a->strings["Geonames settings updated."] = "Geonames Einstellungen aktualisiert";
$a->strings["Geonames Settings"] = "Geonames Einstellungen";
$a->strings["Enable Geonames Plugin"] = "Geonames Plugin aktivieren";
$a->strings["Gnot settings updated."] = "Gnot Einstellungen aktualisiert.";
$a->strings["Gnot Settings"] = "Gnot Einstellungen";
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Erlaubt das Veröffentlichen von E-Mail Kommentar Benachrichtigungen bei Gmail mit anonymisiertem Betreff";
$a->strings["Enable this plugin/addon?"] = "Dieses Plugin/Addon aktivieren?";
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica-Meldung] Kommentar zum Beitrag #%d";
$a->strings["generic profile image"] = "allgemeines Profilbild";
$a->strings["random geometric pattern"] = "zufällig erzeugtes geometrisches Muster";
$a->strings["monster face"] = "Monstergesicht";
$a->strings["computer generated face"] = "Computergesicht";
$a->strings["retro arcade style face"] = "Retro Arcade Design Gesicht";
$a->strings["Information"] = "Information";
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere das Libravatar Addon oder dieses Gravatar Addon.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden.";
$a->strings["Default avatar image"] = "Standard Profilbild ";
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Wähle das Standardgesicht, wenn kein Bild auf Gravatar gefunden wurde. Schaue auch sonst im README nach.";
$a->strings["Rating of images"] = "Bildbewertung";
$a->strings["Select the appropriate avatar rating for your site. See README"] = "Wähle eine angemessene Bildbewertung für deinen Server. Schaue auch sonst im README nach.";
$a->strings["Gravatar settings updated."] = "Gravatar Einstellungen aktualisiert.";
$a->strings["Group Text"] = "Gruppen als Text";
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "Beim Bearbeiten von Gruppen Text statt Bilder anzeigen";
$a->strings["Post to Insanejournal"] = "Auf InsaneJournal posten.";
$a->strings["InsaneJournal Post Settings"] = "InsaneJournal Beitrags-Einstellungen";
$a->strings["Enable InsaneJournal Post Plugin"] = "InsaneJournal Plugin aktivieren";
$a->strings["InsaneJournal username"] = "InsaneJournal Benutzername";
$a->strings["InsaneJournal password"] = "InsaneJournal Passwort";
$a->strings["Post to InsaneJournal by default"] = "Standardmäßig auf InsaneJournal posten.";
$a->strings["Impressum"] = "Impressum";
$a->strings["Site Owner"] = "Betreiber der Seite";
$a->strings["Email Address"] = "Email Adresse";
$a->strings["Postal Address"] = "Postalische Anschrift";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe mindestens den <tt>Betreiber</tt> in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert.";
$a->strings["The page operators name."] = "Name des Serveradministrators";
$a->strings["Site Owners Profile"] = "Profil des Seitenbetreibers";
$a->strings["Profile address of the operator."] = "Profil-Adresse des Serveradministrators";
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden.";
$a->strings["Notes"] = "Hinweise";
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden.";
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Wie man den Betreiber per Email erreicht. (Adresse wird verschleiert dargestellt)";
$a->strings["Footer note"] = "Fußnote";
$a->strings["Text for the footer. You can use BBCode here."] = "Text für die Fußzeile. Du kannst BBCode verwenden.";
$a->strings["Infinite Improbability Drive"] = "Infinite Improbability Drive";
$a->strings["IRC Settings"] = "IRC Einstellungen";
$a->strings["Channel(s) to auto connect (comma separated)"] = "mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)";
$a->strings["Popular Channels (comma separated)"] = "Beliebte Kanäle (mit Komma getrennt)";
$a->strings["IRC settings saved."] = "IRC Einstellungen gespeichert.";
$a->strings["IRC Chatroom"] = "IRC Chatraum";
$a->strings["Popular Channels"] = "Beliebte Räume";
$a->strings["Jappix Mini addon settings"] = "Jappix Mini Addon Einstellungen";
$a->strings["Activate addon"] = "Addon aktivieren";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "Füge das Jappix Mini Chat Widget <em>nicht</em> zum Webinterface hinzu";
$a->strings["Jabber username"] = "Jabber Nutzername";
$a->strings["Jabber server"] = "Jabber Server";
$a->strings["Jabber BOSH host"] = "Jabber BOSH Host";
$a->strings["Jabber password"] = "Japper Passwort";
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Verschlüssele das Jabber Passwort mit dem Friendica Passwort (empfohlen)";
$a->strings["Friendica password"] = "Friendica Passwort";
$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Kontaktanfragen von Friendica Kontakten automatisch akzeptieren";
$a->strings["Subscribe to Friendica contacts automatically"] = "Automatisch Friendica Kontakten bei Jabber folgen";
$a->strings["Purge internal list of jabber addresses of contacts"] = "Lösche die interne Liste der Jabber Adressen der Kontakte";
$a->strings["Add contact"] = "Kontakt hinzufügen";
$a->strings["Upload a file"] = "Datei hochladen";
$a->strings["Drop files here to upload"] = "Ziehe Dateien hierher, um sie hochzuladen";
$a->strings["Cancel"] = "Abbrechen";
$a->strings["Tag removed"] = "Tag entfernt";
$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
$a->strings["Remove"] = "Entfernen";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?";
$a->strings["Yes"] = "Ja";
$a->strings["No"] = "Nein";
$a->strings["Photo Albums"] = "Fotoalben";
$a->strings["Contact Photos"] = "Kontaktbilder";
$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
$a->strings["everybody"] = "jeder";
$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
$a->strings["Profile Photos"] = "Profilbilder";
$a->strings["Album not found."] = "Album nicht gefunden.";
$a->strings["Delete Album"] = "Album löschen";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?";
$a->strings["Delete Photo"] = "Foto löschen";
$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
$a->strings["a photo"] = "einem Foto";
$a->strings["Failed"] = "Fehlgeschlagen";
$a->strings["No files were uploaded."] = "Keine Dateien hochgeladen.";
$a->strings["Uploaded file is empty"] = "Hochgeladene Datei ist leer";
$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von ";
$a->strings["Image file is empty."] = "Bilddatei ist leer.";
$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
$a->strings["File has an invalid extension, it should be one of "] = "Die Dateierweiterung ist nicht erlaubt, sie muss eine der folgenden sein ";
$a->strings["Upload was cancelled, or server error encountered"] = "Upload abgebrochen oder Serverfehler aufgetreten";
$a->strings["Post to libertree"] = "bei libertree veröffentlichen";
$a->strings["libertree Post Settings"] = "libertree Post Einstellungen";
$a->strings["Enable Libertree Post Plugin"] = "Libertree Post Plugin aktivieren";
$a->strings["Libertree API token"] = "Libertree API Token";
$a->strings["Libertree site URL"] = "Libertree URL";
$a->strings["Post to Libertree by default"] = "Standardmäßig bei libertree veröffentlichen";
$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "Kann Libravatar NICHT erfolgreich installieren.<br>PHP >=5.3 wird benötigt";
$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "Deine PHP Version %s ist niedriger als die benötigte Version PHP >= 5.3.";
$a->strings["This addon is not functional on your server."] = "Dieses Addon funktioniert auf deinem Server nicht.";
$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Gravatar Addon ist installiert. Bitte schalte das Gravatar Addon aus.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden.";
$a->strings["Select default avatar image if none was found. See README"] = "Das Standard Avatar Bild wurde nicht gefunden. Siehe README";
$a->strings["Libravatar settings updated."] = "Libravatar Einstellungen sind aktualisiert.";
$a->strings["Post to LiveJournal"] = "In LiveJournal veröffentlichen.";
$a->strings["LiveJournal Post Settings"] = "LiveJournal Veröffentlichungs-Einstellungen";
$a->strings["Enable LiveJournal Post Plugin"] = "LiveJournal Post Plugin aktivieren";
$a->strings["LiveJournal username"] = "LiveJournal Benutzername";
$a->strings["LiveJournal password"] = "LiveJournal Passwort";
$a->strings["Post to LiveJournal by default"] = "Standardmäßig bei LiveJournal veröffentlichen";
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerkstream sowie privaten Nachrichten gerendert.";
$a->strings["Use the MathJax renderer"] = "MathJax verwenden";
$a->strings["MathJax Base URL"] = "MathJax Basis-URL";
$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen.";
$a->strings["Member since:"] = "Mitglied seit:";
$a->strings["bitchslap"] = "abwatschen";
$a->strings["bitchslapped"] = "watschte";
$a->strings["shag"] = "poppen";
$a->strings["shagged"] = "poppte";
$a->strings["do something obscenely biological to"] = "mit ihm/ihr etwas obszönes Körperliches machen";
$a->strings["did something obscenely biological to"] = "machte etwas obszönes Körperliches mit";
$a->strings["point out the poke feature to"] = "zeigte die neue Anstups-Funktion";
$a->strings["pointed out the poke feature to"] = "zeigte die neue Anstups-Funktion";
$a->strings["declare undying love for"] = "unterbliche Liebe verkünden";
$a->strings["declared undying love for"] = "verkündete unsterbliche Liebe für";
$a->strings["patent"] = "patentieren";
$a->strings["patented"] = "patentierte";
$a->strings["stroke beard"] = "sich den Bart kratzen";
$a->strings["stroked their beard at"] = "kratzte sich den Bart in Richtung";
$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "sich über die sinkenden Standards der Schul- und Hochschulbildung beklagen";
$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "beklagte sich über die sinkenden Standards der Schul- und Hochschulbildung bei";
$a->strings["hug"] = "umarmen";
$a->strings["hugged"] = "umarmte";
$a->strings["kiss"] = "küssen";
$a->strings["kissed"] = "küsste";
$a->strings["raise eyebrows at"] = "Augenbrauen hochziehen";
$a->strings["raised their eyebrows at"] = "zog die Augenbrauen hoch in Richtung";
$a->strings["insult"] = "beleidigen";
$a->strings["insulted"] = "beleidigte";
$a->strings["praise"] = "preisen";
$a->strings["praised"] = "pries";
$a->strings["be dubious of"] = "ungewiss sein";
$a->strings["was dubious of"] = "war ungewiss über";
$a->strings["eat"] = "essen";
$a->strings["ate"] = "";
$a->strings["giggle and fawn at"] = "kichern und einschleimen";
$a->strings["giggled and fawned at"] = "kicherte und schleimte sich ein bei";
$a->strings["doubt"] = "bezweifeln";
$a->strings["doubted"] = "bezweifelte";
$a->strings["glare"] = "zornig anstarren";
$a->strings["glared at"] = "starrte zornig auf";
$a->strings["No Timeline settings updated."] = "Keine Timeline-Einstellungen aktualisiert.";
$a->strings["No Timeline Settings"] = "Keine Timeline-Einstellungen";
$a->strings["Disable Archive selector on profile wall"] = "Deaktiviere Archiv-Auswahl auf Deiner Pinnwand";
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Not Safe for Work (allg. Filter für ungewollte Inhalte) Einstellungen:";
$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden.";
$a->strings["Enable Content filter"] = "Aktiviere den Inhaltsfilter";
$a->strings["Comma separated list of keywords to hide"] = "Durch Komma getrennte Liste von Schlüsselwörtern die verborgen werden sollen";
$a->strings["Use /expression/ to provide regular expressions"] = "Verwende /expression/ um reguläre Ausdrücke zu verwenden";
$a->strings["NSFW Settings saved."] = "NSFW-Einstellungen gespeichert";
$a->strings["%s - Click to open/close"] = "%s Zum Öffnen/Schließen klicken";
$a->strings["Numfriends settings updated."] = "Numfriends Einstellungen aktualisiert";
$a->strings["Numfriends Settings"] = "Numfriends Einstellungen";
$a->strings["OEmbed settings updated"] = "OEmbed Einstellungen aktualisiert.";
$a->strings["Use OEmbed for YouTube videos"] = "OEmbed für Youtube Videos verwenden";
$a->strings["URL to embed:"] = "URL zum Einbetten:";
$a->strings["Tile Server URL"] = "Tile Server URL";
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Eine Liste <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">öffentlicher Tile Server</a>";
$a->strings["Default zoom"] = "Standard Zoom";
$a->strings["The default zoom level. (1:world, 18:highest)"] = "Standard Zoomlevel (1: Welt; 18: höchstes)";
$a->strings["show more"] = "mehr anzeigen";
$a->strings["Page settings updated."] = "Seiteneinstellungen aktualisiert.";
$a->strings["Page Settings"] = "Seiteneinstellungen";
$a->strings["How many forums to display on sidebar without paging"] = "Wie viele Foren sollen in der Seitenleiste ohne Umblättern angezeigt werden";
$a->strings["Randomise Page/Forum list"] = "Zufällige Seiten/Foren Liste";
$a->strings["Show pages/forums on profile page"] = "Foren/Seiten auf der Profilseite anzeigen";
$a->strings["\"pageheader\" Settings"] = "\"pageheader\"-Einstellungen";
$a->strings["pageheader Settings saved."] = "pageheader-Einstellungen gespeichert.";
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Diese Website benutzt <a href='http://www.piwik.org'>Piwik</a>, eine Open Source-Software zur statistischen Auswertung der Besucherzugriffe.";
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Wenn du nicht willst, dass deine Besuche auf diese Weise gespeichert werden, kannst du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik dich auf dieser Website nicht mehr verfolgen (opt-out).";
$a->strings["Piwik Base URL"] = "Piwik Basis URL";
$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Absoluter Pfad zu deiner Piwik Installation (ohne Protokoll (http/s) und mit abschließendem Schrägstrich)";
$a->strings["Site ID"] = "Seiten ID";
$a->strings["Show opt-out cookie link?"] = "Link zum Setzen des Opt-Out Cookies anzeigen?";
$a->strings["Asynchronous tracking"] = "Asynchrones Tracken";
$a->strings["Planets Settings"] = "Planeten Einstellungen";
$a->strings["Enable Planets Plugin"] = "Aktiviere Planeten Plugin";
$a->strings["Post to Posterous"] = "Nach Posterous senden";
$a->strings["Posterous Post Settings"] = "Posterous Beitrags-Einstellungen";
$a->strings["Enable Posterous Post Plugin"] = "Posterous-Plugin aktivieren";
$a->strings["Posterous login"] = "Posterous-Anmeldename";
$a->strings["Posterous password"] = "Posterous-Passwort";
$a->strings["Posterous site ID"] = "Posterous site ID";
$a->strings["Posterous API token"] = "Posterous API token";
$a->strings["Post to Posterous by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous";
$a->strings["Lifetime of the cache (in hours)"] = "Lebenszeit des Caches (in Stunden)";
$a->strings["Cache Statistics"] = "Cache Statistik";
$a->strings["Number of items"] = "Anzahl der Einträge";
$a->strings["Size of the cache"] = "Größe des Caches";
$a->strings["Delete the whole cache"] = "Cache leeren";
$a->strings["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen verfallen.";
$a->strings["Your Friendica account is about to expire."] = "Dein Friendica-Konto wird in Kürze auslaufen.";
$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "Hallo %1\$s,\n\ndein Account auf %2\$s wird in weniger als fünf Tagen auslaufen. Du kannst das verhindern, indem du dich mindestens einmal alle 30 Tage anmeldest.";
$a->strings[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "lol";
$a->strings["Quick Comment Settings"] = "Schnell-Kommentar Einstellungen";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Kurzkommentare findet man in der Nähe der Kommentarboxen. Ein Klick darauf erstellt einfache Antworten.";
$a->strings["Enter quick comments, one per line"] = "Gib einen Schnell-Kommentar pro Zeile ein";
$a->strings["Quick Comment settings saved."] = "Schnell-Kommentare Einstellungen gespeichert";
$a->strings["Randplace Settings"] = "Randplace-Einstellungen";
$a->strings["Enable Randplace Plugin"] = "Randplace-Plugin aktivieren";
$a->strings["\"Show more\" Settings"] = "\"Mehr zeigen\" Einstellungen";
$a->strings["Enable Show More"] = "Aktiviere \"Mehr zeigen\"";
$a->strings["Cutting posts after how much characters"] = "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben";
$a->strings["Show More Settings saved."] = "\"Mehr zeigen\" Einstellungen gesichert.";
$a->strings["StatusNet AutoFollow settings updated."] = "StatusNet AutoFollow Einstellungen aktualisiert.";
$a->strings["StatusNet AutoFollow Settings"] = "StatusNet AutoFollow Einstellungen";
$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Automatisch allen StatusNet Followern/Erwähnungen folgen";
$a->strings["Startpage Settings"] = "Startseiten-Einstellungen";
$a->strings["Home page to load after login - leave blank for profile wall"] = "Seite, die nach dem Anmelden geladen werden soll. Leer = Pinnwand";
$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "Beispiele: network, notifications/system";
$a->strings["Post to StatusNet"] = "Bei StatusNet veröffentlichen";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Bitte kontaktiere den Administrator des Servers.<br />Die angegebene API-URL ist nicht gültig.";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Die StatusNet-API konnte mit dem angegebenen Pfad nicht erreicht werden.";
$a->strings["StatusNet settings updated."] = "StatusNet Einstellungen aktualisiert.";
$a->strings["StatusNet Posting Settings"] = "StatusNet-Beitragseinstellungen";
$a->strings["Globally Available StatusNet OAuthKeys"] = "Verfügbare OAuth Schlüssel für StatusNet";
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Für einige StatusNet Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen StatusNet Server her (siehe unten).";
$a->strings["Provide your own OAuth Credentials"] = "Eigene OAuth Schlüssel eintragen";
$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "Kein Consumer-Schlüsselpaar für StatusNet gefunden. Registriere deinen Friendica-Account als Desktop-Client, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br />Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem StatusNet-Server existiert.";
$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
$a->strings["Base API Path (remember the trailing /)"] = "Basis-URL der StatusNet-API (vergiss den abschließenden / nicht)";
$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Um dein Konto mit einem StatusNet-Konto zu verknüpfen, klicke den Button an, um einen Sicherheitscode von StatusNet zu erhalten, und kopiere diesen in das Eingabefeld weiter unten. Es werden ausschließlich deine <strong>öffentlichen</strong> Nachrichten an StatusNet gesendet.";
$a->strings["Log in with StatusNet"] = "Bei StatusNet anmelden";
$a->strings["Copy the security code from StatusNet here"] = "Kopiere den Sicherheitscode von StatusNet hier hin";
$a->strings["Cancel Connection Process"] = "Verbindungsprozess abbrechen";
$a->strings["Current StatusNet API is"] = "Derzeitige StatusNet-API-URL lautet";
$a->strings["Cancel StatusNet Connection"] = "Verbindung zum StatusNet Server abbrechen";
$a->strings["Currently connected to: "] = "Momentan verbunden mit: ";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen StatusNet-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an deinen StatusNet-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
$a->strings["Allow posting to StatusNet"] = "Veröffentlichung bei StatusNet erlauben";
$a->strings["Send public postings to StatusNet by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet";
$a->strings["Send linked #-tags and @-names to StatusNet"] = "Sende verlinkte #-Tags und @-Namen nach StatusNet";
$a->strings["Clear OAuth configuration"] = "OAuth-Konfiguration löschen";
$a->strings["Site name"] = "Seitenname";
$a->strings["API URL"] = "API-URL";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Your Friendica test account is about to expire."] = "Dein Friendica-Testkonto wird bald verfallen.";
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "Hallo %1\$s,\n\ndein Testkonto auf %2\$s wird in weniger als fünf Tagen verfallen. Wir hoffen, dass dir dieser Testlauf gefallen hat, so dass du die Gelegenheit nutzt und dir einen normalen Friendica-Server für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Server findest du auf http://dir.friendica.com/siteinfo . Um mehr Information darüber zu bekommen, wie man einen eigenen Friendica-Server aufsetzt, kannst du auch einen Blick auf die Friendica-Projektseite werfen: http://friendica.com";
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Dreidimensionales Tic-Tac-Toe";
$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
$a->strings["New game"] = "Neues Spiel";
$a->strings["New game with handicap"] = "Neues Handicap Spiel";
$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "3D-Tic-Tac-Toe ist genauso wie das herkömmliche Spiel, nur dass man es auf mehreren Ebenen gleichzeitig spielt.";
$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "In diesem Fall sind es drei Ebenen. Man gewinnt indem man drei in einer Reihe auf einer beliebigen Reihe schafft, oder drei übereinander oder diagonal auf verschiedenen Ebenen.";
$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Beim Handicap-Spiel wird die zentrale Position der mittleren Ebene gesperrt, da der Spieler, der diese Ebene besitzt, oft einen unfairen Vorteil genießt.";
$a->strings["You go first..."] = "Du fängst an...";
$a->strings["I'm going first this time..."] = "Diesmal fange ich an...";
$a->strings["You won!"] = "Du gewinnst!";
$a->strings["\"Cat\" game!"] = "Unentschieden!";
$a->strings["I won!"] = "Ich gewinne!";
$a->strings["Post to Tumblr"] = "Bei Tumblr veröffentlichen";
$a->strings["Tumblr Post Settings"] = "Tumblr-Beitragseinstellungen";
$a->strings["Enable Tumblr Post Plugin"] = "Tumblr-Plugin aktivieren";
$a->strings["Tumblr login"] = "Tumblr Login";
$a->strings["Tumblr password"] = "Tumblr Passwort";
$a->strings["Post to Tumblr by default"] = "Standardmäßig bei Tumblr veröffentlichen";
$a->strings["Post to Twitter"] = "Bei Twitter veröffentlichen";
$a->strings["Twitter settings updated."] = "Twitter Einstellungen aktualisiert.";
$a->strings["Twitter Posting Settings"] = "Twitter-Beitragseinstellungen";
$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte wende dich an den Administrator der Seite.";
$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "Auf diesem Friendica-Server wurde das Twitter-Plugin aktiviert, aber du hast deinen Account noch nicht mit deinem Twitter-Account verbunden. Klicke dazu auf die Schaltfläche unten. Du erhältst dann eine PIN von Twitter, die du dann in das Eingabefeld unten einfügst. Denk daran, den Senden-Knopf zu drücken! Nur <strong>öffentliche</strong> Beiträge werden bei Twitter veröffentlicht.";
$a->strings["Log in with Twitter"] = "bei Twitter anmelden";
$a->strings["Copy the PIN from Twitter here"] = "Kopiere die Twitter-PIN hier her";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an an deinen Twitter-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
$a->strings["Allow posting to Twitter"] = "Veröffentlichung bei Twitter erlauben";
$a->strings["Send public postings to Twitter by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter";
$a->strings["Send linked #-tags and @-names to Twitter"] = "Sende verlinkte #-Tags und @-Namen nach Twitter";
$a->strings["Consumer key"] = "Consumer Key";
$a->strings["Consumer secret"] = "Consumer Secret";
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Ermöglicht dir, deine Friendica ID (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
$a->strings["Template URL (with {category})"] = "Vorlagen URL (mit {Kategorie})";
$a->strings["OAuth end-point"] = "OAuth Endpunkt";
$a->strings["Api"] = "Api";
$a->strings["View Source"] = "Quelle ansehen";
$a->strings["Get added to this list!"] = "Werde Mitglied dieser Liste";
$a->strings["Connect on Friendica!"] = "In Friendica verbinden!";
$a->strings["%d person likes this"] = array(
0 => "%d Person mag das",
1 => "%d Leute mögen das",
);
$a->strings["%d person doesn't like this"] = array(
0 => " %d Person mag das nicht",
1 => "%d Leute mögen das nicht",
);
$a->strings["Generate new key"] = "Neuen Schlüssel erstellen";
$a->strings["Widgets key"] = "Widgets Schlüssel";
$a->strings["Widgets available"] = "Verfügbare Widgets";
$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
$a->strings["Post to Wordpress"] = "Bei WordPress veröffentlichen";
$a->strings["WordPress Post Settings"] = "WordPress-Beitragseinstellungen";
$a->strings["Enable WordPress Post Plugin"] = "WordPress-Plugin aktivieren.";
$a->strings["WordPress username"] = "WordPress-Benutzername";
$a->strings["WordPress password"] = "WordPress-Passwort";
$a->strings["WordPress API URL"] = "WordPress-API-URL";
$a->strings["Post to WordPress by default"] = "Standardmäßig auf WordPress veröffentlichen";
$a->strings["Provide a backlink to the Friendica post"] = "Einen Link zurück zum Friendica-Beitrag hinzufügen";
$a->strings["Read the original post and comment stream on Friendica"] = "Den Originalbeitrag samt Kommentaren bei Friendica lesen";
$a->strings["YourLS Settings"] = "YourLS Einstellungen";
$a->strings["URL: http://"] = "URL: http://";
$a->strings["Username:"] = "Nutzername:";
$a->strings["Password:"] = "Passwort:";
$a->strings["Use SSL "] = "SSL Verwenden ";
$a->strings["yourls Settings saved."] = "yourls Einstellungen gespeichert";
$a->strings["Global"] = "Global";
$a->strings["Force global use of the alternate pager"] = "Erzwinge die Verwendung des \"Alternate Pager\" auf diesem Server";
$a->strings["Individual"] = "Individuell";
$a->strings["Each user chooses whether to use the alternate pager"] = "Jede/r Nutzer/in kann wählen ob der \"Alternate Pager\" verwendet werden soll";
$a->strings["Suppress \"View on friendica\""] = "Unterdrücke \"Auf Friendica Ansehen\"";
$a->strings["Mirror wall posts from facebook to friendica."] = "Spiegle Pinnwandeinträge von Facebook auf friendica";
$a->strings["Post to page/group:"] = "Auf FB Seite/Gruppe veröffentlichen";
$a->strings["%s:"] = "%s:";
$a->strings["Forum Directory"] = "Foren Verzeichnis";
$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
$a->strings["Upload Photos"] = "Bilder hochladen";
$a->strings["New album name: "] = "Name des neuen Albums: ";
$a->strings["or existing album name: "] = "oder existierender Albumname: ";
$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
$a->strings["Permissions"] = "Berechtigungen";
$a->strings["Show to Groups"] = "Zeige den Gruppen";
$a->strings["Show to Contacts"] = "Zeige den Kontakten";
$a->strings["Private Photo"] = "Privates Foto";
$a->strings["Public Photo"] = "Öffentliches Foto";
$a->strings["Edit Album"] = "Album bearbeiten";
$a->strings["Show Newest First"] = "Zeige neueste zuerst";
$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
$a->strings["View Photo"] = "Foto betrachten";
$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
$a->strings["Photo not available"] = "Foto nicht verfügbar";
$a->strings["View photo"] = "Fotos ansehen";
$a->strings["Edit photo"] = "Foto bearbeiten";
$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
$a->strings["Private Message"] = "Private Nachricht";
$a->strings["View Full Size"] = "Betrachte Originalgröße";
$a->strings["Tags: "] = "Tags: ";
$a->strings["[Remove any tag]"] = "[Tag entfernen]";
$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
$a->strings["New album name"] = "Name des neuen Albums";
$a->strings["Caption"] = "Bildunterschrift";
$a->strings["Add a Tag"] = "Tag hinzufügen";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["Private photo"] = "Privates Foto";
$a->strings["Public photo"] = "Öffentliches Foto";
$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
$a->strings["Share"] = "Teilen";
$a->strings["Please wait"] = "Bitte warten";
$a->strings["This is you"] = "Das bist du";
$a->strings["Comment"] = "Kommentar";
$a->strings["Preview"] = "Vorschau";
$a->strings["Global Directory"] = "Weltweites Verzeichnis";
$a->strings["Find on this site"] = "Auf diesem Server suchen";
$a->strings["Finding: "] = "Funde: ";
$a->strings["Site Directory"] = "Verzeichnis";
$a->strings["Find"] = "Finde";
$a->strings["Age: "] = "Alter: ";
$a->strings["Gender: "] = "Geschlecht:";
$a->strings["Location:"] = "Ort:";
$a->strings["Gender:"] = "Geschlecht:";
$a->strings["Status:"] = "Status:";
$a->strings["Homepage:"] = "Homepage:";
$a->strings["About:"] = "Über:";
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
$a->strings["Group Text settings updated."] = "Gruppen Text Einstellungen aktualisiert";
$a->strings["Remote Permissions Settings"] = "Entfernte Privatsphäreneinstellungen";
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Erlaube Empfängern von privaten Nachrichten zu sehen wer die anderen Empfänger sind";
$a->strings["Remote Permissions settings updated."] = "Entfernte Privatsphäreneinstellungen aktualisiert.";
$a->strings["Visible to:"] = "Sichtbar für:";
$a->strings["Visible to"] = "Sichtbar für";
$a->strings["may only be a partial list"] = "könnte nur ein Teil der Liste sein";
$a->strings["The posts of every user on this server show the post recipients"] = "Die Beiträge jedes Nutzers dieses Servers werden die Empfänger des Beitrags anzeigen";
$a->strings["Each user chooses whether his/her posts show the post recipients"] = "Jede/r Nutzer/in kann wählen ob die Empfänger der Beiträge angezeigt werden sollen oder nicht";
$a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "Spiegle alle Beiträge von StatusNet die keine Antworten oder wiederholten Nachrichten sind";
$a->strings["Shortening method that optimizes the post"] = "Kürzungsverfahren, das den Beitrag optimiert";
$a->strings["You are now authenticated to tumblr."] = "Du bist nun auf tumblr authentifiziert.";
$a->strings["return to the connector page"] = "zurück zur Connector Seite";
$a->strings["(Re-)Authenticate your tumblr page"] = "(Re-)Authentifizierung deiner tumblr Seite";
$a->strings["Post to page:"] = "Auf tumblr veröffentlichen";
$a->strings["You are not authenticated to tumblr"] = "Du bist gegenüber tumblr nicht authentifiziert";
$a->strings["Mirror all posts from twitter that are no replies or retweets"] = "Spiegle alle Beiträge von Twitter die keine Antworten oder wiederholten Nachrichten sind";
$a->strings["Shortening method that optimizes the tweet"] = "Kürzungsverfahren, das den Tweet optimiert";
$a->strings["Name of the Twitter Application"] = "Name der Twitter Anwendung";
$a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "Setze dies um eine Spiegelung von ~friendica zu ~friendica zu vermeiden";
$a->strings["Profile"] = "Profil";
$a->strings["Full Name:"] = "Kompletter Name:";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Geburtstag:";
$a->strings["Age:"] = "Alter:";
$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
$a->strings["Hometown:"] = "Heimatort:";
$a->strings["Tags:"] = "Tags";
$a->strings["Political Views:"] = "Politische Ansichten:";
$a->strings["Religion:"] = "Religion:";
$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
$a->strings["Likes:"] = "Likes:";
$a->strings["Dislikes:"] = "Dislikes:";
$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
$a->strings["Musical interests:"] = "Musikalische Interessen:";
$a->strings["Books, literature:"] = "Literatur/Bücher:";
$a->strings["Television:"] = "Fernsehen:";
$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
$a->strings["Love/Romance:"] = "Liebesleben:";
$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
$a->strings["School/education:"] = "Schule/Ausbildung:";
$a->strings["Male"] = "Männlich";
$a->strings["Female"] = "Weiblich";
$a->strings["Currently Male"] = "Momentan männlich";
$a->strings["Currently Female"] = "Momentan weiblich";
$a->strings["Mostly Male"] = "Hauptsächlich männlich";
$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
$a->strings["Transgender"] = "Transgender";
$a->strings["Intersex"] = "Intersex";
$a->strings["Transsexual"] = "Transsexuell";
$a->strings["Hermaphrodite"] = "Hermaphrodit";
$a->strings["Neuter"] = "Neuter";
$a->strings["Non-specific"] = "Nicht spezifiziert";
$a->strings["Other"] = "Andere";
$a->strings["Undecided"] = "Unentschieden";
$a->strings["Males"] = "Männer";
$a->strings["Females"] = "Frauen";
$a->strings["Gay"] = "Schwul";
$a->strings["Lesbian"] = "Lesbisch";
$a->strings["No Preference"] = "Keine Vorlieben";
$a->strings["Bisexual"] = "Bisexuell";
$a->strings["Autosexual"] = "Autosexual";
$a->strings["Abstinent"] = "Abstinent";
$a->strings["Virgin"] = "Jungfrauen";
$a->strings["Deviant"] = "Deviant";
$a->strings["Fetish"] = "Fetish";
$a->strings["Oodles"] = "Oodles";
$a->strings["Nonsexual"] = "Nonsexual";
$a->strings["Single"] = "Single";
$a->strings["Lonely"] = "Einsam";
$a->strings["Available"] = "Verfügbar";
$a->strings["Unavailable"] = "Nicht verfügbar";
$a->strings["Has crush"] = "verknallt";
$a->strings["Infatuated"] = "verliebt";
$a->strings["Dating"] = "Dating";
$a->strings["Unfaithful"] = "Untreu";
$a->strings["Sex Addict"] = "Sexbesessen";
$a->strings["Friends"] = "Freunde";
$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
$a->strings["Casual"] = "Casual";
$a->strings["Engaged"] = "Verlobt";
$a->strings["Married"] = "Verheiratet";
$a->strings["Imaginarily married"] = "imaginär verheiratet";
$a->strings["Partners"] = "Partner";
$a->strings["Cohabiting"] = "zusammenlebend";
$a->strings["Common law"] = "wilde Ehe";
$a->strings["Happy"] = "Glücklich";
$a->strings["Not looking"] = "Nicht auf der Suche";
$a->strings["Swinger"] = "Swinger";
$a->strings["Betrayed"] = "Betrogen";
$a->strings["Separated"] = "Getrennt";
$a->strings["Unstable"] = "Unstabil";
$a->strings["Divorced"] = "Geschieden";
$a->strings["Imaginarily divorced"] = "imaginär geschieden";
$a->strings["Widowed"] = "Verwitwet";
$a->strings["Uncertain"] = "Unsicher";
$a->strings["It's complicated"] = "Ist kompliziert";
$a->strings["Don't care"] = "Ist mir nicht wichtig";
$a->strings["Ask me"] = "Frag mich";
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
$a->strings["Poke"] = "Anstupsen";
$a->strings["View Status"] = "Pinnwand anschauen";
$a->strings["View Profile"] = "Profil anschauen";
$a->strings["View Photos"] = "Bilder anschauen";
$a->strings["Network Posts"] = "Netzwerkbeiträge";
$a->strings["Edit Contact"] = "Kontakt bearbeiten";
$a->strings["Send PM"] = "Private Nachricht senden";
$a->strings["prev"] = "vorige";
$a->strings["first"] = "erste";
$a->strings["last"] = "letzte";
$a->strings["next"] = "nächste";
$a->strings["newer"] = "neuer";
$a->strings["older"] = "älter";
$a->strings["No contacts"] = "Keine Kontakte";
$a->strings["%d Contact"] = array(
0 => "%d Kontakt",
1 => "%d Kontakte",
);
$a->strings["View Contacts"] = "Kontakte anzeigen";
$a->strings["Search"] = "Suche";
$a->strings["poke"] = "anstupsen";
$a->strings["poked"] = "stupste";
$a->strings["ping"] = "anpingen";
$a->strings["pinged"] = "pingte";
$a->strings["prod"] = "knuffen";
$a->strings["prodded"] = "knuffte";
$a->strings["slap"] = "ohrfeigen";
$a->strings["slapped"] = "ohrfeigte";
$a->strings["finger"] = "befummeln";
$a->strings["fingered"] = "befummelte";
$a->strings["rebuff"] = "eine Abfuhr erteilen";
$a->strings["rebuffed"] = "abfuhrerteilte";
$a->strings["happy"] = "glücklich";
$a->strings["sad"] = "traurig";
$a->strings["mellow"] = "sanft";
$a->strings["tired"] = "müde";
$a->strings["perky"] = "frech";
$a->strings["angry"] = "sauer";
$a->strings["stupified"] = "verblüfft";
$a->strings["puzzled"] = "verwirrt";
$a->strings["interested"] = "interessiert";
$a->strings["bitter"] = "verbittert";
$a->strings["cheerful"] = "fröhlich";
$a->strings["alive"] = "lebendig";
$a->strings["annoyed"] = "verärgert";
$a->strings["anxious"] = "unruhig";
$a->strings["cranky"] = "schrullig";
$a->strings["disturbed"] = "verstört";
$a->strings["frustrated"] = "frustriert";
$a->strings["motivated"] = "motiviert";
$a->strings["relaxed"] = "entspannt";
$a->strings["surprised"] = "überrascht";
$a->strings["January"] = "Januar";
$a->strings["February"] = "Februar";
$a->strings["March"] = "März";
$a->strings["April"] = "April";
$a->strings["May"] = "Mai";
$a->strings["June"] = "Juni";
$a->strings["July"] = "Juli";
$a->strings["August"] = "August";
$a->strings["September"] = "September";
$a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "Dezember";
$a->strings["bytes"] = "Byte";
$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
$a->strings["link to source"] = "Link zum Originalbeitrag";
$a->strings["default"] = "Standard";
$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
$a->strings["activity"] = "Aktivität";
$a->strings["comment"] = array(
0 => "",
1 => "Kommentar",
);
$a->strings["post"] = "Beitrag";
$a->strings["Item filed"] = "Beitrag abgelegt";
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
$a->strings["show"] = "zeigen";
$a->strings["don't show"] = "nicht zeigen";
$a->strings["Logged out."] = "Abgemeldet.";
$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel.";
$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
$a->strings["%d contact not imported"] = array(
0 => "%d Kontakt nicht importiert",
1 => "%d Kontakte nicht importiert",
);
$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
$a->strings["Starts:"] = "Beginnt:";
$a->strings["Finishes:"] = "Endet:";
$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
$a->strings["Connect URL missing."] = "Connect-URL fehlt";
$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.";
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
$a->strings["following"] = "folgen";
$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
$a->strings["Name too short."] = "Der Name ist zu kurz.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein.";
$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
$a->strings["Block immediately"] = "Sofort blockieren";
$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
$a->strings["Frequently"] = "immer wieder";
$a->strings["Hourly"] = "Stündlich";
$a->strings["Twice daily"] = "Zweimal täglich";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "E-Mail";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Zot!"] = "Zott";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/Chat";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
$a->strings["Connect"] = "Verbinden";
$a->strings["%d invitation available"] = array(
0 => "%d Einladung verfügbar",
1 => "%d Einladungen verfügbar",
);
$a->strings["Find People"] = "Leute finden";
$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
$a->strings["Connect/Follow"] = "Verbinden/Folgen";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
$a->strings["Similar Interests"] = "Ähnliche Interessen";
$a->strings["Random Profile"] = "Zufälliges Profil";
$a->strings["Invite Friends"] = "Freunde einladen";
$a->strings["Networks"] = "Netzwerke";
$a->strings["All Networks"] = "Alle Netzwerke";
$a->strings["Saved Folders"] = "Gespeicherte Ordner";
$a->strings["Everything"] = "Alles";
$a->strings["Categories"] = "Kategorien";
$a->strings["%d contact in common"] = array(
0 => "%d gemeinsamer Kontakt",
1 => "%d gemeinsame Kontakte",
);
$a->strings[" on Last.fm"] = " bei Last.fm";
$a->strings["Image/photo"] = "Bild/Foto";
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>";
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
$a->strings["Miscellaneous"] = "Verschiedenes";
$a->strings["year"] = "Jahr";
$a->strings["month"] = "Monat";
$a->strings["day"] = "Tag";
$a->strings["never"] = "nie";
$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
$a->strings["week"] = "Woche";
$a->strings["hour"] = "Stunde";
$a->strings["hours"] = "Stunden";
$a->strings["minute"] = "Minute";
$a->strings["minutes"] = "Minuten";
$a->strings["second"] = "Sekunde";
$a->strings["seconds"] = "Sekunden";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
$a->strings["%s's birthday"] = "%ss Geburtstag";
$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
$a->strings["Item not found."] = "Beitrag nicht gefunden.";
$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
$a->strings["Yes"] = "Ja";
$a->strings["Archives"] = "Archiv";
$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
$a->strings["(no subject)"] = "(kein Betreff)";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
$a->strings["Attachments:"] = "Anhänge:";
$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
$a->strings["Thank You,"] = "Danke,";
$a->strings["%s Administrator"] = "der Administrator von %s";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
$a->strings["a private message"] = "eine private Nachricht";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt";
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst";
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url].";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt";
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
$a->strings["Name:"] = "Name:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
$a->strings["General Features"] = "Allgemeine Features";
$a->strings["Multiple Profiles"] = "Mehrere Profile";
$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
$a->strings["Post Composition Features"] = "Beitragserstellung Features";
$a->strings["Richtext Editor"] = "Web-Editor";
$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
$a->strings["Post Preview"] = "Beitragsvorschau";
$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
$a->strings["Search by Date"] = "Archiv";
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
$a->strings["Group Filter"] = "Gruppen Filter";
$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
$a->strings["Network Filter"] = "Netzwerk Filter";
$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
$a->strings["Saved Searches"] = "Gespeicherte Suchen";
$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
$a->strings["Network Tabs"] = "Netzwerk Reiter";
$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren.";
$a->strings["Tagging"] = "Tagging";
$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
$a->strings["Post Categories"] = "Beitragskategorien";
$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
$a->strings["Star Posts"] = "Beiträge Markieren";
$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
$a->strings["Everybody"] = "Alle Kontakte";
$a->strings["edit"] = "bearbeiten";
$a->strings["Groups"] = "Gruppen";
$a->strings["Edit group"] = "Gruppe bearbeiten";
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
$a->strings["add"] = "hinzufügen";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
$a->strings["post/item"] = "Nachricht/Beitrag";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
$a->strings["Select"] = "Auswählen";
$a->strings["Delete"] = "Löschen";
$a->strings["View Album"] = "Album betrachten";
$a->strings["Recent Photos"] = "Neueste Fotos";
$a->strings["Not available."] = "Nicht verfügbar.";
$a->strings["Community"] = "Gemeinschaft";
$a->strings["No results."] = "Keine Ergebnisse.";
$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
$a->strings["Item not found"] = "Beitrag nicht gefunden";
$a->strings["Edit post"] = "Beitrag bearbeiten";
$a->strings["Edit"] = "Bearbeiten";
$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
$a->strings["Categories:"] = "Kategorien";
$a->strings["Filed under:"] = "Abgelegt unter:";
$a->strings["%s from %s"] = "%s von %s";
$a->strings["View in context"] = "Im Zusammenhang betrachten";
$a->strings["Please wait"] = "Bitte warten";
$a->strings["remove"] = "löschen";
$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
$a->strings["Follow Thread"] = "Folge der Unterhaltung";
$a->strings["%s likes this."] = "%s mag das.";
$a->strings["%s doesn't like this."] = "%s mag das nicht.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d Personen</span> mögen das";
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d Personen</span> mögen das nicht";
$a->strings["and"] = "und";
$a->strings[", and %d other people"] = " und %d andere";
$a->strings["%s like this."] = "%s mögen das.";
$a->strings["%s don't like this."] = "%s mögen das nicht.";
$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
$a->strings["Tag term:"] = "Tag:";
$a->strings["Save to Folder:"] = "In diesen Ordner verschieben:";
$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?";
$a->strings["Delete item(s)?"] = "Einträge löschen?";
$a->strings["Post to Email"] = "An E-Mail senden";
$a->strings["Share"] = "Teilen";
$a->strings["Upload photo"] = "Foto hochladen";
$a->strings["upload photo"] = "Bild hochladen";
$a->strings["Attach file"] = "Datei anhängen";
@ -154,635 +1022,169 @@ $a->strings["Set your location"] = "Deinen Standort festlegen";
$a->strings["set location"] = "Ort setzen";
$a->strings["Clear browser location"] = "Browser-Standort leeren";
$a->strings["clear location"] = "Ort löschen";
$a->strings["Permission settings"] = "Berechtigungseinstellungen";
$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
$a->strings["Public post"] = "Öffentlicher Beitrag";
$a->strings["Set title"] = "Titel setzen";
$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
$a->strings["Permission settings"] = "Berechtigungseinstellungen";
$a->strings["permissions"] = "Zugriffsrechte";
$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
$a->strings["Public post"] = "Öffentlicher Beitrag";
$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
);
$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
$a->strings["Invalid locator"] = "Ungültiger Locator";
$a->strings["Invalid email address."] = "Ungültige E-Mail Adresse.";
$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
$a->strings["Confirm"] = "Bestätigen";
$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Bitte beantworte Folgendes:";
$a->strings["Does %s know you?"] = "Kennt %s dich?";
$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
$a->strings["Friendica"] = "Friendica";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
$a->strings["Diaspora"] = "Diaspora";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
$a->strings["Submit Request"] = "Anfrage abschicken";
$a->strings["Account settings"] = "Kontoeinstellungen";
$a->strings["Display settings"] = "Anzeige-Einstellungen";
$a->strings["Connector settings"] = "Connector-Einstellungen";
$a->strings["Plugin settings"] = "Plugin-Einstellungen";
$a->strings["Connected apps"] = "Verbundene Programme";
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
$a->strings["Remove account"] = "Konto löschen";
$a->strings["Settings"] = "Einstellungen";
$a->strings["Export account"] = "Account exportieren";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen.";
$a->strings["Export all"] = "Alles exportieren";
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert).";
$a->strings["Friendica Social Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke Setup";
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert";
$a->strings["Could not create table."] = "Konnte Tabelle nicht erstellen.";
$a->strings["Your Friendica site database has been installed."] = "Die Datenbank deiner Friendicaseite wurde installiert.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
$a->strings["System check"] = "Systemtest";
$a->strings["Check again"] = "Noch einmal testen";
$a->strings["Database connection"] = "Datenbankverbindung";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir zu deiner Datenbank Kontakt aufnehmen können.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst.";
$a->strings["Database Server Name"] = "Datenbank-Server";
$a->strings["Database Login Name"] = "Datenbank-Nutzer";
$a->strings["Database Login Password"] = "Datenbank-Passwort";
$a->strings["Database Name"] = "Datenbank-Name";
$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst.";
$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone deiner Webseite";
$a->strings["Site settings"] = "Server-Einstellungen";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
$a->strings["PHP executable path"] = "Pfad zu PHP";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt.";
$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen.";
$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
$a->strings["Time Conversion"] = "Zeitumrechnung";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
$a->strings["UTC time: %s"] = "UTC Zeit: %s";
$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone.";
$a->strings["Poke/Prod"] = "Anstupsen etc.";
$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
$a->strings["Recipient"] = "Empfänger";
$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
$a->strings["Profile Match"] = "Profilübereinstimmungen";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu.";
$a->strings["is interested in:"] = "ist interessiert an:";
$a->strings["Connect"] = "Verbinden";
$a->strings["No matches"] = "Keine Übereinstimmungen";
$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
$a->strings["Visible to:"] = "Sichtbar für:";
$a->strings["No such group"] = "Es gibt keine solche Gruppe";
$a->strings["Group is empty"] = "Gruppe ist leer";
$a->strings["Group: "] = "Gruppe: ";
$a->strings["Select"] = "Auswählen";
$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
$a->strings["%s from %s"] = "%s von %s";
$a->strings["View in context"] = "Im Zusammenhang betrachten";
$a->strings["%d comment"] = array(
0 => "%d Kommentar",
1 => "%d Kommentare",
);
$a->strings["comment"] = array(
0 => "",
1 => "Kommentar",
);
$a->strings["show more"] = "mehr anzeigen";
$a->strings["like"] = "mag ich";
$a->strings["dislike"] = "mag ich nicht";
$a->strings["Share this"] = "Weitersagen";
$a->strings["share"] = "Teilen";
$a->strings["Bold"] = "Fett";
$a->strings["Italic"] = "Kursiv";
$a->strings["Underline"] = "Unterstrichen";
$a->strings["Quote"] = "Zitat";
$a->strings["Code"] = "Code";
$a->strings["Image"] = "Bild";
$a->strings["Link"] = "Verweis";
$a->strings["Video"] = "Video";
$a->strings["add star"] = "markieren";
$a->strings["remove star"] = "Markierung entfernen";
$a->strings["toggle star status"] = "Markierung umschalten";
$a->strings["starred"] = "markiert";
$a->strings["add tag"] = "Tag hinzufügen";
$a->strings["save to folder"] = "In Ordner speichern";
$a->strings["to"] = "zu";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$a->strings["Welcome to %s"] = "Willkommen zu %s";
$a->strings["Invalid request identifier."] = "Invalid request identifier.";
$a->strings["Discard"] = "Verwerfen";
$a->strings["Ignore"] = "Ignorieren";
$a->strings["System"] = "System";
$a->strings["Network"] = "Netzwerk";
$a->strings["Personal"] = "Persönlich";
$a->strings["Home"] = "Pinnwand";
$a->strings["Introductions"] = "Kontaktanfragen";
$a->strings["Messages"] = "Nachrichten";
$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
$a->strings["suggested by %s"] = "vorgeschlagen von %s";
$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
$a->strings["if applicable"] = "falls anwendbar";
$a->strings["Approve"] = "Genehmigen";
$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: ";
$a->strings["yes"] = "ja";
$a->strings["no"] = "nein";
$a->strings["Approve as: "] = "Genehmigen als: ";
$a->strings["Friend"] = "Freund";
$a->strings["Sharer"] = "Teilenden";
$a->strings["Fan/Admirer"] = "Fan/Verehrer";
$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
$a->strings["New Follower"] = "Neuer Bewunderer";
$a->strings["No introductions."] = "Keine Kontaktanfragen.";
$a->strings["Notifications"] = "Benachrichtigungen";
$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
$a->strings["System Notifications"] = "Systembenachrichtigungen";
$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
$a->strings["Contact updated."] = "Kontakt aktualisiert.";
$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
$a->strings["Do you really want to delete this contact?"] = "Möchtest du wirklich diesen Kontakt löschen?";
$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
$a->strings["You are sharing with %s"] = "Du teilst mit %s";
$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
$a->strings["Never"] = "Niemals";
$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
$a->strings["Suggest friends"] = "Kontakte vorschlagen";
$a->strings["Network type: %s"] = "Netzwerktyp: %s";
$a->strings["%d contact in common"] = array(
0 => "%d gemeinsamer Kontakt",
1 => "%d gemeinsame Kontakte",
);
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblock"] = "Entsperren";
$a->strings["Block"] = "Sperren";
$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
$a->strings["Unignore"] = "Ignorieren aufheben";
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["Unarchive"] = "Aus Archiv zurückholen";
$a->strings["Archive"] = "Archivieren";
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
$a->strings["Repair"] = "Reparieren";
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
$a->strings["Contact Editor"] = "Kontakt Editor";
$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
$a->strings["View conversations"] = "Unterhaltungen anzeigen";
$a->strings["Delete contact"] = "Lösche den Kontakt";
$a->strings["Last update:"] = "letzte Aktualisierung:";
$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
$a->strings["Update now"] = "Jetzt aktualisieren";
$a->strings["Currently blocked"] = "Derzeit geblockt";
$a->strings["Currently ignored"] = "Derzeit ignoriert";
$a->strings["Currently archived"] = "Momentan archiviert";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
$a->strings["Suggestions"] = "Kontaktvorschläge";
$a->strings["Suggest potential friends"] = "Freunde vorschlagen";
$a->strings["All Contacts"] = "Alle Kontakte";
$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblocked"] = "Ungeblockt";
$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
$a->strings["Blocked"] = "Geblockt";
$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
$a->strings["Ignored"] = "Ignoriert";
$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
$a->strings["Archived"] = "Archiviert";
$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
$a->strings["is a fan of yours"] = "ist ein Fan von dir";
$a->strings["you are a fan of"] = "du bist Fan von";
$a->strings["Edit contact"] = "Kontakt bearbeiten";
$a->strings["Contacts"] = "Kontakte";
$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
$a->strings["Finding: "] = "Funde: ";
$a->strings["Find"] = "Finde";
$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail.";
$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
$a->strings["Password Reset"] = "Passwort zurücksetzen";
$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
$a->strings["Your new password is"] = "Dein neues Passwort lautet";
$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
$a->strings["click here to login"] = "hier klicken, um dich anzumelden";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast.";
$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert";
$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
$a->strings["Reset"] = "Zurücksetzen";
$a->strings["Additional features"] = "Zusätzliche Features";
$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
$a->strings["Update"] = "Aktualisierungen";
$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
$a->strings["Features updated"] = "Features aktualisiert";
$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
$a->strings["Password changed."] = "Passwort ändern.";
$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
$a->strings[" Name too short."] = " Name ist zu kurz.";
$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
$a->strings["Add application"] = "Programm hinzufügen";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Umleiten";
$a->strings["Icon url"] = "Icon URL";
$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
$a->strings["Connected Apps"] = "Verbundene Programme";
$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
$a->strings["No name"] = "Kein Name";
$a->strings["Remove authorization"] = "Autorisierung entziehen";
$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
$a->strings["Off"] = "Aus";
$a->strings["On"] = "An";
$a->strings["Additional Features"] = "Zusätzliche Features";
$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
$a->strings["enabled"] = "eingeschaltet";
$a->strings["disabled"] = "ausgeschaltet";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
$a->strings["Connector Settings"] = "Verbindungs-Einstellungen";
$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.";
$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
$a->strings["IMAP port:"] = "IMAP-Port:";
$a->strings["Security:"] = "Sicherheit:";
$a->strings["None"] = "Keine";
$a->strings["Email login name:"] = "E-Mail-Login-Name:";
$a->strings["Email password:"] = "E-Mail-Passwort:";
$a->strings["Reply-to address:"] = "Reply-to Adresse:";
$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:";
$a->strings["Action after import:"] = "Aktion nach Import:";
$a->strings["Mark as seen"] = "Als gelesen markieren";
$a->strings["Move to folder"] = "In einen Ordner verschieben";
$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
$a->strings["Display Settings"] = "Anzeige-Einstellungen";
$a->strings["Display Theme:"] = "Theme:";
$a->strings["Mobile Theme:"] = "Mobiles Theme";
$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
$a->strings["Normal Account Page"] = "Normales Konto";
$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
$a->strings["Soapbox Page"] = "Marktschreier-Konto";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
$a->strings["Publish your default profile in your local site directory?"] = "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
$a->strings["Publish your default profile in the global social directory?"] = "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
$a->strings["Allow friends to post to your profile page?"] = "Dürfen deine Kontakte auf deine Pinnwand schreiben?";
$a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
$a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?";
$a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
$a->strings["or"] = "oder";
$a->strings["Your Identity Address is"] = "Die Adresse deines Profils lautet:";
$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
$a->strings["Account Settings"] = "Kontoeinstellungen";
$a->strings["Password Settings"] = "Passwort-Einstellungen";
$a->strings["New Password:"] = "Neues Passwort:";
$a->strings["Confirm:"] = "Bestätigen:";
$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern";
$a->strings["Basic Settings"] = "Grundeinstellungen";
$a->strings["Full Name:"] = "Kompletter Name:";
$a->strings["Email Address:"] = "E-Mail-Adresse:";
$a->strings["Your Timezone:"] = "Deine Zeitzone:";
$a->strings["Default Post Location:"] = "Standardstandort:";
$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:";
$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
$a->strings["Default Private Post"] = "Privater Standardbeitrag";
$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
$a->strings["accepting a friend request"] = " du eine Kontaktanfrage akzeptierst";
$a->strings["joining a forum/community"] = " du einem Forum/einer Gemeinschaftsseite beitrittst";
$a->strings["making an <em>interesting</em> profile change"] = " du eine <em>interessante</em> Änderung an deinem Profil durchführst";
$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
$a->strings["You receive an introduction"] = " du eine Kontaktanfrage erhältst";
$a->strings["Your introductions are confirmed"] = " eine deiner Kontaktanfragen akzeptiert wurde";
$a->strings["Someone writes on your profile wall"] = " jemand etwas auf deine Pinnwand schreibt";
$a->strings["Someone writes a followup comment"] = " jemand auch einen Kommentar verfasst";
$a->strings["You receive a private message"] = " du eine private Nachricht erhältst";
$a->strings["You receive a friend suggestion"] = " du eine Empfehlung erhältst";
$a->strings["You are tagged in a post"] = " du in einem Beitrag erwähnt wirst";
$a->strings["You are poked/prodded/etc. in a post"] = " du von jemandem angestupst oder sonstwie behandelt wirst";
$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten: ";
$a->strings["Search Results For:"] = "Suchergebnisse für:";
$a->strings["Remove term"] = "Begriff entfernen";
$a->strings["Saved Searches"] = "Gespeicherte Suchen";
$a->strings["add"] = "hinzufügen";
$a->strings["Commented Order"] = "Neueste Kommentare";
$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
$a->strings["Posted Order"] = "Neueste Beiträge";
$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht";
$a->strings["New"] = "Neue";
$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
$a->strings["Shared Links"] = "Geteilte Links";
$a->strings["Interesting Links"] = "Interessante Links";
$a->strings["Starred"] = "Markierte";
$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
);
$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
$a->strings["Contact: "] = "Kontakt: ";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
$a->strings["Personal Notes"] = "Persönliche Notizen";
$a->strings["Save"] = "Speichern";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
$a->strings["Import"] = "Import";
$a->strings["Move account"] = "Account umziehen";
$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
$a->strings["Account file"] = "Account Datei";
$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
$a->strings["Message sent."] = "Nachricht gesendet.";
$a->strings["No recipient."] = "Kein Empfänger.";
$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
$a->strings["Send Private Message"] = "Private Nachricht senden";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
$a->strings["To:"] = "An:";
$a->strings["Subject:"] = "Betreff:";
$a->strings["Your message:"] = "Deine Nachricht:";
$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
$a->strings["Getting Started"] = "Einstieg";
$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst.";
$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
$a->strings["Profile"] = "Profil";
$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
$a->strings["Edit Your Profile"] = "Editiere dein Profil";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils.";
$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
$a->strings["Connecting"] = "Verbindungen knüpfen";
$a->strings["Facebook"] = "Facebook";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
$a->strings["Importing Emails"] = "Emails Importieren";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst.";
$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
$a->strings["Finding New People"] = "Neue Leute kennenlernen";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
$a->strings["Groups"] = "Gruppen";
$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
$a->strings["Getting Help"] = "Hilfe bekommen";
$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
$a->strings["Group created."] = "Gruppe erstellt.";
$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
$a->strings["Group not found."] = "Gruppe nicht gefunden.";
$a->strings["Group name changed."] = "Gruppenname geändert.";
$a->strings["Permission denied"] = "Zugriff verweigert";
$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
$a->strings["Group Name: "] = "Gruppenname:";
$a->strings["Group removed."] = "Gruppe entfernt.";
$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
$a->strings["Group Editor"] = "Gruppeneditor";
$a->strings["Members"] = "Mitglieder";
$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner";
$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
$a->strings["Visible To"] = "Sichtbar für";
$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
$a->strings["No contacts."] = "Keine Kontakte.";
$a->strings["View Contacts"] = "Kontakte anzeigen";
$a->strings["Registration details for %s"] = "Details der Registration von %s";
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte.";
$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
$a->strings["Registration"] = "Registrierung";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
$a->strings["Register"] = "Registrieren";
$a->strings["People Search"] = "Personensuche";
$a->strings["photo"] = "Foto";
$a->strings["status"] = "Status";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
$a->strings["Item not found."] = "Beitrag nicht gefunden.";
$a->strings["Access denied."] = "Zugriff verweigert.";
$a->strings["Photos"] = "Bilder";
$a->strings["Files"] = "Dateien";
$a->strings["Account approved."] = "Konto freigegeben.";
$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
$a->strings["Please login."] = "Bitte melde dich an.";
$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
$a->strings["Preview"] = "Vorschau";
$a->strings["Post to Groups"] = "Poste an Gruppe";
$a->strings["Post to Contacts"] = "Poste an Kontakte";
$a->strings["Private post"] = "Privater Beitrag";
$a->strings["[no subject]"] = "[kein Betreff]";
$a->strings["Wall Photos"] = "Pinnwand-Bilder";
$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest.";
$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
$a->strings["Mood"] = "Stimmung";
$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
$a->strings["Image uploaded but image cropping failed."] = "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen.";
$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] ist gescheitert.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
$a->strings["Upload File:"] = "Datei hochladen:";
$a->strings["Select a profile:"] = "Profil auswählen";
$a->strings["Upload"] = "Hochladen";
$a->strings["skip this step"] = "diesen Schritt überspringen";
$a->strings["select a photo from your photo albums"] = "wähle ein Foto von deinen Fotoalben";
$a->strings["Crop Image"] = "Bild zurechtschneiden";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
$a->strings["Image uploaded successfully."] = "Bild erfolgreich auf den Server geladen.";
$a->strings["No profile"] = "Kein Profil";
$a->strings["Remove My Account"] = "Konto löschen";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
$a->strings["Nothing new here"] = "Keine Neuigkeiten.";
$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
$a->strings["Logout"] = "Abmelden";
$a->strings["End this session"] = "Diese Sitzung beenden";
$a->strings["Status"] = "Status";
$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
$a->strings["Your profile page"] = "Deine Profilseite";
$a->strings["Photos"] = "Bilder";
$a->strings["Your photos"] = "Deine Fotos";
$a->strings["Events"] = "Veranstaltungen";
$a->strings["Your events"] = "Deine Ereignisse";
$a->strings["Personal notes"] = "Persönliche Notizen";
$a->strings["Your personal photos"] = "Deine privaten Fotos";
$a->strings["Sign in"] = "Anmelden";
$a->strings["Home"] = "Pinnwand";
$a->strings["Home Page"] = "Homepage";
$a->strings["Register"] = "Registrieren";
$a->strings["Create an account"] = "Nutzerkonto erstellen";
$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
$a->strings["Apps"] = "Apps";
$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
$a->strings["Community"] = "Gemeinschaft";
$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
$a->strings["Directory"] = "Verzeichnis";
$a->strings["People directory"] = "Nutzerverzeichnis";
$a->strings["Network"] = "Netzwerk";
$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte";
$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
$a->strings["Introductions"] = "Kontaktanfragen";
$a->strings["Friend Requests"] = "Kontaktanfragen";
$a->strings["Notifications"] = "Benachrichtigungen";
$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
$a->strings["Messages"] = "Nachrichten";
$a->strings["Private mail"] = "Private E-Mail";
$a->strings["Inbox"] = "Eingang";
$a->strings["Outbox"] = "Ausgang";
$a->strings["New Message"] = "Neue Nachricht";
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
$a->strings["Message deleted."] = "Nachricht gelöscht.";
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
$a->strings["No messages."] = "Keine Nachrichten.";
$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
$a->strings["You and %s"] = "Du und %s";
$a->strings["%s and You"] = "%s und du";
$a->strings["Delete conversation"] = "Unterhaltung löschen";
$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d Nachricht",
1 => "%d Nachrichten",
);
$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
$a->strings["Delete message"] = "Nachricht löschen";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten.";
$a->strings["Send Reply"] = "Antwort senden";
$a->strings["Friends of %s"] = "Freunde von %s";
$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
$a->strings["Manage"] = "Verwalten";
$a->strings["Manage other pages"] = "Andere Seiten verwalten";
$a->strings["Delegations"] = "Delegierungen";
$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
$a->strings["Account settings"] = "Kontoeinstellungen";
$a->strings["Profiles"] = "Profile";
$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
$a->strings["Contacts"] = "Kontakte";
$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
$a->strings["Admin"] = "Administration";
$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
$a->strings["Navigation"] = "Navigation";
$a->strings["Site map"] = "Sitemap";
$a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
$a->strings["Welcome "] = "Willkommen ";
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
$a->strings["Welcome back "] = "Willkommen zurück ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
$a->strings["Profile not found."] = "Profil nicht gefunden.";
$a->strings["Profile deleted."] = "Profil gelöscht.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Neues Profil angelegt.";
$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
$a->strings["Marital Status"] = "Familienstand";
$a->strings["Romantic Partner"] = "Romanze";
$a->strings["Likes"] = "Likes";
$a->strings["Dislikes"] = "Dislikes";
$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
$a->strings["Religion"] = "Religion";
$a->strings["Political Views"] = "Politische Ansichten";
$a->strings["Gender"] = "Geschlecht";
$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
$a->strings["Homepage"] = "Webseite";
$a->strings["Interests"] = "Interessen";
$a->strings["Address"] = "Adresse";
$a->strings["Profile updated."] = "Profil aktualisiert.";
$a->strings[" and "] = " und ";
$a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
$a->strings[" - Visit %1\$s's %2\$s"] = " %1\$ss %2\$s besuchen";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
$a->strings["No"] = "Nein";
$a->strings["Edit Profile Details"] = "Profil bearbeiten";
$a->strings["Change Profile Photo"] = "Profilbild ändern";
$a->strings["View this profile"] = "Dieses Profil anzeigen";
$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
$a->strings["Delete this profile"] = "Dieses Profil löschen";
$a->strings["Profile Name:"] = "Profilname:";
$a->strings["Your Full Name:"] = "Dein kompletter Name:";
$a->strings["Title/Description:"] = "Titel/Beschreibung:";
$a->strings["Your Gender:"] = "Dein Geschlecht:";
$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
$a->strings["Street Address:"] = "Adresse:";
$a->strings["Locality/City:"] = "Wohnort:";
$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
$a->strings["Country:"] = "Land:";
$a->strings["Region/State:"] = "Region/Bundesstaat:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "Seit [Datum]:";
$a->strings["Homepage URL:"] = "Adresse der Homepage:";
$a->strings["Religious Views:"] = "Religiöse Ansichten:";
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …";
$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
$a->strings["Musical interests"] = "Musikalische Interessen";
$a->strings["Books, literature"] = "Literatur/Bücher";
$a->strings["Television"] = "Fernsehen";
$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
$a->strings["Love/romance"] = "Liebesleben";
$a->strings["Work/employment"] = "Arbeit/Beschäftigung";
$a->strings["School/education"] = "Schule/Ausbildung";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
$a->strings["Edit/Manage Profiles"] = "Verwalte/Editiere Profile";
$a->strings["Change profile photo"] = "Profilbild ändern";
$a->strings["Create New Profile"] = "Neues Profil anlegen";
$a->strings["Profile Image"] = "Profilbild";
$a->strings["visible to everybody"] = "sichtbar für jeden";
$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
$a->strings["Permission denied"] = "Zugriff verweigert";
$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner";
$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
$a->strings["Visible To"] = "Sichtbar für";
$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
$a->strings["Personal Notes"] = "Persönliche Notizen";
$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
$a->strings["Edit contact"] = "Kontakt bearbeiten";
$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
$a->strings["{0} sent you a message"] = "{0} hat dir eine Nachricht geschickt";
$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
$a->strings["Site"] = "Seite";
$a->strings["Users"] = "Nutzer";
@ -790,7 +1192,6 @@ $a->strings["Plugins"] = "Plugins";
$a->strings["Themes"] = "Themen";
$a->strings["DB updates"] = "DB Updates";
$a->strings["Logs"] = "Protokolle";
$a->strings["Admin"] = "Administration";
$a->strings["Plugin Features"] = "Plugin Features";
$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
$a->strings["Normal Account"] = "Normales Konto";
@ -807,17 +1208,19 @@ $a->strings["Pending registrations"] = "Anstehende Anmeldungen";
$a->strings["Version"] = "Version";
$a->strings["Active plugins"] = "Aktive Plugins";
$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
$a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
$a->strings["Closed"] = "Geschlossen";
$a->strings["Requires approval"] = "Bedarf der Zustimmung";
$a->strings["Open"] = "Offen";
$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
$a->strings["Registration"] = "Registrierung";
$a->strings["File upload"] = "Datei hochladen";
$a->strings["Policies"] = "Regeln";
$a->strings["Advanced"] = "Erweitert";
$a->strings["Performance"] = "Performance";
$a->strings["Site name"] = "Seitenname";
$a->strings["Banner/Logo"] = "Banner/Logo";
$a->strings["System language"] = "Systemsprache";
$a->strings["System theme"] = "Systemweites Thema";
@ -828,6 +1231,10 @@ $a->strings["SSL link policy"] = "Regeln für SSL Links";
$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
$a->strings["'Share' element"] = "'Teilen' Element";
$a->strings["Activates the bbcode element 'share' for repeating items."] = "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen.";
$a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü";
$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden.";
$a->strings["Single user instance"] = "Ein-Nutzer Instanz";
$a->strings["Make this instance multi-user or single-user for the named user"] = "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt.";
$a->strings["Maximum image size"] = "Maximale Größe von Bildern";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.";
$a->strings["Maximum image length"] = "Maximale Länge von Bildern";
@ -915,9 +1322,12 @@ $a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
$a->strings["select all"] = "Alle auswählen";
$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
$a->strings["Request date"] = "Anfragedatum";
$a->strings["Email"] = "E-Mail";
$a->strings["Name"] = "Name";
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
$a->strings["Approve"] = "Genehmigen";
$a->strings["Deny"] = "Verwehren";
$a->strings["Block"] = "Sperren";
$a->strings["Unblock"] = "Entsperren";
$a->strings["Site admin"] = "Seitenadministrator";
$a->strings["Register date"] = "Anmeldedatum";
$a->strings["Last login"] = "Letzte Anmeldung";
@ -942,124 +1352,54 @@ $a->strings["Debugging"] = "Protokoll führen";
$a->strings["Log file"] = "Protokolldatei";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
$a->strings["Log level"] = "Protokoll-Level";
$a->strings["Update now"] = "Jetzt aktualisieren";
$a->strings["Close"] = "Schließen";
$a->strings["FTP Host"] = "FTP Host";
$a->strings["FTP Path"] = "FTP Pfad";
$a->strings["FTP User"] = "FTP Nutzername";
$a->strings["FTP Password"] = "FTP Passwort";
$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
$a->strings["{0} sent you a message"] = "{0} hat dir eine Nachricht geschickt";
$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
$a->strings["Contact added"] = "Kontakt hinzugefügt";
$a->strings["Common Friends"] = "Gemeinsame Freunde";
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
$a->strings["link"] = "Link";
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest.";
$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
$a->strings["Friends of %s"] = "Freunde von %s";
$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
$a->strings["Remove term"] = "Begriff entfernen";
$a->strings["No results."] = "Keine Ergebnisse.";
$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?";
$a->strings["Registration details for %s"] = "Details der Registration von %s";
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte.";
$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
$a->strings["Applications"] = "Anwendungen";
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
$a->strings["Search"] = "Suche";
$a->strings["Profile not found."] = "Profil nicht gefunden.";
$a->strings["Profile deleted."] = "Profil gelöscht.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Neues Profil angelegt.";
$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
$a->strings["Marital Status"] = "Familienstand";
$a->strings["Romantic Partner"] = "Romanze";
$a->strings["Likes"] = "Likes";
$a->strings["Dislikes"] = "Dislikes";
$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
$a->strings["Religion"] = "Religion";
$a->strings["Political Views"] = "Politische Ansichten";
$a->strings["Gender"] = "Geschlecht";
$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
$a->strings["Homepage"] = "Webseite";
$a->strings["Interests"] = "Interessen";
$a->strings["Address"] = "Adresse";
$a->strings["Location"] = "Wohnort";
$a->strings["Profile updated."] = "Profil aktualisiert.";
$a->strings[" and "] = " und ";
$a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
$a->strings[" - Visit %1\$s's %2\$s"] = " %1\$ss %2\$s besuchen";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
$a->strings["Edit Profile Details"] = "Profil bearbeiten";
$a->strings["Change Profile Photo"] = "Profilbild ändern";
$a->strings["View this profile"] = "Dieses Profil anzeigen";
$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
$a->strings["Delete this profile"] = "Dieses Profil löschen";
$a->strings["Profile Name:"] = "Profilname:";
$a->strings["Your Full Name:"] = "Dein kompletter Name:";
$a->strings["Title/Description:"] = "Titel/Beschreibung:";
$a->strings["Your Gender:"] = "Dein Geschlecht:";
$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
$a->strings["Street Address:"] = "Adresse:";
$a->strings["Locality/City:"] = "Wohnort:";
$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
$a->strings["Country:"] = "Land:";
$a->strings["Region/State:"] = "Region/Bundesstaat:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "Seit [Datum]:";
$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
$a->strings["Homepage URL:"] = "Adresse der Homepage:";
$a->strings["Hometown:"] = "Heimatort:";
$a->strings["Political Views:"] = "Politische Ansichten:";
$a->strings["Religious Views:"] = "Religiöse Ansichten:";
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
$a->strings["Likes:"] = "Likes:";
$a->strings["Dislikes:"] = "Dislikes:";
$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …";
$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
$a->strings["Musical interests"] = "Musikalische Interessen";
$a->strings["Books, literature"] = "Literatur/Bücher";
$a->strings["Television"] = "Fernsehen";
$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
$a->strings["Love/romance"] = "Liebesleben";
$a->strings["Work/employment"] = "Arbeit/Beschäftigung";
$a->strings["School/education"] = "Schule/Ausbildung";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
$a->strings["Age: "] = "Alter: ";
$a->strings["Edit/Manage Profiles"] = "Verwalte/Editiere Profile";
$a->strings["Change profile photo"] = "Profilbild ändern";
$a->strings["Create New Profile"] = "Neues Profil anlegen";
$a->strings["Profile Image"] = "Profilbild";
$a->strings["visible to everybody"] = "sichtbar für jeden";
$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
$a->strings["Save to Folder:"] = "In diesen Ordner verschieben:";
$a->strings["- select -"] = "- auswählen -";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
$a->strings["Existing Page Managers"] = "Vorhandene Seiten Manager";
$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
$a->strings["Add"] = "Hinzufügen";
$a->strings["No entries."] = "Keine Einträge";
$a->strings["Account approved."] = "Konto freigegeben.";
$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
$a->strings["Please login."] = "Bitte melde dich an.";
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
$a->strings["Remove My Account"] = "Konto löschen";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:";
$a->strings["Source input: "] = "Originaltext:";
@ -1072,19 +1412,428 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Texteingabe (Diaspora Format): ";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["Common Friends"] = "Gemeinsame Freunde";
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
$a->strings["Contact updated."] = "Kontakt aktualisiert.";
$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
$a->strings["Do you really want to delete this contact?"] = "Möchtest du wirklich diesen Kontakt löschen?";
$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
$a->strings["You are sharing with %s"] = "Du teilst mit %s";
$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
$a->strings["Never"] = "Niemals";
$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
$a->strings["Suggest friends"] = "Kontakte vorschlagen";
$a->strings["Network type: %s"] = "Netzwerktyp: %s";
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
$a->strings["Unignore"] = "Ignorieren aufheben";
$a->strings["Ignore"] = "Ignorieren";
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["Unarchive"] = "Aus Archiv zurückholen";
$a->strings["Archive"] = "Archivieren";
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
$a->strings["Repair"] = "Reparieren";
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
$a->strings["Contact Editor"] = "Kontakt Editor";
$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
$a->strings["View conversations"] = "Unterhaltungen anzeigen";
$a->strings["Delete contact"] = "Lösche den Kontakt";
$a->strings["Last update:"] = "letzte Aktualisierung:";
$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
$a->strings["Currently blocked"] = "Derzeit geblockt";
$a->strings["Currently ignored"] = "Derzeit ignoriert";
$a->strings["Currently archived"] = "Momentan archiviert";
$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
$a->strings["Suggestions"] = "Kontaktvorschläge";
$a->strings["Suggest potential friends"] = "Freunde vorschlagen";
$a->strings["All Contacts"] = "Alle Kontakte";
$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblocked"] = "Ungeblockt";
$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
$a->strings["Blocked"] = "Geblockt";
$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
$a->strings["Ignored"] = "Ignoriert";
$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
$a->strings["Archived"] = "Archiviert";
$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
$a->strings["is a fan of yours"] = "ist ein Fan von dir";
$a->strings["you are a fan of"] = "du bist Fan von";
$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
$a->strings["everybody"] = "jeder";
$a->strings["Additional features"] = "Zusätzliche Features";
$a->strings["Display settings"] = "Anzeige-Einstellungen";
$a->strings["Connector settings"] = "Connector-Einstellungen";
$a->strings["Plugin settings"] = "Plugin-Einstellungen";
$a->strings["Connected apps"] = "Verbundene Programme";
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
$a->strings["Remove account"] = "Konto löschen";
$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
$a->strings["Update"] = "Aktualisierungen";
$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
$a->strings["Features updated"] = "Features aktualisiert";
$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
$a->strings["Password changed."] = "Passwort ändern.";
$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
$a->strings[" Name too short."] = " Name ist zu kurz.";
$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
$a->strings["Add application"] = "Programm hinzufügen";
$a->strings["Redirect"] = "Umleiten";
$a->strings["Icon url"] = "Icon URL";
$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
$a->strings["Connected Apps"] = "Verbundene Programme";
$a->strings["Edit"] = "Bearbeiten";
$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
$a->strings["No name"] = "Kein Name";
$a->strings["Remove authorization"] = "Autorisierung entziehen";
$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
$a->strings["Off"] = "Aus";
$a->strings["On"] = "An";
$a->strings["Additional Features"] = "Zusätzliche Features";
$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
$a->strings["enabled"] = "eingeschaltet";
$a->strings["disabled"] = "ausgeschaltet";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
$a->strings["Connector Settings"] = "Verbindungs-Einstellungen";
$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.";
$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
$a->strings["IMAP port:"] = "IMAP-Port:";
$a->strings["Security:"] = "Sicherheit:";
$a->strings["Email login name:"] = "E-Mail-Login-Name:";
$a->strings["Email password:"] = "E-Mail-Passwort:";
$a->strings["Reply-to address:"] = "Reply-to Adresse:";
$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:";
$a->strings["Action after import:"] = "Aktion nach Import:";
$a->strings["Mark as seen"] = "Als gelesen markieren";
$a->strings["Move to folder"] = "In einen Ordner verschieben";
$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
$a->strings["Display Settings"] = "Anzeige-Einstellungen";
$a->strings["Display Theme:"] = "Theme:";
$a->strings["Mobile Theme:"] = "Mobiles Theme";
$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
$a->strings["Normal Account Page"] = "Normales Konto";
$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
$a->strings["Soapbox Page"] = "Marktschreier-Konto";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
$a->strings["Publish your default profile in your local site directory?"] = "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
$a->strings["Publish your default profile in the global social directory?"] = "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
$a->strings["Allow friends to post to your profile page?"] = "Dürfen deine Kontakte auf deine Pinnwand schreiben?";
$a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
$a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?";
$a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
$a->strings["or"] = "oder";
$a->strings["Your Identity Address is"] = "Die Adresse deines Profils lautet:";
$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
$a->strings["Account Settings"] = "Kontoeinstellungen";
$a->strings["Password Settings"] = "Passwort-Einstellungen";
$a->strings["New Password:"] = "Neues Passwort:";
$a->strings["Confirm:"] = "Bestätigen:";
$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern";
$a->strings["Basic Settings"] = "Grundeinstellungen";
$a->strings["Email Address:"] = "E-Mail-Adresse:";
$a->strings["Your Timezone:"] = "Deine Zeitzone:";
$a->strings["Default Post Location:"] = "Standardstandort:";
$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:";
$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
$a->strings["Show to Groups"] = "Zeige den Gruppen";
$a->strings["Show to Contacts"] = "Zeige den Kontakten";
$a->strings["Default Private Post"] = "Privater Standardbeitrag";
$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
$a->strings["accepting a friend request"] = " du eine Kontaktanfrage akzeptierst";
$a->strings["joining a forum/community"] = " du einem Forum/einer Gemeinschaftsseite beitrittst";
$a->strings["making an <em>interesting</em> profile change"] = " du eine <em>interessante</em> Änderung an deinem Profil durchführst";
$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
$a->strings["You receive an introduction"] = " du eine Kontaktanfrage erhältst";
$a->strings["Your introductions are confirmed"] = " eine deiner Kontaktanfragen akzeptiert wurde";
$a->strings["Someone writes on your profile wall"] = " jemand etwas auf deine Pinnwand schreibt";
$a->strings["Someone writes a followup comment"] = " jemand auch einen Kommentar verfasst";
$a->strings["You receive a private message"] = " du eine private Nachricht erhältst";
$a->strings["You receive a friend suggestion"] = " du eine Empfehlung erhältst";
$a->strings["You are tagged in a post"] = " du in einem Beitrag erwähnt wirst";
$a->strings["You are poked/prodded/etc. in a post"] = " du von jemandem angestupst oder sonstwie behandelt wirst";
$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
$a->strings["link"] = "Link";
$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
$a->strings["Account Nickname"] = "Konto-Spitzname";
$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
$a->strings["Account URL"] = "Konto-URL";
$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
$a->strings["Existing Page Managers"] = "Vorhandene Seiten Manager";
$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
$a->strings["Add"] = "Hinzufügen";
$a->strings["No entries."] = "Keine Einträge";
$a->strings["Poke/Prod"] = "Anstupsen etc.";
$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
$a->strings["Recipient"] = "Empfänger";
$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
);
$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
$a->strings["Invalid locator"] = "Ungültiger Locator";
$a->strings["Invalid email address."] = "Ungültige E-Mail Adresse.";
$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
$a->strings["Confirm"] = "Bestätigen";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Bitte beantworte Folgendes:";
$a->strings["Does %s know you?"] = "Kennt %s dich?";
$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
$a->strings["Submit Request"] = "Anfrage abschicken";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
$a->strings["Global Directory"] = "Weltweites Verzeichnis";
$a->strings["Find on this site"] = "Auf diesem Server suchen";
$a->strings["Site Directory"] = "Verzeichnis";
$a->strings["Gender: "] = "Geschlecht:";
$a->strings["Gender:"] = "Geschlecht:";
$a->strings["Status:"] = "Status:";
$a->strings["Homepage:"] = "Homepage:";
$a->strings["About:"] = "Über:";
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
$a->strings["People Search"] = "Personensuche";
$a->strings["No matches"] = "Keine Übereinstimmungen";
$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
$a->strings["Tag removed"] = "Tag entfernt";
$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
$a->strings["Item not found"] = "Beitrag nicht gefunden";
$a->strings["Edit post"] = "Beitrag bearbeiten";
$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
$a->strings["hour:minute"] = "Stunde:Minute";
$a->strings["Event details"] = "Veranstaltungsdetails";
$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
$a->strings["Required"] = "Benötigt";
$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
$a->strings["Event Finishes:"] = "Veranstaltungsende:";
$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
$a->strings["Description:"] = "Beschreibung";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Veranstaltung teilen";
$a->strings["Files"] = "Dateien";
$a->strings["Export account"] = "Account exportieren";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen.";
$a->strings["Export all"] = "Alles exportieren";
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert).";
$a->strings["- select -"] = "- auswählen -";
$a->strings["Import"] = "Import";
$a->strings["Move account"] = "Account umziehen";
$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
$a->strings["Account file"] = "Account Datei";
$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
$a->strings["Contact added"] = "Kontakt hinzugefügt";
$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
$a->strings["Group created."] = "Gruppe erstellt.";
$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
$a->strings["Group not found."] = "Gruppe nicht gefunden.";
$a->strings["Group name changed."] = "Gruppenname geändert.";
$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
$a->strings["Group Name: "] = "Gruppenname:";
$a->strings["Group removed."] = "Gruppe entfernt.";
$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
$a->strings["Group Editor"] = "Gruppeneditor";
$a->strings["Members"] = "Mitglieder";
$a->strings["No profile"] = "Kein Profil";
$a->strings["Help:"] = "Hilfe:";
$a->strings["Not Found"] = "Nicht gefunden";
$a->strings["Page not found."] = "Seite nicht gefunden.";
$a->strings["No contacts."] = "Keine Kontakte.";
$a->strings["Access denied."] = "Zugriff verweigert.";
$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
$a->strings["Friendica Social Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke Setup";
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert";
$a->strings["Could not create table."] = "Konnte Tabelle nicht erstellen.";
$a->strings["Your Friendica site database has been installed."] = "Die Datenbank deiner Friendicaseite wurde installiert.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
$a->strings["System check"] = "Systemtest";
$a->strings["Check again"] = "Noch einmal testen";
$a->strings["Database connection"] = "Datenbankverbindung";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir zu deiner Datenbank Kontakt aufnehmen können.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst.";
$a->strings["Database Server Name"] = "Datenbank-Server";
$a->strings["Database Login Name"] = "Datenbank-Nutzer";
$a->strings["Database Login Password"] = "Datenbank-Passwort";
$a->strings["Database Name"] = "Datenbank-Name";
$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst.";
$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone deiner Webseite";
$a->strings["Site settings"] = "Server-Einstellungen";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
$a->strings["PHP executable path"] = "Pfad zu PHP";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt.";
$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen.";
$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
$a->strings["Please join us on Friendica"] = "Bitte trete bei uns auf Friendica bei";
@ -1101,1013 +1850,286 @@ $a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
$a->strings["Send invitations"] = "Einladungen senden";
$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
$a->strings["Your message:"] = "Deine Nachricht:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
$a->strings["Google+ Import Settings"] = "Google+ Import Einstellungen";
$a->strings["Enable Google+ Import"] = "Aktiviere Google+ Import";
$a->strings["Google Account ID"] = "Google Account ID";
$a->strings["Google+ Import Settings saved."] = "Google+ Import Einstellungen gespeichert.";
$a->strings["Facebook disabled"] = "Facebook deaktiviert";
$a->strings["Updating contacts"] = "Aktualisiere Kontakte";
$a->strings["Facebook API key is missing."] = "Facebook-API-Schlüssel nicht gefunden";
$a->strings["Facebook Connect"] = "Mit Facebook verbinden";
$a->strings["Install Facebook connector for this account."] = "Facebook-Connector für dieses Konto installieren.";
$a->strings["Remove Facebook connector"] = "Facebook-Connector entfernen";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Neu authentifizieren [Das ist immer dann nötig, wenn du dein Facebook-Passwort geändert hast.]";
$a->strings["Post to Facebook by default"] = "Veröffentliche standardmäßig bei Facebook";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt.";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren.";
$a->strings["Link all your Facebook friends and conversations on this website"] = "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>.";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Mit den folgenden Einstellungen kannst du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen";
$a->strings["Do not import your Facebook profile wall conversations"] = "Facebook-Pinnwand nicht importieren";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Wenn du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann.";
$a->strings["Comma separated applications to ignore"] = "Kommaseparierte Anwendungen, die ignoriert werden sollen";
$a->strings["Problems with Facebook Real-Time Updates"] = "Probleme mit Facebook Echtzeit-Updates";
$a->strings["Administrator"] = "Administrator";
$a->strings["Facebook Connector Settings"] = "Facebook-Verbindungseinstellungen";
$a->strings["Facebook API Key"] = "Facebook API Schlüssel";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.<br><br>";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden).";
$a->strings["The given API Key seems to work correctly."] = "Der angegebene API Schlüssel scheint korrekt zu funktionieren.";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "Die Richtigkeit des API Schlüssels konnte nicht gefunden werden. Irgendwas stimmt nicht.";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Anwendungs-Geheimnis";
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Abfrageintervall in Minuten (min %1\$s Minuten)";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Kommentare synchronisieren (Kein Kommentar von Facebook geht verloren, verursacht höhere Last auf dem Server)";
$a->strings["Real-Time Updates"] = "Echtzeit Aktualisierungen";
$a->strings["Real-Time Updates are activated."] = "Echtzeit-Updates sind aktiviert.";
$a->strings["Deactivate Real-Time Updates"] = "Echtzeit-Updates deaktivieren";
$a->strings["Real-Time Updates not activated."] = "Echtzeit-Updates nicht aktiviert.";
$a->strings["Activate Real-Time Updates"] = "Echtzeit-Updates aktivieren";
$a->strings["The new values have been saved."] = "Die neuen Einstellungen wurden gespeichert.";
$a->strings["Post to Facebook"] = "Bei Facebook veröffentlichen";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen.";
$a->strings["View on Friendica"] = "In Friendica betrachten";
$a->strings["Facebook post failed. Queued for retry."] = "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich.";
$a->strings["Facebook connection became invalid"] = "Facebook Anmeldedaten sind ungültig geworden";
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "Hallo %1\$s,\n\ndie Verbindung zwischen deinem Account auf %2\$s und Facebook funktioniert derzeit nicht. Dies ist normalerweise das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du %3\$sden Facebook-Connector neu authentifizieren%4\$s.";
$a->strings["StatusNet AutoFollow settings updated."] = "StatusNet AutoFollow Einstellungen aktualisiert.";
$a->strings["StatusNet AutoFollow Settings"] = "StatusNet AutoFollow Einstellungen";
$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Automatisch allen StatusNet Followern/Erwähnungen folgen";
$a->strings["Lifetime of the cache (in hours)"] = "Lebenszeit des Caches (in Stunden)";
$a->strings["Cache Statistics"] = "Cache Statistik";
$a->strings["Number of items"] = "Anzahl der Einträge";
$a->strings["Size of the cache"] = "Größe des Caches";
$a->strings["Delete the whole cache"] = "Cache leeren";
$a->strings["Facebook Post disabled"] = "Nach Facebook senden deaktiviert";
$a->strings["Facebook Post"] = "Facebook Relai";
$a->strings["Install Facebook Post connector for this account."] = "Facebook-Connector für dieses Konto installieren.";
$a->strings["Remove Facebook Post connector"] = "Facebook-Connector entfernen";
$a->strings["Suppress \"View on friendica\""] = "Unterdrücke \"Auf Friendica Ansehen\"";
$a->strings["Mirror wall posts from facebook to friendica."] = "Spiegle Pinnwandeinträge von Facebook auf friendica";
$a->strings["Post to page/group:"] = "Auf FB Seite/Gruppe veröffentlichen";
$a->strings["Facebook Post Settings"] = "Facebook-Beitragseinstellungen";
$a->strings["%s:"] = "%s:";
$a->strings["%d person likes this"] = array(
0 => "%d Person mag das",
1 => "%d Leute mögen das",
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
$a->strings["Message sent."] = "Nachricht gesendet.";
$a->strings["No recipient."] = "Kein Empfänger.";
$a->strings["Send Private Message"] = "Private Nachricht senden";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
$a->strings["To:"] = "An:";
$a->strings["Subject:"] = "Betreff:";
$a->strings["Time Conversion"] = "Zeitumrechnung";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
$a->strings["UTC time: %s"] = "UTC Zeit: %s";
$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone.";
$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail.";
$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
$a->strings["Password Reset"] = "Passwort zurücksetzen";
$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
$a->strings["Your new password is"] = "Dein neues Passwort lautet";
$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
$a->strings["click here to login"] = "hier klicken, um dich anzumelden";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast.";
$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert";
$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
$a->strings["Reset"] = "Zurücksetzen";
$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten: ";
$a->strings["Profile Match"] = "Profilübereinstimmungen";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu.";
$a->strings["is interested in:"] = "ist interessiert an:";
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
$a->strings["Message deleted."] = "Nachricht gelöscht.";
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
$a->strings["No messages."] = "Keine Nachrichten.";
$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
$a->strings["You and %s"] = "Du und %s";
$a->strings["%s and You"] = "%s und du";
$a->strings["Delete conversation"] = "Unterhaltung löschen";
$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d Nachricht",
1 => "%d Nachrichten",
);
$a->strings["%d person doesn't like this"] = array(
0 => " %d Person mag das nicht",
1 => "%d Leute mögen das nicht",
$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
$a->strings["Delete message"] = "Nachricht löschen";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten.";
$a->strings["Send Reply"] = "Antwort senden";
$a->strings["Mood"] = "Stimmung";
$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
$a->strings["Search Results For:"] = "Suchergebnisse für:";
$a->strings["Commented Order"] = "Neueste Kommentare";
$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
$a->strings["Posted Order"] = "Neueste Beiträge";
$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
$a->strings["Personal"] = "Persönlich";
$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht";
$a->strings["New"] = "Neue";
$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
$a->strings["Shared Links"] = "Geteilte Links";
$a->strings["Interesting Links"] = "Interessante Links";
$a->strings["Starred"] = "Markierte";
$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
);
$a->strings["Get added to this list!"] = "Werde Mitglied dieser Liste";
$a->strings["Generate new key"] = "Neuen Schlüssel erstellen";
$a->strings["Widgets key"] = "Widgets Schlüssel";
$a->strings["Widgets available"] = "Verfügbare Widgets";
$a->strings["Connect on Friendica!"] = "In Friendica verbinden!";
$a->strings["bitchslap"] = "abwatschen";
$a->strings["bitchslapped"] = "watschte";
$a->strings["shag"] = "poppen";
$a->strings["shagged"] = "poppte";
$a->strings["do something obscenely biological to"] = "mit ihm/ihr etwas obszönes Körperliches machen";
$a->strings["did something obscenely biological to"] = "machte etwas obszönes Körperliches mit";
$a->strings["point out the poke feature to"] = "zeigte die neue Anstups-Funktion";
$a->strings["pointed out the poke feature to"] = "zeigte die neue Anstups-Funktion";
$a->strings["declare undying love for"] = "unterbliche Liebe verkünden";
$a->strings["declared undying love for"] = "verkündete unsterbliche Liebe für";
$a->strings["patent"] = "patentieren";
$a->strings["patented"] = "patentierte";
$a->strings["stroke beard"] = "sich den Bart kratzen";
$a->strings["stroked their beard at"] = "kratzte sich den Bart in Richtung";
$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "sich über die sinkenden Standards der Schul- und Hochschulbildung beklagen";
$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "beklagte sich über die sinkenden Standards der Schul- und Hochschulbildung bei";
$a->strings["hug"] = "umarmen";
$a->strings["hugged"] = "umarmte";
$a->strings["kiss"] = "küssen";
$a->strings["kissed"] = "küsste";
$a->strings["raise eyebrows at"] = "Augenbrauen hochziehen";
$a->strings["raised their eyebrows at"] = "zog die Augenbrauen hoch in Richtung";
$a->strings["insult"] = "beleidigen";
$a->strings["insulted"] = "beleidigte";
$a->strings["praise"] = "preisen";
$a->strings["praised"] = "pries";
$a->strings["be dubious of"] = "ungewiss sein";
$a->strings["was dubious of"] = "war ungewiss über";
$a->strings["eat"] = "essen";
$a->strings["ate"] = "";
$a->strings["giggle and fawn at"] = "kichern und einschleimen";
$a->strings["giggled and fawned at"] = "kicherte und schleimte sich ein bei";
$a->strings["doubt"] = "bezweifeln";
$a->strings["doubted"] = "bezweifelte";
$a->strings["glare"] = "zornig anstarren";
$a->strings["glared at"] = "starrte zornig auf";
$a->strings["YourLS Settings"] = "YourLS Einstellungen";
$a->strings["URL: http://"] = "URL: http://";
$a->strings["Username:"] = "Nutzername:";
$a->strings["Password:"] = "Passwort:";
$a->strings["Use SSL "] = "SSL Verwenden ";
$a->strings["yourls Settings saved."] = "yourls Einstellungen gespeichert";
$a->strings["Post to LiveJournal"] = "In LiveJournal veröffentlichen.";
$a->strings["LiveJournal Post Settings"] = "LiveJournal Veröffentlichungs-Einstellungen";
$a->strings["Enable LiveJournal Post Plugin"] = "LiveJournal Post Plugin aktivieren";
$a->strings["LiveJournal username"] = "LiveJournal Benutzername";
$a->strings["LiveJournal password"] = "LiveJournal Passwort";
$a->strings["Post to LiveJournal by default"] = "Standardmäßig bei LiveJournal veröffentlichen";
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Not Safe for Work (allg. Filter für ungewollte Inhalte) Einstellungen:";
$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden.";
$a->strings["Enable Content filter"] = "Aktiviere den Inhaltsfilter";
$a->strings["Comma separated list of keywords to hide"] = "Durch Komma getrennte Liste von Schlüsselwörtern die verborgen werden sollen";
$a->strings["Use /expression/ to provide regular expressions"] = "Verwende /expression/ um reguläre Ausdrücke zu verwenden";
$a->strings["NSFW Settings saved."] = "NSFW-Einstellungen gespeichert";
$a->strings["%s - Click to open/close"] = "%s Zum Öffnen/Schließen klicken";
$a->strings["Forums"] = "Foren";
$a->strings["Forums:"] = "Foren:";
$a->strings["Page settings updated."] = "Seiteneinstellungen aktualisiert.";
$a->strings["Page Settings"] = "Seiteneinstellungen";
$a->strings["How many forums to display on sidebar without paging"] = "Wie viele Foren sollen in der Seitenleiste ohne Umblättern angezeigt werden";
$a->strings["Randomise Page/Forum list"] = "Zufällige Seiten/Foren Liste";
$a->strings["Show pages/forums on profile page"] = "Foren/Seiten auf der Profilseite anzeigen";
$a->strings["Planets Settings"] = "Planeten Einstellungen";
$a->strings["Enable Planets Plugin"] = "Aktiviere Planeten Plugin";
$a->strings["Forum Directory"] = "Foren Verzeichnis";
$a->strings["Login"] = "Anmeldung";
$a->strings["OpenID"] = "OpenID";
$a->strings["Latest users"] = "Letzte Benutzer";
$a->strings["Most active users"] = "Aktivste Nutzer";
$a->strings["Latest photos"] = "Neueste Fotos";
$a->strings["Latest likes"] = "Neueste Favoriten";
$a->strings["event"] = "Veranstaltung";
$a->strings["No access"] = "Kein Zugriff";
$a->strings["Could not open component for editing"] = "Kalender-Editierfunktion konnte nicht geöffnet werden";
$a->strings["Go back to the calendar"] = "Zurück zum Kalender";
$a->strings["Event data"] = "Veranstaltungsdetails";
$a->strings["Calendar"] = "Kalender";
$a->strings["Special color"] = "Spezielle Farbe";
$a->strings["Subject"] = "Betreff:";
$a->strings["Starts"] = "Beginnt";
$a->strings["Ends"] = "Endet";
$a->strings["Description"] = "Beschreibung";
$a->strings["Recurrence"] = "Wiederholungen:";
$a->strings["Frequency"] = "Frequenz";
$a->strings["Daily"] = "Täglich";
$a->strings["Weekly"] = "Wöchentlich";
$a->strings["Monthly"] = "Monatlich";
$a->strings["Yearly"] = "Jährlich";
$a->strings["days"] = "Tage";
$a->strings["weeks"] = "Wochen";
$a->strings["months"] = "Monate";
$a->strings["years"] = "Jahre";
$a->strings["Interval"] = "Intervall";
$a->strings["All %select% %time%"] = "Jeden %select% %time%";
$a->strings["Days"] = "Tage";
$a->strings["Sunday"] = "Sonntag";
$a->strings["Monday"] = "Montag";
$a->strings["Tuesday"] = "Dienstag";
$a->strings["Wednesday"] = "Mittwoch";
$a->strings["Thursday"] = "Donnerstag";
$a->strings["Friday"] = "Freitag";
$a->strings["Saturday"] = "Samstag";
$a->strings["First day of week:"] = "Erster Tag der Woche";
$a->strings["Day of month"] = "Tag des Monats";
$a->strings["#num#th of each month"] = "#num#ten jedes Monats";
$a->strings["#num#th-last of each month"] = "letzten #num#ten jedes Monats";
$a->strings["#num#th #wkday# of each month"] = "jeden #num#ten #wkday# eines Monats";
$a->strings["#num#th-last #wkday# of each month"] = "jeden #num#ten letzten #wkday# eines Monats";
$a->strings["Month"] = "Monat";
$a->strings["#num#th of the given month"] = "#num#ten des Monats";
$a->strings["#num#th-last of the given month"] = "letzten #num#ten des Monats";
$a->strings["#num#th #wkday# of the given month"] = "jeden #num#ten eines Monats";
$a->strings["#num#th-last #wkday# of the given month"] = "jeden #num#ten letzten eines Monats";
$a->strings["Repeat until"] = "Wiederholungen";
$a->strings["Infinite"] = "unendlich";
$a->strings["Until the following date"] = "bis zum folgenden Datum";
$a->strings["Number of times"] = "Bestimmte Anzahl von Wiederholungen";
$a->strings["Exceptions"] = "Ausnahmen";
$a->strings["none"] = "keine";
$a->strings["Notification"] = "Benachrichtigung";
$a->strings["Notify by"] = "Benarchrichtigungsmethode";
$a->strings["E-Mail"] = "E-Mail";
$a->strings["On Friendica / Display"] = "Bei Friendica / Anzeige";
$a->strings["Time"] = "Zeit";
$a->strings["Hours"] = "Stunden";
$a->strings["Minutes"] = "Minuten";
$a->strings["Seconds"] = "Sekunden";
$a->strings["Weeks"] = "Wochen";
$a->strings["before the"] = "vor dem";
$a->strings["start of the event"] = "Beginn des Termins";
$a->strings["end of the event"] = "Ende des Termins";
$a->strings["Add a notification"] = "Benachrichtigung hinzufügen";
$a->strings["The event #name# will start at #date"] = "Der Termin #name# wird am #date anfangen";
$a->strings["#name# is about to begin."] = "#name# beginnt demnächst.";
$a->strings["Saved"] = "Gespeichert";
$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "U.S. Datumsformat (mm/dd/YYYY)";
$a->strings["German Time Format (dd.mm.YYYY)"] = "Deutsches Datumsformat (dd.mm.YYYY)";
$a->strings["Private Events"] = "Privater Termin";
$a->strings["Private Addressbooks"] = "Private Adressbücher";
$a->strings["Friendica-Native events"] = "Friendica Veranstaltungen";
$a->strings["Friendica-Contacts"] = "Friendica-Kontakte";
$a->strings["Your Friendica-Contacts"] = "Deine Friendica-Kontakte";
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Entschuldigung. Bei dem Versuch die Datei zu importieren ist etwas schief gelaufen. Vielleicht wurden aber einige der Termine dennoch importiert.";
$a->strings["Something went wrong when trying to import the file. Sorry."] = "Entschuldigung. Beim Importieren der Datei ist etwas schief gelaufen.";
$a->strings["The ICS-File has been imported."] = "Die ICS-Datei wurde importoert.";
$a->strings["No file was uploaded."] = "Es wurde keine Datei geladen.";
$a->strings["Import a ICS-file"] = "Importiere eine ICS-Datei";
$a->strings["ICS-File"] = "ICS-Datei";
$a->strings["Overwrite all #num# existing events"] = "Überschreibe alle #num# existierenden Einträge";
$a->strings["New event"] = "Neue Veranstaltung";
$a->strings["Today"] = "Heute";
$a->strings["Day"] = "Tag";
$a->strings["Week"] = "Woche";
$a->strings["Reload"] = "Neu Laden";
$a->strings["Date"] = "Datum";
$a->strings["Error"] = "Fehler";
$a->strings["The calendar has been updated."] = "Der Kalender wurde aktualisiert.";
$a->strings["The new calendar has been created."] = "Der neue Kalender wurde erstellt.";
$a->strings["The calendar has been deleted."] = "Der Kalender wurde gelöscht.";
$a->strings["Calendar Settings"] = "Kalendereinstellungen";
$a->strings["Date format"] = "Datumsformat";
$a->strings["Time zone"] = "Zeitzone";
$a->strings["Calendars"] = "Kalender";
$a->strings["Create a new calendar"] = "Neuen Kalender anlegen";
$a->strings["Limitations"] = "Einschränkungen";
$a->strings["Warning"] = "Warnung";
$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Synchronisation (iPhone, Thunderbird Lightning, Android, ...)";
$a->strings["Synchronizing this calendar with the iPhone"] = "Diesen Kalender mit dem iPhone synchronisieren";
$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Friendica-Kontakte mit dem iPhone synchronisieren";
$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "Die aktuelle Version dieses Plugins wurde nicht korrekt eingestellt. Bitte kontaktiere den System-Administrator deiner Friendica Installation um den Fehler zu beheben.";
$a->strings["Extended calendar with CalDAV-support"] = "Erweiterter Kalender mit CalDAV Unterstützung.";
$a->strings["noreply"] = "noreply";
$a->strings["Notification: "] = "Benachrichtigungen: ";
$a->strings["The database tables have been installed."] = "Die Datenbanktabellen wurden installiert.";
$a->strings["An error occurred during the installation."] = "Während der Installation trat ein Fehler auf.";
$a->strings["The database tables have been updated."] = "Die Tabellen in der Datenbank wurden aktualisiert.";
$a->strings["An error occurred during the update."] = "Während der Aktualisierung trat ein Fehler auf.";
$a->strings["No system-wide settings yet."] = "Momentan keine systemweiten Einstellungen.";
$a->strings["Database status"] = "Datenbankstatus";
$a->strings["Installed"] = "Installiert";
$a->strings["Upgrade needed"] = "Upgrade erforderlich";
$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "Bitte sichere alle Kalenderdaten (die Tabellen mit dav_* beginnend) bevor du mit dem Update fortfährst. Eigentliche <i>sollten</i> alle Kalendereinträge in die neue Datenbankstruktur übernommen werden, aber sicher ist sicher. Weiter unten kannst du die Datenbank-Anfragen ansehen, die im Verlauf des Updates gemacht werden.";
$a->strings["Upgrade"] = "Upgrade";
$a->strings["Not installed"] = "Nicht installiert";
$a->strings["Install"] = "Installieren";
$a->strings["Unknown"] = "Unbekannt";
$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "Irgendetwas ging schief. Ich kann leider von diesem Zustand der Datenbank leider nicht automatisch fortfahren. Bitte mache ein Backup der Daten aus der Datenbank und lösche anschließend alle Tabellen deren Name mit 'dav_' anfangen. Anschließend sollte diese Installations-Routine in der Lage sein die nötigen Tabellen automatisch neu anzulegen.";
$a->strings["Troubleshooting"] = "Problembehebung";
$a->strings["Manual creation of the database tables:"] = "Manuelles Anlegen der Datenbanktabellen:";
$a->strings["Show SQL-statements"] = "SQL-Anweisungen anzeigen";
$a->strings["Private Calendar"] = "Privater Kalender";
$a->strings["Friendica Events: Mine"] = "Meine Friendica-Veranstaltungen";
$a->strings["Friendica Events: Contacts"] = "Friendica Veranstaltungen meiner Kontakte";
$a->strings["Private Addresses"] = "Private Adressen";
$a->strings["Friendica Contacts"] = "Friendica Kontakte";
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Ermöglicht dir, deine Friendica ID (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
$a->strings["Template URL (with {category})"] = "Vorlagen URL (mit {Kategorie})";
$a->strings["OAuth end-point"] = "OAuth Endpunkt";
$a->strings["Api"] = "Api";
$a->strings["Member since:"] = "Mitglied seit:";
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Dreidimensionales Tic-Tac-Toe";
$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
$a->strings["New game"] = "Neues Spiel";
$a->strings["New game with handicap"] = "Neues Handicap Spiel";
$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "3D-Tic-Tac-Toe ist genauso wie das herkömmliche Spiel, nur dass man es auf mehreren Ebenen gleichzeitig spielt.";
$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "In diesem Fall sind es drei Ebenen. Man gewinnt indem man drei in einer Reihe auf einer beliebigen Reihe schafft, oder drei übereinander oder diagonal auf verschiedenen Ebenen.";
$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Beim Handicap-Spiel wird die zentrale Position der mittleren Ebene gesperrt, da der Spieler, der diese Ebene besitzt, oft einen unfairen Vorteil genießt.";
$a->strings["You go first..."] = "Du fängst an...";
$a->strings["I'm going first this time..."] = "Diesmal fange ich an...";
$a->strings["You won!"] = "Du gewinnst!";
$a->strings["\"Cat\" game!"] = "Unentschieden!";
$a->strings["I won!"] = "Ich gewinne!";
$a->strings["Randplace Settings"] = "Randplace-Einstellungen";
$a->strings["Enable Randplace Plugin"] = "Randplace-Plugin aktivieren";
$a->strings["Post to Dreamwidth"] = "In Dreamwidth veröffentlichen";
$a->strings["Dreamwidth Post Settings"] = "Dreamwidth Veröffentlichungs-Einstellungen";
$a->strings["Enable dreamwidth Post Plugin"] = "Dreamwidth Post Plugin aktivieren";
$a->strings["dreamwidth username"] = "Dreamwidth Benutzername";
$a->strings["dreamwidth password"] = "Dreamwidth Passwort";
$a->strings["Post to dreamwidth by default"] = "Standardmäßig bei Dreamwidth veröffentlichen";
$a->strings["Remote Permissions Settings"] = "Entfernte Privatsphäreneinstellungen";
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Erlaube Empfängern von privaten Nachrichten zu sehen wer die anderen Empfänger sind";
$a->strings["Remote Permissions settings updated."] = "Entfernte Privatsphäreneinstellungen aktualisiert.";
$a->strings["Visible to"] = "Sichtbar für";
$a->strings["may only be a partial list"] = "könnte nur ein Teil der Liste sein";
$a->strings["Global"] = "Global";
$a->strings["The posts of every user on this server show the post recipients"] = "Die Beiträge jedes Nutzers dieses Servers werden die Empfänger des Beitrags anzeigen";
$a->strings["Individual"] = "Individuell";
$a->strings["Each user chooses whether his/her posts show the post recipients"] = "Jede/r Nutzer/in kann wählen ob die Empfänger der Beiträge angezeigt werden sollen oder nicht";
$a->strings["Startpage Settings"] = "Startseiten-Einstellungen";
$a->strings["Home page to load after login - leave blank for profile wall"] = "Seite, die nach dem Anmelden geladen werden soll. Leer = Pinnwand";
$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "Beispiele: network, notifications/system";
$a->strings["Geonames settings updated."] = "Geonames Einstellungen aktualisiert";
$a->strings["Geonames Settings"] = "Geonames Einstellungen";
$a->strings["Enable Geonames Plugin"] = "Geonames Plugin aktivieren";
$a->strings["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen verfallen.";
$a->strings["Your Friendica account is about to expire."] = "Dein Friendica-Konto wird in Kürze auslaufen.";
$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "Hallo %1\$s,\n\ndein Account auf %2\$s wird in weniger als fünf Tagen auslaufen. Du kannst das verhindern, indem du dich mindestens einmal alle 30 Tage anmeldest.";
$a->strings["Upload a file"] = "Datei hochladen";
$a->strings["Drop files here to upload"] = "Ziehe Dateien hierher, um sie hochzuladen";
$a->strings["Failed"] = "Fehlgeschlagen";
$a->strings["No files were uploaded."] = "Keine Dateien hochgeladen.";
$a->strings["Uploaded file is empty"] = "Hochgeladene Datei ist leer";
$a->strings["File has an invalid extension, it should be one of "] = "Die Dateierweiterung ist nicht erlaubt, sie muss eine der folgenden sein ";
$a->strings["Upload was cancelled, or server error encountered"] = "Upload abgebrochen oder Serverfehler aufgetreten";
$a->strings["show/hide"] = "anzeigen/verbergen";
$a->strings["No forum subscriptions"] = "Keine Foren-Mitgliedschaften.";
$a->strings["Forumlist settings updated."] = "Einstellungen zur Foren-Liste aktualisiert.";
$a->strings["Forumlist Settings"] = "Foren-Liste Einstellungen";
$a->strings["Randomise forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
$a->strings["Show forums on profile page"] = "Zeige die Liste der Foren auf der Profilseite";
$a->strings["Show forums on network page"] = "Zeige Foren auf der Netzwerk-Seite";
$a->strings["Impressum"] = "Impressum";
$a->strings["Site Owner"] = "Betreiber der Seite";
$a->strings["Email Address"] = "Email Adresse";
$a->strings["Postal Address"] = "Postalische Anschrift";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe mindestens den <tt>Betreiber</tt> in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert.";
$a->strings["The page operators name."] = "Name des Serveradministrators";
$a->strings["Site Owners Profile"] = "Profil des Seitenbetreibers";
$a->strings["Profile address of the operator."] = "Profil-Adresse des Serveradministrators";
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden.";
$a->strings["Notes"] = "Hinweise";
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden.";
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Wie man den Betreiber per Email erreicht. (Adresse wird verschleiert dargestellt)";
$a->strings["Footer note"] = "Fußnote";
$a->strings["Text for the footer. You can use BBCode here."] = "Text für die Fußzeile. Du kannst BBCode verwenden.";
$a->strings["Report Bug"] = "Fehlerreport erstellen";
$a->strings["No Timeline settings updated."] = "Keine Timeline-Einstellungen aktualisiert.";
$a->strings["No Timeline Settings"] = "Keine Timeline-Einstellungen";
$a->strings["Disable Archive selector on profile wall"] = "Deaktiviere Archiv-Auswahl auf Deiner Pinnwand";
$a->strings["\"Blockem\" Settings"] = "\"Blockem\"-Einstellungen";
$a->strings["Comma separated profile URLS to block"] = "Profil-URLs, die blockiert werden sollen (durch Kommas getrennt)";
$a->strings["BLOCKEM Settings saved."] = "BLOCKEM-Einstellungen gesichert.";
$a->strings["Blocked %s - Click to open/close"] = "%s blockiert - Zum Öffnen/Schließen klicken";
$a->strings["Unblock Author"] = "Autor freischalten";
$a->strings["Block Author"] = "Autor blockieren";
$a->strings["blockem settings updated"] = "blockem Einstellungen aktualisiert";
$a->strings[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "lol";
$a->strings["Quick Comment Settings"] = "Schnell-Kommentar Einstellungen";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Kurzkommentare findet man in der Nähe der Kommentarboxen. Ein Klick darauf erstellt einfache Antworten.";
$a->strings["Enter quick comments, one per line"] = "Gib einen Schnell-Kommentar pro Zeile ein";
$a->strings["Quick Comment settings saved."] = "Schnell-Kommentare Einstellungen gespeichert";
$a->strings["Tile Server URL"] = "Tile Server URL";
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Eine Liste <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">öffentlicher Tile Server</a>";
$a->strings["Default zoom"] = "Standard Zoom";
$a->strings["The default zoom level. (1:world, 18:highest)"] = "Standard Zoomlevel (1: Welt; 18: höchstes)";
$a->strings["Group Text settings updated."] = "Gruppen Text Einstellungen aktualisiert";
$a->strings["Group Text"] = "Gruppen als Text";
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "Beim Bearbeiten von Gruppen Text statt Bilder anzeigen";
$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "Kann Libravatar NICHT erfolgreich installieren.<br>PHP >=5.3 wird benötigt";
$a->strings["generic profile image"] = "allgemeines Profilbild";
$a->strings["random geometric pattern"] = "zufällig erzeugtes geometrisches Muster";
$a->strings["monster face"] = "Monstergesicht";
$a->strings["computer generated face"] = "Computergesicht";
$a->strings["retro arcade style face"] = "Retro Arcade Design Gesicht";
$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "Deine PHP Version %s ist niedriger als die benötigte Version PHP >= 5.3.";
$a->strings["This addon is not functional on your server."] = "Dieses Addon funktioniert auf deinem Server nicht.";
$a->strings["Information"] = "Information";
$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Gravatar Addon ist installiert. Bitte schalte das Gravatar Addon aus.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden.";
$a->strings["Default avatar image"] = "Standard Profilbild ";
$a->strings["Select default avatar image if none was found. See README"] = "Das Standard Avatar Bild wurde nicht gefunden. Siehe README";
$a->strings["Libravatar settings updated."] = "Libravatar Einstellungen sind aktualisiert.";
$a->strings["Post to libertree"] = "bei libertree veröffentlichen";
$a->strings["libertree Post Settings"] = "libertree Post Einstellungen";
$a->strings["Enable Libertree Post Plugin"] = "Libertree Post Plugin aktivieren";
$a->strings["Libertree API token"] = "Libertree API Token";
$a->strings["Libertree site URL"] = "Libertree URL";
$a->strings["Post to Libertree by default"] = "Standardmäßig bei libertree veröffentlichen";
$a->strings["Altpager settings updated."] = "Altpager Einstellungen sind aktualisiert.";
$a->strings["Alternate Pagination Setting"] = "Alternative Seitenumbruch Einstellung";
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Nutze Links zu \"neuer\" und \"älter\" Seiten, statt Seiten Nummern?";
$a->strings["Force global use of the alternate pager"] = "Erzwinge die Verwendung des \"Alternate Pager\" auf diesem Server";
$a->strings["Each user chooses whether to use the alternate pager"] = "Jede/r Nutzer/in kann wählen ob der \"Alternate Pager\" verwendet werden soll";
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerkstream sowie privaten Nachrichten gerendert.";
$a->strings["Use the MathJax renderer"] = "MathJax verwenden";
$a->strings["MathJax Base URL"] = "MathJax Basis-URL";
$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen.";
$a->strings["Editplain settings updated."] = "Editplain Einstellungen aktualisiert";
$a->strings["Editplain Settings"] = "Editplain Einstellungen";
$a->strings["Disable richtext status editor"] = "RichText Editor deaktivieren";
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere das Libravatar Addon oder dieses Gravatar Addon.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden.";
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Wähle das Standardgesicht, wenn kein Bild auf Gravatar gefunden wurde. Schaue auch sonst im README nach.";
$a->strings["Rating of images"] = "Bildbewertung";
$a->strings["Select the appropriate avatar rating for your site. See README"] = "Wähle eine angemessene Bildbewertung für deinen Server. Schaue auch sonst im README nach.";
$a->strings["Gravatar settings updated."] = "Gravatar Einstellungen aktualisiert.";
$a->strings["Your Friendica test account is about to expire."] = "Dein Friendica-Testkonto wird bald verfallen.";
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "Hallo %1\$s,\n\ndein Testkonto auf %2\$s wird in weniger als fünf Tagen verfallen. Wir hoffen, dass dir dieser Testlauf gefallen hat, so dass du die Gelegenheit nutzt und dir einen normalen Friendica-Server für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Server findest du auf http://dir.friendica.com/siteinfo . Um mehr Information darüber zu bekommen, wie man einen eigenen Friendica-Server aufsetzt, kannst du auch einen Blick auf die Friendica-Projektseite werfen: http://friendica.com";
$a->strings["\"pageheader\" Settings"] = "\"pageheader\"-Einstellungen";
$a->strings["pageheader Settings saved."] = "pageheader-Einstellungen gespeichert.";
$a->strings["Post to Insanejournal"] = "Auf InsaneJournal posten.";
$a->strings["InsaneJournal Post Settings"] = "InsaneJournal Beitrags-Einstellungen";
$a->strings["Enable InsaneJournal Post Plugin"] = "InsaneJournal Plugin aktivieren";
$a->strings["InsaneJournal username"] = "InsaneJournal Benutzername";
$a->strings["InsaneJournal password"] = "InsaneJournal Passwort";
$a->strings["Post to InsaneJournal by default"] = "Standardmäßig auf InsaneJournal posten.";
$a->strings["Jappix Mini addon settings"] = "Jappix Mini Addon Einstellungen";
$a->strings["Activate addon"] = "Addon aktivieren";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "Füge das Jappix Mini Chat Widget <em>nicht</em> zum Webinterface hinzu";
$a->strings["Jabber username"] = "Jabber Nutzername";
$a->strings["Jabber server"] = "Jabber Server";
$a->strings["Jabber BOSH host"] = "Jabber BOSH Host";
$a->strings["Jabber password"] = "Japper Passwort";
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Verschlüssele das Jabber Passwort mit dem Friendica Passwort (empfohlen)";
$a->strings["Friendica password"] = "Friendica Passwort";
$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Kontaktanfragen von Friendica Kontakten automatisch akzeptieren";
$a->strings["Subscribe to Friendica contacts automatically"] = "Automatisch Friendica Kontakten bei Jabber folgen";
$a->strings["Purge internal list of jabber addresses of contacts"] = "Lösche die interne Liste der Jabber Adressen der Kontakte";
$a->strings["Add contact"] = "Kontakt hinzufügen";
$a->strings["View Source"] = "Quelle ansehen";
$a->strings["Post to StatusNet"] = "Bei StatusNet veröffentlichen";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Bitte kontaktiere den Administrator des Servers.<br />Die angegebene API-URL ist nicht gültig.";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Die StatusNet-API konnte mit dem angegebenen Pfad nicht erreicht werden.";
$a->strings["StatusNet settings updated."] = "StatusNet Einstellungen aktualisiert.";
$a->strings["StatusNet Posting Settings"] = "StatusNet-Beitragseinstellungen";
$a->strings["Globally Available StatusNet OAuthKeys"] = "Verfügbare OAuth Schlüssel für StatusNet";
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Für einige StatusNet Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen StatusNet Server her (siehe unten).";
$a->strings["Provide your own OAuth Credentials"] = "Eigene OAuth Schlüssel eintragen";
$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "Kein Consumer-Schlüsselpaar für StatusNet gefunden. Registriere deinen Friendica-Account als Desktop-Client, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br />Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem StatusNet-Server existiert.";
$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
$a->strings["Base API Path (remember the trailing /)"] = "Basis-URL der StatusNet-API (vergiss den abschließenden / nicht)";
$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Um dein Konto mit einem StatusNet-Konto zu verknüpfen, klicke den Button an, um einen Sicherheitscode von StatusNet zu erhalten, und kopiere diesen in das Eingabefeld weiter unten. Es werden ausschließlich deine <strong>öffentlichen</strong> Nachrichten an StatusNet gesendet.";
$a->strings["Log in with StatusNet"] = "Bei StatusNet anmelden";
$a->strings["Copy the security code from StatusNet here"] = "Kopiere den Sicherheitscode von StatusNet hier hin";
$a->strings["Cancel Connection Process"] = "Verbindungsprozess abbrechen";
$a->strings["Current StatusNet API is"] = "Derzeitige StatusNet-API-URL lautet";
$a->strings["Cancel StatusNet Connection"] = "Verbindung zum StatusNet Server abbrechen";
$a->strings["Currently connected to: "] = "Momentan verbunden mit: ";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen StatusNet-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an deinen StatusNet-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
$a->strings["Allow posting to StatusNet"] = "Veröffentlichung bei StatusNet erlauben";
$a->strings["Send public postings to StatusNet by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet";
$a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "Spiegle alle Beiträge von StatusNet die keine Antworten oder wiederholten Nachrichten sind";
$a->strings["Shortening method that optimizes the post"] = "Kürzungsverfahren, das den Beitrag optimiert";
$a->strings["Send linked #-tags and @-names to StatusNet"] = "Sende verlinkte #-Tags und @-Namen nach StatusNet";
$a->strings["Clear OAuth configuration"] = "OAuth-Konfiguration löschen";
$a->strings["API URL"] = "API-URL";
$a->strings["Infinite Improbability Drive"] = "Infinite Improbability Drive";
$a->strings["You are now authenticated to tumblr."] = "Du bist nun auf tumblr authentifiziert.";
$a->strings["return to the connector page"] = "zurück zur Connector Seite";
$a->strings["Post to Tumblr"] = "Bei Tumblr veröffentlichen";
$a->strings["Tumblr Post Settings"] = "Tumblr-Beitragseinstellungen";
$a->strings["(Re-)Authenticate your tumblr page"] = "(Re-)Authentifizierung deiner tumblr Seite";
$a->strings["Enable Tumblr Post Plugin"] = "Tumblr-Plugin aktivieren";
$a->strings["Post to Tumblr by default"] = "Standardmäßig bei Tumblr veröffentlichen";
$a->strings["Post to page:"] = "Auf tumblr veröffentlichen";
$a->strings["You are not authenticated to tumblr"] = "Du bist gegenüber tumblr nicht authentifiziert";
$a->strings["Numfriends settings updated."] = "Numfriends Einstellungen aktualisiert";
$a->strings["Numfriends Settings"] = "Numfriends Einstellungen";
$a->strings["How many contacts to display on profile sidebar"] = "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden";
$a->strings["Gnot settings updated."] = "Gnot Einstellungen aktualisiert.";
$a->strings["Gnot Settings"] = "Gnot Einstellungen";
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Erlaubt das Veröffentlichen von E-Mail Kommentar Benachrichtigungen bei Gmail mit anonymisiertem Betreff";
$a->strings["Enable this plugin/addon?"] = "Dieses Plugin/Addon aktivieren?";
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica-Meldung] Kommentar zum Beitrag #%d";
$a->strings["Post to Wordpress"] = "Bei WordPress veröffentlichen";
$a->strings["WordPress Post Settings"] = "WordPress-Beitragseinstellungen";
$a->strings["Enable WordPress Post Plugin"] = "WordPress-Plugin aktivieren.";
$a->strings["WordPress username"] = "WordPress-Benutzername";
$a->strings["WordPress password"] = "WordPress-Passwort";
$a->strings["WordPress API URL"] = "WordPress-API-URL";
$a->strings["Post to WordPress by default"] = "Standardmäßig auf WordPress veröffentlichen";
$a->strings["Provide a backlink to the Friendica post"] = "Einen Link zurück zum Friendica-Beitrag hinzufügen";
$a->strings["Post from Friendica"] = "Beitrag via Friendica";
$a->strings["Read the original post and comment stream on Friendica"] = "Den Originalbeitrag samt Kommentaren bei Friendica lesen";
$a->strings["\"Show more\" Settings"] = "\"Mehr zeigen\" Einstellungen";
$a->strings["Enable Show More"] = "Aktiviere \"Mehr zeigen\"";
$a->strings["Cutting posts after how much characters"] = "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben";
$a->strings["Show More Settings saved."] = "\"Mehr zeigen\" Einstellungen gesichert.";
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Diese Website benutzt <a href='http://www.piwik.org'>Piwik</a>, eine Open Source-Software zur statistischen Auswertung der Besucherzugriffe.";
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Wenn du nicht willst, dass deine Besuche auf diese Weise gespeichert werden, kannst du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik dich auf dieser Website nicht mehr verfolgen (opt-out).";
$a->strings["Piwik Base URL"] = "Piwik Basis URL";
$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Absoluter Pfad zu deiner Piwik Installation (ohne Protokoll (http/s) und mit abschließendem Schrägstrich)";
$a->strings["Site ID"] = "Seiten ID";
$a->strings["Show opt-out cookie link?"] = "Link zum Setzen des Opt-Out Cookies anzeigen?";
$a->strings["Asynchronous tracking"] = "Asynchrones Tracken";
$a->strings["Post to Twitter"] = "Bei Twitter veröffentlichen";
$a->strings["Twitter settings updated."] = "Twitter Einstellungen aktualisiert.";
$a->strings["Twitter Posting Settings"] = "Twitter-Beitragseinstellungen";
$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte wende dich an den Administrator der Seite.";
$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "Auf diesem Friendica-Server wurde das Twitter-Plugin aktiviert, aber du hast deinen Account noch nicht mit deinem Twitter-Account verbunden. Klicke dazu auf die Schaltfläche unten. Du erhältst dann eine PIN von Twitter, die du dann in das Eingabefeld unten einfügst. Denk daran, den Senden-Knopf zu drücken! Nur <strong>öffentliche</strong> Beiträge werden bei Twitter veröffentlicht.";
$a->strings["Log in with Twitter"] = "bei Twitter anmelden";
$a->strings["Copy the PIN from Twitter here"] = "Kopiere die Twitter-PIN hier her";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an an deinen Twitter-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
$a->strings["Allow posting to Twitter"] = "Veröffentlichung bei Twitter erlauben";
$a->strings["Send public postings to Twitter by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter";
$a->strings["Mirror all posts from twitter that are no replies or retweets"] = "Spiegle alle Beiträge von Twitter die keine Antworten oder wiederholten Nachrichten sind";
$a->strings["Shortening method that optimizes the tweet"] = "Kürzungsverfahren, das den Tweet optimiert";
$a->strings["Send linked #-tags and @-names to Twitter"] = "Sende verlinkte #-Tags und @-Namen nach Twitter";
$a->strings["Consumer key"] = "Consumer Key";
$a->strings["Consumer secret"] = "Consumer Secret";
$a->strings["Name of the Twitter Application"] = "Name der Twitter Anwendung";
$a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "Setze dies um eine Spiegelung von ~friendica zu ~friendica zu vermeiden";
$a->strings["IRC Settings"] = "IRC Einstellungen";
$a->strings["Channel(s) to auto connect (comma separated)"] = "mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)";
$a->strings["Popular Channels (comma separated)"] = "Beliebte Kanäle (mit Komma getrennt)";
$a->strings["IRC settings saved."] = "IRC Einstellungen gespeichert.";
$a->strings["IRC Chatroom"] = "IRC Chatraum";
$a->strings["Popular Channels"] = "Beliebte Räume";
$a->strings["Fromapp settings updated."] = "FromApp Einstellungen aktualisiert.";
$a->strings["FromApp Settings"] = "FromApp Einstellungen";
$a->strings["The application name you would like to show your posts originating from."] = "Der Name der Anwendung von der deine Beiträge stammen sollen.";
$a->strings["Use this application name even if another application was used."] = "Verwende diesen Namen auch wenn eine andere Anwendung den Anwendungsnamen bereits gesetzt hat.";
$a->strings["Post to blogger"] = "Auf Blogger posten";
$a->strings["Blogger Post Settings"] = "Einstellungen zum posten auf Blogger";
$a->strings["Enable Blogger Post Plugin"] = "Blogger-Post-Plugin aktivieren";
$a->strings["Blogger username"] = "Blogger-Benutzername";
$a->strings["Blogger password"] = "Blogger-Passwort";
$a->strings["Blogger API URL"] = "Blogger-API-URL";
$a->strings["Post to Blogger by default"] = "Standardmäßig auf Blogger posten";
$a->strings["Post to Posterous"] = "Nach Posterous senden";
$a->strings["Posterous Post Settings"] = "Posterous Beitrags-Einstellungen";
$a->strings["Enable Posterous Post Plugin"] = "Posterous-Plugin aktivieren";
$a->strings["Posterous login"] = "Posterous-Anmeldename";
$a->strings["Posterous password"] = "Posterous-Passwort";
$a->strings["Posterous site ID"] = "Posterous site ID";
$a->strings["Posterous API token"] = "Posterous API token";
$a->strings["Post to Posterous by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous";
$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
$a->strings["No such group"] = "Es gibt keine solche Gruppe";
$a->strings["Group is empty"] = "Gruppe ist leer";
$a->strings["Group: "] = "Gruppe: ";
$a->strings["Contact: "] = "Kontakt: ";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
$a->strings["Not available."] = "Nicht verfügbar.";
$a->strings["Photo Albums"] = "Fotoalben";
$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
$a->strings["Album not found."] = "Album nicht gefunden.";
$a->strings["Delete Album"] = "Album löschen";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?";
$a->strings["Delete Photo"] = "Foto löschen";
$a->strings["Do you really want to delete this photo?"] = "Möchtest du wirklich dieses Foto löschen?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
$a->strings["a photo"] = "einem Foto";
$a->strings["Image file is empty."] = "Bilddatei ist leer.";
$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
$a->strings["Upload Photos"] = "Bilder hochladen";
$a->strings["New album name: "] = "Name des neuen Albums: ";
$a->strings["or existing album name: "] = "oder existierender Albumname: ";
$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
$a->strings["Permissions"] = "Berechtigungen";
$a->strings["Private Photo"] = "Privates Foto";
$a->strings["Public Photo"] = "Öffentliches Foto";
$a->strings["Edit Album"] = "Album bearbeiten";
$a->strings["Show Newest First"] = "Zeige neueste zuerst";
$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
$a->strings["View Photo"] = "Foto betrachten";
$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
$a->strings["Photo not available"] = "Foto nicht verfügbar";
$a->strings["View photo"] = "Fotos ansehen";
$a->strings["Edit photo"] = "Foto bearbeiten";
$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
$a->strings["Private Message"] = "Private Nachricht";
$a->strings["View Full Size"] = "Betrachte Originalgröße";
$a->strings["Tags: "] = "Tags: ";
$a->strings["[Remove any tag]"] = "[Tag entfernen]";
$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
$a->strings["New album name"] = "Name des neuen Albums";
$a->strings["Caption"] = "Bildunterschrift";
$a->strings["Add a Tag"] = "Tag hinzufügen";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["Private photo"] = "Privates Foto";
$a->strings["Public photo"] = "Öffentliches Foto";
$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
$a->strings["This is you"] = "Das bist du";
$a->strings["Comment"] = "Kommentar";
$a->strings["View Album"] = "Album betrachten";
$a->strings["Recent Photos"] = "Neueste Fotos";
$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
$a->strings["Getting Started"] = "Einstieg";
$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst.";
$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
$a->strings["Edit Your Profile"] = "Editiere dein Profil";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils.";
$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
$a->strings["Connecting"] = "Verbindungen knüpfen";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
$a->strings["Importing Emails"] = "Emails Importieren";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst.";
$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
$a->strings["Finding New People"] = "Neue Leute kennenlernen";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
$a->strings["Getting Help"] = "Hilfe bekommen";
$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
$a->strings["Invalid request identifier."] = "Invalid request identifier.";
$a->strings["Discard"] = "Verwerfen";
$a->strings["System"] = "System";
$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
$a->strings["suggested by %s"] = "vorgeschlagen von %s";
$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
$a->strings["if applicable"] = "falls anwendbar";
$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: ";
$a->strings["yes"] = "ja";
$a->strings["no"] = "nein";
$a->strings["Approve as: "] = "Genehmigen als: ";
$a->strings["Friend"] = "Freund";
$a->strings["Sharer"] = "Teilenden";
$a->strings["Fan/Admirer"] = "Fan/Verehrer";
$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
$a->strings["New Follower"] = "Neuer Bewunderer";
$a->strings["No introductions."] = "Keine Kontaktanfragen.";
$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
$a->strings["System Notifications"] = "Systembenachrichtigungen";
$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
$a->strings["Image uploaded but image cropping failed."] = "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen.";
$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] ist gescheitert.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
$a->strings["Upload File:"] = "Datei hochladen:";
$a->strings["Select a profile:"] = "Profil auswählen";
$a->strings["skip this step"] = "diesen Schritt überspringen";
$a->strings["select a photo from your photo albums"] = "wähle ein Foto von deinen Fotoalben";
$a->strings["Crop Image"] = "Bild zurechtschneiden";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
$a->strings["Image uploaded successfully."] = "Bild erfolgreich auf den Server geladen.";
$a->strings["%d comment"] = array(
0 => "%d Kommentar",
1 => "%d Kommentare",
);
$a->strings["like"] = "mag ich";
$a->strings["dislike"] = "mag ich nicht";
$a->strings["Share this"] = "Weitersagen";
$a->strings["share"] = "Teilen";
$a->strings["Bold"] = "Fett";
$a->strings["Italic"] = "Kursiv";
$a->strings["Underline"] = "Unterstrichen";
$a->strings["Quote"] = "Zitat";
$a->strings["Code"] = "Code";
$a->strings["Image"] = "Bild";
$a->strings["Link"] = "Verweis";
$a->strings["Video"] = "Video";
$a->strings["add star"] = "markieren";
$a->strings["remove star"] = "Markierung entfernen";
$a->strings["toggle star status"] = "Markierung umschalten";
$a->strings["starred"] = "markiert";
$a->strings["add tag"] = "Tag hinzufügen";
$a->strings["save to folder"] = "In Ordner speichern";
$a->strings["to"] = "zu";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$a->strings["via"] = "via";
$a->strings["Theme settings"] = "Themeneinstellungen";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
$a->strings["Set theme width"] = "Theme Breite festlegen";
$a->strings["Color scheme"] = "Farbschema";
$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
$a->strings["Your profile page"] = "Deine Profilseite";
$a->strings["Your contacts"] = "Deine Kontakte";
$a->strings["Your photos"] = "Deine Fotos";
$a->strings["Your events"] = "Deine Ereignisse";
$a->strings["Personal notes"] = "Persönliche Notizen";
$a->strings["Your personal photos"] = "Deine privaten Fotos";
$a->strings["Community Pages"] = "Foren";
$a->strings["Community Profiles"] = "Community-Profile";
$a->strings["Last users"] = "Letzte Nutzer";
$a->strings["Last likes"] = "Zuletzt gemocht";
$a->strings["Last photos"] = "Letzte Fotos";
$a->strings["Find Friends"] = "Freunde finden";
$a->strings["Local Directory"] = "Lokales Verzeichnis";
$a->strings["Similar Interests"] = "Ähnliche Interessen";
$a->strings["Invite Friends"] = "Freunde einladen";
$a->strings["Earth Layers"] = "Earth Layers";
$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
$a->strings["Connect Services"] = "Verbinde Dienste";
$a->strings["Last Tweets"] = "Neueste Tweets";
$a->strings["Set twitter search term"] = "Twitter Suchbegriff";
$a->strings["don't show"] = "nicht zeigen";
$a->strings["show"] = "zeigen";
$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
$a->strings["Set color scheme"] = "Wähle Farbschema";
$a->strings["Set twitter search term"] = "Twitter Suchbegriff";
$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
$a->strings["Community Pages"] = "Foren";
$a->strings["Earth Layers"] = "Earth Layers";
$a->strings["Community Profiles"] = "Community-Profile";
$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
$a->strings["Connect Services"] = "Verbinde Dienste";
$a->strings["Find Friends"] = "Freunde finden";
$a->strings["Last tweets"] = "Neueste Tweets";
$a->strings["Last users"] = "Letzte Nutzer";
$a->strings["Last photos"] = "Letzte Fotos";
$a->strings["Last likes"] = "Zuletzt gemocht";
$a->strings["Your contacts"] = "Deine Kontakte";
$a->strings["Local Directory"] = "Lokales Verzeichnis";
$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
$a->strings["Last Tweets"] = "Neueste Tweets";
$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
$a->strings["Set colour scheme"] = "Farbschema wählen";
$a->strings["Alignment"] = "Ausrichtung";
$a->strings["Left"] = "Links";
$a->strings["Center"] = "Mitte";
$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
$a->strings["Set colour scheme"] = "Farbschema wählen";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Geburtstag:";
$a->strings["Age:"] = "Alter:";
$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
$a->strings["Tags:"] = "Tags";
$a->strings["Religion:"] = "Religion:";
$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
$a->strings["Musical interests:"] = "Musikalische Interessen:";
$a->strings["Books, literature:"] = "Literatur/Bücher:";
$a->strings["Television:"] = "Fernsehen:";
$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
$a->strings["Love/Romance:"] = "Liebesleben:";
$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
$a->strings["School/education:"] = "Schule/Ausbildung:";
$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
$a->strings["Block immediately"] = "Sofort blockieren";
$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
$a->strings["Frequently"] = "immer wieder";
$a->strings["Hourly"] = "Stündlich";
$a->strings["Twice daily"] = "Zweimal täglich";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Zot!"] = "Zott";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/Chat";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["Male"] = "Männlich";
$a->strings["Female"] = "Weiblich";
$a->strings["Currently Male"] = "Momentan männlich";
$a->strings["Currently Female"] = "Momentan weiblich";
$a->strings["Mostly Male"] = "Hauptsächlich männlich";
$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
$a->strings["Transgender"] = "Transgender";
$a->strings["Intersex"] = "Intersex";
$a->strings["Transsexual"] = "Transsexuell";
$a->strings["Hermaphrodite"] = "Hermaphrodit";
$a->strings["Neuter"] = "Neuter";
$a->strings["Non-specific"] = "Nicht spezifiziert";
$a->strings["Other"] = "Andere";
$a->strings["Undecided"] = "Unentschieden";
$a->strings["Males"] = "Männer";
$a->strings["Females"] = "Frauen";
$a->strings["Gay"] = "Schwul";
$a->strings["Lesbian"] = "Lesbisch";
$a->strings["No Preference"] = "Keine Vorlieben";
$a->strings["Bisexual"] = "Bisexuell";
$a->strings["Autosexual"] = "Autosexual";
$a->strings["Abstinent"] = "Abstinent";
$a->strings["Virgin"] = "Jungfrauen";
$a->strings["Deviant"] = "Deviant";
$a->strings["Fetish"] = "Fetish";
$a->strings["Oodles"] = "Oodles";
$a->strings["Nonsexual"] = "Nonsexual";
$a->strings["Single"] = "Single";
$a->strings["Lonely"] = "Einsam";
$a->strings["Available"] = "Verfügbar";
$a->strings["Unavailable"] = "Nicht verfügbar";
$a->strings["Has crush"] = "verknallt";
$a->strings["Infatuated"] = "verliebt";
$a->strings["Dating"] = "Dating";
$a->strings["Unfaithful"] = "Untreu";
$a->strings["Sex Addict"] = "Sexbesessen";
$a->strings["Friends"] = "Freunde";
$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
$a->strings["Casual"] = "Casual";
$a->strings["Engaged"] = "Verlobt";
$a->strings["Married"] = "Verheiratet";
$a->strings["Imaginarily married"] = "imaginär verheiratet";
$a->strings["Partners"] = "Partner";
$a->strings["Cohabiting"] = "zusammenlebend";
$a->strings["Common law"] = "wilde Ehe";
$a->strings["Happy"] = "Glücklich";
$a->strings["Not looking"] = "Nicht auf der Suche";
$a->strings["Swinger"] = "Swinger";
$a->strings["Betrayed"] = "Betrogen";
$a->strings["Separated"] = "Getrennt";
$a->strings["Unstable"] = "Unstabil";
$a->strings["Divorced"] = "Geschieden";
$a->strings["Imaginarily divorced"] = "imaginär geschieden";
$a->strings["Widowed"] = "Verwitwet";
$a->strings["Uncertain"] = "Unsicher";
$a->strings["It's complicated"] = "Ist kompliziert";
$a->strings["Don't care"] = "Ist mir nicht wichtig";
$a->strings["Ask me"] = "Frag mich";
$a->strings["Starts:"] = "Beginnt:";
$a->strings["Finishes:"] = "Endet:";
$a->strings["(no subject)"] = "(kein Betreff)";
$a->strings[" on Last.fm"] = " bei Last.fm";
$a->strings["prev"] = "vorige";
$a->strings["first"] = "erste";
$a->strings["last"] = "letzte";
$a->strings["next"] = "nächste";
$a->strings["newer"] = "neuer";
$a->strings["older"] = "älter";
$a->strings["No contacts"] = "Keine Kontakte";
$a->strings["%d Contact"] = array(
0 => "%d Kontakt",
1 => "%d Kontakte",
);
$a->strings["poke"] = "anstupsen";
$a->strings["poked"] = "stupste";
$a->strings["ping"] = "anpingen";
$a->strings["pinged"] = "pingte";
$a->strings["prod"] = "knuffen";
$a->strings["prodded"] = "knuffte";
$a->strings["slap"] = "ohrfeigen";
$a->strings["slapped"] = "ohrfeigte";
$a->strings["finger"] = "befummeln";
$a->strings["fingered"] = "befummelte";
$a->strings["rebuff"] = "eine Abfuhr erteilen";
$a->strings["rebuffed"] = "abfuhrerteilte";
$a->strings["happy"] = "glücklich";
$a->strings["sad"] = "traurig";
$a->strings["mellow"] = "sanft";
$a->strings["tired"] = "müde";
$a->strings["perky"] = "frech";
$a->strings["angry"] = "sauer";
$a->strings["stupified"] = "verblüfft";
$a->strings["puzzled"] = "verwirrt";
$a->strings["interested"] = "interessiert";
$a->strings["bitter"] = "verbittert";
$a->strings["cheerful"] = "fröhlich";
$a->strings["alive"] = "lebendig";
$a->strings["annoyed"] = "verärgert";
$a->strings["anxious"] = "unruhig";
$a->strings["cranky"] = "schrullig";
$a->strings["disturbed"] = "verstört";
$a->strings["frustrated"] = "frustriert";
$a->strings["motivated"] = "motiviert";
$a->strings["relaxed"] = "entspannt";
$a->strings["surprised"] = "überrascht";
$a->strings["January"] = "Januar";
$a->strings["February"] = "Februar";
$a->strings["March"] = "März";
$a->strings["April"] = "April";
$a->strings["May"] = "Mai";
$a->strings["June"] = "Juni";
$a->strings["July"] = "Juli";
$a->strings["August"] = "August";
$a->strings["September"] = "September";
$a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "Dezember";
$a->strings["bytes"] = "Byte";
$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
$a->strings["default"] = "Standard";
$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
$a->strings["activity"] = "Aktivität";
$a->strings["post"] = "Beitrag";
$a->strings["Item filed"] = "Beitrag abgelegt";
$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
$a->strings["Attachments:"] = "Anhänge:";
$a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel.";
$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
$a->strings["%d contact not imported"] = array(
0 => "%d Kontakt nicht importiert",
1 => "%d Kontakte nicht importiert",
);
$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
$a->strings["Everybody"] = "Alle Kontakte";
$a->strings["edit"] = "bearbeiten";
$a->strings["Edit group"] = "Gruppe bearbeiten";
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
$a->strings["Logout"] = "Abmelden";
$a->strings["End this session"] = "Diese Sitzung beenden";
$a->strings["Status"] = "Status";
$a->strings["Sign in"] = "Anmelden";
$a->strings["Home Page"] = "Homepage";
$a->strings["Create an account"] = "Nutzerkonto erstellen";
$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
$a->strings["Apps"] = "Apps";
$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
$a->strings["Directory"] = "Verzeichnis";
$a->strings["People directory"] = "Nutzerverzeichnis";
$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte";
$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
$a->strings["Friend Requests"] = "Kontaktanfragen";
$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
$a->strings["Private mail"] = "Private E-Mail";
$a->strings["Inbox"] = "Eingang";
$a->strings["Outbox"] = "Ausgang";
$a->strings["Manage"] = "Verwalten";
$a->strings["Manage other pages"] = "Andere Seiten verwalten";
$a->strings["Delegations"] = "Delegierungen";
$a->strings["Profiles"] = "Profile";
$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
$a->strings["Navigation"] = "Navigation";
$a->strings["Site map"] = "Sitemap";
$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
$a->strings["%d invitation available"] = array(
0 => "%d Einladung verfügbar",
1 => "%d Einladungen verfügbar",
);
$a->strings["Find People"] = "Leute finden";
$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
$a->strings["Connect/Follow"] = "Verbinden/Folgen";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
$a->strings["Random Profile"] = "Zufälliges Profil";
$a->strings["Networks"] = "Netzwerke";
$a->strings["All Networks"] = "Alle Netzwerke";
$a->strings["Saved Folders"] = "Gespeicherte Ordner";
$a->strings["Everything"] = "Alles";
$a->strings["Categories"] = "Kategorien";
$a->strings["Logged out."] = "Abgemeldet.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
$a->strings["Miscellaneous"] = "Verschiedenes";
$a->strings["year"] = "Jahr";
$a->strings["month"] = "Monat";
$a->strings["day"] = "Tag";
$a->strings["never"] = "nie";
$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
$a->strings["week"] = "Woche";
$a->strings["hour"] = "Stunde";
$a->strings["hours"] = "Stunden";
$a->strings["minute"] = "Minute";
$a->strings["minutes"] = "Minuten";
$a->strings["second"] = "Sekunde";
$a->strings["seconds"] = "Sekunden";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
$a->strings["%s's birthday"] = "%ss Geburtstag";
$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
$a->strings["Image/photo"] = "Bild/Foto";
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>";
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
$a->strings["General Features"] = "Allgemeine Features";
$a->strings["Multiple Profiles"] = "Mehrere Profile";
$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
$a->strings["Post Composition Features"] = "Beitragserstellung Features";
$a->strings["Richtext Editor"] = "Web-Editor";
$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
$a->strings["Post Preview"] = "Beitragsvorschau";
$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
$a->strings["Search by Date"] = "Archiv";
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
$a->strings["Group Filter"] = "Gruppen Filter";
$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
$a->strings["Network Filter"] = "Netzwerk Filter";
$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
$a->strings["Network Tabs"] = "Netzwerk Reiter";
$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren.";
$a->strings["Tagging"] = "Tagging";
$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
$a->strings["Post Categories"] = "Beitragskategorien";
$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
$a->strings["Star Posts"] = "Beiträge Markieren";
$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
$a->strings["[no subject]"] = "[kein Betreff]";
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
$a->strings["Thank You,"] = "Danke,";
$a->strings["%s Administrator"] = "der Administrator von %s";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
$a->strings["a private message"] = "eine private Nachricht";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt";
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst";
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url].";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt";
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
$a->strings["Name:"] = "Name:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
$a->strings["Connect URL missing."] = "Connect-URL fehlt";
$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.";
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
$a->strings["following"] = "folgen";
$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
$a->strings["Archives"] = "Archiv";
$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
$a->strings["Name too short."] = "Der Name ist zu kurz.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein.";
$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["Welcome "] = "Willkommen ";
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
$a->strings["Welcome back "] = "Willkommen zurück ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
$a->strings["Poke"] = "Anstupsen";
$a->strings["View Status"] = "Pinnwand anschauen";
$a->strings["View Profile"] = "Profil anschauen";
$a->strings["View Photos"] = "Bilder anschauen";
$a->strings["Network Posts"] = "Netzwerkbeiträge";
$a->strings["Edit Contact"] = "Kontakt bearbeiten";
$a->strings["Send PM"] = "Private Nachricht senden";
$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
$a->strings["post/item"] = "Nachricht/Beitrag";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
$a->strings["Categories:"] = "Kategorien";
$a->strings["Filed under:"] = "Abgelegt unter:";
$a->strings["remove"] = "löschen";
$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
$a->strings["Follow Thread"] = "Folge der Unterhaltung";
$a->strings["%s likes this."] = "%s mag das.";
$a->strings["%s doesn't like this."] = "%s mag das nicht.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d Personen</span> mögen das";
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d Personen</span> mögen das nicht";
$a->strings["and"] = "und";
$a->strings[", and %d other people"] = " und %d andere";
$a->strings["%s like this."] = "%s mögen das.";
$a->strings["%s don't like this."] = "%s mögen das nicht.";
$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
$a->strings["Tag term:"] = "Tag:";
$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?";
$a->strings["Delete item(s)?"] = "Einträge löschen?";
$a->strings["Post to Email"] = "An E-Mail senden";
$a->strings["permissions"] = "Zugriffsrechte";
$a->strings["Post to Groups"] = "Poste an Gruppe";
$a->strings["Post to Contacts"] = "Poste an Kontakte";
$a->strings["Private post"] = "Privater Beitrag";
$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
$a->strings["show fewer"] = "weniger anzeigen";
$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
@ -2138,21 +2160,4 @@ $a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
$a->strings["Profile Details"] = "Profildetails";
$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
$a->strings["via"] = "via";
$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
$a->strings["Bg settings updated."] = "Bg Einstellungen sind aktualisiert.";
$a->strings["Bg Settings"] = "Bg Einstellungen";
$a->strings["Post to Drupal"] = "Bei Drupal veröffentlichen";
$a->strings["Drupal Post Settings"] = "Drupal-Beitragseinstellungen";
$a->strings["Enable Drupal Post Plugin"] = "Veröffentlichung bei Drupal erlauben";
$a->strings["Drupal username"] = "Drupal Nutzername";
$a->strings["Drupal password"] = "Drupal Passwort";
$a->strings["Post Type - article,page,or blog"] = "Beitragstyp - Artikel, Seite oder Blog";
$a->strings["Drupal site URL"] = "URL der Drupal Seite";
$a->strings["Drupal site uses clean URLS"] = "Drupal Seite verwendet bereinigte URLs";
$a->strings["Post to Drupal by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal";
$a->strings["OEmbed settings updated"] = "OEmbed Einstellungen aktualisiert.";
$a->strings["Use OEmbed for YouTube videos"] = "OEmbed für Youtube Videos verwenden";
$a->strings["URL to embed:"] = "URL zum Einbetten:";
$a->strings["Tumblr login"] = "Tumblr Login";
$a->strings["Tumblr password"] = "Tumblr Passwort";

View file

@ -13,10 +13,12 @@
<tr><td style="padding-top:22px;" colspan="2">$preamble</td></tr>
{{ if $content_allowed }}
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="$source_link"><img style="border:0px;width:48px;height:48px;" src="$source_photo"></a></td>
<td style="padding-top:22px;"><a href="$source_link">$source_name</a></td></tr>
<tr><td style="font-weight:bold;padding-bottom:5px;">$title</td></tr>
<tr><td style="padding-right:22px;">$htmlversion</td></tr>
{{ endif }}
<tr><td style="padding-top:11px;" colspan="2">$hsitelink</td></tr>
<tr><td style="padding-bottom:11px;" colspan="2">$hitemlink</td></tr>
<tr><td></td><td>$thanks</td></tr>
@ -25,3 +27,4 @@
</table>
</body>
</html>

View file

@ -1,13 +1,16 @@
$preamble
{{ if $content_allowed }}
$title
$textversion
{{ endif }}
$tsitelink
$titemlink
$thanks
$site_admin

View file

@ -52,12 +52,12 @@
{{include file="field_input.tpl" field=$sitename}}
{{include file="field_textarea.tpl" field=$banner}}
{{include file="field_select.tpl" field=$language}}
{{include file="field_select.tpl" field=$theme}}
{{include file="field_select.tpl" field=$theme}}
{{include file="field_select.tpl" field=$theme_mobile}}
{{include file="field_select.tpl" field=$ssl_policy}}
{{include file="field_checkbox.tpl" field=$new_share}}
{{include file="field_checkbox.tpl" field=$hide_help}}
{{include file="field_select.tpl" field=$singleuser}}
{{include file="field_select.tpl" field=$singleuser}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>
@ -89,6 +89,7 @@
{{include file="field_input.tpl" field=$global_directory}}
{{include file="field_checkbox.tpl" field=$thread_allow}}
{{include file="field_checkbox.tpl" field=$newuser_private}}
{{include file="field_checkbox.tpl" field=$enotify_no_content}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>

View file

@ -75,7 +75,7 @@
<td class='register_date'>{{$u.register_date}}</td>
<td class='login_date'>{{$u.login_date}}</td>
<td class='lastitem_date'>{{$u.lastitem_date}}</td>
<td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}}</td>
<td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.accountexpired}}{{$account_expired}}{{/if}}</td>
<td class="checkbox">
{{if $u.is_admin}}
&nbsp;

View file

@ -18,10 +18,12 @@
<tr><td style="padding-top:22px;" colspan="2">{{$preamble}}</td></tr>
{{if $content_allowed}}
<tr><td style="padding-left:22px;padding-top:22px;width:60px;" valign="top" rowspan=3><a href="{{$source_link}}"><img style="border:0px;width:48px;height:48px;" src="{{$source_photo}}"></a></td>
<td style="padding-top:22px;"><a href="{{$source_link}}">{{$source_name}}</a></td></tr>
<tr><td style="font-weight:bold;padding-bottom:5px;">{{$title}}</td></tr>
<tr><td style="padding-right:22px;">{{$htmlversion}}</td></tr>
{{/if}}
<tr><td style="padding-top:11px;" colspan="2">{{$hsitelink}}</td></tr>
<tr><td style="padding-bottom:11px;" colspan="2">{{$hitemlink}}</td></tr>
<tr><td></td><td>{{$thanks}}</td></tr>
@ -30,3 +32,4 @@
</table>
</body>
</html>

View file

@ -5,14 +5,17 @@
*}}
{{$preamble}}
{{if $content_allowed}}
{{$title}}
{{$textversion}}
{{/if}}
{{$tsitelink}}
{{$titemlink}}
{{$thanks}}
{{$site_admin}}

View file

@ -41,6 +41,7 @@
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$enotify_no_content }}{{ endinc }}
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>

View file

@ -46,6 +46,7 @@
{{include file="field_input.tpl" field=$global_directory}}
{{include file="field_checkbox.tpl" field=$thread_allow}}
{{include file="field_checkbox.tpl" field=$newuser_private}}
{{include file="field_checkbox.tpl" field=$enotify_no_content}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>

View file

@ -41,6 +41,7 @@
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$enotify_no_content }}{{ endinc }}
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>

View file

@ -46,6 +46,7 @@
{{include file="field_input.tpl" field=$global_directory}}
{{include file="field_checkbox.tpl" field=$thread_allow}}
{{include file="field_checkbox.tpl" field=$newuser_private}}
{{include file="field_checkbox.tpl" field=$enotify_no_content}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>

View file

@ -43,6 +43,7 @@
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$enotify_no_content }}{{ endinc }}
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>

View file

@ -48,6 +48,7 @@
{{include file="field_input.tpl" field=$global_directory}}
{{include file="field_checkbox.tpl" field=$thread_allow}}
{{include file="field_checkbox.tpl" field=$newuser_private}}
{{include file="field_checkbox.tpl" field=$enotify_no_content}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>

View file

@ -12,7 +12,12 @@
{{$parent}}
<div id="prvmail-to-label">{{$to}}</div>
{{if $showinputs}}
<input type="text" id="recip" name="messagerecip" value="{{$prefill}}" maxlength="255" size="64" tabindex="10" />
<input type="hidden" id="recip-complete" name="messageto" value="{{$preid}}">
{{else}}
{{$select}}
{{/if}}
<div id="prvmail-subject-label">{{$subject}}</div>
<input type="text" size="64" maxlength="255" id="prvmail-subject" name="subject" value="{{$subjtxt}}" {{$readonly}} tabindex="11" />

View file

@ -23,7 +23,7 @@
</ul>
</div>
{{else}}
<div class="profile-edit-side-div"><a class="profile-edit-side-link icon edit" title="{{$editprofile}}" href="profiles/{{$profid}}" ></a></div>
<div class="profile-edit-side-div"><a class="profile-edit-side-link icon edit" title="{{$editprofile}}" href="profiles" ></a></div>
{{/if}}
</div>