aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfabrixxm <fabrix.xm@gmail.com>2012-06-13 11:55:21 -0400
committerfabrixxm <fabrix.xm@gmail.com>2012-06-13 11:55:21 -0400
commit46cb8174fa2f0633caa179b10d6e1776d853f4ea (patch)
tree597ff0da6b36495750610f46d6835fdb9f453e2e
parenta424fecdae3b54b47778ed7a52452ff80c2bf631 (diff)
downloadvolse-hubzilla-46cb8174fa2f0633caa179b10d6e1776d853f4ea.tar.gz
volse-hubzilla-46cb8174fa2f0633caa179b10d6e1776d853f4ea.tar.bz2
volse-hubzilla-46cb8174fa2f0633caa179b10d6e1776d853f4ea.zip
enotify: rework strings to more easy to translate
-rw-r--r--include/enotify.php62
-rw-r--r--util/messages.po7445
2 files changed, 3730 insertions, 3777 deletions
diff --git a/include/enotify.php b/include/enotify.php
index fe0f128b6..89ecc3703 100644
--- a/include/enotify.php
+++ b/include/enotify.php
@@ -41,8 +41,8 @@ function notification($params) {
$subject = sprintf( t('[Friendica:Notify] New mail received at %s'),$sitename);
- $preamble = sprintf( t('%s sent you a new private message at %s.'),$params['source_name'],$sitename);
- $epreamble = sprintf( t('%s sent you %s.'),'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . t('a private message') . '[/url]');
+ $preamble = sprintf( t('%1$s sent you a new private message at %2$s.'),$params['source_name'],$sitename);
+ $epreamble = sprintf( t('%1$s sent you %2$s.'),'[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . t('a private message') . '[/url]');
$sitelink = t('Please visit %s to view and/or reply to your private messages.');
$tsitelink = sprintf( $sitelink, $siteurl . '/message/' . $params['item']['id'] );
$hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '/message/' . $params['item']['id'] . '">' . $sitename . '</a>');
@@ -66,27 +66,38 @@ function notification($params) {
);
}
- $possess_desc = str_replace('<!item_type!>',item_post_type($p[0]),$possess_desc);
+ $item_post_type = item_post_type($p[0]);
+ //$possess_desc = str_replace('<!item_type!>',$possess_desc);
// "a post"
- $dest_str = sprintf($possess_desc,'a');
+ $dest_str = sprintf(t('%1$s commented on [url=%2$s]a %3$s[/url]'),
+ '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
+ $itemlink,
+ $item_post_type);
// "George Bull's post"
if($p)
- $dest_str = sprintf($possess_desc,sprintf( t("%s's"),$p[0]['author-name']));
+ $dest_str = sprintf(t('%1$s commented on [url=%2$s]%3$s\'s %4$s[/url]'),
+ '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
+ $itemlink,
+ $p[0]['author-name']
+ $item_post_type);
// "your post"
if($p[0]['owner-name'] == $p[0]['author-name'] && $p[0]['wall'])
- $dest_str = sprintf($possess_desc, t('your') );
+ $dest_str = sprintf(t('%1$s commented on [url=%2$s]your %3$s[/url]'),
+ '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
+ $itemlink,
+ $item_post_type);
// Some mail softwares relies on subject field for threading.
// So, we cannot have different subjects for notifications of the same thread.
// Before this we have the name of the replier on the subject rendering
// differents subjects for messages on the same thread.
- $subject = sprintf( t('[Friendica:Notify] Comment to conversation #%d by %s'), $parent_id, $params['source_name']);
+ $subject = sprintf( t('[Friendica:Notify] Comment to conversation #%1$d by %1$s'), $parent_id, $params['source_name']);
$preamble = sprintf( t('%s commented on an item/conversation you have been following.'), $params['source_name']);
- $epreamble = sprintf( t('%s commented on %s.'), '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . $dest_str . '[/url]');
+ $epreamble = $dest_str;
$sitelink = t('Please visit %s to view and/or reply to the conversation.');
$tsitelink = sprintf( $sitelink, $siteurl );
@@ -97,9 +108,11 @@ function notification($params) {
if($params['type'] == NOTIFY_WALL) {
$subject = sprintf( t('[Friendica:Notify] %s posted to your profile wall') , $params['source_name']);
- $preamble = sprintf( t('%s posted to your profile wall at %s') , $params['source_name'], $sitename);
+ $preamble = sprintf( t('%1$s posted to your profile wall at %1$s') , $params['source_name'], $sitename);
- $epreamble = sprintf( t('%s posted to %s') , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . t('your profile wall.') . '[/url]');
+ $epreamble = sprintf( t('%1$s posted to [url=%2s]your wall[/url]') ,
+ '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
+ $itemlink);
$sitelink = t('Please visit %s to view and/or reply to the conversation.');
$tsitelink = sprintf( $sitelink, $siteurl );
@@ -109,8 +122,10 @@ function notification($params) {
if($params['type'] == NOTIFY_TAGSELF) {
$subject = sprintf( t('[Friendica:Notify] %s tagged you') , $params['source_name']);
- $preamble = sprintf( t('%s tagged you at %s') , $params['source_name'], $sitename);
- $epreamble = sprintf( t('%s %s.') , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=' . $params['link'] . ']' . t('tagged you') . '[/url]');
+ $preamble = sprintf( t('%1$s tagged you at %2$s') , $params['source_name'], $sitename);
+ $epreamble = sprintf( t('%1$s [url=%2s]tagged you[/url].') ,
+ '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
+ $params['link']);
$sitelink = t('Please visit %s to view and/or reply to the conversation.');
$tsitelink = sprintf( $sitelink, $siteurl );
@@ -120,8 +135,10 @@ function notification($params) {
if($params['type'] == NOTIFY_TAGSHARE) {
$subject = sprintf( t('[Friendica:Notify] %s tagged your post') , $params['source_name']);
- $preamble = sprintf( t('%s tagged your post at %s') , $params['source_name'], $sitename);
- $epreamble = sprintf( t('%s tagged %s') , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]', '[url=$itemlink]' . t('your post') . '[/url]' );
+ $preamble = sprintf( t('%1$s tagged your post at %2$s') , $params['source_name'], $sitename);
+ $epreamble = sprintf( t('%1$s tagged [url=%2$s]your post[/url]') ,
+ '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]',
+ $itemlink);
$sitelink = t('Please visit %s to view and/or reply to the conversation.');
$tsitelink = sprintf( $sitelink, $siteurl );
@@ -131,8 +148,10 @@ function notification($params) {
if($params['type'] == NOTIFY_INTRO) {
$subject = sprintf( t('[Friendica:Notify] Introduction received'));
- $preamble = sprintf( t('You\'ve received an introduction from \'%s\' at %s'), $params['source_name'], $sitename);
- $epreamble = sprintf( t('You\'ve received %s from %s.'), '[url=$itemlink]' . t('an introduction') . '[/url]' , '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]');
+ $preamble = sprintf( t('You\'ve received an introduction from \'%1$s\' at %2$s'), $params['source_name'], $sitename);
+ $epreamble = sprintf( t('You\'ve received [url=%1$s]an introduction[/url] from %2$s.'),
+ $itemlink,
+ '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]');
$body = sprintf( t('You may visit their profile at %s'),$params['source_link']);
$sitelink = t('Please visit %s to approve or reject the introduction.');
@@ -143,11 +162,12 @@ function notification($params) {
if($params['type'] == NOTIFY_SUGGEST) {
$subject = sprintf( t('[Friendica:Notify] Friend suggestion received'));
- $preamble = sprintf( t('You\'ve received a friend suggestion from \'%s\' at %s'), $params['source_name'], $sitename);
- $epreamble = sprintf( t('You\'ve received %s for %s from %s.'),
- '[url=$itemlink]' . t('a friend suggestion') . '[/url]',
- '[url=' . $params['item']['url'] . ']' . $params['item']['name'] . '[/url]',
- '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]');
+ $preamble = sprintf( t('You\'ve received a friend suggestion from \'%1$s\' at %2$s'), $params['source_name'], $sitename);
+ $epreamble = sprintf( t('You\'ve received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s.'),
+ $itemlink,
+ '[url=' . $params['item']['url'] . ']' . $params['item']['name'] . '[/url]',
+ '[url=' . $params['source_link'] . ']' . $params['source_name'] . '[/url]');
+
$body = t('Name:') . ' ' . $params['item']['name'] . "\n";
$body .= t('Photo:') . ' ' . $params['item']['photo'] . "\n";
$body .= sprintf( t('You may visit their profile at %s'),$params['item']['url']);
diff --git a/util/messages.po b/util/messages.po
index e28fdf7fb..defa9b795 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -8,622 +8,1343 @@ msgid ""
msgstr ""
"Project-Id-Version: 3.0.1372\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-06-12 10:00-0700\n"
+"POT-Creation-Date: 2012-06-13 11:54-0400\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."
-msgstr ""
-
-#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
-#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
-msgid "[Embedded content - reload page to view]"
+#: ../../index.php:218 ../../mod/help.php:38
+msgid "Not Found"
msgstr ""
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
+#: ../../index.php:221 ../../mod/help.php:41
+msgid "Page not found."
msgstr ""
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
+#: ../../index.php:298 ../../mod/profperm.php:19 ../../mod/group.php:72
+msgid "Permission denied"
msgstr ""
-#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44
-#: ../../mod/fsuggest.php:78 ../../mod/events.php:138 ../../mod/api.php:26
+#: ../../index.php:299 ../../mod/fsuggest.php:78
+#: ../../mod/notifications.php:66 ../../mod/message.php:45
+#: ../../mod/message.php:97 ../../mod/editpost.php:10
+#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:138
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:928
-#: ../../mod/editpost.php:10 ../../mod/install.php:151
-#: ../../mod/notifications.php:66 ../../mod/contacts.php:145
+#: ../../mod/register.php:38 ../../mod/attach.php:33
+#: ../../mod/contacts.php:145 ../../mod/follow.php:9
+#: ../../mod/allfriends.php:9 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/settings.php:106 ../../mod/settings.php:537
-#: ../../mod/settings.php:542 ../../mod/manage.php:86 ../../mod/network.php:6
-#: ../../mod/notes.php:20 ../../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:38 ../../mod/regmod.php:116 ../../mod/item.php:124
-#: ../../mod/item.php:140 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:141 ../../mod/profile_photo.php:152
-#: ../../mod/profile_photo.php:165 ../../mod/message.php:45
-#: ../../mod/message.php:97 ../../mod/allfriends.php:9
-#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53
-#: ../../mod/follow.php:9 ../../mod/display.php:138 ../../mod/profiles.php:7
-#: ../../mod/profiles.php:385 ../../mod/delegate.php:6
-#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
-#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:503
-#: ../../addon/dav/layout.fnk.php:353 ../../include/items.php:3387
-#: ../../index.php:299
+#: ../../mod/settings.php:542 ../../mod/display.php:138
+#: ../../mod/profiles.php:7 ../../mod/profiles.php:385
+#: ../../mod/wall_attach.php:44 ../../mod/suggest.php:28
+#: ../../mod/manage.php:86 ../../mod/delegate.php:6
+#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:141
+#: ../../mod/profile_photo.php:152 ../../mod/profile_photo.php:165
+#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:116
+#: ../../mod/item.php:124 ../../mod/item.php:140 ../../mod/network.php:6
+#: ../../mod/crepair.php:115 ../../addon/dav/layout.fnk.php:353
+#: ../../addon/facebook/facebook.php:503 ../../include/items.php:3387
msgid "Permission denied."
msgstr ""
-#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
+#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
+msgid "[Embedded content - reload page to view]"
+msgstr ""
+
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129
msgid "Contact not found."
msgstr ""
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
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."
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
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."
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
msgstr ""
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
+#: ../../mod/fsuggest.php:107 ../../mod/admin.php:420 ../../mod/admin.php:656
+#: ../../mod/admin.php:792 ../../mod/admin.php:991 ../../mod/admin.php:1078
+#: ../../mod/message.php:216 ../../mod/events.php:428 ../../mod/photos.php:963
+#: ../../mod/photos.php:1021 ../../mod/photos.php:1266
+#: ../../mod/photos.php:1306 ../../mod/photos.php:1346
+#: ../../mod/photos.php:1377 ../../mod/contacts.php:342
+#: ../../mod/invite.php:119 ../../mod/settings.php:555
+#: ../../mod/settings.php:701 ../../mod/settings.php:762
+#: ../../mod/settings.php:969 ../../mod/profiles.php:554
+#: ../../mod/localtime.php:45 ../../mod/install.php:246
+#: ../../mod/install.php:284 ../../mod/group.php:85 ../../mod/crepair.php:166
+#: ../../view/theme/diabook/theme.php:757
+#: ../../view/theme/diabook/config.php:190
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:52
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../addon/pageheader/pageheader.php:55 ../../addon/piwik/piwik.php:89
+#: ../../addon/libertree/libertree.php:90
+#: ../../addon/editplain/editplain.php:84
+#: ../../addon/posterous/posterous.php:103 ../../addon/ljpost/ljpost.php:93
+#: ../../addon/snautofollow/snautofollow.php:64
+#: ../../addon/geonames/geonames.php:187 ../../addon/ijpost/ijpost.php:93
+#: ../../addon/statusnet/statusnet.php:278
+#: ../../addon/statusnet/statusnet.php:292
+#: ../../addon/statusnet/statusnet.php:318
+#: ../../addon/statusnet/statusnet.php:325
+#: ../../addon/statusnet/statusnet.php:353
+#: ../../addon/statusnet/statusnet.php:561
+#: ../../addon/qcomment/qcomment.php:61 ../../addon/showmore/showmore.php:48
+#: ../../addon/dwpost/dwpost.php:93 ../../addon/numfriends/numfriends.php:85
+#: ../../addon/blackout/blackout.php:98 ../../addon/blogger/blogger.php:102
+#: ../../addon/wppost/wppost.php:110 ../../addon/jappixmini/jappixmini.php:302
+#: ../../addon/uhremotestorage/uhremotestorage.php:89
+#: ../../addon/gravatar/gravatar.php:86 ../../addon/mathjax/mathjax.php:42
+#: ../../addon/twitter/twitter.php:180 ../../addon/twitter/twitter.php:209
+#: ../../addon/twitter/twitter.php:381 ../../addon/facebook/facebook.php:605
+#: ../../addon/nsfw/nsfw.php:57 ../../addon/openstreetmap/openstreetmap.php:70
+#: ../../addon/randplace/randplace.php:177 ../../addon/blockem/blockem.php:57
+#: ../../addon/impressum/impressum.php:82 ../../addon/gnot/gnot.php:88
+#: ../../addon/planets/planets.php:158 ../../addon/irc/irc.php:55
+#: ../../addon/yourls/yourls.php:76 ../../addon/tumblr/tumblr.php:90
+#: ../../addon/startpage/startpage.php:92 ../../include/conversation.php:580
+msgid "Submit"
msgstr ""
-#: ../../mod/crepair.php:148 ../../mod/settings.php:557
-#: ../../mod/settings.php:583 ../../mod/admin.php:659 ../../mod/admin.php:668
-msgid "Name"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
msgstr ""
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
+msgid "Profile location is not valid or does not contain profile information."
msgstr ""
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
+msgid "Warning: profile location has no identifiable owner name."
msgstr ""
-#: ../../mod/crepair.php:151
-msgid "Account URL"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
+msgid "Warning: profile location has no profile photo."
msgstr ""
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
+#, 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/crepair.php:153
-msgid "Friend Confirm URL"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
msgstr ""
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
msgstr ""
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
msgstr ""
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
msgstr ""
-#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
-#: ../../mod/events.php:428 ../../mod/photos.php:963 ../../mod/photos.php:1021
-#: ../../mod/photos.php:1266 ../../mod/photos.php:1306
-#: ../../mod/photos.php:1346 ../../mod/photos.php:1377
-#: ../../mod/install.php:246 ../../mod/install.php:284
-#: ../../mod/localtime.php:45 ../../mod/contacts.php:342
-#: ../../mod/settings.php:555 ../../mod/settings.php:701
-#: ../../mod/settings.php:762 ../../mod/settings.php:969
-#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/message.php:216
-#: ../../mod/admin.php:420 ../../mod/admin.php:656 ../../mod/admin.php:792
-#: ../../mod/admin.php:991 ../../mod/admin.php:1078 ../../mod/profiles.php:554
-#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:605
-#: ../../addon/snautofollow/snautofollow.php:64
-#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
-#: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158
-#: ../../addon/uhremotestorage/uhremotestorage.php:89
-#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
-#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
-#: ../../addon/impressum/impressum.php:82 ../../addon/blockem/blockem.php:57
-#: ../../addon/qcomment/qcomment.php:61
-#: ../../addon/openstreetmap/openstreetmap.php:70
-#: ../../addon/libertree/libertree.php:90 ../../addon/mathjax/mathjax.php:42
-#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:98
-#: ../../addon/gravatar/gravatar.php:86
-#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
-#: ../../addon/jappixmini/jappixmini.php:302
-#: ../../addon/statusnet/statusnet.php:278
-#: ../../addon/statusnet/statusnet.php:292
-#: ../../addon/statusnet/statusnet.php:318
-#: ../../addon/statusnet/statusnet.php:325
-#: ../../addon/statusnet/statusnet.php:353
-#: ../../addon/statusnet/statusnet.php:561 ../../addon/tumblr/tumblr.php:90
-#: ../../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:180
-#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:381
-#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102
-#: ../../addon/posterous/posterous.php:103
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/theme.php:757
-#: ../../view/theme/diabook/config.php:190
-#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
-#: ../../include/conversation.php:580
-msgid "Submit"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
msgstr ""
-#: ../../mod/help.php:30
-msgid "Help:"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
msgstr ""
-#: ../../mod/help.php:34 ../../addon/dav/layout.fnk.php:116
-#: ../../include/nav.php:86
-msgid "Help"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
msgstr ""
-#: ../../mod/help.php:38 ../../index.php:218
-msgid "Not Found"
+#: ../../mod/dfrn_request.php:361
+msgid "This account has not been configured for email. Request failed."
msgstr ""
-#: ../../mod/help.php:41 ../../index.php:221
-msgid "Page not found."
+#: ../../mod/dfrn_request.php:457
+msgid "Unable to resolve your name at the provided location."
msgstr ""
-#: ../../mod/wall_attach.php:58
+#: ../../mod/dfrn_request.php:470
+msgid "You have already introduced yourself here."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:474
#, php-format
-msgid "File exceeds size limit of %d"
+msgid "Apparently you are already friends with %s."
msgstr ""
-#: ../../mod/wall_attach.php:86 ../../mod/wall_attach.php:97
-msgid "File upload failed."
+#: ../../mod/dfrn_request.php:495
+msgid "Invalid profile URL."
msgstr ""
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
+#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
+msgid "Disallowed profile URL."
msgstr ""
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
+#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:122
+msgid "Failed to update contact record."
msgstr ""
-#: ../../mod/fsuggest.php:99
+#: ../../mod/dfrn_request.php:591
+msgid "Your introduction has been sent."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:644
+msgid "Please login to confirm introduction."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:658
+msgid ""
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:669
+msgid "Hide this contact"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:672
#, php-format
-msgid "Suggest a friend for %s"
+msgid "Welcome home %s."
msgstr ""
-#: ../../mod/events.php:65
-msgid "Event description and start time are required."
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
msgstr ""
-#: ../../mod/events.php:258
-msgid "l, F j"
+#: ../../mod/dfrn_request.php:674
+msgid "Confirm"
msgstr ""
-#: ../../mod/events.php:280
-msgid "Edit event"
+#: ../../mod/dfrn_request.php:715 ../../include/items.php:2783
+msgid "[Name Withheld]"
msgstr ""
-#: ../../mod/events.php:300 ../../include/text.php:1065
-msgid "link to source"
+#: ../../mod/dfrn_request.php:759 ../../mod/photos.php:820
+#: ../../mod/search.php:71 ../../mod/display.php:7 ../../mod/community.php:16
+#: ../../mod/viewcontacts.php:17 ../../mod/directory.php:29
+msgid "Public access denied."
msgstr ""
-#: ../../mod/events.php:324 ../../view/theme/diabook/theme.php:131
-#: ../../include/nav.php:52 ../../boot.php:1529
-msgid "Events"
+#: ../../mod/dfrn_request.php:808
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
msgstr ""
-#: ../../mod/events.php:325
-msgid "Create New Event"
+#: ../../mod/dfrn_request.php:824
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr ""
-#: ../../mod/events.php:326 ../../addon/dav/layout.fnk.php:154
-msgid "Previous"
+#: ../../mod/dfrn_request.php:826
+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/events.php:327 ../../mod/install.php:205
-#: ../../addon/dav/layout.fnk.php:157
-msgid "Next"
+#: ../../mod/dfrn_request.php:829
+msgid "Friend/Connection Request"
msgstr ""
-#: ../../mod/events.php:399
-msgid "hour:minute"
+#: ../../mod/dfrn_request.php:830
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
msgstr ""
-#: ../../mod/events.php:408
-msgid "Event details"
+#: ../../mod/dfrn_request.php:831
+msgid "Please answer the following:"
msgstr ""
-#: ../../mod/events.php:409
+#: ../../mod/dfrn_request.php:832
#, php-format
-msgid "Format is %s %s. Starting date and Description are required."
+msgid "Does %s know you?"
msgstr ""
-#: ../../mod/events.php:411
-msgid "Event Starts:"
+#: ../../mod/dfrn_request.php:833 ../../mod/api.php:105
+#: ../../mod/register.php:234 ../../mod/settings.php:879
+#: ../../mod/settings.php:885 ../../mod/settings.php:893
+#: ../../mod/settings.php:897 ../../mod/settings.php:902
+#: ../../mod/settings.php:908 ../../mod/settings.php:914
+#: ../../mod/settings.php:920 ../../mod/settings.php:956
+#: ../../mod/settings.php:957 ../../mod/settings.php:958
+#: ../../mod/settings.php:959 ../../mod/settings.php:960
+#: ../../mod/profiles.php:531
+msgid "Yes"
msgstr ""
-#: ../../mod/events.php:414
-msgid "Finish date/time is not known or not relevant"
+#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106
+#: ../../mod/register.php:235 ../../mod/settings.php:879
+#: ../../mod/settings.php:885 ../../mod/settings.php:893
+#: ../../mod/settings.php:897 ../../mod/settings.php:902
+#: ../../mod/settings.php:908 ../../mod/settings.php:914
+#: ../../mod/settings.php:920 ../../mod/settings.php:956
+#: ../../mod/settings.php:957 ../../mod/settings.php:958
+#: ../../mod/settings.php:959 ../../mod/settings.php:960
+#: ../../mod/profiles.php:532
+msgid "No"
msgstr ""
-#: ../../mod/events.php:416
-msgid "Event Finishes:"
+#: ../../mod/dfrn_request.php:835
+msgid "Add a personal note:"
msgstr ""
-#: ../../mod/events.php:419
-msgid "Adjust for viewer timezone"
+#: ../../mod/dfrn_request.php:837 ../../include/contact_selectors.php:76
+msgid "Friendica"
msgstr ""
-#: ../../mod/events.php:421
-msgid "Description:"
+#: ../../mod/dfrn_request.php:838
+msgid "StatusNet/Federated Social Web"
msgstr ""
-#: ../../mod/events.php:423 ../../include/event.php:37
-#: ../../include/bb2diaspora.php:265 ../../boot.php:1109
-msgid "Location:"
+#: ../../mod/dfrn_request.php:839 ../../mod/settings.php:652
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
msgstr ""
-#: ../../mod/events.php:425
-msgid "Share this event"
+#: ../../mod/dfrn_request.php:840
+#, php-format
+msgid ""
+" - please do not use this form. Instead, enter %s into your Diaspora search "
+"bar."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:841
+msgid "Your Identity Address:"
msgstr ""
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/dfrn_request.php:845 ../../mod/settings.php:556
+#: ../../mod/dfrn_request.php:844
+msgid "Submit Request"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:845 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:556
#: ../../mod/settings.php:582 ../../addon/js_upload/js_upload.php:45
msgid "Cancel"
msgstr ""
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
+#: ../../mod/profile.php:21 ../../boot.php:966
+msgid "Requested profile is not available."
msgstr ""
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
+#: ../../mod/profile.php:141 ../../mod/display.php:75
+msgid "Access to this profile has been restricted."
msgstr ""
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
+#: ../../mod/profile.php:166
+msgid "Tips for New Members"
msgstr ""
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-msgid "Remove"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
msgstr ""
-#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:522
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:207
+msgid "Discard"
+msgstr ""
+
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
+#: ../../mod/notifications.php:206 ../../mod/contacts.php:316
+#: ../../mod/contacts.php:368
+msgid "Ignore"
+msgstr ""
+
+#: ../../mod/notifications.php:75
+msgid "System"
+msgstr ""
+
+#: ../../mod/notifications.php:80 ../../include/nav.php:113
+msgid "Network"
+msgstr ""
+
+#: ../../mod/notifications.php:85 ../../mod/network.php:285
+msgid "Personal"
+msgstr ""
+
+#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127
+#: ../../include/nav.php:77 ../../include/nav.php:115
+msgid "Home"
+msgstr ""
+
+#: ../../mod/notifications.php:95 ../../include/nav.php:121
+msgid "Introductions"
+msgstr ""
+
+#: ../../mod/notifications.php:100 ../../mod/message.php:105
+#: ../../include/nav.php:128
+msgid "Messages"
+msgstr ""
+
+#: ../../mod/notifications.php:119
+msgid "Show Ignored Requests"
+msgstr ""
+
+#: ../../mod/notifications.php:119
+msgid "Hide Ignored Requests"
+msgstr ""
+
+#: ../../mod/notifications.php:145 ../../mod/notifications.php:191
+msgid "Notification type: "
+msgstr ""
+
+#: ../../mod/notifications.php:146
+msgid "Friend Suggestion"
+msgstr ""
+
+#: ../../mod/notifications.php:148
#, php-format
-msgid "%s welcomes %s"
+msgid "suggested by %s"
msgstr ""
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
+#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
+#: ../../mod/contacts.php:374
+msgid "Hide this contact from others"
msgstr ""
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
+msgid "Post a new friend activity"
msgstr ""
-#: ../../mod/api.php:89
-msgid "Please login to continue."
+#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
+msgid "if applicable"
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?"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/admin.php:661
+msgid "Approve"
msgstr ""
-#: ../../mod/api.php:105 ../../mod/dfrn_request.php:833
-#: ../../mod/settings.php:879 ../../mod/settings.php:885
-#: ../../mod/settings.php:893 ../../mod/settings.php:897
-#: ../../mod/settings.php:902 ../../mod/settings.php:908
-#: ../../mod/settings.php:914 ../../mod/settings.php:920
-#: ../../mod/settings.php:956 ../../mod/settings.php:957
-#: ../../mod/settings.php:958 ../../mod/settings.php:959
-#: ../../mod/settings.php:960 ../../mod/register.php:234
-#: ../../mod/profiles.php:531
-msgid "Yes"
+#: ../../mod/notifications.php:177
+msgid "Claims to be known to you: "
msgstr ""
-#: ../../mod/api.php:106 ../../mod/dfrn_request.php:834
-#: ../../mod/settings.php:879 ../../mod/settings.php:885
-#: ../../mod/settings.php:893 ../../mod/settings.php:897
-#: ../../mod/settings.php:902 ../../mod/settings.php:908
-#: ../../mod/settings.php:914 ../../mod/settings.php:920
-#: ../../mod/settings.php:956 ../../mod/settings.php:957
-#: ../../mod/settings.php:958 ../../mod/settings.php:959
-#: ../../mod/settings.php:960 ../../mod/register.php:235
-#: ../../mod/profiles.php:532
-msgid "No"
+#: ../../mod/notifications.php:177
+msgid "yes"
msgstr ""
-#: ../../mod/photos.php:44 ../../boot.php:1523
-msgid "Photo Albums"
+#: ../../mod/notifications.php:177
+msgid "no"
msgstr ""
-#: ../../mod/photos.php:52 ../../mod/photos.php:154 ../../mod/photos.php:942
-#: ../../mod/photos.php:1013 ../../mod/photos.php:1028
-#: ../../mod/photos.php:1455 ../../mod/photos.php:1467
-#: ../../addon/communityhome/communityhome.php:110
-#: ../../view/theme/diabook/theme.php:598
-msgid "Contact Photos"
+#: ../../mod/notifications.php:184
+msgid "Approve as: "
msgstr ""
-#: ../../mod/photos.php:59 ../../mod/photos.php:1038 ../../mod/photos.php:1505
-msgid "Upload New Photos"
+#: ../../mod/notifications.php:185
+msgid "Friend"
msgstr ""
-#: ../../mod/photos.php:70 ../../mod/settings.php:21
-msgid "everybody"
+#: ../../mod/notifications.php:186
+msgid "Sharer"
msgstr ""
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
+#: ../../mod/notifications.php:186
+msgid "Fan/Admirer"
msgstr ""
-#: ../../mod/photos.php:154 ../../mod/photos.php:656 ../../mod/photos.php:1013
-#: ../../mod/photos.php:1028 ../../mod/profile_photo.php:60
-#: ../../mod/profile_photo.php:67 ../../mod/profile_photo.php:74
-#: ../../mod/profile_photo.php:176 ../../mod/profile_photo.php:254
-#: ../../mod/profile_photo.php:263
-#: ../../addon/communityhome/communityhome.php:111
-#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:298
-#: ../../include/user.php:305 ../../include/user.php:312
-msgid "Profile Photos"
+#: ../../mod/notifications.php:192
+msgid "Friend/Connect Request"
msgstr ""
-#: ../../mod/photos.php:164
-msgid "Album not found."
+#: ../../mod/notifications.php:192
+msgid "New Follower"
msgstr ""
-#: ../../mod/photos.php:182 ../../mod/photos.php:1022
-msgid "Delete Album"
+#: ../../mod/notifications.php:213
+msgid "No introductions."
msgstr ""
-#: ../../mod/photos.php:245 ../../mod/photos.php:1267
-msgid "Delete Photo"
+#: ../../mod/notifications.php:216 ../../include/nav.php:122
+msgid "Notifications"
msgstr ""
-#: ../../mod/photos.php:587
-msgid "was tagged in a"
+#: ../../mod/notifications.php:253 ../../mod/notifications.php:378
+#: ../../mod/notifications.php:465
+#, php-format
+msgid "%s liked %s's post"
+msgstr ""
+
+#: ../../mod/notifications.php:262 ../../mod/notifications.php:387
+#: ../../mod/notifications.php:474
+#, php-format
+msgid "%s disliked %s's post"
+msgstr ""
+
+#: ../../mod/notifications.php:276 ../../mod/notifications.php:401
+#: ../../mod/notifications.php:488
+#, php-format
+msgid "%s is now friends with %s"
+msgstr ""
+
+#: ../../mod/notifications.php:283 ../../mod/notifications.php:408
+#, php-format
+msgid "%s created a new post"
+msgstr ""
+
+#: ../../mod/notifications.php:284 ../../mod/notifications.php:409
+#: ../../mod/notifications.php:497
+#, php-format
+msgid "%s commented on %s's post"
+msgstr ""
+
+#: ../../mod/notifications.php:298
+msgid "No more network notifications."
+msgstr ""
+
+#: ../../mod/notifications.php:302
+msgid "Network Notifications"
+msgstr ""
+
+#: ../../mod/notifications.php:328 ../../mod/notify.php:61
+msgid "No more system notifications."
msgstr ""
-#: ../../mod/photos.php:587 ../../mod/like.php:185 ../../mod/tagger.php:70
-#: ../../addon/communityhome/communityhome.php:163
-#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1316
+#: ../../mod/notifications.php:332 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr ""
+
+#: ../../mod/notifications.php:423
+msgid "No more personal notifications."
+msgstr ""
+
+#: ../../mod/notifications.php:427
+msgid "Personal Notifications"
+msgstr ""
+
+#: ../../mod/notifications.php:504
+msgid "No more home notifications."
+msgstr ""
+
+#: ../../mod/notifications.php:508
+msgid "Home Notifications"
+msgstr ""
+
+#: ../../mod/like.php:185 ../../mod/tagger.php:70 ../../mod/photos.php:587
+#: ../../view/theme/diabook/theme.php:570
+#: ../../addon/communityhome/communityhome.php:163 ../../include/text.php:1316
#: ../../include/diaspora.php:1671 ../../include/conversation.php:53
#: ../../include/conversation.php:126
msgid "photo"
msgstr ""
-#: ../../mod/photos.php:587
-msgid "by"
+#: ../../mod/like.php:185 ../../mod/like.php:259 ../../mod/tagger.php:70
+#: ../../view/theme/diabook/theme.php:565
+#: ../../view/theme/diabook/theme.php:574
+#: ../../addon/communityhome/communityhome.php:158
+#: ../../addon/communityhome/communityhome.php:167
+#: ../../addon/facebook/facebook.php:1572 ../../include/diaspora.php:1671
+#: ../../include/conversation.php:48 ../../include/conversation.php:57
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+msgid "status"
msgstr ""
-#: ../../mod/photos.php:692 ../../addon/js_upload/js_upload.php:315
-msgid "Image exceeds size limit of "
+#: ../../mod/like.php:202 ../../view/theme/diabook/theme.php:579
+#: ../../addon/communityhome/communityhome.php:172
+#: ../../addon/facebook/facebook.php:1576 ../../include/diaspora.php:1687
+#: ../../include/conversation.php:65
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
msgstr ""
-#: ../../mod/photos.php:700
-msgid "Image file is empty."
+#: ../../mod/like.php:204 ../../include/conversation.php:68
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
-#: ../../mod/photos.php:714 ../../mod/profile_photo.php:126
-#: ../../mod/wall_upload.php:86
-msgid "Unable to process image."
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
msgstr ""
-#: ../../mod/photos.php:734 ../../mod/profile_photo.php:259
-#: ../../mod/wall_upload.php:105
-msgid "Image upload failed."
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
msgstr ""
-#: ../../mod/photos.php:820 ../../mod/community.php:16
-#: ../../mod/dfrn_request.php:759 ../../mod/viewcontacts.php:17
-#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
-msgid "Public access denied."
+#: ../../mod/openid.php:93 ../../include/auth.php:99
+#: ../../include/auth.php:162
+msgid "Login failed."
msgstr ""
-#: ../../mod/photos.php:830
-msgid "No photos selected"
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
msgstr ""
-#: ../../mod/photos.php:909
-msgid "Access to this item is restricted."
+#: ../../mod/admin.php:96 ../../mod/admin.php:419
+msgid "Site"
msgstr ""
-#: ../../mod/photos.php:970
-msgid "Upload Photos"
+#: ../../mod/admin.php:97 ../../mod/admin.php:655 ../../mod/admin.php:667
+msgid "Users"
msgstr ""
-#: ../../mod/photos.php:973 ../../mod/photos.php:1017
-msgid "New album name: "
+#: ../../mod/admin.php:98 ../../mod/admin.php:749 ../../mod/admin.php:791
+msgid "Plugins"
msgstr ""
-#: ../../mod/photos.php:974
-msgid "or existing album name: "
+#: ../../mod/admin.php:99 ../../mod/admin.php:954 ../../mod/admin.php:990
+msgid "Themes"
msgstr ""
-#: ../../mod/photos.php:975
-msgid "Do not show a status post for this upload"
+#: ../../mod/admin.php:100
+msgid "DB updates"
msgstr ""
-#: ../../mod/photos.php:977 ../../mod/photos.php:1262
-msgid "Permissions"
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1077
+msgid "Logs"
msgstr ""
-#: ../../mod/photos.php:1032
-msgid "Edit Album"
+#: ../../mod/admin.php:120 ../../include/nav.php:146
+msgid "Admin"
msgstr ""
-#: ../../mod/photos.php:1056 ../../mod/photos.php:1488
-msgid "View Photo"
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
msgstr ""
-#: ../../mod/photos.php:1091
-msgid "Permission denied. Access to this item may be restricted."
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
msgstr ""
-#: ../../mod/photos.php:1093
-msgid "Photo not available"
+#: ../../mod/admin.php:159 ../../mod/admin.php:700 ../../mod/admin.php:899
+#: ../../mod/notice.php:15 ../../mod/display.php:37 ../../mod/display.php:142
+#: ../../mod/viewsrc.php:15 ../../include/items.php:3234
+msgid "Item not found."
msgstr ""
-#: ../../mod/photos.php:1143
-msgid "View photo"
+#: ../../mod/admin.php:183 ../../mod/admin.php:637
+msgid "Normal Account"
msgstr ""
-#: ../../mod/photos.php:1143
-msgid "Edit photo"
+#: ../../mod/admin.php:184 ../../mod/admin.php:638
+msgid "Soapbox Account"
msgstr ""
-#: ../../mod/photos.php:1144
-msgid "Use as profile photo"
+#: ../../mod/admin.php:185 ../../mod/admin.php:639
+msgid "Community/Celebrity Account"
msgstr ""
-#: ../../mod/photos.php:1150 ../../include/conversation.php:490
-msgid "Private Message"
+#: ../../mod/admin.php:186 ../../mod/admin.php:640
+msgid "Automatic Friend Account"
msgstr ""
-#: ../../mod/photos.php:1172
-msgid "View Full Size"
+#: ../../mod/admin.php:205
+msgid "Message queues"
msgstr ""
-#: ../../mod/photos.php:1240
-msgid "Tags: "
+#: ../../mod/admin.php:210 ../../mod/admin.php:418 ../../mod/admin.php:654
+#: ../../mod/admin.php:748 ../../mod/admin.php:790 ../../mod/admin.php:953
+#: ../../mod/admin.php:989 ../../mod/admin.php:1076
+msgid "Administration"
msgstr ""
-#: ../../mod/photos.php:1243
-msgid "[Remove any tag]"
+#: ../../mod/admin.php:211
+msgid "Summary"
msgstr ""
-#: ../../mod/photos.php:1253
-msgid "Rotate CW"
+#: ../../mod/admin.php:213
+msgid "Registered users"
msgstr ""
-#: ../../mod/photos.php:1255
-msgid "New album name"
+#: ../../mod/admin.php:215
+msgid "Pending registrations"
msgstr ""
-#: ../../mod/photos.php:1258
-msgid "Caption"
+#: ../../mod/admin.php:216
+msgid "Version"
msgstr ""
-#: ../../mod/photos.php:1260
-msgid "Add a Tag"
+#: ../../mod/admin.php:218
+msgid "Active plugins"
msgstr ""
-#: ../../mod/photos.php:1264
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../mod/admin.php:357
+msgid "Site settings updated."
msgstr ""
-#: ../../mod/photos.php:1284 ../../include/conversation.php:554
-msgid "I like this (toggle)"
+#: ../../mod/admin.php:405
+msgid "Closed"
msgstr ""
-#: ../../mod/photos.php:1285 ../../include/conversation.php:555
-msgid "I don't like this (toggle)"
+#: ../../mod/admin.php:406
+msgid "Requires approval"
msgstr ""
-#: ../../mod/photos.php:1286 ../../include/conversation.php:989
-msgid "Share"
+#: ../../mod/admin.php:407
+msgid "Open"
msgstr ""
-#: ../../mod/photos.php:1287 ../../mod/editpost.php:104
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:215
-#: ../../mod/message.php:410 ../../include/conversation.php:371
-#: ../../include/conversation.php:731 ../../include/conversation.php:1008
-msgid "Please wait"
+#: ../../mod/admin.php:411
+msgid "No SSL policy, links will track page SSL state"
msgstr ""
-#: ../../mod/photos.php:1303 ../../mod/photos.php:1343
-#: ../../mod/photos.php:1374 ../../include/conversation.php:577
-msgid "This is you"
+#: ../../mod/admin.php:412
+msgid "Force all links to use SSL"
msgstr ""
-#: ../../mod/photos.php:1305 ../../mod/photos.php:1345
-#: ../../mod/photos.php:1376 ../../include/conversation.php:579
-#: ../../boot.php:523
-msgid "Comment"
+#: ../../mod/admin.php:413
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
-#: ../../mod/photos.php:1307 ../../mod/editpost.php:125
-#: ../../include/conversation.php:589 ../../include/conversation.php:1026
-msgid "Preview"
+#: ../../mod/admin.php:421 ../../mod/register.php:255
+msgid "Registration"
+msgstr ""
+
+#: ../../mod/admin.php:422
+msgid "File upload"
+msgstr ""
+
+#: ../../mod/admin.php:423
+msgid "Policies"
+msgstr ""
+
+#: ../../mod/admin.php:424
+msgid "Advanced"
+msgstr ""
+
+#: ../../mod/admin.php:428 ../../addon/statusnet/statusnet.php:552
+msgid "Site name"
+msgstr ""
+
+#: ../../mod/admin.php:429
+msgid "Banner/Logo"
+msgstr ""
+
+#: ../../mod/admin.php:430
+msgid "System language"
+msgstr ""
+
+#: ../../mod/admin.php:431
+msgid "System theme"
+msgstr ""
+
+#: ../../mod/admin.php:431
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr ""
+
+#: ../../mod/admin.php:432
+msgid "SSL link policy"
+msgstr ""
+
+#: ../../mod/admin.php:432
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr ""
+
+#: ../../mod/admin.php:433
+msgid "Maximum image size"
+msgstr ""
+
+#: ../../mod/admin.php:433
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr ""
+
+#: ../../mod/admin.php:435
+msgid "Register policy"
+msgstr ""
+
+#: ../../mod/admin.php:436
+msgid "Register text"
+msgstr ""
+
+#: ../../mod/admin.php:436
+msgid "Will be displayed prominently on the registration page."
+msgstr ""
+
+#: ../../mod/admin.php:437
+msgid "Accounts abandoned after x days"
+msgstr ""
+
+#: ../../mod/admin.php:437
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr ""
+
+#: ../../mod/admin.php:438
+msgid "Allowed friend domains"
+msgstr ""
+
+#: ../../mod/admin.php:438
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr ""
+
+#: ../../mod/admin.php:439
+msgid "Allowed email domains"
+msgstr ""
+
+#: ../../mod/admin.php:439
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr ""
+
+#: ../../mod/admin.php:440
+msgid "Block public"
+msgstr ""
+
+#: ../../mod/admin.php:440
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr ""
+
+#: ../../mod/admin.php:441
+msgid "Force publish"
+msgstr ""
+
+#: ../../mod/admin.php:441
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
+
+#: ../../mod/admin.php:442
+msgid "Global directory update URL"
+msgstr ""
+
+#: ../../mod/admin.php:442
+msgid ""
+"URL to update the global directory. If this is not set, the global directory "
+"is completely unavailable to the application."
+msgstr ""
+
+#: ../../mod/admin.php:444
+msgid "Block multiple registrations"
+msgstr ""
+
+#: ../../mod/admin.php:444
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr ""
+
+#: ../../mod/admin.php:445
+msgid "OpenID support"
+msgstr ""
+
+#: ../../mod/admin.php:445
+msgid "OpenID support for registration and logins."
+msgstr ""
+
+#: ../../mod/admin.php:446
+msgid "Fullname check"
+msgstr ""
+
+#: ../../mod/admin.php:446
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr ""
+
+#: ../../mod/admin.php:447
+msgid "UTF-8 Regular expressions"
+msgstr ""
+
+#: ../../mod/admin.php:447
+msgid "Use PHP UTF8 regular expressions"
+msgstr ""
+
+#: ../../mod/admin.php:448
+msgid "Show Community Page"
+msgstr ""
+
+#: ../../mod/admin.php:448
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr ""
+
+#: ../../mod/admin.php:449
+msgid "Enable OStatus support"
+msgstr ""
+
+#: ../../mod/admin.php:449
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr ""
+
+#: ../../mod/admin.php:450
+msgid "Enable Diaspora support"
+msgstr ""
+
+#: ../../mod/admin.php:450
+msgid "Provide built-in Diaspora network compatibility."
+msgstr ""
+
+#: ../../mod/admin.php:451
+msgid "Only allow Friendica contacts"
+msgstr ""
+
+#: ../../mod/admin.php:451
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr ""
+
+#: ../../mod/admin.php:452
+msgid "Verify SSL"
+msgstr ""
+
+#: ../../mod/admin.php:452
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you "
+"cannot connect (at all) to self-signed SSL sites."
+msgstr ""
+
+#: ../../mod/admin.php:453
+msgid "Proxy user"
+msgstr ""
+
+#: ../../mod/admin.php:454
+msgid "Proxy URL"
+msgstr ""
+
+#: ../../mod/admin.php:455
+msgid "Network timeout"
+msgstr ""
+
+#: ../../mod/admin.php:455
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr ""
+
+#: ../../mod/admin.php:456
+msgid "Delivery interval"
+msgstr ""
+
+#: ../../mod/admin.php:456
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr ""
+
+#: ../../mod/admin.php:457
+msgid "Poll interval"
+msgstr ""
+
+#: ../../mod/admin.php:457
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr ""
+
+#: ../../mod/admin.php:458
+msgid "Maximum Load Average"
+msgstr ""
+
+#: ../../mod/admin.php:458
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr ""
+
+#: ../../mod/admin.php:472
+msgid "Update has been marked successful"
+msgstr ""
+
+#: ../../mod/admin.php:482
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr ""
+
+#: ../../mod/admin.php:485
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr ""
+
+#: ../../mod/admin.php:489
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr ""
+
+#: ../../mod/admin.php:492
+#, php-format
+msgid "Update function %s could not be found."
+msgstr ""
+
+#: ../../mod/admin.php:507
+msgid "No failed updates."
+msgstr ""
+
+#: ../../mod/admin.php:511
+msgid "Failed Updates"
+msgstr ""
+
+#: ../../mod/admin.php:512
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr ""
+
+#: ../../mod/admin.php:513
+msgid "Mark success (if update was manually applied)"
+msgstr ""
+
+#: ../../mod/admin.php:514
+msgid "Attempt to execute this update step automatically"
+msgstr ""
+
+#: ../../mod/admin.php:539
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:546
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/admin.php:585
+#, php-format
+msgid "User '%s' deleted"
+msgstr ""
+
+#: ../../mod/admin.php:593
+#, php-format
+msgid "User '%s' unblocked"
+msgstr ""
+
+#: ../../mod/admin.php:593
+#, php-format
+msgid "User '%s' blocked"
+msgstr ""
+
+#: ../../mod/admin.php:657
+msgid "select all"
+msgstr ""
+
+#: ../../mod/admin.php:658
+msgid "User registrations waiting for confirm"
+msgstr ""
+
+#: ../../mod/admin.php:659
+msgid "Request date"
+msgstr ""
+
+#: ../../mod/admin.php:659 ../../mod/admin.php:668 ../../mod/settings.php:557
+#: ../../mod/settings.php:583 ../../mod/crepair.php:148
+msgid "Name"
+msgstr ""
+
+#: ../../mod/admin.php:659 ../../mod/admin.php:668
+#: ../../include/contact_selectors.php:79
+msgid "Email"
+msgstr ""
+
+#: ../../mod/admin.php:660
+msgid "No registrations."
+msgstr ""
+
+#: ../../mod/admin.php:662
+msgid "Deny"
msgstr ""
-#: ../../mod/photos.php:1404 ../../mod/settings.php:618
-#: ../../mod/settings.php:699 ../../mod/group.php:168 ../../mod/admin.php:663
-#: ../../include/conversation.php:328 ../../include/conversation.php:609
+#: ../../mod/admin.php:663 ../../mod/photos.php:1404
+#: ../../mod/settings.php:618 ../../mod/settings.php:699
+#: ../../mod/group.php:168 ../../include/conversation.php:328
+#: ../../include/conversation.php:609
msgid "Delete"
msgstr ""
-#: ../../mod/photos.php:1494
-msgid "View Album"
+#: ../../mod/admin.php:664 ../../mod/contacts.php:310
+#: ../../mod/contacts.php:367
+msgid "Block"
msgstr ""
-#: ../../mod/photos.php:1503
-msgid "Recent Photos"
+#: ../../mod/admin.php:665 ../../mod/contacts.php:310
+#: ../../mod/contacts.php:367
+msgid "Unblock"
msgstr ""
-#: ../../mod/community.php:21
-msgid "Not available."
+#: ../../mod/admin.php:668
+msgid "Register date"
msgstr ""
-#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:133
-#: ../../include/nav.php:101
-msgid "Community"
+#: ../../mod/admin.php:668
+msgid "Last login"
msgstr ""
-#: ../../mod/community.php:61 ../../mod/search.php:144
-msgid "No results."
+#: ../../mod/admin.php:668
+msgid "Last item"
msgstr ""
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
+#: ../../mod/admin.php:668
+msgid "Account"
msgstr ""
-#: ../../mod/friendica.php:56
-msgid "running at web location"
+#: ../../mod/admin.php:670
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/friendica.php:58
+#: ../../mod/admin.php:671
msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
+#: ../../mod/admin.php:712
+#, php-format
+msgid "Plugin %s disabled."
msgstr ""
-#: ../../mod/friendica.php:61
+#: ../../mod/admin.php:716
+#, php-format
+msgid "Plugin %s enabled."
+msgstr ""
+
+#: ../../mod/admin.php:726 ../../mod/admin.php:924
+msgid "Disable"
+msgstr ""
+
+#: ../../mod/admin.php:728 ../../mod/admin.php:926
+msgid "Enable"
+msgstr ""
+
+#: ../../mod/admin.php:750 ../../mod/admin.php:955
+msgid "Toggle"
+msgstr ""
+
+#: ../../mod/admin.php:751 ../../mod/admin.php:956 ../../mod/settings.php:89
+#: ../../view/theme/diabook/theme.php:643
+#: ../../view/theme/diabook/theme.php:773 ../../addon/dav/layout.fnk.php:116
+#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:137
+msgid "Settings"
+msgstr ""
+
+#: ../../mod/admin.php:758 ../../mod/admin.php:965
+msgid "Author: "
+msgstr ""
+
+#: ../../mod/admin.php:759 ../../mod/admin.php:966
+msgid "Maintainer: "
+msgstr ""
+
+#: ../../mod/admin.php:888
+msgid "No themes found."
+msgstr ""
+
+#: ../../mod/admin.php:947
+msgid "Screenshot"
+msgstr ""
+
+#: ../../mod/admin.php:995
+msgid "[Experimental]"
+msgstr ""
+
+#: ../../mod/admin.php:996
+msgid "[Unsupported]"
+msgstr ""
+
+#: ../../mod/admin.php:1023
+msgid "Log settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:1079
+msgid "Clear"
+msgstr ""
+
+#: ../../mod/admin.php:1085
+msgid "Debugging"
+msgstr ""
+
+#: ../../mod/admin.php:1086
+msgid "Log file"
+msgstr ""
+
+#: ../../mod/admin.php:1086
msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
msgstr ""
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
+#: ../../mod/admin.php:1087
+msgid "Log level"
msgstr ""
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
+#: ../../mod/admin.php:1136 ../../mod/contacts.php:364
+msgid "Update now"
+msgstr ""
+
+#: ../../mod/admin.php:1137
+msgid "Close"
+msgstr ""
+
+#: ../../mod/admin.php:1143
+msgid "FTP Host"
+msgstr ""
+
+#: ../../mod/admin.php:1144
+msgid "FTP Path"
+msgstr ""
+
+#: ../../mod/admin.php:1145
+msgid "FTP User"
+msgstr ""
+
+#: ../../mod/admin.php:1146
+msgid "FTP Password"
+msgstr ""
+
+#: ../../mod/message.php:9 ../../include/nav.php:131
+msgid "New Message"
+msgstr ""
+
+#: ../../mod/message.php:66 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr ""
+
+#: ../../mod/message.php:70
+msgid "Unable to locate contact information."
+msgstr ""
+
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr ""
+
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr ""
+
+#: ../../mod/message.php:79 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr ""
+
+#: ../../mod/message.php:120
+msgid "Message deleted."
+msgstr ""
+
+#: ../../mod/message.php:150
+msgid "Conversation removed."
+msgstr ""
+
+#: ../../mod/message.php:172 ../../mod/wallmessage.php:124
+#: ../../include/conversation.php:943
+msgid "Please enter a link URL:"
+msgstr ""
+
+#: ../../mod/message.php:200 ../../mod/wallmessage.php:131
+msgid "Send Private Message"
+msgstr ""
+
+#: ../../mod/message.php:201 ../../mod/message.php:399
+#: ../../mod/wallmessage.php:133
+msgid "To:"
+msgstr ""
+
+#: ../../mod/message.php:206 ../../mod/message.php:401
+#: ../../mod/wallmessage.php:134
+msgid "Subject:"
+msgstr ""
+
+#: ../../mod/message.php:210 ../../mod/message.php:404
+#: ../../mod/wallmessage.php:140 ../../mod/invite.php:113
+msgid "Your message:"
+msgstr ""
+
+#: ../../mod/message.php:213 ../../mod/message.php:408
+#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
+#: ../../include/conversation.php:990
+msgid "Upload photo"
+msgstr ""
+
+#: ../../mod/message.php:214 ../../mod/message.php:409
+#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
+#: ../../include/conversation.php:994
+msgid "Insert web link"
+msgstr ""
+
+#: ../../mod/message.php:215 ../../mod/message.php:410
+#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:145
+#: ../../mod/photos.php:1287 ../../include/conversation.php:371
+#: ../../include/conversation.php:731 ../../include/conversation.php:1008
+msgid "Please wait"
+msgstr ""
+
+#: ../../mod/message.php:247
+msgid "No messages."
+msgstr ""
+
+#: ../../mod/message.php:254
+#, php-format
+msgid "Unknown sender - %s"
+msgstr ""
+
+#: ../../mod/message.php:257
+#, php-format
+msgid "You and %s"
+msgstr ""
+
+#: ../../mod/message.php:260
+#, php-format
+msgid "%s and You"
+msgstr ""
+
+#: ../../mod/message.php:270 ../../mod/message.php:392
+msgid "Delete conversation"
+msgstr ""
+
+#: ../../mod/message.php:273
+msgid "D, d M Y - g:i A"
+msgstr ""
+
+#: ../../mod/message.php:275
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/message.php:310
+msgid "Message not available."
+msgstr ""
+
+#: ../../mod/message.php:375
+msgid "Delete message"
+msgstr ""
+
+#: ../../mod/message.php:394
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr ""
+
+#: ../../mod/message.php:398
+msgid "Send Reply"
msgstr ""
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
@@ -643,22 +1364,10 @@ msgstr ""
msgid "Edit"
msgstr ""
-#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
-#: ../../mod/message.php:213 ../../mod/message.php:408
-#: ../../include/conversation.php:990
-msgid "Upload photo"
-msgstr ""
-
#: ../../mod/editpost.php:97 ../../include/conversation.php:992
msgid "Attach file"
msgstr ""
-#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
-#: ../../mod/message.php:214 ../../mod/message.php:409
-#: ../../include/conversation.php:994
-msgid "Insert web link"
-msgstr ""
-
#: ../../mod/editpost.php:99
msgid "Insert YouTube video"
msgstr ""
@@ -703,699 +1412,694 @@ msgstr ""
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
+#: ../../mod/editpost.php:125 ../../mod/photos.php:1307
+#: ../../include/conversation.php:589 ../../include/conversation.php:1026
+msgid "Preview"
msgstr ""
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
-msgid "Profile location is not valid or does not contain profile information."
+#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:21
+#: ../../mod/profiles.php:395 ../../mod/profiles.php:509
+msgid "Profile not found."
msgstr ""
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
-msgid "Warning: profile location has no identifiable owner name."
+#: ../../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_request.php:125 ../../mod/dfrn_request.php:519
-msgid "Warning: profile location has no profile photo."
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
msgstr ""
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
-#, 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."
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
msgstr ""
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
msgstr ""
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
msgstr ""
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
msgstr ""
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
msgstr ""
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
msgstr ""
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:510
+#: ../../include/conversation.php:101
+#, php-format
+msgid "%1$s is now friends with %2$s"
msgstr ""
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
msgstr ""
-#: ../../mod/dfrn_request.php:361
-msgid "This account has not been configured for email. Request failed."
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
msgstr ""
-#: ../../mod/dfrn_request.php:457
-msgid "Unable to resolve your name at the provided location."
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr ""
-#: ../../mod/dfrn_request.php:470
-msgid "You have already introduced yourself here."
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
msgstr ""
-#: ../../mod/dfrn_request.php:474
+#: ../../mod/dfrn_confirm.php:618
#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:495
-msgid "Invalid profile URL."
-msgstr ""
-
-#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
-msgid "Disallowed profile URL."
+msgid "Site public key not available in contact record for URL %s."
msgstr ""
-#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:122
-msgid "Failed to update contact record."
+#: ../../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_request.php:591
-msgid "Your introduction has been sent."
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
msgstr ""
-#: ../../mod/dfrn_request.php:644
-msgid "Please login to confirm introduction."
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
msgstr ""
-#: ../../mod/dfrn_request.php:658
-msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+#: ../../mod/dfrn_confirm.php:750
+#, php-format
+msgid "Connection accepted at %s"
msgstr ""
-#: ../../mod/dfrn_request.php:669
-msgid "Hide this contact"
+#: ../../mod/dfrn_confirm.php:752 ../../mod/register.php:90
+#: ../../mod/register.php:144 ../../mod/lostpass.php:45
+#: ../../mod/lostpass.php:107 ../../mod/regmod.php:54 ../../boot.php:703
+#: ../../addon/testdrive/testdrive.php:67
+#: ../../addon/facebook/facebook.php:688
+#: ../../addon/facebook/facebook.php:1178
+#: ../../addon/public_server/public_server.php:62 ../../include/items.php:2792
+msgid "Administrator"
msgstr ""
-#: ../../mod/dfrn_request.php:672
+#: ../../mod/dfrn_confirm.php:799
#, php-format
-msgid "Welcome home %s."
+msgid "%1$s has joined %2$s"
msgstr ""
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: ../../mod/events.php:65
+msgid "Event description and start time are required."
msgstr ""
-#: ../../mod/dfrn_request.php:674
-msgid "Confirm"
+#: ../../mod/events.php:258
+msgid "l, F j"
msgstr ""
-#: ../../mod/dfrn_request.php:715 ../../include/items.php:2783
-msgid "[Name Withheld]"
+#: ../../mod/events.php:280
+msgid "Edit event"
msgstr ""
-#: ../../mod/dfrn_request.php:808
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+#: ../../mod/events.php:300 ../../include/text.php:1065
+msgid "link to source"
msgstr ""
-#: ../../mod/dfrn_request.php:824
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+#: ../../mod/events.php:324 ../../view/theme/diabook/theme.php:131
+#: ../../boot.php:1529 ../../include/nav.php:52
+msgid "Events"
msgstr ""
-#: ../../mod/dfrn_request.php:826
-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>."
+#: ../../mod/events.php:325
+msgid "Create New Event"
msgstr ""
-#: ../../mod/dfrn_request.php:829
-msgid "Friend/Connection Request"
+#: ../../mod/events.php:326 ../../addon/dav/layout.fnk.php:154
+msgid "Previous"
msgstr ""
-#: ../../mod/dfrn_request.php:830
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+#: ../../mod/events.php:327 ../../mod/install.php:205
+#: ../../addon/dav/layout.fnk.php:157
+msgid "Next"
msgstr ""
-#: ../../mod/dfrn_request.php:831
-msgid "Please answer the following:"
+#: ../../mod/events.php:399
+msgid "hour:minute"
msgstr ""
-#: ../../mod/dfrn_request.php:832
-#, php-format
-msgid "Does %s know you?"
+#: ../../mod/events.php:408
+msgid "Event details"
msgstr ""
-#: ../../mod/dfrn_request.php:835
-msgid "Add a personal note:"
+#: ../../mod/events.php:409
+#, php-format
+msgid "Format is %s %s. Starting date and Description are required."
msgstr ""
-#: ../../mod/dfrn_request.php:837 ../../include/contact_selectors.php:76
-msgid "Friendica"
+#: ../../mod/events.php:411
+msgid "Event Starts:"
msgstr ""
-#: ../../mod/dfrn_request.php:838
-msgid "StatusNet/Federated Social Web"
+#: ../../mod/events.php:414
+msgid "Finish date/time is not known or not relevant"
msgstr ""
-#: ../../mod/dfrn_request.php:839 ../../mod/settings.php:652
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
+#: ../../mod/events.php:416
+msgid "Event Finishes:"
msgstr ""
-#: ../../mod/dfrn_request.php:840
-#, php-format
-msgid ""
-" - please do not use this form. Instead, enter %s into your Diaspora search "
-"bar."
+#: ../../mod/events.php:419
+msgid "Adjust for viewer timezone"
msgstr ""
-#: ../../mod/dfrn_request.php:841
-msgid "Your Identity Address:"
+#: ../../mod/events.php:421
+msgid "Description:"
msgstr ""
-#: ../../mod/dfrn_request.php:844
-msgid "Submit Request"
+#: ../../mod/events.php:423 ../../boot.php:1109 ../../include/event.php:37
+#: ../../include/bb2diaspora.php:265
+msgid "Location:"
msgstr ""
-#: ../../mod/install.php:117
-msgid "Friendica Social Communications Server - Setup"
+#: ../../mod/events.php:425
+msgid "Share this event"
msgstr ""
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
+#: ../../boot.php:1520 ../../include/nav.php:51
+msgid "Photos"
msgstr ""
-#: ../../mod/install.php:127
-msgid "Could not create table."
+#: ../../mod/fbrowser.php:96
+msgid "Files"
msgstr ""
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
+#: ../../mod/home.php:26 ../../addon/communityhome/communityhome.php:179
+#, php-format
+msgid "Welcome to %s"
msgstr ""
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+#: ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
msgstr ""
-#: ../../mod/install.php:139 ../../mod/install.php:204
-#: ../../mod/install.php:489
-msgid "Please see the file \"INSTALL.txt\"."
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
msgstr ""
-#: ../../mod/install.php:201
-msgid "System check"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr ""
-#: ../../mod/install.php:206
-msgid "Check again"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
msgstr ""
-#: ../../mod/install.php:225
-msgid "Database connection"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
msgstr ""
-#: ../../mod/install.php:226
+#: ../../mod/wallmessage.php:132
+#, php-format
msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
msgstr ""
-#: ../../mod/install.php:227
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:351
+#: ../../mod/contacts.php:542 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
msgstr ""
-#: ../../mod/install.php:228
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:543
+msgid "Edit contact"
msgstr ""
-#: ../../mod/install.php:232
-msgid "Database Server Name"
+#: ../../mod/nogroup.php:58
+msgid "Contacts who are not members of a group"
msgstr ""
-#: ../../mod/install.php:233
-msgid "Database Login Name"
+#: ../../mod/friendica.php:55
+msgid "This is Friendica, version"
msgstr ""
-#: ../../mod/install.php:234
-msgid "Database Login Password"
+#: ../../mod/friendica.php:56
+msgid "running at web location"
msgstr ""
-#: ../../mod/install.php:235
-msgid "Database Name"
+#: ../../mod/friendica.php:58
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
msgstr ""
-#: ../../mod/install.php:236 ../../mod/install.php:275
-msgid "Site administrator email address"
+#: ../../mod/friendica.php:60
+msgid "Bug reports and issues: please visit"
msgstr ""
-#: ../../mod/install.php:236 ../../mod/install.php:275
+#: ../../mod/friendica.php:61
msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
msgstr ""
-#: ../../mod/install.php:240 ../../mod/install.php:278
-msgid "Please select a default timezone for your website"
+#: ../../mod/friendica.php:75
+msgid "Installed plugins/addons/apps:"
msgstr ""
-#: ../../mod/install.php:265
-msgid "Site settings"
+#: ../../mod/friendica.php:88
+msgid "No installed plugins/addons/apps"
msgstr ""
-#: ../../mod/install.php:318
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
msgstr ""
-#: ../../mod/install.php:319
+#: ../../mod/removeme.php:46
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>"
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
msgstr ""
-#: ../../mod/install.php:323
-msgid "PHP executable path"
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
msgstr ""
-#: ../../mod/install.php:323
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: ../../mod/wall_upload.php:77 ../../mod/profile_photo.php:117
+#, php-format
+msgid "Image exceeds size limit of %d"
msgstr ""
-#: ../../mod/install.php:328
-msgid "Command line PHP"
+#: ../../mod/wall_upload.php:86 ../../mod/photos.php:714
+#: ../../mod/profile_photo.php:126
+msgid "Unable to process image."
msgstr ""
-#: ../../mod/install.php:337
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: ../../mod/wall_upload.php:102 ../../mod/wall_upload.php:111
+#: ../../mod/wall_upload.php:118 ../../mod/item.php:379
+#: ../../include/message.php:144
+msgid "Wall Photos"
msgstr ""
-#: ../../mod/install.php:338
-msgid "This is required for message delivery to work."
+#: ../../mod/wall_upload.php:105 ../../mod/photos.php:734
+#: ../../mod/profile_photo.php:259
+msgid "Image upload failed."
msgstr ""
-#: ../../mod/install.php:340
-msgid "PHP register_argc_argv"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
msgstr ""
-#: ../../mod/install.php:361
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
msgstr ""
-#: ../../mod/install.php:362
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr ""
+
+#: ../../mod/api.php:104
msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
msgstr ""
-#: ../../mod/install.php:364
-msgid "Generate encryption keys"
+#: ../../mod/tagger.php:103 ../../include/conversation.php:138
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
-#: ../../mod/install.php:371
-msgid "libCurl PHP module"
+#: ../../mod/photos.php:44 ../../boot.php:1523
+msgid "Photo Albums"
msgstr ""
-#: ../../mod/install.php:372
-msgid "GD graphics PHP module"
+#: ../../mod/photos.php:52 ../../mod/photos.php:154 ../../mod/photos.php:942
+#: ../../mod/photos.php:1013 ../../mod/photos.php:1028
+#: ../../mod/photos.php:1455 ../../mod/photos.php:1467
+#: ../../view/theme/diabook/theme.php:598
+#: ../../addon/communityhome/communityhome.php:110
+msgid "Contact Photos"
msgstr ""
-#: ../../mod/install.php:373
-msgid "OpenSSL PHP module"
+#: ../../mod/photos.php:59 ../../mod/photos.php:1038 ../../mod/photos.php:1505
+msgid "Upload New Photos"
msgstr ""
-#: ../../mod/install.php:374
-msgid "mysqli PHP module"
+#: ../../mod/photos.php:70 ../../mod/settings.php:21
+msgid "everybody"
msgstr ""
-#: ../../mod/install.php:375
-msgid "mb_string PHP module"
+#: ../../mod/photos.php:143
+msgid "Contact information unavailable"
msgstr ""
-#: ../../mod/install.php:380 ../../mod/install.php:382
-msgid "Apache mod_rewrite module"
+#: ../../mod/photos.php:154 ../../mod/photos.php:656 ../../mod/photos.php:1013
+#: ../../mod/photos.php:1028 ../../mod/profile_photo.php:60
+#: ../../mod/profile_photo.php:67 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:176 ../../mod/profile_photo.php:254
+#: ../../mod/profile_photo.php:263 ../../view/theme/diabook/theme.php:599
+#: ../../addon/communityhome/communityhome.php:111 ../../include/user.php:298
+#: ../../include/user.php:305 ../../include/user.php:312
+msgid "Profile Photos"
msgstr ""
-#: ../../mod/install.php:380
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: ../../mod/photos.php:164
+msgid "Album not found."
msgstr ""
-#: ../../mod/install.php:388
-msgid "Error: libCURL PHP module required but not installed."
+#: ../../mod/photos.php:182 ../../mod/photos.php:1022
+msgid "Delete Album"
msgstr ""
-#: ../../mod/install.php:392
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: ../../mod/photos.php:245 ../../mod/photos.php:1267
+msgid "Delete Photo"
msgstr ""
-#: ../../mod/install.php:396
-msgid "Error: openssl PHP module required but not installed."
+#: ../../mod/photos.php:587
+msgid "was tagged in a"
msgstr ""
-#: ../../mod/install.php:400
-msgid "Error: mysqli PHP module required but not installed."
+#: ../../mod/photos.php:587
+msgid "by"
msgstr ""
-#: ../../mod/install.php:404
-msgid "Error: mb_string PHP module required but not installed."
+#: ../../mod/photos.php:692 ../../addon/js_upload/js_upload.php:315
+msgid "Image exceeds size limit of "
msgstr ""
-#: ../../mod/install.php:421
-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."
+#: ../../mod/photos.php:700
+msgid "Image file is empty."
msgstr ""
-#: ../../mod/install.php:422
-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."
+#: ../../mod/photos.php:830
+msgid "No photos selected"
msgstr ""
-#: ../../mod/install.php:423
-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."
+#: ../../mod/photos.php:909
+msgid "Access to this item is restricted."
msgstr ""
-#: ../../mod/install.php:424
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
+#: ../../mod/photos.php:970
+msgid "Upload Photos"
msgstr ""
-#: ../../mod/install.php:427
-msgid ".htconfig.php is writable"
+#: ../../mod/photos.php:973 ../../mod/photos.php:1017
+msgid "New album name: "
msgstr ""
-#: ../../mod/install.php:439
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: ../../mod/photos.php:974
+msgid "or existing album name: "
msgstr ""
-#: ../../mod/install.php:441
-msgid "Url rewrite is working"
+#: ../../mod/photos.php:975
+msgid "Do not show a status post for this upload"
msgstr ""
-#: ../../mod/install.php:451
-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."
+#: ../../mod/photos.php:977 ../../mod/photos.php:1262
+msgid "Permissions"
msgstr ""
-#: ../../mod/install.php:476
-msgid "Errors encountered creating database tables."
+#: ../../mod/photos.php:1032
+msgid "Edit Album"
msgstr ""
-#: ../../mod/install.php:487
-msgid "<h1>What next</h1>"
+#: ../../mod/photos.php:1056 ../../mod/photos.php:1488
+msgid "View Photo"
msgstr ""
-#: ../../mod/install.php:488
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: ../../mod/photos.php:1091
+msgid "Permission denied. Access to this item may be restricted."
msgstr ""
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:243
-msgid "l F d, Y \\@ g:i A"
+#: ../../mod/photos.php:1093
+msgid "Photo not available"
msgstr ""
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
+#: ../../mod/photos.php:1143
+msgid "View photo"
msgstr ""
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendika provides this service for sharing events with other networks and "
-"friends in unknown timezones."
+#: ../../mod/photos.php:1143
+msgid "Edit photo"
msgstr ""
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
+#: ../../mod/photos.php:1144
+msgid "Use as profile photo"
msgstr ""
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
+#: ../../mod/photos.php:1150 ../../include/conversation.php:490
+msgid "Private Message"
msgstr ""
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
+#: ../../mod/photos.php:1172
+msgid "View Full Size"
msgstr ""
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
+#: ../../mod/photos.php:1240
+msgid "Tags: "
msgstr ""
-#: ../../mod/match.php:12
-msgid "Profile Match"
+#: ../../mod/photos.php:1243
+msgid "[Remove any tag]"
msgstr ""
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
+#: ../../mod/photos.php:1253
+msgid "Rotate CW"
msgstr ""
-#: ../../mod/match.php:57
-msgid "is interested in:"
+#: ../../mod/photos.php:1255
+msgid "New album name"
msgstr ""
-#: ../../mod/match.php:58 ../../mod/suggest.php:59
-#: ../../include/contact_widgets.php:9 ../../boot.php:1053
-msgid "Connect"
+#: ../../mod/photos.php:1258
+msgid "Caption"
msgstr ""
-#: ../../mod/match.php:65 ../../mod/dirfind.php:60
-msgid "No matches"
+#: ../../mod/photos.php:1260
+msgid "Add a Tag"
msgstr ""
-#: ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
+#: ../../mod/photos.php:1264
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
+#: ../../mod/photos.php:1284 ../../include/conversation.php:554
+msgid "I like this (toggle)"
msgstr ""
-#: ../../mod/home.php:26 ../../addon/communityhome/communityhome.php:179
-#, php-format
-msgid "Welcome to %s"
+#: ../../mod/photos.php:1285 ../../include/conversation.php:555
+msgid "I don't like this (toggle)"
msgstr ""
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
+#: ../../mod/photos.php:1286 ../../include/conversation.php:989
+msgid "Share"
msgstr ""
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:207
-msgid "Discard"
+#: ../../mod/photos.php:1303 ../../mod/photos.php:1343
+#: ../../mod/photos.php:1374 ../../include/conversation.php:577
+msgid "This is you"
msgstr ""
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:160
-#: ../../mod/notifications.php:206 ../../mod/contacts.php:316
-#: ../../mod/contacts.php:368
-msgid "Ignore"
+#: ../../mod/photos.php:1305 ../../mod/photos.php:1345
+#: ../../mod/photos.php:1376 ../../boot.php:523
+#: ../../include/conversation.php:579
+msgid "Comment"
msgstr ""
-#: ../../mod/notifications.php:75
-msgid "System"
+#: ../../mod/photos.php:1494
+msgid "View Album"
msgstr ""
-#: ../../mod/notifications.php:80 ../../include/nav.php:113
-msgid "Network"
+#: ../../mod/photos.php:1503
+msgid "Recent Photos"
msgstr ""
-#: ../../mod/notifications.php:85 ../../mod/network.php:266
-msgid "Personal"
+#: ../../mod/hcard.php:10
+msgid "No profile"
msgstr ""
-#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127
-#: ../../include/nav.php:77 ../../include/nav.php:115
-msgid "Home"
+#: ../../mod/register.php:88 ../../mod/regmod.php:52
+#, php-format
+msgid "Registration details for %s"
msgstr ""
-#: ../../mod/notifications.php:95 ../../include/nav.php:121
-msgid "Introductions"
+#: ../../mod/register.php:96
+msgid ""
+"Registration successful. Please check your email for further instructions."
msgstr ""
-#: ../../mod/notifications.php:100 ../../mod/message.php:105
-#: ../../include/nav.php:128
-msgid "Messages"
+#: ../../mod/register.php:100
+msgid "Failed to send email message. Here is the message that failed."
msgstr ""
-#: ../../mod/notifications.php:119
-msgid "Show Ignored Requests"
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
msgstr ""
-#: ../../mod/notifications.php:119
-msgid "Hide Ignored Requests"
+#: ../../mod/register.php:142
+#, php-format
+msgid "Registration request at %s"
msgstr ""
-#: ../../mod/notifications.php:145 ../../mod/notifications.php:191
-msgid "Notification type: "
+#: ../../mod/register.php:151
+msgid "Your registration is pending approval by the site owner."
msgstr ""
-#: ../../mod/notifications.php:146
-msgid "Friend Suggestion"
+#: ../../mod/register.php:189
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
msgstr ""
-#: ../../mod/notifications.php:148
-#, php-format
-msgid "suggested by %s"
+#: ../../mod/register.php:215
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
msgstr ""
-#: ../../mod/notifications.php:153 ../../mod/notifications.php:200
-#: ../../mod/contacts.php:374
-msgid "Hide this contact from others"
+#: ../../mod/register.php:216
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
msgstr ""
-#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
-msgid "Post a new friend activity"
+#: ../../mod/register.php:217
+msgid "Your OpenID (optional): "
msgstr ""
-#: ../../mod/notifications.php:154 ../../mod/notifications.php:201
-msgid "if applicable"
+#: ../../mod/register.php:231
+msgid "Include your profile in member directory?"
msgstr ""
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/admin.php:661
-msgid "Approve"
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
msgstr ""
-#: ../../mod/notifications.php:177
-msgid "Claims to be known to you: "
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
msgstr ""
-#: ../../mod/notifications.php:177
-msgid "yes"
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
msgstr ""
-#: ../../mod/notifications.php:177
-msgid "no"
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
msgstr ""
-#: ../../mod/notifications.php:184
-msgid "Approve as: "
+#: ../../mod/register.php:265
+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/notifications.php:185
-msgid "Friend"
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
msgstr ""
-#: ../../mod/notifications.php:186
-msgid "Sharer"
+#: ../../mod/register.php:269 ../../boot.php:801 ../../include/nav.php:81
+msgid "Register"
msgstr ""
-#: ../../mod/notifications.php:186
-msgid "Fan/Admirer"
+#: ../../mod/lostpass.php:16
+msgid "No valid account found."
msgstr ""
-#: ../../mod/notifications.php:192
-msgid "Friend/Connect Request"
+#: ../../mod/lostpass.php:32
+msgid "Password reset request issued. Check your email."
msgstr ""
-#: ../../mod/notifications.php:192
-msgid "New Follower"
+#: ../../mod/lostpass.php:43
+#, php-format
+msgid "Password reset requested at %s"
msgstr ""
-#: ../../mod/notifications.php:213
-msgid "No introductions."
+#: ../../mod/lostpass.php:65
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
msgstr ""
-#: ../../mod/notifications.php:216 ../../include/nav.php:122
-msgid "Notifications"
+#: ../../mod/lostpass.php:83 ../../boot.php:835
+msgid "Password Reset"
msgstr ""
-#: ../../mod/notifications.php:253 ../../mod/notifications.php:378
-#: ../../mod/notifications.php:465
-#, php-format
-msgid "%s liked %s's post"
+#: ../../mod/lostpass.php:84
+msgid "Your password has been reset as requested."
msgstr ""
-#: ../../mod/notifications.php:262 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:474
-#, php-format
-msgid "%s disliked %s's post"
+#: ../../mod/lostpass.php:85
+msgid "Your new password is"
msgstr ""
-#: ../../mod/notifications.php:276 ../../mod/notifications.php:401
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s is now friends with %s"
+#: ../../mod/lostpass.php:86
+msgid "Save or copy your new password - and then"
msgstr ""
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:408
-#, php-format
-msgid "%s created a new post"
+#: ../../mod/lostpass.php:87
+msgid "click here to login"
msgstr ""
-#: ../../mod/notifications.php:284 ../../mod/notifications.php:409
-#: ../../mod/notifications.php:497
-#, php-format
-msgid "%s commented on %s's post"
+#: ../../mod/lostpass.php:88
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
msgstr ""
-#: ../../mod/notifications.php:298
-msgid "No more network notifications."
+#: ../../mod/lostpass.php:119
+msgid "Forgot your Password?"
msgstr ""
-#: ../../mod/notifications.php:302
-msgid "Network Notifications"
+#: ../../mod/lostpass.php:120
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
msgstr ""
-#: ../../mod/notifications.php:328 ../../mod/notify.php:61
-msgid "No more system notifications."
+#: ../../mod/lostpass.php:121
+msgid "Nickname or Email: "
msgstr ""
-#: ../../mod/notifications.php:332 ../../mod/notify.php:65
-msgid "System Notifications"
+#: ../../mod/lostpass.php:122
+msgid "Reset"
msgstr ""
-#: ../../mod/notifications.php:423
-msgid "No more personal notifications."
+#: ../../mod/attach.php:8
+msgid "Item not available."
msgstr ""
-#: ../../mod/notifications.php:427
-msgid "Personal Notifications"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
msgstr ""
-#: ../../mod/notifications.php:504
-msgid "No more home notifications."
+#: ../../mod/apps.php:4
+msgid "Applications"
msgstr ""
-#: ../../mod/notifications.php:508
-msgid "Home Notifications"
+#: ../../mod/apps.php:7
+msgid "No installed applications."
+msgstr ""
+
+#: ../../mod/help.php:30
+msgid "Help:"
+msgstr ""
+
+#: ../../mod/help.php:34 ../../addon/dav/layout.fnk.php:116
+#: ../../include/nav.php:86
+msgid "Help"
msgstr ""
#: ../../mod/contacts.php:83 ../../mod/contacts.php:163
@@ -1489,16 +2193,6 @@ msgstr[1] ""
msgid "View all contacts"
msgstr ""
-#: ../../mod/contacts.php:310 ../../mod/contacts.php:367
-#: ../../mod/admin.php:665
-msgid "Unblock"
-msgstr ""
-
-#: ../../mod/contacts.php:310 ../../mod/contacts.php:367
-#: ../../mod/admin.php:664
-msgid "Block"
-msgstr ""
-
#: ../../mod/contacts.php:313
msgid "Toggle Blocked status"
msgstr ""
@@ -1554,12 +2248,6 @@ msgstr ""
msgid "Edit contact notes"
msgstr ""
-#: ../../mod/contacts.php:351 ../../mod/contacts.php:542
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr ""
-
#: ../../mod/contacts.php:352
msgid "Block/Unblock contact"
msgstr ""
@@ -1588,10 +2276,6 @@ msgstr ""
msgid "Update public posts"
msgstr ""
-#: ../../mod/contacts.php:364 ../../mod/admin.php:1136
-msgid "Update now"
-msgstr ""
-
#: ../../mod/contacts.php:371
msgid "Currently blocked"
msgstr ""
@@ -1677,10 +2361,6 @@ msgstr ""
msgid "you are a fan of"
msgstr ""
-#: ../../mod/contacts.php:543 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr ""
-
#: ../../mod/contacts.php:564 ../../view/theme/diabook/theme.php:129
#: ../../include/nav.php:139
msgid "Contacts"
@@ -1699,78 +2379,256 @@ msgstr ""
msgid "Find"
msgstr ""
-#: ../../mod/lostpass.php:16
-msgid "No valid account found."
+#: ../../mod/common.php:42
+msgid "Common Friends"
msgstr ""
-#: ../../mod/lostpass.php:32
-msgid "Password reset request issued. Check your email."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
msgstr ""
-#: ../../mod/lostpass.php:43
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr ""
+
+#: ../../mod/allfriends.php:34
#, php-format
-msgid "Password reset requested at %s"
+msgid "Friends of %s"
msgstr ""
-#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
-#: ../../mod/register.php:90 ../../mod/register.php:144
-#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
-#: ../../addon/facebook/facebook.php:688
-#: ../../addon/facebook/facebook.php:1178
-#: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:2792
-#: ../../boot.php:703
-msgid "Administrator"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
msgstr ""
-#: ../../mod/lostpass.php:65
+#: ../../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
+msgid "Remove"
+msgstr ""
+
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr ""
+
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr ""
+
+#: ../../mod/newmember.php:12
msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+"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 ""
-#: ../../mod/lostpass.php:83 ../../boot.php:835
-msgid "Password Reset"
+#: ../../mod/newmember.php:16
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, connect to Facebook, make some new connections, "
+"and find some groups to join."
msgstr ""
-#: ../../mod/lostpass.php:84
-msgid "Your password has been reset as requested."
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Settings</em> page - change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
msgstr ""
-#: ../../mod/lostpass.php:85
-msgid "Your new password is"
+#: ../../mod/newmember.php:20
+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 ""
-#: ../../mod/lostpass.php:86
-msgid "Save or copy your new password - and then"
+#: ../../mod/newmember.php:22
+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 ""
-#: ../../mod/lostpass.php:87
-msgid "click here to login"
+#: ../../mod/newmember.php:25
+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/lostpass.php:88
+#: ../../mod/newmember.php:27
msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
msgstr ""
-#: ../../mod/lostpass.php:119
-msgid "Forgot your Password?"
+#: ../../mod/newmember.php:32
+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/lostpass.php:120
+#: ../../mod/newmember.php:34
msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+"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/lostpass.php:121
-msgid "Nickname or Email: "
+#: ../../mod/newmember.php:36
+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/lostpass.php:122
-msgid "Reset"
+#: ../../mod/newmember.php:38
+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:40
+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:42
+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:44
+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:46
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program "
+"features and resources."
+msgstr ""
+
+#: ../../mod/search.php:13 ../../mod/network.php:131
+msgid "Saved Searches"
+msgstr ""
+
+#: ../../mod/search.php:16 ../../mod/network.php:122
+msgid "Remove term"
+msgstr ""
+
+#: ../../mod/search.php:83 ../../include/text.php:649
+#: ../../include/text.php:650 ../../include/nav.php:91
+msgid "Search"
+msgstr ""
+
+#: ../../mod/search.php:144 ../../mod/community.php:61
+msgid "No results."
+msgstr ""
+
+#: ../../mod/invite.php:35
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr ""
+
+#: ../../mod/invite.php:59
+msgid "Please join us on Friendica"
+msgstr ""
+
+#: ../../mod/invite.php:69
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr ""
+
+#: ../../mod/invite.php:73
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/invite.php:92
+msgid "You have no more invitations available"
+msgstr ""
+
+#: ../../mod/invite.php:100
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many "
+"other social networks."
+msgstr ""
+
+#: ../../mod/invite.php:102
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr ""
+
+#: ../../mod/invite.php:103
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr ""
+
+#: ../../mod/invite.php:106
+msgid ""
+"Our apologies. This system is not currently configured to connect with other "
+"public sites or invite members."
+msgstr ""
+
+#: ../../mod/invite.php:111
+msgid "Send invitations"
+msgstr ""
+
+#: ../../mod/invite.php:112
+msgid "Enter email addresses, one per line:"
+msgstr ""
+
+#: ../../mod/invite.php:114
+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:116
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr ""
+
+#: ../../mod/invite.php:116
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr ""
+
+#: ../../mod/invite.php:118
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
msgstr ""
#: ../../mod/settings.php:50 ../../include/nav.php:137
@@ -1801,13 +2659,6 @@ msgstr ""
msgid "Remove account"
msgstr ""
-#: ../../mod/settings.php:89 ../../mod/admin.php:751 ../../mod/admin.php:956
-#: ../../addon/dav/layout.fnk.php:116 ../../addon/mathjax/mathjax.php:36
-#: ../../view/theme/diabook/theme.php:643
-#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137
-msgid "Settings"
-msgstr ""
-
#: ../../mod/settings.php:133
msgid "Missing some important data!"
msgstr ""
@@ -1864,11 +2715,11 @@ msgstr ""
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
-#: ../../mod/settings.php:484 ../../addon/facebook/facebook.php:488
-#: ../../addon/impressum/impressum.php:77
+#: ../../mod/settings.php:484 ../../addon/piwik/piwik.php:105
+#: ../../addon/mathjax/mathjax.php:66 ../../addon/twitter/twitter.php:376
+#: ../../addon/facebook/facebook.php:488
#: ../../addon/openstreetmap/openstreetmap.php:80
-#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
-#: ../../addon/twitter/twitter.php:376
+#: ../../addon/impressum/impressum.php:77
msgid "Settings updated."
msgstr ""
@@ -2294,573 +3145,554 @@ msgstr ""
msgid "Change the behaviour of this account for special situations"
msgstr ""
-#: ../../mod/manage.php:90
-msgid "Manage Identities and/or Pages"
+#: ../../mod/display.php:135
+msgid "Item has been removed."
msgstr ""
-#: ../../mod/manage.php:93
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
msgstr ""
-#: ../../mod/manage.php:95
-msgid "Select an identity to manage: "
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
msgstr ""
-#: ../../mod/network.php:67
-msgid "Search Results For:"
+#: ../../mod/profiles.php:31
+msgid "Profile Name is required."
msgstr ""
-#: ../../mod/network.php:106 ../../mod/search.php:16
-msgid "Remove term"
+#: ../../mod/profiles.php:152
+msgid "Marital Status"
msgstr ""
-#: ../../mod/network.php:115 ../../mod/search.php:13
-msgid "Saved Searches"
+#: ../../mod/profiles.php:156
+msgid "Romantic Partner"
msgstr ""
-#: ../../mod/network.php:116 ../../include/group.php:244
-msgid "add"
+#: ../../mod/profiles.php:160
+msgid "Work/Employment"
msgstr ""
-#: ../../mod/network.php:253
-msgid "Commented Order"
+#: ../../mod/profiles.php:163
+msgid "Religion"
msgstr ""
-#: ../../mod/network.php:256
-msgid "Sort by Comment Date"
+#: ../../mod/profiles.php:167
+msgid "Political Views"
msgstr ""
-#: ../../mod/network.php:259
-msgid "Posted Order"
+#: ../../mod/profiles.php:171
+msgid "Gender"
msgstr ""
-#: ../../mod/network.php:262
-msgid "Sort by Post Date"
+#: ../../mod/profiles.php:175
+msgid "Sexual Preference"
msgstr ""
-#: ../../mod/network.php:269
-msgid "Posts that mention or involve you"
+#: ../../mod/profiles.php:179
+msgid "Homepage"
msgstr ""
-#: ../../mod/network.php:272
-msgid "New"
+#: ../../mod/profiles.php:183
+msgid "Interests"
msgstr ""
-#: ../../mod/network.php:275
-msgid "Activity Stream - by date"
+#: ../../mod/profiles.php:187
+msgid "Address"
msgstr ""
-#: ../../mod/network.php:278
-msgid "Starred"
+#: ../../mod/profiles.php:194 ../../addon/dav/layout.fnk.php:310
+msgid "Location"
msgstr ""
-#: ../../mod/network.php:281
-msgid "Favourite Posts"
+#: ../../mod/profiles.php:273
+msgid "Profile updated."
msgstr ""
-#: ../../mod/network.php:284
-msgid "Shared Links"
+#: ../../mod/profiles.php:340
+msgid " and "
msgstr ""
-#: ../../mod/network.php:287
-msgid "Interesting Links"
+#: ../../mod/profiles.php:348
+msgid "public profile"
msgstr ""
-#: ../../mod/network.php:354
+#: ../../mod/profiles.php:351
#, 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] ""
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr ""
-#: ../../mod/network.php:357
-msgid "Private messages to this group are at risk of public disclosure."
+#: ../../mod/profiles.php:352
+#, php-format
+msgid " - Visit %1$s's %2$s"
msgstr ""
-#: ../../mod/network.php:402
-msgid "No such group"
+#: ../../mod/profiles.php:355
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
-#: ../../mod/network.php:413
-msgid "Group is empty"
+#: ../../mod/profiles.php:414
+msgid "Profile deleted."
msgstr ""
-#: ../../mod/network.php:417
-msgid "Group: "
+#: ../../mod/profiles.php:432 ../../mod/profiles.php:466
+msgid "Profile-"
msgstr ""
-#: ../../mod/network.php:427
-msgid "Contact: "
+#: ../../mod/profiles.php:451 ../../mod/profiles.php:493
+msgid "New profile created."
msgstr ""
-#: ../../mod/network.php:429
-msgid "Private messages to this person are at risk of public disclosure."
+#: ../../mod/profiles.php:472
+msgid "Profile unavailable to clone."
msgstr ""
-#: ../../mod/network.php:434
-msgid "Invalid contact."
+#: ../../mod/profiles.php:530
+msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
-#: ../../mod/notes.php:44 ../../boot.php:1535
-msgid "Personal Notes"
+#: ../../mod/profiles.php:553
+msgid "Edit Profile Details"
msgstr ""
-#: ../../mod/notes.php:63 ../../mod/filer.php:30
-#: ../../addon/facebook/facebook.php:756
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:185
-#: ../../addon/dav/layout.fnk.php:384 ../../include/text.php:652
-msgid "Save"
+#: ../../mod/profiles.php:555
+msgid "View this profile"
msgstr ""
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#: ../../mod/profiles.php:556
+msgid "Create a new profile using these settings"
+msgstr ""
+
+#: ../../mod/profiles.php:557
+msgid "Clone this profile"
+msgstr ""
+
+#: ../../mod/profiles.php:558
+msgid "Delete this profile"
+msgstr ""
+
+#: ../../mod/profiles.php:559
+msgid "Profile Name:"
+msgstr ""
+
+#: ../../mod/profiles.php:560
+msgid "Your Full Name:"
+msgstr ""
+
+#: ../../mod/profiles.php:561
+msgid "Title/Description:"
+msgstr ""
+
+#: ../../mod/profiles.php:562
+msgid "Your Gender:"
+msgstr ""
+
+#: ../../mod/profiles.php:563
#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgid "Birthday (%s):"
msgstr ""
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:66
-msgid "No recipient selected."
+#: ../../mod/profiles.php:564
+msgid "Street Address:"
msgstr ""
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
+#: ../../mod/profiles.php:565
+msgid "Locality/City:"
msgstr ""
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:73
-msgid "Message could not be sent."
+#: ../../mod/profiles.php:566
+msgid "Postal/Zip Code:"
msgstr ""
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:76
-msgid "Message collection failure."
+#: ../../mod/profiles.php:567
+msgid "Country:"
msgstr ""
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:79
-msgid "Message sent."
+#: ../../mod/profiles.php:568
+msgid "Region/State:"
msgstr ""
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
+#: ../../mod/profiles.php:569
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
-#: ../../mod/wallmessage.php:124 ../../mod/message.php:172
-#: ../../include/conversation.php:943
-msgid "Please enter a link URL:"
+#: ../../mod/profiles.php:570
+msgid "Who: (if applicable)"
msgstr ""
-#: ../../mod/wallmessage.php:131 ../../mod/message.php:200
-msgid "Send Private Message"
+#: ../../mod/profiles.php:571
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
-#: ../../mod/wallmessage.php:132
-#, 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."
+#: ../../mod/profiles.php:572
+msgid "Since [date]:"
msgstr ""
-#: ../../mod/wallmessage.php:133 ../../mod/message.php:201
-#: ../../mod/message.php:399
-msgid "To:"
+#: ../../mod/profiles.php:573 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
msgstr ""
-#: ../../mod/wallmessage.php:134 ../../mod/message.php:206
-#: ../../mod/message.php:401
-msgid "Subject:"
+#: ../../mod/profiles.php:574
+msgid "Homepage URL:"
msgstr ""
-#: ../../mod/wallmessage.php:140 ../../mod/message.php:210
-#: ../../mod/message.php:404 ../../mod/invite.php:113
-msgid "Your message:"
+#: ../../mod/profiles.php:575 ../../include/profile_advanced.php:50
+msgid "Hometown:"
msgstr ""
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
+#: ../../mod/profiles.php:576 ../../include/profile_advanced.php:54
+msgid "Political Views:"
msgstr ""
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
+#: ../../mod/profiles.php:577
+msgid "Religious Views:"
msgstr ""
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
+#: ../../mod/profiles.php:578
+msgid "Public Keywords:"
msgstr ""
-#: ../../mod/newmember.php:16
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, connect to Facebook, make some new connections, "
-"and find some groups to join."
+#: ../../mod/profiles.php:579
+msgid "Private Keywords:"
msgstr ""
-#: ../../mod/newmember.php:18
-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."
+#: ../../mod/profiles.php:580
+msgid "Example: fishing photography software"
msgstr ""
-#: ../../mod/newmember.php:20
-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."
+#: ../../mod/profiles.php:581
+msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
-#: ../../mod/newmember.php:22
-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."
+#: ../../mod/profiles.php:582
+msgid "(Used for searching profiles, never shown to others)"
msgstr ""
-#: ../../mod/newmember.php:25
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
+#: ../../mod/profiles.php:583
+msgid "Tell us about yourself..."
msgstr ""
-#: ../../mod/newmember.php:27
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
+#: ../../mod/profiles.php:584
+msgid "Hobbies/Interests"
msgstr ""
-#: ../../mod/newmember.php:32
-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"
+#: ../../mod/profiles.php:585
+msgid "Contact information and Social Networks"
msgstr ""
-#: ../../mod/newmember.php:34
-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."
+#: ../../mod/profiles.php:586
+msgid "Musical interests"
msgstr ""
-#: ../../mod/newmember.php:36
-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."
+#: ../../mod/profiles.php:587
+msgid "Books, literature"
msgstr ""
-#: ../../mod/newmember.php:38
-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."
+#: ../../mod/profiles.php:588
+msgid "Television"
msgstr ""
-#: ../../mod/newmember.php:40
-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."
+#: ../../mod/profiles.php:589
+msgid "Film/dance/culture/entertainment"
msgstr ""
-#: ../../mod/newmember.php:42
-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."
+#: ../../mod/profiles.php:590
+msgid "Love/romance"
msgstr ""
-#: ../../mod/newmember.php:44
-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."
+#: ../../mod/profiles.php:591
+msgid "Work/employment"
msgstr ""
-#: ../../mod/newmember.php:46
+#: ../../mod/profiles.php:592
+msgid "School/education"
+msgstr ""
+
+#: ../../mod/profiles.php:597
msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program "
-"features and resources."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
msgstr ""
-#: ../../mod/attach.php:8
-msgid "Item not available."
+#: ../../mod/profiles.php:607 ../../mod/directory.php:111
+msgid "Age: "
msgstr ""
-#: ../../mod/attach.php:20
-msgid "Item was not found."
+#: ../../mod/profiles.php:644
+msgid "Edit/Manage Profiles"
msgstr ""
-#: ../../mod/group.php:29
-msgid "Group created."
+#: ../../mod/profiles.php:645 ../../boot.php:1075
+msgid "Change profile photo"
msgstr ""
-#: ../../mod/group.php:35
-msgid "Could not create group."
+#: ../../mod/profiles.php:646 ../../boot.php:1076
+msgid "Create New Profile"
msgstr ""
-#: ../../mod/group.php:47 ../../mod/group.php:137
-msgid "Group not found."
+#: ../../mod/profiles.php:657 ../../boot.php:1086
+msgid "Profile Image"
msgstr ""
-#: ../../mod/group.php:60
-msgid "Group name changed."
+#: ../../mod/profiles.php:659 ../../boot.php:1089
+msgid "visible to everybody"
msgstr ""
-#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:298
-msgid "Permission denied"
+#: ../../mod/profiles.php:660 ../../boot.php:1090
+msgid "Edit visibility"
msgstr ""
-#: ../../mod/group.php:90
-msgid "Create a group of contacts/friends."
+#: ../../mod/ping.php:185
+msgid "{0} wants to be your friend"
msgstr ""
-#: ../../mod/group.php:91 ../../mod/group.php:177
-msgid "Group Name: "
+#: ../../mod/ping.php:190
+msgid "{0} sent you a message"
msgstr ""
-#: ../../mod/group.php:110
-msgid "Group removed."
+#: ../../mod/ping.php:195
+msgid "{0} requested registration"
msgstr ""
-#: ../../mod/group.php:112
-msgid "Unable to remove group."
+#: ../../mod/ping.php:201
+#, php-format
+msgid "{0} commented %s's post"
msgstr ""
-#: ../../mod/group.php:176
-msgid "Group Editor"
+#: ../../mod/ping.php:206
+#, php-format
+msgid "{0} liked %s's post"
msgstr ""
-#: ../../mod/group.php:189
-msgid "Members"
+#: ../../mod/ping.php:211
+#, php-format
+msgid "{0} disliked %s's post"
msgstr ""
-#: ../../mod/group.php:221 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
+#: ../../mod/ping.php:216
+#, php-format
+msgid "{0} is now friends with %s"
msgstr ""
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
+#: ../../mod/ping.php:221
+msgid "{0} posted"
msgstr ""
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
+#: ../../mod/ping.php:226
+#, php-format
+msgid "{0} tagged %s's post with #%s"
msgstr ""
-#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:128
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:79
-#: ../../include/nav.php:50 ../../boot.php:1514
-msgid "Profile"
+#: ../../mod/ping.php:232
+msgid "{0} mentioned you in a post"
msgstr ""
-#: ../../mod/profperm.php:114
-msgid "Visible To"
+#: ../../mod/community.php:21
+msgid "Not available."
msgstr ""
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
+#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:133
+#: ../../include/nav.php:101
+msgid "Community"
msgstr ""
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
+#: ../../mod/filer.php:29 ../../include/conversation.php:947
+msgid "Save to Folder:"
msgstr ""
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:589
-msgid "View Contacts"
+#: ../../mod/filer.php:29
+msgid "- select -"
msgstr ""
-#: ../../mod/register.php:88 ../../mod/regmod.php:52
+#: ../../mod/filer.php:30 ../../mod/notes.php:63
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:185
+#: ../../addon/dav/layout.fnk.php:384 ../../addon/facebook/facebook.php:756
+#: ../../include/text.php:652
+msgid "Save"
+msgstr ""
+
+#: ../../mod/wall_attach.php:58
#, php-format
-msgid "Registration details for %s"
+msgid "File exceeds size limit of %d"
msgstr ""
-#: ../../mod/register.php:96
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: ../../mod/wall_attach.php:86 ../../mod/wall_attach.php:97
+msgid "File upload failed."
msgstr ""
-#: ../../mod/register.php:100
-msgid "Failed to send email message. Here is the message that failed."
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
msgstr ""
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
msgstr ""
-#: ../../mod/register.php:142
-#, php-format
-msgid "Registration request at %s"
+#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:128
+#: ../../boot.php:1514 ../../include/profile_advanced.php:7
+#: ../../include/profile_advanced.php:79 ../../include/nav.php:50
+msgid "Profile"
msgstr ""
-#: ../../mod/register.php:151
-msgid "Your registration is pending approval by the site owner."
+#: ../../mod/profperm.php:105 ../../mod/group.php:221
+msgid "Click on a contact to add or remove."
msgstr ""
-#: ../../mod/register.php:189
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
+#: ../../mod/profperm.php:114
+msgid "Visible To"
msgstr ""
-#: ../../mod/register.php:215
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
msgstr ""
-#: ../../mod/register.php:216
+#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr ""
+
+#: ../../mod/suggest.php:44
msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
msgstr ""
-#: ../../mod/register.php:217
-msgid "Your OpenID (optional): "
+#: ../../mod/suggest.php:59 ../../mod/match.php:58 ../../boot.php:1053
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
msgstr ""
-#: ../../mod/register.php:231
-msgid "Include your profile in member directory?"
+#: ../../mod/suggest.php:61
+msgid "Ignore/Hide"
msgstr ""
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
msgstr ""
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
+#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:522
+#, php-format
+msgid "%s welcomes %s"
msgstr ""
-#: ../../mod/register.php:255 ../../mod/admin.php:421
-msgid "Registration"
+#: ../../mod/manage.php:90
+msgid "Manage Identities and/or Pages"
msgstr ""
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
+#: ../../mod/manage.php:93
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
msgstr ""
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
+#: ../../mod/manage.php:95
+msgid "Select an identity to manage: "
msgstr ""
-#: ../../mod/register.php:265
-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>'."
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
msgstr ""
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
msgstr ""
-#: ../../mod/register.php:269 ../../include/nav.php:81 ../../boot.php:801
-msgid "Register"
+#: ../../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/dirfind.php:26
-msgid "People Search"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
msgstr ""
-#: ../../mod/like.php:185 ../../mod/like.php:259 ../../mod/tagger.php:70
-#: ../../addon/facebook/facebook.php:1572
-#: ../../addon/communityhome/communityhome.php:158
-#: ../../addon/communityhome/communityhome.php:167
-#: ../../view/theme/diabook/theme.php:565
-#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1671
-#: ../../include/conversation.php:48 ../../include/conversation.php:57
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-msgid "status"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
msgstr ""
-#: ../../mod/like.php:202 ../../addon/facebook/facebook.php:1576
-#: ../../addon/communityhome/communityhome.php:172
-#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1687
-#: ../../include/conversation.php:65
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
msgstr ""
-#: ../../mod/like.php:204 ../../include/conversation.php:68
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+#: ../../mod/delegate.php:131
+msgid "Add"
msgstr ""
-#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
-#: ../../mod/admin.php:700 ../../mod/admin.php:899 ../../mod/display.php:37
-#: ../../mod/display.php:142 ../../include/items.php:3234
-msgid "Item not found."
+#: ../../mod/delegate.php:132
+msgid "No entries."
msgstr ""
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
msgstr ""
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130
-#: ../../include/nav.php:51 ../../boot.php:1520
-msgid "Photos"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:589
+msgid "View Contacts"
msgstr ""
-#: ../../mod/fbrowser.php:96
-msgid "Files"
+#: ../../mod/notes.php:44 ../../boot.php:1535
+msgid "Personal Notes"
msgstr ""
-#: ../../mod/regmod.php:61
-msgid "Account approved."
+#: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:624
+msgid "Global Directory"
msgstr ""
-#: ../../mod/regmod.php:98
-#, php-format
-msgid "Registration revoked for %s"
+#: ../../mod/directory.php:55
+msgid "Find on this site"
msgstr ""
-#: ../../mod/regmod.php:110
-msgid "Please login."
+#: ../../mod/directory.php:58
+msgid "Site Directory"
msgstr ""
-#: ../../mod/item.php:89
-msgid "Unable to locate original post."
+#: ../../mod/directory.php:114
+msgid "Gender: "
msgstr ""
-#: ../../mod/item.php:258
-msgid "Empty post discarded."
+#: ../../mod/directory.php:140
+msgid "No entries (some entries may be hidden)."
msgstr ""
-#: ../../mod/item.php:379 ../../mod/wall_upload.php:102
-#: ../../mod/wall_upload.php:111 ../../mod/wall_upload.php:118
-#: ../../include/message.php:144
-msgid "Wall Photos"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:243
+msgid "l F d, Y \\@ g:i A"
msgstr ""
-#: ../../mod/item.php:800
-msgid "System error. Post not saved."
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
msgstr ""
-#: ../../mod/item.php:825
-#, php-format
+#: ../../mod/localtime.php:26
msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+"Friendika provides this service for sharing events with other networks and "
+"friends in unknown timezones."
msgstr ""
-#: ../../mod/item.php:827
+#: ../../mod/localtime.php:30
#, php-format
-msgid "You may visit them online at %s"
+msgid "UTC time: %s"
msgstr ""
-#: ../../mod/item.php:828
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
msgstr ""
-#: ../../mod/item.php:830
+#: ../../mod/localtime.php:36
#, php-format
-msgid "%s posted an update."
+msgid "Converted localtime: %s"
+msgstr ""
+
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr ""
+
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
msgstr ""
#: ../../mod/profile_photo.php:30
@@ -2883,11 +3715,6 @@ msgstr ""
msgid "Unable to process image"
msgstr ""
-#: ../../mod/profile_photo.php:117 ../../mod/wall_upload.php:77
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr ""
-
#: ../../mod/profile_photo.php:209
msgid "Upload File:"
msgstr ""
@@ -2924,1745 +3751,1576 @@ msgstr ""
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/message.php:9 ../../include/nav.php:131
-msgid "New Message"
-msgstr ""
-
-#: ../../mod/message.php:70
-msgid "Unable to locate contact information."
-msgstr ""
-
-#: ../../mod/message.php:120
-msgid "Message deleted."
-msgstr ""
-
-#: ../../mod/message.php:150
-msgid "Conversation removed."
-msgstr ""
-
-#: ../../mod/message.php:247
-msgid "No messages."
-msgstr ""
-
-#: ../../mod/message.php:254
-#, php-format
-msgid "Unknown sender - %s"
-msgstr ""
-
-#: ../../mod/message.php:257
-#, php-format
-msgid "You and %s"
-msgstr ""
-
-#: ../../mod/message.php:260
-#, php-format
-msgid "%s and You"
-msgstr ""
-
-#: ../../mod/message.php:270 ../../mod/message.php:392
-msgid "Delete conversation"
+#: ../../mod/install.php:117
+msgid "Friendica Social Communications Server - Setup"
msgstr ""
-#: ../../mod/message.php:273
-msgid "D, d M Y - g:i A"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
msgstr ""
-#: ../../mod/message.php:275
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/message.php:310
-msgid "Message not available."
+#: ../../mod/install.php:127
+msgid "Could not create table."
msgstr ""
-#: ../../mod/message.php:375
-msgid "Delete message"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
msgstr ""
-#: ../../mod/message.php:394
+#: ../../mod/install.php:138
msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr ""
-
-#: ../../mod/message.php:398
-msgid "Send Reply"
-msgstr ""
-
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr ""
-
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr ""
-
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr ""
-
-#: ../../mod/admin.php:96 ../../mod/admin.php:419
-msgid "Site"
-msgstr ""
-
-#: ../../mod/admin.php:97 ../../mod/admin.php:655 ../../mod/admin.php:667
-msgid "Users"
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
msgstr ""
-#: ../../mod/admin.php:98 ../../mod/admin.php:749 ../../mod/admin.php:791
-msgid "Plugins"
+#: ../../mod/install.php:139 ../../mod/install.php:204
+#: ../../mod/install.php:489
+msgid "Please see the file \"INSTALL.txt\"."
msgstr ""
-#: ../../mod/admin.php:99 ../../mod/admin.php:954 ../../mod/admin.php:990
-msgid "Themes"
+#: ../../mod/install.php:201
+msgid "System check"
msgstr ""
-#: ../../mod/admin.php:100
-msgid "DB updates"
+#: ../../mod/install.php:206
+msgid "Check again"
msgstr ""
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1077
-msgid "Logs"
+#: ../../mod/install.php:225
+msgid "Database connection"
msgstr ""
-#: ../../mod/admin.php:120 ../../include/nav.php:146
-msgid "Admin"
+#: ../../mod/install.php:226
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
msgstr ""
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
+#: ../../mod/install.php:227
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
msgstr ""
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
+#: ../../mod/install.php:228
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
msgstr ""
-#: ../../mod/admin.php:183 ../../mod/admin.php:637
-msgid "Normal Account"
+#: ../../mod/install.php:232
+msgid "Database Server Name"
msgstr ""
-#: ../../mod/admin.php:184 ../../mod/admin.php:638
-msgid "Soapbox Account"
+#: ../../mod/install.php:233
+msgid "Database Login Name"
msgstr ""
-#: ../../mod/admin.php:185 ../../mod/admin.php:639
-msgid "Community/Celebrity Account"
+#: ../../mod/install.php:234
+msgid "Database Login Password"
msgstr ""
-#: ../../mod/admin.php:186 ../../mod/admin.php:640
-msgid "Automatic Friend Account"
+#: ../../mod/install.php:235
+msgid "Database Name"
msgstr ""
-#: ../../mod/admin.php:205
-msgid "Message queues"
+#: ../../mod/install.php:236 ../../mod/install.php:275
+msgid "Site administrator email address"
msgstr ""
-#: ../../mod/admin.php:210 ../../mod/admin.php:418 ../../mod/admin.php:654
-#: ../../mod/admin.php:748 ../../mod/admin.php:790 ../../mod/admin.php:953
-#: ../../mod/admin.php:989 ../../mod/admin.php:1076
-msgid "Administration"
+#: ../../mod/install.php:236 ../../mod/install.php:275
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
msgstr ""
-#: ../../mod/admin.php:211
-msgid "Summary"
+#: ../../mod/install.php:240 ../../mod/install.php:278
+msgid "Please select a default timezone for your website"
msgstr ""
-#: ../../mod/admin.php:213
-msgid "Registered users"
+#: ../../mod/install.php:265
+msgid "Site settings"
msgstr ""
-#: ../../mod/admin.php:215
-msgid "Pending registrations"
+#: ../../mod/install.php:318
+msgid "Could not find a command line version of PHP in the web server PATH."
msgstr ""
-#: ../../mod/admin.php:216
-msgid "Version"
+#: ../../mod/install.php:319
+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/admin.php:218
-msgid "Active plugins"
+#: ../../mod/install.php:323
+msgid "PHP executable path"
msgstr ""
-#: ../../mod/admin.php:357
-msgid "Site settings updated."
+#: ../../mod/install.php:323
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
msgstr ""
-#: ../../mod/admin.php:405
-msgid "Closed"
+#: ../../mod/install.php:328
+msgid "Command line PHP"
msgstr ""
-#: ../../mod/admin.php:406
-msgid "Requires approval"
+#: ../../mod/install.php:337
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
msgstr ""
-#: ../../mod/admin.php:407
-msgid "Open"
+#: ../../mod/install.php:338
+msgid "This is required for message delivery to work."
msgstr ""
-#: ../../mod/admin.php:411
-msgid "No SSL policy, links will track page SSL state"
+#: ../../mod/install.php:340
+msgid "PHP register_argc_argv"
msgstr ""
-#: ../../mod/admin.php:412
-msgid "Force all links to use SSL"
+#: ../../mod/install.php:361
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
msgstr ""
-#: ../../mod/admin.php:413
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: ../../mod/install.php:362
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
msgstr ""
-#: ../../mod/admin.php:422
-msgid "File upload"
+#: ../../mod/install.php:364
+msgid "Generate encryption keys"
msgstr ""
-#: ../../mod/admin.php:423
-msgid "Policies"
+#: ../../mod/install.php:371
+msgid "libCurl PHP module"
msgstr ""
-#: ../../mod/admin.php:424
-msgid "Advanced"
+#: ../../mod/install.php:372
+msgid "GD graphics PHP module"
msgstr ""
-#: ../../mod/admin.php:428 ../../addon/statusnet/statusnet.php:552
-msgid "Site name"
+#: ../../mod/install.php:373
+msgid "OpenSSL PHP module"
msgstr ""
-#: ../../mod/admin.php:429
-msgid "Banner/Logo"
+#: ../../mod/install.php:374
+msgid "mysqli PHP module"
msgstr ""
-#: ../../mod/admin.php:430
-msgid "System language"
+#: ../../mod/install.php:375
+msgid "mb_string PHP module"
msgstr ""
-#: ../../mod/admin.php:431
-msgid "System theme"
+#: ../../mod/install.php:380 ../../mod/install.php:382
+msgid "Apache mod_rewrite module"
msgstr ""
-#: ../../mod/admin.php:431
+#: ../../mod/install.php:380
msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr ""
-
-#: ../../mod/admin.php:432
-msgid "SSL link policy"
-msgstr ""
-
-#: ../../mod/admin.php:432
-msgid "Determines whether generated links should be forced to use SSL"
+"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr ""
-#: ../../mod/admin.php:433
-msgid "Maximum image size"
+#: ../../mod/install.php:388
+msgid "Error: libCURL PHP module required but not installed."
msgstr ""
-#: ../../mod/admin.php:433
+#: ../../mod/install.php:392
msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr ""
-
-#: ../../mod/admin.php:435
-msgid "Register policy"
+"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr ""
-#: ../../mod/admin.php:436
-msgid "Register text"
+#: ../../mod/install.php:396
+msgid "Error: openssl PHP module required but not installed."
msgstr ""
-#: ../../mod/admin.php:436
-msgid "Will be displayed prominently on the registration page."
+#: ../../mod/install.php:400
+msgid "Error: mysqli PHP module required but not installed."
msgstr ""
-#: ../../mod/admin.php:437
-msgid "Accounts abandoned after x days"
+#: ../../mod/install.php:404
+msgid "Error: mb_string PHP module required but not installed."
msgstr ""
-#: ../../mod/admin.php:437
+#: ../../mod/install.php:421
msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr ""
-
-#: ../../mod/admin.php:438
-msgid "Allowed friend domains"
+"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/admin.php:438
+#: ../../mod/install.php:422
msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr ""
-
-#: ../../mod/admin.php:439
-msgid "Allowed email domains"
+"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/admin.php:439
+#: ../../mod/install.php:423
msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr ""
-
-#: ../../mod/admin.php:440
-msgid "Block public"
+"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/admin.php:440
+#: ../../mod/install.php:424
msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
-#: ../../mod/admin.php:441
-msgid "Force publish"
+#: ../../mod/install.php:427
+msgid ".htconfig.php is writable"
msgstr ""
-#: ../../mod/admin.php:441
+#: ../../mod/install.php:439
msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
-#: ../../mod/admin.php:442
-msgid "Global directory update URL"
+#: ../../mod/install.php:441
+msgid "Url rewrite is working"
msgstr ""
-#: ../../mod/admin.php:442
+#: ../../mod/install.php:451
msgid ""
-"URL to update the global directory. If this is not set, the global directory "
-"is completely unavailable to the application."
-msgstr ""
-
-#: ../../mod/admin.php:444
-msgid "Block multiple registrations"
+"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/admin.php:444
-msgid "Disallow users to register additional accounts for use as pages."
+#: ../../mod/install.php:476
+msgid "Errors encountered creating database tables."
msgstr ""
-#: ../../mod/admin.php:445
-msgid "OpenID support"
+#: ../../mod/install.php:487
+msgid "<h1>What next</h1>"
msgstr ""
-#: ../../mod/admin.php:445
-msgid "OpenID support for registration and logins."
+#: ../../mod/install.php:488
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
-#: ../../mod/admin.php:446
-msgid "Fullname check"
+#: ../../mod/group.php:29
+msgid "Group created."
msgstr ""
-#: ../../mod/admin.php:446
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: ../../mod/group.php:35
+msgid "Could not create group."
msgstr ""
-#: ../../mod/admin.php:447
-msgid "UTF-8 Regular expressions"
+#: ../../mod/group.php:47 ../../mod/group.php:137
+msgid "Group not found."
msgstr ""
-#: ../../mod/admin.php:447
-msgid "Use PHP UTF8 regular expressions"
+#: ../../mod/group.php:60
+msgid "Group name changed."
msgstr ""
-#: ../../mod/admin.php:448
-msgid "Show Community Page"
+#: ../../mod/group.php:90
+msgid "Create a group of contacts/friends."
msgstr ""
-#: ../../mod/admin.php:448
-msgid ""
-"Display a Community page showing all recent public postings on this site."
+#: ../../mod/group.php:91 ../../mod/group.php:177
+msgid "Group Name: "
msgstr ""
-#: ../../mod/admin.php:449
-msgid "Enable OStatus support"
+#: ../../mod/group.php:110
+msgid "Group removed."
msgstr ""
-#: ../../mod/admin.php:449
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+#: ../../mod/group.php:112
+msgid "Unable to remove group."
msgstr ""
-#: ../../mod/admin.php:450
-msgid "Enable Diaspora support"
+#: ../../mod/group.php:176
+msgid "Group Editor"
msgstr ""
-#: ../../mod/admin.php:450
-msgid "Provide built-in Diaspora network compatibility."
+#: ../../mod/group.php:189
+msgid "Members"
msgstr ""
-#: ../../mod/admin.php:451
-msgid "Only allow Friendica contacts"
+#: ../../mod/regmod.php:61
+msgid "Account approved."
msgstr ""
-#: ../../mod/admin.php:451
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+#: ../../mod/regmod.php:98
+#, php-format
+msgid "Registration revoked for %s"
msgstr ""
-#: ../../mod/admin.php:452
-msgid "Verify SSL"
+#: ../../mod/regmod.php:110
+msgid "Please login."
msgstr ""
-#: ../../mod/admin.php:452
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
+#: ../../mod/match.php:12
+msgid "Profile Match"
msgstr ""
-#: ../../mod/admin.php:453
-msgid "Proxy user"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
-#: ../../mod/admin.php:454
-msgid "Proxy URL"
+#: ../../mod/match.php:57
+msgid "is interested in:"
msgstr ""
-#: ../../mod/admin.php:455
-msgid "Network timeout"
+#: ../../mod/item.php:89
+msgid "Unable to locate original post."
msgstr ""
-#: ../../mod/admin.php:455
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: ../../mod/item.php:258
+msgid "Empty post discarded."
msgstr ""
-#: ../../mod/admin.php:456
-msgid "Delivery interval"
+#: ../../mod/item.php:800
+msgid "System error. Post not saved."
msgstr ""
-#: ../../mod/admin.php:456
+#: ../../mod/item.php:825
+#, php-format
msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
+"This message was sent to you by %s, a member of the Friendica social network."
msgstr ""
-#: ../../mod/admin.php:457
-msgid "Poll interval"
+#: ../../mod/item.php:827
+#, php-format
+msgid "You may visit them online at %s"
msgstr ""
-#: ../../mod/admin.php:457
+#: ../../mod/item.php:828
msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
msgstr ""
-#: ../../mod/admin.php:458
-msgid "Maximum Load Average"
+#: ../../mod/item.php:830
+#, php-format
+msgid "%s posted an update."
msgstr ""
-#: ../../mod/admin.php:458
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: ../../mod/network.php:82
+msgid "Search Results For:"
msgstr ""
-#: ../../mod/admin.php:472
-msgid "Update has been marked successful"
+#: ../../mod/network.php:132 ../../include/group.php:244
+msgid "add"
msgstr ""
-#: ../../mod/admin.php:482
-#, php-format
-msgid "Executing %s failed. Check system logs."
+#: ../../mod/network.php:272
+msgid "Commented Order"
msgstr ""
-#: ../../mod/admin.php:485
-#, php-format
-msgid "Update %s was successfully applied."
+#: ../../mod/network.php:275
+msgid "Sort by Comment Date"
msgstr ""
-#: ../../mod/admin.php:489
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: ../../mod/network.php:278
+msgid "Posted Order"
msgstr ""
-#: ../../mod/admin.php:492
-#, php-format
-msgid "Update function %s could not be found."
+#: ../../mod/network.php:281
+msgid "Sort by Post Date"
msgstr ""
-#: ../../mod/admin.php:507
-msgid "No failed updates."
+#: ../../mod/network.php:288
+msgid "Posts that mention or involve you"
msgstr ""
-#: ../../mod/admin.php:511
-msgid "Failed Updates"
+#: ../../mod/network.php:291
+msgid "New"
msgstr ""
-#: ../../mod/admin.php:512
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: ../../mod/network.php:294
+msgid "Activity Stream - by date"
msgstr ""
-#: ../../mod/admin.php:513
-msgid "Mark success (if update was manually applied)"
+#: ../../mod/network.php:297
+msgid "Starred"
msgstr ""
-#: ../../mod/admin.php:514
-msgid "Attempt to execute this update step automatically"
+#: ../../mod/network.php:300
+msgid "Favourite Posts"
msgstr ""
-#: ../../mod/admin.php:539
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:546
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:585
-#, php-format
-msgid "User '%s' deleted"
+#: ../../mod/network.php:303
+msgid "Shared Links"
msgstr ""
-#: ../../mod/admin.php:593
-#, php-format
-msgid "User '%s' unblocked"
+#: ../../mod/network.php:306
+msgid "Interesting Links"
msgstr ""
-#: ../../mod/admin.php:593
+#: ../../mod/network.php:373
#, php-format
-msgid "User '%s' blocked"
-msgstr ""
+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/admin.php:657
-msgid "select all"
+#: ../../mod/network.php:376
+msgid "Private messages to this group are at risk of public disclosure."
msgstr ""
-#: ../../mod/admin.php:658
-msgid "User registrations waiting for confirm"
+#: ../../mod/network.php:421
+msgid "No such group"
msgstr ""
-#: ../../mod/admin.php:659
-msgid "Request date"
+#: ../../mod/network.php:432
+msgid "Group is empty"
msgstr ""
-#: ../../mod/admin.php:659 ../../mod/admin.php:668
-#: ../../include/contact_selectors.php:79
-msgid "Email"
+#: ../../mod/network.php:436
+msgid "Group: "
msgstr ""
-#: ../../mod/admin.php:660
-msgid "No registrations."
+#: ../../mod/network.php:446
+msgid "Contact: "
msgstr ""
-#: ../../mod/admin.php:662
-msgid "Deny"
+#: ../../mod/network.php:448
+msgid "Private messages to this person are at risk of public disclosure."
msgstr ""
-#: ../../mod/admin.php:668
-msgid "Register date"
+#: ../../mod/network.php:453
+msgid "Invalid contact."
msgstr ""
-#: ../../mod/admin.php:668
-msgid "Last login"
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
msgstr ""
-#: ../../mod/admin.php:668
-msgid "Last item"
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
msgstr ""
-#: ../../mod/admin.php:668
-msgid "Account"
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
msgstr ""
-#: ../../mod/admin.php:670
+#: ../../mod/crepair.php:137
msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
+"information your communications with this contact may stop working."
msgstr ""
-#: ../../mod/admin.php:671
+#: ../../mod/crepair.php:138
msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr ""
-
-#: ../../mod/admin.php:712
-#, php-format
-msgid "Plugin %s disabled."
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
msgstr ""
-#: ../../mod/admin.php:716
-#, php-format
-msgid "Plugin %s enabled."
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
msgstr ""
-#: ../../mod/admin.php:726 ../../mod/admin.php:924
-msgid "Disable"
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
msgstr ""
-#: ../../mod/admin.php:728 ../../mod/admin.php:926
-msgid "Enable"
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
msgstr ""
-#: ../../mod/admin.php:750 ../../mod/admin.php:955
-msgid "Toggle"
+#: ../../mod/crepair.php:151
+msgid "Account URL"
msgstr ""
-#: ../../mod/admin.php:758 ../../mod/admin.php:965
-msgid "Author: "
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
msgstr ""
-#: ../../mod/admin.php:759 ../../mod/admin.php:966
-msgid "Maintainer: "
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
msgstr ""
-#: ../../mod/admin.php:888
-msgid "No themes found."
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
msgstr ""
-#: ../../mod/admin.php:947
-msgid "Screenshot"
+#: ../../mod/crepair.php:155
+msgid "Poll/Feed URL"
msgstr ""
-#: ../../mod/admin.php:995
-msgid "[Experimental]"
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
msgstr ""
-#: ../../mod/admin.php:996
-msgid "[Unsupported]"
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49
+#: ../../include/nav.php:115
+msgid "Your posts and conversations"
msgstr ""
-#: ../../mod/admin.php:1023
-msgid "Log settings updated."
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50
+msgid "Your profile page"
msgstr ""
-#: ../../mod/admin.php:1079
-msgid "Clear"
+#: ../../view/theme/diabook/theme.php:129
+msgid "Your contacts"
msgstr ""
-#: ../../mod/admin.php:1085
-msgid "Debugging"
+#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51
+msgid "Your photos"
msgstr ""
-#: ../../mod/admin.php:1086
-msgid "Log file"
+#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52
+msgid "Your events"
msgstr ""
-#: ../../mod/admin.php:1086
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
+msgid "Personal notes"
msgstr ""
-#: ../../mod/admin.php:1087
-msgid "Log level"
+#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
+msgid "Your personal photos"
msgstr ""
-#: ../../mod/admin.php:1137
-msgid "Close"
+#: ../../view/theme/diabook/theme.php:134
+#: ../../view/theme/diabook/theme.php:643
+#: ../../view/theme/diabook/theme.php:747
+#: ../../view/theme/diabook/config.php:201
+msgid "Community Pages"
msgstr ""
-#: ../../mod/admin.php:1143
-msgid "FTP Host"
+#: ../../view/theme/diabook/theme.php:490
+#: ../../view/theme/diabook/theme.php:749
+#: ../../view/theme/diabook/config.php:203
+msgid "Community Profiles"
msgstr ""
-#: ../../mod/admin.php:1144
-msgid "FTP Path"
+#: ../../view/theme/diabook/theme.php:511
+#: ../../view/theme/diabook/theme.php:754
+#: ../../view/theme/diabook/config.php:208
+msgid "Last users"
msgstr ""
-#: ../../mod/admin.php:1145
-msgid "FTP User"
+#: ../../view/theme/diabook/theme.php:540
+#: ../../view/theme/diabook/theme.php:756
+#: ../../view/theme/diabook/config.php:210
+msgid "Last likes"
msgstr ""
-#: ../../mod/admin.php:1146
-msgid "FTP Password"
+#: ../../view/theme/diabook/theme.php:562
+#: ../../addon/communityhome/communityhome.php:155 ../../include/text.php:1314
+#: ../../include/conversation.php:45 ../../include/conversation.php:118
+msgid "event"
msgstr ""
-#: ../../mod/profile.php:21 ../../boot.php:966
-msgid "Requested profile is not available."
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/theme.php:755
+#: ../../view/theme/diabook/config.php:209
+msgid "Last photos"
msgstr ""
-#: ../../mod/profile.php:139 ../../mod/display.php:75
-msgid "Access to this profile has been restricted."
+#: ../../view/theme/diabook/theme.php:622
+#: ../../view/theme/diabook/theme.php:752
+#: ../../view/theme/diabook/config.php:206
+msgid "Find Friends"
msgstr ""
-#: ../../mod/profile.php:164
-msgid "Tips for New Members"
+#: ../../view/theme/diabook/theme.php:623
+msgid "Local Directory"
msgstr ""
-#: ../../mod/ping.php:185
-msgid "{0} wants to be your friend"
+#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
msgstr ""
-#: ../../mod/ping.php:190
-msgid "{0} sent you a message"
+#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
msgstr ""
-#: ../../mod/ping.php:195
-msgid "{0} requested registration"
+#: ../../view/theme/diabook/theme.php:678
+#: ../../view/theme/diabook/theme.php:748
+#: ../../view/theme/diabook/config.php:202
+msgid "Earth Layers"
msgstr ""
-#: ../../mod/ping.php:201
-#, php-format
-msgid "{0} commented %s's post"
+#: ../../view/theme/diabook/theme.php:683
+msgid "Set zoomfactor for Earth Layers"
msgstr ""
-#: ../../mod/ping.php:206
-#, php-format
-msgid "{0} liked %s's post"
+#: ../../view/theme/diabook/theme.php:684
+#: ../../view/theme/diabook/config.php:199
+msgid "Set longitude (X) for Earth Layers"
msgstr ""
-#: ../../mod/ping.php:211
-#, php-format
-msgid "{0} disliked %s's post"
+#: ../../view/theme/diabook/theme.php:685
+#: ../../view/theme/diabook/config.php:200
+msgid "Set latitude (Y) for Earth Layers"
msgstr ""
-#: ../../mod/ping.php:216
-#, php-format
-msgid "{0} is now friends with %s"
+#: ../../view/theme/diabook/theme.php:698
+#: ../../view/theme/diabook/theme.php:750
+#: ../../view/theme/diabook/config.php:204
+msgid "Help or @NewHere ?"
msgstr ""
-#: ../../mod/ping.php:221
-msgid "{0} posted"
+#: ../../view/theme/diabook/theme.php:705
+#: ../../view/theme/diabook/theme.php:751
+#: ../../view/theme/diabook/config.php:205
+msgid "Connect Services"
msgstr ""
-#: ../../mod/ping.php:226
-#, php-format
-msgid "{0} tagged %s's post with #%s"
+#: ../../view/theme/diabook/theme.php:712
+#: ../../view/theme/diabook/theme.php:753
+msgid "Last Tweets"
msgstr ""
-#: ../../mod/ping.php:232
-msgid "{0} mentioned you in a post"
+#: ../../view/theme/diabook/theme.php:715
+#: ../../view/theme/diabook/config.php:197
+msgid "Set twitter search term"
msgstr ""
-#: ../../mod/nogroup.php:58
-msgid "Contacts who are not members of a group"
+#: ../../view/theme/diabook/theme.php:735
+#: ../../view/theme/diabook/theme.php:736
+#: ../../view/theme/diabook/theme.php:737
+#: ../../view/theme/diabook/theme.php:738
+#: ../../view/theme/diabook/theme.php:739
+#: ../../view/theme/diabook/theme.php:740
+#: ../../view/theme/diabook/theme.php:741
+#: ../../view/theme/diabook/theme.php:742
+#: ../../view/theme/diabook/theme.php:743
+#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288
+msgid "don't show"
msgstr ""
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
+#: ../../view/theme/diabook/theme.php:735
+#: ../../view/theme/diabook/theme.php:736
+#: ../../view/theme/diabook/theme.php:737
+#: ../../view/theme/diabook/theme.php:738
+#: ../../view/theme/diabook/theme.php:739
+#: ../../view/theme/diabook/theme.php:740
+#: ../../view/theme/diabook/theme.php:741
+#: ../../view/theme/diabook/theme.php:742
+#: ../../view/theme/diabook/theme.php:743
+#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287
+msgid "show"
msgstr ""
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
+#: ../../view/theme/diabook/theme.php:745
+msgid "Show/hide boxes at right-hand column:"
msgstr ""
-#: ../../mod/openid.php:93 ../../include/auth.php:99
-#: ../../include/auth.php:162
-msgid "Login failed."
+#: ../../view/theme/diabook/config.php:192
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:54
+#: ../../view/theme/cleanzero/config.php:82
+msgid "Theme settings"
msgstr ""
-#: ../../mod/follow.php:27
-msgid "Contact added"
+#: ../../view/theme/diabook/config.php:193
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/cleanzero/config.php:84
+msgid "Set font-size for posts and comments"
msgstr ""
-#: ../../mod/common.php:42
-msgid "Common Friends"
+#: ../../view/theme/diabook/config.php:194
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
msgstr ""
-#: ../../mod/common.php:78
-msgid "No contacts in common."
+#: ../../view/theme/diabook/config.php:195
+msgid "Set resolution for middle column"
msgstr ""
-#: ../../mod/display.php:135
-msgid "Item has been removed."
+#: ../../view/theme/diabook/config.php:196
+msgid "Set color scheme"
msgstr ""
-#: ../../mod/apps.php:4
-msgid "Applications"
+#: ../../view/theme/diabook/config.php:198
+msgid "Set zoomfactor for Earth Layer"
msgstr ""
-#: ../../mod/apps.php:7
-msgid "No installed applications."
+#: ../../view/theme/diabook/config.php:207
+msgid "Last tweets"
msgstr ""
-#: ../../mod/search.php:83 ../../include/text.php:649
-#: ../../include/text.php:650 ../../include/nav.php:91
-msgid "Search"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
msgstr ""
-#: ../../mod/profiles.php:21 ../../mod/profiles.php:395
-#: ../../mod/profiles.php:509 ../../mod/dfrn_confirm.php:62
-msgid "Profile not found."
+#: ../../view/theme/quattro/config.php:55
+msgid "Alignment"
msgstr ""
-#: ../../mod/profiles.php:31
-msgid "Profile Name is required."
+#: ../../view/theme/quattro/config.php:55
+msgid "Left"
msgstr ""
-#: ../../mod/profiles.php:152
-msgid "Marital Status"
+#: ../../view/theme/quattro/config.php:55
+msgid "Center"
msgstr ""
-#: ../../mod/profiles.php:156
-msgid "Romantic Partner"
+#: ../../view/theme/quattro/config.php:56
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
msgstr ""
-#: ../../mod/profiles.php:160
-msgid "Work/Employment"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
msgstr ""
-#: ../../mod/profiles.php:163
-msgid "Religion"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
msgstr ""
-#: ../../mod/profiles.php:167
-msgid "Political Views"
+#: ../../boot.php:522
+msgid "Delete this item?"
msgstr ""
-#: ../../mod/profiles.php:171
-msgid "Gender"
+#: ../../boot.php:524 ../../addon/showmore/showmore.php:87
+#: ../../addon/page/page.php:63 ../../include/conversation.php:476
+#: ../../include/contact_widgets.php:188
+msgid "show more"
msgstr ""
-#: ../../mod/profiles.php:175
-msgid "Sexual Preference"
+#: ../../boot.php:525
+msgid "show fewer"
msgstr ""
-#: ../../mod/profiles.php:179
-msgid "Homepage"
+#: ../../boot.php:698
+#, php-format
+msgid "Update %s failed. See error logs."
msgstr ""
-#: ../../mod/profiles.php:183
-msgid "Interests"
+#: ../../boot.php:700
+#, php-format
+msgid "Update Error at %s"
msgstr ""
-#: ../../mod/profiles.php:187
-msgid "Address"
+#: ../../boot.php:800
+msgid "Create a New Account"
msgstr ""
-#: ../../mod/profiles.php:194 ../../addon/dav/layout.fnk.php:310
-msgid "Location"
+#: ../../boot.php:821 ../../include/nav.php:46
+msgid "Logout"
msgstr ""
-#: ../../mod/profiles.php:273
-msgid "Profile updated."
+#: ../../boot.php:822 ../../addon/communityhome/communityhome.php:28
+#: ../../addon/communityhome/communityhome.php:34
+#: ../../addon/communityhome/twillingham/communityhome.php:28
+#: ../../addon/communityhome/twillingham/communityhome.php:34
+#: ../../include/nav.php:64
+msgid "Login"
msgstr ""
-#: ../../mod/profiles.php:340
-msgid " and "
+#: ../../boot.php:824
+msgid "Nickname or Email address: "
msgstr ""
-#: ../../mod/profiles.php:348
-msgid "public profile"
+#: ../../boot.php:825
+msgid "Password: "
msgstr ""
-#: ../../mod/profiles.php:351
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: ../../boot.php:828
+msgid "Or login using OpenID: "
msgstr ""
-#: ../../mod/profiles.php:352
-#, php-format
-msgid " - Visit %1$s's %2$s"
+#: ../../boot.php:834
+msgid "Forgot your password?"
msgstr ""
-#: ../../mod/profiles.php:355
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: ../../boot.php:1001
+msgid "Edit profile"
msgstr ""
-#: ../../mod/profiles.php:414
-msgid "Profile deleted."
+#: ../../boot.php:1061
+msgid "Message"
msgstr ""
-#: ../../mod/profiles.php:432 ../../mod/profiles.php:466
-msgid "Profile-"
+#: ../../boot.php:1069 ../../include/nav.php:138
+msgid "Profiles"
msgstr ""
-#: ../../mod/profiles.php:451 ../../mod/profiles.php:493
-msgid "New profile created."
+#: ../../boot.php:1069 ../../include/nav.php:138
+msgid "Manage/edit profiles"
msgstr ""
-#: ../../mod/profiles.php:472
-msgid "Profile unavailable to clone."
+#: ../../boot.php:1111 ../../include/profile_advanced.php:17
+msgid "Gender:"
msgstr ""
-#: ../../mod/profiles.php:530
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: ../../boot.php:1114 ../../include/profile_advanced.php:37
+msgid "Status:"
msgstr ""
-#: ../../mod/profiles.php:553
-msgid "Edit Profile Details"
+#: ../../boot.php:1116 ../../include/profile_advanced.php:48
+msgid "Homepage:"
msgstr ""
-#: ../../mod/profiles.php:555
-msgid "View this profile"
+#: ../../boot.php:1177 ../../boot.php:1253
+msgid "g A l F d"
msgstr ""
-#: ../../mod/profiles.php:556
-msgid "Create a new profile using these settings"
+#: ../../boot.php:1178 ../../boot.php:1254
+msgid "F d"
msgstr ""
-#: ../../mod/profiles.php:557
-msgid "Clone this profile"
+#: ../../boot.php:1223 ../../boot.php:1294
+msgid "[today]"
msgstr ""
-#: ../../mod/profiles.php:558
-msgid "Delete this profile"
+#: ../../boot.php:1235
+msgid "Birthday Reminders"
msgstr ""
-#: ../../mod/profiles.php:559
-msgid "Profile Name:"
+#: ../../boot.php:1236
+msgid "Birthdays this week:"
msgstr ""
-#: ../../mod/profiles.php:560
-msgid "Your Full Name:"
+#: ../../boot.php:1287
+msgid "[No description]"
msgstr ""
-#: ../../mod/profiles.php:561
-msgid "Title/Description:"
+#: ../../boot.php:1305
+msgid "Event Reminders"
msgstr ""
-#: ../../mod/profiles.php:562
-msgid "Your Gender:"
+#: ../../boot.php:1306
+msgid "Events this week:"
msgstr ""
-#: ../../mod/profiles.php:563
-#, php-format
-msgid "Birthday (%s):"
+#: ../../boot.php:1508 ../../include/nav.php:49
+msgid "Status"
msgstr ""
-#: ../../mod/profiles.php:564
-msgid "Street Address:"
+#: ../../boot.php:1511
+msgid "Status Messages and Posts"
msgstr ""
-#: ../../mod/profiles.php:565
-msgid "Locality/City:"
+#: ../../boot.php:1517
+msgid "Profile Details"
msgstr ""
-#: ../../mod/profiles.php:566
-msgid "Postal/Zip Code:"
+#: ../../boot.php:1532
+msgid "Events and Calendar"
msgstr ""
-#: ../../mod/profiles.php:567
-msgid "Country:"
+#: ../../boot.php:1538
+msgid "Only You Can See This"
msgstr ""
-#: ../../mod/profiles.php:568
-msgid "Region/State:"
+#: ../../addon/pageheader/pageheader.php:50
+msgid "\"pageheader\" Settings"
msgstr ""
-#: ../../mod/profiles.php:569
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: ../../addon/pageheader/pageheader.php:68
+msgid "pageheader Settings saved."
msgstr ""
-#: ../../mod/profiles.php:570
-msgid "Who: (if applicable)"
+#: ../../addon/piwik/piwik.php:79
+msgid ""
+"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
+"analytics tool."
msgstr ""
-#: ../../mod/profiles.php:571
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../addon/piwik/piwik.php:82
+#, php-format
+msgid ""
+"If you do not want that your visits are logged this way you <a href='%s'>can "
+"set a cookie to prevent Piwik from tracking further visits of the site</a> "
+"(opt-out)."
msgstr ""
-#: ../../mod/profiles.php:572
-msgid "Since [date]:"
+#: ../../addon/piwik/piwik.php:90
+msgid "Piwik Base URL"
msgstr ""
-#: ../../mod/profiles.php:573 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
+#: ../../addon/piwik/piwik.php:90
+msgid ""
+"Absolute path to your Piwik installation. (without protocol (http/s), with "
+"trailing slash)"
msgstr ""
-#: ../../mod/profiles.php:574
-msgid "Homepage URL:"
+#: ../../addon/piwik/piwik.php:91
+msgid "Site ID"
msgstr ""
-#: ../../mod/profiles.php:575 ../../include/profile_advanced.php:50
-msgid "Hometown:"
+#: ../../addon/piwik/piwik.php:92
+msgid "Show opt-out cookie link?"
msgstr ""
-#: ../../mod/profiles.php:576 ../../include/profile_advanced.php:54
-msgid "Political Views:"
+#: ../../addon/piwik/piwik.php:93
+msgid "Asynchronous tracking"
msgstr ""
-#: ../../mod/profiles.php:577
-msgid "Religious Views:"
+#: ../../addon/viewsrc/viewsrc.php:37
+msgid "View Source"
msgstr ""
-#: ../../mod/profiles.php:578
-msgid "Public Keywords:"
+#: ../../addon/libertree/libertree.php:36
+msgid "Post to libertree"
msgstr ""
-#: ../../mod/profiles.php:579
-msgid "Private Keywords:"
+#: ../../addon/libertree/libertree.php:67
+msgid "libertree Post Settings"
msgstr ""
-#: ../../mod/profiles.php:580
-msgid "Example: fishing photography software"
+#: ../../addon/libertree/libertree.php:69
+msgid "Enable Libertree Post Plugin"
msgstr ""
-#: ../../mod/profiles.php:581
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: ../../addon/libertree/libertree.php:74
+msgid "Libertree API token"
msgstr ""
-#: ../../mod/profiles.php:582
-msgid "(Used for searching profiles, never shown to others)"
+#: ../../addon/libertree/libertree.php:79
+msgid "Libertree site URL"
msgstr ""
-#: ../../mod/profiles.php:583
-msgid "Tell us about yourself..."
+#: ../../addon/libertree/libertree.php:84
+msgid "Post to Libertree by default"
msgstr ""
-#: ../../mod/profiles.php:584
-msgid "Hobbies/Interests"
+#: ../../addon/editplain/editplain.php:46
+msgid "Editplain settings updated."
msgstr ""
-#: ../../mod/profiles.php:585
-msgid "Contact information and Social Networks"
+#: ../../addon/editplain/editplain.php:76
+msgid "Editplain Settings"
msgstr ""
-#: ../../mod/profiles.php:586
-msgid "Musical interests"
+#: ../../addon/editplain/editplain.php:78
+msgid "Disable richtext status editor"
msgstr ""
-#: ../../mod/profiles.php:587
-msgid "Books, literature"
+#: ../../addon/posterous/posterous.php:37
+msgid "Post to Posterous"
msgstr ""
-#: ../../mod/profiles.php:588
-msgid "Television"
+#: ../../addon/posterous/posterous.php:70
+msgid "Posterous Post Settings"
msgstr ""
-#: ../../mod/profiles.php:589
-msgid "Film/dance/culture/entertainment"
+#: ../../addon/posterous/posterous.php:72
+msgid "Enable Posterous Post Plugin"
msgstr ""
-#: ../../mod/profiles.php:590
-msgid "Love/romance"
+#: ../../addon/posterous/posterous.php:77
+msgid "Posterous login"
msgstr ""
-#: ../../mod/profiles.php:591
-msgid "Work/employment"
+#: ../../addon/posterous/posterous.php:82
+msgid "Posterous password"
msgstr ""
-#: ../../mod/profiles.php:592
-msgid "School/education"
+#: ../../addon/posterous/posterous.php:87
+msgid "Posterous site ID"
msgstr ""
-#: ../../mod/profiles.php:597
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: ../../addon/posterous/posterous.php:92
+msgid "Posterous API token"
msgstr ""
-#: ../../mod/profiles.php:607 ../../mod/directory.php:111
-msgid "Age: "
+#: ../../addon/posterous/posterous.php:97
+msgid "Post to Posterous by default"
msgstr ""
-#: ../../mod/profiles.php:644
-msgid "Edit/Manage Profiles"
+#: ../../addon/posterous/posterous.php:189 ../../addon/blogger/blogger.php:172
+#: ../../addon/wppost/wppost.php:199
+msgid "Post from Friendica"
msgstr ""
-#: ../../mod/profiles.php:645 ../../boot.php:1075
-msgid "Change profile photo"
+#: ../../addon/ljpost/ljpost.php:39
+msgid "Post to LiveJournal"
msgstr ""
-#: ../../mod/profiles.php:646 ../../boot.php:1076
-msgid "Create New Profile"
+#: ../../addon/ljpost/ljpost.php:70
+msgid "LiveJournal Post Settings"
msgstr ""
-#: ../../mod/profiles.php:657 ../../boot.php:1086
-msgid "Profile Image"
+#: ../../addon/ljpost/ljpost.php:72
+msgid "Enable LiveJournal Post Plugin"
msgstr ""
-#: ../../mod/profiles.php:659 ../../boot.php:1089
-msgid "visible to everybody"
+#: ../../addon/ljpost/ljpost.php:77
+msgid "LiveJournal username"
msgstr ""
-#: ../../mod/profiles.php:660 ../../boot.php:1090
-msgid "Edit visibility"
+#: ../../addon/ljpost/ljpost.php:82
+msgid "LiveJournal password"
msgstr ""
-#: ../../mod/filer.php:29 ../../include/conversation.php:947
-msgid "Save to Folder:"
+#: ../../addon/ljpost/ljpost.php:87
+msgid "Post to LiveJournal by default"
msgstr ""
-#: ../../mod/filer.php:29
-msgid "- select -"
+#: ../../addon/snautofollow/snautofollow.php:32
+msgid "StatusNet AutoFollow settings updated."
msgstr ""
-#: ../../mod/tagger.php:103 ../../include/conversation.php:138
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+#: ../../addon/snautofollow/snautofollow.php:56
+msgid "StatusNet AutoFollow Settings"
msgstr ""
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
+#: ../../addon/snautofollow/snautofollow.php:58
+msgid "Automatically follow any StatusNet followers/mentioners"
msgstr ""
-#: ../../mod/delegate.php:121
-msgid "Delegate Page Management"
+#: ../../addon/geonames/geonames.php:143
+msgid "Geonames settings updated."
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."
+#: ../../addon/geonames/geonames.php:179
+msgid "Geonames Settings"
msgstr ""
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
+#: ../../addon/geonames/geonames.php:181
+msgid "Enable Geonames Plugin"
msgstr ""
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
+#: ../../addon/ijpost/ijpost.php:39
+msgid "Post to Insanejournal"
msgstr ""
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
+#: ../../addon/ijpost/ijpost.php:70
+msgid "InsaneJournal Post Settings"
msgstr ""
-#: ../../mod/delegate.php:131
-msgid "Add"
+#: ../../addon/ijpost/ijpost.php:72
+msgid "Enable InsaneJournal Post Plugin"
msgstr ""
-#: ../../mod/delegate.php:132
-msgid "No entries."
+#: ../../addon/ijpost/ijpost.php:77
+msgid "InsaneJournal username"
msgstr ""
-#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
+#: ../../addon/ijpost/ijpost.php:82
+msgid "InsaneJournal password"
msgstr ""
-#: ../../mod/suggest.php:44
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+#: ../../addon/ijpost/ijpost.php:87
+msgid "Post to InsaneJournal by default"
msgstr ""
-#: ../../mod/suggest.php:61
-msgid "Ignore/Hide"
+#: ../../addon/statusnet/statusnet.php:134
+msgid "Post to StatusNet"
msgstr ""
-#: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:624
-msgid "Global Directory"
+#: ../../addon/statusnet/statusnet.php:176
+msgid ""
+"Please contact your site administrator.<br />The provided API URL is not "
+"valid."
msgstr ""
-#: ../../mod/directory.php:55
-msgid "Find on this site"
+#: ../../addon/statusnet/statusnet.php:204
+msgid "We could not contact the StatusNet API with the Path you entered."
msgstr ""
-#: ../../mod/directory.php:58
-msgid "Site Directory"
+#: ../../addon/statusnet/statusnet.php:232
+msgid "StatusNet settings updated."
msgstr ""
-#: ../../mod/directory.php:114
-msgid "Gender: "
+#: ../../addon/statusnet/statusnet.php:257
+msgid "StatusNet Posting Settings"
msgstr ""
-#: ../../mod/directory.php:140
-msgid "No entries (some entries may be hidden)."
+#: ../../addon/statusnet/statusnet.php:271
+msgid "Globally Available StatusNet OAuthKeys"
msgstr ""
-#: ../../mod/invite.php:35
-#, php-format
-msgid "%s : Not a valid email address."
+#: ../../addon/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 ""
-#: ../../mod/invite.php:59
-msgid "Please join us on Friendica"
+#: ../../addon/statusnet/statusnet.php:280
+msgid "Provide your own OAuth Credentials"
msgstr ""
-#: ../../mod/invite.php:69
-#, php-format
-msgid "%s : Message delivery failed."
+#: ../../addon/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 ""
-#: ../../mod/invite.php:73
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/invite.php:92
-msgid "You have no more invitations available"
+#: ../../addon/statusnet/statusnet.php:283
+msgid "OAuth Consumer Key"
msgstr ""
-#: ../../mod/invite.php:100
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many "
-"other social networks."
+#: ../../addon/statusnet/statusnet.php:286
+msgid "OAuth Consumer Secret"
msgstr ""
-#: ../../mod/invite.php:102
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+#: ../../addon/statusnet/statusnet.php:289
+msgid "Base API Path (remember the trailing /)"
msgstr ""
-#: ../../mod/invite.php:103
-#, php-format
+#: ../../addon/statusnet/statusnet.php:310
msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
+"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 ""
-#: ../../mod/invite.php:106
-msgid ""
-"Our apologies. This system is not currently configured to connect with other "
-"public sites or invite members."
+#: ../../addon/statusnet/statusnet.php:311
+msgid "Log in with StatusNet"
msgstr ""
-#: ../../mod/invite.php:111
-msgid "Send invitations"
+#: ../../addon/statusnet/statusnet.php:313
+msgid "Copy the security code from StatusNet here"
msgstr ""
-#: ../../mod/invite.php:112
-msgid "Enter email addresses, one per line:"
+#: ../../addon/statusnet/statusnet.php:319
+msgid "Cancel Connection Process"
msgstr ""
-#: ../../mod/invite.php:114
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
+#: ../../addon/statusnet/statusnet.php:321
+msgid "Current StatusNet API is"
msgstr ""
-#: ../../mod/invite.php:116
-msgid "You will need to supply this invitation code: $invite_code"
+#: ../../addon/statusnet/statusnet.php:322
+msgid "Cancel StatusNet Connection"
msgstr ""
-#: ../../mod/invite.php:116
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
+#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
+msgid "Currently connected to: "
msgstr ""
-#: ../../mod/invite.php:118
+#: ../../addon/statusnet/statusnet.php:334
msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
+"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 ""
-#: ../../mod/dfrn_confirm.php:119
+#: ../../addon/statusnet/statusnet.php:336
msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
+"<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 ""
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
+#: ../../addon/statusnet/statusnet.php:339
+msgid "Allow posting to StatusNet"
msgstr ""
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
+#: ../../addon/statusnet/statusnet.php:342
+msgid "Send public postings to StatusNet by default"
msgstr ""
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
+#: ../../addon/statusnet/statusnet.php:345
+msgid "Send linked #-tags and @-names to StatusNet"
msgstr ""
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
+#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
+msgid "Clear OAuth configuration"
msgstr ""
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
+#: ../../addon/statusnet/statusnet.php:553
+msgid "API URL"
msgstr ""
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
+#: ../../addon/qcomment/qcomment.php:51
+msgid ":-)"
msgstr ""
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
+#: ../../addon/qcomment/qcomment.php:51
+msgid ":-("
msgstr ""
-#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:510
-#: ../../include/conversation.php:101
-#, php-format
-msgid "%1$s is now friends with %2$s"
+#: ../../addon/qcomment/qcomment.php:51
+msgid "lol"
msgstr ""
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
+#: ../../addon/qcomment/qcomment.php:54
+msgid "Quick Comment Settings"
msgstr ""
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
+#: ../../addon/qcomment/qcomment.php:56
+msgid ""
+"Quick comments are found near comment boxes, sometimes hidden. Click them to "
+"provide simple replies."
msgstr ""
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: ../../addon/qcomment/qcomment.php:57
+msgid "Enter quick comments, one per line"
msgstr ""
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
+#: ../../addon/qcomment/qcomment.php:75
+msgid "Quick Comment settings saved."
msgstr ""
-#: ../../mod/dfrn_confirm.php:618
+#: ../../addon/testdrive/testdrive.php:94
+#: ../../addon/public_server/public_server.php:126
#, 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."
+msgid "Your account on %s will expire in a few days."
msgstr ""
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
+#: ../../addon/testdrive/testdrive.php:95
+msgid "Your Friendica test account is about to expire."
msgstr ""
-#: ../../mod/dfrn_confirm.php:750
+#: ../../addon/testdrive/testdrive.php:96
#, php-format
-msgid "Connection accepted at %s"
+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 ""
-#: ../../mod/dfrn_confirm.php:799
+#: ../../addon/widgets/widget_like.php:58
#, php-format
-msgid "%1$s has joined %2$s"
-msgstr ""
-
-#: ../../addon/facebook/facebook.php:509
-msgid "Facebook disabled"
-msgstr ""
-
-#: ../../addon/facebook/facebook.php:514
-msgid "Updating contacts"
-msgstr ""
+msgid "%d person likes this"
+msgid_plural "%d people like this"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../addon/facebook/facebook.php:537
-msgid "Facebook API key is missing."
-msgstr ""
+#: ../../addon/widgets/widget_like.php:61
+#, php-format
+msgid "%d person doesn't like this"
+msgid_plural "%d people don't like this"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../addon/facebook/facebook.php:544
-msgid "Facebook Connect"
+#: ../../addon/widgets/widget_friends.php:40
+msgid "Connect on Friendica!"
msgstr ""
-#: ../../addon/facebook/facebook.php:550
-msgid "Install Facebook connector for this account."
+#: ../../addon/widgets/widgets.php:56
+msgid "Generate new key"
msgstr ""
-#: ../../addon/facebook/facebook.php:557
-msgid "Remove Facebook connector"
+#: ../../addon/widgets/widgets.php:59
+msgid "Widgets key"
msgstr ""
-#: ../../addon/facebook/facebook.php:562
-msgid ""
-"Re-authenticate [This is necessary whenever your Facebook password is "
-"changed.]"
+#: ../../addon/widgets/widgets.php:61
+msgid "Widgets available"
msgstr ""
-#: ../../addon/facebook/facebook.php:569
-msgid "Post to Facebook by default"
+#: ../../addon/widgets/widget_friendheader.php:40
+msgid "Get added to this list!"
msgstr ""
-#: ../../addon/facebook/facebook.php:575
-msgid ""
-"Facebook friend linking has been disabled on this site. The following "
-"settings will have no effect."
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:182
+msgid "Lifetime of the cache (in hours)"
msgstr ""
-#: ../../addon/facebook/facebook.php:579
-msgid ""
-"Facebook friend linking has been disabled on this site. If you disable it, "
-"you will be unable to re-enable it."
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:187
+msgid "Cache Statistics"
msgstr ""
-#: ../../addon/facebook/facebook.php:582
-msgid "Link all your Facebook friends and conversations on this website"
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:190
+msgid "Number of items"
msgstr ""
-#: ../../addon/facebook/facebook.php:584
-msgid ""
-"Facebook conversations consist of your <em>profile wall</em> and your friend "
-"<em>stream</em>."
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:192
+msgid "Size of the cache"
msgstr ""
-#: ../../addon/facebook/facebook.php:585
-msgid "On this website, your Facebook friend stream is only visible to you."
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:194
+msgid "Delete the whole cache"
msgstr ""
-#: ../../addon/facebook/facebook.php:586
-msgid ""
-"The following settings determine the privacy of your Facebook profile wall "
-"on this website."
+#: ../../addon/showmore/showmore.php:38
+msgid "\"Show more\" Settings"
msgstr ""
-#: ../../addon/facebook/facebook.php:590
-msgid ""
-"On this website your Facebook profile wall conversations will only be "
-"visible to you"
+#: ../../addon/showmore/showmore.php:41
+msgid "Enable Show More"
msgstr ""
-#: ../../addon/facebook/facebook.php:595
-msgid "Do not import your Facebook profile wall conversations"
+#: ../../addon/showmore/showmore.php:44
+msgid "Cutting posts after how much characters"
msgstr ""
-#: ../../addon/facebook/facebook.php:597
-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."
+#: ../../addon/showmore/showmore.php:65
+msgid "Show More Settings saved."
msgstr ""
-#: ../../addon/facebook/facebook.php:602
-msgid "Comma separated applications to ignore"
+#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
+msgid "Infinite Improbability Drive"
msgstr ""
-#: ../../addon/facebook/facebook.php:686
-msgid "Problems with Facebook Real-Time Updates"
+#: ../../addon/buglink/buglink.php:15
+msgid "Report Bug"
msgstr ""
-#: ../../addon/facebook/facebook.php:714
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
+#: ../../addon/communityhome/communityhome.php:29
+#: ../../addon/communityhome/twillingham/communityhome.php:29
+msgid "OpenID"
msgstr ""
-#: ../../addon/facebook/facebook.php:715
-msgid "Facebook Connector Settings"
+#: ../../addon/communityhome/communityhome.php:38
+#: ../../addon/communityhome/twillingham/communityhome.php:38
+msgid "Latest users"
msgstr ""
-#: ../../addon/facebook/facebook.php:730
-msgid "Facebook API Key"
+#: ../../addon/communityhome/communityhome.php:81
+#: ../../addon/communityhome/twillingham/communityhome.php:81
+msgid "Most active users"
msgstr ""
-#: ../../addon/facebook/facebook.php:740
-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>"
+#: ../../addon/communityhome/communityhome.php:98
+msgid "Latest photos"
msgstr ""
-#: ../../addon/facebook/facebook.php:745
-msgid ""
-"Error: the given API Key seems to be incorrect (the application access token "
-"could not be retrieved)."
+#: ../../addon/communityhome/communityhome.php:133
+msgid "Latest likes"
msgstr ""
-#: ../../addon/facebook/facebook.php:747
-msgid "The given API Key seems to work correctly."
+#: ../../addon/js_upload/js_upload.php:43
+msgid "Upload a file"
msgstr ""
-#: ../../addon/facebook/facebook.php:749
-msgid ""
-"The correctness of the API Key could not be detected. Somthing strange's "
-"going on."
+#: ../../addon/js_upload/js_upload.php:44
+msgid "Drop files here to upload"
msgstr ""
-#: ../../addon/facebook/facebook.php:752
-msgid "App-ID / API-Key"
+#: ../../addon/js_upload/js_upload.php:46
+msgid "Failed"
msgstr ""
-#: ../../addon/facebook/facebook.php:753
-msgid "Application secret"
+#: ../../addon/js_upload/js_upload.php:297
+msgid "No files were uploaded."
msgstr ""
-#: ../../addon/facebook/facebook.php:754
-#, php-format
-msgid "Polling Interval in minutes (minimum %1$s minutes)"
+#: ../../addon/js_upload/js_upload.php:303
+msgid "Uploaded file is empty"
msgstr ""
-#: ../../addon/facebook/facebook.php:755
-msgid ""
-"Synchronize comments (no comments on Facebook are missed, at the cost of "
-"increased system load)"
+#: ../../addon/js_upload/js_upload.php:326
+msgid "File has an invalid extension, it should be one of "
msgstr ""
-#: ../../addon/facebook/facebook.php:759
-msgid "Real-Time Updates"
+#: ../../addon/js_upload/js_upload.php:337
+msgid "Upload was cancelled, or server error encountered"
msgstr ""
-#: ../../addon/facebook/facebook.php:763
-msgid "Real-Time Updates are activated."
+#: ../../addon/dwpost/dwpost.php:39
+msgid "Post to Dreamwidth"
msgstr ""
-#: ../../addon/facebook/facebook.php:764
-msgid "Deactivate Real-Time Updates"
+#: ../../addon/dwpost/dwpost.php:70
+msgid "Dreamwidth Post Settings"
msgstr ""
-#: ../../addon/facebook/facebook.php:766
-msgid "Real-Time Updates not activated."
+#: ../../addon/dwpost/dwpost.php:72
+msgid "Enable dreamwidth Post Plugin"
msgstr ""
-#: ../../addon/facebook/facebook.php:766
-msgid "Activate Real-Time Updates"
+#: ../../addon/dwpost/dwpost.php:77
+msgid "dreamwidth username"
msgstr ""
-#: ../../addon/facebook/facebook.php:785 ../../addon/dav/layout.fnk.php:360
-msgid "The new values have been saved."
+#: ../../addon/dwpost/dwpost.php:82
+msgid "dreamwidth password"
msgstr ""
-#: ../../addon/facebook/facebook.php:809
-msgid "Post to Facebook"
+#: ../../addon/dwpost/dwpost.php:87
+msgid "Post to dreamwidth by default"
msgstr ""
-#: ../../addon/facebook/facebook.php:907
-msgid ""
-"Post to Facebook cancelled because of multi-network access permission "
-"conflict."
+#: ../../addon/page/page.php:48
+msgid "Forums"
msgstr ""
-#: ../../addon/facebook/facebook.php:1127
-msgid "View on Friendica"
+#: ../../addon/numfriends/numfriends.php:46
+msgid "Numfriends settings updated."
msgstr ""
-#: ../../addon/facebook/facebook.php:1160
-msgid "Facebook post failed. Queued for retry."
+#: ../../addon/numfriends/numfriends.php:77
+msgid "Numfriends Settings"
msgstr ""
-#: ../../addon/facebook/facebook.php:1200
-msgid "Your Facebook connection became invalid. Please Re-authenticate."
+#: ../../addon/numfriends/numfriends.php:79
+msgid "How many contacts to display on profile sidebar"
msgstr ""
-#: ../../addon/facebook/facebook.php:1201
-msgid "Facebook connection became invalid"
+#: ../../addon/blogger/blogger.php:42
+msgid "Post to blogger"
msgstr ""
-#: ../../addon/facebook/facebook.php:1202
-#, 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."
+#: ../../addon/blogger/blogger.php:74
+msgid "Blogger Post Settings"
msgstr ""
-#: ../../addon/snautofollow/snautofollow.php:32
-msgid "StatusNet AutoFollow settings updated."
+#: ../../addon/blogger/blogger.php:76
+msgid "Enable Blogger Post Plugin"
msgstr ""
-#: ../../addon/snautofollow/snautofollow.php:56
-msgid "StatusNet AutoFollow Settings"
+#: ../../addon/blogger/blogger.php:81
+msgid "Blogger username"
msgstr ""
-#: ../../addon/snautofollow/snautofollow.php:58
-msgid "Automatically follow any StatusNet followers/mentioners"
+#: ../../addon/blogger/blogger.php:86
+msgid "Blogger password"
msgstr ""
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:182
-msgid "Lifetime of the cache (in hours)"
+#: ../../addon/blogger/blogger.php:91
+msgid "Blogger API URL"
msgstr ""
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:187
-msgid "Cache Statistics"
+#: ../../addon/blogger/blogger.php:96
+msgid "Post to Blogger by default"
msgstr ""
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:190
-msgid "Number of items"
+#: ../../addon/tictac/tictac.php:20
+msgid "Three Dimensional Tic-Tac-Toe"
msgstr ""
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:192
-msgid "Size of the cache"
+#: ../../addon/tictac/tictac.php:53
+msgid "3D Tic-Tac-Toe"
msgstr ""
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:194
-msgid "Delete the whole cache"
+#: ../../addon/tictac/tictac.php:58
+msgid "New game"
msgstr ""
-#: ../../addon/widgets/widget_like.php:58
-#, php-format
-msgid "%d person likes this"
-msgid_plural "%d people like this"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../addon/widgets/widget_like.php:61
-#, php-format
-msgid "%d person doesn't like this"
-msgid_plural "%d people don't like this"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../addon/widgets/widget_friendheader.php:40
-msgid "Get added to this list!"
+#: ../../addon/tictac/tictac.php:59
+msgid "New game with handicap"
msgstr ""
-#: ../../addon/widgets/widgets.php:56
-msgid "Generate new key"
+#: ../../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/widgets/widgets.php:59
-msgid "Widgets key"
+#: ../../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/widgets/widgets.php:61
-msgid "Widgets available"
+#: ../../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/widgets/widget_friends.php:40
-msgid "Connect on Friendica!"
+#: ../../addon/tictac/tictac.php:182
+msgid "You go first..."
msgstr ""
-#: ../../addon/yourls/yourls.php:55
-msgid "YourLS Settings"
+#: ../../addon/tictac/tictac.php:187
+msgid "I'm going first this time..."
msgstr ""
-#: ../../addon/yourls/yourls.php:57
-msgid "URL: http://"
+#: ../../addon/tictac/tictac.php:193
+msgid "You won!"
msgstr ""
-#: ../../addon/yourls/yourls.php:62
-msgid "Username:"
+#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
+msgid "\"Cat\" game!"
msgstr ""
-#: ../../addon/yourls/yourls.php:67
-msgid "Password:"
+#: ../../addon/tictac/tictac.php:222
+msgid "I won!"
msgstr ""
-#: ../../addon/yourls/yourls.php:72
-msgid "Use SSL "
+#: ../../addon/wppost/wppost.php:42
+msgid "Post to Wordpress"
msgstr ""
-#: ../../addon/yourls/yourls.php:92
-msgid "yourls Settings saved."
+#: ../../addon/wppost/wppost.php:76
+msgid "WordPress Post Settings"
msgstr ""
-#: ../../addon/ljpost/ljpost.php:39
-msgid "Post to LiveJournal"
+#: ../../addon/wppost/wppost.php:78
+msgid "Enable WordPress Post Plugin"
msgstr ""
-#: ../../addon/ljpost/ljpost.php:70
-msgid "LiveJournal Post Settings"
+#: ../../addon/wppost/wppost.php:83
+msgid "WordPress username"
msgstr ""
-#: ../../addon/ljpost/ljpost.php:72
-msgid "Enable LiveJournal Post Plugin"
+#: ../../addon/wppost/wppost.php:88
+msgid "WordPress password"
msgstr ""
-#: ../../addon/ljpost/ljpost.php:77
-msgid "LiveJournal username"
+#: ../../addon/wppost/wppost.php:93
+msgid "WordPress API URL"
msgstr ""
-#: ../../addon/ljpost/ljpost.php:82
-msgid "LiveJournal password"
+#: ../../addon/wppost/wppost.php:98
+msgid "Post to WordPress by default"
msgstr ""
-#: ../../addon/ljpost/ljpost.php:87
-msgid "Post to LiveJournal by default"
+#: ../../addon/wppost/wppost.php:103
+msgid "Provide a backlink to the Friendica post"
msgstr ""
-#: ../../addon/nsfw/nsfw.php:47
-msgid "Not Safe For Work (General Purpose Content Filter) settings"
+#: ../../addon/wppost/wppost.php:205
+msgid "Read the original post and comment stream on Friendica"
msgstr ""
-#: ../../addon/nsfw/nsfw.php:49
+#: ../../addon/uhremotestorage/uhremotestorage.php:84
+#, php-format
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/nsfw/nsfw.php:50
-msgid "Enable Content filter"
-msgstr ""
-
-#: ../../addon/nsfw/nsfw.php:53
-msgid "Comma separated list of keywords to hide"
-msgstr ""
-
-#: ../../addon/nsfw/nsfw.php:58
-msgid "Use /expression/ to provide regular expressions"
+"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/nsfw/nsfw.php:74
-msgid "NSFW Settings saved."
+#: ../../addon/uhremotestorage/uhremotestorage.php:85
+msgid "Template URL (with {category})"
msgstr ""
-#: ../../addon/nsfw/nsfw.php:121
-#, php-format
-msgid "%s - Click to open/close"
+#: ../../addon/uhremotestorage/uhremotestorage.php:86
+msgid "OAuth end-point"
msgstr ""
-#: ../../addon/page/page.php:48
-msgid "Forums"
+#: ../../addon/uhremotestorage/uhremotestorage.php:87
+msgid "Api"
msgstr ""
-#: ../../addon/page/page.php:63 ../../addon/showmore/showmore.php:87
-#: ../../include/contact_widgets.php:188 ../../include/conversation.php:476
-#: ../../boot.php:524
-msgid "show more"
+#: ../../addon/gravatar/gravatar.php:71
+msgid "generic profile image"
msgstr ""
-#: ../../addon/planets/planets.php:150
-msgid "Planets Settings"
+#: ../../addon/gravatar/gravatar.php:72
+msgid "random geometric pattern"
msgstr ""
-#: ../../addon/planets/planets.php:152
-msgid "Enable Planets Plugin"
+#: ../../addon/gravatar/gravatar.php:73
+msgid "monster face"
msgstr ""
-#: ../../addon/communityhome/communityhome.php:28
-#: ../../addon/communityhome/communityhome.php:34
-#: ../../addon/communityhome/twillingham/communityhome.php:28
-#: ../../addon/communityhome/twillingham/communityhome.php:34
-#: ../../include/nav.php:64 ../../boot.php:822
-msgid "Login"
+#: ../../addon/gravatar/gravatar.php:74
+msgid "computer generated face"
msgstr ""
-#: ../../addon/communityhome/communityhome.php:29
-#: ../../addon/communityhome/twillingham/communityhome.php:29
-msgid "OpenID"
+#: ../../addon/gravatar/gravatar.php:75
+msgid "retro arcade style face"
msgstr ""
-#: ../../addon/communityhome/communityhome.php:38
-#: ../../addon/communityhome/twillingham/communityhome.php:38
-msgid "Latest users"
+#: ../../addon/gravatar/gravatar.php:87
+msgid "Default avatar image"
msgstr ""
-#: ../../addon/communityhome/communityhome.php:81
-#: ../../addon/communityhome/twillingham/communityhome.php:81
-msgid "Most active users"
+#: ../../addon/gravatar/gravatar.php:87
+msgid "Select default avatar image if none was found at Gravatar. See README"
msgstr ""
-#: ../../addon/communityhome/communityhome.php:98
-msgid "Latest photos"
+#: ../../addon/gravatar/gravatar.php:88
+msgid "Rating of images"
msgstr ""
-#: ../../addon/communityhome/communityhome.php:133
-msgid "Latest likes"
+#: ../../addon/gravatar/gravatar.php:88
+msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
-#: ../../addon/communityhome/communityhome.php:155
-#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1314
-#: ../../include/conversation.php:45 ../../include/conversation.php:118
-msgid "event"
+#: ../../addon/gravatar/gravatar.php:102
+msgid "Gravatar settings updated."
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:126
@@ -4754,6 +5412,10 @@ msgstr ""
msgid "before"
msgstr ""
+#: ../../addon/dav/layout.fnk.php:360 ../../addon/facebook/facebook.php:785
+msgid "The new values have been saved."
+msgstr ""
+
#: ../../addon/dav/layout.fnk.php:367
msgid "Calendar Settings"
msgstr ""
@@ -4862,366 +5524,333 @@ msgstr ""
msgid "Friendica Events: Contacts"
msgstr ""
-#: ../../addon/uhremotestorage/uhremotestorage.php:84
-#, php-format
+#: ../../addon/mathjax/mathjax.php:37
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/uhremotestorage/uhremotestorage.php:85
-msgid "Template URL (with {category})"
-msgstr ""
-
-#: ../../addon/uhremotestorage/uhremotestorage.php:86
-msgid "OAuth end-point"
-msgstr ""
-
-#: ../../addon/uhremotestorage/uhremotestorage.php:87
-msgid "Api"
+"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/membersince/membersince.php:18
-msgid "Member since:"
+#: ../../addon/mathjax/mathjax.php:38
+msgid "Use the MathJax renderer"
msgstr ""
-#: ../../addon/tictac/tictac.php:20
-msgid "Three Dimensional Tic-Tac-Toe"
+#: ../../addon/mathjax/mathjax.php:74
+msgid "MathJax Base URL"
msgstr ""
-#: ../../addon/tictac/tictac.php:53
-msgid "3D Tic-Tac-Toe"
+#: ../../addon/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/tictac/tictac.php:58
-msgid "New game"
+#: ../../addon/twitter/twitter.php:73
+msgid "Post to Twitter"
msgstr ""
-#: ../../addon/tictac/tictac.php:59
-msgid "New game with handicap"
+#: ../../addon/twitter/twitter.php:122
+msgid "Twitter settings updated."
msgstr ""
-#: ../../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. "
+#: ../../addon/twitter/twitter.php:146
+msgid "Twitter Posting Settings"
msgstr ""
-#: ../../addon/tictac/tictac.php:61
+#: ../../addon/twitter/twitter.php:153
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."
+"No consumer key pair for Twitter found. Please contact your site "
+"administrator."
msgstr ""
-#: ../../addon/tictac/tictac.php:63
+#: ../../addon/twitter/twitter.php:172
msgid ""
-"The handicap game disables the center position on the middle level because "
-"the player claiming this square often has an unfair advantage."
+"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/tictac/tictac.php:182
-msgid "You go first..."
+#: ../../addon/twitter/twitter.php:173
+msgid "Log in with Twitter"
msgstr ""
-#: ../../addon/tictac/tictac.php:187
-msgid "I'm going first this time..."
+#: ../../addon/twitter/twitter.php:175
+msgid "Copy the PIN from Twitter here"
msgstr ""
-#: ../../addon/tictac/tictac.php:193
-msgid "You won!"
+#: ../../addon/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/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
-msgid "\"Cat\" game!"
+#: ../../addon/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/tictac/tictac.php:222
-msgid "I won!"
+#: ../../addon/twitter/twitter.php:195
+msgid "Allow posting to Twitter"
msgstr ""
-#: ../../addon/randplace/randplace.php:169
-msgid "Randplace Settings"
+#: ../../addon/twitter/twitter.php:198
+msgid "Send public postings to Twitter by default"
msgstr ""
-#: ../../addon/randplace/randplace.php:171
-msgid "Enable Randplace Plugin"
+#: ../../addon/twitter/twitter.php:201
+msgid "Send linked #-tags and @-names to Twitter"
msgstr ""
-#: ../../addon/dwpost/dwpost.php:39
-msgid "Post to Dreamwidth"
+#: ../../addon/twitter/twitter.php:383
+msgid "Consumer key"
msgstr ""
-#: ../../addon/dwpost/dwpost.php:70
-msgid "Dreamwidth Post Settings"
+#: ../../addon/twitter/twitter.php:384
+msgid "Consumer secret"
msgstr ""
-#: ../../addon/dwpost/dwpost.php:72
-msgid "Enable dreamwidth Post Plugin"
+#: ../../addon/facebook/facebook.php:509
+msgid "Facebook disabled"
msgstr ""
-#: ../../addon/dwpost/dwpost.php:77
-msgid "dreamwidth username"
+#: ../../addon/facebook/facebook.php:514
+msgid "Updating contacts"
msgstr ""
-#: ../../addon/dwpost/dwpost.php:82
-msgid "dreamwidth password"
+#: ../../addon/facebook/facebook.php:537
+msgid "Facebook API key is missing."
msgstr ""
-#: ../../addon/dwpost/dwpost.php:87
-msgid "Post to dreamwidth by default"
+#: ../../addon/facebook/facebook.php:544
+msgid "Facebook Connect"
msgstr ""
-#: ../../addon/drpost/drpost.php:35
-msgid "Post to Drupal"
+#: ../../addon/facebook/facebook.php:550
+msgid "Install Facebook connector for this account."
msgstr ""
-#: ../../addon/drpost/drpost.php:72
-msgid "Drupal Post Settings"
+#: ../../addon/facebook/facebook.php:557
+msgid "Remove Facebook connector"
msgstr ""
-#: ../../addon/drpost/drpost.php:74
-msgid "Enable Drupal Post Plugin"
+#: ../../addon/facebook/facebook.php:562
+msgid ""
+"Re-authenticate [This is necessary whenever your Facebook password is "
+"changed.]"
msgstr ""
-#: ../../addon/drpost/drpost.php:79
-msgid "Drupal username"
+#: ../../addon/facebook/facebook.php:569
+msgid "Post to Facebook by default"
msgstr ""
-#: ../../addon/drpost/drpost.php:84
-msgid "Drupal password"
+#: ../../addon/facebook/facebook.php:575
+msgid ""
+"Facebook friend linking has been disabled on this site. The following "
+"settings will have no effect."
msgstr ""
-#: ../../addon/drpost/drpost.php:89
-msgid "Post Type - article,page,or blog"
+#: ../../addon/facebook/facebook.php:579
+msgid ""
+"Facebook friend linking has been disabled on this site. If you disable it, "
+"you will be unable to re-enable it."
msgstr ""
-#: ../../addon/drpost/drpost.php:94
-msgid "Drupal site URL"
+#: ../../addon/facebook/facebook.php:582
+msgid "Link all your Facebook friends and conversations on this website"
msgstr ""
-#: ../../addon/drpost/drpost.php:99
-msgid "Drupal site uses clean URLS"
+#: ../../addon/facebook/facebook.php:584
+msgid ""
+"Facebook conversations consist of your <em>profile wall</em> and your friend "
+"<em>stream</em>."
msgstr ""
-#: ../../addon/drpost/drpost.php:104
-msgid "Post to Drupal by default"
+#: ../../addon/facebook/facebook.php:585
+msgid "On this website, your Facebook friend stream is only visible to you."
msgstr ""
-#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:199
-#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189
-msgid "Post from Friendica"
+#: ../../addon/facebook/facebook.php:586
+msgid ""
+"The following settings determine the privacy of your Facebook profile wall "
+"on this website."
msgstr ""
-#: ../../addon/startpage/startpage.php:83
-msgid "Startpage Settings"
+#: ../../addon/facebook/facebook.php:590
+msgid ""
+"On this website your Facebook profile wall conversations will only be "
+"visible to you"
msgstr ""
-#: ../../addon/startpage/startpage.php:85
-msgid "Home page to load after login - leave blank for profile wall"
+#: ../../addon/facebook/facebook.php:595
+msgid "Do not import your Facebook profile wall conversations"
msgstr ""
-#: ../../addon/startpage/startpage.php:88
-msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
+#: ../../addon/facebook/facebook.php:597
+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/geonames/geonames.php:143
-msgid "Geonames settings updated."
+#: ../../addon/facebook/facebook.php:602
+msgid "Comma separated applications to ignore"
msgstr ""
-#: ../../addon/geonames/geonames.php:179
-msgid "Geonames Settings"
+#: ../../addon/facebook/facebook.php:686
+msgid "Problems with Facebook Real-Time Updates"
msgstr ""
-#: ../../addon/geonames/geonames.php:181
-msgid "Enable Geonames Plugin"
+#: ../../addon/facebook/facebook.php:714
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
msgstr ""
-#: ../../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."
+#: ../../addon/facebook/facebook.php:715
+msgid "Facebook Connector Settings"
msgstr ""
-#: ../../addon/public_server/public_server.php:127
-msgid "Your Friendica account is about to expire."
+#: ../../addon/facebook/facebook.php:730
+msgid "Facebook API Key"
msgstr ""
-#: ../../addon/public_server/public_server.php:128
-#, php-format
+#: ../../addon/facebook/facebook.php:740
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/js_upload/js_upload.php:43
-msgid "Upload a file"
+"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/js_upload/js_upload.php:44
-msgid "Drop files here to upload"
+#: ../../addon/facebook/facebook.php:745
+msgid ""
+"Error: the given API Key seems to be incorrect (the application access token "
+"could not be retrieved)."
msgstr ""
-#: ../../addon/js_upload/js_upload.php:46
-msgid "Failed"
+#: ../../addon/facebook/facebook.php:747
+msgid "The given API Key seems to work correctly."
msgstr ""
-#: ../../addon/js_upload/js_upload.php:297
-msgid "No files were uploaded."
+#: ../../addon/facebook/facebook.php:749
+msgid ""
+"The correctness of the API Key could not be detected. Somthing strange's "
+"going on."
msgstr ""
-#: ../../addon/js_upload/js_upload.php:303
-msgid "Uploaded file is empty"
+#: ../../addon/facebook/facebook.php:752
+msgid "App-ID / API-Key"
msgstr ""
-#: ../../addon/js_upload/js_upload.php:326
-msgid "File has an invalid extension, it should be one of "
+#: ../../addon/facebook/facebook.php:753
+msgid "Application secret"
msgstr ""
-#: ../../addon/js_upload/js_upload.php:337
-msgid "Upload was cancelled, or server error encountered"
+#: ../../addon/facebook/facebook.php:754
+#, php-format
+msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr ""
-#: ../../addon/oembed.old/oembed.php:30
-msgid "OEmbed settings updated"
+#: ../../addon/facebook/facebook.php:755
+msgid ""
+"Synchronize comments (no comments on Facebook are missed, at the cost of "
+"increased system load)"
msgstr ""
-#: ../../addon/oembed.old/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
+#: ../../addon/facebook/facebook.php:759
+msgid "Real-Time Updates"
msgstr ""
-#: ../../addon/oembed.old/oembed.php:71
-msgid "URL to embed:"
+#: ../../addon/facebook/facebook.php:763
+msgid "Real-Time Updates are activated."
msgstr ""
-#: ../../addon/impressum/impressum.php:36
-msgid "Impressum"
+#: ../../addon/facebook/facebook.php:764
+msgid "Deactivate Real-Time Updates"
msgstr ""
-#: ../../addon/impressum/impressum.php:49
-#: ../../addon/impressum/impressum.php:51
-#: ../../addon/impressum/impressum.php:83
-msgid "Site Owner"
+#: ../../addon/facebook/facebook.php:766
+msgid "Real-Time Updates not activated."
msgstr ""
-#: ../../addon/impressum/impressum.php:49
-#: ../../addon/impressum/impressum.php:87
-msgid "Email Address"
+#: ../../addon/facebook/facebook.php:766
+msgid "Activate Real-Time Updates"
msgstr ""
-#: ../../addon/impressum/impressum.php:54
-#: ../../addon/impressum/impressum.php:85
-msgid "Postal Address"
+#: ../../addon/facebook/facebook.php:809
+msgid "Post to Facebook"
msgstr ""
-#: ../../addon/impressum/impressum.php:60
+#: ../../addon/facebook/facebook.php:907
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:83
-msgid "The page operators name."
+"Post to Facebook cancelled because of multi-network access permission "
+"conflict."
msgstr ""
-#: ../../addon/impressum/impressum.php:84
-msgid "Site Owners Profile"
+#: ../../addon/facebook/facebook.php:1127
+msgid "View on Friendica"
msgstr ""
-#: ../../addon/impressum/impressum.php:84
-msgid "Profile address of the operator."
+#: ../../addon/facebook/facebook.php:1160
+msgid "Facebook post failed. Queued for retry."
msgstr ""
-#: ../../addon/impressum/impressum.php:85
-msgid "How to contact the operator via snail mail. You can use BBCode here."
+#: ../../addon/facebook/facebook.php:1200
+msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr ""
-#: ../../addon/impressum/impressum.php:86
-msgid "Notes"
+#: ../../addon/facebook/facebook.php:1201
+msgid "Facebook connection became invalid"
msgstr ""
-#: ../../addon/impressum/impressum.php:86
+#: ../../addon/facebook/facebook.php:1202
+#, php-format
msgid ""
-"Additional notes that are displayed beneath the contact information. You can "
-"use BBCode here."
-msgstr ""
-
-#: ../../addon/impressum/impressum.php:87
-msgid "How to contact the operator via email. (will be displayed obfuscated)"
+"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 ""
-#: ../../addon/impressum/impressum.php:88
-msgid "Footer note"
+#: ../../addon/nsfw/nsfw.php:47
+msgid "Not Safe For Work (General Purpose Content Filter) settings"
msgstr ""
-#: ../../addon/impressum/impressum.php:88
-msgid "Text for the footer. You can use BBCode here."
+#: ../../addon/nsfw/nsfw.php:49
+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/buglink/buglink.php:15
-msgid "Report Bug"
+#: ../../addon/nsfw/nsfw.php:50
+msgid "Enable Content filter"
msgstr ""
-#: ../../addon/blockem/blockem.php:51
-msgid "\"Blockem\" Settings"
+#: ../../addon/nsfw/nsfw.php:53
+msgid "Comma separated list of keywords to hide"
msgstr ""
-#: ../../addon/blockem/blockem.php:53
-msgid "Comma separated profile URLS to block"
+#: ../../addon/nsfw/nsfw.php:58
+msgid "Use /expression/ to provide regular expressions"
msgstr ""
-#: ../../addon/blockem/blockem.php:70
-msgid "BLOCKEM Settings saved."
+#: ../../addon/nsfw/nsfw.php:74
+msgid "NSFW Settings saved."
msgstr ""
-#: ../../addon/blockem/blockem.php:105
+#: ../../addon/nsfw/nsfw.php:121
#, php-format
-msgid "Blocked %s - Click to open/close"
-msgstr ""
-
-#: ../../addon/blockem/blockem.php:160
-msgid "Unblock Author"
-msgstr ""
-
-#: ../../addon/blockem/blockem.php:162
-msgid "Block Author"
-msgstr ""
-
-#: ../../addon/blockem/blockem.php:194
-msgid "blockem settings updated"
-msgstr ""
-
-#: ../../addon/qcomment/qcomment.php:51
-msgid ":-)"
-msgstr ""
-
-#: ../../addon/qcomment/qcomment.php:51
-msgid ":-("
-msgstr ""
-
-#: ../../addon/qcomment/qcomment.php:51
-msgid "lol"
-msgstr ""
-
-#: ../../addon/qcomment/qcomment.php:54
-msgid "Quick Comment Settings"
-msgstr ""
-
-#: ../../addon/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
-msgid "Enter quick comments, one per line"
-msgstr ""
-
-#: ../../addon/qcomment/qcomment.php:75
-msgid "Quick Comment settings saved."
+msgid "%s - Click to open/close"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:71
@@ -5242,319 +5871,110 @@ msgstr ""
msgid "The default zoom level. (1:world, 18:highest)"
msgstr ""
-#: ../../addon/libertree/libertree.php:36
-msgid "Post to libertree"
-msgstr ""
-
-#: ../../addon/libertree/libertree.php:67
-msgid "libertree Post Settings"
-msgstr ""
-
-#: ../../addon/libertree/libertree.php:69
-msgid "Enable Libertree Post Plugin"
-msgstr ""
-
-#: ../../addon/libertree/libertree.php:74
-msgid "Libertree API token"
-msgstr ""
-
-#: ../../addon/libertree/libertree.php:79
-msgid "Libertree site URL"
-msgstr ""
-
-#: ../../addon/libertree/libertree.php:84
-msgid "Post to Libertree by default"
-msgstr ""
-
-#: ../../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/mathjax/mathjax.php:38
-msgid "Use the MathJax renderer"
-msgstr ""
-
-#: ../../addon/mathjax/mathjax.php:74
-msgid "MathJax Base URL"
-msgstr ""
-
-#: ../../addon/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
-msgid "Editplain settings updated."
-msgstr ""
-
-#: ../../addon/editplain/editplain.php:76
-msgid "Editplain Settings"
-msgstr ""
-
-#: ../../addon/editplain/editplain.php:78
-msgid "Disable richtext status editor"
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:71
-msgid "generic profile image"
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:72
-msgid "random geometric pattern"
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:73
-msgid "monster face"
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:74
-msgid "computer generated face"
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:75
-msgid "retro arcade style face"
-msgstr ""
-
-#: ../../addon/gravatar/gravatar.php:87
-msgid "Default avatar image"
+#: ../../addon/randplace/randplace.php:169
+msgid "Randplace Settings"
msgstr ""
-#: ../../addon/gravatar/gravatar.php:87
-msgid "Select default avatar image if none was found at Gravatar. See README"
+#: ../../addon/randplace/randplace.php:171
+msgid "Enable Randplace Plugin"
msgstr ""
-#: ../../addon/gravatar/gravatar.php:88
-msgid "Rating of images"
+#: ../../addon/membersince/membersince.php:18
+msgid "Member since:"
msgstr ""
-#: ../../addon/gravatar/gravatar.php:88
-msgid "Select the appropriate avatar rating for your site. See README"
+#: ../../addon/blockem/blockem.php:51
+msgid "\"Blockem\" Settings"
msgstr ""
-#: ../../addon/gravatar/gravatar.php:102
-msgid "Gravatar settings updated."
+#: ../../addon/blockem/blockem.php:53
+msgid "Comma separated profile URLS to block"
msgstr ""
-#: ../../addon/testdrive/testdrive.php:95
-msgid "Your Friendica test account is about to expire."
+#: ../../addon/blockem/blockem.php:70
+msgid "BLOCKEM Settings saved."
msgstr ""
-#: ../../addon/testdrive/testdrive.php:96
+#: ../../addon/blockem/blockem.php:105
#, 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/pageheader/pageheader.php:50
-msgid "\"pageheader\" Settings"
-msgstr ""
-
-#: ../../addon/pageheader/pageheader.php:68
-msgid "pageheader Settings saved."
-msgstr ""
-
-#: ../../addon/ijpost/ijpost.php:39
-msgid "Post to Insanejournal"
-msgstr ""
-
-#: ../../addon/ijpost/ijpost.php:70
-msgid "InsaneJournal Post Settings"
-msgstr ""
-
-#: ../../addon/ijpost/ijpost.php:72
-msgid "Enable InsaneJournal Post Plugin"
-msgstr ""
-
-#: ../../addon/ijpost/ijpost.php:77
-msgid "InsaneJournal username"
-msgstr ""
-
-#: ../../addon/ijpost/ijpost.php:82
-msgid "InsaneJournal password"
-msgstr ""
-
-#: ../../addon/ijpost/ijpost.php:87
-msgid "Post to InsaneJournal by default"
-msgstr ""
-
-#: ../../addon/viewsrc/viewsrc.php:37
-msgid "View Source"
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:134
-msgid "Post to StatusNet"
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:176
-msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:204
-msgid "We could not contact the StatusNet API with the Path you entered."
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:232
-msgid "StatusNet settings updated."
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:257
-msgid "StatusNet Posting Settings"
+msgid "Blocked %s - Click to open/close"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:271
-msgid "Globally Available StatusNet OAuthKeys"
+#: ../../addon/blockem/blockem.php:160
+msgid "Unblock Author"
msgstr ""
-#: ../../addon/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)."
+#: ../../addon/blockem/blockem.php:162
+msgid "Block Author"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:280
-msgid "Provide your own OAuth Credentials"
+#: ../../addon/blockem/blockem.php:194
+msgid "blockem settings updated"
msgstr ""
-#: ../../addon/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."
+#: ../../addon/impressum/impressum.php:36
+msgid "Impressum"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:283
-msgid "OAuth Consumer Key"
+#: ../../addon/impressum/impressum.php:49
+#: ../../addon/impressum/impressum.php:51
+#: ../../addon/impressum/impressum.php:83
+msgid "Site Owner"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:286
-msgid "OAuth Consumer Secret"
+#: ../../addon/impressum/impressum.php:49
+#: ../../addon/impressum/impressum.php:87
+msgid "Email Address"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:289
-msgid "Base API Path (remember the trailing /)"
+#: ../../addon/impressum/impressum.php:54
+#: ../../addon/impressum/impressum.php:85
+msgid "Postal Address"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:310
+#: ../../addon/impressum/impressum.php:60
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:311
-msgid "Log in with StatusNet"
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:313
-msgid "Copy the security code from StatusNet here"
+"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/statusnet/statusnet.php:319
-msgid "Cancel Connection Process"
+#: ../../addon/impressum/impressum.php:83
+msgid "The page operators name."
msgstr ""
-#: ../../addon/statusnet/statusnet.php:321
-msgid "Current StatusNet API is"
+#: ../../addon/impressum/impressum.php:84
+msgid "Site Owners Profile"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:322
-msgid "Cancel StatusNet Connection"
+#: ../../addon/impressum/impressum.php:84
+msgid "Profile address of the operator."
msgstr ""
-#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
-msgid "Currently connected to: "
+#: ../../addon/impressum/impressum.php:85
+msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr ""
-#: ../../addon/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."
+#: ../../addon/impressum/impressum.php:86
+msgid "Notes"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:336
+#: ../../addon/impressum/impressum.php:86
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:339
-msgid "Allow posting to StatusNet"
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:342
-msgid "Send public postings to StatusNet by default"
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:345
-msgid "Send linked #-tags and @-names to StatusNet"
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
-msgid "Clear OAuth configuration"
-msgstr ""
-
-#: ../../addon/statusnet/statusnet.php:553
-msgid "API URL"
-msgstr ""
-
-#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-msgid "Infinite Improbability Drive"
-msgstr ""
-
-#: ../../addon/tumblr/tumblr.php:36
-msgid "Post to Tumblr"
-msgstr ""
-
-#: ../../addon/tumblr/tumblr.php:67
-msgid "Tumblr Post Settings"
-msgstr ""
-
-#: ../../addon/tumblr/tumblr.php:69
-msgid "Enable Tumblr Post Plugin"
-msgstr ""
-
-#: ../../addon/tumblr/tumblr.php:74
-msgid "Tumblr login"
-msgstr ""
-
-#: ../../addon/tumblr/tumblr.php:79
-msgid "Tumblr password"
-msgstr ""
-
-#: ../../addon/tumblr/tumblr.php:84
-msgid "Post to Tumblr by default"
+"Additional notes that are displayed beneath the contact information. You can "
+"use BBCode here."
msgstr ""
-#: ../../addon/numfriends/numfriends.php:46
-msgid "Numfriends settings updated."
+#: ../../addon/impressum/impressum.php:87
+msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr ""
-#: ../../addon/numfriends/numfriends.php:77
-msgid "Numfriends Settings"
+#: ../../addon/impressum/impressum.php:88
+msgid "Footer note"
msgstr ""
-#: ../../addon/numfriends/numfriends.php:79
-msgid "How many contacts to display on profile sidebar"
+#: ../../addon/impressum/impressum.php:88
+msgid "Text for the footer. You can use BBCode here."
msgstr ""
#: ../../addon/gnot/gnot.php:48
@@ -5580,612 +6000,463 @@ msgstr ""
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr ""
-#: ../../addon/wppost/wppost.php:42
-msgid "Post to Wordpress"
-msgstr ""
-
-#: ../../addon/wppost/wppost.php:76
-msgid "WordPress Post Settings"
-msgstr ""
-
-#: ../../addon/wppost/wppost.php:78
-msgid "Enable WordPress Post Plugin"
-msgstr ""
-
-#: ../../addon/wppost/wppost.php:83
-msgid "WordPress username"
-msgstr ""
-
-#: ../../addon/wppost/wppost.php:88
-msgid "WordPress password"
-msgstr ""
-
-#: ../../addon/wppost/wppost.php:93
-msgid "WordPress API URL"
+#: ../../addon/planets/planets.php:150
+msgid "Planets Settings"
msgstr ""
-#: ../../addon/wppost/wppost.php:98
-msgid "Post to WordPress by default"
+#: ../../addon/planets/planets.php:152
+msgid "Enable Planets Plugin"
msgstr ""
-#: ../../addon/wppost/wppost.php:103
-msgid "Provide a backlink to the Friendica post"
+#: ../../addon/irc/irc.php:44
+msgid "IRC Settings"
msgstr ""
-#: ../../addon/wppost/wppost.php:205
-msgid "Read the original post and comment stream on Friendica"
+#: ../../addon/irc/irc.php:46
+msgid "Channel(s) to auto connect (comma separated)"
msgstr ""
-#: ../../addon/showmore/showmore.php:38
-msgid "\"Show more\" Settings"
+#: ../../addon/irc/irc.php:51
+msgid "Popular Channels (comma separated)"
msgstr ""
-#: ../../addon/showmore/showmore.php:41
-msgid "Enable Show More"
+#: ../../addon/irc/irc.php:69
+msgid "IRC settings saved."
msgstr ""
-#: ../../addon/showmore/showmore.php:44
-msgid "Cutting posts after how much characters"
+#: ../../addon/irc/irc.php:74
+msgid "IRC Chatroom"
msgstr ""
-#: ../../addon/showmore/showmore.php:65
-msgid "Show More Settings saved."
+#: ../../addon/irc/irc.php:96
+msgid "Popular Channels"
msgstr ""
-#: ../../addon/piwik/piwik.php:79
-msgid ""
-"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
-"analytics tool."
+#: ../../addon/public_server/public_server.php:127
+msgid "Your Friendica account is about to expire."
msgstr ""
-#: ../../addon/piwik/piwik.php:82
+#: ../../addon/public_server/public_server.php:128
#, 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
-msgid "Piwik Base URL"
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:90
-msgid ""
-"Absolute path to your Piwik installation. (without protocol (http/s), with "
-"trailing slash)"
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:91
-msgid "Site ID"
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:92
-msgid "Show opt-out cookie link?"
-msgstr ""
-
-#: ../../addon/piwik/piwik.php:93
-msgid "Asynchronous tracking"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:73
-msgid "Post to Twitter"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:122
-msgid "Twitter settings updated."
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:146
-msgid "Twitter Posting Settings"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:153
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
-msgstr ""
-
-#: ../../addon/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:173
-msgid "Log in with Twitter"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:175
-msgid "Copy the PIN from Twitter here"
+"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/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."
+#: ../../addon/yourls/yourls.php:55
+msgid "YourLS Settings"
msgstr ""
-#: ../../addon/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."
+#: ../../addon/yourls/yourls.php:57
+msgid "URL: http://"
msgstr ""
-#: ../../addon/twitter/twitter.php:195
-msgid "Allow posting to Twitter"
+#: ../../addon/yourls/yourls.php:62
+msgid "Username:"
msgstr ""
-#: ../../addon/twitter/twitter.php:198
-msgid "Send public postings to Twitter by default"
+#: ../../addon/yourls/yourls.php:67
+msgid "Password:"
msgstr ""
-#: ../../addon/twitter/twitter.php:201
-msgid "Send linked #-tags and @-names to Twitter"
+#: ../../addon/yourls/yourls.php:72
+msgid "Use SSL "
msgstr ""
-#: ../../addon/twitter/twitter.php:383
-msgid "Consumer key"
+#: ../../addon/yourls/yourls.php:92
+msgid "yourls Settings saved."
msgstr ""
-#: ../../addon/twitter/twitter.php:384
-msgid "Consumer secret"
+#: ../../addon/tumblr/tumblr.php:36
+msgid "Post to Tumblr"
msgstr ""
-#: ../../addon/irc/irc.php:44
-msgid "IRC Settings"
+#: ../../addon/tumblr/tumblr.php:67
+msgid "Tumblr Post Settings"
msgstr ""
-#: ../../addon/irc/irc.php:46
-msgid "Channel(s) to auto connect (comma separated)"
+#: ../../addon/tumblr/tumblr.php:69
+msgid "Enable Tumblr Post Plugin"
msgstr ""
-#: ../../addon/irc/irc.php:51
-msgid "Popular Channels (comma separated)"
+#: ../../addon/tumblr/tumblr.php:74
+msgid "Tumblr login"
msgstr ""
-#: ../../addon/irc/irc.php:69
-msgid "IRC settings saved."
+#: ../../addon/tumblr/tumblr.php:79
+msgid "Tumblr password"
msgstr ""
-#: ../../addon/irc/irc.php:74
-msgid "IRC Chatroom"
+#: ../../addon/tumblr/tumblr.php:84
+msgid "Post to Tumblr by default"
msgstr ""
-#: ../../addon/irc/irc.php:96
-msgid "Popular Channels"
+#: ../../addon/startpage/startpage.php:83
+msgid "Startpage Settings"
msgstr ""
-#: ../../addon/blogger/blogger.php:42
-msgid "Post to blogger"
+#: ../../addon/startpage/startpage.php:85
+msgid "Home page to load after login - leave blank for profile wall"
msgstr ""
-#: ../../addon/blogger/blogger.php:74
-msgid "Blogger Post Settings"
+#: ../../addon/startpage/startpage.php:88
+msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr ""
-#: ../../addon/blogger/blogger.php:76
-msgid "Enable Blogger Post Plugin"
+#: ../../include/auth.php:36
+msgid "Logged out."
msgstr ""
-#: ../../addon/blogger/blogger.php:81
-msgid "Blogger username"
+#: ../../include/auth.php:115
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
msgstr ""
-#: ../../addon/blogger/blogger.php:86
-msgid "Blogger password"
+#: ../../include/auth.php:115
+msgid "The error message was:"
msgstr ""
-#: ../../addon/blogger/blogger.php:91
-msgid "Blogger API URL"
+#: ../../include/event.php:17 ../../include/bb2diaspora.php:249
+msgid "Starts:"
msgstr ""
-#: ../../addon/blogger/blogger.php:96
-msgid "Post to Blogger by default"
+#: ../../include/event.php:27 ../../include/bb2diaspora.php:257
+msgid "Finishes:"
msgstr ""
-#: ../../addon/posterous/posterous.php:37
-msgid "Post to Posterous"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
msgstr ""
-#: ../../addon/posterous/posterous.php:70
-msgid "Posterous Post Settings"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
msgstr ""
-#: ../../addon/posterous/posterous.php:72
-msgid "Enable Posterous Post Plugin"
+#: ../../include/profile_advanced.php:30 ../../include/items.php:1446
+#: ../../include/datetime.php:450
+msgid "Birthday:"
msgstr ""
-#: ../../addon/posterous/posterous.php:77
-msgid "Posterous login"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
msgstr ""
-#: ../../addon/posterous/posterous.php:82
-msgid "Posterous password"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
msgstr ""
-#: ../../addon/posterous/posterous.php:87
-msgid "Posterous site ID"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
msgstr ""
-#: ../../addon/posterous/posterous.php:92
-msgid "Posterous API token"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
msgstr ""
-#: ../../addon/posterous/posterous.php:97
-msgid "Post to Posterous by default"
+#: ../../include/profile_advanced.php:58
+msgid "About:"
msgstr ""
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/diabook/config.php:192
-#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72
-msgid "Theme settings"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
msgstr ""
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
+#: ../../include/profile_advanced.php:62
+msgid "Contact information and Social Networks:"
msgstr ""
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:193
-#: ../../view/theme/dispy/config.php:73
-msgid "Set font-size for posts and comments"
+#: ../../include/profile_advanced.php:64
+msgid "Musical interests:"
msgstr ""
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
+#: ../../include/profile_advanced.php:66
+msgid "Books, literature:"
msgstr ""
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:56
-msgid "Color scheme"
+#: ../../include/profile_advanced.php:68
+msgid "Television:"
msgstr ""
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49
-#: ../../include/nav.php:115
-msgid "Your posts and conversations"
+#: ../../include/profile_advanced.php:70
+msgid "Film/dance/culture/entertainment:"
msgstr ""
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50
-msgid "Your profile page"
+#: ../../include/profile_advanced.php:72
+msgid "Love/Romance:"
msgstr ""
-#: ../../view/theme/diabook/theme.php:129
-msgid "Your contacts"
+#: ../../include/profile_advanced.php:74
+msgid "Work/employment:"
msgstr ""
-#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51
-msgid "Your photos"
+#: ../../include/profile_advanced.php:76
+msgid "School/education:"
msgstr ""
-#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52
-msgid "Your events"
+#: ../../include/message.php:15 ../../include/message.php:171
+msgid "[no subject]"
msgstr ""
-#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
-msgid "Personal notes"
+#: ../../include/text.php:243
+msgid "prev"
msgstr ""
-#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53
-msgid "Your personal photos"
+#: ../../include/text.php:245
+msgid "first"
msgstr ""
-#: ../../view/theme/diabook/theme.php:134
-#: ../../view/theme/diabook/theme.php:643
-#: ../../view/theme/diabook/theme.php:747
-#: ../../view/theme/diabook/config.php:201
-msgid "Community Pages"
+#: ../../include/text.php:274
+msgid "last"
msgstr ""
-#: ../../view/theme/diabook/theme.php:490
-#: ../../view/theme/diabook/theme.php:749
-#: ../../view/theme/diabook/config.php:203
-msgid "Community Profiles"
+#: ../../include/text.php:277
+msgid "next"
msgstr ""
-#: ../../view/theme/diabook/theme.php:511
-#: ../../view/theme/diabook/theme.php:754
-#: ../../view/theme/diabook/config.php:208
-msgid "Last users"
+#: ../../include/text.php:568
+msgid "No contacts"
msgstr ""
-#: ../../view/theme/diabook/theme.php:540
-#: ../../view/theme/diabook/theme.php:756
-#: ../../view/theme/diabook/config.php:210
-msgid "Last likes"
-msgstr ""
+#: ../../include/text.php:577
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../view/theme/diabook/theme.php:585
-#: ../../view/theme/diabook/theme.php:755
-#: ../../view/theme/diabook/config.php:209
-msgid "Last photos"
+#: ../../include/text.php:835
+msgid "Monday"
msgstr ""
-#: ../../view/theme/diabook/theme.php:622
-#: ../../view/theme/diabook/theme.php:752
-#: ../../view/theme/diabook/config.php:206
-msgid "Find Friends"
+#: ../../include/text.php:835
+msgid "Tuesday"
msgstr ""
-#: ../../view/theme/diabook/theme.php:623
-msgid "Local Directory"
+#: ../../include/text.php:835
+msgid "Wednesday"
msgstr ""
-#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
+#: ../../include/text.php:835
+msgid "Thursday"
msgstr ""
-#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
+#: ../../include/text.php:835
+msgid "Friday"
msgstr ""
-#: ../../view/theme/diabook/theme.php:678
-#: ../../view/theme/diabook/theme.php:748
-#: ../../view/theme/diabook/config.php:202
-msgid "Earth Layers"
+#: ../../include/text.php:835
+msgid "Saturday"
msgstr ""
-#: ../../view/theme/diabook/theme.php:683
-msgid "Set zoomfactor for Earth Layers"
+#: ../../include/text.php:835
+msgid "Sunday"
msgstr ""
-#: ../../view/theme/diabook/theme.php:684
-#: ../../view/theme/diabook/config.php:199
-msgid "Set longitude (X) for Earth Layers"
+#: ../../include/text.php:839
+msgid "January"
msgstr ""
-#: ../../view/theme/diabook/theme.php:685
-#: ../../view/theme/diabook/config.php:200
-msgid "Set latitude (Y) for Earth Layers"
+#: ../../include/text.php:839
+msgid "February"
msgstr ""
-#: ../../view/theme/diabook/theme.php:698
-#: ../../view/theme/diabook/theme.php:750
-#: ../../view/theme/diabook/config.php:204
-msgid "Help or @NewHere ?"
+#: ../../include/text.php:839
+msgid "March"
msgstr ""
-#: ../../view/theme/diabook/theme.php:705
-#: ../../view/theme/diabook/theme.php:751
-#: ../../view/theme/diabook/config.php:205
-msgid "Connect Services"
+#: ../../include/text.php:839
+msgid "April"
msgstr ""
-#: ../../view/theme/diabook/theme.php:712
-#: ../../view/theme/diabook/theme.php:753
-msgid "Last Tweets"
+#: ../../include/text.php:839
+msgid "May"
msgstr ""
-#: ../../view/theme/diabook/theme.php:715
-#: ../../view/theme/diabook/config.php:197
-msgid "Set twitter search term"
+#: ../../include/text.php:839
+msgid "June"
msgstr ""
-#: ../../view/theme/diabook/theme.php:735
-#: ../../view/theme/diabook/theme.php:736
-#: ../../view/theme/diabook/theme.php:737
-#: ../../view/theme/diabook/theme.php:738
-#: ../../view/theme/diabook/theme.php:739
-#: ../../view/theme/diabook/theme.php:740
-#: ../../view/theme/diabook/theme.php:741
-#: ../../view/theme/diabook/theme.php:742
-#: ../../view/theme/diabook/theme.php:743
-#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288
-msgid "don't show"
+#: ../../include/text.php:839
+msgid "July"
msgstr ""
-#: ../../view/theme/diabook/theme.php:735
-#: ../../view/theme/diabook/theme.php:736
-#: ../../view/theme/diabook/theme.php:737
-#: ../../view/theme/diabook/theme.php:738
-#: ../../view/theme/diabook/theme.php:739
-#: ../../view/theme/diabook/theme.php:740
-#: ../../view/theme/diabook/theme.php:741
-#: ../../view/theme/diabook/theme.php:742
-#: ../../view/theme/diabook/theme.php:743
-#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287
-msgid "show"
+#: ../../include/text.php:839
+msgid "August"
msgstr ""
-#: ../../view/theme/diabook/theme.php:745
-msgid "Show/hide boxes at right-hand column:"
+#: ../../include/text.php:839
+msgid "September"
msgstr ""
-#: ../../view/theme/diabook/config.php:194
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
+#: ../../include/text.php:839
+msgid "October"
msgstr ""
-#: ../../view/theme/diabook/config.php:195
-msgid "Set resolution for middle column"
+#: ../../include/text.php:839
+msgid "November"
msgstr ""
-#: ../../view/theme/diabook/config.php:196
-msgid "Set color scheme"
+#: ../../include/text.php:839
+msgid "December"
msgstr ""
-#: ../../view/theme/diabook/config.php:198
-msgid "Set zoomfactor for Earth Layer"
+#: ../../include/text.php:925
+msgid "bytes"
msgstr ""
-#: ../../view/theme/diabook/config.php:207
-msgid "Last tweets"
+#: ../../include/text.php:945 ../../include/text.php:960
+msgid "remove"
msgstr ""
-#: ../../view/theme/quattro/config.php:55
-msgid "Alignment"
+#: ../../include/text.php:945 ../../include/text.php:960
+msgid "[remove]"
msgstr ""
-#: ../../view/theme/quattro/config.php:55
-msgid "Left"
+#: ../../include/text.php:948
+msgid "Categories:"
msgstr ""
-#: ../../view/theme/quattro/config.php:55
-msgid "Center"
+#: ../../include/text.php:963
+msgid "Filed under:"
msgstr ""
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
+#: ../../include/text.php:979 ../../include/text.php:991
+msgid "Click to open/close"
msgstr ""
-#: ../../include/profile_advanced.php:17 ../../boot.php:1111
-msgid "Gender:"
+#: ../../include/text.php:1096 ../../include/user.php:230
+msgid "default"
msgstr ""
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
+#: ../../include/text.php:1108
+msgid "Select an alternate language"
msgstr ""
-#: ../../include/profile_advanced.php:23
-msgid "j F"
+#: ../../include/text.php:1318
+msgid "activity"
msgstr ""
-#: ../../include/profile_advanced.php:30 ../../include/datetime.php:450
-#: ../../include/items.php:1446
-msgid "Birthday:"
+#: ../../include/text.php:1320
+msgid "comment"
msgstr ""
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
+#: ../../include/text.php:1321
+msgid "post"
msgstr ""
-#: ../../include/profile_advanced.php:37 ../../boot.php:1114
-msgid "Status:"
+#: ../../include/text.php:1476
+msgid "Item filed"
msgstr ""
-#: ../../include/profile_advanced.php:43
+#: ../../include/dba.php:41
#, php-format
-msgid "for %1$d %2$s"
-msgstr ""
-
-#: ../../include/profile_advanced.php:48 ../../boot.php:1116
-msgid "Homepage:"
-msgstr ""
-
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr ""
-
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr ""
-
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr ""
-
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr ""
-
-#: ../../include/profile_advanced.php:62
-msgid "Contact information and Social Networks:"
-msgstr ""
-
-#: ../../include/profile_advanced.php:64
-msgid "Musical interests:"
+msgid "Cannot locate DNS info for database server '%s'"
msgstr ""
-#: ../../include/profile_advanced.php:66
-msgid "Books, literature:"
+#: ../../include/items.php:2790
+msgid "A new person is sharing with you at "
msgstr ""
-#: ../../include/profile_advanced.php:68
-msgid "Television:"
+#: ../../include/items.php:2790
+msgid "You have a new follower at "
msgstr ""
-#: ../../include/profile_advanced.php:70
-msgid "Film/dance/culture/entertainment:"
+#: ../../include/items.php:3444
+msgid "Archives"
msgstr ""
-#: ../../include/profile_advanced.php:72
-msgid "Love/Romance:"
-msgstr ""
-
-#: ../../include/profile_advanced.php:74
-msgid "Work/employment:"
+#: ../../include/delivery.php:456 ../../include/notifier.php:678
+msgid "(no subject)"
msgstr ""
-#: ../../include/profile_advanced.php:76
-msgid "School/education:"
+#: ../../include/delivery.php:463 ../../include/notifier.php:685
+#: ../../include/enotify.php:26
+msgid "noreply"
msgstr ""
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
+#: ../../include/diaspora.php:593
+msgid "Sharing notification from Diaspora network"
msgstr ""
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
+#: ../../include/diaspora.php:2037
+msgid "Attachments:"
msgstr ""
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
msgstr ""
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
msgstr ""
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
+#: ../../include/follow.php:60 ../../include/follow.php:75
+msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
+#: ../../include/follow.php:73
+msgid "The profile address specified does not provide adequate information."
msgstr ""
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
+#: ../../include/follow.php:77
+msgid "An author or name was not found."
msgstr ""
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
+#: ../../include/follow.php:79
+msgid "No browser URL could be matched to this address."
msgstr ""
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
+#: ../../include/follow.php:81
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
msgstr ""
-#: ../../include/contact_selectors.php:59
-msgid "Daily"
+#: ../../include/follow.php:82
+msgid "Use mailto: in front of address to force email check."
msgstr ""
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
+#: ../../include/follow.php:88
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
msgstr ""
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
+#: ../../include/follow.php:93
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
msgstr ""
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
+#: ../../include/follow.php:169
+msgid "Unable to retrieve contact information."
msgstr ""
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
+#: ../../include/follow.php:223
+msgid "following"
msgstr ""
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
+#: ../../include/security.php:21
+msgid "Welcome "
msgstr ""
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
+#: ../../include/security.php:22
+msgid "Please upload a profile photo."
msgstr ""
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
+#: ../../include/security.php:25
+msgid "Welcome back "
msgstr ""
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
+#: ../../include/security.php:329
+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/profile_selectors.php:6
@@ -6420,239 +6691,316 @@ msgstr ""
msgid "Ask me"
msgstr ""
-#: ../../include/event.php:17 ../../include/bb2diaspora.php:249
-msgid "Starts:"
+#: ../../include/conversation.php:163
+msgid "post/item"
msgstr ""
-#: ../../include/event.php:27 ../../include/bb2diaspora.php:257
-msgid "Finishes:"
+#: ../../include/conversation.php:164
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
-#: ../../include/delivery.php:456 ../../include/notifier.php:678
-msgid "(no subject)"
+#: ../../include/conversation.php:327 ../../include/conversation.php:608
+msgid "Select"
msgstr ""
-#: ../../include/delivery.php:463 ../../include/enotify.php:26
-#: ../../include/notifier.php:685
-msgid "noreply"
+#: ../../include/conversation.php:344 ../../include/conversation.php:701
+#: ../../include/conversation.php:702
+#, php-format
+msgid "View %s's profile @ %s"
msgstr ""
-#: ../../include/text.php:243
-msgid "prev"
+#: ../../include/conversation.php:354 ../../include/conversation.php:713
+#, php-format
+msgid "%s from %s"
msgstr ""
-#: ../../include/text.php:245
-msgid "first"
+#: ../../include/conversation.php:369
+msgid "View in context"
msgstr ""
-#: ../../include/text.php:274
-msgid "last"
+#: ../../include/conversation.php:475
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/conversation.php:554
+msgid "like"
msgstr ""
-#: ../../include/text.php:277
-msgid "next"
+#: ../../include/conversation.php:555
+msgid "dislike"
msgstr ""
-#: ../../include/text.php:568
-msgid "No contacts"
+#: ../../include/conversation.php:557
+msgid "Share this"
msgstr ""
-#: ../../include/text.php:577
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] ""
-msgstr[1] ""
+#: ../../include/conversation.php:557
+msgid "share"
+msgstr ""
-#: ../../include/text.php:835
-msgid "Monday"
+#: ../../include/conversation.php:581
+msgid "Bold"
msgstr ""
-#: ../../include/text.php:835
-msgid "Tuesday"
+#: ../../include/conversation.php:582
+msgid "Italic"
msgstr ""
-#: ../../include/text.php:835
-msgid "Wednesday"
+#: ../../include/conversation.php:583
+msgid "Underline"
msgstr ""
-#: ../../include/text.php:835
-msgid "Thursday"
+#: ../../include/conversation.php:584
+msgid "Quote"
msgstr ""
-#: ../../include/text.php:835
-msgid "Friday"
+#: ../../include/conversation.php:585
+msgid "Code"
msgstr ""
-#: ../../include/text.php:835
-msgid "Saturday"
+#: ../../include/conversation.php:586
+msgid "Image"
msgstr ""
-#: ../../include/text.php:835
-msgid "Sunday"
+#: ../../include/conversation.php:587
+msgid "Link"
msgstr ""
-#: ../../include/text.php:839
-msgid "January"
+#: ../../include/conversation.php:588
+msgid "Video"
msgstr ""
-#: ../../include/text.php:839
-msgid "February"
+#: ../../include/conversation.php:621
+msgid "add star"
msgstr ""
-#: ../../include/text.php:839
-msgid "March"
+#: ../../include/conversation.php:622
+msgid "remove star"
msgstr ""
-#: ../../include/text.php:839
-msgid "April"
+#: ../../include/conversation.php:623
+msgid "toggle star status"
msgstr ""
-#: ../../include/text.php:839
-msgid "May"
+#: ../../include/conversation.php:626
+msgid "starred"
msgstr ""
-#: ../../include/text.php:839
-msgid "June"
+#: ../../include/conversation.php:627
+msgid "add tag"
msgstr ""
-#: ../../include/text.php:839
-msgid "July"
+#: ../../include/conversation.php:631
+msgid "save to folder"
msgstr ""
-#: ../../include/text.php:839
-msgid "August"
+#: ../../include/conversation.php:703
+msgid "to"
msgstr ""
-#: ../../include/text.php:839
-msgid "September"
+#: ../../include/conversation.php:704
+msgid "Wall-to-Wall"
msgstr ""
-#: ../../include/text.php:839
-msgid "October"
+#: ../../include/conversation.php:705
+msgid "via Wall-To-Wall:"
msgstr ""
-#: ../../include/text.php:839
-msgid "November"
+#: ../../include/conversation.php:750
+msgid "Delete Selected Items"
msgstr ""
-#: ../../include/text.php:839
-msgid "December"
+#: ../../include/conversation.php:842 ../../include/Contact.php:203
+msgid "View Status"
msgstr ""
-#: ../../include/text.php:925
-msgid "bytes"
+#: ../../include/conversation.php:843 ../../include/Contact.php:204
+msgid "View Profile"
msgstr ""
-#: ../../include/text.php:945 ../../include/text.php:960
-msgid "remove"
+#: ../../include/conversation.php:844 ../../include/Contact.php:205
+msgid "View Photos"
msgstr ""
-#: ../../include/text.php:945 ../../include/text.php:960
-msgid "[remove]"
+#: ../../include/conversation.php:845 ../../include/Contact.php:206
+#: ../../include/Contact.php:219
+msgid "Network Posts"
msgstr ""
-#: ../../include/text.php:948
-msgid "Categories:"
+#: ../../include/conversation.php:846 ../../include/Contact.php:207
+#: ../../include/Contact.php:219
+msgid "Edit Contact"
msgstr ""
-#: ../../include/text.php:963
-msgid "Filed under:"
+#: ../../include/conversation.php:847 ../../include/Contact.php:208
+#: ../../include/Contact.php:219
+msgid "Send PM"
msgstr ""
-#: ../../include/text.php:979 ../../include/text.php:991
-msgid "Click to open/close"
+#: ../../include/conversation.php:901
+#, php-format
+msgid "%s likes this."
msgstr ""
-#: ../../include/text.php:1096 ../../include/user.php:230
-msgid "default"
+#: ../../include/conversation.php:901
+#, php-format
+msgid "%s doesn't like this."
msgstr ""
-#: ../../include/text.php:1108
-msgid "Select an alternate language"
+#: ../../include/conversation.php:905
+#, php-format
+msgid "<span %1$s>%2$d people</span> like this."
msgstr ""
-#: ../../include/text.php:1318
-msgid "activity"
+#: ../../include/conversation.php:907
+#, php-format
+msgid "<span %1$s>%2$d people</span> don't like this."
msgstr ""
-#: ../../include/text.php:1320
-msgid "comment"
+#: ../../include/conversation.php:913
+msgid "and"
msgstr ""
-#: ../../include/text.php:1321
-msgid "post"
+#: ../../include/conversation.php:916
+#, php-format
+msgid ", and %d other people"
msgstr ""
-#: ../../include/text.php:1476
-msgid "Item filed"
+#: ../../include/conversation.php:917
+#, php-format
+msgid "%s like this."
msgstr ""
-#: ../../include/diaspora.php:593
-msgid "Sharing notification from Diaspora network"
+#: ../../include/conversation.php:917
+#, php-format
+msgid "%s don't like this."
msgstr ""
-#: ../../include/diaspora.php:2037
-msgid "Attachments:"
+#: ../../include/conversation.php:942
+msgid "Visible to <strong>everybody</strong>"
msgstr ""
-#: ../../include/network.php:827
-msgid "view full size"
+#: ../../include/conversation.php:944
+msgid "Please enter a video link/URL:"
msgstr ""
-#: ../../include/oembed.php:134
-msgid "Embedded content"
+#: ../../include/conversation.php:945
+msgid "Please enter an audio link/URL:"
msgstr ""
-#: ../../include/oembed.php:143
-msgid "Embedding disabled"
+#: ../../include/conversation.php:946
+msgid "Tag term:"
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."
+#: ../../include/conversation.php:948
+msgid "Where are you right now?"
msgstr ""
-#: ../../include/group.php:176
-msgid "Default privacy group for new contacts"
+#: ../../include/conversation.php:991
+msgid "upload photo"
msgstr ""
-#: ../../include/group.php:195
-msgid "Everybody"
+#: ../../include/conversation.php:993
+msgid "attach file"
msgstr ""
-#: ../../include/group.php:218
-msgid "edit"
+#: ../../include/conversation.php:995
+msgid "web link"
msgstr ""
-#: ../../include/group.php:239
-msgid "Groups"
+#: ../../include/conversation.php:996
+msgid "Insert video link"
msgstr ""
-#: ../../include/group.php:240
-msgid "Edit group"
+#: ../../include/conversation.php:997
+msgid "video link"
msgstr ""
-#: ../../include/group.php:241
-msgid "Create a new group"
+#: ../../include/conversation.php:998
+msgid "Insert audio link"
msgstr ""
-#: ../../include/group.php:242
-msgid "Contacts not in any group"
+#: ../../include/conversation.php:999
+msgid "audio link"
msgstr ""
-#: ../../include/nav.php:46 ../../boot.php:821
-msgid "Logout"
+#: ../../include/conversation.php:1001
+msgid "set location"
msgstr ""
-#: ../../include/nav.php:46
-msgid "End this session"
+#: ../../include/conversation.php:1003
+msgid "clear location"
msgstr ""
-#: ../../include/nav.php:49 ../../boot.php:1508
-msgid "Status"
+#: ../../include/conversation.php:1010
+msgid "permissions"
+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:68
+msgid "Networks"
+msgstr ""
+
+#: ../../include/contact_widgets.php:71
+msgid "All Networks"
+msgstr ""
+
+#: ../../include/contact_widgets.php:98
+msgid "Saved Folders"
+msgstr ""
+
+#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
+msgid "Everything"
+msgstr ""
+
+#: ../../include/contact_widgets.php:126
+msgid "Categories"
+msgstr ""
+
+#: ../../include/nav.php:46
+msgid "End this session"
msgstr ""
#: ../../include/nav.php:64
@@ -6731,14 +7079,6 @@ msgstr ""
msgid "Manage other pages"
msgstr ""
-#: ../../include/nav.php:138 ../../boot.php:1069
-msgid "Profiles"
-msgstr ""
-
-#: ../../include/nav.php:138 ../../boot.php:1069
-msgid "Manage/edit profiles"
-msgstr ""
-
#: ../../include/nav.php:139
msgid "Manage/edit friends and contacts"
msgstr ""
@@ -6751,175 +7091,85 @@ msgstr ""
msgid "Nothing new here"
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:68
-msgid "Networks"
-msgstr ""
-
-#: ../../include/contact_widgets.php:71
-msgid "All Networks"
-msgstr ""
-
-#: ../../include/contact_widgets.php:98
-msgid "Saved Folders"
-msgstr ""
-
-#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
-msgid "Everything"
-msgstr ""
-
-#: ../../include/contact_widgets.php:126
-msgid "Categories"
-msgstr ""
-
-#: ../../include/auth.php:36
-msgid "Logged out."
-msgstr ""
-
-#: ../../include/auth.php:115
-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:115
-msgid "The error message was:"
-msgstr ""
-
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr ""
-
-#: ../../include/datetime.php:131 ../../include/datetime.php:263
-msgid "year"
-msgstr ""
-
-#: ../../include/datetime.php:136 ../../include/datetime.php:264
-msgid "month"
-msgstr ""
-
-#: ../../include/datetime.php:141 ../../include/datetime.php:266
-msgid "day"
-msgstr ""
-
-#: ../../include/datetime.php:254
-msgid "never"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
msgstr ""
-#: ../../include/datetime.php:260
-msgid "less than a second ago"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
msgstr ""
-#: ../../include/datetime.php:263
-msgid "years"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
msgstr ""
-#: ../../include/datetime.php:264
-msgid "months"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
msgstr ""
-#: ../../include/datetime.php:265
-msgid "week"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
msgstr ""
-#: ../../include/datetime.php:265
-msgid "weeks"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
msgstr ""
-#: ../../include/datetime.php:266
-msgid "days"
+#: ../../include/contact_selectors.php:56
+msgid "Frequently"
msgstr ""
-#: ../../include/datetime.php:267
-msgid "hour"
+#: ../../include/contact_selectors.php:57
+msgid "Hourly"
msgstr ""
-#: ../../include/datetime.php:267
-msgid "hours"
+#: ../../include/contact_selectors.php:58
+msgid "Twice daily"
msgstr ""
-#: ../../include/datetime.php:268
-msgid "minute"
+#: ../../include/contact_selectors.php:59
+msgid "Daily"
msgstr ""
-#: ../../include/datetime.php:268
-msgid "minutes"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
msgstr ""
-#: ../../include/datetime.php:269
-msgid "second"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
msgstr ""
-#: ../../include/datetime.php:269
-msgid "seconds"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
msgstr ""
-#: ../../include/datetime.php:278
-#, php-format
-msgid "%1$d %2$s ago"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
msgstr ""
-#: ../../include/onepoll.php:406
-msgid "From: "
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
msgstr ""
-#: ../../include/bbcode.php:210 ../../include/bbcode.php:230
-msgid "$1 wrote:"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
msgstr ""
-#: ../../include/bbcode.php:245 ../../include/bbcode.php:314
-msgid "Image/photo"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
msgstr ""
-#: ../../include/dba.php:41
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
msgstr ""
-#: ../../include/message.php:15 ../../include/message.php:171
-msgid "[no subject]"
+#: ../../include/bb2diaspora.php:102 ../../include/bb2diaspora.php:112
+#: ../../include/bb2diaspora.php:113
+msgid "image/photo"
msgstr ""
-#: ../../include/acl_selectors.php:286
-msgid "Visible to everybody"
+#: ../../include/bb2diaspora.php:102
+msgid "link"
msgstr ""
#: ../../include/enotify.php:14
@@ -6947,12 +7197,12 @@ msgstr ""
#: ../../include/enotify.php:44
#, php-format
-msgid "%s sent you a new private message at %s."
+msgid "%1$s sent you a new private message at %2$s."
msgstr ""
#: ../../include/enotify.php:45
#, php-format
-msgid "%s sent you %s."
+msgid "%1$s sent you %2$s."
msgstr ""
#: ../../include/enotify.php:45
@@ -6964,222 +7214,134 @@ msgstr ""
msgid "Please visit %s to view and/or reply to your private messages."
msgstr ""
-#: ../../include/enotify.php:76
+#: ../../include/enotify.php:73
#, php-format
-msgid "%s's"
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:80
-msgid "your"
-msgstr ""
-
-#: ../../include/enotify.php:87
#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%d by %s"
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr ""
#: ../../include/enotify.php:88
#, php-format
-msgid "%s commented on an item/conversation you have been following."
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:98
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %1$s"
msgstr ""
-#: ../../include/enotify.php:89
+#: ../../include/enotify.php:99
#, php-format
-msgid "%s commented on %s."
+msgid "%s commented on an item/conversation you have been following."
msgstr ""
-#: ../../include/enotify.php:91 ../../include/enotify.php:104
-#: ../../include/enotify.php:115 ../../include/enotify.php:126
+#: ../../include/enotify.php:102 ../../include/enotify.php:117
+#: ../../include/enotify.php:130 ../../include/enotify.php:143
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr ""
-#: ../../include/enotify.php:98
+#: ../../include/enotify.php:109
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr ""
-#: ../../include/enotify.php:100
+#: ../../include/enotify.php:111
#, php-format
-msgid "%s posted to your profile wall at %s"
+msgid "%1$s posted to your profile wall at %1$s"
msgstr ""
-#: ../../include/enotify.php:102
+#: ../../include/enotify.php:113
#, php-format
-msgid "%s posted to %s"
-msgstr ""
-
-#: ../../include/enotify.php:102
-msgid "your profile wall."
+msgid "%1$s posted to [url=%2s]your wall[/url]"
msgstr ""
-#: ../../include/enotify.php:111
+#: ../../include/enotify.php:124
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr ""
-#: ../../include/enotify.php:112
+#: ../../include/enotify.php:125
#, php-format
-msgid "%s tagged you at %s"
+msgid "%1$s tagged you at %2$s"
msgstr ""
-#: ../../include/enotify.php:113
+#: ../../include/enotify.php:126
#, php-format
-msgid "%s %s."
-msgstr ""
-
-#: ../../include/enotify.php:113
-msgid "tagged you"
+msgid "%1$s [url=%2s]tagged you[/url]."
msgstr ""
-#: ../../include/enotify.php:122
+#: ../../include/enotify.php:137
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr ""
-#: ../../include/enotify.php:123
+#: ../../include/enotify.php:138
#, php-format
-msgid "%s tagged your post at %s"
+msgid "%1$s tagged your post at %2$s"
msgstr ""
-#: ../../include/enotify.php:124
+#: ../../include/enotify.php:139
#, php-format
-msgid "%s tagged %s"
+msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr ""
-#: ../../include/enotify.php:124
-msgid "your post"
-msgstr ""
-
-#: ../../include/enotify.php:133
+#: ../../include/enotify.php:150
msgid "[Friendica:Notify] Introduction received"
msgstr ""
-#: ../../include/enotify.php:134
+#: ../../include/enotify.php:151
#, php-format
-msgid "You've received an introduction from '%s' at %s"
+msgid "You've received an introduction from '%1$s' at %2$s"
msgstr ""
-#: ../../include/enotify.php:135
+#: ../../include/enotify.php:152
#, php-format
-msgid "You've received %s from %s."
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr ""
-#: ../../include/enotify.php:135
-msgid "an introduction"
-msgstr ""
-
-#: ../../include/enotify.php:136 ../../include/enotify.php:153
+#: ../../include/enotify.php:155 ../../include/enotify.php:173
#, php-format
msgid "You may visit their profile at %s"
msgstr ""
-#: ../../include/enotify.php:138
+#: ../../include/enotify.php:157
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr ""
-#: ../../include/enotify.php:145
+#: ../../include/enotify.php:164
msgid "[Friendica:Notify] Friend suggestion received"
msgstr ""
-#: ../../include/enotify.php:146
+#: ../../include/enotify.php:165
#, php-format
-msgid "You've received a friend suggestion from '%s' at %s"
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr ""
-#: ../../include/enotify.php:147
+#: ../../include/enotify.php:166
#, php-format
-msgid "You've received %s for %s from %s."
+msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr ""
-#: ../../include/enotify.php:148
-msgid "a friend suggestion"
-msgstr ""
-
-#: ../../include/enotify.php:151
+#: ../../include/enotify.php:171
msgid "Name:"
msgstr ""
-#: ../../include/enotify.php:152
+#: ../../include/enotify.php:172
msgid "Photo:"
msgstr ""
-#: ../../include/enotify.php:155
+#: ../../include/enotify.php:175
#, 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:75
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr ""
-
-#: ../../include/follow.php:73
-msgid "The profile address specified does not provide adequate information."
-msgstr ""
-
-#: ../../include/follow.php:77
-msgid "An author or name was not found."
-msgstr ""
-
-#: ../../include/follow.php:79
-msgid "No browser URL could be matched to this address."
-msgstr ""
-
-#: ../../include/follow.php:81
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
-
-#: ../../include/follow.php:82
-msgid "Use mailto: in front of address to force email check."
-msgstr ""
-
-#: ../../include/follow.php:88
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
-
-#: ../../include/follow.php:93
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
-
-#: ../../include/follow.php:169
-msgid "Unable to retrieve contact information."
-msgstr ""
-
-#: ../../include/follow.php:223
-msgid "following"
-msgstr ""
-
-#: ../../include/items.php:2790
-msgid "A new person is sharing with you at "
-msgstr ""
-
-#: ../../include/items.php:2790
-msgid "You have a new follower at "
-msgstr ""
-
-#: ../../include/bb2diaspora.php:102 ../../include/bb2diaspora.php:112
-#: ../../include/bb2diaspora.php:113
-msgid "image/photo"
-msgstr ""
-
-#: ../../include/bb2diaspora.php:102
-msgid "link"
+#: ../../include/onepoll.php:406
+msgid "From: "
msgstr ""
#: ../../include/user.php:38
@@ -7250,367 +7412,138 @@ msgstr ""
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
-#: ../../include/security.php:21
-msgid "Welcome "
-msgstr ""
-
-#: ../../include/security.php:22
-msgid "Please upload a profile photo."
-msgstr ""
-
-#: ../../include/security.php:25
-msgid "Welcome back "
-msgstr ""
-
-#: ../../include/security.php:329
-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:111
-msgid "stopped following"
-msgstr ""
-
-#: ../../include/Contact.php:203 ../../include/conversation.php:842
-msgid "View Status"
-msgstr ""
-
-#: ../../include/Contact.php:204 ../../include/conversation.php:843
-msgid "View Profile"
-msgstr ""
-
-#: ../../include/Contact.php:205 ../../include/conversation.php:844
-msgid "View Photos"
-msgstr ""
-
-#: ../../include/Contact.php:206 ../../include/Contact.php:219
-#: ../../include/conversation.php:845
-msgid "Network Posts"
-msgstr ""
-
-#: ../../include/Contact.php:207 ../../include/Contact.php:219
-#: ../../include/conversation.php:846
-msgid "Edit Contact"
-msgstr ""
-
-#: ../../include/Contact.php:208 ../../include/Contact.php:219
-#: ../../include/conversation.php:847
-msgid "Send PM"
-msgstr ""
-
-#: ../../include/conversation.php:163
-msgid "post/item"
-msgstr ""
-
-#: ../../include/conversation.php:164
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr ""
-
-#: ../../include/conversation.php:327 ../../include/conversation.php:608
-msgid "Select"
-msgstr ""
-
-#: ../../include/conversation.php:344 ../../include/conversation.php:701
-#: ../../include/conversation.php:702
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr ""
-
-#: ../../include/conversation.php:354 ../../include/conversation.php:713
-#, php-format
-msgid "%s from %s"
-msgstr ""
-
-#: ../../include/conversation.php:369
-msgid "View in context"
-msgstr ""
-
-#: ../../include/conversation.php:475
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/conversation.php:554
-msgid "like"
-msgstr ""
-
-#: ../../include/conversation.php:555
-msgid "dislike"
-msgstr ""
-
-#: ../../include/conversation.php:557
-msgid "Share this"
-msgstr ""
-
-#: ../../include/conversation.php:557
-msgid "share"
-msgstr ""
-
-#: ../../include/conversation.php:581
-msgid "Bold"
-msgstr ""
-
-#: ../../include/conversation.php:582
-msgid "Italic"
-msgstr ""
-
-#: ../../include/conversation.php:583
-msgid "Underline"
-msgstr ""
-
-#: ../../include/conversation.php:584
-msgid "Quote"
-msgstr ""
-
-#: ../../include/conversation.php:585
-msgid "Code"
-msgstr ""
-
-#: ../../include/conversation.php:586
-msgid "Image"
-msgstr ""
-
-#: ../../include/conversation.php:587
-msgid "Link"
-msgstr ""
-
-#: ../../include/conversation.php:588
-msgid "Video"
-msgstr ""
-
-#: ../../include/conversation.php:621
-msgid "add star"
-msgstr ""
-
-#: ../../include/conversation.php:622
-msgid "remove star"
-msgstr ""
-
-#: ../../include/conversation.php:623
-msgid "toggle star status"
-msgstr ""
-
-#: ../../include/conversation.php:626
-msgid "starred"
-msgstr ""
-
-#: ../../include/conversation.php:627
-msgid "add tag"
-msgstr ""
-
-#: ../../include/conversation.php:631
-msgid "save to folder"
+#: ../../include/acl_selectors.php:286
+msgid "Visible to everybody"
msgstr ""
-#: ../../include/conversation.php:703
-msgid "to"
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:230
+msgid "$1 wrote:"
msgstr ""
-#: ../../include/conversation.php:704
-msgid "Wall-to-Wall"
+#: ../../include/bbcode.php:245 ../../include/bbcode.php:314
+msgid "Image/photo"
msgstr ""
-#: ../../include/conversation.php:705
-msgid "via Wall-To-Wall:"
+#: ../../include/oembed.php:134
+msgid "Embedded content"
msgstr ""
-#: ../../include/conversation.php:750
-msgid "Delete Selected Items"
+#: ../../include/oembed.php:143
+msgid "Embedding disabled"
msgstr ""
-#: ../../include/conversation.php:901
-#, php-format
-msgid "%s likes this."
+#: ../../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/conversation.php:901
-#, php-format
-msgid "%s doesn't like this."
+#: ../../include/group.php:176
+msgid "Default privacy group for new contacts"
msgstr ""
-#: ../../include/conversation.php:905
-#, php-format
-msgid "<span %1$s>%2$d people</span> like this."
+#: ../../include/group.php:195
+msgid "Everybody"
msgstr ""
-#: ../../include/conversation.php:907
-#, php-format
-msgid "<span %1$s>%2$d people</span> don't like this."
+#: ../../include/group.php:218
+msgid "edit"
msgstr ""
-#: ../../include/conversation.php:913
-msgid "and"
+#: ../../include/group.php:239
+msgid "Groups"
msgstr ""
-#: ../../include/conversation.php:916
-#, php-format
-msgid ", and %d other people"
+#: ../../include/group.php:240
+msgid "Edit group"
msgstr ""
-#: ../../include/conversation.php:917
-#, php-format
-msgid "%s like this."
+#: ../../include/group.php:241
+msgid "Create a new group"
msgstr ""
-#: ../../include/conversation.php:917
-#, php-format
-msgid "%s don't like this."
+#: ../../include/group.php:242
+msgid "Contacts not in any group"
msgstr ""
-#: ../../include/conversation.php:942
-msgid "Visible to <strong>everybody</strong>"
+#: ../../include/Contact.php:111
+msgid "stopped following"
msgstr ""
-#: ../../include/conversation.php:944
-msgid "Please enter a video link/URL:"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
msgstr ""
-#: ../../include/conversation.php:945
-msgid "Please enter an audio link/URL:"
+#: ../../include/datetime.php:131 ../../include/datetime.php:263
+msgid "year"
msgstr ""
-#: ../../include/conversation.php:946
-msgid "Tag term:"
+#: ../../include/datetime.php:136 ../../include/datetime.php:264
+msgid "month"
msgstr ""
-#: ../../include/conversation.php:948
-msgid "Where are you right now?"
+#: ../../include/datetime.php:141 ../../include/datetime.php:266
+msgid "day"
msgstr ""
-#: ../../include/conversation.php:991
-msgid "upload photo"
+#: ../../include/datetime.php:254
+msgid "never"
msgstr ""
-#: ../../include/conversation.php:993
-msgid "attach file"
+#: ../../include/datetime.php:260
+msgid "less than a second ago"
msgstr ""
-#: ../../include/conversation.php:995
-msgid "web link"
+#: ../../include/datetime.php:263
+msgid "years"
msgstr ""
-#: ../../include/conversation.php:996
-msgid "Insert video link"
+#: ../../include/datetime.php:264
+msgid "months"
msgstr ""
-#: ../../include/conversation.php:997
-msgid "video link"
+#: ../../include/datetime.php:265
+msgid "week"
msgstr ""
-#: ../../include/conversation.php:998
-msgid "Insert audio link"
+#: ../../include/datetime.php:265
+msgid "weeks"
msgstr ""
-#: ../../include/conversation.php:999
-msgid "audio link"
+#: ../../include/datetime.php:266
+msgid "days"
msgstr ""
-#: ../../include/conversation.php:1001
-msgid "set location"
+#: ../../include/datetime.php:267
+msgid "hour"
msgstr ""
-#: ../../include/conversation.php:1003
-msgid "clear location"
+#: ../../include/datetime.php:267
+msgid "hours"
msgstr ""
-#: ../../include/conversation.php:1010
-msgid "permissions"
+#: ../../include/datetime.php:268
+msgid "minute"
msgstr ""
-#: ../../boot.php:522
-msgid "Delete this item?"
+#: ../../include/datetime.php:268
+msgid "minutes"
msgstr ""
-#: ../../boot.php:525
-msgid "show fewer"
+#: ../../include/datetime.php:269
+msgid "second"
msgstr ""
-#: ../../boot.php:698
-#, php-format
-msgid "Update %s failed. See error logs."
+#: ../../include/datetime.php:269
+msgid "seconds"
msgstr ""
-#: ../../boot.php:700
+#: ../../include/datetime.php:278
#, php-format
-msgid "Update Error at %s"
-msgstr ""
-
-#: ../../boot.php:800
-msgid "Create a New Account"
-msgstr ""
-
-#: ../../boot.php:824
-msgid "Nickname or Email address: "
-msgstr ""
-
-#: ../../boot.php:825
-msgid "Password: "
-msgstr ""
-
-#: ../../boot.php:828
-msgid "Or login using OpenID: "
-msgstr ""
-
-#: ../../boot.php:834
-msgid "Forgot your password?"
-msgstr ""
-
-#: ../../boot.php:1001
-msgid "Edit profile"
-msgstr ""
-
-#: ../../boot.php:1061
-msgid "Message"
-msgstr ""
-
-#: ../../boot.php:1177 ../../boot.php:1253
-msgid "g A l F d"
-msgstr ""
-
-#: ../../boot.php:1178 ../../boot.php:1254
-msgid "F d"
-msgstr ""
-
-#: ../../boot.php:1223 ../../boot.php:1294
-msgid "[today]"
-msgstr ""
-
-#: ../../boot.php:1235
-msgid "Birthday Reminders"
-msgstr ""
-
-#: ../../boot.php:1236
-msgid "Birthdays this week:"
-msgstr ""
-
-#: ../../boot.php:1287
-msgid "[No description]"
-msgstr ""
-
-#: ../../boot.php:1305
-msgid "Event Reminders"
-msgstr ""
-
-#: ../../boot.php:1306
-msgid "Events this week:"
-msgstr ""
-
-#: ../../boot.php:1511
-msgid "Status Messages and Posts"
-msgstr ""
-
-#: ../../boot.php:1517
-msgid "Profile Details"
-msgstr ""
-
-#: ../../boot.php:1532
-msgid "Events and Calendar"
+msgid "%1$d %2$s ago"
msgstr ""
-#: ../../boot.php:1538
-msgid "Only You Can See This"
+#: ../../include/network.php:827
+msgid "view full size"
msgstr ""