Merge remote-tracking branch 'upstream/master'

Conflicts:
	mod/admin.php
This commit is contained in:
Michael Vogel 2013-02-20 21:57:26 +01:00
commit 0d4d15c73d
12 changed files with 6497 additions and 6290 deletions

View file

@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
require_once('include/features.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_VERSION', '3.1.1612' );
define ( 'FRIENDICA_VERSION', '3.1.1614' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1162 );
define ( 'EOL', "<br />\r\n" );

View file

@ -36,8 +36,7 @@ Friendica Documentation and Resources
**External Resources**
* [Main Website](http://friendica.com)
* [Forums](http://groups.google.com/group/friendica)
* [Developer Forums](http://groups.google.com/group/friendica-dev)
* [Mailing List Archive](http://librelist.com/browser/friendica/)
**About**

View file

@ -36,8 +36,7 @@ Friendica - Dokumentation und Ressourcen
**Externe Ressourcen**
* [Haupt-Webseite](http://friendica.com)
* [Foren](http://groups.google.com/group/friendica)
* [Entwickler-Foren](http://groups.google.com/group/friendica-dev)
* [Mailing Liste](http://librelist.com/browser/friendica/)
* [Deutsches Friendica-Wiki](http://wiki.toktan.org/doku.php)
**Über diese Seite**

View file

@ -273,12 +273,14 @@ function admin_page_site_post(&$a){
$diaspora_enabled = ((x($_POST,'diaspora_enabled')) ? True : False);
$ssl_policy = ((x($_POST,'ssl_policy')) ? intval($_POST['ssl_policy']) : 0);
$new_share = ((x($_POST,'new_share')) ? True : False);
$hide_help = ((x($_POST,'hide_help')) ? True : False);
$use_fulltext_engine = ((x($_POST,'use_fulltext_engine')) ? True : False);
$itemcache = ((x($_POST,'itemcache')) ? notags(trim($_POST['itemcache'])) : '');
$itemcache_duration = ((x($_POST,'itemcache_duration')) ? intval($_POST['itemcache_duration']) : 0);
$lockpath = ((x($_POST,'lockpath')) ? notags(trim($_POST['lockpath'])) : '');
$temppath = ((x($_POST,'temppath')) ? notags(trim($_POST['temppath'])) : '');
$basepath = ((x($_POST,'basepath')) ? notags(trim($_POST['basepath'])) : '');
$singleuser = ((x($_POST,'singleuser')) ? notags(trim($_POST['singleuser'])) : '');
if($ssl_policy != intval(get_config('system','ssl_policy'))) {
if($ssl_policy == SSL_POLICY_FULL) {
@ -340,7 +342,12 @@ function admin_page_site_post(&$a){
del_config('system','mobile-theme');
} else {
set_config('system','mobile-theme', $theme_mobile);
}
}
if ( $singleuser === '---' ) {
del_config('system','singleuser');
} else {
set_config('system','singleuser', $singleuser);
}
set_config('system','maximagesize', $maximagesize);
set_config('system','max_image_length', $maximagelength);
set_config('system','jpeg_quality', $jpegimagequality);
@ -379,6 +386,7 @@ function admin_page_site_post(&$a){
set_config('system','diaspora_enabled', $diaspora_enabled);
set_config('system','new_share', $new_share);
set_config('system','hide_help', $hide_help);
set_config('system','use_fulltext_engine', $use_fulltext_engine);
set_config('system','itemcache', $itemcache);
set_config('system','itemcache_duration', $itemcache_duration);
@ -425,12 +433,19 @@ function admin_page_site(&$a) {
if (file_exists($file . '/mobile')) {
$theme_choices_mobile[$f] = $theme_name;
}
else {
else {
$theme_choices[$f] = $theme_name;
}
}
}
/* get user names to make the install a personal install of X */
$user_names = array();
$user_names['---'] = t('Multi user instance');
$users = q("SELECT username, nickname FROM `user`");
foreach ($users as $user) {
$user_names[$user['nickname']] = $user['username'];
}
/* Banner */
$banner = get_config('system','banner');
@ -473,6 +488,8 @@ function admin_page_site(&$a) {
'$theme_mobile' => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile),
'$ssl_policy' => array('ssl_policy', t("SSL link policy"), (string) intval(get_config('system','ssl_policy')), t("Determines whether generated links should be forced to use SSL"), $ssl_choices),
'$new_share' => array('new_share', t("'Share' element"), get_config('system','new_share'), t("Activates the bbcode element 'share' for repeating items.")),
'$hide_help' => array('hide_help', t("Hide help entry from navigation menu"), get_config('system','hide_help'), t("Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.")),
'$singleuser' => array('singleuser', t("Single user instance"), get_config('system','singleuser'), t("Make this instance multi-user or single-user for the named user"), $user_names),
'$maximagesize' => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")),
'$maximagelength' => array('maximagelength', t("Maximum image length"), get_config('system','max_image_length'), t("Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.")),
'$jpegimagequality' => array('jpegimagequality', t("JPEG image quality"), get_config('system','jpeg_quality'), t("Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.")),

View file

@ -900,14 +900,20 @@ function item_post(&$a) {
} else {
$subject = email_header_encode('[Friendica]' . ' ' . sprintf( t('%s posted an update.'),$a->user['username']),'UTF-8');
}
$headers = 'From: ' . email_header_encode($a->user['username'],'UTF-8') . ' <' . $a->user['email'] . '>' . "\n";
$headers .= 'MIME-Version: 1.0' . "\n";
$headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
$headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
$link = '<a href="' . $a->get_baseurl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
$html = prepare_body($datarray);
$message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
@mail($addr, $subject, $message, $headers);
include_once('include/html2plain.php');
$params = array (
'fromName' => $a->user['username'],
'fromEmail' => $a->user['email'],
'toEmail' => $addr,
'replyTo' => $a->user['email'],
'messageSubject' => $subject,
'htmlVersion' => $message,
'textVersion' => html2plain($html.$disclaimer),
);
enotify::send($params);
}
}
}

View file

@ -6,215 +6,67 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 3.1.1612\n"
"Project-Id-Version: 3.1.1614\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-07 10:00-0800\n"
"POT-Creation-Date: 2013-02-17 00:00-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: ../../mod/oexchange.php:25
msgid "Post successful."
#: ../../addon.old/altpager/altpager.php:46
#: ../../addon/altpager/altpager.php:46
msgid "Altpager settings updated."
msgstr ""
#: ../../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]"
#: ../../addon.old/altpager/altpager.php:79
#: ../../addon/altpager/altpager.php:83
msgid "Alternate Pagination Setting"
msgstr ""
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
#: ../../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 ""
#: ../../mod/crepair.php:104
msgid "Contact update failed."
msgstr ""
#: ../../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 ""
#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
msgid "Contact not found."
msgstr ""
#: ../../mod/crepair.php:135
msgid "Repair Contact Settings"
msgstr ""
#: ../../mod/crepair.php:137
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
"information your communications with this contact may stop working."
msgstr ""
#: ../../mod/crepair.php:138
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr ""
#: ../../mod/crepair.php:144
msgid "Return to contact editor"
msgstr ""
#: ../../mod/crepair.php:148 ../../mod/settings.php:562
#: ../../mod/settings.php:588 ../../mod/admin.php:731 ../../mod/admin.php:741
msgid "Name"
msgstr ""
#: ../../mod/crepair.php:149
msgid "Account Nickname"
msgstr ""
#: ../../mod/crepair.php:150
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: ../../mod/crepair.php:151
msgid "Account URL"
msgstr ""
#: ../../mod/crepair.php:152
msgid "Friend Request URL"
msgstr ""
#: ../../mod/crepair.php:153
msgid "Friend Confirm URL"
msgstr ""
#: ../../mod/crepair.php:154
msgid "Notification Endpoint URL"
msgstr ""
#: ../../mod/crepair.php:155
msgid "Poll/Feed URL"
msgstr ""
#: ../../mod/crepair.php:156
msgid "New photo from this URL"
msgstr ""
#: ../../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/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/pageheader/pageheader.php:55
#: ../../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
@ -222,2999 +74,5599 @@ msgstr ""
#: ../../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
#: ../../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:461 ../../mod/admin.php:728
#: ../../mod/admin.php:865 ../../mod/admin.php:1068 ../../mod/admin.php:1155
#: ../../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/contacts.php:386 ../../mod/settings.php:560
#: ../../mod/settings.php:670 ../../mod/settings.php:739
#: ../../mod/settings.php:811 ../../mod/settings.php:1037
#: ../../mod/content.php:710 ../../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 ../../object/Item.php:604
#: ../../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 ""
#: ../../mod/help.php:79
msgid "Help:"
#: ../../addon.old/bg/bg.php:51
msgid "Bg settings updated."
msgstr ""
#: ../../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"
#: ../../addon.old/bg/bg.php:82
msgid "Bg Settings"
msgstr ""
#: ../../mod/help.php:90 ../../index.php:226
msgid "Not Found"
#: ../../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 ""
#: ../../mod/help.php:93 ../../index.php:229
msgid "Page not found."
#: ../../addon.old/blockem/blockem.php:51 ../../addon/blockem/blockem.php:51
msgid "\"Blockem\" Settings"
msgstr ""
#: ../../mod/wall_attach.php:69
#: ../../addon.old/blockem/blockem.php:53 ../../addon/blockem/blockem.php:53
msgid "Comma separated profile URLS to block"
msgstr ""
#: ../../addon.old/blockem/blockem.php:70 ../../addon/blockem/blockem.php:70
msgid "BLOCKEM Settings saved."
msgstr ""
#: ../../addon.old/blockem/blockem.php:105 ../../addon/blockem/blockem.php:105
#, php-format
msgid "File exceeds size limit of %d"
msgid "Blocked %s - Click to open/close"
msgstr ""
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
#: ../../addon.old/blockem/blockem.php:160 ../../addon/blockem/blockem.php:160
msgid "Unblock Author"
msgstr ""
#: ../../mod/fsuggest.php:63
msgid "Friend suggestion sent."
#: ../../addon.old/blockem/blockem.php:162 ../../addon/blockem/blockem.php:162
msgid "Block Author"
msgstr ""
#: ../../mod/fsuggest.php:97
msgid "Suggest Friends"
#: ../../addon.old/blockem/blockem.php:194 ../../addon/blockem/blockem.php:194
msgid "blockem settings updated"
msgstr ""
#: ../../mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
#: ../../addon.old/blogger/blogger.php:42 ../../addon/blogger/blogger.php:42
msgid "Post to blogger"
msgstr ""
#: ../../mod/events.php:66
msgid "Event title and start time are required."
#: ../../addon.old/blogger/blogger.php:74 ../../addon/blogger/blogger.php:74
msgid "Blogger Post Settings"
msgstr ""
#: ../../mod/events.php:291
msgid "l, F j"
#: ../../addon.old/blogger/blogger.php:76 ../../addon/blogger/blogger.php:76
msgid "Enable Blogger Post Plugin"
msgstr ""
#: ../../mod/events.php:313
msgid "Edit event"
#: ../../addon.old/blogger/blogger.php:81 ../../addon/blogger/blogger.php:81
msgid "Blogger username"
msgstr ""
#: ../../mod/events.php:335 ../../include/text.php:1258
msgid "link to source"
#: ../../addon.old/blogger/blogger.php:86 ../../addon/blogger/blogger.php:86
msgid "Blogger password"
msgstr ""
#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
#: ../../include/nav.php:79 ../../boot.php:1857
msgid "Events"
#: ../../addon.old/blogger/blogger.php:91 ../../addon/blogger/blogger.php:91
msgid "Blogger API URL"
msgstr ""
#: ../../mod/events.php:371
msgid "Create New Event"
#: ../../addon.old/blogger/blogger.php:96 ../../addon/blogger/blogger.php:96
msgid "Post to Blogger by default"
msgstr ""
#: ../../mod/events.php:372 ../../addon/dav/friendica/layout.fnk.php:263
#: ../../addon.old/dav/friendica/layout.fnk.php:263
msgid "Previous"
#: ../../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 ""
#: ../../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"
#: ../../addon.old/buglink/buglink.php:15 ../../addon/buglink/buglink.php:15
msgid "Report Bug"
msgstr ""
#: ../../mod/events.php:446
msgid "hour:minute"
#: ../../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:1037
msgid "Login"
msgstr ""
#: ../../mod/events.php:456
msgid "Event details"
#: ../../addon.old/communityhome/twillingham/communityhome.php:29
#: ../../addon.old/communityhome/communityhome.php:29
#: ../../addon/communityhome/communityhome.php:29
msgid "OpenID"
msgstr ""
#: ../../mod/events.php:457
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
#: ../../addon.old/communityhome/twillingham/communityhome.php:38
#: ../../addon.old/communityhome/communityhome.php:38
#: ../../addon/communityhome/communityhome.php:39
msgid "Latest users"
msgstr ""
#: ../../mod/events.php:459
msgid "Event Starts:"
#: ../../addon.old/communityhome/twillingham/communityhome.php:81
#: ../../addon.old/communityhome/communityhome.php:81
#: ../../addon/communityhome/communityhome.php:84
msgid "Most active users"
msgstr ""
#: ../../mod/events.php:459 ../../mod/events.php:473
msgid "Required"
#: ../../addon.old/communityhome/communityhome.php:98
#: ../../addon/communityhome/communityhome.php:102
msgid "Latest photos"
msgstr ""
#: ../../mod/events.php:462
msgid "Finish date/time is not known or not relevant"
msgstr ""
#: ../../mod/events.php:464
msgid "Event Finishes:"
msgstr ""
#: ../../mod/events.php:467
msgid "Adjust for viewer timezone"
msgstr ""
#: ../../mod/events.php:469
msgid "Description:"
msgstr ""
#: ../../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 ""
#: ../../mod/events.php:473
msgid "Title:"
msgstr ""
#: ../../mod/events.php:475
msgid "Share this event"
msgstr ""
#: ../../mod/maintenance.php:5
msgid "System down for maintenance"
msgstr ""
#: ../../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 ""
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr ""
#: ../../mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr ""
#: ../../mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr ""
#: ../../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 ""
#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
#, php-format
msgid "%1$s welcomes %2$s"
msgstr ""
#: ../../mod/api.php:76 ../../mod/api.php:102
msgid "Authorize application connection"
msgstr ""
#: ../../mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr ""
#: ../../mod/api.php:89
msgid "Please login to continue."
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../mod/photos.php:51 ../../boot.php:1850
msgid "Photo Albums"
msgstr ""
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1055
#: ../../addon.old/communityhome/communityhome.php:110
#: ../../addon/communityhome/communityhome.php:115 ../../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 ""
#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792
msgid "Upload New Photos"
msgstr ""
#: ../../mod/photos.php:79 ../../mod/settings.php:23
msgid "everybody"
msgstr ""
#: ../../mod/photos.php:143
msgid "Contact information unavailable"
msgstr ""
#: ../../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: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
#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:493
msgid "Profile Photos"
msgstr ""
#: ../../mod/photos.php:164
msgid "Album not found."
#: ../../addon.old/communityhome/communityhome.php:133
#: ../../addon/communityhome/communityhome.php:141
msgid "Latest likes"
msgstr ""
#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197
msgid "Delete Album"
#: ../../addon.old/communityhome/communityhome.php:155
#: ../../addon/communityhome/communityhome.php:163 ../../include/text.php:1521
#: ../../include/conversation.php:118 ../../include/conversation.php:246
#: ../../view/theme/diabook/theme.php:456
msgid "event"
msgstr ""
#: ../../mod/photos.php:197
msgid "Do you really want to delete this photo album and all its photos?"
#: ../../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/conversation.php:121
#: ../../include/conversation.php:130 ../../include/conversation.php:249
#: ../../include/conversation.php:258 ../../include/diaspora.php:1860
#: ../../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 ""
#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499
msgid "Delete Photo"
#: ../../addon.old/communityhome/communityhome.php:163
#: ../../addon/communityhome/communityhome.php:171 ../../include/text.php:1523
#: ../../include/conversation.php:126 ../../include/conversation.php:254
#: ../../include/diaspora.php:1860 ../../mod/subthread.php:87
#: ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../view/theme/diabook/theme.php:464
msgid "photo"
msgstr ""
#: ../../mod/photos.php:284
msgid "Do you really want to delete this photo?"
msgstr ""
#: ../../mod/photos.php:653
#: ../../addon.old/communityhome/communityhome.php:172
#: ../../addon.old/facebook/facebook.php:1602
#: ../../addon/communityhome/communityhome.php:180
#: ../../addon/facebook/facebook.php:1604 ../../include/conversation.php:137
#: ../../include/diaspora.php:1876 ../../mod/like.php:168
#: ../../view/theme/diabook/theme.php:473
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgid "%1$s likes %2$s's %3$s"
msgstr ""
#: ../../mod/photos.php:653
msgid "a photo"
msgstr ""
#: ../../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 ""
#: ../../mod/photos.php:766
msgid "Image file is empty."
msgstr ""
#: ../../mod/photos.php:798 ../../mod/profile_photo.php:153
#: ../../mod/wall_upload.php:112
msgid "Unable to process image."
msgstr ""
#: ../../mod/photos.php:825 ../../mod/profile_photo.php:301
#: ../../mod/wall_upload.php:138
msgid "Image upload failed."
msgstr ""
#: ../../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 ""
#: ../../mod/photos.php:921
msgid "No photos selected"
msgstr ""
#: ../../mod/photos.php:1022
msgid "Access to this item is restricted."
msgstr ""
#: ../../mod/photos.php:1085
#: ../../addon.old/communityhome/communityhome.php:179
#: ../../addon/communityhome/communityhome.php:189 ../../mod/home.php:34
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgid "Welcome to %s"
msgstr ""
#: ../../mod/photos.php:1120
msgid "Upload Photos"
#: ../../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 ""
#: ../../mod/photos.php:1124 ../../mod/photos.php:1192
msgid "New album name: "
#: ../../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 ""
#: ../../mod/photos.php:1125
msgid "or existing album name: "
#: ../../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 ""
#: ../../mod/photos.php:1126
msgid "Do not show a status post for this upload"
#: ../../addon.old/dav/common/wdcal_configuration.php:148
#: ../../addon/dav/common/wdcal_configuration.php:148
msgid "U.S. Time Format (mm/dd/YYYY)"
msgstr ""
#: ../../mod/photos.php:1128 ../../mod/photos.php:1494
msgid "Permissions"
#: ../../addon.old/dav/common/wdcal_configuration.php:243
#: ../../addon/dav/common/wdcal_configuration.php:243
msgid "German Time Format (dd.mm.YYYY)"
msgstr ""
#: ../../mod/photos.php:1137 ../../mod/photos.php:1503
#: ../../mod/settings.php:1070
msgid "Show to Groups"
#: ../../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 ""
#: ../../mod/photos.php:1138 ../../mod/photos.php:1504
#: ../../mod/settings.php:1071
msgid "Show to Contacts"
#: ../../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 ""
#: ../../mod/photos.php:1139
msgid "Private Photo"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
#: ../../addon/dav/common/wdcal_edit.inc.php:144
msgid "Event data"
msgstr ""
#: ../../mod/photos.php:1140
msgid "Public Photo"
#: ../../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 ""
#: ../../mod/photos.php:1207
msgid "Edit Album"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
#: ../../addon/dav/common/wdcal_edit.inc.php:163
msgid "Special color"
msgstr ""
#: ../../mod/photos.php:1213
msgid "Show Newest First"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
#: ../../addon/dav/common/wdcal_edit.inc.php:169
msgid "Subject"
msgstr ""
#: ../../mod/photos.php:1215
msgid "Show Oldest First"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
#: ../../addon/dav/common/wdcal_edit.inc.php:173
msgid "Starts"
msgstr ""
#: ../../mod/photos.php:1248 ../../mod/photos.php:1775
msgid "View Photo"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
#: ../../addon/dav/common/wdcal_edit.inc.php:178
msgid "Ends"
msgstr ""
#: ../../mod/photos.php:1283
msgid "Permission denied. Access to this item may be restricted."
#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
#: ../../addon/dav/common/wdcal_edit.inc.php:183 ../../mod/profiles.php:367
msgid "Location"
msgstr ""
#: ../../mod/photos.php:1285
msgid "Photo not available"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
#: ../../addon/dav/common/wdcal_edit.inc.php:185
msgid "Description"
msgstr ""
#: ../../mod/photos.php:1341
msgid "View photo"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
#: ../../addon/dav/common/wdcal_edit.inc.php:188
msgid "Recurrence"
msgstr ""
#: ../../mod/photos.php:1341
msgid "Edit photo"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
#: ../../addon/dav/common/wdcal_edit.inc.php:190
msgid "Frequency"
msgstr ""
#: ../../mod/photos.php:1342
msgid "Use as profile photo"
#: ../../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 ""
#: ../../mod/photos.php:1348 ../../mod/content.php:620
#: ../../object/Item.php:106
msgid "Private Message"
#: ../../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 ""
#: ../../mod/photos.php:1367
msgid "View Full Size"
#: ../../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 ""
#: ../../mod/photos.php:1441
msgid "Tags: "
#: ../../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 ""
#: ../../mod/photos.php:1444
msgid "[Remove any tag]"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
#: ../../addon/dav/common/wdcal_edit.inc.php:203
msgid "Yearly"
msgstr ""
#: ../../mod/photos.php:1484
msgid "Rotate CW (right)"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
#: ../../addon/dav/common/wdcal_edit.inc.php:214
#: ../../include/datetime.php:288
msgid "days"
msgstr ""
#: ../../mod/photos.php:1485
msgid "Rotate CCW (left)"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
#: ../../addon/dav/common/wdcal_edit.inc.php:215
#: ../../include/datetime.php:287
msgid "weeks"
msgstr ""
#: ../../mod/photos.php:1487
msgid "New album name"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
#: ../../addon/dav/common/wdcal_edit.inc.php:216
#: ../../include/datetime.php:286
msgid "months"
msgstr ""
#: ../../mod/photos.php:1490
msgid "Caption"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
#: ../../addon/dav/common/wdcal_edit.inc.php:217
#: ../../include/datetime.php:285
msgid "years"
msgstr ""
#: ../../mod/photos.php:1492
msgid "Add a Tag"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "Interval"
msgstr ""
#: ../../mod/photos.php:1496
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "All %select% %time%"
msgstr ""
#: ../../mod/photos.php:1505
msgid "Private photo"
#: ../../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 ""
#: ../../mod/photos.php:1506
msgid "Public photo"
#: ../../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:988
msgid "Sunday"
msgstr ""
#: ../../mod/photos.php:1526 ../../mod/content.php:684
#: ../../object/Item.php:204
msgid "I like this (toggle)"
#: ../../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:988
msgid "Monday"
msgstr ""
#: ../../mod/photos.php:1527 ../../mod/content.php:685
#: ../../object/Item.php:205
msgid "I don't like this (toggle)"
#: ../../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:988
msgid "Tuesday"
msgstr ""
#: ../../mod/photos.php:1528 ../../include/conversation.php:1023
msgid "Share"
#: ../../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:988
msgid "Wednesday"
msgstr ""
#: ../../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"
#: ../../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:988
msgid "Thursday"
msgstr ""
#: ../../mod/photos.php:1546 ../../mod/photos.php:1590
#: ../../mod/photos.php:1673 ../../mod/content.php:707
#: ../../object/Item.php:601
msgid "This is you"
#: ../../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:988
msgid "Friday"
msgstr ""
#: ../../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"
#: ../../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:988
msgid "Saturday"
msgstr ""
#: ../../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"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
#: ../../addon/dav/common/wdcal_edit.inc.php:297
msgid "First day of week:"
msgstr ""
#: ../../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"
#: ../../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 ""
#: ../../mod/photos.php:1781
msgid "View Album"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
#: ../../addon/dav/common/wdcal_edit.inc.php:354
msgid "#num#th of each month"
msgstr ""
#: ../../mod/photos.php:1790
msgid "Recent Photos"
#: ../../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 ""
#: ../../mod/community.php:23
msgid "Not available."
#: ../../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 ""
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
#: ../../include/nav.php:128
msgid "Community"
#: ../../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 ""
#: ../../mod/community.php:61 ../../mod/community.php:86
#: ../../mod/search.php:162 ../../mod/search.php:188
msgid "No results."
#: ../../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 ""
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
#: ../../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 ""
#: ../../mod/friendica.php:56
msgid "running at web location"
#: ../../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 ""
#: ../../mod/friendica.php:58
#: ../../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 ""
#: ../../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 ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
#: ../../addon/dav/common/wdcal_edit.inc.php:413
msgid "Repeat until"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
#: ../../addon/dav/common/wdcal_edit.inc.php:417
msgid "Infinite"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
#: ../../addon/dav/common/wdcal_edit.inc.php:420
msgid "Until the following date"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
#: ../../addon/dav/common/wdcal_edit.inc.php:423
msgid "Number of times"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
#: ../../addon/dav/common/wdcal_edit.inc.php:429
msgid "Exceptions"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
#: ../../addon/dav/common/wdcal_edit.inc.php:432
msgid "none"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
#: ../../addon/dav/common/wdcal_edit.inc.php:449
msgid "Notification"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
#: ../../addon/dav/common/wdcal_edit.inc.php:466
msgid "Notify by"
msgstr ""
#: ../../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 ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
#: ../../addon/dav/common/wdcal_edit.inc.php:469
msgid "E-Mail"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
#: ../../addon/dav/common/wdcal_edit.inc.php:470
msgid "On Friendica / Display"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
#: ../../addon/dav/common/wdcal_edit.inc.php:474
msgid "Time"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
#: ../../addon/dav/common/wdcal_edit.inc.php:478
msgid "Hours"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
#: ../../addon/dav/common/wdcal_edit.inc.php:479
msgid "Minutes"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
#: ../../addon/dav/common/wdcal_edit.inc.php:480
msgid "Seconds"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
#: ../../addon/dav/common/wdcal_edit.inc.php:482
msgid "Weeks"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
#: ../../addon/dav/common/wdcal_edit.inc.php:485
msgid "before the"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
#: ../../addon/dav/common/wdcal_edit.inc.php:486
msgid "start of the event"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
#: ../../addon/dav/common/wdcal_edit.inc.php:487
msgid "end of the event"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
#: ../../addon/dav/common/wdcal_edit.inc.php:492
msgid "Add a notification"
msgstr ""
#: ../../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 ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
#: ../../addon/dav/common/wdcal_edit.inc.php:696
msgid "#name# is about to begin."
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
#: ../../addon/dav/common/wdcal_edit.inc.php:769
msgid "Saved"
msgstr ""
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
msgid "Private Calendar"
msgstr ""
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
msgid "Friendica Events: Mine"
msgstr ""
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
msgid "Friendica Events: Contacts"
msgstr ""
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
msgid "Private Addresses"
msgstr ""
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
msgid "Friendica Contacts"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
"Something went wrong when trying to import the file. Sorry. Maybe some "
"events were imported anyway."
msgstr ""
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
#: ../../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 ""
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
#: ../../addon.old/dav/friendica/layout.fnk.php:134
#: ../../addon/dav/friendica/layout.fnk.php:134
msgid "The ICS-File has been imported."
msgstr ""
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
#: ../../addon.old/dav/friendica/layout.fnk.php:138
#: ../../addon/dav/friendica/layout.fnk.php:138
msgid "No file was uploaded."
msgstr ""
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
#: ../../addon.old/dav/friendica/layout.fnk.php:147
#: ../../addon/dav/friendica/layout.fnk.php:147
msgid "Import a ICS-file"
msgstr ""
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
#: ../../addon.old/dav/friendica/layout.fnk.php:150
#: ../../addon/dav/friendica/layout.fnk.php:150
msgid "ICS-File"
msgstr ""
#: ../../mod/editpost.php:39
msgid "Edit post"
#: ../../addon.old/dav/friendica/layout.fnk.php:151
#: ../../addon/dav/friendica/layout.fnk.php:151
msgid "Overwrite all #num# existing events"
msgstr ""
#: ../../mod/editpost.php:109 ../../mod/content.php:728
#: ../../mod/settings.php:622 ../../object/Item.php:110
msgid "Edit"
#: ../../addon.old/dav/friendica/layout.fnk.php:152
#: ../../addon/dav/friendica/layout.fnk.php:152
#: ../../mod/profile_photo.php:245
msgid "Upload"
msgstr ""
#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
#: ../../mod/message.php:332 ../../mod/message.php:562
#: ../../include/conversation.php:1024
msgid "Upload photo"
msgstr ""
#: ../../mod/editpost.php:111 ../../include/conversation.php:1025
msgid "upload photo"
msgstr ""
#: ../../mod/editpost.php:112 ../../include/conversation.php:1026
msgid "Attach file"
msgstr ""
#: ../../mod/editpost.php:113 ../../include/conversation.php:1027
msgid "attach file"
msgstr ""
#: ../../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 ""
#: ../../mod/editpost.php:115 ../../include/conversation.php:1029
msgid "web link"
msgstr ""
#: ../../mod/editpost.php:116 ../../include/conversation.php:1030
msgid "Insert video link"
msgstr ""
#: ../../mod/editpost.php:117 ../../include/conversation.php:1031
msgid "video link"
msgstr ""
#: ../../mod/editpost.php:118 ../../include/conversation.php:1032
msgid "Insert audio link"
msgstr ""
#: ../../mod/editpost.php:119 ../../include/conversation.php:1033
msgid "audio link"
msgstr ""
#: ../../mod/editpost.php:120 ../../include/conversation.php:1034
msgid "Set your location"
msgstr ""
#: ../../mod/editpost.php:121 ../../include/conversation.php:1035
msgid "set location"
msgstr ""
#: ../../mod/editpost.php:122 ../../include/conversation.php:1036
msgid "Clear browser location"
msgstr ""
#: ../../mod/editpost.php:123 ../../include/conversation.php:1037
msgid "clear location"
msgstr ""
#: ../../mod/editpost.php:125 ../../include/conversation.php:1043
msgid "Permission settings"
msgstr ""
#: ../../mod/editpost.php:133 ../../include/conversation.php:1052
msgid "CC: email addresses"
msgstr ""
#: ../../mod/editpost.php:134 ../../include/conversation.php:1053
msgid "Public post"
msgstr ""
#: ../../mod/editpost.php:137 ../../include/conversation.php:1039
msgid "Set title"
msgstr ""
#: ../../mod/editpost.php:139 ../../include/conversation.php:1041
msgid "Categories (comma-separated list)"
msgstr ""
#: ../../mod/editpost.php:140 ../../include/conversation.php:1055
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
msgstr ""
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
msgid "Profile location is not valid or does not contain profile information."
msgstr ""
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
msgid "Warning: profile location has no identifiable owner name."
msgstr ""
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
msgid "Warning: profile location has no profile photo."
msgstr ""
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/dfrn_request.php:170
msgid "Introduction complete."
msgstr ""
#: ../../mod/dfrn_request.php:209
msgid "Unrecoverable protocol error."
msgstr ""
#: ../../mod/dfrn_request.php:237
msgid "Profile unavailable."
msgstr ""
#: ../../mod/dfrn_request.php:262
#, php-format
msgid "%s has received too many connection requests today."
msgstr ""
#: ../../mod/dfrn_request.php:263
msgid "Spam protection measures have been invoked."
msgstr ""
#: ../../mod/dfrn_request.php:264
msgid "Friends are advised to please try again in 24 hours."
msgstr ""
#: ../../mod/dfrn_request.php:326
msgid "Invalid locator"
msgstr ""
#: ../../mod/dfrn_request.php:335
msgid "Invalid email address."
msgstr ""
#: ../../mod/dfrn_request.php:362
msgid "This account has not been configured for email. Request failed."
msgstr ""
#: ../../mod/dfrn_request.php:458
msgid "Unable to resolve your name at the provided location."
msgstr ""
#: ../../mod/dfrn_request.php:471
msgid "You have already introduced yourself here."
msgstr ""
#: ../../mod/dfrn_request.php:475
#, php-format
msgid "Apparently you are already friends with %s."
msgstr ""
#: ../../mod/dfrn_request.php:496
msgid "Invalid profile URL."
msgstr ""
#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
msgid "Disallowed profile URL."
msgstr ""
#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
msgid "Failed to update contact record."
msgstr ""
#: ../../mod/dfrn_request.php:592
msgid "Your introduction has been sent."
msgstr ""
#: ../../mod/dfrn_request.php:645
msgid "Please login to confirm introduction."
msgstr ""
#: ../../mod/dfrn_request.php:659
msgid ""
"Incorrect identity currently logged in. Please login to <strong>this</"
"strong> profile."
msgstr ""
#: ../../mod/dfrn_request.php:670
msgid "Hide this contact"
msgstr ""
#: ../../mod/dfrn_request.php:673
#, php-format
msgid "Welcome home %s."
msgstr ""
#: ../../mod/dfrn_request.php:674
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr ""
#: ../../mod/dfrn_request.php:675
msgid "Confirm"
msgstr ""
#: ../../mod/dfrn_request.php:716 ../../include/items.php:3366
msgid "[Name Withheld]"
msgstr ""
#: ../../mod/dfrn_request.php:811
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: ../../mod/dfrn_request.php:827
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr ""
#: ../../mod/dfrn_request.php:829
msgid ""
"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>."
msgstr ""
#: ../../mod/dfrn_request.php:832
msgid "Friend/Connection Request"
msgstr ""
#: ../../mod/dfrn_request.php:833
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
#: ../../mod/dfrn_request.php:834
msgid "Please answer the following:"
msgstr ""
#: ../../mod/dfrn_request.php:835
#, php-format
msgid "Does %s know you?"
msgstr ""
#: ../../mod/dfrn_request.php:838
msgid "Add a personal note:"
msgstr ""
#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr ""
#: ../../mod/dfrn_request.php:841
msgid "StatusNet/Federated Social Web"
msgstr ""
#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr ""
#: ../../mod/dfrn_request.php:843
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search "
"bar."
msgstr ""
#: ../../mod/dfrn_request.php:844
msgid "Your Identity Address:"
msgstr ""
#: ../../mod/dfrn_request.php:847
msgid "Submit Request"
msgstr ""
#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:167
msgid "Account settings"
msgstr ""
#: ../../mod/uexport.php:14 ../../mod/settings.php:40
msgid "Display settings"
msgstr ""
#: ../../mod/uexport.php:20 ../../mod/settings.php:46
msgid "Connector settings"
msgstr ""
#: ../../mod/uexport.php:25 ../../mod/settings.php:51
msgid "Plugin settings"
msgstr ""
#: ../../mod/uexport.php:30 ../../mod/settings.php:56
msgid "Connected apps"
msgstr ""
#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
msgid "Export personal data"
msgstr ""
#: ../../mod/uexport.php:40 ../../mod/settings.php:66
msgid "Remove account"
msgstr ""
#: ../../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
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:167
#: ../../mod/admin.php:824 ../../mod/admin.php:1033 ../../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 ""
#: ../../mod/uexport.php:72
msgid "Export account"
#: ../../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 ""
#: ../../mod/uexport.php:72
#: ../../addon.old/dav/friendica/layout.fnk.php:228
#: ../../addon/dav/friendica/layout.fnk.php:228
msgid "New event"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:232
#: ../../addon/dav/friendica/layout.fnk.php:232
msgid "Today"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:241
#: ../../addon/dav/friendica/layout.fnk.php:241
msgid "Day"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:248
#: ../../addon/dav/friendica/layout.fnk.php:248
msgid "Week"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:260
#: ../../addon/dav/friendica/layout.fnk.php:260
msgid "Reload"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:263
#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372
msgid "Previous"
msgstr ""
#: ../../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 ""
#: ../../addon.old/dav/friendica/layout.fnk.php:271
#: ../../addon/dav/friendica/layout.fnk.php:271
msgid "Date"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:313
#: ../../addon/dav/friendica/layout.fnk.php:313
msgid "Error"
msgstr ""
#: ../../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:4015
#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
#: ../../mod/notes.php:20 ../../mod/nogroup.php:25 ../../mod/photos.php:133
#: ../../mod/photos.php:1041 ../../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/item.php:139 ../../mod/item.php:155
#: ../../mod/network.php:6 ../../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 ""
#: ../../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 ""
#: ../../addon.old/dav/friendica/layout.fnk.php:380
#: ../../addon/dav/friendica/layout.fnk.php:380
msgid "The calendar has been updated."
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:393
#: ../../addon/dav/friendica/layout.fnk.php:393
msgid "The new calendar has been created."
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:417
#: ../../addon/dav/friendica/layout.fnk.php:417
msgid "The calendar has been deleted."
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:424
#: ../../addon/dav/friendica/layout.fnk.php:424
msgid "Calendar Settings"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:430
#: ../../addon/dav/friendica/layout.fnk.php:430
msgid "Date format"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:439
#: ../../addon/dav/friendica/layout.fnk.php:439
msgid "Time zone"
msgstr ""
#: ../../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:754 ../../mod/notes.php:63 ../../mod/filer.php:31
msgid "Save"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:445
#: ../../addon/dav/friendica/layout.fnk.php:445
msgid "Calendars"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:487
#: ../../addon/dav/friendica/layout.fnk.php:487
msgid "Create a new calendar"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:496
#: ../../addon/dav/friendica/layout.fnk.php:496
msgid "Limitations"
msgstr ""
#: ../../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 ""
#: ../../addon.old/dav/friendica/layout.fnk.php:504
#: ../../addon/dav/friendica/layout.fnk.php:504
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:511
#: ../../addon/dav/friendica/layout.fnk.php:511
msgid "Synchronizing this calendar with the iPhone"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:522
#: ../../addon/dav/friendica/layout.fnk.php:522
msgid "Synchronizing your Friendica-Contacts with the iPhone"
msgstr ""
#: ../../addon.old/dav/friendica/main.php:202
#: ../../addon/dav/friendica/main.php:202
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
"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 ""
#: ../../mod/uexport.php:73
msgid "Export all"
#: ../../addon.old/dav/friendica/main.php:242
#: ../../addon/dav/friendica/main.php:242
msgid "Extended calendar with CalDAV-support"
msgstr ""
#: ../../mod/uexport.php:73
#: ../../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 ""
#: ../../addon.old/dav/friendica/main.php:282
#: ../../addon/dav/friendica/main.php:282
msgid "Notification: "
msgstr ""
#: ../../addon.old/dav/friendica/main.php:309
#: ../../addon/dav/friendica/main.php:309
msgid "The database tables have been installed."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:310
#: ../../addon/dav/friendica/main.php:310
msgid "An error occurred during the installation."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:316
#: ../../addon/dav/friendica/main.php:316
msgid "The database tables have been updated."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:317
#: ../../addon/dav/friendica/main.php:317
msgid "An error occurred during the update."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:333
#: ../../addon/dav/friendica/main.php:333
msgid "No system-wide settings yet."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:336
#: ../../addon/dav/friendica/main.php:336
msgid "Database status"
msgstr ""
#: ../../addon.old/dav/friendica/main.php:339
#: ../../addon/dav/friendica/main.php:339
msgid "Installed"
msgstr ""
#: ../../addon.old/dav/friendica/main.php:343
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade needed"
msgstr ""
#: ../../addon.old/dav/friendica/main.php:343
#: ../../addon/dav/friendica/main.php:343
msgid ""
"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)"
"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 ""
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
#: ../../addon.old/dav/friendica/main.php:343
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade"
msgstr ""
#: ../../mod/install.php:123
msgid "Could not connect to database."
#: ../../addon.old/dav/friendica/main.php:346
#: ../../addon/dav/friendica/main.php:346
msgid "Not installed"
msgstr ""
#: ../../mod/install.php:127
msgid "Could not create table."
#: ../../addon.old/dav/friendica/main.php:346
#: ../../addon/dav/friendica/main.php:346
msgid "Install"
msgstr ""
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
#: ../../addon.old/dav/friendica/main.php:350
#: ../../addon/dav/friendica/main.php:350
msgid "Unknown"
msgstr ""
#: ../../mod/install.php:138
#: ../../addon.old/dav/friendica/main.php:350
#: ../../addon/dav/friendica/main.php:350
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
"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 ""
#: ../../mod/install.php:139 ../../mod/install.php:206
#: ../../mod/install.php:506
msgid "Please see the file \"INSTALL.txt\"."
#: ../../addon.old/dav/friendica/main.php:355
#: ../../addon/dav/friendica/main.php:355
msgid "Troubleshooting"
msgstr ""
#: ../../mod/install.php:203
msgid "System check"
#: ../../addon.old/dav/friendica/main.php:356
#: ../../addon/dav/friendica/main.php:356
msgid "Manual creation of the database tables:"
msgstr ""
#: ../../mod/install.php:208
msgid "Check again"
#: ../../addon.old/dav/friendica/main.php:357
#: ../../addon/dav/friendica/main.php:357
msgid "Show SQL-statements"
msgstr ""
#: ../../mod/install.php:227
msgid "Database connection"
#: ../../addon.old/drpost/drpost.php:35
msgid "Post to Drupal"
msgstr ""
#: ../../mod/install.php:228
#: ../../addon.old/drpost/drpost.php:72
msgid "Drupal Post Settings"
msgstr ""
#: ../../addon.old/drpost/drpost.php:74
msgid "Enable Drupal Post Plugin"
msgstr ""
#: ../../addon.old/drpost/drpost.php:79
msgid "Drupal username"
msgstr ""
#: ../../addon.old/drpost/drpost.php:84
msgid "Drupal password"
msgstr ""
#: ../../addon.old/drpost/drpost.php:89
msgid "Post Type - article,page,or blog"
msgstr ""
#: ../../addon.old/drpost/drpost.php:94
msgid "Drupal site URL"
msgstr ""
#: ../../addon.old/drpost/drpost.php:99
msgid "Drupal site uses clean URLS"
msgstr ""
#: ../../addon.old/drpost/drpost.php:104
msgid "Post to Drupal by default"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:39 ../../addon/dwpost/dwpost.php:39
msgid "Post to Dreamwidth"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:70 ../../addon/dwpost/dwpost.php:70
msgid "Dreamwidth Post Settings"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:72 ../../addon/dwpost/dwpost.php:72
msgid "Enable dreamwidth Post Plugin"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:77 ../../addon/dwpost/dwpost.php:77
msgid "dreamwidth username"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:82 ../../addon/dwpost/dwpost.php:82
msgid "dreamwidth password"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:87 ../../addon/dwpost/dwpost.php:87
msgid "Post to dreamwidth by default"
msgstr ""
#: ../../addon.old/editplain/editplain.php:46
#: ../../addon.old/group_text/group_text.php:46
#: ../../addon/editplain/editplain.php:46
msgid "Editplain settings updated."
msgstr ""
#: ../../addon.old/editplain/editplain.php:76
#: ../../addon/editplain/editplain.php:76
msgid "Editplain Settings"
msgstr ""
#: ../../addon.old/editplain/editplain.php:78
#: ../../addon/editplain/editplain.php:78
msgid "Disable richtext status editor"
msgstr ""
#: ../../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 ""
#: ../../addon.old/facebook/facebook.php:523
#: ../../addon/facebook/facebook.php:525
msgid "Facebook disabled"
msgstr ""
#: ../../addon.old/facebook/facebook.php:528
#: ../../addon/facebook/facebook.php:530
msgid "Updating contacts"
msgstr ""
#: ../../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 ""
#: ../../addon.old/facebook/facebook.php:558
#: ../../addon/facebook/facebook.php:560
msgid "Facebook Connect"
msgstr ""
#: ../../addon.old/facebook/facebook.php:564
#: ../../addon/facebook/facebook.php:566
msgid "Install Facebook connector for this account."
msgstr ""
#: ../../addon.old/facebook/facebook.php:571
#: ../../addon/facebook/facebook.php:573
msgid "Remove Facebook connector"
msgstr ""
#: ../../addon.old/facebook/facebook.php:576
#: ../../addon.old/fbpost/fbpost.php:217 ../../addon/facebook/facebook.php:578
#: ../../addon/fbpost/fbpost.php:228
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr ""
#: ../../mod/install.php:229
#: ../../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 ""
#: ../../addon.old/facebook/facebook.php:589
#: ../../addon/facebook/facebook.php:591
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr ""
#: ../../mod/install.php:230
#: ../../addon.old/facebook/facebook.php:593
#: ../../addon/facebook/facebook.php:595
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr ""
#: ../../mod/install.php:234
msgid "Database Server Name"
#: ../../addon.old/facebook/facebook.php:596
#: ../../addon/facebook/facebook.php:598
msgid "Link all your Facebook friends and conversations on this website"
msgstr ""
#: ../../mod/install.php:235
msgid "Database Login Name"
msgstr ""
#: ../../mod/install.php:236
msgid "Database Login Password"
msgstr ""
#: ../../mod/install.php:237
msgid "Database Name"
msgstr ""
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid "Site administrator email address"
msgstr ""
#: ../../mod/install.php:238 ../../mod/install.php:277
#: ../../addon.old/facebook/facebook.php:598
#: ../../addon/facebook/facebook.php:600
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
"Facebook conversations consist of your <em>profile wall</em> and your friend "
"<em>stream</em>."
msgstr ""
#: ../../mod/install.php:242 ../../mod/install.php:280
msgid "Please select a default timezone for your website"
#: ../../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 ""
#: ../../mod/install.php:267
msgid "Site settings"
msgstr ""
#: ../../mod/install.php:320
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr ""
#: ../../mod/install.php:321
#: ../../addon.old/facebook/facebook.php:600
#: ../../addon/facebook/facebook.php:602
msgid ""
"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>"
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr ""
#: ../../mod/install.php:325
msgid "PHP executable path"
msgstr ""
#: ../../mod/install.php:325
#: ../../addon.old/facebook/facebook.php:604
#: ../../addon/facebook/facebook.php:606
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr ""
#: ../../mod/install.php:330
msgid "Command line PHP"
#: ../../addon.old/facebook/facebook.php:609
#: ../../addon/facebook/facebook.php:611
msgid "Do not import your Facebook profile wall conversations"
msgstr ""
#: ../../mod/install.php:339
#: ../../addon.old/facebook/facebook.php:611
#: ../../addon/facebook/facebook.php:613
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
"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 ""
#: ../../mod/install.php:340
msgid "This is required for message delivery to work."
#: ../../addon.old/facebook/facebook.php:616
#: ../../addon/facebook/facebook.php:618
msgid "Comma separated applications to ignore"
msgstr ""
#: ../../mod/install.php:342
msgid "PHP register_argc_argv"
#: ../../addon.old/facebook/facebook.php:700
#: ../../addon/facebook/facebook.php:702
msgid "Problems with Facebook Real-Time Updates"
msgstr ""
#: ../../mod/install.php:363
#: ../../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 ""
#: ../../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 ""
#: ../../addon.old/facebook/facebook.php:729
#: ../../addon/facebook/facebook.php:731
msgid "Facebook Connector Settings"
msgstr ""
#: ../../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 ""
#: ../../addon.old/facebook/facebook.php:754
#: ../../addon.old/fbpost/fbpost.php:262 ../../addon/facebook/facebook.php:756
#: ../../addon/fbpost/fbpost.php:317
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
"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 ""
#: ../../mod/install.php:364
#: ../../addon.old/facebook/facebook.php:759
#: ../../addon/facebook/facebook.php:761
msgid ""
"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
"installation.php\"."
"Error: the given API Key seems to be incorrect (the application access token "
"could not be retrieved)."
msgstr ""
#: ../../mod/install.php:366
msgid "Generate encryption keys"
#: ../../addon.old/facebook/facebook.php:761
#: ../../addon/facebook/facebook.php:763
msgid "The given API Key seems to work correctly."
msgstr ""
#: ../../mod/install.php:373
msgid "libCurl PHP module"
msgstr ""
#: ../../mod/install.php:374
msgid "GD graphics PHP module"
msgstr ""
#: ../../mod/install.php:375
msgid "OpenSSL PHP module"
msgstr ""
#: ../../mod/install.php:376
msgid "mysqli PHP module"
msgstr ""
#: ../../mod/install.php:377
msgid "mb_string PHP module"
msgstr ""
#: ../../mod/install.php:382 ../../mod/install.php:384
msgid "Apache mod_rewrite module"
msgstr ""
#: ../../mod/install.php:382
#: ../../addon.old/facebook/facebook.php:763
#: ../../addon/facebook/facebook.php:765
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
"The correctness of the API Key could not be detected. Something strange's "
"going on."
msgstr ""
#: ../../mod/install.php:390
msgid "Error: libCURL PHP module required but not installed."
#: ../../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 ""
#: ../../mod/install.php:394
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
#: ../../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 ""
#: ../../mod/install.php:398
msgid "Error: openssl PHP module required but not installed."
msgstr ""
#: ../../mod/install.php:402
msgid "Error: mysqli PHP module required but not installed."
msgstr ""
#: ../../mod/install.php:406
msgid "Error: mb_string PHP module required but not installed."
msgstr ""
#: ../../mod/install.php:423
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:424
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:425
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:426
msgid ""
"You can alternatively skip this procedure and perform a manual installation. "
"Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
#: ../../mod/install.php:429
msgid ".htconfig.php is writable"
msgstr ""
#: ../../mod/install.php:439
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr ""
#: ../../mod/install.php:440
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:441
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has "
"write access to this folder."
msgstr ""
#: ../../mod/install.php:442
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:445
msgid "view/smarty3 is writable"
msgstr ""
#: ../../mod/install.php:457
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: ../../mod/install.php:459
msgid "Url rewrite is working"
msgstr ""
#: ../../mod/install.php:469
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:493
msgid "Errors encountered creating database tables."
msgstr ""
#: ../../mod/install.php:504
msgid "<h1>What next</h1>"
msgstr ""
#: ../../mod/install.php:505
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
#: ../../mod/localtime.php:12 ../../include/event.php:11
#: ../../include/bb2diaspora.php:393
msgid "l F d, Y \\@ g:i A"
msgstr ""
#: ../../mod/localtime.php:24
msgid "Time Conversion"
msgstr ""
#: ../../mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr ""
#: ../../mod/localtime.php:30
#: ../../addon.old/facebook/facebook.php:768
#: ../../addon/facebook/facebook.php:770
#, php-format
msgid "UTC time: %s"
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr ""
#: ../../mod/localtime.php:33
#: ../../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 ""
#: ../../addon.old/facebook/facebook.php:773
#: ../../addon/facebook/facebook.php:775
msgid "Real-Time Updates"
msgstr ""
#: ../../addon.old/facebook/facebook.php:777
#: ../../addon/facebook/facebook.php:779
msgid "Real-Time Updates are activated."
msgstr ""
#: ../../addon.old/facebook/facebook.php:778
#: ../../addon/facebook/facebook.php:780
msgid "Deactivate Real-Time Updates"
msgstr ""
#: ../../addon.old/facebook/facebook.php:780
#: ../../addon/facebook/facebook.php:782
msgid "Real-Time Updates not activated."
msgstr ""
#: ../../addon.old/facebook/facebook.php:780
#: ../../addon/facebook/facebook.php:782
msgid "Activate Real-Time Updates"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 "Current timezone: %s"
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 ""
#: ../../mod/localtime.php:36
#: ../../addon.old/fbpost/fbpost.php:172 ../../addon/fbpost/fbpost.php:183
msgid "Facebook Post disabled"
msgstr ""
#: ../../addon.old/fbpost/fbpost.php:199 ../../addon/fbpost/fbpost.php:210
msgid "Facebook Post"
msgstr ""
#: ../../addon.old/fbpost/fbpost.php:205 ../../addon/fbpost/fbpost.php:216
msgid "Install Facebook Post connector for this account."
msgstr ""
#: ../../addon.old/fbpost/fbpost.php:212 ../../addon/fbpost/fbpost.php:223
msgid "Remove Facebook Post connector"
msgstr ""
#: ../../addon.old/fbpost/fbpost.php:240 ../../addon/fbpost/fbpost.php:295
msgid "Facebook Post Settings"
msgstr ""
#: ../../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 ""
#: ../../addon.old/forumlist/forumlist.php:63
#: ../../addon/forumlist/forumlist.php:67
msgid "show/hide"
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:77
#: ../../addon/forumlist/forumlist.php:81
msgid "No forum subscriptions"
msgstr ""
#: ../../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 ""
#: ../../addon.old/forumlist/forumlist.php:131
#: ../../addon/forumlist/forumlist.php:134
msgid "Forumlist settings updated."
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:159
#: ../../addon/forumlist/forumlist.php:162
msgid "Forumlist Settings"
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:161
#: ../../addon/forumlist/forumlist.php:164
msgid "Randomise forum list"
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:164
#: ../../addon/forumlist/forumlist.php:167
msgid "Show forums on profile page"
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:167
#: ../../addon/forumlist/forumlist.php:170
msgid "Show forums on network page"
msgstr ""
#: ../../addon.old/fromapp/fromapp.php:38 ../../addon/fromapp/fromapp.php:38
msgid "Fromapp settings updated."
msgstr ""
#: ../../addon.old/fromapp/fromapp.php:64 ../../addon/fromapp/fromapp.php:64
msgid "FromApp Settings"
msgstr ""
#: ../../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 ""
#: ../../addon.old/fromapp/fromapp.php:70 ../../addon/fromapp/fromapp.php:70
msgid "Use this application name even if another application was used."
msgstr ""
#: ../../addon.old/fromgplus/fromgplus.php:29
#: ../../addon/fromgplus/fromgplus.php:33
msgid "Google+ Import Settings"
msgstr ""
#: ../../addon.old/fromgplus/fromgplus.php:32
#: ../../addon/fromgplus/fromgplus.php:36
msgid "Enable Google+ Import"
msgstr ""
#: ../../addon.old/fromgplus/fromgplus.php:35
#: ../../addon/fromgplus/fromgplus.php:39
msgid "Google Account ID"
msgstr ""
#: ../../addon.old/fromgplus/fromgplus.php:55
#: ../../addon/fromgplus/fromgplus.php:59
msgid "Google+ Import Settings saved."
msgstr ""
#: ../../addon.old/geonames/geonames.php:143
#: ../../addon/geonames/geonames.php:143
msgid "Geonames settings updated."
msgstr ""
#: ../../addon.old/geonames/geonames.php:179
#: ../../addon/geonames/geonames.php:179
msgid "Geonames Settings"
msgstr ""
#: ../../addon.old/geonames/geonames.php:181
#: ../../addon/geonames/geonames.php:181
msgid "Enable Geonames Plugin"
msgstr ""
#: ../../addon.old/gnot/gnot.php:48 ../../addon/gnot/gnot.php:48
msgid "Gnot settings updated."
msgstr ""
#: ../../addon.old/gnot/gnot.php:79 ../../addon/gnot/gnot.php:79
msgid "Gnot Settings"
msgstr ""
#: ../../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 ""
#: ../../addon.old/gnot/gnot.php:82 ../../addon/gnot/gnot.php:82
msgid "Enable this plugin/addon?"
msgstr ""
#: ../../addon.old/gnot/gnot.php:97 ../../addon/gnot/gnot.php:97
#, php-format
msgid "Converted localtime: %s"
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr ""
#: ../../mod/localtime.php:41
msgid "Please select your timezone:"
#: ../../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 ""
#: ../../mod/poke.php:192
msgid "Poke/Prod"
#: ../../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 ""
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
#: ../../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 ""
#: ../../mod/poke.php:194
msgid "Recipient"
#: ../../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 ""
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
#: ../../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 ""
#: ../../mod/poke.php:198
msgid "Make this post private"
#: ../../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 ""
#: ../../mod/match.php:12
msgid "Profile Match"
#: ../../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 ""
#: ../../mod/match.php:20
msgid "No keywords to match. Please add keywords to your default profile."
#: ../../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 ""
#: ../../mod/match.php:57
msgid "is interested in:"
#: ../../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 ""
#: ../../mod/match.php:58 ../../mod/suggest.php:88
#: ../../include/contact_widgets.php:9 ../../boot.php:1317
msgid "Connect"
#: ../../addon.old/gravatar/gravatar.php:97
#: ../../addon/gravatar/gravatar.php:97
msgid "Rating of images"
msgstr ""
#: ../../mod/match.php:65 ../../mod/dirfind.php:60
msgid "No matches"
#: ../../addon.old/gravatar/gravatar.php:97
#: ../../addon/gravatar/gravatar.php:97
msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
msgid "Remote privacy information not available."
#: ../../addon.old/gravatar/gravatar.php:111
#: ../../addon/gravatar/gravatar.php:111
msgid "Gravatar settings updated."
msgstr ""
#: ../../mod/lockview.php:48
#: ../../addon/remote_permissions/remote_permissions.php:124
msgid "Visible to:"
#: ../../addon.old/group_text/group_text.php:76
#: ../../addon/group_text/group_text.php:76
msgid "Group Text"
msgstr ""
#: ../../mod/content.php:119 ../../mod/network.php:596
msgid "No such group"
#: ../../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 ""
#: ../../mod/content.php:130 ../../mod/network.php:607
msgid "Group is empty"
#: ../../addon.old/ijpost/ijpost.php:39 ../../addon/ijpost/ijpost.php:39
msgid "Post to Insanejournal"
msgstr ""
#: ../../mod/content.php:134 ../../mod/network.php:611
msgid "Group: "
#: ../../addon.old/ijpost/ijpost.php:70 ../../addon/ijpost/ijpost.php:70
msgid "InsaneJournal Post Settings"
msgstr ""
#: ../../mod/content.php:438 ../../mod/content.php:740
#: ../../include/conversation.php:569 ../../object/Item.php:119
msgid "Select"
#: ../../addon.old/ijpost/ijpost.php:72 ../../addon/ijpost/ijpost.php:72
msgid "Enable InsaneJournal Post Plugin"
msgstr ""
#: ../../mod/content.php:472 ../../mod/content.php:852
#: ../../mod/content.php:853 ../../include/conversation.php:609
#: ../../object/Item.php:258 ../../object/Item.php:259
#: ../../addon.old/ijpost/ijpost.php:77 ../../addon/ijpost/ijpost.php:77
msgid "InsaneJournal username"
msgstr ""
#: ../../addon.old/ijpost/ijpost.php:82 ../../addon/ijpost/ijpost.php:82
msgid "InsaneJournal password"
msgstr ""
#: ../../addon.old/ijpost/ijpost.php:87 ../../addon/ijpost/ijpost.php:87
msgid "Post to InsaneJournal by default"
msgstr ""
#: ../../addon.old/impressum/impressum.php:37
#: ../../addon/impressum/impressum.php:37
msgid "Impressum"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon.old/impressum/impressum.php:84
#: ../../addon/impressum/impressum.php:84
msgid "The page operators name."
msgstr ""
#: ../../addon.old/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:85
msgid "Site Owners Profile"
msgstr ""
#: ../../addon.old/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:85
msgid "Profile address of the operator."
msgstr ""
#: ../../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 ""
#: ../../addon.old/impressum/impressum.php:87
#: ../../addon/impressum/impressum.php:87
msgid "Notes"
msgstr ""
#: ../../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 ""
#: ../../addon.old/impressum/impressum.php:88
#: ../../addon/impressum/impressum.php:88
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr ""
#: ../../addon.old/impressum/impressum.php:89
#: ../../addon/impressum/impressum.php:89
msgid "Footer note"
msgstr ""
#: ../../addon.old/impressum/impressum.php:89
#: ../../addon/impressum/impressum.php:89
msgid "Text for the footer. You can use BBCode here."
msgstr ""
#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
msgid "Infinite Improbability Drive"
msgstr ""
#: ../../addon.old/irc/irc.php:44 ../../addon/irc/irc.php:44
msgid "IRC Settings"
msgstr ""
#: ../../addon.old/irc/irc.php:46 ../../addon/irc/irc.php:46
msgid "Channel(s) to auto connect (comma separated)"
msgstr ""
#: ../../addon.old/irc/irc.php:51 ../../addon/irc/irc.php:51
msgid "Popular Channels (comma separated)"
msgstr ""
#: ../../addon.old/irc/irc.php:69 ../../addon/irc/irc.php:69
msgid "IRC settings saved."
msgstr ""
#: ../../addon.old/irc/irc.php:74 ../../addon/irc/irc.php:74
msgid "IRC Chatroom"
msgstr ""
#: ../../addon.old/irc/irc.php:96 ../../addon/irc/irc.php:96
msgid "Popular Channels"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:266
#: ../../addon/jappixmini/jappixmini.php:266
msgid "Jappix Mini addon settings"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:268
#: ../../addon/jappixmini/jappixmini.php:268
msgid "Activate addon"
msgstr ""
#: ../../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 ""
#: ../../addon.old/jappixmini/jappixmini.php:274
#: ../../addon/jappixmini/jappixmini.php:274
msgid "Jabber username"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:277
#: ../../addon/jappixmini/jappixmini.php:277
msgid "Jabber server"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:281
#: ../../addon/jappixmini/jappixmini.php:281
msgid "Jabber BOSH host"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:285
#: ../../addon/jappixmini/jappixmini.php:285
msgid "Jabber password"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:290
#: ../../addon/jappixmini/jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:293
#: ../../addon/jappixmini/jappixmini.php:293
msgid "Friendica password"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:296
#: ../../addon/jappixmini/jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:299
#: ../../addon/jappixmini/jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:302
#: ../../addon/jappixmini/jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:308
#: ../../addon/jappixmini/jappixmini.php:308
msgid "Add contact"
msgstr ""
#: ../../addon.old/js_upload/js_upload.php:43
#: ../../addon/js_upload/js_upload.php:43
msgid "Upload a file"
msgstr ""
#: ../../addon.old/js_upload/js_upload.php:44
#: ../../addon/js_upload/js_upload.php:44
msgid "Drop files here to upload"
msgstr ""
#: ../../addon.old/js_upload/js_upload.php:45
#: ../../addon/js_upload/js_upload.php:45 ../../include/conversation.php:1062
#: ../../include/items.php:3897 ../../mod/photos.php:202
#: ../../mod/photos.php:289 ../../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
msgid "Cancel"
msgstr ""
#: ../../addon.old/js_upload/js_upload.php:46
#: ../../addon/js_upload/js_upload.php:46
msgid "Failed"
msgstr ""
#: ../../addon.old/js_upload/js_upload.php:297
#: ../../addon/js_upload/js_upload.php:303
msgid "No files were uploaded."
msgstr ""
#: ../../addon.old/js_upload/js_upload.php:303
#: ../../addon/js_upload/js_upload.php:309
msgid "Uploaded file is empty"
msgstr ""
#: ../../addon.old/js_upload/js_upload.php:315
#: ../../addon/js_upload/js_upload.php:321 ../../mod/photos.php:758
msgid "Image exceeds size limit of "
msgstr ""
#: ../../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 ""
#: ../../addon.old/js_upload/js_upload.php:337
#: ../../addon/js_upload/js_upload.php:343
msgid "Upload was cancelled, or server error encountered"
msgstr ""
#: ../../addon.old/libertree/libertree.php:36
#: ../../addon/libertree/libertree.php:36
msgid "Post to libertree"
msgstr ""
#: ../../addon.old/libertree/libertree.php:67
#: ../../addon/libertree/libertree.php:67
msgid "libertree Post Settings"
msgstr ""
#: ../../addon.old/libertree/libertree.php:69
#: ../../addon/libertree/libertree.php:69
msgid "Enable Libertree Post Plugin"
msgstr ""
#: ../../addon.old/libertree/libertree.php:74
#: ../../addon/libertree/libertree.php:74
msgid "Libertree API token"
msgstr ""
#: ../../addon.old/libertree/libertree.php:79
#: ../../addon/libertree/libertree.php:79
msgid "Libertree site URL"
msgstr ""
#: ../../addon.old/libertree/libertree.php:84
#: ../../addon/libertree/libertree.php:84
msgid "Post to Libertree by default"
msgstr ""
#: ../../addon.old/libravatar/libravatar.php:14
#: ../../addon/libravatar/libravatar.php:14
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
msgstr ""
#: ../../addon.old/libravatar/libravatar.php:83
#: ../../addon/libravatar/libravatar.php:83
#, php-format
msgid "View %s's profile @ %s"
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
msgstr ""
#: ../../mod/content.php:482 ../../mod/content.php:864
#: ../../include/conversation.php:629 ../../object/Item.php:272
#: ../../addon.old/libravatar/libravatar.php:84
#: ../../addon/libravatar/libravatar.php:84
msgid "This addon is not functional on your server."
msgstr ""
#: ../../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 ""
#: ../../addon.old/libravatar/libravatar.php:100
#: ../../addon/libravatar/libravatar.php:100
msgid "Select default avatar image if none was found. See README"
msgstr ""
#: ../../addon.old/libravatar/libravatar.php:112
#: ../../addon/libravatar/libravatar.php:112
msgid "Libravatar settings updated."
msgstr ""
#: ../../addon.old/ljpost/ljpost.php:39 ../../addon/ljpost/ljpost.php:39
msgid "Post to LiveJournal"
msgstr ""
#: ../../addon.old/ljpost/ljpost.php:70 ../../addon/ljpost/ljpost.php:70
msgid "LiveJournal Post Settings"
msgstr ""
#: ../../addon.old/ljpost/ljpost.php:72 ../../addon/ljpost/ljpost.php:72
msgid "Enable LiveJournal Post Plugin"
msgstr ""
#: ../../addon.old/ljpost/ljpost.php:77 ../../addon/ljpost/ljpost.php:77
msgid "LiveJournal username"
msgstr ""
#: ../../addon.old/ljpost/ljpost.php:82 ../../addon/ljpost/ljpost.php:82
msgid "LiveJournal password"
msgstr ""
#: ../../addon.old/ljpost/ljpost.php:87 ../../addon/ljpost/ljpost.php:87
msgid "Post to LiveJournal by default"
msgstr ""
#: ../../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 ""
#: ../../addon.old/mathjax/mathjax.php:38 ../../addon/mathjax/mathjax.php:38
msgid "Use the MathJax renderer"
msgstr ""
#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
msgid "MathJax Base URL"
msgstr ""
#: ../../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 ""
#: ../../addon.old/membersince/membersince.php:18
#: ../../addon/membersince/membersince.php:18
msgid "Member since:"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:19
#: ../../addon/morepokes/morepokes.php:19
msgid "bitchslap"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:19
#: ../../addon/morepokes/morepokes.php:19
msgid "bitchslapped"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:20
#: ../../addon/morepokes/morepokes.php:20
msgid "shag"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:20
#: ../../addon/morepokes/morepokes.php:20
msgid "shagged"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:21
#: ../../addon/morepokes/morepokes.php:21
msgid "do something obscenely biological to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:21
#: ../../addon/morepokes/morepokes.php:21
msgid "did something obscenely biological to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:22
#: ../../addon/morepokes/morepokes.php:22
msgid "point out the poke feature to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:22
#: ../../addon/morepokes/morepokes.php:22
msgid "pointed out the poke feature to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:23
#: ../../addon/morepokes/morepokes.php:23
msgid "declare undying love for"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:23
#: ../../addon/morepokes/morepokes.php:23
msgid "declared undying love for"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:24
#: ../../addon/morepokes/morepokes.php:24
msgid "patent"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:24
#: ../../addon/morepokes/morepokes.php:24
msgid "patented"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:25
#: ../../addon/morepokes/morepokes.php:25
msgid "stroke beard"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:25
#: ../../addon/morepokes/morepokes.php:25
msgid "stroked their beard at"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:26
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoan the declining standards of modern secondary and tertiary education to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:26
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoans the declining standards of modern secondary and tertiary education to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:27
#: ../../addon/morepokes/morepokes.php:27
msgid "hug"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:27
#: ../../addon/morepokes/morepokes.php:27
msgid "hugged"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:28
#: ../../addon/morepokes/morepokes.php:28
msgid "kiss"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:28
#: ../../addon/morepokes/morepokes.php:28
msgid "kissed"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:29
#: ../../addon/morepokes/morepokes.php:29
msgid "raise eyebrows at"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:29
#: ../../addon/morepokes/morepokes.php:29
msgid "raised their eyebrows at"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:30
#: ../../addon/morepokes/morepokes.php:30
msgid "insult"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:30
#: ../../addon/morepokes/morepokes.php:30
msgid "insulted"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:31
#: ../../addon/morepokes/morepokes.php:31
msgid "praise"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:31
#: ../../addon/morepokes/morepokes.php:31
msgid "praised"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:32
#: ../../addon/morepokes/morepokes.php:32
msgid "be dubious of"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:32
#: ../../addon/morepokes/morepokes.php:32
msgid "was dubious of"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:33
#: ../../addon/morepokes/morepokes.php:33
msgid "eat"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:33
#: ../../addon/morepokes/morepokes.php:33
msgid "ate"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:34
#: ../../addon/morepokes/morepokes.php:34
msgid "giggle and fawn at"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:34
#: ../../addon/morepokes/morepokes.php:34
msgid "giggled and fawned at"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:35
#: ../../addon/morepokes/morepokes.php:35
msgid "doubt"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:35
#: ../../addon/morepokes/morepokes.php:35
msgid "doubted"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:36
#: ../../addon/morepokes/morepokes.php:36
msgid "glare"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:36
#: ../../addon/morepokes/morepokes.php:36
msgid "glared at"
msgstr ""
#: ../../addon.old/notimeline/notimeline.php:32
#: ../../addon/notimeline/notimeline.php:32
msgid "No Timeline settings updated."
msgstr ""
#: ../../addon.old/notimeline/notimeline.php:56
#: ../../addon/notimeline/notimeline.php:56
msgid "No Timeline Settings"
msgstr ""
#: ../../addon.old/notimeline/notimeline.php:58
#: ../../addon/notimeline/notimeline.php:58
msgid "Disable Archive selector on profile wall"
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:78 ../../addon/nsfw/nsfw.php:78
msgid "Not Safe For Work (General Purpose Content Filter) settings"
msgstr ""
#: ../../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 ""
#: ../../addon.old/nsfw/nsfw.php:81 ../../addon/nsfw/nsfw.php:81
msgid "Enable Content filter"
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:84 ../../addon/nsfw/nsfw.php:84
msgid "Comma separated list of keywords to hide"
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:89 ../../addon/nsfw/nsfw.php:89
msgid "Use /expression/ to provide regular expressions"
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:105 ../../addon/nsfw/nsfw.php:105
msgid "NSFW Settings saved."
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:157 ../../addon/nsfw/nsfw.php:157
#, php-format
msgid "%s from %s"
msgid "%s - Click to open/close"
msgstr ""
#: ../../mod/content.php:497 ../../include/conversation.php:644
msgid "View in context"
#: ../../addon.old/numfriends/numfriends.php:46
#: ../../addon/numfriends/numfriends.php:46
msgid "Numfriends settings updated."
msgstr ""
#: ../../mod/content.php:603 ../../object/Item.php:313
#: ../../addon.old/numfriends/numfriends.php:77
#: ../../addon/numfriends/numfriends.php:77
msgid "Numfriends Settings"
msgstr ""
#: ../../addon.old/oembed.old/oembed.php:30
msgid "OEmbed settings updated"
msgstr ""
#: ../../addon.old/oembed.old/oembed.php:43
msgid "Use OEmbed for YouTube videos"
msgstr ""
#: ../../addon.old/oembed.old/oembed.php:71
msgid "URL to embed:"
msgstr ""
#: ../../addon.old/openstreetmap/openstreetmap.php:71
#: ../../addon/openstreetmap/openstreetmap.php:95
msgid "Tile Server URL"
msgstr ""
#: ../../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 ""
#: ../../addon.old/openstreetmap/openstreetmap.php:72
#: ../../addon/openstreetmap/openstreetmap.php:96
msgid "Default zoom"
msgstr ""
#: ../../addon.old/openstreetmap/openstreetmap.php:72
#: ../../addon/openstreetmap/openstreetmap.php:96
msgid "The default zoom level. (1:world, 18:highest)"
msgstr ""
#: ../../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:606
#: ../../object/Item.php:316 ../../boot.php:642
msgid "show more"
msgstr ""
#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166
msgid "Page settings updated."
msgstr ""
#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195
msgid "Page Settings"
msgstr ""
#: ../../addon.old/page/page.php:197 ../../addon/page/page.php:197
msgid "How many forums to display on sidebar without paging"
msgstr ""
#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200
msgid "Randomise Page/Forum list"
msgstr ""
#: ../../addon.old/page/page.php:203 ../../addon/page/page.php:203
msgid "Show pages/forums on profile page"
msgstr ""
#: ../../addon.old/pageheader/pageheader.php:50
#: ../../addon/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings"
msgstr ""
#: ../../addon.old/pageheader/pageheader.php:68
#: ../../addon/pageheader/pageheader.php:68
msgid "pageheader Settings saved."
msgstr ""
#: ../../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 ""
#: ../../addon.old/piwik/piwik.php:82 ../../addon/piwik/piwik.php:82
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
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 ""
#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
msgid "Piwik Base URL"
msgstr ""
#: ../../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 ""
#: ../../addon.old/piwik/piwik.php:91 ../../addon/piwik/piwik.php:91
msgid "Site ID"
msgstr ""
#: ../../addon.old/piwik/piwik.php:92 ../../addon/piwik/piwik.php:92
msgid "Show opt-out cookie link?"
msgstr ""
#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93
msgid "Asynchronous tracking"
msgstr ""
#: ../../addon.old/planets/planets.php:150 ../../addon/planets/planets.php:150
msgid "Planets Settings"
msgstr ""
#: ../../addon.old/planets/planets.php:152 ../../addon/planets/planets.php:152
msgid "Enable Planets Plugin"
msgstr ""
#: ../../addon.old/posterous/posterous.php:37
#: ../../addon/posterous/posterous.php:37
msgid "Post to Posterous"
msgstr ""
#: ../../addon.old/posterous/posterous.php:70
#: ../../addon/posterous/posterous.php:70
msgid "Posterous Post Settings"
msgstr ""
#: ../../addon.old/posterous/posterous.php:72
#: ../../addon/posterous/posterous.php:72
msgid "Enable Posterous Post Plugin"
msgstr ""
#: ../../addon.old/posterous/posterous.php:77
#: ../../addon/posterous/posterous.php:77
msgid "Posterous login"
msgstr ""
#: ../../addon.old/posterous/posterous.php:82
#: ../../addon/posterous/posterous.php:82
msgid "Posterous password"
msgstr ""
#: ../../addon.old/posterous/posterous.php:87
#: ../../addon/posterous/posterous.php:87
msgid "Posterous site ID"
msgstr ""
#: ../../addon.old/posterous/posterous.php:92
#: ../../addon/posterous/posterous.php:92
msgid "Posterous API token"
msgstr ""
#: ../../addon.old/posterous/posterous.php:97
#: ../../addon/posterous/posterous.php:97
msgid "Post to Posterous by default"
msgstr ""
#: ../../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 ""
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
msgid "Cache Statistics"
msgstr ""
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
msgid "Number of items"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon.old/public_server/public_server.php:127
#: ../../addon/public_server/public_server.php:127
msgid "Your Friendica account is about to expire."
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon.old/qcomment/qcomment.php:54
#: ../../addon/qcomment/qcomment.php:54
msgid "Quick Comment Settings"
msgstr ""
#: ../../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 ""
#: ../../addon.old/qcomment/qcomment.php:57
#: ../../addon/qcomment/qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr ""
#: ../../addon.old/qcomment/qcomment.php:75
#: ../../addon/qcomment/qcomment.php:75
msgid "Quick Comment settings saved."
msgstr ""
#: ../../addon.old/randplace/randplace.php:169
#: ../../addon/randplace/randplace.php:169
msgid "Randplace Settings"
msgstr ""
#: ../../addon.old/randplace/randplace.php:171
#: ../../addon/randplace/randplace.php:171
msgid "Enable Randplace Plugin"
msgstr ""
#: ../../addon.old/showmore/showmore.php:38
#: ../../addon/showmore/showmore.php:38
msgid "\"Show more\" Settings"
msgstr ""
#: ../../addon.old/showmore/showmore.php:41
#: ../../addon/showmore/showmore.php:41
msgid "Enable Show More"
msgstr ""
#: ../../addon.old/showmore/showmore.php:44
#: ../../addon/showmore/showmore.php:44
msgid "Cutting posts after how much characters"
msgstr ""
#: ../../addon.old/showmore/showmore.php:65
#: ../../addon/showmore/showmore.php:65
msgid "Show More Settings saved."
msgstr ""
#: ../../addon.old/snautofollow/snautofollow.php:32
#: ../../addon/snautofollow/snautofollow.php:32
msgid "StatusNet AutoFollow settings updated."
msgstr ""
#: ../../addon.old/snautofollow/snautofollow.php:56
#: ../../addon/snautofollow/snautofollow.php:56
msgid "StatusNet AutoFollow Settings"
msgstr ""
#: ../../addon.old/snautofollow/snautofollow.php:58
#: ../../addon/snautofollow/snautofollow.php:58
msgid "Automatically follow any StatusNet followers/mentioners"
msgstr ""
#: ../../addon.old/startpage/startpage.php:83
#: ../../addon/startpage/startpage.php:83
msgid "Startpage Settings"
msgstr ""
#: ../../addon.old/startpage/startpage.php:85
#: ../../addon/startpage/startpage.php:85
msgid "Home page to load after login - leave blank for profile wall"
msgstr ""
#: ../../addon.old/startpage/startpage.php:88
#: ../../addon/startpage/startpage.php:88
msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:134
#: ../../addon/statusnet/statusnet.php:138
msgid "Post to StatusNet"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon.old/statusnet/statusnet.php:232
#: ../../addon/statusnet/statusnet.php:238
msgid "StatusNet settings updated."
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:257
#: ../../addon/statusnet/statusnet.php:269
msgid "StatusNet Posting Settings"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:271
#: ../../addon/statusnet/statusnet.php:283
msgid "Globally Available StatusNet OAuthKeys"
msgstr ""
#: ../../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 ""
#: ../../addon.old/statusnet/statusnet.php:280
#: ../../addon/statusnet/statusnet.php:292
msgid "Provide your own OAuth Credentials"
msgstr ""
#: ../../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 ""
#: ../../addon.old/statusnet/statusnet.php:283
#: ../../addon/statusnet/statusnet.php:295
msgid "OAuth Consumer Key"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:286
#: ../../addon/statusnet/statusnet.php:298
msgid "OAuth Consumer Secret"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:289
#: ../../addon/statusnet/statusnet.php:301
msgid "Base API Path (remember the trailing /)"
msgstr ""
#: ../../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 ""
#: ../../addon.old/statusnet/statusnet.php:311
#: ../../addon/statusnet/statusnet.php:323
msgid "Log in with StatusNet"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:313
#: ../../addon/statusnet/statusnet.php:325
msgid "Copy the security code from StatusNet here"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:319
#: ../../addon/statusnet/statusnet.php:331
msgid "Cancel Connection Process"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:321
#: ../../addon/statusnet/statusnet.php:333
msgid "Current StatusNet API is"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:322
#: ../../addon/statusnet/statusnet.php:334
msgid "Cancel StatusNet Connection"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon.old/statusnet/statusnet.php:339
#: ../../addon/statusnet/statusnet.php:351
msgid "Allow posting to StatusNet"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:342
#: ../../addon/statusnet/statusnet.php:354
msgid "Send public postings to StatusNet by default"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:345
#: ../../addon/statusnet/statusnet.php:366
msgid "Send linked #-tags and @-names to StatusNet"
msgstr ""
#: ../../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 ""
#: ../../addon.old/statusnet/statusnet.php:567
#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:470
msgid "Site name"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:568
#: ../../addon/statusnet/statusnet.php:745
msgid "API URL"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:569
#: ../../addon/statusnet/statusnet.php:746 ../../mod/settings.php:564
#: ../../mod/settings.php:590
msgid "Consumer Secret"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:570
#: ../../addon/statusnet/statusnet.php:747 ../../mod/settings.php:563
#: ../../mod/settings.php:589
msgid "Consumer Key"
msgstr ""
#: ../../addon.old/testdrive/testdrive.php:95
#: ../../addon/testdrive/testdrive.php:95
msgid "Your Friendica test account is about to expire."
msgstr ""
#: ../../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 ""
#: ../../addon.old/tictac/tictac.php:20 ../../addon/tictac/tictac.php:20
msgid "Three Dimensional Tic-Tac-Toe"
msgstr ""
#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53
msgid "3D Tic-Tac-Toe"
msgstr ""
#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58
msgid "New game"
msgstr ""
#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59
msgid "New game with handicap"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon.old/tictac/tictac.php:182 ../../addon/tictac/tictac.php:182
msgid "You go first..."
msgstr ""
#: ../../addon.old/tictac/tictac.php:187 ../../addon/tictac/tictac.php:187
msgid "I'm going first this time..."
msgstr ""
#: ../../addon.old/tictac/tictac.php:193 ../../addon/tictac/tictac.php:193
msgid "You won!"
msgstr ""
#: ../../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 ""
#: ../../addon.old/tictac/tictac.php:222 ../../addon/tictac/tictac.php:222
msgid "I won!"
msgstr ""
#: ../../addon.old/tumblr/tumblr.php:36 ../../addon/tumblr/tumblr.php:158
msgid "Post to Tumblr"
msgstr ""
#: ../../addon.old/tumblr/tumblr.php:67 ../../addon/tumblr/tumblr.php:185
msgid "Tumblr Post Settings"
msgstr ""
#: ../../addon.old/tumblr/tumblr.php:69 ../../addon/tumblr/tumblr.php:192
msgid "Enable Tumblr Post Plugin"
msgstr ""
#: ../../addon.old/tumblr/tumblr.php:74
msgid "Tumblr login"
msgstr ""
#: ../../addon.old/tumblr/tumblr.php:79
msgid "Tumblr password"
msgstr ""
#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197
msgid "Post to Tumblr by default"
msgstr ""
#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77
msgid "Post to Twitter"
msgstr ""
#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129
msgid "Twitter settings updated."
msgstr ""
#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157
msgid "Twitter Posting Settings"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon.old/twitter/twitter.php:173 ../../addon/twitter/twitter.php:184
msgid "Log in with Twitter"
msgstr ""
#: ../../addon.old/twitter/twitter.php:175 ../../addon/twitter/twitter.php:186
msgid "Copy the PIN from Twitter here"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon.old/twitter/twitter.php:195 ../../addon/twitter/twitter.php:206
msgid "Allow posting to Twitter"
msgstr ""
#: ../../addon.old/twitter/twitter.php:198 ../../addon/twitter/twitter.php:209
msgid "Send public postings to Twitter by default"
msgstr ""
#: ../../addon.old/twitter/twitter.php:201 ../../addon/twitter/twitter.php:221
msgid "Send linked #-tags and @-names to Twitter"
msgstr ""
#: ../../addon.old/twitter/twitter.php:396 ../../addon/twitter/twitter.php:558
msgid "Consumer key"
msgstr ""
#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559
msgid "Consumer secret"
msgstr ""
#: ../../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 ""
#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
#: ../../addon/uhremotestorage/uhremotestorage.php:85
msgid "Template URL (with {category})"
msgstr ""
#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
#: ../../addon/uhremotestorage/uhremotestorage.php:86
msgid "OAuth end-point"
msgstr ""
#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
#: ../../addon/uhremotestorage/uhremotestorage.php:87
msgid "Api"
msgstr ""
#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39
msgid "View Source"
msgstr ""
#: ../../addon.old/widgets/widget_friendheader.php:40
#: ../../addon/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr ""
#: ../../addon.old/widgets/widget_friends.php:40
#: ../../addon/widgets/widget_friends.php:40
msgid "Connect on Friendica!"
msgstr ""
#: ../../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] ""
msgstr[1] ""
#: ../../mod/content.php:605 ../../include/text.php:1514
#: ../../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] ""
msgstr[1] ""
#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57
msgid "Generate new key"
msgstr ""
#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60
msgid "Widgets key"
msgstr ""
#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62
msgid "Widgets available"
msgstr ""
#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124
#: ../../mod/settings.php:646
msgid "Plugin Settings"
msgstr ""
#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42
msgid "Post to Wordpress"
msgstr ""
#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76
msgid "WordPress Post Settings"
msgstr ""
#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78
msgid "Enable WordPress Post Plugin"
msgstr ""
#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83
msgid "WordPress username"
msgstr ""
#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88
msgid "WordPress password"
msgstr ""
#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93
msgid "WordPress API URL"
msgstr ""
#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98
msgid "Post to WordPress by default"
msgstr ""
#: ../../addon.old/wppost/wppost.php:103 ../../addon/wppost/wppost.php:103
msgid "Provide a backlink to the Friendica post"
msgstr ""
#: ../../addon.old/wppost/wppost.php:207 ../../addon/wppost/wppost.php:207
msgid "Read the original post and comment stream on Friendica"
msgstr ""
#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55
msgid "YourLS Settings"
msgstr ""
#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57
msgid "URL: http://"
msgstr ""
#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62
msgid "Username:"
msgstr ""
#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67
msgid "Password:"
msgstr ""
#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72
msgid "Use SSL "
msgstr ""
#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92
msgid "yourls Settings saved."
msgstr ""
#: ../../addon/altpager/altpager.php:99
#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "Global"
msgstr ""
#: ../../addon/altpager/altpager.php:99
msgid "Force global use of the alternate pager"
msgstr ""
#: ../../addon/altpager/altpager.php:100
#: ../../addon/remote_permissions/remote_permissions.php:198
msgid "Individual"
msgstr ""
#: ../../addon/altpager/altpager.php:100
msgid "Each user chooses whether to use the alternate pager"
msgstr ""
#: ../../addon/fbpost/fbpost.php:239
msgid "Suppress \"View on friendica\""
msgstr ""
#: ../../addon/fbpost/fbpost.php:243
msgid "Mirror wall posts from facebook to friendica."
msgstr ""
#: ../../addon/fbpost/fbpost.php:253
msgid "Post to page/group:"
msgstr ""
#: ../../addon/fbpost/fbpost.php:375
#, php-format
msgid "%s:"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:22
msgid "Forum Directory"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:53 ../../mod/photos.php:911
#: ../../mod/search.php:89 ../../mod/community.php:18
#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
#: ../../mod/display.php:19 ../../mod/viewcontacts.php:17
msgid "Public access denied."
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49
#: ../../view/theme/diabook/theme.php:518
msgid "Global Directory"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57
msgid "Find on this site"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612
#: ../../mod/directory.php:59
msgid "Finding: "
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60
msgid "Site Directory"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:83
#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
#: ../../mod/directory.php:61
msgid "Find"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:133
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
msgid "Age: "
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:136
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:156
#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1385
msgid "Location:"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:158
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
#: ../../boot.php:1387
msgid "Gender:"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:160
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
#: ../../boot.php:1390
msgid "Status:"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:162
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
#: ../../boot.php:1392
msgid "Homepage:"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:164
#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
msgid "About:"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:201
#: ../../mod/directory.php:187
msgid "No entries (some entries may be hidden)."
msgstr ""
#: ../../addon/group_text/group_text.php:46
msgid "Group Text settings updated."
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:45
msgid "Remote Permissions Settings"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:46
msgid ""
"Allow recipients of your private posts to see the other recipients of the "
"posts"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:58
msgid "Remote Permissions settings updated."
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:124
#: ../../mod/lockview.php:48
msgid "Visible to:"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "Visible to"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "may only be a partial list"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "The posts of every user on this server show the post recipients"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:198
msgid "Each user chooses whether his/her posts show the post recipients"
msgstr ""
#: ../../addon/statusnet/statusnet.php:358
msgid ""
"Mirror all posts from statusnet that are no replies or repeated messages"
msgstr ""
#: ../../addon/statusnet/statusnet.php:362
msgid "Shortening method that optimizes the post"
msgstr ""
#: ../../addon/tumblr/tumblr.php:144
msgid "You are now authenticated to tumblr."
msgstr ""
#: ../../addon/tumblr/tumblr.php:145
msgid "return to the connector page"
msgstr ""
#: ../../addon/tumblr/tumblr.php:188
msgid "(Re-)Authenticate your tumblr page"
msgstr ""
#: ../../addon/tumblr/tumblr.php:217
msgid "Post to page:"
msgstr ""
#: ../../addon/tumblr/tumblr.php:228
msgid "You are not authenticated to tumblr"
msgstr ""
#: ../../addon/twitter/twitter.php:213
msgid "Mirror all posts from twitter that are no replies or retweets"
msgstr ""
#: ../../addon/twitter/twitter.php:217
msgid "Shortening method that optimizes the tweet"
msgstr ""
#: ../../addon/twitter/twitter.php:560
msgid "Name of the Twitter Application"
msgstr ""
#: ../../addon/twitter/twitter.php:560
msgid "set this to avoid mirroring postings from ~friendica back to ~friendica"
msgstr ""
#: ../../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:1847
msgid "Profile"
msgstr ""
#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050
msgid "Full Name:"
msgstr ""
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr ""
#: ../../include/profile_advanced.php:23
msgid "j F"
msgstr ""
#: ../../include/profile_advanced.php:30
msgid "Birthday:"
msgstr ""
#: ../../include/profile_advanced.php:34
msgid "Age:"
msgstr ""
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646
msgid "Sexual Preference:"
msgstr ""
#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648
msgid "Hometown:"
msgstr ""
#: ../../include/profile_advanced.php:52
msgid "Tags:"
msgstr ""
#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649
msgid "Political Views:"
msgstr ""
#: ../../include/profile_advanced.php:56
msgid "Religion:"
msgstr ""
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr ""
#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653
msgid "Likes:"
msgstr ""
#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654
msgid "Dislikes:"
msgstr ""
#: ../../include/profile_advanced.php:67
msgid "Contact information and Social Networks:"
msgstr ""
#: ../../include/profile_advanced.php:69
msgid "Musical interests:"
msgstr ""
#: ../../include/profile_advanced.php:71
msgid "Books, literature:"
msgstr ""
#: ../../include/profile_advanced.php:73
msgid "Television:"
msgstr ""
#: ../../include/profile_advanced.php:75
msgid "Film/dance/culture/entertainment:"
msgstr ""
#: ../../include/profile_advanced.php:77
msgid "Love/Romance:"
msgstr ""
#: ../../include/profile_advanced.php:79
msgid "Work/employment:"
msgstr ""
#: ../../include/profile_advanced.php:81
msgid "School/education:"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Male"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Female"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Currently Male"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Currently Female"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Mostly Male"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Mostly Female"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Transgender"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Intersex"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Transsexual"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Hermaphrodite"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Neuter"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Non-specific"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Other"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Undecided"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Males"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Females"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Gay"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Lesbian"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "No Preference"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Bisexual"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Autosexual"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Abstinent"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Virgin"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Deviant"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Fetish"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Oodles"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Nonsexual"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Single"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Lonely"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Available"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Unavailable"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Has crush"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Infatuated"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Dating"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Unfaithful"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Sex Addict"
msgstr ""
#: ../../include/profile_selectors.php:42 ../../include/user.php:279
#: ../../include/user.php:283
msgid "Friends"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Casual"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Engaged"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Married"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Partners"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Cohabiting"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Common law"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Happy"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Not looking"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Swinger"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Betrayed"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Separated"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Unstable"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Divorced"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Widowed"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Uncertain"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "It's complicated"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Don't care"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Ask me"
msgstr ""
#: ../../include/Contact.php:115
msgid "stopped following"
msgstr ""
#: ../../include/Contact.php:225 ../../include/conversation.php:820
msgid "Poke"
msgstr ""
#: ../../include/Contact.php:226 ../../include/conversation.php:814
msgid "View Status"
msgstr ""
#: ../../include/Contact.php:227 ../../include/conversation.php:815
msgid "View Profile"
msgstr ""
#: ../../include/Contact.php:228 ../../include/conversation.php:816
msgid "View Photos"
msgstr ""
#: ../../include/Contact.php:229 ../../include/Contact.php:251
#: ../../include/conversation.php:817
msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:230 ../../include/Contact.php:251
#: ../../include/conversation.php:818
msgid "Edit Contact"
msgstr ""
#: ../../include/Contact.php:231 ../../include/Contact.php:251
#: ../../include/conversation.php:819
msgid "Send PM"
msgstr ""
#: ../../include/Scrape.php:583
msgid " on Last.fm"
msgstr ""
#: ../../include/text.php:275
msgid "prev"
msgstr ""
#: ../../include/text.php:277
msgid "first"
msgstr ""
#: ../../include/text.php:306
msgid "last"
msgstr ""
#: ../../include/text.php:309
msgid "next"
msgstr ""
#: ../../include/text.php:327
msgid "newer"
msgstr ""
#: ../../include/text.php:331
msgid "older"
msgstr ""
#: ../../include/text.php:670
msgid "No contacts"
msgstr ""
#: ../../include/text.php:679
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] ""
msgstr[1] ""
#: ../../include/text.php:691 ../../mod/viewcontacts.php:76
msgid "View Contacts"
msgstr ""
#: ../../include/text.php:751 ../../include/text.php:752
#: ../../include/nav.php:118 ../../mod/search.php:99
msgid "Search"
msgstr ""
#: ../../include/text.php:792
msgid "poke"
msgstr ""
#: ../../include/text.php:792 ../../include/conversation.php:211
msgid "poked"
msgstr ""
#: ../../include/text.php:793
msgid "ping"
msgstr ""
#: ../../include/text.php:793
msgid "pinged"
msgstr ""
#: ../../include/text.php:794
msgid "prod"
msgstr ""
#: ../../include/text.php:794
msgid "prodded"
msgstr ""
#: ../../include/text.php:795
msgid "slap"
msgstr ""
#: ../../include/text.php:795
msgid "slapped"
msgstr ""
#: ../../include/text.php:796
msgid "finger"
msgstr ""
#: ../../include/text.php:796
msgid "fingered"
msgstr ""
#: ../../include/text.php:797
msgid "rebuff"
msgstr ""
#: ../../include/text.php:797
msgid "rebuffed"
msgstr ""
#: ../../include/text.php:809
msgid "happy"
msgstr ""
#: ../../include/text.php:810
msgid "sad"
msgstr ""
#: ../../include/text.php:811
msgid "mellow"
msgstr ""
#: ../../include/text.php:812
msgid "tired"
msgstr ""
#: ../../include/text.php:813
msgid "perky"
msgstr ""
#: ../../include/text.php:814
msgid "angry"
msgstr ""
#: ../../include/text.php:815
msgid "stupified"
msgstr ""
#: ../../include/text.php:816
msgid "puzzled"
msgstr ""
#: ../../include/text.php:817
msgid "interested"
msgstr ""
#: ../../include/text.php:818
msgid "bitter"
msgstr ""
#: ../../include/text.php:819
msgid "cheerful"
msgstr ""
#: ../../include/text.php:820
msgid "alive"
msgstr ""
#: ../../include/text.php:821
msgid "annoyed"
msgstr ""
#: ../../include/text.php:822
msgid "anxious"
msgstr ""
#: ../../include/text.php:823
msgid "cranky"
msgstr ""
#: ../../include/text.php:824
msgid "disturbed"
msgstr ""
#: ../../include/text.php:825
msgid "frustrated"
msgstr ""
#: ../../include/text.php:826
msgid "motivated"
msgstr ""
#: ../../include/text.php:827
msgid "relaxed"
msgstr ""
#: ../../include/text.php:828
msgid "surprised"
msgstr ""
#: ../../include/text.php:992
msgid "January"
msgstr ""
#: ../../include/text.php:992
msgid "February"
msgstr ""
#: ../../include/text.php:992
msgid "March"
msgstr ""
#: ../../include/text.php:992
msgid "April"
msgstr ""
#: ../../include/text.php:992
msgid "May"
msgstr ""
#: ../../include/text.php:992
msgid "June"
msgstr ""
#: ../../include/text.php:992
msgid "July"
msgstr ""
#: ../../include/text.php:992
msgid "August"
msgstr ""
#: ../../include/text.php:992
msgid "September"
msgstr ""
#: ../../include/text.php:992
msgid "October"
msgstr ""
#: ../../include/text.php:992
msgid "November"
msgstr ""
#: ../../include/text.php:992
msgid "December"
msgstr ""
#: ../../include/text.php:1091
msgid "bytes"
msgstr ""
#: ../../include/text.php:1118 ../../include/text.php:1130
msgid "Click to open/close"
msgstr ""
#: ../../include/text.php:1271 ../../mod/events.php:335
msgid "link to source"
msgstr ""
#: ../../include/text.php:1303 ../../include/user.php:237
msgid "default"
msgstr ""
#: ../../include/text.php:1315
msgid "Select an alternate language"
msgstr ""
#: ../../include/text.php:1525
msgid "activity"
msgstr ""
#: ../../include/text.php:1527 ../../mod/content.php:605
#: ../../object/Item.php:315 ../../object/Item.php:328
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] ""
#: ../../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"
#: ../../include/text.php:1528
msgid "post"
msgstr ""
#: ../../mod/content.php:684 ../../object/Item.php:204
msgid "like"
#: ../../include/text.php:1683
msgid "Item filed"
msgstr ""
#: ../../mod/content.php:685 ../../object/Item.php:205
msgid "dislike"
#: ../../include/acl_selectors.php:325
msgid "Visible to everybody"
msgstr ""
#: ../../mod/content.php:687 ../../object/Item.php:207
msgid "Share this"
#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
#: ../../view/theme/diabook/theme.php:629
msgid "show"
msgstr ""
#: ../../mod/content.php:687 ../../object/Item.php:207
msgid "share"
#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
#: ../../view/theme/diabook/theme.php:629
msgid "don't show"
msgstr ""
#: ../../mod/content.php:711 ../../object/Item.php:605
msgid "Bold"
#: ../../include/auth.php:38
msgid "Logged out."
msgstr ""
#: ../../mod/content.php:712 ../../object/Item.php:606
msgid "Italic"
#: ../../include/auth.php:112 ../../include/auth.php:175
#: ../../mod/openid.php:93
msgid "Login failed."
msgstr ""
#: ../../mod/content.php:713 ../../object/Item.php:607
msgid "Underline"
#: ../../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 ""
#: ../../mod/content.php:714 ../../object/Item.php:608
msgid "Quote"
#: ../../include/auth.php:128
msgid "The error message was:"
msgstr ""
#: ../../mod/content.php:715 ../../object/Item.php:609
msgid "Code"
#: ../../include/uimport.php:61
msgid "Error decoding account file"
msgstr ""
#: ../../mod/content.php:716 ../../object/Item.php:610
msgid "Image"
#: ../../include/uimport.php:67
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr ""
#: ../../mod/content.php:717 ../../object/Item.php:611
msgid "Link"
#: ../../include/uimport.php:72
msgid "Error! I can't import this file: DB schema version is not compatible."
msgstr ""
#: ../../mod/content.php:718 ../../object/Item.php:612
msgid "Video"
#: ../../include/uimport.php:81
msgid "Error! Cannot check nickname"
msgstr ""
#: ../../mod/content.php:753 ../../object/Item.php:183
msgid "add star"
msgstr ""
#: ../../mod/content.php:754 ../../object/Item.php:184
msgid "remove star"
msgstr ""
#: ../../mod/content.php:755 ../../object/Item.php:185
msgid "toggle star status"
msgstr ""
#: ../../mod/content.php:758 ../../object/Item.php:188
msgid "starred"
msgstr ""
#: ../../mod/content.php:759 ../../object/Item.php:193
msgid "add tag"
msgstr ""
#: ../../mod/content.php:763 ../../object/Item.php:123
msgid "save to folder"
msgstr ""
#: ../../mod/content.php:854 ../../object/Item.php:260
msgid "to"
msgstr ""
#: ../../mod/content.php:855 ../../object/Item.php:262
msgid "Wall-to-Wall"
msgstr ""
#: ../../mod/content.php:856 ../../object/Item.php:263
msgid "via Wall-To-Wall:"
msgstr ""
#: ../../mod/home.php:34 ../../addon/communityhome/communityhome.php:189
#: ../../addon.old/communityhome/communityhome.php:179
#: ../../include/uimport.php:85
#, php-format
msgid "Welcome to %s"
msgid "User '%s' already exists on this server!"
msgstr ""
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
#: ../../include/uimport.php:104
msgid "User creation error"
msgstr ""
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
#: ../../mod/notifications.php:211
msgid "Discard"
#: ../../include/uimport.php:122
msgid "User profile creation error"
msgstr ""
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
#: ../../mod/contacts.php:413
msgid "Ignore"
msgstr ""
#: ../../mod/notifications.php:78
msgid "System"
msgstr ""
#: ../../mod/notifications.php:83 ../../include/nav.php:140
msgid "Network"
msgstr ""
#: ../../mod/notifications.php:88 ../../mod/network.php:444
msgid "Personal"
msgstr ""
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
#: ../../include/nav.php:104 ../../include/nav.php:143
msgid "Home"
msgstr ""
#: ../../mod/notifications.php:98 ../../include/nav.php:149
msgid "Introductions"
msgstr ""
#: ../../mod/notifications.php:103 ../../mod/message.php:182
#: ../../include/nav.php:156
msgid "Messages"
msgstr ""
#: ../../mod/notifications.php:122
msgid "Show Ignored Requests"
msgstr ""
#: ../../mod/notifications.php:122
msgid "Hide Ignored Requests"
msgstr ""
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
msgid "Notification type: "
msgstr ""
#: ../../mod/notifications.php:150
msgid "Friend Suggestion"
msgstr ""
#: ../../mod/notifications.php:152
#: ../../include/uimport.php:167
#, php-format
msgid "suggested by %s"
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] ""
msgstr[1] ""
#: ../../include/uimport.php:245
msgid "Done. You can now login with your username and password"
msgstr ""
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/contacts.php:419
msgid "Hide this contact from others"
#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
#: ../../mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr ""
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "Post a new friend activity"
#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
msgid "Starts:"
msgstr ""
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "if applicable"
#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
msgid "Finishes:"
msgstr ""
#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
#: ../../mod/admin.php:733
msgid "Approve"
#: ../../include/bbcode.php:210 ../../include/bbcode.php:515
msgid "Image/photo"
msgstr ""
#: ../../mod/notifications.php:181
msgid "Claims to be known to you: "
msgstr ""
#: ../../mod/notifications.php:181
msgid "yes"
msgstr ""
#: ../../mod/notifications.php:181
msgid "no"
msgstr ""
#: ../../mod/notifications.php:188
msgid "Approve as: "
msgstr ""
#: ../../mod/notifications.php:189
msgid "Friend"
msgstr ""
#: ../../mod/notifications.php:190
msgid "Sharer"
msgstr ""
#: ../../mod/notifications.php:190
msgid "Fan/Admirer"
msgstr ""
#: ../../mod/notifications.php:196
msgid "Friend/Connect Request"
msgstr ""
#: ../../mod/notifications.php:196
msgid "New Follower"
msgstr ""
#: ../../mod/notifications.php:217
msgid "No introductions."
msgstr ""
#: ../../mod/notifications.php:220 ../../include/nav.php:150
msgid "Notifications"
msgstr ""
#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
#: ../../mod/notifications.php:469
#: ../../include/bbcode.php:272
#, php-format
msgid "%s liked %s's post"
msgid ""
"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
"href=\"%s\" target=\"external-link\">post</a>"
msgstr ""
#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
#: ../../mod/notifications.php:478
#: ../../include/bbcode.php:480 ../../include/bbcode.php:500
msgid "$1 wrote:"
msgstr ""
#: ../../include/bbcode.php:520 ../../include/bbcode.php:521
msgid "Encrypted content"
msgstr ""
#: ../../include/user.php:39
msgid "An invitation is required."
msgstr ""
#: ../../include/user.php:44
msgid "Invitation could not be verified."
msgstr ""
#: ../../include/user.php:52
msgid "Invalid OpenID url"
msgstr ""
#: ../../include/user.php:67
msgid "Please enter the required information."
msgstr ""
#: ../../include/user.php:81
msgid "Please use a shorter name."
msgstr ""
#: ../../include/user.php:83
msgid "Name too short."
msgstr ""
#: ../../include/user.php:98
msgid "That doesn't appear to be your full (First Last) name."
msgstr ""
#: ../../include/user.php:103
msgid "Your email domain is not among those allowed on this site."
msgstr ""
#: ../../include/user.php:106
msgid "Not a valid email address."
msgstr ""
#: ../../include/user.php:116
msgid "Cannot use that email."
msgstr ""
#: ../../include/user.php:122
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr ""
#: ../../include/user.php:128 ../../include/user.php:226
msgid "Nickname is already registered. Please choose another."
msgstr ""
#: ../../include/user.php:138
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr ""
#: ../../include/user.php:154
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr ""
#: ../../include/user.php:212
msgid "An error occurred during registration. Please try again."
msgstr ""
#: ../../include/user.php:247
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
#: ../../include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr ""
#: ../../include/contact_selectors.php:33
msgid "Block immediately"
msgstr ""
#: ../../include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr ""
#: ../../include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr ""
#: ../../include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr ""
#: ../../include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr ""
#: ../../include/contact_selectors.php:56
msgid "Frequently"
msgstr ""
#: ../../include/contact_selectors.php:57
msgid "Hourly"
msgstr ""
#: ../../include/contact_selectors.php:58
msgid "Twice daily"
msgstr ""
#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
msgid "Friendica"
msgstr ""
#: ../../include/contact_selectors.php:77
msgid "OStatus"
msgstr ""
#: ../../include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr ""
#: ../../include/contact_selectors.php:79
#: ../../include/contact_selectors.php:86 ../../mod/admin.php:731
#: ../../mod/admin.php:741
msgid "Email"
msgstr ""
#: ../../include/contact_selectors.php:80 ../../mod/settings.php:681
#: ../../mod/dfrn_request.php:842
msgid "Diaspora"
msgstr ""
#: ../../include/contact_selectors.php:82
msgid "Zot!"
msgstr ""
#: ../../include/contact_selectors.php:83
msgid "LinkedIn"
msgstr ""
#: ../../include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr ""
#: ../../include/contact_selectors.php:85
msgid "MySpace"
msgstr ""
#: ../../include/contact_selectors.php:87
msgid "Google+"
msgstr ""
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
msgstr ""
#: ../../include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr ""
#: ../../include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr ""
#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
#: ../../mod/match.php:58 ../../boot.php:1317
msgid "Connect"
msgstr ""
#: ../../include/contact_widgets.php:23
#, php-format
msgid "%s disliked %s's post"
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] ""
msgstr[1] ""
#: ../../include/contact_widgets.php:29
msgid "Find People"
msgstr ""
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
#: ../../mod/notifications.php:492
#, php-format
msgid "%s is now friends with %s"
#: ../../include/contact_widgets.php:30
msgid "Enter name or interest"
msgstr ""
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#, php-format
msgid "%s created a new post"
#: ../../include/contact_widgets.php:31
msgid "Connect/Follow"
msgstr ""
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
#: ../../mod/notifications.php:501
#, php-format
msgid "%s commented on %s's post"
#: ../../include/contact_widgets.php:32
msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
#: ../../mod/notifications.php:302
msgid "No more network notifications."
#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
#: ../../view/theme/diabook/theme.php:520
msgid "Friend Suggestions"
msgstr ""
#: ../../mod/notifications.php:306
msgid "Network Notifications"
#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
msgid "Similar Interests"
msgstr ""
#: ../../mod/notifications.php:332 ../../mod/notify.php:61
msgid "No more system notifications."
#: ../../include/contact_widgets.php:36
msgid "Random Profile"
msgstr ""
#: ../../mod/notifications.php:336 ../../mod/notify.php:65
msgid "System Notifications"
#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
msgid "Invite Friends"
msgstr ""
#: ../../mod/notifications.php:427
msgid "No more personal notifications."
#: ../../include/contact_widgets.php:70
msgid "Networks"
msgstr ""
#: ../../mod/notifications.php:431
msgid "Personal Notifications"
#: ../../include/contact_widgets.php:73
msgid "All Networks"
msgstr ""
#: ../../mod/notifications.php:508
msgid "No more home notifications."
#: ../../include/contact_widgets.php:103 ../../include/features.php:59
msgid "Saved Folders"
msgstr ""
#: ../../mod/notifications.php:512
msgid "Home Notifications"
#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
msgid "Everything"
msgstr ""
#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
msgid "Could not access contact record."
#: ../../include/contact_widgets.php:135
msgid "Categories"
msgstr ""
#: ../../mod/contacts.php:99
msgid "Could not locate selected profile."
msgstr ""
#: ../../mod/contacts.php:122
msgid "Contact updated."
msgstr ""
#: ../../mod/contacts.php:187
msgid "Contact has been blocked"
msgstr ""
#: ../../mod/contacts.php:187
msgid "Contact has been unblocked"
msgstr ""
#: ../../mod/contacts.php:201
msgid "Contact has been ignored"
msgstr ""
#: ../../mod/contacts.php:201
msgid "Contact has been unignored"
msgstr ""
#: ../../mod/contacts.php:220
msgid "Contact has been archived"
msgstr ""
#: ../../mod/contacts.php:220
msgid "Contact has been unarchived"
msgstr ""
#: ../../mod/contacts.php:244
msgid "Do you really want to delete this contact?"
msgstr ""
#: ../../mod/contacts.php:263
msgid "Contact has been removed."
msgstr ""
#: ../../mod/contacts.php:301
#, php-format
msgid "You are mutual friends with %s"
msgstr ""
#: ../../mod/contacts.php:305
#, php-format
msgid "You are sharing with %s"
msgstr ""
#: ../../mod/contacts.php:310
#, php-format
msgid "%s is sharing with you"
msgstr ""
#: ../../mod/contacts.php:327
msgid "Private communications are not available for this contact."
msgstr ""
#: ../../mod/contacts.php:330
msgid "Never"
msgstr ""
#: ../../mod/contacts.php:334
msgid "(Update was successful)"
msgstr ""
#: ../../mod/contacts.php:334
msgid "(Update was not successful)"
msgstr ""
#: ../../mod/contacts.php:336
msgid "Suggest friends"
msgstr ""
#: ../../mod/contacts.php:340
#, php-format
msgid "Network type: %s"
msgstr ""
#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/contacts.php:348
msgid "View all contacts"
msgstr ""
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:737
msgid "Unblock"
msgstr ""
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:736
msgid "Block"
msgstr ""
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr ""
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
msgid "Unignore"
msgstr ""
#: ../../mod/contacts.php:362
msgid "Toggle Ignored status"
msgstr ""
#: ../../mod/contacts.php:366
msgid "Unarchive"
msgstr ""
#: ../../mod/contacts.php:366
msgid "Archive"
msgstr ""
#: ../../mod/contacts.php:369
msgid "Toggle Archive status"
msgstr ""
#: ../../mod/contacts.php:372
msgid "Repair"
msgstr ""
#: ../../mod/contacts.php:375
msgid "Advanced Contact Settings"
msgstr ""
#: ../../mod/contacts.php:381
msgid "Communications lost with this contact!"
msgstr ""
#: ../../mod/contacts.php:384
msgid "Contact Editor"
msgstr ""
#: ../../mod/contacts.php:387
msgid "Profile Visibility"
msgstr ""
#: ../../mod/contacts.php:388
#: ../../include/conversation.php:140 ../../mod/like.php:170
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
#: ../../mod/contacts.php:389
msgid "Contact Information / Notes"
msgstr ""
#: ../../mod/contacts.php:390
msgid "Edit contact notes"
msgstr ""
#: ../../mod/contacts.php:395 ../../mod/contacts.php:585
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#: ../../include/conversation.php:172 ../../include/diaspora.php:621
#: ../../mod/dfrn_confirm.php:477
#, php-format
msgid "Visit %s's profile [%s]"
msgid "%1$s is now friends with %2$s"
msgstr ""
#: ../../mod/contacts.php:396
msgid "Block/Unblock contact"
msgstr ""
#: ../../mod/contacts.php:397
msgid "Ignore contact"
msgstr ""
#: ../../mod/contacts.php:398
msgid "Repair URL settings"
msgstr ""
#: ../../mod/contacts.php:399
msgid "View conversations"
msgstr ""
#: ../../mod/contacts.php:401
msgid "Delete contact"
msgstr ""
#: ../../mod/contacts.php:405
msgid "Last update:"
msgstr ""
#: ../../mod/contacts.php:407
msgid "Update public posts"
msgstr ""
#: ../../mod/contacts.php:409 ../../mod/admin.php:1213
msgid "Update now"
msgstr ""
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr ""
#: ../../mod/contacts.php:417
msgid "Currently ignored"
msgstr ""
#: ../../mod/contacts.php:418
msgid "Currently archived"
msgstr ""
#: ../../mod/contacts.php:419
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: ../../mod/contacts.php:470
msgid "Suggestions"
msgstr ""
#: ../../mod/contacts.php:473
msgid "Suggest potential friends"
msgstr ""
#: ../../mod/contacts.php:476 ../../mod/group.php:194
msgid "All Contacts"
msgstr ""
#: ../../mod/contacts.php:479
msgid "Show all contacts"
msgstr ""
#: ../../mod/contacts.php:482
msgid "Unblocked"
msgstr ""
#: ../../mod/contacts.php:485
msgid "Only show unblocked contacts"
msgstr ""
#: ../../mod/contacts.php:489
msgid "Blocked"
msgstr ""
#: ../../mod/contacts.php:492
msgid "Only show blocked contacts"
msgstr ""
#: ../../mod/contacts.php:496
msgid "Ignored"
msgstr ""
#: ../../mod/contacts.php:499
msgid "Only show ignored contacts"
msgstr ""
#: ../../mod/contacts.php:503
msgid "Archived"
msgstr ""
#: ../../mod/contacts.php:506
msgid "Only show archived contacts"
msgstr ""
#: ../../mod/contacts.php:510
msgid "Hidden"
msgstr ""
#: ../../mod/contacts.php:513
msgid "Only show hidden contacts"
msgstr ""
#: ../../mod/contacts.php:561
msgid "Mutual Friendship"
msgstr ""
#: ../../mod/contacts.php:565
msgid "is a fan of yours"
msgstr ""
#: ../../mod/contacts.php:569
msgid "you are a fan of"
msgstr ""
#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr ""
#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
#: ../../include/nav.php:171
msgid "Contacts"
msgstr ""
#: ../../mod/contacts.php:611
msgid "Search your contacts"
msgstr ""
#: ../../mod/contacts.php:612 ../../mod/directory.php:59
#: ../../addon/forumdirectory/forumdirectory.php:81
msgid "Finding: "
msgstr ""
#: ../../mod/contacts.php:613 ../../mod/directory.php:61
#: ../../addon/forumdirectory/forumdirectory.php:83
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr ""
#: ../../mod/lostpass.php:17
msgid "No valid account found."
msgstr ""
#: ../../mod/lostpass.php:33
msgid "Password reset request issued. Check your email."
msgstr ""
#: ../../mod/lostpass.php:44
#: ../../include/conversation.php:207
#, php-format
msgid "Password reset requested at %s"
msgid "%1$s poked %2$s"
msgstr ""
#: ../../mod/lostpass.php:66
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr ""
#: ../../mod/lostpass.php:84 ../../boot.php:1051
msgid "Password Reset"
msgstr ""
#: ../../mod/lostpass.php:85
msgid "Your password has been reset as requested."
msgstr ""
#: ../../mod/lostpass.php:86
msgid "Your new password is"
msgstr ""
#: ../../mod/lostpass.php:87
msgid "Save or copy your new password - and then"
msgstr ""
#: ../../mod/lostpass.php:88
msgid "click here to login"
msgstr ""
#: ../../mod/lostpass.php:89
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr ""
#: ../../mod/lostpass.php:107
#: ../../include/conversation.php:227 ../../mod/mood.php:62
#, php-format
msgid "Your password has been changed at %s"
msgid "%1$s is currently %2$s"
msgstr ""
#: ../../mod/lostpass.php:122
msgid "Forgot your Password?"
msgstr ""
#: ../../mod/lostpass.php:123
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr ""
#: ../../mod/lostpass.php:124
msgid "Nickname or Email: "
msgstr ""
#: ../../mod/lostpass.php:125
msgid "Reset"
msgstr ""
#: ../../mod/settings.php:35
msgid "Additional features"
msgstr ""
#: ../../mod/settings.php:118
msgid "Missing some important data!"
msgstr ""
#: ../../mod/settings.php:121 ../../mod/settings.php:586
msgid "Update"
msgstr ""
#: ../../mod/settings.php:227
msgid "Failed to connect with email account using the settings provided."
msgstr ""
#: ../../mod/settings.php:232
msgid "Email settings updated."
msgstr ""
#: ../../mod/settings.php:247
msgid "Features updated"
msgstr ""
#: ../../mod/settings.php:307
msgid "Passwords do not match. Password unchanged."
msgstr ""
#: ../../mod/settings.php:312
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
#: ../../mod/settings.php:323
msgid "Password changed."
msgstr ""
#: ../../mod/settings.php:325
msgid "Password update failed. Please try again."
msgstr ""
#: ../../mod/settings.php:390
msgid " Please use a shorter name."
msgstr ""
#: ../../mod/settings.php:392
msgid " Name too short."
msgstr ""
#: ../../mod/settings.php:398
msgid " Not valid email."
msgstr ""
#: ../../mod/settings.php:400
msgid " Cannot change to that email."
msgstr ""
#: ../../mod/settings.php:454
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: ../../mod/settings.php:458
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: ../../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 ""
#: ../../mod/settings.php:559 ../../mod/settings.php:585
#: ../../mod/settings.php:621
msgid "Add application"
msgstr ""
#: ../../mod/settings.php:563 ../../mod/settings.php:589
#: ../../addon/statusnet/statusnet.php:747
#: ../../addon.old/statusnet/statusnet.php:570
msgid "Consumer Key"
msgstr ""
#: ../../mod/settings.php:564 ../../mod/settings.php:590
#: ../../addon/statusnet/statusnet.php:746
#: ../../addon.old/statusnet/statusnet.php:569
msgid "Consumer Secret"
msgstr ""
#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Redirect"
msgstr ""
#: ../../mod/settings.php:566 ../../mod/settings.php:592
msgid "Icon url"
msgstr ""
#: ../../mod/settings.php:577
msgid "You can't edit this application."
msgstr ""
#: ../../mod/settings.php:620
msgid "Connected Apps"
msgstr ""
#: ../../mod/settings.php:624
msgid "Client key starts with"
msgstr ""
#: ../../mod/settings.php:625
msgid "No name"
msgstr ""
#: ../../mod/settings.php:626
msgid "Remove authorization"
msgstr ""
#: ../../mod/settings.php:638
msgid "No Plugin settings configured"
msgstr ""
#: ../../mod/settings.php:646 ../../addon/widgets/widgets.php:124
#: ../../addon.old/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr ""
#: ../../mod/settings.php:660
msgid "Off"
msgstr ""
#: ../../mod/settings.php:660
msgid "On"
msgstr ""
#: ../../mod/settings.php:668
msgid "Additional Features"
msgstr ""
#: ../../mod/settings.php:681 ../../mod/settings.php:682
#: ../../include/conversation.php:266 ../../mod/tagger.php:95
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "enabled"
#: ../../include/conversation.php:291
msgid "post/item"
msgstr ""
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "disabled"
msgstr ""
#: ../../mod/settings.php:682
msgid "StatusNet"
msgstr ""
#: ../../mod/settings.php:714
msgid "Email access is disabled on this site."
msgstr ""
#: ../../mod/settings.php:721
msgid "Connector Settings"
msgstr ""
#: ../../mod/settings.php:726
msgid "Email/Mailbox Setup"
msgstr ""
#: ../../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 ""
#: ../../mod/settings.php:728
msgid "Last successful email check:"
msgstr ""
#: ../../mod/settings.php:730
msgid "IMAP server name:"
msgstr ""
#: ../../mod/settings.php:731
msgid "IMAP port:"
msgstr ""
#: ../../mod/settings.php:732
msgid "Security:"
msgstr ""
#: ../../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 ""
#: ../../mod/settings.php:733
msgid "Email login name:"
msgstr ""
#: ../../mod/settings.php:734
msgid "Email password:"
msgstr ""
#: ../../mod/settings.php:735
msgid "Reply-to address:"
msgstr ""
#: ../../mod/settings.php:736
msgid "Send public posts to all email contacts:"
msgstr ""
#: ../../mod/settings.php:737
msgid "Action after import:"
msgstr ""
#: ../../mod/settings.php:737
msgid "Mark as seen"
msgstr ""
#: ../../mod/settings.php:737
msgid "Move to folder"
msgstr ""
#: ../../mod/settings.php:738
msgid "Move to folder:"
msgstr ""
#: ../../mod/settings.php:769 ../../mod/admin.php:420
msgid "No special theme for mobile devices"
msgstr ""
#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr ""
#: ../../mod/settings.php:815 ../../mod/settings.php:826
msgid "Display Theme:"
msgstr ""
#: ../../mod/settings.php:816
msgid "Mobile Theme:"
msgstr ""
#: ../../mod/settings.php:817
msgid "Update browser every xx seconds"
msgstr ""
#: ../../mod/settings.php:817
msgid "Minimum of 10 seconds, no maximum"
msgstr ""
#: ../../mod/settings.php:818
msgid "Number of items to display per page:"
msgstr ""
#: ../../mod/settings.php:818
msgid "Maximum of 100 items"
msgstr ""
#: ../../mod/settings.php:819
msgid "Don't show emoticons"
msgstr ""
#: ../../mod/settings.php:895
msgid "Normal Account Page"
msgstr ""
#: ../../mod/settings.php:896
msgid "This account is a normal personal profile"
msgstr ""
#: ../../mod/settings.php:899
msgid "Soapbox Page"
msgstr ""
#: ../../mod/settings.php:900
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
#: ../../mod/settings.php:903
msgid "Community Forum/Celebrity Account"
msgstr ""
#: ../../mod/settings.php:904
msgid "Automatically approve all connection/friend requests as read-write fans"
msgstr ""
#: ../../mod/settings.php:907
msgid "Automatic Friend Page"
msgstr ""
#: ../../mod/settings.php:908
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
#: ../../mod/settings.php:911
msgid "Private Forum [Experimental]"
msgstr ""
#: ../../mod/settings.php:912
msgid "Private forum - approved members only"
msgstr ""
#: ../../mod/settings.php:924
msgid "OpenID:"
msgstr ""
#: ../../mod/settings.php:924
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
#: ../../mod/settings.php:934
msgid "Publish your default profile in your local site directory?"
msgstr ""
#: ../../mod/settings.php:940
msgid "Publish your default profile in the global social directory?"
msgstr ""
#: ../../mod/settings.php:948
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
#: ../../mod/settings.php:952
msgid "Hide your profile details from unknown viewers?"
msgstr ""
#: ../../mod/settings.php:957
msgid "Allow friends to post to your profile page?"
msgstr ""
#: ../../mod/settings.php:963
msgid "Allow friends to tag your posts?"
msgstr ""
#: ../../mod/settings.php:969
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
#: ../../mod/settings.php:975
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: ../../mod/settings.php:983
msgid "Profile is <strong>not published</strong>."
msgstr ""
#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
msgid "or"
msgstr ""
#: ../../mod/settings.php:991
msgid "Your Identity Address is"
msgstr ""
#: ../../mod/settings.php:1002
msgid "Automatically expire posts after this many days:"
msgstr ""
#: ../../mod/settings.php:1002
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
#: ../../mod/settings.php:1003
msgid "Advanced expiration settings"
msgstr ""
#: ../../mod/settings.php:1004
msgid "Advanced Expiration"
msgstr ""
#: ../../mod/settings.php:1005
msgid "Expire posts:"
msgstr ""
#: ../../mod/settings.php:1006
msgid "Expire personal notes:"
msgstr ""
#: ../../mod/settings.php:1007
msgid "Expire starred posts:"
msgstr ""
#: ../../mod/settings.php:1008
msgid "Expire photos:"
msgstr ""
#: ../../mod/settings.php:1009
msgid "Only expire posts by others:"
msgstr ""
#: ../../mod/settings.php:1035
msgid "Account Settings"
msgstr ""
#: ../../mod/settings.php:1043
msgid "Password Settings"
msgstr ""
#: ../../mod/settings.php:1044
msgid "New Password:"
msgstr ""
#: ../../mod/settings.php:1045
msgid "Confirm:"
msgstr ""
#: ../../mod/settings.php:1045
msgid "Leave password fields blank unless changing"
msgstr ""
#: ../../mod/settings.php:1049
msgid "Basic Settings"
msgstr ""
#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr ""
#: ../../mod/settings.php:1051
msgid "Email Address:"
msgstr ""
#: ../../mod/settings.php:1052
msgid "Your Timezone:"
msgstr ""
#: ../../mod/settings.php:1053
msgid "Default Post Location:"
msgstr ""
#: ../../mod/settings.php:1054
msgid "Use Browser Location:"
msgstr ""
#: ../../mod/settings.php:1057
msgid "Security and Privacy Settings"
msgstr ""
#: ../../mod/settings.php:1059
msgid "Maximum Friend Requests/Day:"
msgstr ""
#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
msgid "(to prevent spam abuse)"
msgstr ""
#: ../../mod/settings.php:1060
msgid "Default Post Permissions"
msgstr ""
#: ../../mod/settings.php:1061
msgid "(click to open/close)"
msgstr ""
#: ../../mod/settings.php:1072
msgid "Default Private Post"
msgstr ""
#: ../../mod/settings.php:1073
msgid "Default Public Post"
msgstr ""
#: ../../mod/settings.php:1077
msgid "Default Permissions for New Posts"
msgstr ""
#: ../../mod/settings.php:1089
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: ../../mod/settings.php:1092
msgid "Notification Settings"
msgstr ""
#: ../../mod/settings.php:1093
msgid "By default post a status message when:"
msgstr ""
#: ../../mod/settings.php:1094
msgid "accepting a friend request"
msgstr ""
#: ../../mod/settings.php:1095
msgid "joining a forum/community"
msgstr ""
#: ../../mod/settings.php:1096
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:1097
msgid "Send a notification email when:"
msgstr ""
#: ../../mod/settings.php:1098
msgid "You receive an introduction"
msgstr ""
#: ../../mod/settings.php:1099
msgid "Your introductions are confirmed"
msgstr ""
#: ../../mod/settings.php:1100
msgid "Someone writes on your profile wall"
msgstr ""
#: ../../mod/settings.php:1101
msgid "Someone writes a followup comment"
msgstr ""
#: ../../mod/settings.php:1102
msgid "You receive a private message"
msgstr ""
#: ../../mod/settings.php:1103
msgid "You receive a friend suggestion"
msgstr ""
#: ../../mod/settings.php:1104
msgid "You are tagged in a post"
msgstr ""
#: ../../mod/settings.php:1105
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: ../../mod/settings.php:1108
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: ../../mod/settings.php:1109
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: ../../mod/manage.php:106
msgid "Manage Identities and/or Pages"
msgstr ""
#: ../../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 ""
#: ../../mod/manage.php:108
msgid "Select an identity to manage: "
msgstr ""
#: ../../mod/network.php:181
msgid "Search Results For:"
msgstr ""
#: ../../mod/network.php:224 ../../mod/search.php:21
msgid "Remove term"
msgstr ""
#: ../../mod/network.php:233 ../../mod/search.php:30
#: ../../include/features.php:41
msgid "Saved Searches"
msgstr ""
#: ../../mod/network.php:234 ../../include/group.php:275
msgid "add"
msgstr ""
#: ../../mod/network.php:397
msgid "Commented Order"
msgstr ""
#: ../../mod/network.php:400
msgid "Sort by Comment Date"
msgstr ""
#: ../../mod/network.php:403
msgid "Posted Order"
msgstr ""
#: ../../mod/network.php:406
msgid "Sort by Post Date"
msgstr ""
#: ../../mod/network.php:447
msgid "Posts that mention or involve you"
msgstr ""
#: ../../mod/network.php:453
msgid "New"
msgstr ""
#: ../../mod/network.php:456
msgid "Activity Stream - by date"
msgstr ""
#: ../../mod/network.php:462
msgid "Shared Links"
msgstr ""
#: ../../mod/network.php:465
msgid "Interesting Links"
msgstr ""
#: ../../mod/network.php:471
msgid "Starred"
msgstr ""
#: ../../mod/network.php:474
msgid "Favourite Posts"
msgstr ""
#: ../../mod/network.php:546
#: ../../include/conversation.php:292
#, 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] ""
msgstr[1] ""
#: ../../mod/network.php:549
msgid "Private messages to this group are at risk of public disclosure."
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: ../../mod/network.php:621
msgid "Contact: "
#: ../../include/conversation.php:569 ../../mod/content.php:438
#: ../../mod/content.php:740 ../../object/Item.php:119
msgid "Select"
msgstr ""
#: ../../mod/network.php:623
msgid "Private messages to this person are at risk of public disclosure."
#: ../../include/conversation.php:570 ../../mod/admin.php:735
#: ../../mod/photos.php:1634 ../../mod/settings.php:623
#: ../../mod/content.php:439 ../../mod/content.php:741 ../../mod/group.php:171
#: ../../object/Item.php:120
msgid "Delete"
msgstr ""
#: ../../mod/network.php:628
msgid "Invalid contact."
msgstr ""
#: ../../mod/notes.php:44 ../../boot.php:1864
msgid "Personal Notes"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../mod/uimport.php:64
msgid "Import"
msgstr ""
#: ../../mod/uimport.php:66
msgid "Move account"
msgstr ""
#: ../../mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../mod/uimport.php:70
msgid "Account file"
msgstr ""
#: ../../mod/uimport.php:70
msgid ""
"To export your accont, go to \"Settings->Export your porsonal data\" and "
"select \"Export account\""
msgstr ""
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
#: ../../include/conversation.php:609 ../../mod/content.php:472
#: ../../mod/content.php:852 ../../mod/content.php:853
#: ../../object/Item.php:258 ../../object/Item.php:259
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgid "View %s's profile @ %s"
msgstr ""
#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
msgid "No recipient selected."
#: ../../include/conversation.php:621 ../../object/Item.php:249
msgid "Categories:"
msgstr ""
#: ../../mod/wallmessage.php:59
msgid "Unable to check your home location."
#: ../../include/conversation.php:622 ../../object/Item.php:250
msgid "Filed under:"
msgstr ""
#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
msgid "Message could not be sent."
#: ../../include/conversation.php:629 ../../mod/content.php:482
#: ../../mod/content.php:864 ../../object/Item.php:272
#, php-format
msgid "%s from %s"
msgstr ""
#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
msgid "Message collection failure."
#: ../../include/conversation.php:644 ../../mod/content.php:497
msgid "View in context"
msgstr ""
#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
msgid "Message sent."
#: ../../include/conversation.php:646 ../../include/conversation.php:1042
#: ../../mod/photos.php:1529 ../../mod/content.php:499
#: ../../mod/content.php:883 ../../mod/editpost.php:124
#: ../../mod/wallmessage.php:156 ../../mod/message.php:334
#: ../../mod/message.php:565 ../../object/Item.php:293
msgid "Please wait"
msgstr ""
#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
msgid "No recipient."
#: ../../include/conversation.php:710
msgid "remove"
msgstr ""
#: ../../include/conversation.php:714
msgid "Delete Selected Items"
msgstr ""
#: ../../include/conversation.php:813
msgid "Follow Thread"
msgstr ""
#: ../../include/conversation.php:882
#, php-format
msgid "%s likes this."
msgstr ""
#: ../../include/conversation.php:882
#, php-format
msgid "%s doesn't like this."
msgstr ""
#: ../../include/conversation.php:887
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr ""
#: ../../include/conversation.php:890
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr ""
#: ../../include/conversation.php:904
msgid "and"
msgstr ""
#: ../../include/conversation.php:910
#, php-format
msgid ", and %d other people"
msgstr ""
#: ../../include/conversation.php:912
#, php-format
msgid "%s like this."
msgstr ""
#: ../../include/conversation.php:912
#, php-format
msgid "%s don't like this."
msgstr ""
#: ../../include/conversation.php:939 ../../include/conversation.php:957
msgid "Visible to <strong>everybody</strong>"
msgstr ""
#: ../../include/conversation.php:940 ../../include/conversation.php:958
#: ../../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 ""
#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
msgid "Send Private Message"
#: ../../include/conversation.php:941 ../../include/conversation.php:959
msgid "Please enter a video link/URL:"
msgstr ""
#: ../../mod/wallmessage.php:143
#: ../../include/conversation.php:942 ../../include/conversation.php:960
msgid "Please enter an audio link/URL:"
msgstr ""
#: ../../include/conversation.php:943 ../../include/conversation.php:961
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:944 ../../include/conversation.php:962
#: ../../mod/filer.php:30
msgid "Save to Folder:"
msgstr ""
#: ../../include/conversation.php:945 ../../include/conversation.php:963
msgid "Where are you right now?"
msgstr ""
#: ../../include/conversation.php:946
msgid "Delete item(s)?"
msgstr ""
#: ../../include/conversation.php:988
msgid "Post to Email"
msgstr ""
#: ../../include/conversation.php:1023 ../../mod/photos.php:1528
msgid "Share"
msgstr ""
#: ../../include/conversation.php:1024 ../../mod/editpost.php:110
#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
#: ../../mod/message.php:562
msgid "Upload photo"
msgstr ""
#: ../../include/conversation.php:1025 ../../mod/editpost.php:111
msgid "upload photo"
msgstr ""
#: ../../include/conversation.php:1026 ../../mod/editpost.php:112
msgid "Attach file"
msgstr ""
#: ../../include/conversation.php:1027 ../../mod/editpost.php:113
msgid "attach file"
msgstr ""
#: ../../include/conversation.php:1028 ../../mod/editpost.php:114
#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
#: ../../mod/message.php:563
msgid "Insert web link"
msgstr ""
#: ../../include/conversation.php:1029 ../../mod/editpost.php:115
msgid "web link"
msgstr ""
#: ../../include/conversation.php:1030 ../../mod/editpost.php:116
msgid "Insert video link"
msgstr ""
#: ../../include/conversation.php:1031 ../../mod/editpost.php:117
msgid "video link"
msgstr ""
#: ../../include/conversation.php:1032 ../../mod/editpost.php:118
msgid "Insert audio link"
msgstr ""
#: ../../include/conversation.php:1033 ../../mod/editpost.php:119
msgid "audio link"
msgstr ""
#: ../../include/conversation.php:1034 ../../mod/editpost.php:120
msgid "Set your location"
msgstr ""
#: ../../include/conversation.php:1035 ../../mod/editpost.php:121
msgid "set location"
msgstr ""
#: ../../include/conversation.php:1036 ../../mod/editpost.php:122
msgid "Clear browser location"
msgstr ""
#: ../../include/conversation.php:1037 ../../mod/editpost.php:123
msgid "clear location"
msgstr ""
#: ../../include/conversation.php:1039 ../../mod/editpost.php:137
msgid "Set title"
msgstr ""
#: ../../include/conversation.php:1041 ../../mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr ""
#: ../../include/conversation.php:1043 ../../mod/editpost.php:125
msgid "Permission settings"
msgstr ""
#: ../../include/conversation.php:1044
msgid "permissions"
msgstr ""
#: ../../include/conversation.php:1052 ../../mod/editpost.php:133
msgid "CC: email addresses"
msgstr ""
#: ../../include/conversation.php:1053 ../../mod/editpost.php:134
msgid "Public post"
msgstr ""
#: ../../include/conversation.php:1055 ../../mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
#: ../../include/conversation.php:1059 ../../mod/photos.php:1550
#: ../../mod/photos.php:1594 ../../mod/photos.php:1677
#: ../../mod/content.php:719 ../../mod/editpost.php:145
#: ../../object/Item.php:613
msgid "Preview"
msgstr ""
#: ../../include/conversation.php:1068
msgid "Post to Groups"
msgstr ""
#: ../../include/conversation.php:1069
msgid "Post to Contacts"
msgstr ""
#: ../../include/conversation.php:1070
msgid "Private post"
msgstr ""
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr ""
#: ../../include/datetime.php:153 ../../include/datetime.php:285
msgid "year"
msgstr ""
#: ../../include/datetime.php:158 ../../include/datetime.php:286
msgid "month"
msgstr ""
#: ../../include/datetime.php:163 ../../include/datetime.php:288
msgid "day"
msgstr ""
#: ../../include/datetime.php:276
msgid "never"
msgstr ""
#: ../../include/datetime.php:282
msgid "less than a second ago"
msgstr ""
#: ../../include/datetime.php:287
msgid "week"
msgstr ""
#: ../../include/datetime.php:289
msgid "hour"
msgstr ""
#: ../../include/datetime.php:289
msgid "hours"
msgstr ""
#: ../../include/datetime.php:290
msgid "minute"
msgstr ""
#: ../../include/datetime.php:290
msgid "minutes"
msgstr ""
#: ../../include/datetime.php:291
msgid "second"
msgstr ""
#: ../../include/datetime.php:291
msgid "seconds"
msgstr ""
#: ../../include/datetime.php:300
#, php-format
msgid "%1$d %2$s ago"
msgstr ""
#: ../../include/datetime.php:472 ../../include/items.php:1705
#, php-format
msgid "%s's birthday"
msgstr ""
#: ../../include/datetime.php:473 ../../include/items.php:1706
#, php-format
msgid "Happy Birthday %s"
msgstr ""
#: ../../include/dba.php:41
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
#: ../../include/delivery.php:457 ../../include/notifier.php:775
msgid "(no subject)"
msgstr ""
#: ../../include/diaspora.php:704
msgid "Sharing notification from Diaspora network"
msgstr ""
#: ../../include/diaspora.php:2248
msgid "Attachments:"
msgstr ""
#: ../../include/enotify.php:16
msgid "Friendica Notification"
msgstr ""
#: ../../include/enotify.php:19
msgid "Thank You,"
msgstr ""
#: ../../include/enotify.php:21
#, php-format
msgid "%s Administrator"
msgstr ""
#: ../../include/enotify.php:40
#, php-format
msgid "%s <!item_type!>"
msgstr ""
#: ../../include/enotify.php:44
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr ""
#: ../../include/enotify.php:46
#, php-format
msgid "%1$s sent you a new private message at %2$s."
msgstr ""
#: ../../include/enotify.php:47
#, php-format
msgid "%1$s sent you %2$s."
msgstr ""
#: ../../include/enotify.php:47
msgid "a private message"
msgstr ""
#: ../../include/enotify.php:48
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr ""
#: ../../include/enotify.php:90
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:97
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr ""
#: ../../include/enotify.php:105
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:115
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
#: ../../include/enotify.php:116
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr ""
#: ../../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 ""
#: ../../include/enotify.php:126
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr ""
#: ../../include/enotify.php:128
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr ""
#: ../../include/enotify.php:130
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr ""
#: ../../include/enotify.php:141
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr ""
#: ../../include/enotify.php:142
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr ""
#: ../../include/enotify.php:143
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr ""
#: ../../include/enotify.php:155
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr ""
#: ../../include/enotify.php:156
#, php-format
msgid "%1$s poked you at %2$s"
msgstr ""
#: ../../include/enotify.php:157
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr ""
#: ../../include/enotify.php:172
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr ""
#: ../../include/enotify.php:173
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr ""
#: ../../include/enotify.php:174
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr ""
#: ../../include/enotify.php:185
msgid "[Friendica:Notify] Introduction received"
msgstr ""
#: ../../include/enotify.php:186
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:187
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr ""
#: ../../include/enotify.php:190 ../../include/enotify.php:208
#, php-format
msgid "You may visit their profile at %s"
msgstr ""
#: ../../include/enotify.php:192
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr ""
#: ../../include/enotify.php:199
msgid "[Friendica:Notify] Friend suggestion received"
msgstr ""
#: ../../include/enotify.php:200
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:201
#, php-format
msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr ""
#: ../../include/enotify.php:206
msgid "Name:"
msgstr ""
#: ../../include/enotify.php:207
msgid "Photo:"
msgstr ""
#: ../../include/enotify.php:210
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
#: ../../include/features.php:23
msgid "General Features"
msgstr ""
#: ../../include/features.php:25
msgid "Multiple Profiles"
msgstr ""
#: ../../include/features.php:25
msgid "Ability to create multiple profiles"
msgstr ""
#: ../../include/features.php:30
msgid "Post Composition Features"
msgstr ""
#: ../../include/features.php:31
msgid "Richtext Editor"
msgstr ""
#: ../../include/features.php:31
msgid "Enable richtext editor"
msgstr ""
#: ../../include/features.php:32
msgid "Post Preview"
msgstr ""
#: ../../include/features.php:32
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
#: ../../include/features.php:37
msgid "Network Sidebar Widgets"
msgstr ""
#: ../../include/features.php:38
msgid "Search by Date"
msgstr ""
#: ../../include/features.php:38
msgid "Ability to select posts by date ranges"
msgstr ""
#: ../../include/features.php:39
msgid "Group Filter"
msgstr ""
#: ../../include/features.php:39
msgid "Enable widget to display Network posts only from selected group"
msgstr ""
#: ../../include/features.php:40
msgid "Network Filter"
msgstr ""
#: ../../include/features.php:40
msgid "Enable widget to display Network posts only from selected network"
msgstr ""
#: ../../include/features.php:41 ../../mod/search.php:30
#: ../../mod/network.php:233
msgid "Saved Searches"
msgstr ""
#: ../../include/features.php:41
msgid "Save search terms for re-use"
msgstr ""
#: ../../include/features.php:46
msgid "Network Tabs"
msgstr ""
#: ../../include/features.php:47
msgid "Network Personal Tab"
msgstr ""
#: ../../include/features.php:47
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
#: ../../include/features.php:48
msgid "Network New Tab"
msgstr ""
#: ../../include/features.php:48
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr ""
#: ../../include/features.php:49
msgid "Network Shared Links Tab"
msgstr ""
#: ../../include/features.php:49
msgid "Enable tab to display only Network posts with links in them"
msgstr ""
#: ../../include/features.php:54
msgid "Post/Comment Tools"
msgstr ""
#: ../../include/features.php:55
msgid "Multiple Deletion"
msgstr ""
#: ../../include/features.php:55
msgid "Select and delete multiple posts/comments at once"
msgstr ""
#: ../../include/features.php:56
msgid "Edit Sent Posts"
msgstr ""
#: ../../include/features.php:56
msgid "Edit and correct posts and comments after sending"
msgstr ""
#: ../../include/features.php:57
msgid "Tagging"
msgstr ""
#: ../../include/features.php:57
msgid "Ability to tag existing posts"
msgstr ""
#: ../../include/features.php:58
msgid "Post Categories"
msgstr ""
#: ../../include/features.php:58
msgid "Add categories to your posts"
msgstr ""
#: ../../include/features.php:59
msgid "Ability to file posts under folders"
msgstr ""
#: ../../include/features.php:60
msgid "Dislike Posts"
msgstr ""
#: ../../include/features.php:60
msgid "Ability to dislike posts/comments"
msgstr ""
#: ../../include/features.php:61
msgid "Star Posts"
msgstr ""
#: ../../include/features.php:61
msgid "Ability to mark special posts with a star indicator"
msgstr ""
#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
msgid "Disallowed profile URL."
msgstr ""
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr ""
#: ../../include/follow.php:59
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
"This site is not configured to allow communications with other networks."
msgstr ""
#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
#: ../../mod/message.php:553
msgid "To:"
#: ../../include/follow.php:60 ../../include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
#: ../../mod/message.php:555
msgid "Subject:"
#: ../../include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
#: ../../mod/message.php:558 ../../mod/invite.php:134
msgid "Your message:"
#: ../../include/follow.php:82
msgid "An author or name was not found."
msgstr ""
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr ""
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr ""
#: ../../mod/newmember.php:12
#: ../../include/follow.php:86
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."
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: ../../mod/newmember.php:14
msgid "Getting Started"
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr ""
#: ../../mod/newmember.php:18
#: ../../include/follow.php:93
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."
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr ""
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr ""
#: ../../mod/newmember.php:26
#: ../../include/follow.php:103
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."
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr ""
#: ../../mod/newmember.php:28
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr ""
#: ../../include/follow.php:259
msgid "following"
msgstr ""
#: ../../include/group.php:25
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."
"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 ""
#: ../../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"
#: ../../include/group.php:207
msgid "Default privacy group for new contacts"
msgstr ""
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
#: ../../include/group.php:226
msgid "Everybody"
msgstr ""
#: ../../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."
#: ../../include/group.php:249
msgid "edit"
msgstr ""
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:66 ../../include/group.php:270
#: ../../include/group.php:270 ../../mod/newmember.php:66
msgid "Groups"
msgstr ""
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
#: ../../include/group.php:271
msgid "Edit group"
msgstr ""
#: ../../mod/newmember.php:70
#: ../../include/group.php:272
msgid "Create a new group"
msgstr ""
#: ../../include/group.php:273
msgid "Contacts not in any group"
msgstr ""
#: ../../include/group.php:275 ../../mod/network.php:234
msgid "add"
msgstr ""
#: ../../include/items.php:3366 ../../mod/dfrn_request.php:716
msgid "[Name Withheld]"
msgstr ""
#: ../../include/items.php:3373
msgid "A new person is sharing with you at "
msgstr ""
#: ../../include/items.php:3373
msgid "You have a new follower at "
msgstr ""
#: ../../include/items.php:3853 ../../mod/admin.php:159
#: ../../mod/admin.php:773 ../../mod/admin.php:972 ../../mod/display.php:51
#: ../../mod/display.php:184 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
msgid "Item not found."
msgstr ""
#: ../../include/items.php:3892
msgid "Do you really want to delete this item?"
msgstr ""
#: ../../include/items.php:3894 ../../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 ""
#: ../../include/items.php:4085
msgid "Archives"
msgstr ""
#: ../../include/message.php:15 ../../include/message.php:172
msgid "[no subject]"
msgstr ""
#: ../../include/message.php:144 ../../mod/wall_upload.php:135
#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
#: ../../mod/item.php:428
msgid "Wall Photos"
msgstr ""
#: ../../include/nav.php:34 ../../mod/navigation.php:20
msgid "Nothing new here"
msgstr ""
#: ../../include/nav.php:38 ../../mod/navigation.php:24
msgid "Clear notifications"
msgstr ""
#: ../../include/nav.php:73 ../../boot.php:1036
msgid "Logout"
msgstr ""
#: ../../include/nav.php:73
msgid "End this session"
msgstr ""
#: ../../include/nav.php:76 ../../boot.php:1840
msgid "Status"
msgstr ""
#: ../../include/nav.php:76 ../../include/nav.php:143
#: ../../view/theme/diabook/theme.php:87
msgid "Your posts and conversations"
msgstr ""
#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
msgid "Your profile page"
msgstr ""
#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1854
msgid "Photos"
msgstr ""
#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
msgid "Your photos"
msgstr ""
#: ../../include/nav.php:79 ../../mod/events.php:370
#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1864
msgid "Events"
msgstr ""
#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
msgid "Your events"
msgstr ""
#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
msgid "Personal notes"
msgstr ""
#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
msgid "Your personal photos"
msgstr ""
#: ../../include/nav.php:91
msgid "Sign in"
msgstr ""
#: ../../include/nav.php:104 ../../include/nav.php:143
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
msgid "Home"
msgstr ""
#: ../../include/nav.php:104
msgid "Home Page"
msgstr ""
#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1012
msgid "Register"
msgstr ""
#: ../../include/nav.php:108
msgid "Create an account"
msgstr ""
#: ../../include/nav.php:113
msgid "Help and documentation"
msgstr ""
#: ../../include/nav.php:116
msgid "Apps"
msgstr ""
#: ../../include/nav.php:116
msgid "Addon applications, utilities, games"
msgstr ""
#: ../../include/nav.php:118
msgid "Search site content"
msgstr ""
#: ../../include/nav.php:128 ../../mod/community.php:32
#: ../../view/theme/diabook/theme.php:93
msgid "Community"
msgstr ""
#: ../../include/nav.php:128
msgid "Conversations on this site"
msgstr ""
#: ../../include/nav.php:130
msgid "Directory"
msgstr ""
#: ../../include/nav.php:130
msgid "People directory"
msgstr ""
#: ../../include/nav.php:140 ../../mod/notifications.php:83
msgid "Network"
msgstr ""
#: ../../include/nav.php:140
msgid "Conversations from your friends"
msgstr ""
#: ../../include/nav.php:141
msgid "Network Reset"
msgstr ""
#: ../../include/nav.php:141
msgid "Load Network page with no filters"
msgstr ""
#: ../../include/nav.php:149 ../../mod/notifications.php:98
msgid "Introductions"
msgstr ""
#: ../../include/nav.php:149
msgid "Friend Requests"
msgstr ""
#: ../../include/nav.php:150 ../../mod/notifications.php:220
msgid "Notifications"
msgstr ""
#: ../../include/nav.php:151
msgid "See all notifications"
msgstr ""
#: ../../include/nav.php:152
msgid "Mark all system notifications seen"
msgstr ""
#: ../../include/nav.php:156 ../../mod/message.php:182
#: ../../mod/notifications.php:103
msgid "Messages"
msgstr ""
#: ../../include/nav.php:156
msgid "Private mail"
msgstr ""
#: ../../include/nav.php:157
msgid "Inbox"
msgstr ""
#: ../../include/nav.php:158
msgid "Outbox"
msgstr ""
#: ../../include/nav.php:159 ../../mod/message.php:9
msgid "New Message"
msgstr ""
#: ../../include/nav.php:162
msgid "Manage"
msgstr ""
#: ../../include/nav.php:162
msgid "Manage other pages"
msgstr ""
#: ../../include/nav.php:165
msgid "Delegations"
msgstr ""
#: ../../include/nav.php:165 ../../mod/delegate.php:121
msgid "Delegate Page Management"
msgstr ""
#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
msgid "Account settings"
msgstr ""
#: ../../include/nav.php:169 ../../boot.php:1339
msgid "Profiles"
msgstr ""
#: ../../include/nav.php:169
msgid "Manage/Edit Profiles"
msgstr ""
#: ../../include/nav.php:171 ../../mod/contacts.php:607
#: ../../view/theme/diabook/theme.php:89
msgid "Contacts"
msgstr ""
#: ../../include/nav.php:171
msgid "Manage/edit friends and contacts"
msgstr ""
#: ../../include/nav.php:178 ../../mod/admin.php:120
msgid "Admin"
msgstr ""
#: ../../include/nav.php:178
msgid "Site setup and configuration"
msgstr ""
#: ../../include/nav.php:182
msgid "Navigation"
msgstr ""
#: ../../include/nav.php:182
msgid "Site map"
msgstr ""
#: ../../include/network.php:850
msgid "view full size"
msgstr ""
#: ../../include/oembed.php:138
msgid "Embedded content"
msgstr ""
#: ../../include/oembed.php:147
msgid "Embedding disabled"
msgstr ""
#: ../../include/plugin.php:429 ../../include/plugin.php:431
msgid "Click here to upgrade."
msgstr ""
#: ../../include/plugin.php:437
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: ../../include/plugin.php:442
msgid "This action is not available under your subscription plan."
msgstr ""
#: ../../include/security.php:22
msgid "Welcome "
msgstr ""
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr ""
#: ../../include/security.php:26
msgid "Welcome back "
msgstr ""
#: ../../include/security.php:366
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."
"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 ""
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
#: ../../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 ""
#: ../../mod/newmember.php:73
#: ../../mod/profiles.php:37
msgid "Profile deleted."
msgstr ""
#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
msgid "Profile-"
msgstr ""
#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
msgid "New profile created."
msgstr ""
#: ../../mod/profiles.php:95
msgid "Profile unavailable to clone."
msgstr ""
#: ../../mod/profiles.php:170
msgid "Profile Name is required."
msgstr ""
#: ../../mod/profiles.php:317
msgid "Marital Status"
msgstr ""
#: ../../mod/profiles.php:321
msgid "Romantic Partner"
msgstr ""
#: ../../mod/profiles.php:325
msgid "Likes"
msgstr ""
#: ../../mod/profiles.php:329
msgid "Dislikes"
msgstr ""
#: ../../mod/profiles.php:333
msgid "Work/Employment"
msgstr ""
#: ../../mod/profiles.php:336
msgid "Religion"
msgstr ""
#: ../../mod/profiles.php:340
msgid "Political Views"
msgstr ""
#: ../../mod/profiles.php:344
msgid "Gender"
msgstr ""
#: ../../mod/profiles.php:348
msgid "Sexual Preference"
msgstr ""
#: ../../mod/profiles.php:352
msgid "Homepage"
msgstr ""
#: ../../mod/profiles.php:356
msgid "Interests"
msgstr ""
#: ../../mod/profiles.php:360
msgid "Address"
msgstr ""
#: ../../mod/profiles.php:450
msgid "Profile updated."
msgstr ""
#: ../../mod/profiles.php:517
msgid " and "
msgstr ""
#: ../../mod/profiles.php:525
msgid "public profile"
msgstr ""
#: ../../mod/profiles.php:528
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: ../../mod/profiles.php:529
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr ""
#: ../../mod/profiles.php:532
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
#: ../../mod/profiles.php:605
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
#: ../../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 ""
#: ../../mod/profiles.php:625
msgid "Edit Profile Details"
msgstr ""
#: ../../mod/profiles.php:627
msgid "Change Profile Photo"
msgstr ""
#: ../../mod/profiles.php:628
msgid "View this profile"
msgstr ""
#: ../../mod/profiles.php:629
msgid "Create a new profile using these settings"
msgstr ""
#: ../../mod/profiles.php:630
msgid "Clone this profile"
msgstr ""
#: ../../mod/profiles.php:631
msgid "Delete this profile"
msgstr ""
#: ../../mod/profiles.php:632
msgid "Profile Name:"
msgstr ""
#: ../../mod/profiles.php:633
msgid "Your Full Name:"
msgstr ""
#: ../../mod/profiles.php:634
msgid "Title/Description:"
msgstr ""
#: ../../mod/profiles.php:635
msgid "Your Gender:"
msgstr ""
#: ../../mod/profiles.php:636
#, php-format
msgid "Birthday (%s):"
msgstr ""
#: ../../mod/profiles.php:637
msgid "Street Address:"
msgstr ""
#: ../../mod/profiles.php:638
msgid "Locality/City:"
msgstr ""
#: ../../mod/profiles.php:639
msgid "Postal/Zip Code:"
msgstr ""
#: ../../mod/profiles.php:640
msgid "Country:"
msgstr ""
#: ../../mod/profiles.php:641
msgid "Region/State:"
msgstr ""
#: ../../mod/profiles.php:642
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
#: ../../mod/profiles.php:643
msgid "Who: (if applicable)"
msgstr ""
#: ../../mod/profiles.php:644
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
#: ../../mod/profiles.php:645
msgid "Since [date]:"
msgstr ""
#: ../../mod/profiles.php:647
msgid "Homepage URL:"
msgstr ""
#: ../../mod/profiles.php:650
msgid "Religious Views:"
msgstr ""
#: ../../mod/profiles.php:651
msgid "Public Keywords:"
msgstr ""
#: ../../mod/profiles.php:652
msgid "Private Keywords:"
msgstr ""
#: ../../mod/profiles.php:655
msgid "Example: fishing photography software"
msgstr ""
#: ../../mod/profiles.php:656
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
#: ../../mod/profiles.php:657
msgid "(Used for searching profiles, never shown to others)"
msgstr ""
#: ../../mod/profiles.php:658
msgid "Tell us about yourself..."
msgstr ""
#: ../../mod/profiles.php:659
msgid "Hobbies/Interests"
msgstr ""
#: ../../mod/profiles.php:660
msgid "Contact information and Social Networks"
msgstr ""
#: ../../mod/profiles.php:661
msgid "Musical interests"
msgstr ""
#: ../../mod/profiles.php:662
msgid "Books, literature"
msgstr ""
#: ../../mod/profiles.php:663
msgid "Television"
msgstr ""
#: ../../mod/profiles.php:664
msgid "Film/dance/culture/entertainment"
msgstr ""
#: ../../mod/profiles.php:665
msgid "Love/romance"
msgstr ""
#: ../../mod/profiles.php:666
msgid "Work/employment"
msgstr ""
#: ../../mod/profiles.php:667
msgid "School/education"
msgstr ""
#: ../../mod/profiles.php:672
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."
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr ""
#: ../../mod/newmember.php:78
msgid "Getting Help"
#: ../../mod/profiles.php:721
msgid "Edit/Manage Profiles"
msgstr ""
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
#: ../../mod/profiles.php:722 ../../boot.php:1345 ../../boot.php:1371
msgid "Change profile photo"
msgstr ""
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program "
"features and resources."
#: ../../mod/profiles.php:723 ../../boot.php:1346
msgid "Create New Profile"
msgstr ""
#: ../../mod/attach.php:8
msgid "Item not available."
#: ../../mod/profiles.php:734 ../../boot.php:1356
msgid "Profile Image"
msgstr ""
#: ../../mod/attach.php:20
msgid "Item was not found."
#: ../../mod/profiles.php:736 ../../boot.php:1359
msgid "visible to everybody"
msgstr ""
#: ../../mod/group.php:29
msgid "Group created."
#: ../../mod/profiles.php:737 ../../boot.php:1360
msgid "Edit visibility"
msgstr ""
#: ../../mod/group.php:35
msgid "Could not create group."
msgstr ""
#: ../../mod/group.php:47 ../../mod/group.php:140
msgid "Group not found."
msgstr ""
#: ../../mod/group.php:60
msgid "Group name changed."
msgstr ""
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:340
#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340
msgid "Permission denied"
msgstr ""
#: ../../mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr ""
#: ../../mod/group.php:94 ../../mod/group.php:180
msgid "Group Name: "
msgstr ""
#: ../../mod/group.php:113
msgid "Group removed."
msgstr ""
#: ../../mod/group.php:115
msgid "Unable to remove group."
msgstr ""
#: ../../mod/group.php:179
msgid "Group Editor"
msgstr ""
#: ../../mod/group.php:192
msgid "Members"
msgstr ""
#: ../../mod/group.php:224 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove."
msgstr ""
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier."
msgstr ""
@ -3223,6 +5675,10 @@ msgstr ""
msgid "Profile Visibility Editor"
msgstr ""
#: ../../mod/profperm.php:105 ../../mod/group.php:224
msgid "Click on a contact to add or remove."
msgstr ""
#: ../../mod/profperm.php:114
msgid "Visible To"
msgstr ""
@ -3231,391 +5687,67 @@ msgstr ""
msgid "All Contacts (with secure profile access)"
msgstr ""
#: ../../mod/viewcontacts.php:39
msgid "No contacts."
#: ../../mod/notes.php:44 ../../boot.php:1871
msgid "Personal Notes"
msgstr ""
#: ../../mod/viewcontacts.php:76 ../../include/text.php:678
msgid "View Contacts"
msgstr ""
#: ../../mod/register.php:91 ../../mod/regmod.php:54
#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
#, php-format
msgid "Registration details for %s"
msgid "Visit %s's profile [%s]"
msgstr ""
#: ../../mod/register.php:99
msgid ""
"Registration successful. Please check your email for further instructions."
#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
msgid "Edit contact"
msgstr ""
#: ../../mod/register.php:103
msgid "Failed to send email message. Here is the message that failed."
#: ../../mod/nogroup.php:59
msgid "Contacts who are not members of a group"
msgstr ""
#: ../../mod/register.php:108
msgid "Your registration can not be processed."
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr ""
#: ../../mod/register.php:145
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr ""
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr ""
#: ../../mod/ping.php:254
#, php-format
msgid "Registration request at %s"
msgid "{0} commented %s's post"
msgstr ""
#: ../../mod/register.php:154
msgid "Your registration is pending approval by the site owner."
msgstr ""
#: ../../mod/register.php:220
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr ""
#: ../../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 ""
#: ../../mod/register.php:222
msgid "Your OpenID (optional): "
msgstr ""
#: ../../mod/register.php:236
msgid "Include your profile in member directory?"
msgstr ""
#: ../../mod/register.php:257
msgid "Membership on this site is by invitation only."
msgstr ""
#: ../../mod/register.php:258
msgid "Your invitation ID: "
msgstr ""
#: ../../mod/register.php:261 ../../mod/admin.php:462
msgid "Registration"
msgstr ""
#: ../../mod/register.php:269
msgid "Your Full Name (e.g. Joe Smith): "
msgstr ""
#: ../../mod/register.php:270
msgid "Your Email Address: "
msgstr ""
#: ../../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 ""
#: ../../mod/register.php:272
msgid "Choose a nickname: "
msgstr ""
#: ../../mod/register.php:275 ../../include/nav.php:108 ../../boot.php:1012
msgid "Register"
msgstr ""
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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
#: ../../mod/ping.php:259
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgid "{0} liked %s's post"
msgstr ""
#: ../../mod/like.php:170 ../../include/conversation.php:140
#: ../../mod/ping.php:264
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgid "{0} disliked %s's post"
msgstr ""
#: ../../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 ""
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr ""
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
#: ../../include/nav.php:78 ../../boot.php:1847
msgid "Photos"
msgstr ""
#: ../../mod/fbrowser.php:113
msgid "Files"
msgstr ""
#: ../../mod/regmod.php:63
msgid "Account approved."
msgstr ""
#: ../../mod/regmod.php:100
#: ../../mod/ping.php:269
#, php-format
msgid "Registration revoked for %s"
msgid "{0} is now friends with %s"
msgstr ""
#: ../../mod/regmod.php:112
msgid "Please login."
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr ""
#: ../../mod/item.php:104
msgid "Unable to locate original post."
msgstr ""
#: ../../mod/item.php:292
msgid "Empty post discarded."
msgstr ""
#: ../../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 ""
#: ../../mod/item.php:841
msgid "System error. Post not saved."
msgstr ""
#: ../../mod/item.php:866
#: ../../mod/ping.php:279
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social network."
msgid "{0} tagged %s's post with #%s"
msgstr ""
#: ../../mod/item.php:868
#, php-format
msgid "You may visit them online at %s"
msgstr ""
#: ../../mod/item.php:869
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr ""
#: ../../mod/item.php:871
#, php-format
msgid "%s posted an update."
msgstr ""
#: ../../mod/mood.php:62 ../../include/conversation.php:227
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: ../../mod/mood.php:133
msgid "Mood"
msgstr ""
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr ""
#: ../../mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr ""
#: ../../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 ""
#: ../../mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr ""
#: ../../mod/profile_photo.php:128
msgid "Unable to process image"
msgstr ""
#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
#, php-format
msgid "Image exceeds size limit of %d"
msgstr ""
#: ../../mod/profile_photo.php:242
msgid "Upload File:"
msgstr ""
#: ../../mod/profile_photo.php:243
msgid "Select a profile:"
msgstr ""
#: ../../mod/profile_photo.php:245
#: ../../addon/dav/friendica/layout.fnk.php:152
#: ../../addon.old/dav/friendica/layout.fnk.php:152
msgid "Upload"
msgstr ""
#: ../../mod/profile_photo.php:248
msgid "skip this step"
msgstr ""
#: ../../mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr ""
#: ../../mod/profile_photo.php:262
msgid "Crop Image"
msgstr ""
#: ../../mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr ""
#: ../../mod/profile_photo.php:265
msgid "Done Editing"
msgstr ""
#: ../../mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr ""
#: ../../mod/hcard.php:10
msgid "No profile"
msgstr ""
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr ""
#: ../../mod/removeme.php:46
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr ""
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr ""
#: ../../mod/navigation.php:20 ../../include/nav.php:34
msgid "Nothing new here"
msgstr ""
#: ../../mod/navigation.php:24 ../../include/nav.php:38
msgid "Clear notifications"
msgstr ""
#: ../../mod/message.php:9 ../../include/nav.php:159
msgid "New Message"
msgstr ""
#: ../../mod/message.php:67
msgid "Unable to locate contact information."
msgstr ""
#: ../../mod/message.php:207
msgid "Do you really want to delete this message?"
msgstr ""
#: ../../mod/message.php:227
msgid "Message deleted."
msgstr ""
#: ../../mod/message.php:258
msgid "Conversation removed."
msgstr ""
#: ../../mod/message.php:371
msgid "No messages."
msgstr ""
#: ../../mod/message.php:378
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: ../../mod/message.php:381
#, php-format
msgid "You and %s"
msgstr ""
#: ../../mod/message.php:384
#, php-format
msgid "%s and You"
msgstr ""
#: ../../mod/message.php:405 ../../mod/message.php:546
msgid "Delete conversation"
msgstr ""
#: ../../mod/message.php:408
msgid "D, d M Y - g:i A"
msgstr ""
#: ../../mod/message.php:411
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/message.php:450
msgid "Message not available."
msgstr ""
#: ../../mod/message.php:520
msgid "Delete message"
msgstr ""
#: ../../mod/message.php:548
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: ../../mod/message.php:552
msgid "Send Reply"
msgstr ""
#: ../../mod/allfriends.php:34
#, php-format
msgid "Friends of %s"
msgstr ""
#: ../../mod/allfriends.php:40
msgid "No friends to display."
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr ""
#: ../../mod/admin.php:55
@ -3646,10 +5778,6 @@ msgstr ""
msgid "Logs"
msgstr ""
#: ../../mod/admin.php:120 ../../include/nav.php:178
msgid "Admin"
msgstr ""
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr ""
@ -3716,6 +5844,10 @@ msgstr ""
msgid "Site settings updated."
msgstr ""
#: ../../mod/admin.php:420 ../../mod/settings.php:769
msgid "No special theme for mobile devices"
msgstr ""
#: ../../mod/admin.php:446
msgid "Closed"
msgstr ""
@ -3740,6 +5872,10 @@ msgstr ""
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: ../../mod/admin.php:462 ../../mod/register.php:261
msgid "Registration"
msgstr ""
#: ../../mod/admin.php:463
msgid "File upload"
msgstr ""
@ -3756,11 +5892,6 @@ msgstr ""
msgid "Performance"
msgstr ""
#: ../../mod/admin.php:470 ../../addon/statusnet/statusnet.php:744
#: ../../addon.old/statusnet/statusnet.php:567
msgid "Site name"
msgstr ""
#: ../../mod/admin.php:471
msgid "Banner/Logo"
msgstr ""
@ -3819,8 +5950,8 @@ msgstr ""
#: ../../mod/admin.php:478
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is -"
"1, which means no limits."
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
#: ../../mod/admin.php:479
@ -4185,20 +6316,34 @@ msgstr ""
msgid "Request date"
msgstr ""
#: ../../mod/admin.php:731 ../../mod/admin.php:741
#: ../../include/contact_selectors.php:79
#: ../../include/contact_selectors.php:86
msgid "Email"
#: ../../mod/admin.php:731 ../../mod/admin.php:741 ../../mod/settings.php:562
#: ../../mod/settings.php:588 ../../mod/crepair.php:148
msgid "Name"
msgstr ""
#: ../../mod/admin.php:732
msgid "No registrations."
msgstr ""
#: ../../mod/admin.php:733 ../../mod/notifications.php:161
#: ../../mod/notifications.php:208
msgid "Approve"
msgstr ""
#: ../../mod/admin.php:734
msgid "Deny"
msgstr ""
#: ../../mod/admin.php:736 ../../mod/contacts.php:353
#: ../../mod/contacts.php:412
msgid "Block"
msgstr ""
#: ../../mod/admin.php:737 ../../mod/contacts.php:353
#: ../../mod/contacts.php:412
msgid "Unblock"
msgstr ""
#: ../../mod/admin.php:738
msgid "Site admin"
msgstr ""
@ -4303,6 +6448,10 @@ msgstr ""
msgid "Log level"
msgstr ""
#: ../../mod/admin.php:1213 ../../mod/contacts.php:409
msgid "Update now"
msgstr ""
#: ../../mod/admin.php:1214
msgid "Close"
msgstr ""
@ -4323,104 +6472,336 @@ msgstr ""
msgid "FTP Password"
msgstr ""
#: ../../mod/profile.php:21 ../../boot.php:1225
msgid "Requested profile is not available."
#: ../../mod/photos.php:51 ../../boot.php:1857
msgid "Photo Albums"
msgstr ""
#: ../../mod/profile.php:155 ../../mod/display.php:99
msgid "Access to this profile has been restricted."
#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792
msgid "Upload New Photos"
msgstr ""
#: ../../mod/profile.php:180
msgid "Tips for New Members"
#: ../../mod/photos.php:79 ../../mod/settings.php:23
msgid "everybody"
msgstr ""
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
#: ../../mod/photos.php:143
msgid "Contact information unavailable"
msgstr ""
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
#: ../../mod/photos.php:164
msgid "Album not found."
msgstr ""
#: ../../mod/ping.php:248
msgid "{0} requested registration"
#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197
msgid "Delete Album"
msgstr ""
#: ../../mod/ping.php:254
#: ../../mod/photos.php:197
msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499
msgid "Delete Photo"
msgstr ""
#: ../../mod/photos.php:284
msgid "Do you really want to delete this photo?"
msgstr ""
#: ../../mod/photos.php:653
#, php-format
msgid "{0} commented %s's post"
msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
#: ../../mod/ping.php:259
#: ../../mod/photos.php:653
msgid "a photo"
msgstr ""
#: ../../mod/photos.php:766
msgid "Image file is empty."
msgstr ""
#: ../../mod/photos.php:798 ../../mod/wall_upload.php:112
#: ../../mod/profile_photo.php:153
msgid "Unable to process image."
msgstr ""
#: ../../mod/photos.php:825 ../../mod/wall_upload.php:138
#: ../../mod/profile_photo.php:301
msgid "Image upload failed."
msgstr ""
#: ../../mod/photos.php:921
msgid "No photos selected"
msgstr ""
#: ../../mod/photos.php:1022
msgid "Access to this item is restricted."
msgstr ""
#: ../../mod/photos.php:1085
#, php-format
msgid "{0} liked %s's post"
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: ../../mod/ping.php:264
#: ../../mod/photos.php:1120
msgid "Upload Photos"
msgstr ""
#: ../../mod/photos.php:1124 ../../mod/photos.php:1192
msgid "New album name: "
msgstr ""
#: ../../mod/photos.php:1125
msgid "or existing album name: "
msgstr ""
#: ../../mod/photos.php:1126
msgid "Do not show a status post for this upload"
msgstr ""
#: ../../mod/photos.php:1128 ../../mod/photos.php:1494
msgid "Permissions"
msgstr ""
#: ../../mod/photos.php:1137 ../../mod/photos.php:1503
#: ../../mod/settings.php:1070
msgid "Show to Groups"
msgstr ""
#: ../../mod/photos.php:1138 ../../mod/photos.php:1504
#: ../../mod/settings.php:1071
msgid "Show to Contacts"
msgstr ""
#: ../../mod/photos.php:1139
msgid "Private Photo"
msgstr ""
#: ../../mod/photos.php:1140
msgid "Public Photo"
msgstr ""
#: ../../mod/photos.php:1207
msgid "Edit Album"
msgstr ""
#: ../../mod/photos.php:1213
msgid "Show Newest First"
msgstr ""
#: ../../mod/photos.php:1215
msgid "Show Oldest First"
msgstr ""
#: ../../mod/photos.php:1248 ../../mod/photos.php:1775
msgid "View Photo"
msgstr ""
#: ../../mod/photos.php:1283
msgid "Permission denied. Access to this item may be restricted."
msgstr ""
#: ../../mod/photos.php:1285
msgid "Photo not available"
msgstr ""
#: ../../mod/photos.php:1341
msgid "View photo"
msgstr ""
#: ../../mod/photos.php:1341
msgid "Edit photo"
msgstr ""
#: ../../mod/photos.php:1342
msgid "Use as profile photo"
msgstr ""
#: ../../mod/photos.php:1348 ../../mod/content.php:620
#: ../../object/Item.php:106
msgid "Private Message"
msgstr ""
#: ../../mod/photos.php:1367
msgid "View Full Size"
msgstr ""
#: ../../mod/photos.php:1441
msgid "Tags: "
msgstr ""
#: ../../mod/photos.php:1444
msgid "[Remove any tag]"
msgstr ""
#: ../../mod/photos.php:1484
msgid "Rotate CW (right)"
msgstr ""
#: ../../mod/photos.php:1485
msgid "Rotate CCW (left)"
msgstr ""
#: ../../mod/photos.php:1487
msgid "New album name"
msgstr ""
#: ../../mod/photos.php:1490
msgid "Caption"
msgstr ""
#: ../../mod/photos.php:1492
msgid "Add a Tag"
msgstr ""
#: ../../mod/photos.php:1496
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
#: ../../mod/photos.php:1505
msgid "Private photo"
msgstr ""
#: ../../mod/photos.php:1506
msgid "Public photo"
msgstr ""
#: ../../mod/photos.php:1526 ../../mod/content.php:684
#: ../../object/Item.php:204
msgid "I like this (toggle)"
msgstr ""
#: ../../mod/photos.php:1527 ../../mod/content.php:685
#: ../../object/Item.php:205
msgid "I don't like this (toggle)"
msgstr ""
#: ../../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 ""
#: ../../mod/photos.php:1548 ../../mod/photos.php:1592
#: ../../mod/photos.php:1675 ../../mod/content.php:709
#: ../../object/Item.php:290 ../../object/Item.php:603 ../../boot.php:641
msgid "Comment"
msgstr ""
#: ../../mod/photos.php:1781
msgid "View Album"
msgstr ""
#: ../../mod/photos.php:1790
msgid "Recent Photos"
msgstr ""
#: ../../mod/allfriends.php:34
#, php-format
msgid "{0} disliked %s's post"
msgid "Friends of %s"
msgstr ""
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr ""
#: ../../mod/ping.php:274
msgid "{0} posted"
#: ../../mod/api.php:76 ../../mod/api.php:102
msgid "Authorize application connection"
msgstr ""
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
#: ../../mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr ""
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
#: ../../mod/api.php:89
msgid "Please login to continue."
msgstr ""
#: ../../mod/nogroup.php:59
msgid "Contacts who are not members of a group"
msgstr ""
#: ../../mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr ""
#: ../../mod/openid.php:53
#: ../../mod/api.php:104
msgid ""
"Account not found and OpenID registration is not permitted on this site."
"Do you want to authorize this application to access your posts and contacts, "
"and/or create new posts for you?"
msgstr ""
#: ../../mod/openid.php:93 ../../include/auth.php:112
#: ../../include/auth.php:175
msgid "Login failed."
msgstr ""
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr ""
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr ""
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr ""
#: ../../mod/subthread.php:103
#: ../../mod/register.php:91 ../../mod/regmod.php:54
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgid "Registration details for %s"
msgstr ""
#: ../../mod/share.php:44
msgid "link"
#: ../../mod/register.php:99
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr ""
#: ../../mod/display.php:177
msgid "Item has been removed."
#: ../../mod/register.php:103
msgid "Failed to send email message. Here is the message that failed."
msgstr ""
#: ../../mod/register.php:108
msgid "Your registration can not be processed."
msgstr ""
#: ../../mod/register.php:145
#, php-format
msgid "Registration request at %s"
msgstr ""
#: ../../mod/register.php:154
msgid "Your registration is pending approval by the site owner."
msgstr ""
#: ../../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 ""
#: ../../mod/register.php:220
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr ""
#: ../../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 ""
#: ../../mod/register.php:222
msgid "Your OpenID (optional): "
msgstr ""
#: ../../mod/register.php:236
msgid "Include your profile in member directory?"
msgstr ""
#: ../../mod/register.php:257
msgid "Membership on this site is by invitation only."
msgstr ""
#: ../../mod/register.php:258
msgid "Your invitation ID: "
msgstr ""
#: ../../mod/register.php:269
msgid "Your Full Name (e.g. Joe Smith): "
msgstr ""
#: ../../mod/register.php:270
msgid "Your Email Address: "
msgstr ""
#: ../../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 ""
#: ../../mod/register.php:272
msgid "Choose a nickname: "
msgstr ""
#: ../../mod/apps.php:4
@ -4431,372 +6812,39 @@ msgstr ""
msgid "No installed applications."
msgstr ""
#: ../../mod/search.php:99 ../../include/text.php:738
#: ../../include/text.php:739 ../../include/nav.php:118
msgid "Search"
#: ../../mod/regmod.php:63
msgid "Account approved."
msgstr ""
#: ../../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 ""
#: ../../mod/profiles.php:37
msgid "Profile deleted."
msgstr ""
#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
msgid "Profile-"
msgstr ""
#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
msgid "New profile created."
msgstr ""
#: ../../mod/profiles.php:95
msgid "Profile unavailable to clone."
msgstr ""
#: ../../mod/profiles.php:170
msgid "Profile Name is required."
msgstr ""
#: ../../mod/profiles.php:317
msgid "Marital Status"
msgstr ""
#: ../../mod/profiles.php:321
msgid "Romantic Partner"
msgstr ""
#: ../../mod/profiles.php:325
msgid "Likes"
msgstr ""
#: ../../mod/profiles.php:329
msgid "Dislikes"
msgstr ""
#: ../../mod/profiles.php:333
msgid "Work/Employment"
msgstr ""
#: ../../mod/profiles.php:336
msgid "Religion"
msgstr ""
#: ../../mod/profiles.php:340
msgid "Political Views"
msgstr ""
#: ../../mod/profiles.php:344
msgid "Gender"
msgstr ""
#: ../../mod/profiles.php:348
msgid "Sexual Preference"
msgstr ""
#: ../../mod/profiles.php:352
msgid "Homepage"
msgstr ""
#: ../../mod/profiles.php:356
msgid "Interests"
msgstr ""
#: ../../mod/profiles.php:360
msgid "Address"
msgstr ""
#: ../../mod/profiles.php:367 ../../addon/dav/common/wdcal_edit.inc.php:183
#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
msgid "Location"
msgstr ""
#: ../../mod/profiles.php:450
msgid "Profile updated."
msgstr ""
#: ../../mod/profiles.php:517
msgid " and "
msgstr ""
#: ../../mod/profiles.php:525
msgid "public profile"
msgstr ""
#: ../../mod/profiles.php:528
#: ../../mod/regmod.php:100
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgid "Registration revoked for %s"
msgstr ""
#: ../../mod/profiles.php:529
#, php-format
msgid " - Visit %1$s's %2$s"
#: ../../mod/regmod.php:112
msgid "Please login."
msgstr ""
#: ../../mod/profiles.php:532
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
#: ../../mod/attach.php:8
msgid "Item not available."
msgstr ""
#: ../../mod/profiles.php:605
msgid "Hide your contact/friend list from viewers of this profile?"
#: ../../mod/attach.php:20
msgid "Item was not found."
msgstr ""
#: ../../mod/profiles.php:625
msgid "Edit Profile Details"
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr ""
#: ../../mod/profiles.php:627
msgid "Change Profile Photo"
msgstr ""
#: ../../mod/profiles.php:628
msgid "View this profile"
msgstr ""
#: ../../mod/profiles.php:629
msgid "Create a new profile using these settings"
msgstr ""
#: ../../mod/profiles.php:630
msgid "Clone this profile"
msgstr ""
#: ../../mod/profiles.php:631
msgid "Delete this profile"
msgstr ""
#: ../../mod/profiles.php:632
msgid "Profile Name:"
msgstr ""
#: ../../mod/profiles.php:633
msgid "Your Full Name:"
msgstr ""
#: ../../mod/profiles.php:634
msgid "Title/Description:"
msgstr ""
#: ../../mod/profiles.php:635
msgid "Your Gender:"
msgstr ""
#: ../../mod/profiles.php:636
#, php-format
msgid "Birthday (%s):"
msgstr ""
#: ../../mod/profiles.php:637
msgid "Street Address:"
msgstr ""
#: ../../mod/profiles.php:638
msgid "Locality/City:"
msgstr ""
#: ../../mod/profiles.php:639
msgid "Postal/Zip Code:"
msgstr ""
#: ../../mod/profiles.php:640
msgid "Country:"
msgstr ""
#: ../../mod/profiles.php:641
msgid "Region/State:"
msgstr ""
#: ../../mod/profiles.php:642
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
#: ../../mod/profiles.php:643
msgid "Who: (if applicable)"
msgstr ""
#: ../../mod/profiles.php:644
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
#: ../../mod/profiles.php:645
msgid "Since [date]:"
msgstr ""
#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46
msgid "Sexual Preference:"
msgstr ""
#: ../../mod/profiles.php:647
msgid "Homepage URL:"
msgstr ""
#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50
msgid "Hometown:"
msgstr ""
#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54
msgid "Political Views:"
msgstr ""
#: ../../mod/profiles.php:650
msgid "Religious Views:"
msgstr ""
#: ../../mod/profiles.php:651
msgid "Public Keywords:"
msgstr ""
#: ../../mod/profiles.php:652
msgid "Private Keywords:"
msgstr ""
#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62
msgid "Likes:"
msgstr ""
#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64
msgid "Dislikes:"
msgstr ""
#: ../../mod/profiles.php:655
msgid "Example: fishing photography software"
msgstr ""
#: ../../mod/profiles.php:656
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
#: ../../mod/profiles.php:657
msgid "(Used for searching profiles, never shown to others)"
msgstr ""
#: ../../mod/profiles.php:658
msgid "Tell us about yourself..."
msgstr ""
#: ../../mod/profiles.php:659
msgid "Hobbies/Interests"
msgstr ""
#: ../../mod/profiles.php:660
msgid "Contact information and Social Networks"
msgstr ""
#: ../../mod/profiles.php:661
msgid "Musical interests"
msgstr ""
#: ../../mod/profiles.php:662
msgid "Books, literature"
msgstr ""
#: ../../mod/profiles.php:663
msgid "Television"
msgstr ""
#: ../../mod/profiles.php:664
msgid "Film/dance/culture/entertainment"
msgstr ""
#: ../../mod/profiles.php:665
msgid "Love/romance"
msgstr ""
#: ../../mod/profiles.php:666
msgid "Work/employment"
msgstr ""
#: ../../mod/profiles.php:667
msgid "School/education"
msgstr ""
#: ../../mod/profiles.php:672
#: ../../mod/removeme.php:46
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr ""
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
#: ../../addon/forumdirectory/forumdirectory.php:133
msgid "Age: "
msgstr ""
#: ../../mod/profiles.php:721
msgid "Edit/Manage Profiles"
msgstr ""
#: ../../mod/profiles.php:722 ../../boot.php:1345
msgid "Change profile photo"
msgstr ""
#: ../../mod/profiles.php:723 ../../boot.php:1346
msgid "Create New Profile"
msgstr ""
#: ../../mod/profiles.php:734 ../../boot.php:1356
msgid "Profile Image"
msgstr ""
#: ../../mod/profiles.php:736 ../../boot.php:1359
msgid "visible to everybody"
msgstr ""
#: ../../mod/profiles.php:737 ../../boot.php:1360
msgid "Edit visibility"
msgstr ""
#: ../../mod/filer.php:30 ../../include/conversation.php:944
#: ../../include/conversation.php:962
msgid "Save to Folder:"
msgstr ""
#: ../../mod/filer.php:30
msgid "- select -"
msgstr ""
#: ../../mod/tagger.php:95 ../../include/conversation.php:266
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr ""
#: ../../mod/delegate.php:121 ../../include/nav.php:165
msgid "Delegate Page Management"
msgstr ""
#: ../../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 ""
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr ""
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr ""
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr ""
#: ../../mod/delegate.php:131
msgid "Add"
msgstr ""
#: ../../mod/delegate.php:132
msgid "No entries."
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr ""
#: ../../mod/babel.php:17
@ -4847,13 +6895,1315 @@ msgstr ""
msgid "diaspora2bb: "
msgstr ""
#: ../../mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr ""
#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr ""
#: ../../mod/search.php:21 ../../mod/network.php:224
msgid "Remove term"
msgstr ""
#: ../../mod/search.php:162 ../../mod/search.php:188
#: ../../mod/community.php:61 ../../mod/community.php:86
msgid "No results."
msgstr ""
#: ../../mod/community.php:23
msgid "Not available."
msgstr ""
#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
msgid "Could not access contact record."
msgstr ""
#: ../../mod/contacts.php:99
msgid "Could not locate selected profile."
msgstr ""
#: ../../mod/contacts.php:122
msgid "Contact updated."
msgstr ""
#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
msgid "Failed to update contact record."
msgstr ""
#: ../../mod/contacts.php:187
msgid "Contact has been blocked"
msgstr ""
#: ../../mod/contacts.php:187
msgid "Contact has been unblocked"
msgstr ""
#: ../../mod/contacts.php:201
msgid "Contact has been ignored"
msgstr ""
#: ../../mod/contacts.php:201
msgid "Contact has been unignored"
msgstr ""
#: ../../mod/contacts.php:220
msgid "Contact has been archived"
msgstr ""
#: ../../mod/contacts.php:220
msgid "Contact has been unarchived"
msgstr ""
#: ../../mod/contacts.php:244
msgid "Do you really want to delete this contact?"
msgstr ""
#: ../../mod/contacts.php:263
msgid "Contact has been removed."
msgstr ""
#: ../../mod/contacts.php:301
#, php-format
msgid "You are mutual friends with %s"
msgstr ""
#: ../../mod/contacts.php:305
#, php-format
msgid "You are sharing with %s"
msgstr ""
#: ../../mod/contacts.php:310
#, php-format
msgid "%s is sharing with you"
msgstr ""
#: ../../mod/contacts.php:327
msgid "Private communications are not available for this contact."
msgstr ""
#: ../../mod/contacts.php:330
msgid "Never"
msgstr ""
#: ../../mod/contacts.php:334
msgid "(Update was successful)"
msgstr ""
#: ../../mod/contacts.php:334
msgid "(Update was not successful)"
msgstr ""
#: ../../mod/contacts.php:336
msgid "Suggest friends"
msgstr ""
#: ../../mod/contacts.php:340
#, php-format
msgid "Network type: %s"
msgstr ""
#: ../../mod/contacts.php:348
msgid "View all contacts"
msgstr ""
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr ""
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
msgid "Unignore"
msgstr ""
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
#: ../../mod/notifications.php:210
msgid "Ignore"
msgstr ""
#: ../../mod/contacts.php:362
msgid "Toggle Ignored status"
msgstr ""
#: ../../mod/contacts.php:366
msgid "Unarchive"
msgstr ""
#: ../../mod/contacts.php:366
msgid "Archive"
msgstr ""
#: ../../mod/contacts.php:369
msgid "Toggle Archive status"
msgstr ""
#: ../../mod/contacts.php:372
msgid "Repair"
msgstr ""
#: ../../mod/contacts.php:375
msgid "Advanced Contact Settings"
msgstr ""
#: ../../mod/contacts.php:381
msgid "Communications lost with this contact!"
msgstr ""
#: ../../mod/contacts.php:384
msgid "Contact Editor"
msgstr ""
#: ../../mod/contacts.php:387
msgid "Profile Visibility"
msgstr ""
#: ../../mod/contacts.php:388
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr ""
#: ../../mod/contacts.php:389
msgid "Contact Information / Notes"
msgstr ""
#: ../../mod/contacts.php:390
msgid "Edit contact notes"
msgstr ""
#: ../../mod/contacts.php:396
msgid "Block/Unblock contact"
msgstr ""
#: ../../mod/contacts.php:397
msgid "Ignore contact"
msgstr ""
#: ../../mod/contacts.php:398
msgid "Repair URL settings"
msgstr ""
#: ../../mod/contacts.php:399
msgid "View conversations"
msgstr ""
#: ../../mod/contacts.php:401
msgid "Delete contact"
msgstr ""
#: ../../mod/contacts.php:405
msgid "Last update:"
msgstr ""
#: ../../mod/contacts.php:407
msgid "Update public posts"
msgstr ""
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr ""
#: ../../mod/contacts.php:417
msgid "Currently ignored"
msgstr ""
#: ../../mod/contacts.php:418
msgid "Currently archived"
msgstr ""
#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
#: ../../mod/notifications.php:204
msgid "Hide this contact from others"
msgstr ""
#: ../../mod/contacts.php:419
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: ../../mod/contacts.php:470
msgid "Suggestions"
msgstr ""
#: ../../mod/contacts.php:473
msgid "Suggest potential friends"
msgstr ""
#: ../../mod/contacts.php:476 ../../mod/group.php:194
msgid "All Contacts"
msgstr ""
#: ../../mod/contacts.php:479
msgid "Show all contacts"
msgstr ""
#: ../../mod/contacts.php:482
msgid "Unblocked"
msgstr ""
#: ../../mod/contacts.php:485
msgid "Only show unblocked contacts"
msgstr ""
#: ../../mod/contacts.php:489
msgid "Blocked"
msgstr ""
#: ../../mod/contacts.php:492
msgid "Only show blocked contacts"
msgstr ""
#: ../../mod/contacts.php:496
msgid "Ignored"
msgstr ""
#: ../../mod/contacts.php:499
msgid "Only show ignored contacts"
msgstr ""
#: ../../mod/contacts.php:503
msgid "Archived"
msgstr ""
#: ../../mod/contacts.php:506
msgid "Only show archived contacts"
msgstr ""
#: ../../mod/contacts.php:510
msgid "Hidden"
msgstr ""
#: ../../mod/contacts.php:513
msgid "Only show hidden contacts"
msgstr ""
#: ../../mod/contacts.php:561
msgid "Mutual Friendship"
msgstr ""
#: ../../mod/contacts.php:565
msgid "is a fan of yours"
msgstr ""
#: ../../mod/contacts.php:569
msgid "you are a fan of"
msgstr ""
#: ../../mod/contacts.php:611
msgid "Search your contacts"
msgstr ""
#: ../../mod/settings.php:35
msgid "Additional features"
msgstr ""
#: ../../mod/settings.php:40 ../../mod/uexport.php:14
msgid "Display settings"
msgstr ""
#: ../../mod/settings.php:46 ../../mod/uexport.php:20
msgid "Connector settings"
msgstr ""
#: ../../mod/settings.php:51 ../../mod/uexport.php:25
msgid "Plugin settings"
msgstr ""
#: ../../mod/settings.php:56 ../../mod/uexport.php:30
msgid "Connected apps"
msgstr ""
#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
msgid "Export personal data"
msgstr ""
#: ../../mod/settings.php:66 ../../mod/uexport.php:40
msgid "Remove account"
msgstr ""
#: ../../mod/settings.php:118
msgid "Missing some important data!"
msgstr ""
#: ../../mod/settings.php:121 ../../mod/settings.php:586
msgid "Update"
msgstr ""
#: ../../mod/settings.php:227
msgid "Failed to connect with email account using the settings provided."
msgstr ""
#: ../../mod/settings.php:232
msgid "Email settings updated."
msgstr ""
#: ../../mod/settings.php:247
msgid "Features updated"
msgstr ""
#: ../../mod/settings.php:307
msgid "Passwords do not match. Password unchanged."
msgstr ""
#: ../../mod/settings.php:312
msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
#: ../../mod/settings.php:323
msgid "Password changed."
msgstr ""
#: ../../mod/settings.php:325
msgid "Password update failed. Please try again."
msgstr ""
#: ../../mod/settings.php:390
msgid " Please use a shorter name."
msgstr ""
#: ../../mod/settings.php:392
msgid " Name too short."
msgstr ""
#: ../../mod/settings.php:398
msgid " Not valid email."
msgstr ""
#: ../../mod/settings.php:400
msgid " Cannot change to that email."
msgstr ""
#: ../../mod/settings.php:454
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: ../../mod/settings.php:458
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: ../../mod/settings.php:559 ../../mod/settings.php:585
#: ../../mod/settings.php:621
msgid "Add application"
msgstr ""
#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Redirect"
msgstr ""
#: ../../mod/settings.php:566 ../../mod/settings.php:592
msgid "Icon url"
msgstr ""
#: ../../mod/settings.php:577
msgid "You can't edit this application."
msgstr ""
#: ../../mod/settings.php:620
msgid "Connected Apps"
msgstr ""
#: ../../mod/settings.php:622 ../../mod/content.php:728
#: ../../mod/editpost.php:109 ../../object/Item.php:110
msgid "Edit"
msgstr ""
#: ../../mod/settings.php:624
msgid "Client key starts with"
msgstr ""
#: ../../mod/settings.php:625
msgid "No name"
msgstr ""
#: ../../mod/settings.php:626
msgid "Remove authorization"
msgstr ""
#: ../../mod/settings.php:638
msgid "No Plugin settings configured"
msgstr ""
#: ../../mod/settings.php:660
msgid "Off"
msgstr ""
#: ../../mod/settings.php:660
msgid "On"
msgstr ""
#: ../../mod/settings.php:668
msgid "Additional Features"
msgstr ""
#: ../../mod/settings.php:681 ../../mod/settings.php:682
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr ""
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "enabled"
msgstr ""
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "disabled"
msgstr ""
#: ../../mod/settings.php:682
msgid "StatusNet"
msgstr ""
#: ../../mod/settings.php:714
msgid "Email access is disabled on this site."
msgstr ""
#: ../../mod/settings.php:721
msgid "Connector Settings"
msgstr ""
#: ../../mod/settings.php:726
msgid "Email/Mailbox Setup"
msgstr ""
#: ../../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 ""
#: ../../mod/settings.php:728
msgid "Last successful email check:"
msgstr ""
#: ../../mod/settings.php:730
msgid "IMAP server name:"
msgstr ""
#: ../../mod/settings.php:731
msgid "IMAP port:"
msgstr ""
#: ../../mod/settings.php:732
msgid "Security:"
msgstr ""
#: ../../mod/settings.php:733
msgid "Email login name:"
msgstr ""
#: ../../mod/settings.php:734
msgid "Email password:"
msgstr ""
#: ../../mod/settings.php:735
msgid "Reply-to address:"
msgstr ""
#: ../../mod/settings.php:736
msgid "Send public posts to all email contacts:"
msgstr ""
#: ../../mod/settings.php:737
msgid "Action after import:"
msgstr ""
#: ../../mod/settings.php:737
msgid "Mark as seen"
msgstr ""
#: ../../mod/settings.php:737
msgid "Move to folder"
msgstr ""
#: ../../mod/settings.php:738
msgid "Move to folder:"
msgstr ""
#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr ""
#: ../../mod/settings.php:815 ../../mod/settings.php:826
msgid "Display Theme:"
msgstr ""
#: ../../mod/settings.php:816
msgid "Mobile Theme:"
msgstr ""
#: ../../mod/settings.php:817
msgid "Update browser every xx seconds"
msgstr ""
#: ../../mod/settings.php:817
msgid "Minimum of 10 seconds, no maximum"
msgstr ""
#: ../../mod/settings.php:818
msgid "Number of items to display per page:"
msgstr ""
#: ../../mod/settings.php:818
msgid "Maximum of 100 items"
msgstr ""
#: ../../mod/settings.php:819
msgid "Don't show emoticons"
msgstr ""
#: ../../mod/settings.php:895
msgid "Normal Account Page"
msgstr ""
#: ../../mod/settings.php:896
msgid "This account is a normal personal profile"
msgstr ""
#: ../../mod/settings.php:899
msgid "Soapbox Page"
msgstr ""
#: ../../mod/settings.php:900
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
#: ../../mod/settings.php:903
msgid "Community Forum/Celebrity Account"
msgstr ""
#: ../../mod/settings.php:904
msgid "Automatically approve all connection/friend requests as read-write fans"
msgstr ""
#: ../../mod/settings.php:907
msgid "Automatic Friend Page"
msgstr ""
#: ../../mod/settings.php:908
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
#: ../../mod/settings.php:911
msgid "Private Forum [Experimental]"
msgstr ""
#: ../../mod/settings.php:912
msgid "Private forum - approved members only"
msgstr ""
#: ../../mod/settings.php:924
msgid "OpenID:"
msgstr ""
#: ../../mod/settings.php:924
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
#: ../../mod/settings.php:934
msgid "Publish your default profile in your local site directory?"
msgstr ""
#: ../../mod/settings.php:940
msgid "Publish your default profile in the global social directory?"
msgstr ""
#: ../../mod/settings.php:948
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
#: ../../mod/settings.php:952
msgid "Hide your profile details from unknown viewers?"
msgstr ""
#: ../../mod/settings.php:957
msgid "Allow friends to post to your profile page?"
msgstr ""
#: ../../mod/settings.php:963
msgid "Allow friends to tag your posts?"
msgstr ""
#: ../../mod/settings.php:969
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
#: ../../mod/settings.php:975
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: ../../mod/settings.php:983
msgid "Profile is <strong>not published</strong>."
msgstr ""
#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
msgid "or"
msgstr ""
#: ../../mod/settings.php:991
msgid "Your Identity Address is"
msgstr ""
#: ../../mod/settings.php:1002
msgid "Automatically expire posts after this many days:"
msgstr ""
#: ../../mod/settings.php:1002
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
#: ../../mod/settings.php:1003
msgid "Advanced expiration settings"
msgstr ""
#: ../../mod/settings.php:1004
msgid "Advanced Expiration"
msgstr ""
#: ../../mod/settings.php:1005
msgid "Expire posts:"
msgstr ""
#: ../../mod/settings.php:1006
msgid "Expire personal notes:"
msgstr ""
#: ../../mod/settings.php:1007
msgid "Expire starred posts:"
msgstr ""
#: ../../mod/settings.php:1008
msgid "Expire photos:"
msgstr ""
#: ../../mod/settings.php:1009
msgid "Only expire posts by others:"
msgstr ""
#: ../../mod/settings.php:1035
msgid "Account Settings"
msgstr ""
#: ../../mod/settings.php:1043
msgid "Password Settings"
msgstr ""
#: ../../mod/settings.php:1044
msgid "New Password:"
msgstr ""
#: ../../mod/settings.php:1045
msgid "Confirm:"
msgstr ""
#: ../../mod/settings.php:1045
msgid "Leave password fields blank unless changing"
msgstr ""
#: ../../mod/settings.php:1049
msgid "Basic Settings"
msgstr ""
#: ../../mod/settings.php:1051
msgid "Email Address:"
msgstr ""
#: ../../mod/settings.php:1052
msgid "Your Timezone:"
msgstr ""
#: ../../mod/settings.php:1053
msgid "Default Post Location:"
msgstr ""
#: ../../mod/settings.php:1054
msgid "Use Browser Location:"
msgstr ""
#: ../../mod/settings.php:1057
msgid "Security and Privacy Settings"
msgstr ""
#: ../../mod/settings.php:1059
msgid "Maximum Friend Requests/Day:"
msgstr ""
#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
msgid "(to prevent spam abuse)"
msgstr ""
#: ../../mod/settings.php:1060
msgid "Default Post Permissions"
msgstr ""
#: ../../mod/settings.php:1061
msgid "(click to open/close)"
msgstr ""
#: ../../mod/settings.php:1072
msgid "Default Private Post"
msgstr ""
#: ../../mod/settings.php:1073
msgid "Default Public Post"
msgstr ""
#: ../../mod/settings.php:1077
msgid "Default Permissions for New Posts"
msgstr ""
#: ../../mod/settings.php:1089
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: ../../mod/settings.php:1092
msgid "Notification Settings"
msgstr ""
#: ../../mod/settings.php:1093
msgid "By default post a status message when:"
msgstr ""
#: ../../mod/settings.php:1094
msgid "accepting a friend request"
msgstr ""
#: ../../mod/settings.php:1095
msgid "joining a forum/community"
msgstr ""
#: ../../mod/settings.php:1096
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:1097
msgid "Send a notification email when:"
msgstr ""
#: ../../mod/settings.php:1098
msgid "You receive an introduction"
msgstr ""
#: ../../mod/settings.php:1099
msgid "Your introductions are confirmed"
msgstr ""
#: ../../mod/settings.php:1100
msgid "Someone writes on your profile wall"
msgstr ""
#: ../../mod/settings.php:1101
msgid "Someone writes a followup comment"
msgstr ""
#: ../../mod/settings.php:1102
msgid "You receive a private message"
msgstr ""
#: ../../mod/settings.php:1103
msgid "You receive a friend suggestion"
msgstr ""
#: ../../mod/settings.php:1104
msgid "You are tagged in a post"
msgstr ""
#: ../../mod/settings.php:1105
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: ../../mod/settings.php:1108
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: ../../mod/settings.php:1109
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: ../../mod/content.php:119 ../../mod/network.php:596
msgid "No such group"
msgstr ""
#: ../../mod/content.php:130 ../../mod/network.php:607
msgid "Group is empty"
msgstr ""
#: ../../mod/content.php:134 ../../mod/network.php:611
msgid "Group: "
msgstr ""
#: ../../mod/content.php:603 ../../object/Item.php:313
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/content.php:684 ../../object/Item.php:204
msgid "like"
msgstr ""
#: ../../mod/content.php:685 ../../object/Item.php:205
msgid "dislike"
msgstr ""
#: ../../mod/content.php:687 ../../object/Item.php:207
msgid "Share this"
msgstr ""
#: ../../mod/content.php:687 ../../object/Item.php:207
msgid "share"
msgstr ""
#: ../../mod/content.php:711 ../../object/Item.php:605
msgid "Bold"
msgstr ""
#: ../../mod/content.php:712 ../../object/Item.php:606
msgid "Italic"
msgstr ""
#: ../../mod/content.php:713 ../../object/Item.php:607
msgid "Underline"
msgstr ""
#: ../../mod/content.php:714 ../../object/Item.php:608
msgid "Quote"
msgstr ""
#: ../../mod/content.php:715 ../../object/Item.php:609
msgid "Code"
msgstr ""
#: ../../mod/content.php:716 ../../object/Item.php:610
msgid "Image"
msgstr ""
#: ../../mod/content.php:717 ../../object/Item.php:611
msgid "Link"
msgstr ""
#: ../../mod/content.php:718 ../../object/Item.php:612
msgid "Video"
msgstr ""
#: ../../mod/content.php:753 ../../object/Item.php:183
msgid "add star"
msgstr ""
#: ../../mod/content.php:754 ../../object/Item.php:184
msgid "remove star"
msgstr ""
#: ../../mod/content.php:755 ../../object/Item.php:185
msgid "toggle star status"
msgstr ""
#: ../../mod/content.php:758 ../../object/Item.php:188
msgid "starred"
msgstr ""
#: ../../mod/content.php:759 ../../object/Item.php:193
msgid "add tag"
msgstr ""
#: ../../mod/content.php:763 ../../object/Item.php:123
msgid "save to folder"
msgstr ""
#: ../../mod/content.php:854 ../../object/Item.php:260
msgid "to"
msgstr ""
#: ../../mod/content.php:855 ../../object/Item.php:262
msgid "Wall-to-Wall"
msgstr ""
#: ../../mod/content.php:856 ../../object/Item.php:263
msgid "via Wall-To-Wall:"
msgstr ""
#: ../../mod/share.php:44
msgid "link"
msgstr ""
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
msgstr ""
#: ../../mod/crepair.php:104
msgid "Contact update failed."
msgstr ""
#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
msgid "Contact not found."
msgstr ""
#: ../../mod/crepair.php:135
msgid "Repair Contact Settings"
msgstr ""
#: ../../mod/crepair.php:137
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
"information your communications with this contact may stop working."
msgstr ""
#: ../../mod/crepair.php:138
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr ""
#: ../../mod/crepair.php:144
msgid "Return to contact editor"
msgstr ""
#: ../../mod/crepair.php:149
msgid "Account Nickname"
msgstr ""
#: ../../mod/crepair.php:150
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: ../../mod/crepair.php:151
msgid "Account URL"
msgstr ""
#: ../../mod/crepair.php:152
msgid "Friend Request URL"
msgstr ""
#: ../../mod/crepair.php:153
msgid "Friend Confirm URL"
msgstr ""
#: ../../mod/crepair.php:154
msgid "Notification Endpoint URL"
msgstr ""
#: ../../mod/crepair.php:155
msgid "Poll/Feed URL"
msgstr ""
#: ../../mod/crepair.php:156
msgid "New photo from this URL"
msgstr ""
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr ""
#: ../../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 ""
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr ""
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr ""
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr ""
#: ../../mod/delegate.php:131
msgid "Add"
msgstr ""
#: ../../mod/delegate.php:132
msgid "No entries."
msgstr ""
#: ../../mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: ../../mod/poke.php:194
msgid "Recipient"
msgstr ""
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr ""
#: ../../mod/poke.php:198
msgid "Make this post private"
msgstr ""
#: ../../mod/dfrn_confirm.php:119
msgid ""
"This may occasionally happen if contact was requested by both persons and it "
"has already been approved."
msgstr ""
#: ../../mod/dfrn_confirm.php:237
msgid "Response from remote site was not understood."
msgstr ""
#: ../../mod/dfrn_confirm.php:246
msgid "Unexpected response from remote site: "
msgstr ""
#: ../../mod/dfrn_confirm.php:254
msgid "Confirmation completed successfully."
msgstr ""
#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
#: ../../mod/dfrn_confirm.php:277
msgid "Remote site reported: "
msgstr ""
#: ../../mod/dfrn_confirm.php:268
msgid "Temporary failure. Please wait and try again."
msgstr ""
#: ../../mod/dfrn_confirm.php:275
msgid "Introduction failed or was revoked."
msgstr ""
#: ../../mod/dfrn_confirm.php:420
msgid "Unable to set contact photo."
msgstr ""
#: ../../mod/dfrn_confirm.php:562
#, php-format
msgid "No user record found for '%s' "
msgstr ""
#: ../../mod/dfrn_confirm.php:572
msgid "Our site encryption key is apparently messed up."
msgstr ""
#: ../../mod/dfrn_confirm.php:583
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr ""
#: ../../mod/dfrn_confirm.php:604
msgid "Contact record was not found for you on our site."
msgstr ""
#: ../../mod/dfrn_confirm.php:618
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr ""
#: ../../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 ""
#: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system."
msgstr ""
#: ../../mod/dfrn_confirm.php:716
msgid "Unable to update your contact profile details on our system"
msgstr ""
#: ../../mod/dfrn_confirm.php:751
#, php-format
msgid "Connection accepted at %s"
msgstr ""
#: ../../mod/dfrn_confirm.php:800
#, php-format
msgid "%1$s has joined %2$s"
msgstr ""
#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
#, php-format
msgid "%1$s welcomes %2$s"
msgstr ""
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
msgstr ""
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
msgid "Profile location is not valid or does not contain profile information."
msgstr ""
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
msgid "Warning: profile location has no identifiable owner name."
msgstr ""
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
msgid "Warning: profile location has no profile photo."
msgstr ""
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/dfrn_request.php:170
msgid "Introduction complete."
msgstr ""
#: ../../mod/dfrn_request.php:209
msgid "Unrecoverable protocol error."
msgstr ""
#: ../../mod/dfrn_request.php:237
msgid "Profile unavailable."
msgstr ""
#: ../../mod/dfrn_request.php:262
#, php-format
msgid "%s has received too many connection requests today."
msgstr ""
#: ../../mod/dfrn_request.php:263
msgid "Spam protection measures have been invoked."
msgstr ""
#: ../../mod/dfrn_request.php:264
msgid "Friends are advised to please try again in 24 hours."
msgstr ""
#: ../../mod/dfrn_request.php:326
msgid "Invalid locator"
msgstr ""
#: ../../mod/dfrn_request.php:335
msgid "Invalid email address."
msgstr ""
#: ../../mod/dfrn_request.php:362
msgid "This account has not been configured for email. Request failed."
msgstr ""
#: ../../mod/dfrn_request.php:458
msgid "Unable to resolve your name at the provided location."
msgstr ""
#: ../../mod/dfrn_request.php:471
msgid "You have already introduced yourself here."
msgstr ""
#: ../../mod/dfrn_request.php:475
#, php-format
msgid "Apparently you are already friends with %s."
msgstr ""
#: ../../mod/dfrn_request.php:496
msgid "Invalid profile URL."
msgstr ""
#: ../../mod/dfrn_request.php:592
msgid "Your introduction has been sent."
msgstr ""
#: ../../mod/dfrn_request.php:645
msgid "Please login to confirm introduction."
msgstr ""
#: ../../mod/dfrn_request.php:659
msgid ""
"Incorrect identity currently logged in. Please login to <strong>this</"
"strong> profile."
msgstr ""
#: ../../mod/dfrn_request.php:670
msgid "Hide this contact"
msgstr ""
#: ../../mod/dfrn_request.php:673
#, php-format
msgid "Welcome home %s."
msgstr ""
#: ../../mod/dfrn_request.php:674
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr ""
#: ../../mod/dfrn_request.php:675
msgid "Confirm"
msgstr ""
#: ../../mod/dfrn_request.php:811
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: ../../mod/dfrn_request.php:827
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr ""
#: ../../mod/dfrn_request.php:829
msgid ""
"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>."
msgstr ""
#: ../../mod/dfrn_request.php:832
msgid "Friend/Connection Request"
msgstr ""
#: ../../mod/dfrn_request.php:833
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
#: ../../mod/dfrn_request.php:834
msgid "Please answer the following:"
msgstr ""
#: ../../mod/dfrn_request.php:835
#, php-format
msgid "Does %s know you?"
msgstr ""
#: ../../mod/dfrn_request.php:838
msgid "Add a personal note:"
msgstr ""
#: ../../mod/dfrn_request.php:841
msgid "StatusNet/Federated Social Web"
msgstr ""
#: ../../mod/dfrn_request.php:843
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search "
"bar."
msgstr ""
#: ../../mod/dfrn_request.php:844
msgid "Your Identity Address:"
msgstr ""
#: ../../mod/dfrn_request.php:847
msgid "Submit Request"
msgstr ""
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: ../../mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr ""
#: ../../mod/suggest.php:72
@ -4866,51 +8216,580 @@ msgstr ""
msgid "Ignore/Hide"
msgstr ""
#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
#: ../../view/theme/diabook/theme.php:518
msgid "Global Directory"
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr ""
#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
msgid "Find on this site"
#: ../../mod/dirfind.php:60 ../../mod/match.php:65
msgid "No matches"
msgstr ""
#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
msgid "Site Directory"
#: ../../mod/display.php:99 ../../mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr ""
#: ../../mod/directory.php:114
#: ../../addon/forumdirectory/forumdirectory.php:136
msgid "Gender: "
#: ../../mod/display.php:177
msgid "Item has been removed."
msgstr ""
#: ../../mod/directory.php:136
#: ../../addon/forumdirectory/forumdirectory.php:158
#: ../../include/profile_advanced.php:17 ../../boot.php:1381
msgid "Gender:"
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr ""
#: ../../mod/directory.php:138
#: ../../addon/forumdirectory/forumdirectory.php:160
#: ../../include/profile_advanced.php:37 ../../boot.php:1384
msgid "Status:"
#: ../../mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr ""
#: ../../mod/directory.php:140
#: ../../addon/forumdirectory/forumdirectory.php:162
#: ../../include/profile_advanced.php:48 ../../boot.php:1386
msgid "Homepage:"
#: ../../mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr ""
#: ../../mod/directory.php:142
#: ../../addon/forumdirectory/forumdirectory.php:164
#: ../../include/profile_advanced.php:58
msgid "About:"
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr ""
#: ../../mod/directory.php:187
#: ../../addon/forumdirectory/forumdirectory.php:201
msgid "No entries (some entries may be hidden)."
#: ../../mod/editpost.php:39
msgid "Edit post"
msgstr ""
#: ../../mod/events.php:66
msgid "Event title and start time are required."
msgstr ""
#: ../../mod/events.php:291
msgid "l, F j"
msgstr ""
#: ../../mod/events.php:313
msgid "Edit event"
msgstr ""
#: ../../mod/events.php:371
msgid "Create New Event"
msgstr ""
#: ../../mod/events.php:446
msgid "hour:minute"
msgstr ""
#: ../../mod/events.php:456
msgid "Event details"
msgstr ""
#: ../../mod/events.php:457
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
msgstr ""
#: ../../mod/events.php:459
msgid "Event Starts:"
msgstr ""
#: ../../mod/events.php:459 ../../mod/events.php:473
msgid "Required"
msgstr ""
#: ../../mod/events.php:462
msgid "Finish date/time is not known or not relevant"
msgstr ""
#: ../../mod/events.php:464
msgid "Event Finishes:"
msgstr ""
#: ../../mod/events.php:467
msgid "Adjust for viewer timezone"
msgstr ""
#: ../../mod/events.php:469
msgid "Description:"
msgstr ""
#: ../../mod/events.php:473
msgid "Title:"
msgstr ""
#: ../../mod/events.php:475
msgid "Share this event"
msgstr ""
#: ../../mod/fbrowser.php:113
msgid "Files"
msgstr ""
#: ../../mod/uexport.php:72
msgid "Export account"
msgstr ""
#: ../../mod/uexport.php:72
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr ""
#: ../../mod/uexport.php:73
msgid "Export all"
msgstr ""
#: ../../mod/uexport.php:73
msgid ""
"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)"
msgstr ""
#: ../../mod/filer.php:30
msgid "- select -"
msgstr ""
#: ../../mod/uimport.php:64
msgid "Import"
msgstr ""
#: ../../mod/uimport.php:66
msgid "Move account"
msgstr ""
#: ../../mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../mod/uimport.php:70
msgid "Account file"
msgstr ""
#: ../../mod/uimport.php:70
msgid ""
"To export your accont, go to \"Settings->Export your porsonal data\" and "
"select \"Export account\""
msgstr ""
#: ../../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 ""
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr ""
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr ""
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr ""
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr ""
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr ""
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr ""
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr ""
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr ""
#: ../../mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr ""
#: ../../mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr ""
#: ../../mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr ""
#: ../../mod/group.php:29
msgid "Group created."
msgstr ""
#: ../../mod/group.php:35
msgid "Could not create group."
msgstr ""
#: ../../mod/group.php:47 ../../mod/group.php:140
msgid "Group not found."
msgstr ""
#: ../../mod/group.php:60
msgid "Group name changed."
msgstr ""
#: ../../mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr ""
#: ../../mod/group.php:94 ../../mod/group.php:180
msgid "Group Name: "
msgstr ""
#: ../../mod/group.php:113
msgid "Group removed."
msgstr ""
#: ../../mod/group.php:115
msgid "Unable to remove group."
msgstr ""
#: ../../mod/group.php:179
msgid "Group Editor"
msgstr ""
#: ../../mod/group.php:192
msgid "Members"
msgstr ""
#: ../../mod/hcard.php:10
msgid "No profile"
msgstr ""
#: ../../mod/help.php:79
msgid "Help:"
msgstr ""
#: ../../mod/help.php:90 ../../index.php:226
msgid "Not Found"
msgstr ""
#: ../../mod/help.php:93 ../../index.php:229
msgid "Page not found."
msgstr ""
#: ../../mod/viewcontacts.php:39
msgid "No contacts."
msgstr ""
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr ""
#: ../../mod/wall_attach.php:69
#, php-format
msgid "File exceeds size limit of %d"
msgstr ""
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr ""
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr ""
#: ../../mod/install.php:123
msgid "Could not connect to database."
msgstr ""
#: ../../mod/install.php:127
msgid "Could not create table."
msgstr ""
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
msgstr ""
#: ../../mod/install.php:138
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr ""
#: ../../mod/install.php:139 ../../mod/install.php:206
#: ../../mod/install.php:506
msgid "Please see the file \"INSTALL.txt\"."
msgstr ""
#: ../../mod/install.php:203
msgid "System check"
msgstr ""
#: ../../mod/install.php:208
msgid "Check again"
msgstr ""
#: ../../mod/install.php:227
msgid "Database connection"
msgstr ""
#: ../../mod/install.php:228
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr ""
#: ../../mod/install.php:229
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr ""
#: ../../mod/install.php:230
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr ""
#: ../../mod/install.php:234
msgid "Database Server Name"
msgstr ""
#: ../../mod/install.php:235
msgid "Database Login Name"
msgstr ""
#: ../../mod/install.php:236
msgid "Database Login Password"
msgstr ""
#: ../../mod/install.php:237
msgid "Database Name"
msgstr ""
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid "Site administrator email address"
msgstr ""
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr ""
#: ../../mod/install.php:242 ../../mod/install.php:280
msgid "Please select a default timezone for your website"
msgstr ""
#: ../../mod/install.php:267
msgid "Site settings"
msgstr ""
#: ../../mod/install.php:320
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr ""
#: ../../mod/install.php:321
msgid ""
"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>"
msgstr ""
#: ../../mod/install.php:325
msgid "PHP executable path"
msgstr ""
#: ../../mod/install.php:325
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
#: ../../mod/install.php:330
msgid "Command line PHP"
msgstr ""
#: ../../mod/install.php:339
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr ""
#: ../../mod/install.php:340
msgid "This is required for message delivery to work."
msgstr ""
#: ../../mod/install.php:342
msgid "PHP register_argc_argv"
msgstr ""
#: ../../mod/install.php:363
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr ""
#: ../../mod/install.php:364
msgid ""
"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
"installation.php\"."
msgstr ""
#: ../../mod/install.php:366
msgid "Generate encryption keys"
msgstr ""
#: ../../mod/install.php:373
msgid "libCurl PHP module"
msgstr ""
#: ../../mod/install.php:374
msgid "GD graphics PHP module"
msgstr ""
#: ../../mod/install.php:375
msgid "OpenSSL PHP module"
msgstr ""
#: ../../mod/install.php:376
msgid "mysqli PHP module"
msgstr ""
#: ../../mod/install.php:377
msgid "mb_string PHP module"
msgstr ""
#: ../../mod/install.php:382 ../../mod/install.php:384
msgid "Apache mod_rewrite module"
msgstr ""
#: ../../mod/install.php:382
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr ""
#: ../../mod/install.php:390
msgid "Error: libCURL PHP module required but not installed."
msgstr ""
#: ../../mod/install.php:394
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr ""
#: ../../mod/install.php:398
msgid "Error: openssl PHP module required but not installed."
msgstr ""
#: ../../mod/install.php:402
msgid "Error: mysqli PHP module required but not installed."
msgstr ""
#: ../../mod/install.php:406
msgid "Error: mb_string PHP module required but not installed."
msgstr ""
#: ../../mod/install.php:423
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:424
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:425
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:426
msgid ""
"You can alternatively skip this procedure and perform a manual installation. "
"Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
#: ../../mod/install.php:429
msgid ".htconfig.php is writable"
msgstr ""
#: ../../mod/install.php:439
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr ""
#: ../../mod/install.php:440
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:441
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has "
"write access to this folder."
msgstr ""
#: ../../mod/install.php:442
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:445
msgid "view/smarty3 is writable"
msgstr ""
#: ../../mod/install.php:457
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: ../../mod/install.php:459
msgid "Url rewrite is working"
msgstr ""
#: ../../mod/install.php:469
msgid ""
"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."
msgstr ""
#: ../../mod/install.php:493
msgid "Errors encountered creating database tables."
msgstr ""
#: ../../mod/install.php:504
msgid "<h1>What next</h1>"
msgstr ""
#: ../../mod/install.php:505
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
#, php-format
msgid "Image exceeds size limit of %d"
msgstr ""
#: ../../mod/invite.php:27
@ -4984,6 +8863,11 @@ msgstr ""
msgid "Enter email addresses, one per line:"
msgstr ""
#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
#: ../../mod/message.php:329 ../../mod/message.php:558
msgid "Your message:"
msgstr ""
#: ../../mod/invite.php:135
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
@ -5005,2894 +8889,777 @@ msgid ""
"important, please visit http://friendica.com"
msgstr ""
#: ../../mod/dfrn_confirm.php:119
msgid ""
"This may occasionally happen if contact was requested by both persons and it "
"has already been approved."
msgstr ""
#: ../../mod/dfrn_confirm.php:237
msgid "Response from remote site was not understood."
msgstr ""
#: ../../mod/dfrn_confirm.php:246
msgid "Unexpected response from remote site: "
msgstr ""
#: ../../mod/dfrn_confirm.php:254
msgid "Confirmation completed successfully."
msgstr ""
#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
#: ../../mod/dfrn_confirm.php:277
msgid "Remote site reported: "
msgstr ""
#: ../../mod/dfrn_confirm.php:268
msgid "Temporary failure. Please wait and try again."
msgstr ""
#: ../../mod/dfrn_confirm.php:275
msgid "Introduction failed or was revoked."
msgstr ""
#: ../../mod/dfrn_confirm.php:420
msgid "Unable to set contact photo."
msgstr ""
#: ../../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"
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr ""
#: ../../mod/dfrn_confirm.php:562
#, php-format
msgid "No user record found for '%s' "
#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
msgid "No recipient selected."
msgstr ""
#: ../../mod/dfrn_confirm.php:572
msgid "Our site encryption key is apparently messed up."
#: ../../mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr ""
#: ../../mod/dfrn_confirm.php:583
msgid "Empty site URL was provided or URL could not be decrypted by us."
#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
msgid "Message could not be sent."
msgstr ""
#: ../../mod/dfrn_confirm.php:604
msgid "Contact record was not found for you on our site."
#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
msgid "Message collection failure."
msgstr ""
#: ../../mod/dfrn_confirm.php:618
#, php-format
msgid "Site public key not available in contact record for URL %s."
#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
msgid "Message sent."
msgstr ""
#: ../../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."
#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
msgid "No recipient."
msgstr ""
#: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system."
#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
msgid "Send Private Message"
msgstr ""
#: ../../mod/dfrn_confirm.php:716
msgid "Unable to update your contact profile details on our system"
msgstr ""
#: ../../mod/dfrn_confirm.php:751
#, php-format
msgid "Connection accepted at %s"
msgstr ""
#: ../../mod/dfrn_confirm.php:800
#, php-format
msgid "%1$s has joined %2$s"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:33
#: ../../addon.old/fromgplus/fromgplus.php:29
msgid "Google+ Import Settings"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:36
#: ../../addon.old/fromgplus/fromgplus.php:32
msgid "Enable Google+ Import"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:39
#: ../../addon.old/fromgplus/fromgplus.php:35
msgid "Google Account ID"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:59
#: ../../addon.old/fromgplus/fromgplus.php:55
msgid "Google+ Import Settings saved."
msgstr ""
#: ../../addon/facebook/facebook.php:525
#: ../../addon.old/facebook/facebook.php:523
msgid "Facebook disabled"
msgstr ""
#: ../../addon/facebook/facebook.php:530
#: ../../addon.old/facebook/facebook.php:528
msgid "Updating contacts"
msgstr ""
#: ../../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 ""
#: ../../addon/facebook/facebook.php:560
#: ../../addon.old/facebook/facebook.php:558
msgid "Facebook Connect"
msgstr ""
#: ../../addon/facebook/facebook.php:566
#: ../../addon.old/facebook/facebook.php:564
msgid "Install Facebook connector for this account."
msgstr ""
#: ../../addon/facebook/facebook.php:573
#: ../../addon.old/facebook/facebook.php:571
msgid "Remove Facebook connector"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/facebook/facebook.php:598
#: ../../addon.old/facebook/facebook.php:596
msgid "Link all your Facebook friends and conversations on this website"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/facebook/facebook.php:611
#: ../../addon.old/facebook/facebook.php:609
msgid "Do not import your Facebook profile wall conversations"
msgstr ""
#: ../../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 ""
#: ../../addon/facebook/facebook.php:618
#: ../../addon.old/facebook/facebook.php:616
msgid "Comma separated applications to ignore"
msgstr ""
#: ../../addon/facebook/facebook.php:702
#: ../../addon.old/facebook/facebook.php:700
msgid "Problems with Facebook Real-Time Updates"
msgstr ""
#: ../../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 ""
#: ../../addon/facebook/facebook.php:731
#: ../../addon.old/facebook/facebook.php:729
msgid "Facebook Connector Settings"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/facebook/facebook.php:763
#: ../../addon.old/facebook/facebook.php:761
msgid "The given API Key seems to work correctly."
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/facebook/facebook.php:770
#: ../../addon.old/facebook/facebook.php:768
#, php-format
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr ""
#: ../../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 ""
#: ../../addon/facebook/facebook.php:775
#: ../../addon.old/facebook/facebook.php:773
msgid "Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:779
#: ../../addon.old/facebook/facebook.php:777
msgid "Real-Time Updates are activated."
msgstr ""
#: ../../addon/facebook/facebook.php:780
#: ../../addon.old/facebook/facebook.php:778
msgid "Deactivate Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:782
#: ../../addon.old/facebook/facebook.php:780
msgid "Real-Time Updates not activated."
msgstr ""
#: ../../addon/facebook/facebook.php:782
#: ../../addon.old/facebook/facebook.php:780
msgid "Activate Real-Time Updates"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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."
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:32
#: ../../addon.old/snautofollow/snautofollow.php:32
msgid "StatusNet AutoFollow settings updated."
#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
#: ../../mod/message.php:553
msgid "To:"
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:56
#: ../../addon.old/snautofollow/snautofollow.php:56
msgid "StatusNet AutoFollow Settings"
#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
#: ../../mod/message.php:555
msgid "Subject:"
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:58
#: ../../addon.old/snautofollow/snautofollow.php:58
msgid "Automatically follow any StatusNet followers/mentioners"
#: ../../mod/localtime.php:24
msgid "Time Conversion"
msgstr ""
#: ../../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)"
#: ../../mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
msgid "Cache Statistics"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
msgid "Number of items"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/fbpost/fbpost.php:183 ../../addon.old/fbpost/fbpost.php:172
msgid "Facebook Post disabled"
msgstr ""
#: ../../addon/fbpost/fbpost.php:210 ../../addon.old/fbpost/fbpost.php:199
msgid "Facebook Post"
msgstr ""
#: ../../addon/fbpost/fbpost.php:216 ../../addon.old/fbpost/fbpost.php:205
msgid "Install Facebook Post connector for this account."
msgstr ""
#: ../../addon/fbpost/fbpost.php:223 ../../addon.old/fbpost/fbpost.php:212
msgid "Remove Facebook Post connector"
msgstr ""
#: ../../addon/fbpost/fbpost.php:239
msgid "Suppress \"View on friendica\""
msgstr ""
#: ../../addon/fbpost/fbpost.php:243
msgid "Mirror wall posts from facebook to friendica."
msgstr ""
#: ../../addon/fbpost/fbpost.php:253
msgid "Post to page/group:"
msgstr ""
#: ../../addon/fbpost/fbpost.php:295 ../../addon.old/fbpost/fbpost.php:240
msgid "Facebook Post Settings"
msgstr ""
#: ../../addon/fbpost/fbpost.php:375
#: ../../mod/localtime.php:30
#, php-format
msgid "%s:"
msgid "UTC time: %s"
msgstr ""
#: ../../addon/widgets/widget_like.php:59
#: ../../addon.old/widgets/widget_like.php:58
#: ../../mod/localtime.php:33
#, php-format
msgid "%d person likes this"
msgid_plural "%d people like this"
msgid "Current timezone: %s"
msgstr ""
#: ../../mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr ""
#: ../../mod/localtime.php:41
msgid "Please select your timezone:"
msgstr ""
#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr ""
#: ../../mod/lostpass.php:17
msgid "No valid account found."
msgstr ""
#: ../../mod/lostpass.php:33
msgid "Password reset request issued. Check your email."
msgstr ""
#: ../../mod/lostpass.php:44
#, php-format
msgid "Password reset requested at %s"
msgstr ""
#: ../../mod/lostpass.php:66
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr ""
#: ../../mod/lostpass.php:84 ../../boot.php:1051
msgid "Password Reset"
msgstr ""
#: ../../mod/lostpass.php:85
msgid "Your password has been reset as requested."
msgstr ""
#: ../../mod/lostpass.php:86
msgid "Your new password is"
msgstr ""
#: ../../mod/lostpass.php:87
msgid "Save or copy your new password - and then"
msgstr ""
#: ../../mod/lostpass.php:88
msgid "click here to login"
msgstr ""
#: ../../mod/lostpass.php:89
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr ""
#: ../../mod/lostpass.php:107
#, php-format
msgid "Your password has been changed at %s"
msgstr ""
#: ../../mod/lostpass.php:122
msgid "Forgot your Password?"
msgstr ""
#: ../../mod/lostpass.php:123
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr ""
#: ../../mod/lostpass.php:124
msgid "Nickname or Email: "
msgstr ""
#: ../../mod/lostpass.php:125
msgid "Reset"
msgstr ""
#: ../../mod/maintenance.php:5
msgid "System down for maintenance"
msgstr ""
#: ../../mod/manage.php:106
msgid "Manage Identities and/or Pages"
msgstr ""
#: ../../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 ""
#: ../../mod/manage.php:108
msgid "Select an identity to manage: "
msgstr ""
#: ../../mod/match.php:12
msgid "Profile Match"
msgstr ""
#: ../../mod/match.php:20
msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
#: ../../mod/match.php:57
msgid "is interested in:"
msgstr ""
#: ../../mod/message.php:67
msgid "Unable to locate contact information."
msgstr ""
#: ../../mod/message.php:207
msgid "Do you really want to delete this message?"
msgstr ""
#: ../../mod/message.php:227
msgid "Message deleted."
msgstr ""
#: ../../mod/message.php:258
msgid "Conversation removed."
msgstr ""
#: ../../mod/message.php:371
msgid "No messages."
msgstr ""
#: ../../mod/message.php:378
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: ../../mod/message.php:381
#, php-format
msgid "You and %s"
msgstr ""
#: ../../mod/message.php:384
#, php-format
msgid "%s and You"
msgstr ""
#: ../../mod/message.php:405 ../../mod/message.php:546
msgid "Delete conversation"
msgstr ""
#: ../../mod/message.php:408
msgid "D, d M Y - g:i A"
msgstr ""
#: ../../mod/message.php:411
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] ""
msgstr[1] ""
#: ../../addon/widgets/widget_like.php:62
#: ../../addon.old/widgets/widget_like.php:61
#: ../../mod/message.php:450
msgid "Message not available."
msgstr ""
#: ../../mod/message.php:520
msgid "Delete message"
msgstr ""
#: ../../mod/message.php:548
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: ../../mod/message.php:552
msgid "Send Reply"
msgstr ""
#: ../../mod/mood.php:133
msgid "Mood"
msgstr ""
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr ""
#: ../../mod/item.php:104
msgid "Unable to locate original post."
msgstr ""
#: ../../mod/item.php:292
msgid "Empty post discarded."
msgstr ""
#: ../../mod/item.php:841
msgid "System error. Post not saved."
msgstr ""
#: ../../mod/item.php:866
#, php-format
msgid "%d person doesn't like this"
msgid_plural "%d people don't like this"
msgid ""
"This message was sent to you by %s, a member of the Friendica social network."
msgstr ""
#: ../../mod/item.php:868
#, php-format
msgid "You may visit them online at %s"
msgstr ""
#: ../../mod/item.php:869
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr ""
#: ../../mod/item.php:871
#, php-format
msgid "%s posted an update."
msgstr ""
#: ../../mod/network.php:181
msgid "Search Results For:"
msgstr ""
#: ../../mod/network.php:397
msgid "Commented Order"
msgstr ""
#: ../../mod/network.php:400
msgid "Sort by Comment Date"
msgstr ""
#: ../../mod/network.php:403
msgid "Posted Order"
msgstr ""
#: ../../mod/network.php:406
msgid "Sort by Post Date"
msgstr ""
#: ../../mod/network.php:444 ../../mod/notifications.php:88
msgid "Personal"
msgstr ""
#: ../../mod/network.php:447
msgid "Posts that mention or involve you"
msgstr ""
#: ../../mod/network.php:453
msgid "New"
msgstr ""
#: ../../mod/network.php:456
msgid "Activity Stream - by date"
msgstr ""
#: ../../mod/network.php:462
msgid "Shared Links"
msgstr ""
#: ../../mod/network.php:465
msgid "Interesting Links"
msgstr ""
#: ../../mod/network.php:471
msgid "Starred"
msgstr ""
#: ../../mod/network.php:474
msgid "Favourite Posts"
msgstr ""
#: ../../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] ""
msgstr[1] ""
#: ../../addon/widgets/widget_friendheader.php:40
#: ../../addon.old/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
#: ../../mod/network.php:549
msgid "Private messages to this group are at risk of public disclosure."
msgstr ""
#: ../../addon/widgets/widgets.php:57 ../../addon.old/widgets/widgets.php:56
msgid "Generate new key"
#: ../../mod/network.php:621
msgid "Contact: "
msgstr ""
#: ../../addon/widgets/widgets.php:60 ../../addon.old/widgets/widgets.php:59
msgid "Widgets key"
#: ../../mod/network.php:623
msgid "Private messages to this person are at risk of public disclosure."
msgstr ""
#: ../../addon/widgets/widgets.php:62 ../../addon.old/widgets/widgets.php:61
msgid "Widgets available"
#: ../../mod/network.php:628
msgid "Invalid contact."
msgstr ""
#: ../../addon/widgets/widget_friends.php:40
#: ../../addon.old/widgets/widget_friends.php:40
msgid "Connect on Friendica!"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr ""
#: ../../addon/morepokes/morepokes.php:19
#: ../../addon.old/morepokes/morepokes.php:19
msgid "bitchslap"
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr ""
#: ../../addon/morepokes/morepokes.php:19
#: ../../addon.old/morepokes/morepokes.php:19
msgid "bitchslapped"
msgstr ""
#: ../../addon/morepokes/morepokes.php:20
#: ../../addon.old/morepokes/morepokes.php:20
msgid "shag"
msgstr ""
#: ../../addon/morepokes/morepokes.php:20
#: ../../addon.old/morepokes/morepokes.php:20
msgid "shagged"
msgstr ""
#: ../../addon/morepokes/morepokes.php:21
#: ../../addon.old/morepokes/morepokes.php:21
msgid "do something obscenely biological to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:21
#: ../../addon.old/morepokes/morepokes.php:21
msgid "did something obscenely biological to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:22
#: ../../addon.old/morepokes/morepokes.php:22
msgid "point out the poke feature to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:22
#: ../../addon.old/morepokes/morepokes.php:22
msgid "pointed out the poke feature to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:23
#: ../../addon.old/morepokes/morepokes.php:23
msgid "declare undying love for"
msgstr ""
#: ../../addon/morepokes/morepokes.php:23
#: ../../addon.old/morepokes/morepokes.php:23
msgid "declared undying love for"
msgstr ""
#: ../../addon/morepokes/morepokes.php:24
#: ../../addon.old/morepokes/morepokes.php:24
msgid "patent"
msgstr ""
#: ../../addon/morepokes/morepokes.php:24
#: ../../addon.old/morepokes/morepokes.php:24
msgid "patented"
msgstr ""
#: ../../addon/morepokes/morepokes.php:25
#: ../../addon.old/morepokes/morepokes.php:25
msgid "stroke beard"
msgstr ""
#: ../../addon/morepokes/morepokes.php:25
#: ../../addon.old/morepokes/morepokes.php:25
msgid "stroked their beard at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:26
#: ../../addon.old/morepokes/morepokes.php:26
#: ../../mod/newmember.php:12
msgid ""
"bemoan the declining standards of modern secondary and tertiary education to"
"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 ""
#: ../../addon/morepokes/morepokes.php:26
#: ../../addon.old/morepokes/morepokes.php:26
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr ""
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr ""
#: ../../mod/newmember.php:18
msgid ""
"bemoans the declining standards of modern secondary and tertiary education to"
"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 ""
#: ../../addon/morepokes/morepokes.php:27
#: ../../addon.old/morepokes/morepokes.php:27
msgid "hug"
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr ""
#: ../../addon/morepokes/morepokes.php:27
#: ../../addon.old/morepokes/morepokes.php:27
msgid "hugged"
msgstr ""
#: ../../addon/morepokes/morepokes.php:28
#: ../../addon.old/morepokes/morepokes.php:28
msgid "kiss"
msgstr ""
#: ../../addon/morepokes/morepokes.php:28
#: ../../addon.old/morepokes/morepokes.php:28
msgid "kissed"
msgstr ""
#: ../../addon/morepokes/morepokes.php:29
#: ../../addon.old/morepokes/morepokes.php:29
msgid "raise eyebrows at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:29
#: ../../addon.old/morepokes/morepokes.php:29
msgid "raised their eyebrows at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:30
#: ../../addon.old/morepokes/morepokes.php:30
msgid "insult"
msgstr ""
#: ../../addon/morepokes/morepokes.php:30
#: ../../addon.old/morepokes/morepokes.php:30
msgid "insulted"
msgstr ""
#: ../../addon/morepokes/morepokes.php:31
#: ../../addon.old/morepokes/morepokes.php:31
msgid "praise"
msgstr ""
#: ../../addon/morepokes/morepokes.php:31
#: ../../addon.old/morepokes/morepokes.php:31
msgid "praised"
msgstr ""
#: ../../addon/morepokes/morepokes.php:32
#: ../../addon.old/morepokes/morepokes.php:32
msgid "be dubious of"
msgstr ""
#: ../../addon/morepokes/morepokes.php:32
#: ../../addon.old/morepokes/morepokes.php:32
msgid "was dubious of"
msgstr ""
#: ../../addon/morepokes/morepokes.php:33
#: ../../addon.old/morepokes/morepokes.php:33
msgid "eat"
msgstr ""
#: ../../addon/morepokes/morepokes.php:33
#: ../../addon.old/morepokes/morepokes.php:33
msgid "ate"
msgstr ""
#: ../../addon/morepokes/morepokes.php:34
#: ../../addon.old/morepokes/morepokes.php:34
msgid "giggle and fawn at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:34
#: ../../addon.old/morepokes/morepokes.php:34
msgid "giggled and fawned at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:35
#: ../../addon.old/morepokes/morepokes.php:35
msgid "doubt"
msgstr ""
#: ../../addon/morepokes/morepokes.php:35
#: ../../addon.old/morepokes/morepokes.php:35
msgid "doubted"
msgstr ""
#: ../../addon/morepokes/morepokes.php:36
#: ../../addon.old/morepokes/morepokes.php:36
msgid "glare"
msgstr ""
#: ../../addon/morepokes/morepokes.php:36
#: ../../addon.old/morepokes/morepokes.php:36
msgid "glared at"
msgstr ""
#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
msgid "YourLS Settings"
msgstr ""
#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
msgid "URL: http://"
msgstr ""
#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
msgid "Username:"
msgstr ""
#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
msgid "Password:"
msgstr ""
#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
msgid "Use SSL "
msgstr ""
#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
msgid "yourls Settings saved."
msgstr ""
#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
msgid "Post to LiveJournal"
msgstr ""
#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
msgid "LiveJournal Post Settings"
msgstr ""
#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
msgid "Enable LiveJournal Post Plugin"
msgstr ""
#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
msgid "LiveJournal username"
msgstr ""
#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
msgid "LiveJournal password"
msgstr ""
#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
msgid "Post to LiveJournal by default"
msgstr ""
#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
msgid "Not Safe For Work (General Purpose Content Filter) settings"
msgstr ""
#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
#: ../../mod/newmember.php:26
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."
"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 ""
#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
msgid "Enable Content filter"
#: ../../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 ""
#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
msgid "Comma separated list of keywords to hide"
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
msgstr ""
#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
msgid "Use /expression/ to provide regular expressions"
#: ../../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 ""
#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
msgid "NSFW Settings saved."
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr ""
#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
#: ../../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 ""
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr ""
#: ../../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 ""
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr ""
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr ""
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program "
"features and resources."
msgstr ""
#: ../../mod/profile.php:21 ../../boot.php:1225
msgid "Requested profile is not available."
msgstr ""
#: ../../mod/profile.php:180
msgid "Tips for New Members"
msgstr ""
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr ""
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
#: ../../mod/notifications.php:211
msgid "Discard"
msgstr ""
#: ../../mod/notifications.php:78
msgid "System"
msgstr ""
#: ../../mod/notifications.php:122
msgid "Show Ignored Requests"
msgstr ""
#: ../../mod/notifications.php:122
msgid "Hide Ignored Requests"
msgstr ""
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
msgid "Notification type: "
msgstr ""
#: ../../mod/notifications.php:150
msgid "Friend Suggestion"
msgstr ""
#: ../../mod/notifications.php:152
#, php-format
msgid "%s - Click to open/close"
msgid "suggested by %s"
msgstr ""
#: ../../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"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "Post a new friend activity"
msgstr ""
#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:98
#: ../../addon.old/page/page.php:130
#: ../../addon.old/forumlist/forumlist.php:94
msgid "Forums:"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "if applicable"
msgstr ""
#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
msgid "Page settings updated."
#: ../../mod/notifications.php:181
msgid "Claims to be known to you: "
msgstr ""
#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
msgid "Page Settings"
#: ../../mod/notifications.php:181
msgid "yes"
msgstr ""
#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
msgid "How many forums to display on sidebar without paging"
#: ../../mod/notifications.php:181
msgid "no"
msgstr ""
#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
msgid "Randomise Page/Forum list"
#: ../../mod/notifications.php:188
msgid "Approve as: "
msgstr ""
#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
msgid "Show pages/forums on profile page"
#: ../../mod/notifications.php:189
msgid "Friend"
msgstr ""
#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
msgid "Planets Settings"
#: ../../mod/notifications.php:190
msgid "Sharer"
msgstr ""
#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
msgid "Enable Planets Plugin"
#: ../../mod/notifications.php:190
msgid "Fan/Admirer"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:22
msgid "Forum Directory"
#: ../../mod/notifications.php:196
msgid "Friend/Connect Request"
msgstr ""
#: ../../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"
#: ../../mod/notifications.php:196
msgid "New Follower"
msgstr ""
#: ../../addon/communityhome/communityhome.php:29
#: ../../addon.old/communityhome/communityhome.php:29
#: ../../addon.old/communityhome/twillingham/communityhome.php:29
msgid "OpenID"
#: ../../mod/notifications.php:217
msgid "No introductions."
msgstr ""
#: ../../addon/communityhome/communityhome.php:39
#: ../../addon.old/communityhome/communityhome.php:38
#: ../../addon.old/communityhome/twillingham/communityhome.php:38
msgid "Latest users"
msgstr ""
#: ../../addon/communityhome/communityhome.php:84
#: ../../addon.old/communityhome/communityhome.php:81
#: ../../addon.old/communityhome/twillingham/communityhome.php:81
msgid "Most active users"
msgstr ""
#: ../../addon/communityhome/communityhome.php:102
#: ../../addon.old/communityhome/communityhome.php:98
msgid "Latest photos"
msgstr ""
#: ../../addon/communityhome/communityhome.php:141
#: ../../addon.old/communityhome/communityhome.php:133
msgid "Latest likes"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/dav/common/wdcal_edit.inc.php:144
#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
msgid "Event data"
msgstr ""
#: ../../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 ""
#: ../../addon/dav/common/wdcal_edit.inc.php:163
#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
msgid "Special color"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:169
#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
msgid "Subject"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:173
#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
msgid "Starts"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:178
#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
msgid "Ends"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:185
#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
msgid "Description"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:188
#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
msgid "Recurrence"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:190
#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
msgid "Frequency"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/dav/common/wdcal_edit.inc.php:203
#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
msgid "Yearly"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:214
#: ../../include/datetime.php:288
#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
msgid "days"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:215
#: ../../include/datetime.php:287
#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
msgid "weeks"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:216
#: ../../include/datetime.php:286
#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
msgid "months"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:217
#: ../../include/datetime.php:285
#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
msgid "years"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:218
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
msgid "Interval"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:218
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
msgid "All %select% %time%"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/dav/common/wdcal_edit.inc.php:297
#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
msgid "First day of week:"
msgstr ""
#: ../../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 ""
#: ../../addon/dav/common/wdcal_edit.inc.php:354
#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
msgid "#num#th of each month"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/dav/common/wdcal_edit.inc.php:413
#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
msgid "Repeat until"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:417
#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
msgid "Infinite"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:420
#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
msgid "Until the following date"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:423
#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
msgid "Number of times"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:429
#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
msgid "Exceptions"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:432
#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
msgid "none"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:449
#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
msgid "Notification"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:466
#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
msgid "Notify by"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:469
#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
msgid "E-Mail"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:470
#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
msgid "On Friendica / Display"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:474
#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
msgid "Time"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:478
#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
msgid "Hours"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:479
#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
msgid "Minutes"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:480
#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
msgid "Seconds"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:482
#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
msgid "Weeks"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:485
#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
msgid "before the"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:486
#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
msgid "start of the event"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:487
#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
msgid "end of the event"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:492
#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
msgid "Add a notification"
msgstr ""
#: ../../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 ""
#: ../../addon/dav/common/wdcal_edit.inc.php:696
#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
msgid "#name# is about to begin."
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:769
#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
msgid "Saved"
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:148
#: ../../addon.old/dav/common/wdcal_configuration.php:148
msgid "U.S. Time Format (mm/dd/YYYY)"
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:243
#: ../../addon.old/dav/common/wdcal_configuration.php:243
msgid "German Time Format (dd.mm.YYYY)"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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
msgid ""
"Something went wrong when trying to import the file. Sorry. Maybe some "
"events were imported anyway."
msgstr ""
#: ../../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 ""
#: ../../addon/dav/friendica/layout.fnk.php:134
#: ../../addon.old/dav/friendica/layout.fnk.php:134
msgid "The ICS-File has been imported."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:138
#: ../../addon.old/dav/friendica/layout.fnk.php:138
msgid "No file was uploaded."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:147
#: ../../addon.old/dav/friendica/layout.fnk.php:147
msgid "Import a ICS-file"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:150
#: ../../addon.old/dav/friendica/layout.fnk.php:150
msgid "ICS-File"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:151
#: ../../addon.old/dav/friendica/layout.fnk.php:151
msgid "Overwrite all #num# existing events"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:228
#: ../../addon.old/dav/friendica/layout.fnk.php:228
msgid "New event"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:232
#: ../../addon.old/dav/friendica/layout.fnk.php:232
msgid "Today"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:241
#: ../../addon.old/dav/friendica/layout.fnk.php:241
msgid "Day"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:248
#: ../../addon.old/dav/friendica/layout.fnk.php:248
msgid "Week"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:260
#: ../../addon.old/dav/friendica/layout.fnk.php:260
msgid "Reload"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:271
#: ../../addon.old/dav/friendica/layout.fnk.php:271
msgid "Date"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:313
#: ../../addon.old/dav/friendica/layout.fnk.php:313
msgid "Error"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:380
#: ../../addon.old/dav/friendica/layout.fnk.php:380
msgid "The calendar has been updated."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:393
#: ../../addon.old/dav/friendica/layout.fnk.php:393
msgid "The new calendar has been created."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:417
#: ../../addon.old/dav/friendica/layout.fnk.php:417
msgid "The calendar has been deleted."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:424
#: ../../addon.old/dav/friendica/layout.fnk.php:424
msgid "Calendar Settings"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:430
#: ../../addon.old/dav/friendica/layout.fnk.php:430
msgid "Date format"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:439
#: ../../addon.old/dav/friendica/layout.fnk.php:439
msgid "Time zone"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:445
#: ../../addon.old/dav/friendica/layout.fnk.php:445
msgid "Calendars"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:487
#: ../../addon.old/dav/friendica/layout.fnk.php:487
msgid "Create a new calendar"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:496
#: ../../addon.old/dav/friendica/layout.fnk.php:496
msgid "Limitations"
msgstr ""
#: ../../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 ""
#: ../../addon/dav/friendica/layout.fnk.php:504
#: ../../addon.old/dav/friendica/layout.fnk.php:504
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:511
#: ../../addon.old/dav/friendica/layout.fnk.php:511
msgid "Synchronizing this calendar with the iPhone"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:522
#: ../../addon.old/dav/friendica/layout.fnk.php:522
msgid "Synchronizing your Friendica-Contacts with the iPhone"
msgstr ""
#: ../../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 ""
#: ../../addon/dav/friendica/main.php:242
#: ../../addon.old/dav/friendica/main.php:242
msgid "Extended calendar with CalDAV-support"
msgstr ""
#: ../../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 ""
#: ../../addon/dav/friendica/main.php:282
#: ../../addon.old/dav/friendica/main.php:282
msgid "Notification: "
msgstr ""
#: ../../addon/dav/friendica/main.php:309
#: ../../addon.old/dav/friendica/main.php:309
msgid "The database tables have been installed."
msgstr ""
#: ../../addon/dav/friendica/main.php:310
#: ../../addon.old/dav/friendica/main.php:310
msgid "An error occurred during the installation."
msgstr ""
#: ../../addon/dav/friendica/main.php:316
#: ../../addon.old/dav/friendica/main.php:316
msgid "The database tables have been updated."
msgstr ""
#: ../../addon/dav/friendica/main.php:317
#: ../../addon.old/dav/friendica/main.php:317
msgid "An error occurred during the update."
msgstr ""
#: ../../addon/dav/friendica/main.php:333
#: ../../addon.old/dav/friendica/main.php:333
msgid "No system-wide settings yet."
msgstr ""
#: ../../addon/dav/friendica/main.php:336
#: ../../addon.old/dav/friendica/main.php:336
msgid "Database status"
msgstr ""
#: ../../addon/dav/friendica/main.php:339
#: ../../addon.old/dav/friendica/main.php:339
msgid "Installed"
msgstr ""
#: ../../addon/dav/friendica/main.php:343
#: ../../addon.old/dav/friendica/main.php:343
msgid "Upgrade needed"
msgstr ""
#: ../../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 ""
#: ../../addon/dav/friendica/main.php:343
#: ../../addon.old/dav/friendica/main.php:343
msgid "Upgrade"
msgstr ""
#: ../../addon/dav/friendica/main.php:346
#: ../../addon.old/dav/friendica/main.php:346
msgid "Not installed"
msgstr ""
#: ../../addon/dav/friendica/main.php:346
#: ../../addon.old/dav/friendica/main.php:346
msgid "Install"
msgstr ""
#: ../../addon/dav/friendica/main.php:350
#: ../../addon.old/dav/friendica/main.php:350
msgid "Unknown"
msgstr ""
#: ../../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 ""
#: ../../addon/dav/friendica/main.php:355
#: ../../addon.old/dav/friendica/main.php:355
msgid "Troubleshooting"
msgstr ""
#: ../../addon/dav/friendica/main.php:356
#: ../../addon.old/dav/friendica/main.php:356
msgid "Manual creation of the database tables:"
msgstr ""
#: ../../addon/dav/friendica/main.php:357
#: ../../addon.old/dav/friendica/main.php:357
msgid "Show SQL-statements"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
msgid "Private Calendar"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
msgid "Friendica Events: Mine"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
msgid "Friendica Events: Contacts"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
msgid "Private Addresses"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
msgid "Friendica Contacts"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:84
#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
#: ../../mod/notifications.php:469
#, 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>"
msgid "%s liked %s's post"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:85
#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
msgid "Template URL (with {category})"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:86
#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
msgid "OAuth end-point"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:87
#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
msgid "Api"
msgstr ""
#: ../../addon/membersince/membersince.php:18
#: ../../addon.old/membersince/membersince.php:18
msgid "Member since:"
msgstr ""
#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
msgid "Three Dimensional Tic-Tac-Toe"
msgstr ""
#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
msgid "3D Tic-Tac-Toe"
msgstr ""
#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
msgid "New game"
msgstr ""
#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
msgid "New game with handicap"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
msgid "You go first..."
msgstr ""
#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
msgid "I'm going first this time..."
msgstr ""
#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
msgid "You won!"
msgstr ""
#: ../../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 ""
#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
msgid "I won!"
msgstr ""
#: ../../addon/randplace/randplace.php:169
#: ../../addon.old/randplace/randplace.php:169
msgid "Randplace Settings"
msgstr ""
#: ../../addon/randplace/randplace.php:171
#: ../../addon.old/randplace/randplace.php:171
msgid "Enable Randplace Plugin"
msgstr ""
#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
msgid "Post to Dreamwidth"
msgstr ""
#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
msgid "Dreamwidth Post Settings"
msgstr ""
#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
msgid "Enable dreamwidth Post Plugin"
msgstr ""
#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
msgid "dreamwidth username"
msgstr ""
#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
msgid "dreamwidth password"
msgstr ""
#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
msgid "Post to dreamwidth by default"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:45
msgid "Remote Permissions Settings"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:46
msgid ""
"Allow recipients of your private posts to see the other recipients of the "
"posts"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:58
msgid "Remote Permissions settings updated."
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "Visible to"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "may only be a partial list"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:197
#: ../../addon/altpager/altpager.php:99
msgid "Global"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "The posts of every user on this server show the post recipients"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:198
#: ../../addon/altpager/altpager.php:100
msgid "Individual"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:198
msgid "Each user chooses whether his/her posts show the post recipients"
msgstr ""
#: ../../addon/startpage/startpage.php:83
#: ../../addon.old/startpage/startpage.php:83
msgid "Startpage Settings"
msgstr ""
#: ../../addon/startpage/startpage.php:85
#: ../../addon.old/startpage/startpage.php:85
msgid "Home page to load after login - leave blank for profile wall"
msgstr ""
#: ../../addon/startpage/startpage.php:88
#: ../../addon.old/startpage/startpage.php:88
msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr ""
#: ../../addon/geonames/geonames.php:143
#: ../../addon.old/geonames/geonames.php:143
msgid "Geonames settings updated."
msgstr ""
#: ../../addon/geonames/geonames.php:179
#: ../../addon.old/geonames/geonames.php:179
msgid "Geonames Settings"
msgstr ""
#: ../../addon/geonames/geonames.php:181
#: ../../addon.old/geonames/geonames.php:181
msgid "Enable Geonames Plugin"
msgstr ""
#: ../../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/notifications.php:266 ../../mod/notifications.php:391
#: ../../mod/notifications.php:478
#, php-format
msgid "Your account on %s will expire in a few days."
msgid "%s disliked %s's post"
msgstr ""
#: ../../addon/public_server/public_server.php:127
#: ../../addon.old/public_server/public_server.php:127
msgid "Your Friendica account is about to expire."
msgstr ""
#: ../../addon/public_server/public_server.php:128
#: ../../addon.old/public_server/public_server.php:128
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
#: ../../mod/notifications.php:492
#, 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"
msgid "%s is now friends with %s"
msgstr ""
#: ../../addon/js_upload/js_upload.php:43
#: ../../addon.old/js_upload/js_upload.php:43
msgid "Upload a file"
msgstr ""
#: ../../addon/js_upload/js_upload.php:44
#: ../../addon.old/js_upload/js_upload.php:44
msgid "Drop files here to upload"
msgstr ""
#: ../../addon/js_upload/js_upload.php:46
#: ../../addon.old/js_upload/js_upload.php:46
msgid "Failed"
msgstr ""
#: ../../addon/js_upload/js_upload.php:303
#: ../../addon.old/js_upload/js_upload.php:297
msgid "No files were uploaded."
msgstr ""
#: ../../addon/js_upload/js_upload.php:309
#: ../../addon.old/js_upload/js_upload.php:303
msgid "Uploaded file is empty"
msgstr ""
#: ../../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 ""
#: ../../addon/js_upload/js_upload.php:343
#: ../../addon.old/js_upload/js_upload.php:337
msgid "Upload was cancelled, or server error encountered"
msgstr ""
#: ../../addon/forumlist/forumlist.php:67
#: ../../addon.old/forumlist/forumlist.php:63
msgid "show/hide"
msgstr ""
#: ../../addon/forumlist/forumlist.php:81
#: ../../addon.old/forumlist/forumlist.php:77
msgid "No forum subscriptions"
msgstr ""
#: ../../addon/forumlist/forumlist.php:134
#: ../../addon.old/forumlist/forumlist.php:131
msgid "Forumlist settings updated."
msgstr ""
#: ../../addon/forumlist/forumlist.php:162
#: ../../addon.old/forumlist/forumlist.php:159
msgid "Forumlist Settings"
msgstr ""
#: ../../addon/forumlist/forumlist.php:164
#: ../../addon.old/forumlist/forumlist.php:161
msgid "Randomise forum list"
msgstr ""
#: ../../addon/forumlist/forumlist.php:167
#: ../../addon.old/forumlist/forumlist.php:164
msgid "Show forums on profile page"
msgstr ""
#: ../../addon/forumlist/forumlist.php:170
#: ../../addon.old/forumlist/forumlist.php:167
msgid "Show forums on network page"
msgstr ""
#: ../../addon/impressum/impressum.php:37
#: ../../addon.old/impressum/impressum.php:37
msgid "Impressum"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/impressum/impressum.php:84
#: ../../addon.old/impressum/impressum.php:84
msgid "The page operators name."
msgstr ""
#: ../../addon/impressum/impressum.php:85
#: ../../addon.old/impressum/impressum.php:85
msgid "Site Owners Profile"
msgstr ""
#: ../../addon/impressum/impressum.php:85
#: ../../addon.old/impressum/impressum.php:85
msgid "Profile address of the operator."
msgstr ""
#: ../../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 ""
#: ../../addon/impressum/impressum.php:87
#: ../../addon.old/impressum/impressum.php:87
msgid "Notes"
msgstr ""
#: ../../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 ""
#: ../../addon/impressum/impressum.php:88
#: ../../addon.old/impressum/impressum.php:88
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr ""
#: ../../addon/impressum/impressum.php:89
#: ../../addon.old/impressum/impressum.php:89
msgid "Footer note"
msgstr ""
#: ../../addon/impressum/impressum.php:89
#: ../../addon.old/impressum/impressum.php:89
msgid "Text for the footer. You can use BBCode here."
msgstr ""
#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
msgid "Report Bug"
msgstr ""
#: ../../addon/notimeline/notimeline.php:32
#: ../../addon.old/notimeline/notimeline.php:32
msgid "No Timeline settings updated."
msgstr ""
#: ../../addon/notimeline/notimeline.php:56
#: ../../addon.old/notimeline/notimeline.php:56
msgid "No Timeline Settings"
msgstr ""
#: ../../addon/notimeline/notimeline.php:58
#: ../../addon.old/notimeline/notimeline.php:58
msgid "Disable Archive selector on profile wall"
msgstr ""
#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
msgid "\"Blockem\" Settings"
msgstr ""
#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
msgid "Comma separated profile URLS to block"
msgstr ""
#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
msgid "BLOCKEM Settings saved."
msgstr ""
#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#, php-format
msgid "Blocked %s - Click to open/close"
msgid "%s created a new post"
msgstr ""
#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
msgid "Unblock Author"
msgstr ""
#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
msgid "Block Author"
msgstr ""
#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
msgid "blockem settings updated"
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 ":-("
msgstr ""
#: ../../addon/qcomment/qcomment.php:51
#: ../../addon.old/qcomment/qcomment.php:51
msgid "lol"
msgstr ""
#: ../../addon/qcomment/qcomment.php:54
#: ../../addon.old/qcomment/qcomment.php:54
msgid "Quick Comment Settings"
msgstr ""
#: ../../addon/qcomment/qcomment.php:56
#: ../../addon.old/qcomment/qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to "
"provide simple replies."
msgstr ""
#: ../../addon/qcomment/qcomment.php:57
#: ../../addon.old/qcomment/qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr ""
#: ../../addon/qcomment/qcomment.php:75
#: ../../addon.old/qcomment/qcomment.php:75
msgid "Quick Comment settings saved."
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:95
#: ../../addon.old/openstreetmap/openstreetmap.php:71
msgid "Tile Server URL"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:95
#: ../../addon.old/openstreetmap/openstreetmap.php:71
msgid ""
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank"
"\">public tile servers</a>"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:96
#: ../../addon.old/openstreetmap/openstreetmap.php:72
msgid "Default zoom"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:96
#: ../../addon.old/openstreetmap/openstreetmap.php:72
msgid "The default zoom level. (1:world, 18:highest)"
msgstr ""
#: ../../addon/group_text/group_text.php:46
msgid "Group Text settings updated."
msgstr ""
#: ../../addon/group_text/group_text.php:76
#: ../../addon.old/group_text/group_text.php:76
msgid "Group Text"
msgstr ""
#: ../../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 ""
#: ../../addon/libravatar/libravatar.php:14
#: ../../addon.old/libravatar/libravatar.php:14
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/libravatar/libravatar.php:83
#: ../../addon.old/libravatar/libravatar.php:83
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
#: ../../mod/notifications.php:501
#, php-format
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
msgid "%s commented on %s's post"
msgstr ""
#: ../../addon/libravatar/libravatar.php:84
#: ../../addon.old/libravatar/libravatar.php:84
msgid "This addon is not functional on your server."
#: ../../mod/notifications.php:302
msgid "No more network notifications."
msgstr ""
#: ../../addon/libravatar/libravatar.php:93
#: ../../addon/gravatar/gravatar.php:89
#: ../../addon.old/libravatar/libravatar.php:93
#: ../../addon.old/gravatar/gravatar.php:89
msgid "Information"
#: ../../mod/notifications.php:306
msgid "Network Notifications"
msgstr ""
#: ../../addon/libravatar/libravatar.php:93
#: ../../addon.old/libravatar/libravatar.php:93
#: ../../mod/notifications.php:332 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr ""
#: ../../mod/notifications.php:336 ../../mod/notify.php:65
msgid "System Notifications"
msgstr ""
#: ../../mod/notifications.php:427
msgid "No more personal notifications."
msgstr ""
#: ../../mod/notifications.php:431
msgid "Personal Notifications"
msgstr ""
#: ../../mod/notifications.php:508
msgid "No more home notifications."
msgstr ""
#: ../../mod/notifications.php:512
msgid "Home Notifications"
msgstr ""
#: ../../mod/oexchange.php:25
msgid "Post successful."
msgstr ""
#: ../../mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr ""
#: ../../mod/openid.php:53
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."
"Account not found and OpenID registration is not permitted on this site."
msgstr ""
#: ../../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"
#: ../../mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr ""
#: ../../addon/libravatar/libravatar.php:100
#: ../../addon.old/libravatar/libravatar.php:100
msgid "Select default avatar image if none was found. See README"
msgstr ""
#: ../../addon/libravatar/libravatar.php:112
#: ../../addon.old/libravatar/libravatar.php:112
msgid "Libravatar settings updated."
msgstr ""
#: ../../addon/libertree/libertree.php:36
#: ../../addon.old/libertree/libertree.php:36
msgid "Post to libertree"
msgstr ""
#: ../../addon/libertree/libertree.php:67
#: ../../addon.old/libertree/libertree.php:67
msgid "libertree Post Settings"
msgstr ""
#: ../../addon/libertree/libertree.php:69
#: ../../addon.old/libertree/libertree.php:69
msgid "Enable Libertree Post Plugin"
msgstr ""
#: ../../addon/libertree/libertree.php:74
#: ../../addon.old/libertree/libertree.php:74
msgid "Libertree API token"
msgstr ""
#: ../../addon/libertree/libertree.php:79
#: ../../addon.old/libertree/libertree.php:79
msgid "Libertree site URL"
msgstr ""
#: ../../addon/libertree/libertree.php:84
#: ../../addon.old/libertree/libertree.php:84
msgid "Post to Libertree by default"
msgstr ""
#: ../../addon/altpager/altpager.php:46
#: ../../addon.old/altpager/altpager.php:46
msgid "Altpager settings updated."
msgstr ""
#: ../../addon/altpager/altpager.php:83
#: ../../addon.old/altpager/altpager.php:79
msgid "Alternate Pagination Setting"
msgstr ""
#: ../../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 ""
#: ../../addon/altpager/altpager.php:99
msgid "Force global use of the alternate pager"
msgstr ""
#: ../../addon/altpager/altpager.php:100
msgid "Each user chooses whether to use the alternate pager"
msgstr ""
#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/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 ""
#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
msgid "Use the MathJax renderer"
msgstr ""
#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
msgid "MathJax Base URL"
msgstr ""
#: ../../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 ""
#: ../../addon/editplain/editplain.php:46
#: ../../addon.old/group_text/group_text.php:46
#: ../../addon.old/editplain/editplain.php:46
msgid "Editplain settings updated."
msgstr ""
#: ../../addon/editplain/editplain.php:76
#: ../../addon.old/editplain/editplain.php:76
msgid "Editplain Settings"
msgstr ""
#: ../../addon/editplain/editplain.php:78
#: ../../addon.old/editplain/editplain.php:78
msgid "Disable richtext status editor"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/gravatar/gravatar.php:97
#: ../../addon.old/gravatar/gravatar.php:97
msgid "Rating of images"
msgstr ""
#: ../../addon/gravatar/gravatar.php:97
#: ../../addon.old/gravatar/gravatar.php:97
msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:111
#: ../../addon.old/gravatar/gravatar.php:111
msgid "Gravatar settings updated."
msgstr ""
#: ../../addon/testdrive/testdrive.php:95
#: ../../addon.old/testdrive/testdrive.php:95
msgid "Your Friendica test account is about to expire."
msgstr ""
#: ../../addon/testdrive/testdrive.php:96
#: ../../addon.old/testdrive/testdrive.php:96
#: ../../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 ""
#: ../../mod/profile_photo.php:118
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."
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr ""
#: ../../addon/pageheader/pageheader.php:50
#: ../../addon.old/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings"
#: ../../mod/profile_photo.php:128
msgid "Unable to process image"
msgstr ""
#: ../../addon/pageheader/pageheader.php:68
#: ../../addon.old/pageheader/pageheader.php:68
msgid "pageheader Settings saved."
#: ../../mod/profile_photo.php:242
msgid "Upload File:"
msgstr ""
#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
msgid "Post to Insanejournal"
#: ../../mod/profile_photo.php:243
msgid "Select a profile:"
msgstr ""
#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
msgid "InsaneJournal Post Settings"
#: ../../mod/profile_photo.php:248
msgid "skip this step"
msgstr ""
#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
msgid "Enable InsaneJournal Post Plugin"
#: ../../mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr ""
#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
msgid "InsaneJournal username"
#: ../../mod/profile_photo.php:262
msgid "Crop Image"
msgstr ""
#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
msgid "InsaneJournal password"
#: ../../mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr ""
#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
msgid "Post to InsaneJournal by default"
#: ../../mod/profile_photo.php:265
msgid "Done Editing"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:266
#: ../../addon.old/jappixmini/jappixmini.php:266
msgid "Jappix Mini addon settings"
#: ../../mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:268
#: ../../addon.old/jappixmini/jappixmini.php:268
msgid "Activate addon"
msgstr ""
#: ../../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 ""
#: ../../addon/jappixmini/jappixmini.php:274
#: ../../addon.old/jappixmini/jappixmini.php:274
msgid "Jabber username"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:277
#: ../../addon.old/jappixmini/jappixmini.php:277
msgid "Jabber server"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:281
#: ../../addon.old/jappixmini/jappixmini.php:281
msgid "Jabber BOSH host"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:285
#: ../../addon.old/jappixmini/jappixmini.php:285
msgid "Jabber password"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:290
#: ../../addon.old/jappixmini/jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:293
#: ../../addon.old/jappixmini/jappixmini.php:293
msgid "Friendica password"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:296
#: ../../addon.old/jappixmini/jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:299
#: ../../addon.old/jappixmini/jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:302
#: ../../addon.old/jappixmini/jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:308
#: ../../addon.old/jappixmini/jappixmini.php:308
msgid "Add contact"
msgstr ""
#: ../../addon/viewsrc/viewsrc.php:39 ../../addon.old/viewsrc/viewsrc.php:37
msgid "View Source"
msgstr ""
#: ../../addon/statusnet/statusnet.php:138
#: ../../addon.old/statusnet/statusnet.php:134
msgid "Post to StatusNet"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/statusnet/statusnet.php:238
#: ../../addon.old/statusnet/statusnet.php:232
msgid "StatusNet settings updated."
msgstr ""
#: ../../addon/statusnet/statusnet.php:269
#: ../../addon.old/statusnet/statusnet.php:257
msgid "StatusNet Posting Settings"
msgstr ""
#: ../../addon/statusnet/statusnet.php:283
#: ../../addon.old/statusnet/statusnet.php:271
msgid "Globally Available StatusNet OAuthKeys"
msgstr ""
#: ../../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 ""
#: ../../addon/statusnet/statusnet.php:292
#: ../../addon.old/statusnet/statusnet.php:280
msgid "Provide your own OAuth Credentials"
msgstr ""
#: ../../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 ""
#: ../../addon/statusnet/statusnet.php:295
#: ../../addon.old/statusnet/statusnet.php:283
msgid "OAuth Consumer Key"
msgstr ""
#: ../../addon/statusnet/statusnet.php:298
#: ../../addon.old/statusnet/statusnet.php:286
msgid "OAuth Consumer Secret"
msgstr ""
#: ../../addon/statusnet/statusnet.php:301
#: ../../addon.old/statusnet/statusnet.php:289
msgid "Base API Path (remember the trailing /)"
msgstr ""
#: ../../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 ""
#: ../../addon/statusnet/statusnet.php:323
#: ../../addon.old/statusnet/statusnet.php:311
msgid "Log in with StatusNet"
msgstr ""
#: ../../addon/statusnet/statusnet.php:325
#: ../../addon.old/statusnet/statusnet.php:313
msgid "Copy the security code from StatusNet here"
msgstr ""
#: ../../addon/statusnet/statusnet.php:331
#: ../../addon.old/statusnet/statusnet.php:319
msgid "Cancel Connection Process"
msgstr ""
#: ../../addon/statusnet/statusnet.php:333
#: ../../addon.old/statusnet/statusnet.php:321
msgid "Current StatusNet API is"
msgstr ""
#: ../../addon/statusnet/statusnet.php:334
#: ../../addon.old/statusnet/statusnet.php:322
msgid "Cancel StatusNet Connection"
msgstr ""
#: ../../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 ""
#: ../../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 ""
#: ../../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 ""
#: ../../addon/statusnet/statusnet.php:351
#: ../../addon.old/statusnet/statusnet.php:339
msgid "Allow posting to StatusNet"
msgstr ""
#: ../../addon/statusnet/statusnet.php:354
#: ../../addon.old/statusnet/statusnet.php:342
msgid "Send public postings to StatusNet by default"
msgstr ""
#: ../../addon/statusnet/statusnet.php:358
msgid ""
"Mirror all posts from statusnet that are no replies or repeated messages"
msgstr ""
#: ../../addon/statusnet/statusnet.php:362
msgid "Shortening method that optimizes the post"
msgstr ""
#: ../../addon/statusnet/statusnet.php:366
#: ../../addon.old/statusnet/statusnet.php:345
msgid "Send linked #-tags and @-names to StatusNet"
msgstr ""
#: ../../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 ""
#: ../../addon/statusnet/statusnet.php:745
#: ../../addon.old/statusnet/statusnet.php:568
msgid "API URL"
msgstr ""
#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
msgid "Infinite Improbability Drive"
msgstr ""
#: ../../addon/tumblr/tumblr.php:144
msgid "You are now authenticated to tumblr."
msgstr ""
#: ../../addon/tumblr/tumblr.php:145
msgid "return to the connector page"
msgstr ""
#: ../../addon/tumblr/tumblr.php:158 ../../addon.old/tumblr/tumblr.php:36
msgid "Post to Tumblr"
msgstr ""
#: ../../addon/tumblr/tumblr.php:185 ../../addon.old/tumblr/tumblr.php:67
msgid "Tumblr Post Settings"
msgstr ""
#: ../../addon/tumblr/tumblr.php:188
msgid "(Re-)Authenticate your tumblr page"
msgstr ""
#: ../../addon/tumblr/tumblr.php:192 ../../addon.old/tumblr/tumblr.php:69
msgid "Enable Tumblr Post Plugin"
msgstr ""
#: ../../addon/tumblr/tumblr.php:197 ../../addon.old/tumblr/tumblr.php:84
msgid "Post to Tumblr by default"
msgstr ""
#: ../../addon/tumblr/tumblr.php:217
msgid "Post to page:"
msgstr ""
#: ../../addon/tumblr/tumblr.php:228
msgid "You are not authenticated to tumblr"
msgstr ""
#: ../../addon/numfriends/numfriends.php:46
#: ../../addon.old/numfriends/numfriends.php:46
msgid "Numfriends settings updated."
msgstr ""
#: ../../addon/numfriends/numfriends.php:77
#: ../../addon.old/numfriends/numfriends.php:77
msgid "Numfriends Settings"
msgstr ""
#: ../../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 ""
#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
msgid "Gnot settings updated."
msgstr ""
#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
msgid "Gnot Settings"
msgstr ""
#: ../../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 ""
#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
msgid "Enable this plugin/addon?"
msgstr ""
#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr ""
#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
msgid "Post to Wordpress"
msgstr ""
#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
msgid "WordPress Post Settings"
msgstr ""
#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
msgid "Enable WordPress Post Plugin"
msgstr ""
#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
msgid "WordPress username"
msgstr ""
#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
msgid "WordPress password"
msgstr ""
#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
msgid "WordPress API URL"
msgstr ""
#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
msgid "Post to WordPress by default"
msgstr ""
#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
msgid "Provide a backlink to the Friendica post"
msgstr ""
#: ../../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 ""
#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
msgid "Read the original post and comment stream on Friendica"
msgstr ""
#: ../../addon/showmore/showmore.php:38
#: ../../addon.old/showmore/showmore.php:38
msgid "\"Show more\" Settings"
msgstr ""
#: ../../addon/showmore/showmore.php:41
#: ../../addon.old/showmore/showmore.php:41
msgid "Enable Show More"
msgstr ""
#: ../../addon/showmore/showmore.php:44
#: ../../addon.old/showmore/showmore.php:44
msgid "Cutting posts after how much characters"
msgstr ""
#: ../../addon/showmore/showmore.php:65
#: ../../addon.old/showmore/showmore.php:65
msgid "Show More Settings saved."
msgstr ""
#: ../../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 ""
#: ../../addon/piwik/piwik.php:82 ../../addon.old/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 ""
#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
msgid "Piwik Base URL"
msgstr ""
#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
msgid ""
"Absolute path to your Piwik installation. (without protocol (http/s), with "
"trailing slash)"
msgstr ""
#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
msgid "Site ID"
msgstr ""
#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
msgid "Show opt-out cookie link?"
msgstr ""
#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
msgid "Asynchronous tracking"
msgstr ""
#: ../../addon/twitter/twitter.php:77 ../../addon.old/twitter/twitter.php:73
msgid "Post to Twitter"
msgstr ""
#: ../../addon/twitter/twitter.php:129 ../../addon.old/twitter/twitter.php:122
msgid "Twitter settings updated."
msgstr ""
#: ../../addon/twitter/twitter.php:157 ../../addon.old/twitter/twitter.php:146
msgid "Twitter Posting Settings"
msgstr ""
#: ../../addon/twitter/twitter.php:164 ../../addon.old/twitter/twitter.php:153
msgid ""
"No consumer key pair for Twitter found. Please contact your site "
"administrator."
msgstr ""
#: ../../addon/twitter/twitter.php:183 ../../addon.old/twitter/twitter.php:172
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 ""
#: ../../addon/twitter/twitter.php:184 ../../addon.old/twitter/twitter.php:173
msgid "Log in with Twitter"
msgstr ""
#: ../../addon/twitter/twitter.php:186 ../../addon.old/twitter/twitter.php:175
msgid "Copy the PIN from Twitter here"
msgstr ""
#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:190
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 ""
#: ../../addon/twitter/twitter.php:203 ../../addon.old/twitter/twitter.php:192
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 ""
#: ../../addon/twitter/twitter.php:206 ../../addon.old/twitter/twitter.php:195
msgid "Allow posting to Twitter"
msgstr ""
#: ../../addon/twitter/twitter.php:209 ../../addon.old/twitter/twitter.php:198
msgid "Send public postings to Twitter by default"
msgstr ""
#: ../../addon/twitter/twitter.php:213
msgid "Mirror all posts from twitter that are no replies or retweets"
msgstr ""
#: ../../addon/twitter/twitter.php:217
msgid "Shortening method that optimizes the tweet"
msgstr ""
#: ../../addon/twitter/twitter.php:221 ../../addon.old/twitter/twitter.php:201
msgid "Send linked #-tags and @-names to Twitter"
msgstr ""
#: ../../addon/twitter/twitter.php:558 ../../addon.old/twitter/twitter.php:396
msgid "Consumer key"
msgstr ""
#: ../../addon/twitter/twitter.php:559 ../../addon.old/twitter/twitter.php:397
msgid "Consumer secret"
msgstr ""
#: ../../addon/twitter/twitter.php:560
msgid "Name of the Twitter Application"
msgstr ""
#: ../../addon/twitter/twitter.php:560
msgid "set this to avoid mirroring postings from ~friendica back to ~friendica"
msgstr ""
#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
msgid "IRC Settings"
msgstr ""
#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
msgid "Channel(s) to auto connect (comma separated)"
msgstr ""
#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
msgid "Popular Channels (comma separated)"
msgstr ""
#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
msgid "IRC settings saved."
msgstr ""
#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
msgid "IRC Chatroom"
msgstr ""
#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
msgid "Popular Channels"
msgstr ""
#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
msgid "Fromapp settings updated."
msgstr ""
#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
msgid "FromApp Settings"
msgstr ""
#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
msgid ""
"The application name you would like to show your posts originating from."
msgstr ""
#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
msgid "Use this application name even if another application was used."
msgstr ""
#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
msgid "Post to blogger"
msgstr ""
#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
msgid "Blogger Post Settings"
msgstr ""
#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
msgid "Enable Blogger Post Plugin"
msgstr ""
#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
msgid "Blogger username"
msgstr ""
#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
msgid "Blogger password"
msgstr ""
#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
msgid "Blogger API URL"
msgstr ""
#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
msgid "Post to Blogger by default"
msgstr ""
#: ../../addon/posterous/posterous.php:37
#: ../../addon.old/posterous/posterous.php:37
msgid "Post to Posterous"
msgstr ""
#: ../../addon/posterous/posterous.php:70
#: ../../addon.old/posterous/posterous.php:70
msgid "Posterous Post Settings"
msgstr ""
#: ../../addon/posterous/posterous.php:72
#: ../../addon.old/posterous/posterous.php:72
msgid "Enable Posterous Post Plugin"
msgstr ""
#: ../../addon/posterous/posterous.php:77
#: ../../addon.old/posterous/posterous.php:77
msgid "Posterous login"
msgstr ""
#: ../../addon/posterous/posterous.php:82
#: ../../addon.old/posterous/posterous.php:82
msgid "Posterous password"
msgstr ""
#: ../../addon/posterous/posterous.php:87
#: ../../addon.old/posterous/posterous.php:87
msgid "Posterous site ID"
msgstr ""
#: ../../addon/posterous/posterous.php:92
#: ../../addon.old/posterous/posterous.php:92
msgid "Posterous API token"
msgstr ""
#: ../../addon/posterous/posterous.php:97
#: ../../addon.old/posterous/posterous.php:97
msgid "Post to Posterous by default"
#: ../../object/Item.php:261
msgid "via"
msgstr ""
#: ../../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 ""
@ -7915,140 +9682,6 @@ msgstr ""
msgid "Color scheme"
msgstr ""
#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
#: ../../include/nav.php:143
msgid "Your posts and conversations"
msgstr ""
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
msgid "Your profile page"
msgstr ""
#: ../../view/theme/diabook/theme.php:89
msgid "Your contacts"
msgstr ""
#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
msgid "Your photos"
msgstr ""
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
msgid "Your events"
msgstr ""
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
msgid "Personal notes"
msgstr ""
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
msgid "Your personal photos"
msgstr ""
#: ../../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 ""
#: ../../view/theme/diabook/theme.php:384
#: ../../view/theme/diabook/theme.php:634
#: ../../view/theme/diabook/config.php:165
msgid "Community Profiles"
msgstr ""
#: ../../view/theme/diabook/theme.php:405
#: ../../view/theme/diabook/theme.php:639
#: ../../view/theme/diabook/config.php:170
msgid "Last users"
msgstr ""
#: ../../view/theme/diabook/theme.php:434
#: ../../view/theme/diabook/theme.php:641
#: ../../view/theme/diabook/config.php:172
msgid "Last likes"
msgstr ""
#: ../../view/theme/diabook/theme.php:479
#: ../../view/theme/diabook/theme.php:640
#: ../../view/theme/diabook/config.php:171
msgid "Last photos"
msgstr ""
#: ../../view/theme/diabook/theme.php:516
#: ../../view/theme/diabook/theme.php:637
#: ../../view/theme/diabook/config.php:168
msgid "Find Friends"
msgstr ""
#: ../../view/theme/diabook/theme.php:517
msgid "Local Directory"
msgstr ""
#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr ""
#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr ""
#: ../../view/theme/diabook/theme.php:572
#: ../../view/theme/diabook/theme.php:633
#: ../../view/theme/diabook/config.php:164
msgid "Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:577
msgid "Set zoomfactor for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:578
#: ../../view/theme/diabook/config.php:161
msgid "Set longitude (X) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:579
#: ../../view/theme/diabook/config.php:162
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:592
#: ../../view/theme/diabook/theme.php:635
#: ../../view/theme/diabook/config.php:166
msgid "Help or @NewHere ?"
msgstr ""
#: ../../view/theme/diabook/theme.php:599
#: ../../view/theme/diabook/theme.php:636
#: ../../view/theme/diabook/config.php:167
msgid "Connect Services"
msgstr ""
#: ../../view/theme/diabook/theme.php:606
#: ../../view/theme/diabook/theme.php:638
msgid "Last Tweets"
msgstr ""
#: ../../view/theme/diabook/theme.php:609
#: ../../view/theme/diabook/config.php:159
msgid "Set twitter search term"
msgstr ""
#: ../../view/theme/diabook/theme.php:629
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
msgid "don't show"
msgstr ""
#: ../../view/theme/diabook/theme.php:629
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
msgid "show"
msgstr ""
#: ../../view/theme/diabook/theme.php:630
msgid "Show/hide boxes at right-hand column:"
msgstr ""
#: ../../view/theme/diabook/config.php:156
#: ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
@ -8062,14 +9695,109 @@ msgstr ""
msgid "Set color scheme"
msgstr ""
#: ../../view/theme/diabook/config.php:159
#: ../../view/theme/diabook/theme.php:609
msgid "Set twitter search term"
msgstr ""
#: ../../view/theme/diabook/config.php:160
msgid "Set zoomfactor for Earth Layer"
msgstr ""
#: ../../view/theme/diabook/config.php:161
#: ../../view/theme/diabook/theme.php:578
msgid "Set longitude (X) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/config.php:162
#: ../../view/theme/diabook/theme.php:579
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
#: ../../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 ""
#: ../../view/theme/diabook/config.php:164
#: ../../view/theme/diabook/theme.php:572
#: ../../view/theme/diabook/theme.php:633
msgid "Earth Layers"
msgstr ""
#: ../../view/theme/diabook/config.php:165
#: ../../view/theme/diabook/theme.php:384
#: ../../view/theme/diabook/theme.php:634
msgid "Community Profiles"
msgstr ""
#: ../../view/theme/diabook/config.php:166
#: ../../view/theme/diabook/theme.php:592
#: ../../view/theme/diabook/theme.php:635
msgid "Help or @NewHere ?"
msgstr ""
#: ../../view/theme/diabook/config.php:167
#: ../../view/theme/diabook/theme.php:599
#: ../../view/theme/diabook/theme.php:636
msgid "Connect Services"
msgstr ""
#: ../../view/theme/diabook/config.php:168
#: ../../view/theme/diabook/theme.php:516
#: ../../view/theme/diabook/theme.php:637
msgid "Find Friends"
msgstr ""
#: ../../view/theme/diabook/config.php:169
msgid "Last tweets"
msgstr ""
#: ../../view/theme/diabook/config.php:170
#: ../../view/theme/diabook/theme.php:405
#: ../../view/theme/diabook/theme.php:639
msgid "Last users"
msgstr ""
#: ../../view/theme/diabook/config.php:171
#: ../../view/theme/diabook/theme.php:479
#: ../../view/theme/diabook/theme.php:640
msgid "Last photos"
msgstr ""
#: ../../view/theme/diabook/config.php:172
#: ../../view/theme/diabook/theme.php:434
#: ../../view/theme/diabook/theme.php:641
msgid "Last likes"
msgstr ""
#: ../../view/theme/diabook/theme.php:89
msgid "Your contacts"
msgstr ""
#: ../../view/theme/diabook/theme.php:517
msgid "Local Directory"
msgstr ""
#: ../../view/theme/diabook/theme.php:577
msgid "Set zoomfactor for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:606
#: ../../view/theme/diabook/theme.php:638
msgid "Last Tweets"
msgstr ""
#: ../../view/theme/diabook/theme.php:630
msgid "Show/hide boxes at right-hand column:"
msgstr ""
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr ""
#: ../../view/theme/quattro/config.php:67
msgid "Alignment"
msgstr ""
@ -8090,1666 +9818,8 @@ msgstr ""
msgid "Textareas font size"
msgstr ""
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr ""
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr ""
#: ../../include/profile_advanced.php:23
msgid "j F"
msgstr ""
#: ../../include/profile_advanced.php:30
msgid "Birthday:"
msgstr ""
#: ../../include/profile_advanced.php:34
msgid "Age:"
msgstr ""
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: ../../include/profile_advanced.php:52
msgid "Tags:"
msgstr ""
#: ../../include/profile_advanced.php:56
msgid "Religion:"
msgstr ""
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr ""
#: ../../include/profile_advanced.php:67
msgid "Contact information and Social Networks:"
msgstr ""
#: ../../include/profile_advanced.php:69
msgid "Musical interests:"
msgstr ""
#: ../../include/profile_advanced.php:71
msgid "Books, literature:"
msgstr ""
#: ../../include/profile_advanced.php:73
msgid "Television:"
msgstr ""
#: ../../include/profile_advanced.php:75
msgid "Film/dance/culture/entertainment:"
msgstr ""
#: ../../include/profile_advanced.php:77
msgid "Love/Romance:"
msgstr ""
#: ../../include/profile_advanced.php:79
msgid "Work/employment:"
msgstr ""
#: ../../include/profile_advanced.php:81
msgid "School/education:"
msgstr ""
#: ../../include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr ""
#: ../../include/contact_selectors.php:33
msgid "Block immediately"
msgstr ""
#: ../../include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr ""
#: ../../include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr ""
#: ../../include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr ""
#: ../../include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr ""
#: ../../include/contact_selectors.php:56
msgid "Frequently"
msgstr ""
#: ../../include/contact_selectors.php:57
msgid "Hourly"
msgstr ""
#: ../../include/contact_selectors.php:58
msgid "Twice daily"
msgstr ""
#: ../../include/contact_selectors.php:77
msgid "OStatus"
msgstr ""
#: ../../include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr ""
#: ../../include/contact_selectors.php:82
msgid "Zot!"
msgstr ""
#: ../../include/contact_selectors.php:83
msgid "LinkedIn"
msgstr ""
#: ../../include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr ""
#: ../../include/contact_selectors.php:85
msgid "MySpace"
msgstr ""
#: ../../include/contact_selectors.php:87
msgid "Google+"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Male"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Female"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Currently Male"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Currently Female"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Mostly Male"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Mostly Female"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Transgender"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Intersex"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Transsexual"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Hermaphrodite"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Neuter"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Non-specific"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Other"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Undecided"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Males"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Females"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Gay"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Lesbian"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "No Preference"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Bisexual"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Autosexual"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Abstinent"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Virgin"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Deviant"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Fetish"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Oodles"
msgstr ""
#: ../../include/profile_selectors.php:23
msgid "Nonsexual"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Single"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Lonely"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Available"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Unavailable"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Has crush"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Infatuated"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Dating"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Unfaithful"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Sex Addict"
msgstr ""
#: ../../include/profile_selectors.php:42 ../../include/user.php:279
#: ../../include/user.php:283
msgid "Friends"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Friends/Benefits"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Casual"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Engaged"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Married"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Imaginarily married"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Partners"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Cohabiting"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Common law"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Happy"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Not looking"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Swinger"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Betrayed"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Separated"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Unstable"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Divorced"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Imaginarily divorced"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Widowed"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Uncertain"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "It's complicated"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Don't care"
msgstr ""
#: ../../include/profile_selectors.php:42
msgid "Ask me"
msgstr ""
#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
msgid "Starts:"
msgstr ""
#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
msgid "Finishes:"
msgstr ""
#: ../../include/delivery.php:457 ../../include/notifier.php:775
msgid "(no subject)"
msgstr ""
#: ../../include/Scrape.php:583
msgid " on Last.fm"
msgstr ""
#: ../../include/text.php:262
msgid "prev"
msgstr ""
#: ../../include/text.php:264
msgid "first"
msgstr ""
#: ../../include/text.php:293
msgid "last"
msgstr ""
#: ../../include/text.php:296
msgid "next"
msgstr ""
#: ../../include/text.php:314
msgid "newer"
msgstr ""
#: ../../include/text.php:318
msgid "older"
msgstr ""
#: ../../include/text.php:657
msgid "No contacts"
msgstr ""
#: ../../include/text.php:666
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] ""
msgstr[1] ""
#: ../../include/text.php:779
msgid "poke"
msgstr ""
#: ../../include/text.php:779 ../../include/conversation.php:211
msgid "poked"
msgstr ""
#: ../../include/text.php:780
msgid "ping"
msgstr ""
#: ../../include/text.php:780
msgid "pinged"
msgstr ""
#: ../../include/text.php:781
msgid "prod"
msgstr ""
#: ../../include/text.php:781
msgid "prodded"
msgstr ""
#: ../../include/text.php:782
msgid "slap"
msgstr ""
#: ../../include/text.php:782
msgid "slapped"
msgstr ""
#: ../../include/text.php:783
msgid "finger"
msgstr ""
#: ../../include/text.php:783
msgid "fingered"
msgstr ""
#: ../../include/text.php:784
msgid "rebuff"
msgstr ""
#: ../../include/text.php:784
msgid "rebuffed"
msgstr ""
#: ../../include/text.php:796
msgid "happy"
msgstr ""
#: ../../include/text.php:797
msgid "sad"
msgstr ""
#: ../../include/text.php:798
msgid "mellow"
msgstr ""
#: ../../include/text.php:799
msgid "tired"
msgstr ""
#: ../../include/text.php:800
msgid "perky"
msgstr ""
#: ../../include/text.php:801
msgid "angry"
msgstr ""
#: ../../include/text.php:802
msgid "stupified"
msgstr ""
#: ../../include/text.php:803
msgid "puzzled"
msgstr ""
#: ../../include/text.php:804
msgid "interested"
msgstr ""
#: ../../include/text.php:805
msgid "bitter"
msgstr ""
#: ../../include/text.php:806
msgid "cheerful"
msgstr ""
#: ../../include/text.php:807
msgid "alive"
msgstr ""
#: ../../include/text.php:808
msgid "annoyed"
msgstr ""
#: ../../include/text.php:809
msgid "anxious"
msgstr ""
#: ../../include/text.php:810
msgid "cranky"
msgstr ""
#: ../../include/text.php:811
msgid "disturbed"
msgstr ""
#: ../../include/text.php:812
msgid "frustrated"
msgstr ""
#: ../../include/text.php:813
msgid "motivated"
msgstr ""
#: ../../include/text.php:814
msgid "relaxed"
msgstr ""
#: ../../include/text.php:815
msgid "surprised"
msgstr ""
#: ../../include/text.php:979
msgid "January"
msgstr ""
#: ../../include/text.php:979
msgid "February"
msgstr ""
#: ../../include/text.php:979
msgid "March"
msgstr ""
#: ../../include/text.php:979
msgid "April"
msgstr ""
#: ../../include/text.php:979
msgid "May"
msgstr ""
#: ../../include/text.php:979
msgid "June"
msgstr ""
#: ../../include/text.php:979
msgid "July"
msgstr ""
#: ../../include/text.php:979
msgid "August"
msgstr ""
#: ../../include/text.php:979
msgid "September"
msgstr ""
#: ../../include/text.php:979
msgid "October"
msgstr ""
#: ../../include/text.php:979
msgid "November"
msgstr ""
#: ../../include/text.php:979
msgid "December"
msgstr ""
#: ../../include/text.php:1078
msgid "bytes"
msgstr ""
#: ../../include/text.php:1105 ../../include/text.php:1117
msgid "Click to open/close"
msgstr ""
#: ../../include/text.php:1290 ../../include/user.php:237
msgid "default"
msgstr ""
#: ../../include/text.php:1302
msgid "Select an alternate language"
msgstr ""
#: ../../include/text.php:1512
msgid "activity"
msgstr ""
#: ../../include/text.php:1515
msgid "post"
msgstr ""
#: ../../include/text.php:1670
msgid "Item filed"
msgstr ""
#: ../../include/diaspora.php:704
msgid "Sharing notification from Diaspora network"
msgstr ""
#: ../../include/diaspora.php:2248
msgid "Attachments:"
msgstr ""
#: ../../include/network.php:850
msgid "view full size"
msgstr ""
#: ../../include/oembed.php:138
msgid "Embedded content"
msgstr ""
#: ../../include/oembed.php:147
msgid "Embedding disabled"
msgstr ""
#: ../../include/uimport.php:61
msgid "Error decoding account file"
msgstr ""
#: ../../include/uimport.php:67
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr ""
#: ../../include/uimport.php:72
msgid "Error! I can't import this file: DB schema version is not compatible."
msgstr ""
#: ../../include/uimport.php:81
msgid "Error! Cannot check nickname"
msgstr ""
#: ../../include/uimport.php:85
#, php-format
msgid "User '%s' already exists on this server!"
msgstr ""
#: ../../include/uimport.php:104
msgid "User creation error"
msgstr ""
#: ../../include/uimport.php:122
msgid "User profile creation error"
msgstr ""
#: ../../include/uimport.php:167
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] ""
msgstr[1] ""
#: ../../include/uimport.php:245
msgid "Done. You can now login with your username and password"
msgstr ""
#: ../../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 ""
#: ../../include/group.php:207
msgid "Default privacy group for new contacts"
msgstr ""
#: ../../include/group.php:226
msgid "Everybody"
msgstr ""
#: ../../include/group.php:249
msgid "edit"
msgstr ""
#: ../../include/group.php:271
msgid "Edit group"
msgstr ""
#: ../../include/group.php:272
msgid "Create a new group"
msgstr ""
#: ../../include/group.php:273
msgid "Contacts not in any group"
msgstr ""
#: ../../include/nav.php:73 ../../boot.php:1036
msgid "Logout"
msgstr ""
#: ../../include/nav.php:73
msgid "End this session"
msgstr ""
#: ../../include/nav.php:76 ../../boot.php:1833
msgid "Status"
msgstr ""
#: ../../include/nav.php:91
msgid "Sign in"
msgstr ""
#: ../../include/nav.php:104
msgid "Home Page"
msgstr ""
#: ../../include/nav.php:108
msgid "Create an account"
msgstr ""
#: ../../include/nav.php:113
msgid "Help and documentation"
msgstr ""
#: ../../include/nav.php:116
msgid "Apps"
msgstr ""
#: ../../include/nav.php:116
msgid "Addon applications, utilities, games"
msgstr ""
#: ../../include/nav.php:118
msgid "Search site content"
msgstr ""
#: ../../include/nav.php:128
msgid "Conversations on this site"
msgstr ""
#: ../../include/nav.php:130
msgid "Directory"
msgstr ""
#: ../../include/nav.php:130
msgid "People directory"
msgstr ""
#: ../../include/nav.php:140
msgid "Conversations from your friends"
msgstr ""
#: ../../include/nav.php:141
msgid "Network Reset"
msgstr ""
#: ../../include/nav.php:141
msgid "Load Network page with no filters"
msgstr ""
#: ../../include/nav.php:149
msgid "Friend Requests"
msgstr ""
#: ../../include/nav.php:151
msgid "See all notifications"
msgstr ""
#: ../../include/nav.php:152
msgid "Mark all system notifications seen"
msgstr ""
#: ../../include/nav.php:156
msgid "Private mail"
msgstr ""
#: ../../include/nav.php:157
msgid "Inbox"
msgstr ""
#: ../../include/nav.php:158
msgid "Outbox"
msgstr ""
#: ../../include/nav.php:162
msgid "Manage"
msgstr ""
#: ../../include/nav.php:162
msgid "Manage other pages"
msgstr ""
#: ../../include/nav.php:165
msgid "Delegations"
msgstr ""
#: ../../include/nav.php:169 ../../boot.php:1339
msgid "Profiles"
msgstr ""
#: ../../include/nav.php:169
msgid "Manage/Edit Profiles"
msgstr ""
#: ../../include/nav.php:171
msgid "Manage/edit friends and contacts"
msgstr ""
#: ../../include/nav.php:178
msgid "Site setup and configuration"
msgstr ""
#: ../../include/nav.php:182
msgid "Navigation"
msgstr ""
#: ../../include/nav.php:182
msgid "Site map"
msgstr ""
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
msgstr ""
#: ../../include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr ""
#: ../../include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr ""
#: ../../include/contact_widgets.php:23
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] ""
msgstr[1] ""
#: ../../include/contact_widgets.php:29
msgid "Find People"
msgstr ""
#: ../../include/contact_widgets.php:30
msgid "Enter name or interest"
msgstr ""
#: ../../include/contact_widgets.php:31
msgid "Connect/Follow"
msgstr ""
#: ../../include/contact_widgets.php:32
msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
#: ../../include/contact_widgets.php:36
msgid "Random Profile"
msgstr ""
#: ../../include/contact_widgets.php:70
msgid "Networks"
msgstr ""
#: ../../include/contact_widgets.php:73
msgid "All Networks"
msgstr ""
#: ../../include/contact_widgets.php:103 ../../include/features.php:59
msgid "Saved Folders"
msgstr ""
#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
msgid "Everything"
msgstr ""
#: ../../include/contact_widgets.php:135
msgid "Categories"
msgstr ""
#: ../../include/auth.php:38
msgid "Logged out."
msgstr ""
#: ../../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 ""
#: ../../include/auth.php:128
msgid "The error message was:"
msgstr ""
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr ""
#: ../../include/datetime.php:153 ../../include/datetime.php:285
msgid "year"
msgstr ""
#: ../../include/datetime.php:158 ../../include/datetime.php:286
msgid "month"
msgstr ""
#: ../../include/datetime.php:163 ../../include/datetime.php:288
msgid "day"
msgstr ""
#: ../../include/datetime.php:276
msgid "never"
msgstr ""
#: ../../include/datetime.php:282
msgid "less than a second ago"
msgstr ""
#: ../../include/datetime.php:287
msgid "week"
msgstr ""
#: ../../include/datetime.php:289
msgid "hour"
msgstr ""
#: ../../include/datetime.php:289
msgid "hours"
msgstr ""
#: ../../include/datetime.php:290
msgid "minute"
msgstr ""
#: ../../include/datetime.php:290
msgid "minutes"
msgstr ""
#: ../../include/datetime.php:291
msgid "second"
msgstr ""
#: ../../include/datetime.php:291
msgid "seconds"
msgstr ""
#: ../../include/datetime.php:300
#, php-format
msgid "%1$d %2$s ago"
msgstr ""
#: ../../include/datetime.php:472 ../../include/items.php:1705
#, php-format
msgid "%s's birthday"
msgstr ""
#: ../../include/datetime.php:473 ../../include/items.php:1706
#, php-format
msgid "Happy Birthday %s"
msgstr ""
#: ../../include/bbcode.php:210 ../../include/bbcode.php:515
msgid "Image/photo"
msgstr ""
#: ../../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 ""
#: ../../include/bbcode.php:480 ../../include/bbcode.php:500
msgid "$1 wrote:"
msgstr ""
#: ../../include/bbcode.php:520 ../../include/bbcode.php:521
msgid "Encrypted content"
msgstr ""
#: ../../include/features.php:23
msgid "General Features"
msgstr ""
#: ../../include/features.php:25
msgid "Multiple Profiles"
msgstr ""
#: ../../include/features.php:25
msgid "Ability to create multiple profiles"
msgstr ""
#: ../../include/features.php:30
msgid "Post Composition Features"
msgstr ""
#: ../../include/features.php:31
msgid "Richtext Editor"
msgstr ""
#: ../../include/features.php:31
msgid "Enable richtext editor"
msgstr ""
#: ../../include/features.php:32
msgid "Post Preview"
msgstr ""
#: ../../include/features.php:32
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
#: ../../include/features.php:37
msgid "Network Sidebar Widgets"
msgstr ""
#: ../../include/features.php:38
msgid "Search by Date"
msgstr ""
#: ../../include/features.php:38
msgid "Ability to select posts by date ranges"
msgstr ""
#: ../../include/features.php:39
msgid "Group Filter"
msgstr ""
#: ../../include/features.php:39
msgid "Enable widget to display Network posts only from selected group"
msgstr ""
#: ../../include/features.php:40
msgid "Network Filter"
msgstr ""
#: ../../include/features.php:40
msgid "Enable widget to display Network posts only from selected network"
msgstr ""
#: ../../include/features.php:41
msgid "Save search terms for re-use"
msgstr ""
#: ../../include/features.php:46
msgid "Network Tabs"
msgstr ""
#: ../../include/features.php:47
msgid "Network Personal Tab"
msgstr ""
#: ../../include/features.php:47
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
#: ../../include/features.php:48
msgid "Network New Tab"
msgstr ""
#: ../../include/features.php:48
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr ""
#: ../../include/features.php:49
msgid "Network Shared Links Tab"
msgstr ""
#: ../../include/features.php:49
msgid "Enable tab to display only Network posts with links in them"
msgstr ""
#: ../../include/features.php:54
msgid "Post/Comment Tools"
msgstr ""
#: ../../include/features.php:55
msgid "Multiple Deletion"
msgstr ""
#: ../../include/features.php:55
msgid "Select and delete multiple posts/comments at once"
msgstr ""
#: ../../include/features.php:56
msgid "Edit Sent Posts"
msgstr ""
#: ../../include/features.php:56
msgid "Edit and correct posts and comments after sending"
msgstr ""
#: ../../include/features.php:57
msgid "Tagging"
msgstr ""
#: ../../include/features.php:57
msgid "Ability to tag existing posts"
msgstr ""
#: ../../include/features.php:58
msgid "Post Categories"
msgstr ""
#: ../../include/features.php:58
msgid "Add categories to your posts"
msgstr ""
#: ../../include/features.php:59
msgid "Ability to file posts under folders"
msgstr ""
#: ../../include/features.php:60
msgid "Dislike Posts"
msgstr ""
#: ../../include/features.php:60
msgid "Ability to dislike posts/comments"
msgstr ""
#: ../../include/features.php:61
msgid "Star Posts"
msgstr ""
#: ../../include/features.php:61
msgid "Ability to mark special posts with a star indicator"
msgstr ""
#: ../../include/dba.php:41
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
#: ../../include/message.php:15 ../../include/message.php:172
msgid "[no subject]"
msgstr ""
#: ../../include/acl_selectors.php:325
msgid "Visible to everybody"
msgstr ""
#: ../../include/enotify.php:16
msgid "Friendica Notification"
msgstr ""
#: ../../include/enotify.php:19
msgid "Thank You,"
msgstr ""
#: ../../include/enotify.php:21
#, php-format
msgid "%s Administrator"
msgstr ""
#: ../../include/enotify.php:40
#, php-format
msgid "%s <!item_type!>"
msgstr ""
#: ../../include/enotify.php:44
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr ""
#: ../../include/enotify.php:46
#, php-format
msgid "%1$s sent you a new private message at %2$s."
msgstr ""
#: ../../include/enotify.php:47
#, php-format
msgid "%1$s sent you %2$s."
msgstr ""
#: ../../include/enotify.php:47
msgid "a private message"
msgstr ""
#: ../../include/enotify.php:48
#, php-format
msgid "Please visit %s to view and/or reply to your private messages."
msgstr ""
#: ../../include/enotify.php:90
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:97
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr ""
#: ../../include/enotify.php:105
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:115
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
#: ../../include/enotify.php:116
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr ""
#: ../../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 ""
#: ../../include/enotify.php:126
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr ""
#: ../../include/enotify.php:128
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr ""
#: ../../include/enotify.php:130
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr ""
#: ../../include/enotify.php:141
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr ""
#: ../../include/enotify.php:142
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr ""
#: ../../include/enotify.php:143
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr ""
#: ../../include/enotify.php:155
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr ""
#: ../../include/enotify.php:156
#, php-format
msgid "%1$s poked you at %2$s"
msgstr ""
#: ../../include/enotify.php:157
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr ""
#: ../../include/enotify.php:172
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr ""
#: ../../include/enotify.php:173
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr ""
#: ../../include/enotify.php:174
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr ""
#: ../../include/enotify.php:185
msgid "[Friendica:Notify] Introduction received"
msgstr ""
#: ../../include/enotify.php:186
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:187
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr ""
#: ../../include/enotify.php:190 ../../include/enotify.php:208
#, php-format
msgid "You may visit their profile at %s"
msgstr ""
#: ../../include/enotify.php:192
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr ""
#: ../../include/enotify.php:199
msgid "[Friendica:Notify] Friend suggestion received"
msgstr ""
#: ../../include/enotify.php:200
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:201
#, php-format
msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr ""
#: ../../include/enotify.php:206
msgid "Name:"
msgstr ""
#: ../../include/enotify.php:207
msgid "Photo:"
msgstr ""
#: ../../include/enotify.php:210
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr ""
#: ../../include/follow.php:59
msgid ""
"This site is not configured to allow communications with other networks."
msgstr ""
#: ../../include/follow.php:60 ../../include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
#: ../../include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: ../../include/follow.php:82
msgid "An author or name was not found."
msgstr ""
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr ""
#: ../../include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: ../../include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr ""
#: ../../include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr ""
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr ""
#: ../../include/follow.php:259
msgid "following"
msgstr ""
#: ../../include/items.php:3373
msgid "A new person is sharing with you at "
msgstr ""
#: ../../include/items.php:3373
msgid "You have a new follower at "
msgstr ""
#: ../../include/items.php:3892
msgid "Do you really want to delete this item?"
msgstr ""
#: ../../include/items.php:4085
msgid "Archives"
msgstr ""
#: ../../include/user.php:39
msgid "An invitation is required."
msgstr ""
#: ../../include/user.php:44
msgid "Invitation could not be verified."
msgstr ""
#: ../../include/user.php:52
msgid "Invalid OpenID url"
msgstr ""
#: ../../include/user.php:67
msgid "Please enter the required information."
msgstr ""
#: ../../include/user.php:81
msgid "Please use a shorter name."
msgstr ""
#: ../../include/user.php:83
msgid "Name too short."
msgstr ""
#: ../../include/user.php:98
msgid "That doesn't appear to be your full (First Last) name."
msgstr ""
#: ../../include/user.php:103
msgid "Your email domain is not among those allowed on this site."
msgstr ""
#: ../../include/user.php:106
msgid "Not a valid email address."
msgstr ""
#: ../../include/user.php:116
msgid "Cannot use that email."
msgstr ""
#: ../../include/user.php:122
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr ""
#: ../../include/user.php:128 ../../include/user.php:226
msgid "Nickname is already registered. Please choose another."
msgstr ""
#: ../../include/user.php:138
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr ""
#: ../../include/user.php:154
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr ""
#: ../../include/user.php:212
msgid "An error occurred during registration. Please try again."
msgstr ""
#: ../../include/user.php:247
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
#: ../../include/security.php:22
msgid "Welcome "
msgstr ""
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr ""
#: ../../include/security.php:26
msgid "Welcome back "
msgstr ""
#: ../../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 ""
#: ../../include/Contact.php:115
msgid "stopped following"
msgstr ""
#: ../../include/Contact.php:225 ../../include/conversation.php:820
msgid "Poke"
msgstr ""
#: ../../include/Contact.php:226 ../../include/conversation.php:814
msgid "View Status"
msgstr ""
#: ../../include/Contact.php:227 ../../include/conversation.php:815
msgid "View Profile"
msgstr ""
#: ../../include/Contact.php:228 ../../include/conversation.php:816
msgid "View Photos"
msgstr ""
#: ../../include/Contact.php:229 ../../include/Contact.php:251
#: ../../include/conversation.php:817
msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:230 ../../include/Contact.php:251
#: ../../include/conversation.php:818
msgid "Edit Contact"
msgstr ""
#: ../../include/Contact.php:231 ../../include/Contact.php:251
#: ../../include/conversation.php:819
msgid "Send PM"
msgstr ""
#: ../../include/conversation.php:207
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: ../../include/conversation.php:291
msgid "post/item"
msgstr ""
#: ../../include/conversation.php:292
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: ../../include/conversation.php:621 ../../object/Item.php:249
msgid "Categories:"
msgstr ""
#: ../../include/conversation.php:622 ../../object/Item.php:250
msgid "Filed under:"
msgstr ""
#: ../../include/conversation.php:710
msgid "remove"
msgstr ""
#: ../../include/conversation.php:714
msgid "Delete Selected Items"
msgstr ""
#: ../../include/conversation.php:813
msgid "Follow Thread"
msgstr ""
#: ../../include/conversation.php:882
#, php-format
msgid "%s likes this."
msgstr ""
#: ../../include/conversation.php:882
#, php-format
msgid "%s doesn't like this."
msgstr ""
#: ../../include/conversation.php:887
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr ""
#: ../../include/conversation.php:890
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr ""
#: ../../include/conversation.php:904
msgid "and"
msgstr ""
#: ../../include/conversation.php:910
#, php-format
msgid ", and %d other people"
msgstr ""
#: ../../include/conversation.php:912
#, php-format
msgid "%s like this."
msgstr ""
#: ../../include/conversation.php:912
#, php-format
msgid "%s don't like this."
msgstr ""
#: ../../include/conversation.php:939 ../../include/conversation.php:957
msgid "Visible to <strong>everybody</strong>"
msgstr ""
#: ../../include/conversation.php:941 ../../include/conversation.php:959
msgid "Please enter a video link/URL:"
msgstr ""
#: ../../include/conversation.php:942 ../../include/conversation.php:960
msgid "Please enter an audio link/URL:"
msgstr ""
#: ../../include/conversation.php:943 ../../include/conversation.php:961
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:945 ../../include/conversation.php:963
msgid "Where are you right now?"
msgstr ""
#: ../../include/conversation.php:946
msgid "Delete item(s)?"
msgstr ""
#: ../../include/conversation.php:988
msgid "Post to Email"
msgstr ""
#: ../../include/conversation.php:1044
msgid "permissions"
msgstr ""
#: ../../include/conversation.php:1068
msgid "Post to Groups"
msgstr ""
#: ../../include/conversation.php:1069
msgid "Post to Contacts"
msgstr ""
#: ../../include/conversation.php:1070
msgid "Private post"
msgstr ""
#: ../../include/plugin.php:429 ../../include/plugin.php:431
msgid "Click here to upgrade."
msgstr ""
#: ../../include/plugin.php:437
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: ../../include/plugin.php:442
msgid "This action is not available under your subscription plan."
#: ../../index.php:400
msgid "toggle mobile"
msgstr ""
#: ../../boot.php:640
@ -9814,7 +9884,7 @@ msgstr ""
msgid "Requested account is not available."
msgstr ""
#: ../../boot.php:1265
#: ../../boot.php:1265 ../../boot.php:1369
msgid "Edit profile"
msgstr ""
@ -9826,122 +9896,50 @@ msgstr ""
msgid "Manage/edit profiles"
msgstr ""
#: ../../boot.php:1461 ../../boot.php:1547
#: ../../boot.php:1468 ../../boot.php:1554
msgid "g A l F d"
msgstr ""
#: ../../boot.php:1462 ../../boot.php:1548
#: ../../boot.php:1469 ../../boot.php:1555
msgid "F d"
msgstr ""
#: ../../boot.php:1507 ../../boot.php:1588
#: ../../boot.php:1514 ../../boot.php:1595
msgid "[today]"
msgstr ""
#: ../../boot.php:1519
#: ../../boot.php:1526
msgid "Birthday Reminders"
msgstr ""
#: ../../boot.php:1520
#: ../../boot.php:1527
msgid "Birthdays this week:"
msgstr ""
#: ../../boot.php:1581
#: ../../boot.php:1588
msgid "[No description]"
msgstr ""
#: ../../boot.php:1599
#: ../../boot.php:1606
msgid "Event Reminders"
msgstr ""
#: ../../boot.php:1600
#: ../../boot.php:1607
msgid "Events this week:"
msgstr ""
#: ../../boot.php:1836
#: ../../boot.php:1843
msgid "Status Messages and Posts"
msgstr ""
#: ../../boot.php:1843
#: ../../boot.php:1850
msgid "Profile Details"
msgstr ""
#: ../../boot.php:1860
#: ../../boot.php:1867
msgid "Events and Calendar"
msgstr ""
#: ../../boot.php:1867
#: ../../boot.php:1874
msgid "Only You Can See This"
msgstr ""
#: ../../object/Item.php:261
msgid "via"
msgstr ""
#: ../../index.php:400
msgid "toggle mobile"
msgstr ""
#: ../../addon.old/bg/bg.php:51
msgid "Bg settings updated."
msgstr ""
#: ../../addon.old/bg/bg.php:82
msgid "Bg Settings"
msgstr ""
#: ../../addon.old/drpost/drpost.php:35
msgid "Post to Drupal"
msgstr ""
#: ../../addon.old/drpost/drpost.php:72
msgid "Drupal Post Settings"
msgstr ""
#: ../../addon.old/drpost/drpost.php:74
msgid "Enable Drupal Post Plugin"
msgstr ""
#: ../../addon.old/drpost/drpost.php:79
msgid "Drupal username"
msgstr ""
#: ../../addon.old/drpost/drpost.php:84
msgid "Drupal password"
msgstr ""
#: ../../addon.old/drpost/drpost.php:89
msgid "Post Type - article,page,or blog"
msgstr ""
#: ../../addon.old/drpost/drpost.php:94
msgid "Drupal site URL"
msgstr ""
#: ../../addon.old/drpost/drpost.php:99
msgid "Drupal site uses clean URLS"
msgstr ""
#: ../../addon.old/drpost/drpost.php:104
msgid "Post to Drupal by default"
msgstr ""
#: ../../addon.old/oembed.old/oembed.php:30
msgid "OEmbed settings updated"
msgstr ""
#: ../../addon.old/oembed.old/oembed.php:43
msgid "Use OEmbed for YouTube videos"
msgstr ""
#: ../../addon.old/oembed.old/oembed.php:71
msgid "URL to embed:"
msgstr ""
#: ../../addon.old/tumblr/tumblr.php:74
msgid "Tumblr login"
msgstr ""
#: ../../addon.old/tumblr/tumblr.php:79
msgid "Tumblr password"
msgstr ""

View file

@ -51,6 +51,8 @@
{{ inc field_select.tpl with $field=$theme_mobile }}{{ endinc }}
{{ inc field_select.tpl with $field=$ssl_policy }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$new_share }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$hide_help }}{{ endinc }}
{{ inc field_select.tpl with $field=$singleuser }}{{ endinc }}
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>

View file

@ -16,6 +16,7 @@
# <johnnywiertara@gmail.com>, 2012.
# <karolinaa9506@gmail.com>, 2012.
# <koalamis0@gmail.com>, 2012.
# Mariusz Pisz <mariusz.pisz@zhp.net.pl>, 2013.
# <m.dauter@tlen.pl>, 2012.
# <mhnxo123@gmail.com>, 2012.
# <michalina-korzeniowska@wp.pl>, 2012.
@ -27,9 +28,9 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2013-01-18 10:00-0800\n"
"PO-Revision-Date: 2013-01-21 09:03+0000\n"
"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n"
"POT-Creation-Date: 2013-02-07 10:00-0800\n"
"PO-Revision-Date: 2013-02-17 11:50+0000\n"
"Last-Translator: Piszu <mariusz.pisz@zhp.net.pl>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/friendica/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -57,11 +58,11 @@ msgstr "Nie udało się zaktualizować kontaktu."
#: ../../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:995
#: ../../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:90 ../../mod/network.php:6
#: ../../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
@ -70,18 +71,18 @@ msgstr "Nie udało się zaktualizować kontaktu."
#: ../../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:172
#: ../../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:28 ../../mod/invite.php:15 ../../mod/invite.php:83
#: ../../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:3987
#: ../../index.php:340 ../../addon.old/facebook/facebook.php:510
#: ../../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
@ -151,19 +152,20 @@ msgid "New photo from this URL"
msgstr "Nowe zdjęcie z tej ścieżki"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:466 ../../mod/photos.php:1028
#: ../../mod/photos.php:1118 ../../mod/photos.php:1402
#: ../../mod/photos.php:1442 ../../mod/photos.php:1486
#: ../../mod/photos.php:1569 ../../mod/install.php:248
#: ../../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:352
#: ../../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:1018 ../../mod/group.php:87 ../../mod/mood.php:137
#: ../../mod/message.php:301 ../../mod/message.php:527 ../../mod/admin.php:461
#: ../../mod/admin.php:728 ../../mod/admin.php:865 ../../mod/admin.php:1064
#: ../../mod/admin.php:1151 ../../mod/profiles.php:626
#: ../../mod/invite.php:121 ../../addon/fromgplus/fromgplus.php:44
#: ../../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
@ -197,7 +199,7 @@ msgstr "Nowe zdjęcie z tej ścieżki"
#: ../../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:554
#: ../../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
@ -258,15 +260,15 @@ msgid "Help:"
msgstr "Pomoc:"
#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225
#: ../../include/nav.php:113 ../../addon.old/dav/friendica/layout.fnk.php:225
msgid "Help"
msgstr "Pomoc"
#: ../../mod/help.php:90 ../../index.php:225
#: ../../mod/help.php:90 ../../index.php:226
msgid "Not Found"
msgstr "Nie znaleziono"
#: ../../mod/help.php:93 ../../index.php:228
#: ../../mod/help.php:93 ../../index.php:229
msgid "Page not found."
msgstr "Strona nie znaleziona."
@ -296,87 +298,87 @@ msgstr "Zaproponuj znajomych dla %s"
msgid "Event title and start time are required."
msgstr ""
#: ../../mod/events.php:279
#: ../../mod/events.php:291
msgid "l, F j"
msgstr "d, M d "
#: ../../mod/events.php:301
#: ../../mod/events.php:313
msgid "Edit event"
msgstr "Edytuj wydarzenie"
#: ../../mod/events.php:323 ../../include/text.php:1246
#: ../../mod/events.php:335 ../../include/text.php:1258
msgid "link to source"
msgstr "link do źródła"
#: ../../mod/events.php:358 ../../view/theme/diabook/theme.php:91
#: ../../include/nav.php:52 ../../boot.php:1836
#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
#: ../../include/nav.php:79 ../../boot.php:1857
msgid "Events"
msgstr "Wydarzenia"
#: ../../mod/events.php:359
#: ../../mod/events.php:371
msgid "Create New Event"
msgstr "Stwórz nowe wydarzenie"
#: ../../mod/events.php:360 ../../addon/dav/friendica/layout.fnk.php:263
#: ../../mod/events.php:372 ../../addon/dav/friendica/layout.fnk.php:263
#: ../../addon.old/dav/friendica/layout.fnk.php:263
msgid "Previous"
msgstr "Poprzedni"
#: ../../mod/events.php:361 ../../mod/install.php:207
#: ../../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 "Następny"
#: ../../mod/events.php:434
#: ../../mod/events.php:446
msgid "hour:minute"
msgstr "godzina:minuta"
#: ../../mod/events.php:444
#: ../../mod/events.php:456
msgid "Event details"
msgstr "Szczegóły wydarzenia"
#: ../../mod/events.php:445
#: ../../mod/events.php:457
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
msgstr ""
#: ../../mod/events.php:447
#: ../../mod/events.php:459
msgid "Event Starts:"
msgstr "Rozpoczęcie wydarzenia:"
#: ../../mod/events.php:447 ../../mod/events.php:461
#: ../../mod/events.php:459 ../../mod/events.php:473
msgid "Required"
msgstr "Wymagany"
#: ../../mod/events.php:450
#: ../../mod/events.php:462
msgid "Finish date/time is not known or not relevant"
msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna"
#: ../../mod/events.php:452
#: ../../mod/events.php:464
msgid "Event Finishes:"
msgstr "Zakończenie wydarzenia:"
#: ../../mod/events.php:455
#: ../../mod/events.php:467
msgid "Adjust for viewer timezone"
msgstr ""
msgstr "Dopasuj dla strefy czasowej widza"
#: ../../mod/events.php:457
#: ../../mod/events.php:469
msgid "Description:"
msgstr "Opis:"
#: ../../mod/events.php:459 ../../mod/directory.php:134
#: ../../mod/events.php:471 ../../mod/directory.php:134
#: ../../addon/forumdirectory/forumdirectory.php:156
#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
#: ../../boot.php:1358
#: ../../boot.php:1379
msgid "Location:"
msgstr "Lokalizacja"
#: ../../mod/events.php:461
#: ../../mod/events.php:473
msgid "Title:"
msgstr "Tytuł:"
#: ../../mod/events.php:463
#: ../../mod/events.php:475
msgid "Share this event"
msgstr "Udostępnij te wydarzenie"
@ -384,11 +386,14 @@ msgstr "Udostępnij te wydarzenie"
msgid "System down for maintenance"
msgstr ""
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
#: ../../mod/dfrn_request.php:848 ../../mod/settings.php:561
#: ../../mod/settings.php:587 ../../mod/fbrowser.php:81
#: ../../mod/fbrowser.php:116 ../../addon/js_upload/js_upload.php:45
#: ../../include/conversation.php:1040
#: ../../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 "Anuluj"
@ -411,7 +416,7 @@ msgstr "Wybierz tag do usunięcia"
msgid "Remove"
msgstr "Usuń"
#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
#, php-format
msgid "%1$s welcomes %2$s"
msgstr ""
@ -435,14 +440,16 @@ msgid ""
msgstr "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?"
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:836
#: ../../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/profiles.php:606
#: ../../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 "Tak"
@ -458,20 +465,20 @@ msgstr "Tak"
msgid "No"
msgstr "Nie"
#: ../../mod/photos.php:51 ../../boot.php:1829
#: ../../mod/photos.php:51 ../../boot.php:1850
msgid "Photo Albums"
msgstr "Albumy zdjęć"
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
#: ../../mod/photos.php:1102 ../../mod/photos.php:1125
#: ../../mod/photos.php:1626 ../../mod/photos.php:1638
#: ../../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 "Zdjęcia kontaktu"
#: ../../mod/photos.php:66 ../../mod/photos.php:1141 ../../mod/photos.php:1685
#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792
msgid "Upload New Photos"
msgstr "Wyślij nowe zdjęcie"
@ -483,8 +490,8 @@ msgstr "wszyscy"
msgid "Contact information unavailable"
msgstr "Informacje o kontakcie nie dostępne."
#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1102
#: ../../mod/photos.php:1125 ../../mod/profile_photo.php:74
#: ../../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
@ -499,213 +506,247 @@ msgstr "Zdjęcia profilowe"
msgid "Album not found."
msgstr "Album nie znaleziony"
#: ../../mod/photos.php:182 ../../mod/photos.php:1119
#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197
msgid "Delete Album"
msgstr "Usuń album"
#: ../../mod/photos.php:245 ../../mod/photos.php:1403
#: ../../mod/photos.php:197
msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499
msgid "Delete Photo"
msgstr "Usuń zdjęcie"
#: ../../mod/photos.php:607
#: ../../mod/photos.php:284
msgid "Do you really want to delete this photo?"
msgstr ""
#: ../../mod/photos.php:653
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
#: ../../mod/photos.php:607
#: ../../mod/photos.php:653
msgid "a photo"
msgstr "zdjęcie"
#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:321
#: ../../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 "obrazek przekracza limit rozmiaru"
#: ../../mod/photos.php:720
#: ../../mod/photos.php:766
msgid "Image file is empty."
msgstr "Plik obrazka jest pusty."
#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153
#: ../../mod/photos.php:798 ../../mod/profile_photo.php:153
#: ../../mod/wall_upload.php:112
msgid "Unable to process image."
msgstr "Przetwarzanie obrazu nie powiodło się."
#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301
#: ../../mod/photos.php:825 ../../mod/profile_photo.php:301
#: ../../mod/wall_upload.php:138
msgid "Image upload failed."
msgstr "Przesyłanie obrazu nie powiodło się"
#: ../../mod/photos.php:865 ../../mod/community.php:18
#: ../../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 "Publiczny dostęp zabroniony"
#: ../../mod/photos.php:875
#: ../../mod/photos.php:921
msgid "No photos selected"
msgstr "Nie zaznaczono zdjęć"
#: ../../mod/photos.php:976
#: ../../mod/photos.php:1022
msgid "Access to this item is restricted."
msgstr "Dostęp do tego obiektu jest ograniczony."
#: ../../mod/photos.php:1037
#: ../../mod/photos.php:1085
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: ../../mod/photos.php:1053
#: ../../mod/photos.php:1120
msgid "Upload Photos"
msgstr "Prześlij zdjęcia"
#: ../../mod/photos.php:1057 ../../mod/photos.php:1114
#: ../../mod/photos.php:1124 ../../mod/photos.php:1192
msgid "New album name: "
msgstr "Nazwa nowego albumu:"
#: ../../mod/photos.php:1058
#: ../../mod/photos.php:1125
msgid "or existing album name: "
msgstr "lub istniejąca nazwa albumu:"
#: ../../mod/photos.php:1059
#: ../../mod/photos.php:1126
msgid "Do not show a status post for this upload"
msgstr "Nie pokazuj postów statusu dla tego wysłania"
#: ../../mod/photos.php:1061 ../../mod/photos.php:1398
#: ../../mod/photos.php:1128 ../../mod/photos.php:1494
msgid "Permissions"
msgstr "Uprawnienia"
#: ../../mod/photos.php:1129
#: ../../mod/photos.php:1137 ../../mod/photos.php:1503
#: ../../mod/settings.php:1070
msgid "Show to Groups"
msgstr ""
#: ../../mod/photos.php:1138 ../../mod/photos.php:1504
#: ../../mod/settings.php:1071
msgid "Show to Contacts"
msgstr ""
#: ../../mod/photos.php:1139
msgid "Private Photo"
msgstr ""
#: ../../mod/photos.php:1140
msgid "Public Photo"
msgstr ""
#: ../../mod/photos.php:1207
msgid "Edit Album"
msgstr "Edytuj album"
#: ../../mod/photos.php:1135
#: ../../mod/photos.php:1213
msgid "Show Newest First"
msgstr "Najpierw pokaż najnowsze"
#: ../../mod/photos.php:1137
#: ../../mod/photos.php:1215
msgid "Show Oldest First"
msgstr "Najpierw pokaż najstarsze"
#: ../../mod/photos.php:1170 ../../mod/photos.php:1668
#: ../../mod/photos.php:1248 ../../mod/photos.php:1775
msgid "View Photo"
msgstr "Zobacz zdjęcie"
#: ../../mod/photos.php:1205
#: ../../mod/photos.php:1283
msgid "Permission denied. Access to this item may be restricted."
msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony."
#: ../../mod/photos.php:1207
#: ../../mod/photos.php:1285
msgid "Photo not available"
msgstr "Zdjęcie niedostępne"
#: ../../mod/photos.php:1263
#: ../../mod/photos.php:1341
msgid "View photo"
msgstr "Zobacz zdjęcie"
#: ../../mod/photos.php:1263
#: ../../mod/photos.php:1341
msgid "Edit photo"
msgstr "Edytuj zdjęcie"
#: ../../mod/photos.php:1264
#: ../../mod/photos.php:1342
msgid "Use as profile photo"
msgstr "Ustaw jako zdjęcie profilowe"
#: ../../mod/photos.php:1270 ../../mod/content.php:620
#: ../../mod/photos.php:1348 ../../mod/content.php:620
#: ../../object/Item.php:106
msgid "Private Message"
msgstr "Wiadomość prywatna"
#: ../../mod/photos.php:1289
#: ../../mod/photos.php:1367
msgid "View Full Size"
msgstr "Zobacz w pełnym rozmiarze"
#: ../../mod/photos.php:1363
#: ../../mod/photos.php:1441
msgid "Tags: "
msgstr "Tagi:"
#: ../../mod/photos.php:1366
#: ../../mod/photos.php:1444
msgid "[Remove any tag]"
msgstr "[Usunąć znacznik]"
#: ../../mod/photos.php:1388
#: ../../mod/photos.php:1484
msgid "Rotate CW (right)"
msgstr ""
#: ../../mod/photos.php:1389
#: ../../mod/photos.php:1485
msgid "Rotate CCW (left)"
msgstr ""
#: ../../mod/photos.php:1391
#: ../../mod/photos.php:1487
msgid "New album name"
msgstr "Nazwa nowego albumu"
#: ../../mod/photos.php:1394
#: ../../mod/photos.php:1490
msgid "Caption"
msgstr "Zawartość"
#: ../../mod/photos.php:1396
#: ../../mod/photos.php:1492
msgid "Add a Tag"
msgstr "Dodaj tag"
#: ../../mod/photos.php:1400
#: ../../mod/photos.php:1496
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1420 ../../mod/content.php:684
#: ../../mod/photos.php:1505
msgid "Private photo"
msgstr ""
#: ../../mod/photos.php:1506
msgid "Public photo"
msgstr ""
#: ../../mod/photos.php:1526 ../../mod/content.php:684
#: ../../object/Item.php:204
msgid "I like this (toggle)"
msgstr "Lubię to (zmień)"
#: ../../mod/photos.php:1421 ../../mod/content.php:685
#: ../../mod/photos.php:1527 ../../mod/content.php:685
#: ../../object/Item.php:205
msgid "I don't like this (toggle)"
msgstr "Nie lubię (zmień)"
#: ../../mod/photos.php:1422 ../../include/conversation.php:1000
#: ../../mod/photos.php:1528 ../../include/conversation.php:1023
msgid "Share"
msgstr "Podziel się"
#: ../../mod/photos.php:1423 ../../mod/editpost.php:121
#: ../../mod/photos.php:1529 ../../mod/editpost.php:124
#: ../../mod/content.php:499 ../../mod/content.php:883
#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
#: ../../mod/message.php:528 ../../include/conversation.php:645
#: ../../include/conversation.php:1019 ../../object/Item.php:293
#: ../../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 "Proszę czekać"
#: ../../mod/photos.php:1439 ../../mod/photos.php:1483
#: ../../mod/photos.php:1566 ../../mod/content.php:707
#: ../../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 "To jesteś ty"
#: ../../mod/photos.php:1441 ../../mod/photos.php:1485
#: ../../mod/photos.php:1568 ../../mod/content.php:709 ../../boot.php:641
#: ../../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 "Komentarz"
#: ../../mod/photos.php:1443 ../../mod/photos.php:1487
#: ../../mod/photos.php:1570 ../../mod/editpost.php:142
#: ../../mod/content.php:719 ../../include/conversation.php:1037
#: ../../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 "Podgląd"
#: ../../mod/photos.php:1527 ../../mod/content.php:439
#: ../../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:569 ../../object/Item.php:120
#: ../../include/conversation.php:570 ../../object/Item.php:120
msgid "Delete"
msgstr "Usuń"
#: ../../mod/photos.php:1674
#: ../../mod/photos.php:1781
msgid "View Album"
msgstr "Zobacz album"
#: ../../mod/photos.php:1683
#: ../../mod/photos.php:1790
msgid "Recent Photos"
msgstr "Ostatnio dodane zdjęcia"
@ -714,7 +755,7 @@ msgid "Not available."
msgstr "Niedostępne."
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
#: ../../include/nav.php:101
#: ../../include/nav.php:128
msgid "Community"
msgstr "Społeczność"
@ -763,96 +804,92 @@ msgstr "Artykuł nie znaleziony"
msgid "Edit post"
msgstr "Edytuj post"
#: ../../mod/editpost.php:91 ../../include/conversation.php:986
msgid "Post to Email"
msgstr "Wyślij poprzez email"
#: ../../mod/editpost.php:106 ../../mod/content.php:728
#: ../../mod/editpost.php:109 ../../mod/content.php:728
#: ../../mod/settings.php:622 ../../object/Item.php:110
msgid "Edit"
msgstr "Edytuj"
#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
#: ../../mod/message.php:298 ../../mod/message.php:525
#: ../../include/conversation.php:1001
#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
#: ../../mod/message.php:332 ../../mod/message.php:562
#: ../../include/conversation.php:1024
msgid "Upload photo"
msgstr "Wyślij zdjęcie"
#: ../../mod/editpost.php:108 ../../include/conversation.php:1002
#: ../../mod/editpost.php:111 ../../include/conversation.php:1025
msgid "upload photo"
msgstr "dodaj zdjęcie"
#: ../../mod/editpost.php:109 ../../include/conversation.php:1003
#: ../../mod/editpost.php:112 ../../include/conversation.php:1026
msgid "Attach file"
msgstr "Przyłącz plik"
#: ../../mod/editpost.php:110 ../../include/conversation.php:1004
#: ../../mod/editpost.php:113 ../../include/conversation.php:1027
msgid "attach file"
msgstr "załącz plik"
#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
#: ../../mod/message.php:299 ../../mod/message.php:526
#: ../../include/conversation.php:1005
#: ../../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 "Wstaw link"
#: ../../mod/editpost.php:112 ../../include/conversation.php:1006
#: ../../mod/editpost.php:115 ../../include/conversation.php:1029
msgid "web link"
msgstr "Adres www"
#: ../../mod/editpost.php:113 ../../include/conversation.php:1007
#: ../../mod/editpost.php:116 ../../include/conversation.php:1030
msgid "Insert video link"
msgstr "Wstaw link wideo"
#: ../../mod/editpost.php:114 ../../include/conversation.php:1008
#: ../../mod/editpost.php:117 ../../include/conversation.php:1031
msgid "video link"
msgstr "link do filmu"
#: ../../mod/editpost.php:115 ../../include/conversation.php:1009
#: ../../mod/editpost.php:118 ../../include/conversation.php:1032
msgid "Insert audio link"
msgstr "Wstaw link audio"
#: ../../mod/editpost.php:116 ../../include/conversation.php:1010
#: ../../mod/editpost.php:119 ../../include/conversation.php:1033
msgid "audio link"
msgstr "Link audio"
#: ../../mod/editpost.php:117 ../../include/conversation.php:1011
#: ../../mod/editpost.php:120 ../../include/conversation.php:1034
msgid "Set your location"
msgstr "Ustaw swoje położenie"
#: ../../mod/editpost.php:118 ../../include/conversation.php:1012
#: ../../mod/editpost.php:121 ../../include/conversation.php:1035
msgid "set location"
msgstr "wybierz lokalizację"
#: ../../mod/editpost.php:119 ../../include/conversation.php:1013
#: ../../mod/editpost.php:122 ../../include/conversation.php:1036
msgid "Clear browser location"
msgstr "Wyczyść położenie przeglądarki"
#: ../../mod/editpost.php:120 ../../include/conversation.php:1014
#: ../../mod/editpost.php:123 ../../include/conversation.php:1037
msgid "clear location"
msgstr "wyczyść lokalizację"
#: ../../mod/editpost.php:122 ../../include/conversation.php:1020
#: ../../mod/editpost.php:125 ../../include/conversation.php:1043
msgid "Permission settings"
msgstr "Ustawienia uprawnień"
#: ../../mod/editpost.php:130 ../../include/conversation.php:1029
#: ../../mod/editpost.php:133 ../../include/conversation.php:1052
msgid "CC: email addresses"
msgstr "CC: adresy e-mail"
#: ../../mod/editpost.php:131 ../../include/conversation.php:1030
#: ../../mod/editpost.php:134 ../../include/conversation.php:1053
msgid "Public post"
msgstr "Publiczny post"
#: ../../mod/editpost.php:134 ../../include/conversation.php:1016
#: ../../mod/editpost.php:137 ../../include/conversation.php:1039
msgid "Set title"
msgstr "Ustaw tytuł"
#: ../../mod/editpost.php:136 ../../include/conversation.php:1018
#: ../../mod/editpost.php:139 ../../include/conversation.php:1041
msgid "Categories (comma-separated list)"
msgstr ""
#: ../../mod/editpost.php:137 ../../include/conversation.php:1032
#: ../../mod/editpost.php:140 ../../include/conversation.php:1055
msgid "Example: bob@example.com, mary@example.com"
msgstr "Przykład: bob@example.com, mary@example.com"
@ -1046,7 +1083,7 @@ msgstr "Twój zidentyfikowany adres:"
msgid "Submit Request"
msgstr "Wyślij zgłoszenie"
#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:140
#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:167
msgid "Account settings"
msgstr "Ustawienia konta"
@ -1075,10 +1112,10 @@ msgid "Remove account"
msgstr "Usuń konto"
#: ../../mod/uexport.php:48 ../../mod/settings.php:74
#: ../../mod/newmember.php:22 ../../mod/admin.php:824 ../../mod/admin.php:1029
#: ../../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:140
#: ../../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"
@ -1305,7 +1342,7 @@ msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany"
msgid ""
"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."
msgstr ""
msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić."
#: ../../mod/install.php:424
msgid ""
@ -1454,8 +1491,8 @@ msgstr "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyśl
msgid "is interested in:"
msgstr "interesuje się:"
#: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1296
#: ../../mod/match.php:58 ../../mod/suggest.php:88
#: ../../include/contact_widgets.php:9 ../../boot.php:1317
msgid "Connect"
msgstr "Połącz"
@ -1472,37 +1509,37 @@ msgstr "Dane prywatne nie są dostępne zdalnie "
msgid "Visible to:"
msgstr "Widoczne dla:"
#: ../../mod/content.php:119 ../../mod/network.php:594
#: ../../mod/content.php:119 ../../mod/network.php:596
msgid "No such group"
msgstr "Nie ma takiej grupy"
#: ../../mod/content.php:130 ../../mod/network.php:605
#: ../../mod/content.php:130 ../../mod/network.php:607
msgid "Group is empty"
msgstr "Grupa jest pusta"
#: ../../mod/content.php:134 ../../mod/network.php:609
#: ../../mod/content.php:134 ../../mod/network.php:611
msgid "Group: "
msgstr "Grupa:"
#: ../../mod/content.php:438 ../../mod/content.php:740
#: ../../include/conversation.php:568 ../../object/Item.php:119
#: ../../include/conversation.php:569 ../../object/Item.php:119
msgid "Select"
msgstr "Wybierz"
#: ../../mod/content.php:472 ../../mod/content.php:852
#: ../../mod/content.php:853 ../../include/conversation.php:608
#: ../../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 "Pokaż %s's profil @ %s"
#: ../../mod/content.php:482 ../../mod/content.php:864
#: ../../include/conversation.php:628 ../../object/Item.php:272
#: ../../include/conversation.php:629 ../../object/Item.php:272
#, php-format
msgid "%s from %s"
msgstr "%s od %s"
#: ../../mod/content.php:497 ../../include/conversation.php:643
#: ../../mod/content.php:497 ../../include/conversation.php:644
msgid "View in context"
msgstr "Zobacz w kontekście"
@ -1514,7 +1551,7 @@ msgstr[0] " %d komentarz"
msgstr[1] " %d komentarzy"
msgstr[2] " %d komentarzy"
#: ../../mod/content.php:605 ../../include/text.php:1502
#: ../../mod/content.php:605 ../../include/text.php:1514
#: ../../object/Item.php:315 ../../object/Item.php:328
msgid "comment"
msgid_plural "comments"
@ -1608,11 +1645,11 @@ msgstr "do"
#: ../../mod/content.php:855 ../../object/Item.php:262
msgid "Wall-to-Wall"
msgstr ""
msgstr "Wall-to-Wall"
#: ../../mod/content.php:856 ../../object/Item.php:263
msgid "via Wall-To-Wall:"
msgstr ""
msgstr "via Wall-To-Wall:"
#: ../../mod/home.php:34 ../../addon/communityhome/communityhome.php:189
#: ../../addon.old/communityhome/communityhome.php:179
@ -1630,8 +1667,8 @@ msgid "Discard"
msgstr "Odrzuć"
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
#: ../../mod/notifications.php:210 ../../mod/contacts.php:325
#: ../../mod/contacts.php:379
#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
#: ../../mod/contacts.php:413
msgid "Ignore"
msgstr "Ignoruj"
@ -1639,7 +1676,7 @@ msgstr "Ignoruj"
msgid "System"
msgstr "System"
#: ../../mod/notifications.php:83 ../../include/nav.php:113
#: ../../mod/notifications.php:83 ../../include/nav.php:140
msgid "Network"
msgstr "Sieć"
@ -1648,16 +1685,16 @@ msgid "Personal"
msgstr "Osobiste"
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
#: ../../include/nav.php:77 ../../include/nav.php:116
#: ../../include/nav.php:104 ../../include/nav.php:143
msgid "Home"
msgstr "Dom"
#: ../../mod/notifications.php:98 ../../include/nav.php:122
#: ../../mod/notifications.php:98 ../../include/nav.php:149
msgid "Introductions"
msgstr "Wstępy"
#: ../../mod/notifications.php:103 ../../mod/message.php:180
#: ../../include/nav.php:129
#: ../../mod/notifications.php:103 ../../mod/message.php:182
#: ../../include/nav.php:156
msgid "Messages"
msgstr "Wiadomości"
@ -1683,7 +1720,7 @@ msgid "suggested by %s"
msgstr "zaproponowane przez %s"
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/contacts.php:385
#: ../../mod/contacts.php:419
msgid "Hide this contact from others"
msgstr "Ukryj ten kontakt przed innymi"
@ -1740,7 +1777,7 @@ msgstr "Nowy obserwator"
msgid "No introductions."
msgstr "Brak wstępu."
#: ../../mod/notifications.php:220 ../../include/nav.php:123
#: ../../mod/notifications.php:220 ../../include/nav.php:150
msgid "Notifications"
msgstr "Powiadomienia"
@ -1841,51 +1878,55 @@ msgstr "Kontakt został zarchiwizowany"
msgid "Contact has been unarchived"
msgstr ""
#: ../../mod/contacts.php:233
#: ../../mod/contacts.php:244
msgid "Do you really want to delete this contact?"
msgstr ""
#: ../../mod/contacts.php:263
msgid "Contact has been removed."
msgstr "Kontakt został usunięty."
#: ../../mod/contacts.php:267
#: ../../mod/contacts.php:301
#, php-format
msgid "You are mutual friends with %s"
msgstr "Jesteś już znajomym z %s"
#: ../../mod/contacts.php:271
#: ../../mod/contacts.php:305
#, php-format
msgid "You are sharing with %s"
msgstr "Współdzielisz z %s"
#: ../../mod/contacts.php:276
#: ../../mod/contacts.php:310
#, php-format
msgid "%s is sharing with you"
msgstr "%s współdzieli z tobą"
#: ../../mod/contacts.php:293
#: ../../mod/contacts.php:327
msgid "Private communications are not available for this contact."
msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu"
#: ../../mod/contacts.php:296
#: ../../mod/contacts.php:330
msgid "Never"
msgstr "Nigdy"
#: ../../mod/contacts.php:300
#: ../../mod/contacts.php:334
msgid "(Update was successful)"
msgstr "(Aktualizacja przebiegła pomyślnie)"
#: ../../mod/contacts.php:300
#: ../../mod/contacts.php:334
msgid "(Update was not successful)"
msgstr "(Aktualizacja nie powiodła się)"
#: ../../mod/contacts.php:302
#: ../../mod/contacts.php:336
msgid "Suggest friends"
msgstr "Osoby, które możesz znać"
#: ../../mod/contacts.php:306
#: ../../mod/contacts.php:340
#, php-format
msgid "Network type: %s"
msgstr "Typ sieci: %s"
#: ../../mod/contacts.php:309 ../../include/contact_widgets.php:199
#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
@ -1893,221 +1934,221 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../mod/contacts.php:314
#: ../../mod/contacts.php:348
msgid "View all contacts"
msgstr "Zobacz wszystkie kontakty"
#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:737
msgid "Unblock"
msgstr "Odblokuj"
#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:736
msgid "Block"
msgstr "Zablokuj"
#: ../../mod/contacts.php:322
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr ""
#: ../../mod/contacts.php:325 ../../mod/contacts.php:379
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
msgid "Unignore"
msgstr "Odblokuj"
#: ../../mod/contacts.php:328
#: ../../mod/contacts.php:362
msgid "Toggle Ignored status"
msgstr ""
#: ../../mod/contacts.php:332
#: ../../mod/contacts.php:366
msgid "Unarchive"
msgstr ""
#: ../../mod/contacts.php:332
#: ../../mod/contacts.php:366
msgid "Archive"
msgstr "Archiwum"
#: ../../mod/contacts.php:335
#: ../../mod/contacts.php:369
msgid "Toggle Archive status"
msgstr ""
#: ../../mod/contacts.php:338
#: ../../mod/contacts.php:372
msgid "Repair"
msgstr "Napraw"
#: ../../mod/contacts.php:341
#: ../../mod/contacts.php:375
msgid "Advanced Contact Settings"
msgstr "Zaawansowane ustawienia kontaktów"
#: ../../mod/contacts.php:347
#: ../../mod/contacts.php:381
msgid "Communications lost with this contact!"
msgstr ""
#: ../../mod/contacts.php:350
#: ../../mod/contacts.php:384
msgid "Contact Editor"
msgstr "Edytor kontaktów"
#: ../../mod/contacts.php:353
#: ../../mod/contacts.php:387
msgid "Profile Visibility"
msgstr "Widoczność profilu"
#: ../../mod/contacts.php:354
#: ../../mod/contacts.php:388
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"
#: ../../mod/contacts.php:355
#: ../../mod/contacts.php:389
msgid "Contact Information / Notes"
msgstr "Informacja o kontakcie / Notka"
#: ../../mod/contacts.php:356
#: ../../mod/contacts.php:390
msgid "Edit contact notes"
msgstr "Edytuj notatki kontaktu"
#: ../../mod/contacts.php:361 ../../mod/contacts.php:553
#: ../../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 "Obejrzyj %s's profil [%s]"
#: ../../mod/contacts.php:362
#: ../../mod/contacts.php:396
msgid "Block/Unblock contact"
msgstr "Zablokuj/odblokuj kontakt"
#: ../../mod/contacts.php:363
#: ../../mod/contacts.php:397
msgid "Ignore contact"
msgstr "Ignoruj kontakt"
#: ../../mod/contacts.php:364
#: ../../mod/contacts.php:398
msgid "Repair URL settings"
msgstr "Napraw ustawienia adresu"
#: ../../mod/contacts.php:365
#: ../../mod/contacts.php:399
msgid "View conversations"
msgstr "Zobacz rozmowę"
#: ../../mod/contacts.php:367
#: ../../mod/contacts.php:401
msgid "Delete contact"
msgstr "Usuń kontakt"
#: ../../mod/contacts.php:371
#: ../../mod/contacts.php:405
msgid "Last update:"
msgstr "Ostatnia aktualizacja:"
#: ../../mod/contacts.php:373
#: ../../mod/contacts.php:407
msgid "Update public posts"
msgstr "Zaktualizuj publiczne posty"
#: ../../mod/contacts.php:375 ../../mod/admin.php:1209
#: ../../mod/contacts.php:409 ../../mod/admin.php:1213
msgid "Update now"
msgstr "Aktualizuj teraz"
#: ../../mod/contacts.php:382
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr "Obecnie zablokowany"
#: ../../mod/contacts.php:383
#: ../../mod/contacts.php:417
msgid "Currently ignored"
msgstr "Obecnie zignorowany"
#: ../../mod/contacts.php:384
#: ../../mod/contacts.php:418
msgid "Currently archived"
msgstr "Obecnie zarchiwizowany"
#: ../../mod/contacts.php:385
#: ../../mod/contacts.php:419
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> być widoczne"
#: ../../mod/contacts.php:438
#: ../../mod/contacts.php:470
msgid "Suggestions"
msgstr "Sugestie"
#: ../../mod/contacts.php:441
#: ../../mod/contacts.php:473
msgid "Suggest potential friends"
msgstr "Sugerowani znajomi"
#: ../../mod/contacts.php:444 ../../mod/group.php:194
#: ../../mod/contacts.php:476 ../../mod/group.php:194
msgid "All Contacts"
msgstr "Wszystkie kontakty"
#: ../../mod/contacts.php:447
#: ../../mod/contacts.php:479
msgid "Show all contacts"
msgstr "Pokaż wszystkie kontakty"
#: ../../mod/contacts.php:450
#: ../../mod/contacts.php:482
msgid "Unblocked"
msgstr "Odblokowany"
#: ../../mod/contacts.php:453
#: ../../mod/contacts.php:485
msgid "Only show unblocked contacts"
msgstr "Pokaż tylko odblokowane kontakty"
#: ../../mod/contacts.php:457
#: ../../mod/contacts.php:489
msgid "Blocked"
msgstr "Zablokowany"
#: ../../mod/contacts.php:460
#: ../../mod/contacts.php:492
msgid "Only show blocked contacts"
msgstr "Pokaż tylko zablokowane kontakty"
#: ../../mod/contacts.php:464
#: ../../mod/contacts.php:496
msgid "Ignored"
msgstr "Zignorowany"
#: ../../mod/contacts.php:467
#: ../../mod/contacts.php:499
msgid "Only show ignored contacts"
msgstr "Pokaż tylko ignorowane kontakty"
#: ../../mod/contacts.php:471
#: ../../mod/contacts.php:503
msgid "Archived"
msgstr ""
#: ../../mod/contacts.php:474
#: ../../mod/contacts.php:506
msgid "Only show archived contacts"
msgstr "Pokaż tylko zarchiwizowane kontakty"
#: ../../mod/contacts.php:478
#: ../../mod/contacts.php:510
msgid "Hidden"
msgstr "Ukryty"
#: ../../mod/contacts.php:481
#: ../../mod/contacts.php:513
msgid "Only show hidden contacts"
msgstr "Pokaż tylko ukryte kontakty"
#: ../../mod/contacts.php:529
#: ../../mod/contacts.php:561
msgid "Mutual Friendship"
msgstr "Wzajemna przyjaźń"
#: ../../mod/contacts.php:533
#: ../../mod/contacts.php:565
msgid "is a fan of yours"
msgstr "jest twoim fanem"
#: ../../mod/contacts.php:537
#: ../../mod/contacts.php:569
msgid "you are a fan of"
msgstr "jesteś fanem"
#: ../../mod/contacts.php:554 ../../mod/nogroup.php:41
#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Edytuj kontakt"
#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89
#: ../../include/nav.php:144
#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
#: ../../include/nav.php:171
msgid "Contacts"
msgstr "Kontakty"
#: ../../mod/contacts.php:579
#: ../../mod/contacts.php:611
msgid "Search your contacts"
msgstr "Wyszukaj w kontaktach"
#: ../../mod/contacts.php:580 ../../mod/directory.php:59
#: ../../mod/contacts.php:612 ../../mod/directory.php:59
#: ../../addon/forumdirectory/forumdirectory.php:81
msgid "Finding: "
msgstr "Znalezione:"
#: ../../mod/contacts.php:581 ../../mod/directory.php:61
#: ../../mod/contacts.php:613 ../../mod/directory.php:61
#: ../../addon/forumdirectory/forumdirectory.php:83
#: ../../include/contact_widgets.php:33
msgid "Find"
@ -2132,7 +2173,7 @@ msgid ""
"Password reset failed."
msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."
#: ../../mod/lostpass.php:84 ../../boot.php:1030
#: ../../mod/lostpass.php:84 ../../boot.php:1051
msgid "Password Reset"
msgstr "Zresetuj hasło"
@ -2251,7 +2292,7 @@ msgstr ""
#: ../../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:548
#: ../../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
@ -2582,149 +2623,161 @@ msgstr "Wygasające zdjęcia:"
msgid "Only expire posts by others:"
msgstr ""
#: ../../mod/settings.php:1016
#: ../../mod/settings.php:1035
msgid "Account Settings"
msgstr "Ustawienia konta"
#: ../../mod/settings.php:1024
#: ../../mod/settings.php:1043
msgid "Password Settings"
msgstr "Ustawienia hasła"
#: ../../mod/settings.php:1025
#: ../../mod/settings.php:1044
msgid "New Password:"
msgstr "Nowe hasło:"
#: ../../mod/settings.php:1026
#: ../../mod/settings.php:1045
msgid "Confirm:"
msgstr "Potwierdź:"
#: ../../mod/settings.php:1026
#: ../../mod/settings.php:1045
msgid "Leave password fields blank unless changing"
msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić."
#: ../../mod/settings.php:1030
#: ../../mod/settings.php:1049
msgid "Basic Settings"
msgstr "Ustawienia podstawowe"
#: ../../mod/settings.php:1031 ../../include/profile_advanced.php:15
#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Imię i nazwisko:"
#: ../../mod/settings.php:1032
#: ../../mod/settings.php:1051
msgid "Email Address:"
msgstr "Adres email:"
#: ../../mod/settings.php:1033
#: ../../mod/settings.php:1052
msgid "Your Timezone:"
msgstr "Twoja strefa czasowa:"
#: ../../mod/settings.php:1034
#: ../../mod/settings.php:1053
msgid "Default Post Location:"
msgstr "Standardowa lokalizacja wiadomości:"
#: ../../mod/settings.php:1035
#: ../../mod/settings.php:1054
msgid "Use Browser Location:"
msgstr "Użyj położenia przeglądarki:"
#: ../../mod/settings.php:1038
#: ../../mod/settings.php:1057
msgid "Security and Privacy Settings"
msgstr "Ustawienia bezpieczeństwa i prywatności"
#: ../../mod/settings.php:1040
#: ../../mod/settings.php:1059
msgid "Maximum Friend Requests/Day:"
msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:"
#: ../../mod/settings.php:1040 ../../mod/settings.php:1059
#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
msgid "(to prevent spam abuse)"
msgstr "(aby zapobiec spamowaniu)"
#: ../../mod/settings.php:1041
#: ../../mod/settings.php:1060
msgid "Default Post Permissions"
msgstr "Domyślne prawa dostępu wiadomości"
#: ../../mod/settings.php:1042
#: ../../mod/settings.php:1061
msgid "(click to open/close)"
msgstr "(kliknij by otworzyć/zamknąć)"
#: ../../mod/settings.php:1059
#: ../../mod/settings.php:1072
msgid "Default Private Post"
msgstr ""
#: ../../mod/settings.php:1073
msgid "Default Public Post"
msgstr ""
#: ../../mod/settings.php:1077
msgid "Default Permissions for New Posts"
msgstr ""
#: ../../mod/settings.php:1089
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: ../../mod/settings.php:1062
#: ../../mod/settings.php:1092
msgid "Notification Settings"
msgstr "Ustawienia powiadomień"
#: ../../mod/settings.php:1063
#: ../../mod/settings.php:1093
msgid "By default post a status message when:"
msgstr ""
#: ../../mod/settings.php:1064
#: ../../mod/settings.php:1094
msgid "accepting a friend request"
msgstr ""
#: ../../mod/settings.php:1065
#: ../../mod/settings.php:1095
msgid "joining a forum/community"
msgstr ""
#: ../../mod/settings.php:1066
#: ../../mod/settings.php:1096
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:1067
#: ../../mod/settings.php:1097
msgid "Send a notification email when:"
msgstr "Wyślij powiadmonienia na email, kiedy:"
#: ../../mod/settings.php:1068
#: ../../mod/settings.php:1098
msgid "You receive an introduction"
msgstr "Otrzymałeś zaproszenie"
#: ../../mod/settings.php:1069
#: ../../mod/settings.php:1099
msgid "Your introductions are confirmed"
msgstr "Dane zatwierdzone"
#: ../../mod/settings.php:1070
#: ../../mod/settings.php:1100
msgid "Someone writes on your profile wall"
msgstr "Ktoś pisze na twojej ścianie profilowej"
#: ../../mod/settings.php:1071
#: ../../mod/settings.php:1101
msgid "Someone writes a followup comment"
msgstr "Ktoś pisze komentarz nawiązujący."
#: ../../mod/settings.php:1072
#: ../../mod/settings.php:1102
msgid "You receive a private message"
msgstr "Otrzymałeś prywatną wiadomość"
#: ../../mod/settings.php:1073
#: ../../mod/settings.php:1103
msgid "You receive a friend suggestion"
msgstr "Otrzymane propozycje znajomych"
#: ../../mod/settings.php:1074
#: ../../mod/settings.php:1104
msgid "You are tagged in a post"
msgstr "Jesteś oznaczony w poście"
#: ../../mod/settings.php:1075
#: ../../mod/settings.php:1105
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: ../../mod/settings.php:1078
#: ../../mod/settings.php:1108
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: ../../mod/settings.php:1079
#: ../../mod/settings.php:1109
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: ../../mod/manage.php:94
#: ../../mod/manage.php:106
msgid "Manage Identities and/or Pages"
msgstr "Zarządzaj Tożsamościami i/lub Stronami."
#: ../../mod/manage.php:97
#: ../../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 ""
#: ../../mod/manage.php:99
#: ../../mod/manage.php:108
msgid "Select an identity to manage: "
msgstr "Wybierz tożsamość do zarządzania:"
@ -2802,19 +2855,19 @@ msgstr[2] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci."
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia"
#: ../../mod/network.php:619
#: ../../mod/network.php:621
msgid "Contact: "
msgstr "Kontakt: "
#: ../../mod/network.php:621
#: ../../mod/network.php:623
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "
#: ../../mod/network.php:626
#: ../../mod/network.php:628
msgid "Invalid contact."
msgstr "Zły kontakt"
#: ../../mod/notes.php:44 ../../boot.php:1843
#: ../../mod/notes.php:44 ../../boot.php:1864
msgid "Personal Notes"
msgstr "Osobiste notatki"
@ -2902,36 +2955,36 @@ msgstr "Wysłano."
msgid "No recipient."
msgstr "Brak odbiorcy."
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:249 ../../mod/message.php:257
#: ../../mod/message.php:429 ../../mod/message.php:437
#: ../../include/conversation.php:936 ../../include/conversation.php:954
#: ../../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 "Proszę wpisać adres URL:"
#: ../../mod/wallmessage.php:138 ../../mod/message.php:285
#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
msgid "Send Private Message"
msgstr "Wyślij prywatną wiadomość"
#: ../../mod/wallmessage.php:139
#: ../../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 ""
#: ../../mod/wallmessage.php:140 ../../mod/message.php:286
#: ../../mod/message.php:516
#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
#: ../../mod/message.php:553
msgid "To:"
msgstr "Do:"
#: ../../mod/wallmessage.php:141 ../../mod/message.php:291
#: ../../mod/message.php:518
#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
#: ../../mod/message.php:555
msgid "Subject:"
msgstr "Temat:"
#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
#: ../../mod/message.php:521 ../../mod/invite.php:115
#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
#: ../../mod/message.php:558 ../../mod/invite.php:134
msgid "Your message:"
msgstr "Twoja wiadomość:"
@ -2987,8 +3040,8 @@ msgstr ""
#: ../../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:50
#: ../../boot.php:1819
#: ../../include/profile_advanced.php:84 ../../include/nav.php:77
#: ../../boot.php:1840
msgid "Profile"
msgstr "Profil"
@ -3159,7 +3212,7 @@ msgstr "Nie znaleziono grupy"
msgid "Group name changed."
msgstr "Nazwa grupy zmieniona"
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:339
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:340
msgid "Permission denied"
msgstr "Odmowa dostępu"
@ -3293,7 +3346,7 @@ msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu
msgid "Choose a nickname: "
msgstr "Wybierz pseudonim:"
#: ../../mod/register.php:275 ../../include/nav.php:81 ../../boot.php:991
#: ../../mod/register.php:275 ../../include/nav.php:108 ../../boot.php:1012
msgid "Register"
msgstr "Zarejestruj"
@ -3301,40 +3354,40 @@ msgstr "Zarejestruj"
msgid "People Search"
msgstr "Szukaj osób"
#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
#: ../../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:1498
#: ../../include/diaspora.php:1860 ../../include/conversation.php:125
#: ../../include/conversation.php:253
#: ../../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 "zdjęcie"
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
#: ../../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:120 ../../include/conversation.php:129
#: ../../include/conversation.php:248 ../../include/conversation.php:257
#: ../../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:162 ../../addon/facebook/facebook.php:1604
#: ../../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:136
#: ../../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 lubi %2$s's %3$s"
#: ../../mod/like.php:164 ../../include/conversation.php:139
#: ../../mod/like.php:170 ../../include/conversation.php:140
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s nie lubi %2$s's %3$s"
@ -3350,7 +3403,7 @@ msgid "Access denied."
msgstr "Brak dostępu"
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
#: ../../include/nav.php:51 ../../boot.php:1826
#: ../../include/nav.php:78 ../../boot.php:1847
msgid "Photos"
msgstr "Zdjęcia"
@ -3375,44 +3428,44 @@ msgstr "Proszę się zalogować."
msgid "Unable to locate original post."
msgstr "Nie można zlokalizować oryginalnej wiadomości."
#: ../../mod/item.php:288
#: ../../mod/item.php:292
msgid "Empty post discarded."
msgstr "Pusty wpis wyrzucony."
#: ../../mod/item.php:424 ../../mod/wall_upload.php:135
#: ../../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 "Tablica zdjęć"
#: ../../mod/item.php:837
#: ../../mod/item.php:841
msgid "System error. Post not saved."
msgstr "Błąd. Post niezapisany."
#: ../../mod/item.php:862
#: ../../mod/item.php:866
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"
#: ../../mod/item.php:864
#: ../../mod/item.php:868
#, php-format
msgid "You may visit them online at %s"
msgstr "Możesz ich odwiedzić online u %s"
#: ../../mod/item.php:865
#: ../../mod/item.php:869
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."
#: ../../mod/item.php:867
#: ../../mod/item.php:871
#, php-format
msgid "%s posted an update."
msgstr "%s zaktualizował wpis."
#: ../../mod/mood.php:62 ../../include/conversation.php:226
#: ../../mod/mood.php:62 ../../include/conversation.php:227
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
@ -3506,7 +3559,15 @@ msgstr "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może z
msgid "Please enter your password for verification:"
msgstr "Wprowadź hasło w celu weryfikacji."
#: ../../mod/message.php:9 ../../include/nav.php:132
#: ../../mod/navigation.php:20 ../../include/nav.php:34
msgid "Nothing new here"
msgstr "Brak nowych zdarzeń"
#: ../../mod/navigation.php:24 ../../include/nav.php:38
msgid "Clear notifications"
msgstr ""
#: ../../mod/message.php:9 ../../include/nav.php:159
msgid "New Message"
msgstr "Nowa wiadomość"
@ -3514,42 +3575,46 @@ msgstr "Nowa wiadomość"
msgid "Unable to locate contact information."
msgstr "Niezdolny do uzyskania informacji kontaktowych."
#: ../../mod/message.php:195
#: ../../mod/message.php:207
msgid "Do you really want to delete this message?"
msgstr ""
#: ../../mod/message.php:227
msgid "Message deleted."
msgstr "Wiadomość usunięta."
#: ../../mod/message.php:225
#: ../../mod/message.php:258
msgid "Conversation removed."
msgstr "Rozmowa usunięta."
#: ../../mod/message.php:334
#: ../../mod/message.php:371
msgid "No messages."
msgstr "Brak wiadomości."
#: ../../mod/message.php:341
#: ../../mod/message.php:378
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: ../../mod/message.php:344
#: ../../mod/message.php:381
#, php-format
msgid "You and %s"
msgstr "Ty i %s"
#: ../../mod/message.php:347
#: ../../mod/message.php:384
#, php-format
msgid "%s and You"
msgstr "%s i ty"
#: ../../mod/message.php:368 ../../mod/message.php:509
#: ../../mod/message.php:405 ../../mod/message.php:546
msgid "Delete conversation"
msgstr "Usuń rozmowę"
#: ../../mod/message.php:371
#: ../../mod/message.php:408
msgid "D, d M Y - g:i A"
msgstr "D, d M R - g:m AM/PM"
#: ../../mod/message.php:374
#: ../../mod/message.php:411
#, php-format
msgid "%d message"
msgid_plural "%d messages"
@ -3557,21 +3622,21 @@ msgstr[0] " %d wiadomość"
msgstr[1] " %d wiadomości"
msgstr[2] " %d wiadomości"
#: ../../mod/message.php:413
#: ../../mod/message.php:450
msgid "Message not available."
msgstr "Wiadomość nie jest dostępna."
#: ../../mod/message.php:483
#: ../../mod/message.php:520
msgid "Delete message"
msgstr "Usuń wiadomość"
#: ../../mod/message.php:511
#: ../../mod/message.php:548
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: ../../mod/message.php:515
#: ../../mod/message.php:552
msgid "Send Reply"
msgstr "Odpowiedz"
@ -3600,7 +3665,7 @@ msgstr "Użytkownicy"
msgid "Plugins"
msgstr "Wtyczki"
#: ../../mod/admin.php:99 ../../mod/admin.php:1027 ../../mod/admin.php:1063
#: ../../mod/admin.php:99 ../../mod/admin.php:1031 ../../mod/admin.php:1067
msgid "Themes"
msgstr "Temat"
@ -3608,11 +3673,11 @@ msgstr "Temat"
msgid "DB updates"
msgstr ""
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1150
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1154
msgid "Logs"
msgstr "Logi"
#: ../../mod/admin.php:120 ../../include/nav.php:151
#: ../../mod/admin.php:120 ../../include/nav.php:178
msgid "Admin"
msgstr "Administator"
@ -3630,7 +3695,7 @@ msgstr "Konto normalne"
#: ../../mod/admin.php:184 ../../mod/admin.php:699
msgid "Soapbox Account"
msgstr ""
msgstr "Konto Soapbox"
#: ../../mod/admin.php:185 ../../mod/admin.php:700
msgid "Community/Celebrity Account"
@ -3653,8 +3718,8 @@ msgid "Message queues"
msgstr ""
#: ../../mod/admin.php:212 ../../mod/admin.php:459 ../../mod/admin.php:726
#: ../../mod/admin.php:821 ../../mod/admin.php:863 ../../mod/admin.php:1026
#: ../../mod/admin.php:1062 ../../mod/admin.php:1149
#: ../../mod/admin.php:821 ../../mod/admin.php:863 ../../mod/admin.php:1030
#: ../../mod/admin.php:1066 ../../mod/admin.php:1153
msgid "Administration"
msgstr "Administracja"
@ -3992,7 +4057,7 @@ msgstr "URL Proxy"
#: ../../mod/admin.php:504
msgid "Network timeout"
msgstr ""
msgstr "Network timeout"
#: ../../mod/admin.php:504
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
@ -4209,23 +4274,23 @@ msgstr "Wtyczka %s wyłączona."
msgid "Plugin %s enabled."
msgstr "Wtyczka %s właczona."
#: ../../mod/admin.php:799 ../../mod/admin.php:997
#: ../../mod/admin.php:799 ../../mod/admin.php:1001
msgid "Disable"
msgstr "Wyłącz"
#: ../../mod/admin.php:801 ../../mod/admin.php:999
#: ../../mod/admin.php:801 ../../mod/admin.php:1003
msgid "Enable"
msgstr "Zezwól"
#: ../../mod/admin.php:823 ../../mod/admin.php:1028
#: ../../mod/admin.php:823 ../../mod/admin.php:1032
msgid "Toggle"
msgstr "Włącz"
#: ../../mod/admin.php:831 ../../mod/admin.php:1038
#: ../../mod/admin.php:831 ../../mod/admin.php:1042
msgid "Author: "
msgstr "Autor: "
#: ../../mod/admin.php:832 ../../mod/admin.php:1039
#: ../../mod/admin.php:832 ../../mod/admin.php:1043
msgid "Maintainer: "
msgstr ""
@ -4233,65 +4298,65 @@ msgstr ""
msgid "No themes found."
msgstr "Nie znaleziono tematu."
#: ../../mod/admin.php:1020
#: ../../mod/admin.php:1024
msgid "Screenshot"
msgstr "Zrzut ekranu"
#: ../../mod/admin.php:1068
#: ../../mod/admin.php:1072
msgid "[Experimental]"
msgstr "[Eksperymentalne]"
#: ../../mod/admin.php:1069
#: ../../mod/admin.php:1073
msgid "[Unsupported]"
msgstr "[Niewspieralne]"
#: ../../mod/admin.php:1096
#: ../../mod/admin.php:1100
msgid "Log settings updated."
msgstr ""
#: ../../mod/admin.php:1152
#: ../../mod/admin.php:1156
msgid "Clear"
msgstr "Wyczyść"
#: ../../mod/admin.php:1158
#: ../../mod/admin.php:1162
msgid "Debugging"
msgstr "Naprawianie"
#: ../../mod/admin.php:1159
#: ../../mod/admin.php:1163
msgid "Log file"
msgstr "Plik logów"
#: ../../mod/admin.php:1159
#: ../../mod/admin.php:1163
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: ../../mod/admin.php:1160
#: ../../mod/admin.php:1164
msgid "Log level"
msgstr "Poziom logów"
#: ../../mod/admin.php:1210
#: ../../mod/admin.php:1214
msgid "Close"
msgstr "Zamknij"
#: ../../mod/admin.php:1216
#: ../../mod/admin.php:1220
msgid "FTP Host"
msgstr "Założyciel FTP"
#: ../../mod/admin.php:1217
#: ../../mod/admin.php:1221
msgid "FTP Path"
msgstr "Ścieżka FTP"
#: ../../mod/admin.php:1218
#: ../../mod/admin.php:1222
msgid "FTP User"
msgstr "Użytkownik FTP"
#: ../../mod/admin.php:1219
#: ../../mod/admin.php:1223
msgid "FTP Password"
msgstr "FTP Hasło"
#: ../../mod/profile.php:21 ../../boot.php:1204
#: ../../mod/profile.php:21 ../../boot.php:1225
msgid "Requested profile is not available."
msgstr "Żądany profil jest niedostępny"
@ -4400,7 +4465,7 @@ msgid "No installed applications."
msgstr "Brak zainstalowanych aplikacji."
#: ../../mod/search.php:99 ../../include/text.php:738
#: ../../include/text.php:739 ../../include/nav.php:91
#: ../../include/text.php:739 ../../include/nav.php:118
msgid "Search"
msgstr "Szukaj"
@ -4698,28 +4763,28 @@ msgstr "Wiek: "
msgid "Edit/Manage Profiles"
msgstr "Edytuj/Zarządzaj Profilami"
#: ../../mod/profiles.php:722 ../../boot.php:1324
#: ../../mod/profiles.php:722 ../../boot.php:1345
msgid "Change profile photo"
msgstr "Zmień zdjęcie profilowe"
#: ../../mod/profiles.php:723 ../../boot.php:1325
#: ../../mod/profiles.php:723 ../../boot.php:1346
msgid "Create New Profile"
msgstr "Stwórz nowy profil"
#: ../../mod/profiles.php:734 ../../boot.php:1335
#: ../../mod/profiles.php:734 ../../boot.php:1356
msgid "Profile Image"
msgstr "Obraz profilowy"
#: ../../mod/profiles.php:736 ../../boot.php:1338
#: ../../mod/profiles.php:736 ../../boot.php:1359
msgid "visible to everybody"
msgstr "widoczne dla wszystkich"
#: ../../mod/profiles.php:737 ../../boot.php:1339
#: ../../mod/profiles.php:737 ../../boot.php:1360
msgid "Edit visibility"
msgstr "Edytuj widoczność"
#: ../../mod/filer.php:30 ../../include/conversation.php:940
#: ../../include/conversation.php:958
#: ../../mod/filer.php:30 ../../include/conversation.php:944
#: ../../include/conversation.php:962
msgid "Save to Folder:"
msgstr "Zapisz w folderze:"
@ -4727,7 +4792,7 @@ msgstr "Zapisz w folderze:"
msgid "- select -"
msgstr "- wybierz -"
#: ../../mod/tagger.php:95 ../../include/conversation.php:265
#: ../../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 zaznaczył %2$s'go %3$s przy użyciu %4$s"
@ -4736,7 +4801,7 @@ msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s"
msgid "No potential page delegates located."
msgstr ""
#: ../../mod/delegate.php:121 ../../include/nav.php:138
#: ../../mod/delegate.php:121 ../../include/nav.php:165
msgid "Delegate Page Management"
msgstr ""
@ -4815,18 +4880,22 @@ msgstr ""
msgid "diaspora2bb: "
msgstr ""
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:520
#: ../../mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr ""
#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr "Osoby, które możesz znać"
#: ../../mod/suggest.php:44
#: ../../mod/suggest.php:72
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr ""
#: ../../mod/suggest.php:61
#: ../../mod/suggest.php:90
msgid "Ignore/Hide"
msgstr "Ignoruj/Ukryj"
@ -4850,19 +4919,19 @@ msgstr "Płeć: "
#: ../../mod/directory.php:136
#: ../../addon/forumdirectory/forumdirectory.php:158
#: ../../include/profile_advanced.php:17 ../../boot.php:1360
#: ../../include/profile_advanced.php:17 ../../boot.php:1381
msgid "Gender:"
msgstr "Płeć:"
#: ../../mod/directory.php:138
#: ../../addon/forumdirectory/forumdirectory.php:160
#: ../../include/profile_advanced.php:37 ../../boot.php:1363
#: ../../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:1365
#: ../../include/profile_advanced.php:48 ../../boot.php:1386
msgid "Homepage:"
msgstr "Strona główna:"
@ -4873,25 +4942,33 @@ msgid "About:"
msgstr "O:"
#: ../../mod/directory.php:187
#: ../../addon/forumdirectory/forumdirectory.php:203
#: ../../addon/forumdirectory/forumdirectory.php:201
msgid "No entries (some entries may be hidden)."
msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
#: ../../mod/invite.php:37
#: ../../mod/invite.php:27
msgid "Total invitation limit exceeded."
msgstr ""
#: ../../mod/invite.php:49
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s : Niepoprawny adres email."
#: ../../mod/invite.php:61
#: ../../mod/invite.php:73
msgid "Please join us on Friendica"
msgstr "Dołącz do nas na Friendica"
#: ../../mod/invite.php:71
#: ../../mod/invite.php:84
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr ""
#: ../../mod/invite.php:89
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s : Dostarczenie wiadomości nieudane."
#: ../../mod/invite.php:75
#: ../../mod/invite.php:93
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
@ -4899,11 +4976,11 @@ msgstr[0] "%d wiadomość wysłana."
msgstr[1] "%d wiadomości wysłane."
msgstr[2] "%d wysłano ."
#: ../../mod/invite.php:94
#: ../../mod/invite.php:112
msgid "You have no more invitations available"
msgstr "Nie masz więcej zaproszeń"
#: ../../mod/invite.php:102
#: ../../mod/invite.php:120
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
@ -4911,14 +4988,14 @@ msgid ""
" other social networks."
msgstr ""
#: ../../mod/invite.php:104
#: ../../mod/invite.php:122
#, php-format
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr ""
#: ../../mod/invite.php:105
#: ../../mod/invite.php:123
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
@ -4927,36 +5004,36 @@ msgid ""
"sites you can join."
msgstr ""
#: ../../mod/invite.php:108
#: ../../mod/invite.php:126
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr ""
#: ../../mod/invite.php:113
#: ../../mod/invite.php:132
msgid "Send invitations"
msgstr "Wyślij zaproszenia"
#: ../../mod/invite.php:114
#: ../../mod/invite.php:133
msgid "Enter email addresses, one per line:"
msgstr "Wprowadź adresy email, jeden na linijkę:"
#: ../../mod/invite.php:116
#: ../../mod/invite.php:135
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr ""
#: ../../mod/invite.php:118
#: ../../mod/invite.php:137
msgid "You will need to supply this invitation code: $invite_code"
msgstr ""
#: ../../mod/invite.php:118
#: ../../mod/invite.php:137
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :"
#: ../../mod/invite.php:120
#: ../../mod/invite.php:139
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
@ -4998,7 +5075,7 @@ msgid "Unable to set contact photo."
msgstr "Nie można ustawić zdjęcia kontaktu."
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
#: ../../include/conversation.php:171
#: ../../include/conversation.php:172
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s jest teraz znajomym z %2$s"
@ -5768,8 +5845,8 @@ msgid "Forum Directory"
msgstr "Katalog Forum"
#: ../../addon/communityhome/communityhome.php:28
#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:64
#: ../../boot.php:1016 ../../addon.old/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
@ -5805,8 +5882,8 @@ msgid "Latest likes"
msgstr "Ostatnie polubienia"
#: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1496
#: ../../include/conversation.php:117 ../../include/conversation.php:245
#: ../../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 "wydarzenie"
@ -6597,7 +6674,7 @@ msgstr "Ustawienia Randplace"
#: ../../addon/randplace/randplace.php:171
#: ../../addon.old/randplace/randplace.php:171
msgid "Enable Randplace Plugin"
msgstr ""
msgstr "Włącz Randplace Plugin"
#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
msgid "Post to Dreamwidth"
@ -7304,7 +7381,7 @@ msgstr ""
msgid "Add contact"
msgstr "Dodaj kontakt"
#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37
#: ../../addon/viewsrc/viewsrc.php:39 ../../addon.old/viewsrc/viewsrc.php:37
msgid "View Source"
msgstr "Podgląd źródła"
@ -7333,7 +7410,7 @@ msgstr "Ustawienia StatusNet zaktualizowane"
#: ../../addon/statusnet/statusnet.php:269
#: ../../addon.old/statusnet/statusnet.php:257
msgid "StatusNet Posting Settings"
msgstr ""
msgstr "Ustawienia StatusNet"
#: ../../addon/statusnet/statusnet.php:283
#: ../../addon.old/statusnet/statusnet.php:271
@ -7410,7 +7487,7 @@ msgstr "Aktualnym StatusNet API jest"
#: ../../addon/statusnet/statusnet.php:334
#: ../../addon.old/statusnet/statusnet.php:322
msgid "Cancel StatusNet Connection"
msgstr ""
msgstr "Anuluj połączenie StatusNet"
#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
#: ../../addon.old/statusnet/statusnet.php:333
@ -7438,7 +7515,7 @@ msgstr ""
#: ../../addon/statusnet/statusnet.php:351
#: ../../addon.old/statusnet/statusnet.php:339
msgid "Allow posting to StatusNet"
msgstr ""
msgstr "Pozwól zamieszczać posty na StatusNet"
#: ../../addon/statusnet/statusnet.php:354
#: ../../addon.old/statusnet/statusnet.php:342
@ -7719,14 +7796,23 @@ msgstr ""
msgid "Send linked #-tags and @-names to Twitter"
msgstr ""
#: ../../addon/twitter/twitter.php:556 ../../addon.old/twitter/twitter.php:396
#: ../../addon/twitter/twitter.php:558 ../../addon.old/twitter/twitter.php:396
msgid "Consumer key"
msgstr "Klucz konsumenta"
#: ../../addon/twitter/twitter.php:557 ../../addon.old/twitter/twitter.php:397
#: ../../addon/twitter/twitter.php:559 ../../addon.old/twitter/twitter.php:397
msgid "Consumer secret"
msgstr "Sekret konsumenta"
#: ../../addon/twitter/twitter.php:560
msgid "Name of the Twitter Application"
msgstr ""
#: ../../addon/twitter/twitter.php:560
msgid ""
"set this to avoid mirroring postings from ~friendica back to ~friendica"
msgstr ""
#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
msgid "IRC Settings"
msgstr "Ustawienia IRC"
@ -7861,12 +7947,12 @@ msgstr ""
msgid "Color scheme"
msgstr ""
#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:49
#: ../../include/nav.php:116
#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
#: ../../include/nav.php:143
msgid "Your posts and conversations"
msgstr "Twoje posty i rozmowy"
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:50
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
msgid "Your profile page"
msgstr "Twoja strona profilowa"
@ -7874,19 +7960,19 @@ msgstr "Twoja strona profilowa"
msgid "Your contacts"
msgstr "Twoje kontakty"
#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:51
#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
msgid "Your photos"
msgstr "Twoje zdjęcia"
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:52
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
msgid "Your events"
msgstr "Twoje wydarzenia"
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
msgid "Personal notes"
msgstr "Osobiste notatki"
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
msgid "Your personal photos"
msgstr "Twoje osobiste zdjęcia"
@ -7982,12 +8068,12 @@ msgid "Set twitter search term"
msgstr ""
#: ../../view/theme/diabook/theme.php:629
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:313
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
msgid "don't show"
msgstr "nie pokazuj"
#: ../../view/theme/diabook/theme.php:629
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:312
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
msgid "show"
msgstr "pokaż"
@ -8458,7 +8544,7 @@ msgstr[2] "%d kontakty"
msgid "poke"
msgstr "zaczep"
#: ../../include/text.php:779 ../../include/conversation.php:210
#: ../../include/text.php:779 ../../include/conversation.php:211
msgid "poked"
msgstr "zaczepiony"
@ -8630,31 +8716,31 @@ msgstr "Listopad"
msgid "December"
msgstr "Grudzień"
#: ../../include/text.php:1066
#: ../../include/text.php:1078
msgid "bytes"
msgstr "bajty"
#: ../../include/text.php:1093 ../../include/text.php:1105
#: ../../include/text.php:1105 ../../include/text.php:1117
msgid "Click to open/close"
msgstr "Kliknij aby otworzyć/zamknąć"
#: ../../include/text.php:1278 ../../include/user.php:237
#: ../../include/text.php:1290 ../../include/user.php:237
msgid "default"
msgstr "standardowe"
#: ../../include/text.php:1290
#: ../../include/text.php:1302
msgid "Select an alternate language"
msgstr "Wybierz alternatywny język"
#: ../../include/text.php:1500
#: ../../include/text.php:1512
msgid "activity"
msgstr "aktywność"
#: ../../include/text.php:1503
#: ../../include/text.php:1515
msgid "post"
msgstr "post"
#: ../../include/text.php:1658
#: ../../include/text.php:1670
msgid "Item filed"
msgstr ""
@ -8750,125 +8836,129 @@ msgstr "Stwórz nową grupę"
msgid "Contacts not in any group"
msgstr "Kontakt nie jest w żadnej grupie"
#: ../../include/nav.php:46 ../../boot.php:1015
#: ../../include/nav.php:73 ../../boot.php:1036
msgid "Logout"
msgstr "Wyloguj się"
#: ../../include/nav.php:46
#: ../../include/nav.php:73
msgid "End this session"
msgstr "Zakończ sesję"
#: ../../include/nav.php:49 ../../boot.php:1812
#: ../../include/nav.php:76 ../../boot.php:1833
msgid "Status"
msgstr "Status"
#: ../../include/nav.php:64
#: ../../include/nav.php:91
msgid "Sign in"
msgstr "Zaloguj się"
#: ../../include/nav.php:77
#: ../../include/nav.php:104
msgid "Home Page"
msgstr "Strona startowa"
#: ../../include/nav.php:81
#: ../../include/nav.php:108
msgid "Create an account"
msgstr "Załóż konto"
#: ../../include/nav.php:86
#: ../../include/nav.php:113
msgid "Help and documentation"
msgstr "Pomoc i dokumentacja"
#: ../../include/nav.php:89
#: ../../include/nav.php:116
msgid "Apps"
msgstr "Aplikacje"
#: ../../include/nav.php:89
#: ../../include/nav.php:116
msgid "Addon applications, utilities, games"
msgstr "Wtyczki, aplikacje, narzędzia, gry"
#: ../../include/nav.php:91
#: ../../include/nav.php:118
msgid "Search site content"
msgstr "Przeszukaj zawartość strony"
#: ../../include/nav.php:101
#: ../../include/nav.php:128
msgid "Conversations on this site"
msgstr "Rozmowy na tej stronie"
#: ../../include/nav.php:103
#: ../../include/nav.php:130
msgid "Directory"
msgstr "Katalog"
#: ../../include/nav.php:103
#: ../../include/nav.php:130
msgid "People directory"
msgstr ""
#: ../../include/nav.php:113
#: ../../include/nav.php:140
msgid "Conversations from your friends"
msgstr "Rozmowy Twoich przyjaciół"
#: ../../include/nav.php:114
#: ../../include/nav.php:141
msgid "Network Reset"
msgstr ""
#: ../../include/nav.php:114
#: ../../include/nav.php:141
msgid "Load Network page with no filters"
msgstr ""
#: ../../include/nav.php:122
#: ../../include/nav.php:149
msgid "Friend Requests"
msgstr "Podania o przyjęcie do grona znajomych"
#: ../../include/nav.php:124
#: ../../include/nav.php:151
msgid "See all notifications"
msgstr "Zobacz wszystkie powiadomienia"
#: ../../include/nav.php:125
#: ../../include/nav.php:152
msgid "Mark all system notifications seen"
msgstr ""
#: ../../include/nav.php:129
#: ../../include/nav.php:156
msgid "Private mail"
msgstr "Prywatne maile"
#: ../../include/nav.php:130
#: ../../include/nav.php:157
msgid "Inbox"
msgstr "Odebrane"
#: ../../include/nav.php:131
#: ../../include/nav.php:158
msgid "Outbox"
msgstr "Wysłane"
#: ../../include/nav.php:135
#: ../../include/nav.php:162
msgid "Manage"
msgstr "Zarządzaj"
#: ../../include/nav.php:135
#: ../../include/nav.php:162
msgid "Manage other pages"
msgstr "Zarządzaj innymi stronami"
#: ../../include/nav.php:138
#: ../../include/nav.php:165
msgid "Delegations"
msgstr ""
#: ../../include/nav.php:142 ../../boot.php:1318
#: ../../include/nav.php:169 ../../boot.php:1339
msgid "Profiles"
msgstr "Profile"
#: ../../include/nav.php:142
#: ../../include/nav.php:169
msgid "Manage/Edit Profiles"
msgstr ""
#: ../../include/nav.php:144
#: ../../include/nav.php:171
msgid "Manage/edit friends and contacts"
msgstr "Zarządzaj listą przyjaciół i kontaktami"
#: ../../include/nav.php:151
#: ../../include/nav.php:178
msgid "Site setup and configuration"
msgstr "Konfiguracja i ustawienia instancji"
#: ../../include/nav.php:175
msgid "Nothing new here"
msgstr "Brak nowych zdarzeń"
#: ../../include/nav.php:182
msgid "Navigation"
msgstr ""
#: ../../include/nav.php:182
msgid "Site map"
msgstr ""
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
@ -9187,7 +9277,7 @@ msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'"
msgid "[no subject]"
msgstr "[bez tematu]"
#: ../../include/acl_selectors.php:311
#: ../../include/acl_selectors.php:325
msgid "Visible to everybody"
msgstr "Widoczny dla wszystkich"
@ -9233,146 +9323,146 @@ msgstr "prywatna wiadomość"
msgid "Please visit %s to view and/or reply to your private messages."
msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"
#: ../../include/enotify.php:89
#: ../../include/enotify.php:90
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:96
#: ../../include/enotify.php:97
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr ""
#: ../../include/enotify.php:104
#: ../../include/enotify.php:105
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:114
#: ../../include/enotify.php:115
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
#: ../../include/enotify.php:115
#: ../../include/enotify.php:116
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr "%s skomentował rozmowę którą śledzisz"
#: ../../include/enotify.php:118 ../../include/enotify.php:133
#: ../../include/enotify.php:146 ../../include/enotify.php:164
#: ../../include/enotify.php:177
#: ../../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 "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"
#: ../../include/enotify.php:125
#: ../../include/enotify.php:126
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr "[Friendica:Notify] %s napisał na twoim profilu"
#: ../../include/enotify.php:127
#: ../../include/enotify.php:128
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr ""
#: ../../include/enotify.php:129
#: ../../include/enotify.php:130
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr ""
#: ../../include/enotify.php:140
#: ../../include/enotify.php:141
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr "[Friendica:Notify] %s oznaczył cię"
#: ../../include/enotify.php:141
#: ../../include/enotify.php:142
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr ""
#: ../../include/enotify.php:142
#: ../../include/enotify.php:143
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr ""
#: ../../include/enotify.php:154
#: ../../include/enotify.php:155
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr ""
#: ../../include/enotify.php:155
#: ../../include/enotify.php:156
#, php-format
msgid "%1$s poked you at %2$s"
msgstr ""
#: ../../include/enotify.php:156
#: ../../include/enotify.php:157
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr ""
#: ../../include/enotify.php:171
#: ../../include/enotify.php:172
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr ""
#: ../../include/enotify.php:172
#: ../../include/enotify.php:173
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr ""
#: ../../include/enotify.php:173
#: ../../include/enotify.php:174
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr ""
#: ../../include/enotify.php:184
msgid "[Friendica:Notify] Introduction received"
msgstr ""
#: ../../include/enotify.php:185
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgid "[Friendica:Notify] Introduction received"
msgstr ""
#: ../../include/enotify.php:186
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:187
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr ""
#: ../../include/enotify.php:189 ../../include/enotify.php:207
#: ../../include/enotify.php:190 ../../include/enotify.php:208
#, php-format
msgid "You may visit their profile at %s"
msgstr "Możesz obejrzeć ich profile na %s"
#: ../../include/enotify.php:191
#: ../../include/enotify.php:192
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."
#: ../../include/enotify.php:198
#: ../../include/enotify.php:199
msgid "[Friendica:Notify] Friend suggestion received"
msgstr ""
#: ../../include/enotify.php:199
#: ../../include/enotify.php:200
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:200
#: ../../include/enotify.php:201
#, php-format
msgid ""
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr ""
#: ../../include/enotify.php:205
#: ../../include/enotify.php:206
msgid "Name:"
msgstr "Imię:"
#: ../../include/enotify.php:206
#: ../../include/enotify.php:207
msgid "Photo:"
msgstr "Zdjęcie:"
#: ../../include/enotify.php:209
#: ../../include/enotify.php:210
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
@ -9400,7 +9490,7 @@ msgstr "Autor lub nazwa nie zostało znalezione."
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr ""
msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu"
#: ../../include/follow.php:86
msgid ""
@ -9440,7 +9530,11 @@ msgstr ""
msgid "You have a new follower at "
msgstr ""
#: ../../include/items.php:4057
#: ../../include/items.php:3892
msgid "Do you really want to delete this item?"
msgstr ""
#: ../../include/items.php:4085
msgid "Archives"
msgstr "Archiwum"
@ -9524,7 +9618,7 @@ msgstr "Proszę dodać zdjęcie profilowe."
msgid "Welcome back "
msgstr "Witaj ponownie "
#: ../../include/security.php:357
#: ../../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."
@ -9534,147 +9628,163 @@ msgstr ""
msgid "stopped following"
msgstr "przestań obserwować"
#: ../../include/Contact.php:225 ../../include/conversation.php:816
#: ../../include/Contact.php:225 ../../include/conversation.php:820
msgid "Poke"
msgstr "Zaczepka"
#: ../../include/Contact.php:226 ../../include/conversation.php:810
#: ../../include/Contact.php:226 ../../include/conversation.php:814
msgid "View Status"
msgstr "Zobacz status"
#: ../../include/Contact.php:227 ../../include/conversation.php:811
#: ../../include/Contact.php:227 ../../include/conversation.php:815
msgid "View Profile"
msgstr "Zobacz profil"
#: ../../include/Contact.php:228 ../../include/conversation.php:812
#: ../../include/Contact.php:228 ../../include/conversation.php:816
msgid "View Photos"
msgstr "Zobacz zdjęcia"
#: ../../include/Contact.php:229 ../../include/Contact.php:242
#: ../../include/conversation.php:813
#: ../../include/Contact.php:229 ../../include/Contact.php:251
#: ../../include/conversation.php:817
msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:230 ../../include/Contact.php:242
#: ../../include/conversation.php:814
#: ../../include/Contact.php:230 ../../include/Contact.php:251
#: ../../include/conversation.php:818
msgid "Edit Contact"
msgstr "Edytuj kontakt"
#: ../../include/Contact.php:231 ../../include/Contact.php:242
#: ../../include/conversation.php:815
#: ../../include/Contact.php:231 ../../include/Contact.php:251
#: ../../include/conversation.php:819
msgid "Send PM"
msgstr "Wyślij prywatną wiadomość"
#: ../../include/conversation.php:206
#: ../../include/conversation.php:207
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: ../../include/conversation.php:290
#: ../../include/conversation.php:291
msgid "post/item"
msgstr ""
#: ../../include/conversation.php:291
#: ../../include/conversation.php:292
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
#: ../../include/conversation.php:620 ../../object/Item.php:249
#: ../../include/conversation.php:621 ../../object/Item.php:249
msgid "Categories:"
msgstr "Kategorie:"
#: ../../include/conversation.php:621 ../../object/Item.php:250
#: ../../include/conversation.php:622 ../../object/Item.php:250
msgid "Filed under:"
msgstr ""
#: ../../include/conversation.php:706
#: ../../include/conversation.php:710
msgid "remove"
msgstr "usuń"
#: ../../include/conversation.php:710
#: ../../include/conversation.php:714
msgid "Delete Selected Items"
msgstr "Usuń zaznaczone elementy"
#: ../../include/conversation.php:809
#: ../../include/conversation.php:813
msgid "Follow Thread"
msgstr ""
#: ../../include/conversation.php:878
#: ../../include/conversation.php:882
#, php-format
msgid "%s likes this."
msgstr "%s lubi to."
#: ../../include/conversation.php:878
#: ../../include/conversation.php:882
#, php-format
msgid "%s doesn't like this."
msgstr "%s nie lubi tego."
#: ../../include/conversation.php:883
#: ../../include/conversation.php:887
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr ""
#: ../../include/conversation.php:886
#: ../../include/conversation.php:890
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr ""
#: ../../include/conversation.php:900
#: ../../include/conversation.php:904
msgid "and"
msgstr "i"
#: ../../include/conversation.php:906
#: ../../include/conversation.php:910
#, php-format
msgid ", and %d other people"
msgstr ", i %d innych ludzi"
#: ../../include/conversation.php:908
#: ../../include/conversation.php:912
#, php-format
msgid "%s like this."
msgstr "%s lubi to."
#: ../../include/conversation.php:908
#: ../../include/conversation.php:912
#, php-format
msgid "%s don't like this."
msgstr "%s nie lubi tego."
#: ../../include/conversation.php:935 ../../include/conversation.php:953
#: ../../include/conversation.php:939 ../../include/conversation.php:957
msgid "Visible to <strong>everybody</strong>"
msgstr "Widoczne dla <strong>wszystkich</strong>"
#: ../../include/conversation.php:937 ../../include/conversation.php:955
#: ../../include/conversation.php:941 ../../include/conversation.php:959
msgid "Please enter a video link/URL:"
msgstr "Podaj link do filmu"
#: ../../include/conversation.php:938 ../../include/conversation.php:956
#: ../../include/conversation.php:942 ../../include/conversation.php:960
msgid "Please enter an audio link/URL:"
msgstr "Podaj link do muzyki"
#: ../../include/conversation.php:939 ../../include/conversation.php:957
#: ../../include/conversation.php:943 ../../include/conversation.php:961
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:941 ../../include/conversation.php:959
#: ../../include/conversation.php:945 ../../include/conversation.php:963
msgid "Where are you right now?"
msgstr "Gdzie teraz jesteś?"
#: ../../include/conversation.php:942
#: ../../include/conversation.php:946
msgid "Delete item(s)?"
msgstr ""
#: ../../include/conversation.php:1021
#: ../../include/conversation.php:988
msgid "Post to Email"
msgstr "Wyślij poprzez email"
#: ../../include/conversation.php:1044
msgid "permissions"
msgstr "zezwolenia"
#: ../../include/plugin.php:389 ../../include/plugin.php:391
#: ../../include/conversation.php:1068
msgid "Post to Groups"
msgstr ""
#: ../../include/conversation.php:1069
msgid "Post to Contacts"
msgstr ""
#: ../../include/conversation.php:1070
msgid "Private post"
msgstr ""
#: ../../include/plugin.php:429 ../../include/plugin.php:431
msgid "Click here to upgrade."
msgstr "Kliknij tu, aby zaktualizować."
#: ../../include/plugin.php:397
#: ../../include/plugin.php:437
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: ../../include/plugin.php:402
#: ../../include/plugin.php:442
msgid "This action is not available under your subscription plan."
msgstr ""
@ -9686,117 +9796,117 @@ msgstr "Usunąć ten element?"
msgid "show fewer"
msgstr "Pokaż mniej"
#: ../../boot.php:878
#: ../../boot.php:899
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
#: ../../boot.php:880
#: ../../boot.php:901
#, php-format
msgid "Update Error at %s"
msgstr ""
#: ../../boot.php:990
#: ../../boot.php:1011
msgid "Create a New Account"
msgstr "Załóż nowe konto"
#: ../../boot.php:1018
#: ../../boot.php:1039
msgid "Nickname or Email address: "
msgstr "Nick lub adres email:"
#: ../../boot.php:1019
#: ../../boot.php:1040
msgid "Password: "
msgstr "Hasło:"
#: ../../boot.php:1020
#: ../../boot.php:1041
msgid "Remember me"
msgstr "Zapamiętaj mnie"
#: ../../boot.php:1023
#: ../../boot.php:1044
msgid "Or login using OpenID: "
msgstr "Lub zaloguj się korzystając z OpenID:"
#: ../../boot.php:1029
#: ../../boot.php:1050
msgid "Forgot your password?"
msgstr "Zapomniałeś swojego hasła?"
#: ../../boot.php:1032
#: ../../boot.php:1053
msgid "Website Terms of Service"
msgstr ""
#: ../../boot.php:1033
#: ../../boot.php:1054
msgid "terms of service"
msgstr ""
#: ../../boot.php:1035
#: ../../boot.php:1056
msgid "Website Privacy Policy"
msgstr ""
#: ../../boot.php:1036
#: ../../boot.php:1057
msgid "privacy policy"
msgstr ""
#: ../../boot.php:1165
#: ../../boot.php:1186
msgid "Requested account is not available."
msgstr ""
#: ../../boot.php:1244
#: ../../boot.php:1265
msgid "Edit profile"
msgstr "Edytuj profil"
#: ../../boot.php:1310
#: ../../boot.php:1331
msgid "Message"
msgstr "Wiadomość"
#: ../../boot.php:1318
#: ../../boot.php:1339
msgid "Manage/edit profiles"
msgstr "Zarządzaj profilami"
#: ../../boot.php:1440 ../../boot.php:1526
#: ../../boot.php:1461 ../../boot.php:1547
msgid "g A l F d"
msgstr ""
msgstr "g A I F d"
#: ../../boot.php:1441 ../../boot.php:1527
#: ../../boot.php:1462 ../../boot.php:1548
msgid "F d"
msgstr ""
#: ../../boot.php:1486 ../../boot.php:1567
#: ../../boot.php:1507 ../../boot.php:1588
msgid "[today]"
msgstr "[dziś]"
#: ../../boot.php:1498
#: ../../boot.php:1519
msgid "Birthday Reminders"
msgstr "Przypomnienia o urodzinach"
#: ../../boot.php:1499
#: ../../boot.php:1520
msgid "Birthdays this week:"
msgstr "Urodziny w tym tygodniu:"
#: ../../boot.php:1560
#: ../../boot.php:1581
msgid "[No description]"
msgstr "[Brak opisu]"
#: ../../boot.php:1578
#: ../../boot.php:1599
msgid "Event Reminders"
msgstr "Przypominacze wydarzeń"
#: ../../boot.php:1579
#: ../../boot.php:1600
msgid "Events this week:"
msgstr "Wydarzenia w tym tygodniu:"
#: ../../boot.php:1815
#: ../../boot.php:1836
msgid "Status Messages and Posts"
msgstr "Status wiadomości i postów"
#: ../../boot.php:1822
#: ../../boot.php:1843
msgid "Profile Details"
msgstr "Szczegóły profilu"
#: ../../boot.php:1839
#: ../../boot.php:1860
msgid "Events and Calendar"
msgstr "Wydarzenia i kalendarz"
#: ../../boot.php:1846
#: ../../boot.php:1867
msgid "Only You Can See This"
msgstr "Tylko ty możesz to zobaczyć"
@ -9804,7 +9914,7 @@ msgstr "Tylko ty możesz to zobaczyć"
msgid "via"
msgstr ""
#: ../../index.php:399
#: ../../index.php:400
msgid "toggle mobile"
msgstr ""

View file

@ -48,7 +48,7 @@ $a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:";
$a->strings["Required"] = "Wymagany";
$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna";
$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:";
$a->strings["Adjust for viewer timezone"] = "";
$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza";
$a->strings["Description:"] = "Opis:";
$a->strings["Location:"] = "Lokalizacja";
$a->strings["Title:"] = "Tytuł:";
@ -74,7 +74,9 @@ $a->strings["Contact information unavailable"] = "Informacje o kontakcie nie dos
$a->strings["Profile Photos"] = "Zdjęcia profilowe";
$a->strings["Album not found."] = "Album nie znaleziony";
$a->strings["Delete Album"] = "Usuń album";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "";
$a->strings["Delete Photo"] = "Usuń zdjęcie";
$a->strings["Do you really want to delete this photo?"] = "";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
$a->strings["a photo"] = "zdjęcie";
$a->strings["Image exceeds size limit of "] = "obrazek przekracza limit rozmiaru";
@ -90,6 +92,10 @@ $a->strings["New album name: "] = "Nazwa nowego albumu:";
$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:";
$a->strings["Do not show a status post for this upload"] = "Nie pokazuj postów statusu dla tego wysłania";
$a->strings["Permissions"] = "Uprawnienia";
$a->strings["Show to Groups"] = "";
$a->strings["Show to Contacts"] = "";
$a->strings["Private Photo"] = "";
$a->strings["Public Photo"] = "";
$a->strings["Edit Album"] = "Edytuj album";
$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze";
$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze";
@ -109,6 +115,8 @@ $a->strings["New album name"] = "Nazwa nowego albumu";
$a->strings["Caption"] = "Zawartość";
$a->strings["Add a Tag"] = "Dodaj tag";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["Private photo"] = "";
$a->strings["Public photo"] = "";
$a->strings["I like this (toggle)"] = "Lubię to (zmień)";
$a->strings["I don't like this (toggle)"] = "Nie lubię (zmień)";
$a->strings["Share"] = "Podziel się";
@ -131,7 +139,6 @@ $a->strings["Installed plugins/addons/apps:"] = "";
$a->strings["No installed plugins/addons/apps"] = "Brak zainstalowanych pluginów/dodatków/aplikacji";
$a->strings["Item not found"] = "Artykuł nie znaleziony";
$a->strings["Edit post"] = "Edytuj post";
$a->strings["Post to Email"] = "Wyślij poprzez email";
$a->strings["Edit"] = "Edytuj";
$a->strings["Upload photo"] = "Wyślij zdjęcie";
$a->strings["upload photo"] = "dodaj zdjęcie";
@ -254,7 +261,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany";
$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."] = "";
$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."] = "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić.";
$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."] = "";
$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."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
@ -326,8 +333,8 @@ $a->strings["starred"] = "";
$a->strings["add tag"] = "dodaj tag";
$a->strings["save to folder"] = "zapisz w folderze";
$a->strings["to"] = "do";
$a->strings["Wall-to-Wall"] = "";
$a->strings["via Wall-To-Wall:"] = "";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$a->strings["Welcome to %s"] = "Witamy w %s";
$a->strings["Invalid request identifier."] = "Niewłaściwy identyfikator wymagania.";
$a->strings["Discard"] = "Odrzuć";
@ -380,6 +387,7 @@ $a->strings["Contact has been ignored"] = "Kontakt jest ignorowany";
$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany";
$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany";
$a->strings["Contact has been unarchived"] = "";
$a->strings["Do you really want to delete this contact?"] = "";
$a->strings["Contact has been removed."] = "Kontakt został usunięty.";
$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s";
$a->strings["You are sharing with %s"] = "Współdzielisz z %s";
@ -572,6 +580,9 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maksymalna liczba zaproszeń do g
$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)";
$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości";
$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)";
$a->strings["Default Private Post"] = "";
$a->strings["Default Public Post"] = "";
$a->strings["Default Permissions for New Posts"] = "";
$a->strings["Maximum private messages per day from unknown people:"] = "";
$a->strings["Notification Settings"] = "Ustawienia powiadomień";
$a->strings["By default post a status message when:"] = "";
@ -754,8 +765,11 @@ $a->strings["No profile"] = "Brak profilu";
$a->strings["Remove My Account"] = "Usuń konto";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane.";
$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji.";
$a->strings["Nothing new here"] = "Brak nowych zdarzeń";
$a->strings["Clear notifications"] = "";
$a->strings["New Message"] = "Nowa wiadomość";
$a->strings["Unable to locate contact information."] = "Niezdolny do uzyskania informacji kontaktowych.";
$a->strings["Do you really want to delete this message?"] = "";
$a->strings["Message deleted."] = "Wiadomość usunięta.";
$a->strings["Conversation removed."] = "Rozmowa usunięta.";
$a->strings["No messages."] = "Brak wiadomości.";
@ -786,7 +800,7 @@ $a->strings["Admin"] = "Administator";
$a->strings["Plugin Features"] = "Polecane wtyczki";
$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie.";
$a->strings["Normal Account"] = "Konto normalne";
$a->strings["Soapbox Account"] = "";
$a->strings["Soapbox Account"] = "Konto Soapbox";
$a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy";
$a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta";
$a->strings["Blog Account"] = "";
@ -867,7 +881,7 @@ $a->strings["Verify SSL"] = "Weryfikacja SSL";
$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
$a->strings["Proxy user"] = "Użytkownik proxy";
$a->strings["Proxy URL"] = "URL Proxy";
$a->strings["Network timeout"] = "";
$a->strings["Network timeout"] = "Network timeout";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
$a->strings["Delivery interval"] = "";
$a->strings["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."] = "";
@ -1066,6 +1080,7 @@ $a->strings["bb2dia2bb: "] = "";
$a->strings["bb2md2html2bb: "] = "";
$a->strings["Source input (Diaspora format): "] = "";
$a->strings["diaspora2bb: "] = "";
$a->strings["Do you really want to delete this suggestion?"] = "";
$a->strings["Friend Suggestions"] = "Osoby, które możesz znać";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
$a->strings["Ignore/Hide"] = "Ignoruj/Ukryj";
@ -1078,8 +1093,10 @@ $a->strings["Status:"] = "Status";
$a->strings["Homepage:"] = "Strona główna:";
$a->strings["About:"] = "O:";
$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte).";
$a->strings["Total invitation limit exceeded."] = "";
$a->strings["%s : Not a valid email address."] = "%s : Niepoprawny adres email.";
$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
$a->strings["%s : Message delivery failed."] = "%s : Dostarczenie wiadomości nieudane.";
$a->strings["%d message sent."] = array(
0 => "%d wiadomość wysłana.",
@ -1408,7 +1425,7 @@ $a->strings["You won!"] = "Wygrałeś!";
$a->strings["\"Cat\" game!"] = "Gra \"Kot\"!";
$a->strings["I won!"] = "Wygrałem!";
$a->strings["Randplace Settings"] = "Ustawienia Randplace";
$a->strings["Enable Randplace Plugin"] = "";
$a->strings["Enable Randplace Plugin"] = "Włącz Randplace Plugin";
$a->strings["Post to Dreamwidth"] = "Opublikuj na Dreamwidth";
$a->strings["Dreamwidth Post Settings"] = "";
$a->strings["Enable dreamwidth Post Plugin"] = "";
@ -1550,7 +1567,7 @@ $a->strings["Post to StatusNet"] = "Wyślij do sieci StatusNet";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Proszę się skontaktować z administratorem strony. <br /> API URL nie jest poprawne";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "";
$a->strings["StatusNet settings updated."] = "Ustawienia StatusNet zaktualizowane";
$a->strings["StatusNet Posting Settings"] = "";
$a->strings["StatusNet Posting Settings"] = "Ustawienia StatusNet";
$a->strings["Globally Available StatusNet OAuthKeys"] = "";
$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)."] = "";
$a->strings["Provide your own OAuth Credentials"] = "";
@ -1563,11 +1580,11 @@ $a->strings["Log in with StatusNet"] = "Zaloguj się przez StatusNet";
$a->strings["Copy the security code from StatusNet here"] = "Tutaj skopiuj kod bezpieczeństwa z StatusNet";
$a->strings["Cancel Connection Process"] = "Anuluj proces łączenia";
$a->strings["Current StatusNet API is"] = "Aktualnym StatusNet API jest";
$a->strings["Cancel StatusNet Connection"] = "";
$a->strings["Cancel StatusNet Connection"] = "Anuluj połączenie StatusNet";
$a->strings["Currently connected to: "] = "Obecnie połączone z:";
$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."] = "";
$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."] = "";
$a->strings["Allow posting to StatusNet"] = "";
$a->strings["Allow posting to StatusNet"] = "Pozwól zamieszczać posty na StatusNet";
$a->strings["Send public postings to StatusNet by default"] = "";
$a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "";
$a->strings["Shortening method that optimizes the post"] = "";
@ -1629,6 +1646,8 @@ $a->strings["Shortening method that optimizes the tweet"] = "";
$a->strings["Send linked #-tags and @-names to Twitter"] = "";
$a->strings["Consumer key"] = "Klucz konsumenta";
$a->strings["Consumer secret"] = "Sekret konsumenta";
$a->strings["Name of the Twitter Application"] = "";
$a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "";
$a->strings["IRC Settings"] = "Ustawienia IRC";
$a->strings["Channel(s) to auto connect (comma separated)"] = "";
$a->strings["Popular Channels (comma separated)"] = "";
@ -1908,7 +1927,8 @@ $a->strings["Profiles"] = "Profile";
$a->strings["Manage/Edit Profiles"] = "";
$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami";
$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji";
$a->strings["Nothing new here"] = "Brak nowych zdarzeń";
$a->strings["Navigation"] = "";
$a->strings["Site map"] = "";
$a->strings["Add New Contact"] = "Dodaj nowy kontakt";
$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara";
@ -2033,7 +2053,7 @@ $a->strings["This site is not configured to allow communications with other netw
$a->strings["No compatible communication protocols or feeds were discovered."] = "";
$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji.";
$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione.";
$a->strings["No browser URL could be matched to this address."] = "";
$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
$a->strings["Use mailto: in front of address to force email check."] = "";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie.";
@ -2042,6 +2062,7 @@ $a->strings["Unable to retrieve contact information."] = "Nie można otrzymać i
$a->strings["following"] = "następujący";
$a->strings["A new person is sharing with you at "] = "";
$a->strings["You have a new follower at "] = "";
$a->strings["Do you really want to delete this item?"] = "";
$a->strings["Archives"] = "Archiwum";
$a->strings["An invitation is required."] = "Wymagane zaproszenie.";
$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane.";
@ -2093,7 +2114,11 @@ $a->strings["Please enter an audio link/URL:"] = "Podaj link do muzyki";
$a->strings["Tag term:"] = "";
$a->strings["Where are you right now?"] = "Gdzie teraz jesteś?";
$a->strings["Delete item(s)?"] = "";
$a->strings["Post to Email"] = "Wyślij poprzez email";
$a->strings["permissions"] = "zezwolenia";
$a->strings["Post to Groups"] = "";
$a->strings["Post to Contacts"] = "";
$a->strings["Private post"] = "";
$a->strings["Click here to upgrade."] = "Kliknij tu, aby zaktualizować.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
@ -2115,7 +2140,7 @@ $a->strings["Requested account is not available."] = "";
$a->strings["Edit profile"] = "Edytuj profil";
$a->strings["Message"] = "Wiadomość";
$a->strings["Manage/edit profiles"] = "Zarządzaj profilami";
$a->strings["g A l F d"] = "";
$a->strings["g A l F d"] = "g A I F d";
$a->strings["F d"] = "";
$a->strings["[today]"] = "[dziś]";
$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach";

View file

@ -52,10 +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}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>

View file

@ -2,7 +2,7 @@
style.css
Smoothly
Created by alex@friendica.pixelbits.de on 2013-01-11
Created by alex@friendica.pixelbits.de on 2013-02-20
** Colors **
Blue links - #1873a2
@ -3522,7 +3522,7 @@ margin-left: 0px;
/* ========= */
#adminpage {
width: 80%;
width: 90%;
}
#pending-update {
@ -3630,13 +3630,25 @@ margin-left: 0px;
/* =============== */
.field {
width: 90%;
margin-bottom: 10px;
overflow: auto;
padding-bottom: 0px;
width: 100%;
}
.field.radio .field_help {
margin-left: 205px;
}
.field .field_help {
color: #666666;
display: block;
margin-left: 200px;
}
.field label {
float: left;
min-width: 120px;
margin: 5px 10px 0 0;
float: left;
width: 200px;
}
.field checkbox {
@ -3646,17 +3658,13 @@ margin-left: 0px;
.field input,
.field textarea {
width: 220px;
width: 400px;
border: 1px solid #CDCDCD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.field textarea {
height: 100px;
}
.field password {
height: 100px;
margin-left: 150px;
@ -4346,6 +4354,12 @@ div #datebrowse-sidebar.widget {
margin:10px 10px 0 0;
}
#id_maxreq,
#id_cntunkmail,
#id_expire {
width: 75px;
}
#id_post_newfriend,
#id_post_joingroup,
#id_post_profilechange,
@ -4358,7 +4372,7 @@ div #datebrowse-sidebar.widget {
#id_notify7,
#id_notify8,
#id_allow_location {
margin: 6px 0 0 0;
margin: 6px 0 0 10px;
}
#settings-form {}
@ -4374,6 +4388,7 @@ div #datebrowse-sidebar.widget {
}
#settings-notifications {
width: 400px;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
@ -4426,3 +4441,37 @@ div #datebrowse-sidebar.widget {
width: auto !important;
margin-bottom: 5px !important;
}
.onoff {
margin-right: 10px;
}
.settings-heading {
margin: 25px 0 25px 0;
}
#id_itemcache,
#id_basepath,
#id_temppath,
#id_lockpath,
#id_proxyuser,
#id_proxy,
#id_allowed_email,
#id_allowed_sites,
#id_directory_submit_url,
#id_register_text {
width: 440px;
}
#id_itemcache_duration,
#id_abandon_days,
#id_maxloadavg,
#id_poll_interval,
#id_delivery_interval,
#id_timeout,
#id_jpegimagequality,
#id_maximagelength,
#id_maximagesize,
#id_max_daily_registrations {
width: 75px;
}

View file

@ -3,7 +3,7 @@
/*
* Name: Smoothly
* Description: Like coffee with milk. Theme optimized for iPad[2].
* Version: Version 0.132
* Version: Version 0.21
* Author: Alex <https://friendica.pixelbits.de/profile/alex>
* Maintainer: Alex <https://friendica.pixelbits.de/profile/alex>
* Screenshot: <a href="screenshot.png">Screenshot</a>