if identity (uid) changes - reload any other open browser windows on next ping.

This commit is contained in:
friendica 2012-05-22 16:01:07 -07:00
commit e70573f34c
5 changed files with 267 additions and 249 deletions

View file

@ -9,7 +9,7 @@ require_once('include/nav.php');
require_once('include/cache.php'); require_once('include/cache.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_VERSION', '3.0.1349' ); define ( 'FRIENDICA_VERSION', '3.0.1350' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1144 ); define ( 'DB_UPDATE_VERSION', 1144 );
@ -511,6 +511,7 @@ if(! class_exists('App')) {
$tpl = file_get_contents('view/head.tpl'); $tpl = file_get_contents('view/head.tpl');
$this->page['htmlhead'] = replace_macros($tpl,array( $this->page['htmlhead'] = replace_macros($tpl,array(
'$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!! '$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
'$local_user' => local_user(),
'$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION, '$generator' => 'Friendica' . ' ' . FRIENDICA_VERSION,
'$delitem' => t('Delete this item?'), '$delitem' => t('Delete this item?'),
'$comment' => t('Comment'), '$comment' => t('Comment'),

View file

@ -117,6 +117,9 @@
/* nav update event */ /* nav update event */
$('nav').bind('nav-update', function(e,data){; $('nav').bind('nav-update', function(e,data){;
var invalid = $(data).find('invalid').text();
if(invalid == 1) { window.location.href=window.location.href }
var net = $(data).find('net').text(); var net = $(data).find('net').text();
if(net == 0) { net = ''; $('#net-update').removeClass('show') } else { $('#net-update').addClass('show') } if(net == 0) { net = ''; $('#net-update').removeClass('show') } else { $('#net-update').addClass('show') }
$('#net-update').html(net); $('#net-update').html(net);
@ -211,7 +214,8 @@
function NavUpdate() { function NavUpdate() {
if(! stopped) { if(! stopped) {
$.get("ping",function(data) { var pingCmd = 'ping' + ((localUser != 0) ? '?f=&uid=' + localUser : '');
$.get(pingCmd,function(data) {
$(data).find('result').each(function() { $(data).find('result').each(function() {
// send nav-update event // send nav-update event
$('nav').trigger('nav-update', this); $('nav').trigger('nav-update', this);

View file

@ -10,8 +10,16 @@ function ping_init(&$a) {
<result>"; <result>";
$xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">"; $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
if(local_user()){ if(local_user()){
// Different login session than the page that is calling us.
if(intval($_GET['uid']) && intval($_GET['uid']) != local_user()) {
echo '<invalid>1</invalid></result>';
killme();
}
$firehose = intval(get_pconfig(local_user(),'system','notify_full')); $firehose = intval(get_pconfig(local_user(),'system','notify_full'));
$t = q("select count(*) as total from notify where uid = %d and seen = 0", $t = q("select count(*) as total from notify where uid = %d and seen = 0",

View file

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 3.0.1349\n" "Project-Id-Version: 3.0.1350\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-05-21 10:00-0700\n" "POT-Creation-Date: 2012-05-22 10:00-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -85,7 +85,7 @@ msgid "Return to contact editor"
msgstr "" msgstr ""
#: ../../mod/crepair.php:148 ../../mod/settings.php:555 #: ../../mod/crepair.php:148 ../../mod/settings.php:555
#: ../../mod/settings.php:581 ../../mod/admin.php:643 ../../mod/admin.php:652 #: ../../mod/settings.php:581 ../../mod/admin.php:656 ../../mod/admin.php:665
msgid "Name" msgid "Name"
msgstr "" msgstr ""
@ -129,9 +129,9 @@ msgstr ""
#: ../../mod/localtime.php:45 ../../mod/contacts.php:322 #: ../../mod/localtime.php:45 ../../mod/contacts.php:322
#: ../../mod/settings.php:553 ../../mod/settings.php:699 #: ../../mod/settings.php:553 ../../mod/settings.php:699
#: ../../mod/settings.php:760 ../../mod/settings.php:964 #: ../../mod/settings.php:760 ../../mod/settings.php:964
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:404 #: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:417
#: ../../mod/admin.php:640 ../../mod/admin.php:776 ../../mod/admin.php:975 #: ../../mod/admin.php:653 ../../mod/admin.php:789 ../../mod/admin.php:988
#: ../../mod/admin.php:1062 ../../mod/profiles.php:534 #: ../../mod/admin.php:1075 ../../mod/profiles.php:534
#: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:605 #: ../../mod/invite.php:119 ../../addon/facebook/facebook.php:605
#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93 #: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93
#: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158 #: ../../addon/nsfw/nsfw.php:57 ../../addon/planets/planets.php:158
@ -161,7 +161,7 @@ msgstr ""
#: ../../view/theme/diabook/theme.php:752 #: ../../view/theme/diabook/theme.php:752
#: ../../view/theme/diabook/config.php:190 #: ../../view/theme/diabook/config.php:190
#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70 #: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70
#: ../../include/conversation.php:558 #: ../../include/conversation.php:559
msgid "Submit" msgid "Submit"
msgstr "" msgstr ""
@ -215,7 +215,7 @@ msgstr ""
msgid "Edit event" msgid "Edit event"
msgstr "" msgstr ""
#: ../../mod/events.php:300 ../../include/text.php:1054 #: ../../mod/events.php:300 ../../include/text.php:1060
msgid "link to source" msgid "link to source"
msgstr "" msgstr ""
@ -397,7 +397,7 @@ msgstr ""
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70 #: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/communityhome/communityhome.php:163 #: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:565 ../../include/text.php:1305 #: ../../view/theme/diabook/theme.php:565 ../../include/text.php:1311
#: ../../include/diaspora.php:1662 ../../include/conversation.php:53 #: ../../include/diaspora.php:1662 ../../include/conversation.php:53
#: ../../include/conversation.php:126 #: ../../include/conversation.php:126
msgid "photo" msgid "photo"
@ -487,7 +487,7 @@ msgstr ""
msgid "Use as profile photo" msgid "Use as profile photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:1085 ../../include/conversation.php:483 #: ../../mod/photos.php:1085 ../../include/conversation.php:484
msgid "Private Message" msgid "Private Message"
msgstr "" msgstr ""
@ -519,44 +519,44 @@ msgstr ""
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "" msgstr ""
#: ../../mod/photos.php:1218 ../../include/conversation.php:532 #: ../../mod/photos.php:1218 ../../include/conversation.php:533
msgid "I like this (toggle)" msgid "I like this (toggle)"
msgstr "" msgstr ""
#: ../../mod/photos.php:1219 ../../include/conversation.php:533 #: ../../mod/photos.php:1219 ../../include/conversation.php:534
msgid "I don't like this (toggle)" msgid "I don't like this (toggle)"
msgstr "" msgstr ""
#: ../../mod/photos.php:1220 ../../include/conversation.php:967 #: ../../mod/photos.php:1220 ../../include/conversation.php:968
msgid "Share" msgid "Share"
msgstr "" msgstr ""
#: ../../mod/photos.php:1221 ../../mod/editpost.php:104 #: ../../mod/photos.php:1221 ../../mod/editpost.php:104
#: ../../mod/wallmessage.php:145 ../../mod/message.php:214 #: ../../mod/wallmessage.php:145 ../../mod/message.php:214
#: ../../mod/message.php:408 ../../include/conversation.php:364 #: ../../mod/message.php:408 ../../include/conversation.php:365
#: ../../include/conversation.php:709 ../../include/conversation.php:986 #: ../../include/conversation.php:710 ../../include/conversation.php:987
msgid "Please wait" msgid "Please wait"
msgstr "" msgstr ""
#: ../../mod/photos.php:1237 ../../mod/photos.php:1277 #: ../../mod/photos.php:1237 ../../mod/photos.php:1277
#: ../../mod/photos.php:1308 ../../include/conversation.php:555 #: ../../mod/photos.php:1308 ../../include/conversation.php:556
msgid "This is you" msgid "This is you"
msgstr "" msgstr ""
#: ../../mod/photos.php:1239 ../../mod/photos.php:1279 #: ../../mod/photos.php:1239 ../../mod/photos.php:1279
#: ../../mod/photos.php:1310 ../../include/conversation.php:557 #: ../../mod/photos.php:1310 ../../include/conversation.php:558
#: ../../boot.php:516 #: ../../boot.php:516
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: ../../mod/photos.php:1241 ../../mod/editpost.php:125 #: ../../mod/photos.php:1241 ../../mod/editpost.php:125
#: ../../include/conversation.php:567 ../../include/conversation.php:1004 #: ../../include/conversation.php:568 ../../include/conversation.php:1005
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
#: ../../mod/photos.php:1338 ../../mod/settings.php:616 #: ../../mod/photos.php:1338 ../../mod/settings.php:616
#: ../../mod/settings.php:697 ../../mod/group.php:168 ../../mod/admin.php:647 #: ../../mod/settings.php:697 ../../mod/group.php:168 ../../mod/admin.php:660
#: ../../include/conversation.php:321 ../../include/conversation.php:587 #: ../../include/conversation.php:322 ../../include/conversation.php:588
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -621,28 +621,28 @@ msgstr ""
msgid "Edit post" msgid "Edit post"
msgstr "" msgstr ""
#: ../../mod/editpost.php:80 ../../include/conversation.php:953 #: ../../mod/editpost.php:80 ../../include/conversation.php:954
msgid "Post to Email" msgid "Post to Email"
msgstr "" msgstr ""
#: ../../mod/editpost.php:95 ../../mod/settings.php:615 #: ../../mod/editpost.php:95 ../../mod/settings.php:615
#: ../../include/conversation.php:574 #: ../../include/conversation.php:575
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143 #: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
#: ../../mod/message.php:212 ../../mod/message.php:406 #: ../../mod/message.php:212 ../../mod/message.php:406
#: ../../include/conversation.php:968 #: ../../include/conversation.php:969
msgid "Upload photo" msgid "Upload photo"
msgstr "" msgstr ""
#: ../../mod/editpost.php:97 ../../include/conversation.php:970 #: ../../mod/editpost.php:97 ../../include/conversation.php:971
msgid "Attach file" msgid "Attach file"
msgstr "" msgstr ""
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144 #: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
#: ../../mod/message.php:213 ../../mod/message.php:407 #: ../../mod/message.php:213 ../../mod/message.php:407
#: ../../include/conversation.php:972 #: ../../include/conversation.php:973
msgid "Insert web link" msgid "Insert web link"
msgstr "" msgstr ""
@ -658,35 +658,35 @@ msgstr ""
msgid "Insert Vorbis [.ogg] audio" msgid "Insert Vorbis [.ogg] audio"
msgstr "" msgstr ""
#: ../../mod/editpost.php:102 ../../include/conversation.php:978 #: ../../mod/editpost.php:102 ../../include/conversation.php:979
msgid "Set your location" msgid "Set your location"
msgstr "" msgstr ""
#: ../../mod/editpost.php:103 ../../include/conversation.php:980 #: ../../mod/editpost.php:103 ../../include/conversation.php:981
msgid "Clear browser location" msgid "Clear browser location"
msgstr "" msgstr ""
#: ../../mod/editpost.php:105 ../../include/conversation.php:987 #: ../../mod/editpost.php:105 ../../include/conversation.php:988
msgid "Permission settings" msgid "Permission settings"
msgstr "" msgstr ""
#: ../../mod/editpost.php:113 ../../include/conversation.php:996 #: ../../mod/editpost.php:113 ../../include/conversation.php:997
msgid "CC: email addresses" msgid "CC: email addresses"
msgstr "" msgstr ""
#: ../../mod/editpost.php:114 ../../include/conversation.php:997 #: ../../mod/editpost.php:114 ../../include/conversation.php:998
msgid "Public post" msgid "Public post"
msgstr "" msgstr ""
#: ../../mod/editpost.php:117 ../../include/conversation.php:983 #: ../../mod/editpost.php:117 ../../include/conversation.php:984
msgid "Set title" msgid "Set title"
msgstr "" msgstr ""
#: ../../mod/editpost.php:119 ../../include/conversation.php:985 #: ../../mod/editpost.php:119 ../../include/conversation.php:986
msgid "Categories (comma-separated list)" msgid "Categories (comma-separated list)"
msgstr "" msgstr ""
#: ../../mod/editpost.php:120 ../../include/conversation.php:999 #: ../../mod/editpost.php:120 ../../include/conversation.php:1000
msgid "Example: bob@example.com, mary@example.com" msgid "Example: bob@example.com, mary@example.com"
msgstr "" msgstr ""
@ -1263,7 +1263,7 @@ msgid "if applicable"
msgstr "" msgstr ""
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 #: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/admin.php:645 #: ../../mod/admin.php:658
msgid "Approve" msgid "Approve"
msgstr "" msgstr ""
@ -1464,12 +1464,12 @@ msgid "View all contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347 #: ../../mod/contacts.php:290 ../../mod/contacts.php:347
#: ../../mod/admin.php:649 #: ../../mod/admin.php:662
msgid "Unblock" msgid "Unblock"
msgstr "" msgstr ""
#: ../../mod/contacts.php:290 ../../mod/contacts.php:347 #: ../../mod/contacts.php:290 ../../mod/contacts.php:347
#: ../../mod/admin.php:648 #: ../../mod/admin.php:661
msgid "Block" msgid "Block"
msgstr "" msgstr ""
@ -1562,7 +1562,7 @@ msgstr ""
msgid "Update public posts" msgid "Update public posts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:344 ../../mod/admin.php:1120 #: ../../mod/contacts.php:344 ../../mod/admin.php:1133
msgid "Update now" msgid "Update now"
msgstr "" msgstr ""
@ -1775,7 +1775,7 @@ msgstr ""
msgid "Remove account" msgid "Remove account"
msgstr "" msgstr ""
#: ../../mod/settings.php:88 ../../mod/admin.php:735 ../../mod/admin.php:940 #: ../../mod/settings.php:88 ../../mod/admin.php:748 ../../mod/admin.php:953
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:638 #: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:638
#: ../../view/theme/diabook/theme.php:768 ../../include/nav.php:137 #: ../../view/theme/diabook/theme.php:768 ../../include/nav.php:137
msgid "Settings" msgid "Settings"
@ -2011,7 +2011,7 @@ msgstr ""
msgid "Don't show emoticons" msgid "Don't show emoticons"
msgstr "" msgstr ""
#: ../../mod/settings.php:835 ../../mod/admin.php:180 ../../mod/admin.php:621 #: ../../mod/settings.php:835 ../../mod/admin.php:180 ../../mod/admin.php:634
msgid "Normal Account" msgid "Normal Account"
msgstr "" msgstr ""
@ -2019,7 +2019,7 @@ msgstr ""
msgid "This account is a normal personal profile" msgid "This account is a normal personal profile"
msgstr "" msgstr ""
#: ../../mod/settings.php:839 ../../mod/admin.php:181 ../../mod/admin.php:622 #: ../../mod/settings.php:839 ../../mod/admin.php:181 ../../mod/admin.php:635
msgid "Soapbox Account" msgid "Soapbox Account"
msgstr "" msgstr ""
@ -2027,7 +2027,7 @@ msgstr ""
msgid "Automatically approve all connection/friend requests as read-only fans" msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "" msgstr ""
#: ../../mod/settings.php:843 ../../mod/admin.php:182 ../../mod/admin.php:623 #: ../../mod/settings.php:843 ../../mod/admin.php:182 ../../mod/admin.php:636
msgid "Community/Celebrity Account" msgid "Community/Celebrity Account"
msgstr "" msgstr ""
@ -2035,7 +2035,7 @@ msgstr ""
msgid "Automatically approve all connection/friend requests as read-write fans" msgid "Automatically approve all connection/friend requests as read-write fans"
msgstr "" msgstr ""
#: ../../mod/settings.php:847 ../../mod/admin.php:183 ../../mod/admin.php:624 #: ../../mod/settings.php:847 ../../mod/admin.php:183 ../../mod/admin.php:637
msgid "Automatic Friend Account" msgid "Automatic Friend Account"
msgstr "" msgstr ""
@ -2410,7 +2410,7 @@ msgid "No recipient."
msgstr "" msgstr ""
#: ../../mod/wallmessage.php:124 ../../mod/message.php:171 #: ../../mod/wallmessage.php:124 ../../mod/message.php:171
#: ../../include/conversation.php:921 #: ../../include/conversation.php:922
msgid "Please enter a link URL:" msgid "Please enter a link URL:"
msgstr "" msgstr ""
@ -2769,7 +2769,7 @@ msgstr ""
msgid "Your invitation ID: " msgid "Your invitation ID: "
msgstr "" msgstr ""
#: ../../mod/register.php:532 ../../mod/admin.php:405 #: ../../mod/register.php:532 ../../mod/admin.php:418
msgid "Registration" msgid "Registration"
msgstr "" msgstr ""
@ -2825,7 +2825,7 @@ msgid "%1$s doesn't like %2$s's %3$s"
msgstr "" msgstr ""
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:156 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:156
#: ../../mod/admin.php:684 ../../mod/admin.php:883 ../../mod/display.php:37 #: ../../mod/admin.php:697 ../../mod/admin.php:896 ../../mod/display.php:37
#: ../../mod/display.php:142 ../../include/items.php:3096 #: ../../mod/display.php:142 ../../include/items.php:3096
msgid "Item not found." msgid "Item not found."
msgstr "" msgstr ""
@ -2864,34 +2864,34 @@ msgstr ""
msgid "Empty post discarded." msgid "Empty post discarded."
msgstr "" msgstr ""
#: ../../mod/item.php:381 ../../mod/wall_upload.php:99 #: ../../mod/item.php:377 ../../mod/wall_upload.php:99
#: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115 #: ../../mod/wall_upload.php:108 ../../mod/wall_upload.php:115
#: ../../include/message.php:144 #: ../../include/message.php:144
msgid "Wall Photos" msgid "Wall Photos"
msgstr "" msgstr ""
#: ../../mod/item.php:790 #: ../../mod/item.php:786
msgid "System error. Post not saved." msgid "System error. Post not saved."
msgstr "" msgstr ""
#: ../../mod/item.php:815 #: ../../mod/item.php:811
#, php-format #, php-format
msgid "" msgid ""
"This message was sent to you by %s, a member of the Friendica social network." "This message was sent to you by %s, a member of the Friendica social network."
msgstr "" msgstr ""
#: ../../mod/item.php:817 #: ../../mod/item.php:813
#, php-format #, php-format
msgid "You may visit them online at %s" msgid "You may visit them online at %s"
msgstr "" msgstr ""
#: ../../mod/item.php:818 #: ../../mod/item.php:814
msgid "" msgid ""
"Please contact the sender by replying to this post if you do not wish to " "Please contact the sender by replying to this post if you do not wish to "
"receive these messages." "receive these messages."
msgstr "" msgstr ""
#: ../../mod/item.php:820 #: ../../mod/item.php:816
#, php-format #, php-format
msgid "%s posted an update." msgid "%s posted an update."
msgstr "" msgstr ""
@ -3056,19 +3056,19 @@ msgstr ""
msgid "Theme settings updated." msgid "Theme settings updated."
msgstr "" msgstr ""
#: ../../mod/admin.php:96 ../../mod/admin.php:403 #: ../../mod/admin.php:96 ../../mod/admin.php:416
msgid "Site" msgid "Site"
msgstr "" msgstr ""
#: ../../mod/admin.php:97 ../../mod/admin.php:639 ../../mod/admin.php:651 #: ../../mod/admin.php:97 ../../mod/admin.php:652 ../../mod/admin.php:664
msgid "Users" msgid "Users"
msgstr "" msgstr ""
#: ../../mod/admin.php:98 ../../mod/admin.php:733 ../../mod/admin.php:775 #: ../../mod/admin.php:98 ../../mod/admin.php:746 ../../mod/admin.php:788
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: ../../mod/admin.php:99 ../../mod/admin.php:938 ../../mod/admin.php:974 #: ../../mod/admin.php:99 ../../mod/admin.php:951 ../../mod/admin.php:987
msgid "Themes" msgid "Themes"
msgstr "" msgstr ""
@ -3080,7 +3080,7 @@ msgstr ""
msgid "Software Update" msgid "Software Update"
msgstr "" msgstr ""
#: ../../mod/admin.php:115 ../../mod/admin.php:1061 #: ../../mod/admin.php:115 ../../mod/admin.php:1074
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
@ -3088,529 +3088,533 @@ msgstr ""
msgid "User registrations waiting for confirmation" msgid "User registrations waiting for confirmation"
msgstr "" msgstr ""
#: ../../mod/admin.php:195 ../../mod/admin.php:402 ../../mod/admin.php:638 #: ../../mod/admin.php:202
#: ../../mod/admin.php:732 ../../mod/admin.php:774 ../../mod/admin.php:937 msgid "Message queues"
#: ../../mod/admin.php:973 ../../mod/admin.php:1060 msgstr ""
#: ../../mod/admin.php:207 ../../mod/admin.php:415 ../../mod/admin.php:651
#: ../../mod/admin.php:745 ../../mod/admin.php:787 ../../mod/admin.php:950
#: ../../mod/admin.php:986 ../../mod/admin.php:1073
msgid "Administration" msgid "Administration"
msgstr "" msgstr ""
#: ../../mod/admin.php:196 #: ../../mod/admin.php:208
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
#: ../../mod/admin.php:197 #: ../../mod/admin.php:210
msgid "Registered users" msgid "Registered users"
msgstr "" msgstr ""
#: ../../mod/admin.php:199 #: ../../mod/admin.php:212
msgid "Pending registrations" msgid "Pending registrations"
msgstr "" msgstr ""
#: ../../mod/admin.php:200 #: ../../mod/admin.php:213
msgid "Version" msgid "Version"
msgstr "" msgstr ""
#: ../../mod/admin.php:202 #: ../../mod/admin.php:215
msgid "Active plugins" msgid "Active plugins"
msgstr "" msgstr ""
#: ../../mod/admin.php:341 #: ../../mod/admin.php:354
msgid "Site settings updated." msgid "Site settings updated."
msgstr "" msgstr ""
#: ../../mod/admin.php:389 #: ../../mod/admin.php:402
msgid "Closed" msgid "Closed"
msgstr "" msgstr ""
#: ../../mod/admin.php:390 #: ../../mod/admin.php:403
msgid "Requires approval" msgid "Requires approval"
msgstr "" msgstr ""
#: ../../mod/admin.php:391 #: ../../mod/admin.php:404
msgid "Open" msgid "Open"
msgstr "" msgstr ""
#: ../../mod/admin.php:395 #: ../../mod/admin.php:408
msgid "No SSL policy, links will track page SSL state" msgid "No SSL policy, links will track page SSL state"
msgstr "" msgstr ""
#: ../../mod/admin.php:396 #: ../../mod/admin.php:409
msgid "Force all links to use SSL" msgid "Force all links to use SSL"
msgstr "" msgstr ""
#: ../../mod/admin.php:397 #: ../../mod/admin.php:410
msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "" msgstr ""
#: ../../mod/admin.php:406 #: ../../mod/admin.php:419
msgid "File upload" msgid "File upload"
msgstr "" msgstr ""
#: ../../mod/admin.php:407 #: ../../mod/admin.php:420
msgid "Policies" msgid "Policies"
msgstr "" msgstr ""
#: ../../mod/admin.php:408 #: ../../mod/admin.php:421
msgid "Advanced" msgid "Advanced"
msgstr "" msgstr ""
#: ../../mod/admin.php:412 ../../addon/statusnet/statusnet.php:552 #: ../../mod/admin.php:425 ../../addon/statusnet/statusnet.php:552
msgid "Site name" msgid "Site name"
msgstr "" msgstr ""
#: ../../mod/admin.php:413 #: ../../mod/admin.php:426
msgid "Banner/Logo" msgid "Banner/Logo"
msgstr "" msgstr ""
#: ../../mod/admin.php:414 #: ../../mod/admin.php:427
msgid "System language" msgid "System language"
msgstr "" msgstr ""
#: ../../mod/admin.php:415 #: ../../mod/admin.php:428
msgid "System theme" msgid "System theme"
msgstr "" msgstr ""
#: ../../mod/admin.php:415 #: ../../mod/admin.php:428
msgid "" msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' " "Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>" "id='cnftheme'>change theme settings</a>"
msgstr "" msgstr ""
#: ../../mod/admin.php:416 #: ../../mod/admin.php:429
msgid "SSL link policy" msgid "SSL link policy"
msgstr "" msgstr ""
#: ../../mod/admin.php:416 #: ../../mod/admin.php:429
msgid "Determines whether generated links should be forced to use SSL" msgid "Determines whether generated links should be forced to use SSL"
msgstr "" msgstr ""
#: ../../mod/admin.php:417 #: ../../mod/admin.php:430
msgid "Maximum image size" msgid "Maximum image size"
msgstr "" msgstr ""
#: ../../mod/admin.php:417 #: ../../mod/admin.php:430
msgid "" msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no " "Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits." "limits."
msgstr "" msgstr ""
#: ../../mod/admin.php:419 #: ../../mod/admin.php:432
msgid "Register policy" msgid "Register policy"
msgstr "" msgstr ""
#: ../../mod/admin.php:420 #: ../../mod/admin.php:433
msgid "Register text" msgid "Register text"
msgstr "" msgstr ""
#: ../../mod/admin.php:420 #: ../../mod/admin.php:433
msgid "Will be displayed prominently on the registration page." msgid "Will be displayed prominently on the registration page."
msgstr "" msgstr ""
#: ../../mod/admin.php:421 #: ../../mod/admin.php:434
msgid "Accounts abandoned after x days" msgid "Accounts abandoned after x days"
msgstr "" msgstr ""
#: ../../mod/admin.php:421 #: ../../mod/admin.php:434
msgid "" msgid ""
"Will not waste system resources polling external sites for abandonded " "Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit." "accounts. Enter 0 for no time limit."
msgstr "" msgstr ""
#: ../../mod/admin.php:422 #: ../../mod/admin.php:435
msgid "Allowed friend domains" msgid "Allowed friend domains"
msgstr "" msgstr ""
#: ../../mod/admin.php:422 #: ../../mod/admin.php:435
msgid "" msgid ""
"Comma separated list of domains which are allowed to establish friendships " "Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains" "with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "" msgstr ""
#: ../../mod/admin.php:423 #: ../../mod/admin.php:436
msgid "Allowed email domains" msgid "Allowed email domains"
msgstr "" msgstr ""
#: ../../mod/admin.php:423 #: ../../mod/admin.php:436
msgid "" msgid ""
"Comma separated list of domains which are allowed in email addresses for " "Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any " "registrations to this site. Wildcards are accepted. Empty to allow any "
"domains" "domains"
msgstr "" msgstr ""
#: ../../mod/admin.php:424 #: ../../mod/admin.php:437
msgid "Block public" msgid "Block public"
msgstr "" msgstr ""
#: ../../mod/admin.php:424 #: ../../mod/admin.php:437
msgid "" msgid ""
"Check to block public access to all otherwise public personal pages on this " "Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in." "site unless you are currently logged in."
msgstr "" msgstr ""
#: ../../mod/admin.php:425 #: ../../mod/admin.php:438
msgid "Force publish" msgid "Force publish"
msgstr "" msgstr ""
#: ../../mod/admin.php:425 #: ../../mod/admin.php:438
msgid "" msgid ""
"Check to force all profiles on this site to be listed in the site directory." "Check to force all profiles on this site to be listed in the site directory."
msgstr "" msgstr ""
#: ../../mod/admin.php:426 #: ../../mod/admin.php:439
msgid "Global directory update URL" msgid "Global directory update URL"
msgstr "" msgstr ""
#: ../../mod/admin.php:426 #: ../../mod/admin.php:439
msgid "" msgid ""
"URL to update the global directory. If this is not set, the global directory " "URL to update the global directory. If this is not set, the global directory "
"is completely unavailable to the application." "is completely unavailable to the application."
msgstr "" msgstr ""
#: ../../mod/admin.php:428 #: ../../mod/admin.php:441
msgid "Block multiple registrations" msgid "Block multiple registrations"
msgstr "" msgstr ""
#: ../../mod/admin.php:428 #: ../../mod/admin.php:441
msgid "Disallow users to register additional accounts for use as pages." msgid "Disallow users to register additional accounts for use as pages."
msgstr "" msgstr ""
#: ../../mod/admin.php:429 #: ../../mod/admin.php:442
msgid "OpenID support" msgid "OpenID support"
msgstr "" msgstr ""
#: ../../mod/admin.php:429 #: ../../mod/admin.php:442
msgid "OpenID support for registration and logins." msgid "OpenID support for registration and logins."
msgstr "" msgstr ""
#: ../../mod/admin.php:430 #: ../../mod/admin.php:443
msgid "Fullname check" msgid "Fullname check"
msgstr "" msgstr ""
#: ../../mod/admin.php:430 #: ../../mod/admin.php:443
msgid "" msgid ""
"Force users to register with a space between firstname and lastname in Full " "Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure" "name, as an antispam measure"
msgstr "" msgstr ""
#: ../../mod/admin.php:431 #: ../../mod/admin.php:444
msgid "UTF-8 Regular expressions" msgid "UTF-8 Regular expressions"
msgstr "" msgstr ""
#: ../../mod/admin.php:431 #: ../../mod/admin.php:444
msgid "Use PHP UTF8 regular expressions" msgid "Use PHP UTF8 regular expressions"
msgstr "" msgstr ""
#: ../../mod/admin.php:432 #: ../../mod/admin.php:445
msgid "Show Community Page" msgid "Show Community Page"
msgstr "" msgstr ""
#: ../../mod/admin.php:432 #: ../../mod/admin.php:445
msgid "" msgid ""
"Display a Community page showing all recent public postings on this site." "Display a Community page showing all recent public postings on this site."
msgstr "" msgstr ""
#: ../../mod/admin.php:433 #: ../../mod/admin.php:446
msgid "Enable OStatus support" msgid "Enable OStatus support"
msgstr "" msgstr ""
#: ../../mod/admin.php:433 #: ../../mod/admin.php:446
msgid "" msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " "Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be " "communications in OStatus are public, so privacy warnings will be "
"occasionally displayed." "occasionally displayed."
msgstr "" msgstr ""
#: ../../mod/admin.php:434 #: ../../mod/admin.php:447
msgid "Enable Diaspora support" msgid "Enable Diaspora support"
msgstr "" msgstr ""
#: ../../mod/admin.php:434 #: ../../mod/admin.php:447
msgid "Provide built-in Diaspora network compatibility." msgid "Provide built-in Diaspora network compatibility."
msgstr "" msgstr ""
#: ../../mod/admin.php:435 #: ../../mod/admin.php:448
msgid "Only allow Friendica contacts" msgid "Only allow Friendica contacts"
msgstr "" msgstr ""
#: ../../mod/admin.php:435 #: ../../mod/admin.php:448
msgid "" msgid ""
"All contacts must use Friendica protocols. All other built-in communication " "All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled." "protocols disabled."
msgstr "" msgstr ""
#: ../../mod/admin.php:436 #: ../../mod/admin.php:449
msgid "Verify SSL" msgid "Verify SSL"
msgstr "" msgstr ""
#: ../../mod/admin.php:436 #: ../../mod/admin.php:449
msgid "" msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you " "If you wish, you can turn on strict certificate checking. This will mean you "
"cannot connect (at all) to self-signed SSL sites." "cannot connect (at all) to self-signed SSL sites."
msgstr "" msgstr ""
#: ../../mod/admin.php:437 #: ../../mod/admin.php:450
msgid "Proxy user" msgid "Proxy user"
msgstr "" msgstr ""
#: ../../mod/admin.php:438 #: ../../mod/admin.php:451
msgid "Proxy URL" msgid "Proxy URL"
msgstr "" msgstr ""
#: ../../mod/admin.php:439 #: ../../mod/admin.php:452
msgid "Network timeout" msgid "Network timeout"
msgstr "" msgstr ""
#: ../../mod/admin.php:439 #: ../../mod/admin.php:452
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "" msgstr ""
#: ../../mod/admin.php:440 #: ../../mod/admin.php:453
msgid "Delivery interval" msgid "Delivery interval"
msgstr "" msgstr ""
#: ../../mod/admin.php:440 #: ../../mod/admin.php:453
msgid "" msgid ""
"Delay background delivery processes by this many seconds to reduce system " "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 " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers." "for large dedicated servers."
msgstr "" msgstr ""
#: ../../mod/admin.php:441 #: ../../mod/admin.php:454
msgid "Poll interval" msgid "Poll interval"
msgstr "" msgstr ""
#: ../../mod/admin.php:441 #: ../../mod/admin.php:454
msgid "" msgid ""
"Delay background polling processes by this many seconds to reduce system " "Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval." "load. If 0, use delivery interval."
msgstr "" msgstr ""
#: ../../mod/admin.php:442 #: ../../mod/admin.php:455
msgid "Maximum Load Average" msgid "Maximum Load Average"
msgstr "" msgstr ""
#: ../../mod/admin.php:442 #: ../../mod/admin.php:455
msgid "" msgid ""
"Maximum system load before delivery and poll processes are deferred - " "Maximum system load before delivery and poll processes are deferred - "
"default 50." "default 50."
msgstr "" msgstr ""
#: ../../mod/admin.php:456 #: ../../mod/admin.php:469
msgid "Update has been marked successful" msgid "Update has been marked successful"
msgstr "" msgstr ""
#: ../../mod/admin.php:466 #: ../../mod/admin.php:479
#, php-format #, php-format
msgid "Executing %s failed. Check system logs." msgid "Executing %s failed. Check system logs."
msgstr "" msgstr ""
#: ../../mod/admin.php:469 #: ../../mod/admin.php:482
#, php-format #, php-format
msgid "Update %s was successfully applied." msgid "Update %s was successfully applied."
msgstr "" msgstr ""
#: ../../mod/admin.php:473 #: ../../mod/admin.php:486
#, php-format #, php-format
msgid "Update %s did not return a status. Unknown if it succeeded." msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "" msgstr ""
#: ../../mod/admin.php:476 #: ../../mod/admin.php:489
#, php-format #, php-format
msgid "Update function %s could not be found." msgid "Update function %s could not be found."
msgstr "" msgstr ""
#: ../../mod/admin.php:491 #: ../../mod/admin.php:504
msgid "No failed updates." msgid "No failed updates."
msgstr "" msgstr ""
#: ../../mod/admin.php:495 #: ../../mod/admin.php:508
msgid "Failed Updates" msgid "Failed Updates"
msgstr "" msgstr ""
#: ../../mod/admin.php:496 #: ../../mod/admin.php:509
msgid "" msgid ""
"This does not include updates prior to 1139, which did not return a status." "This does not include updates prior to 1139, which did not return a status."
msgstr "" msgstr ""
#: ../../mod/admin.php:497 #: ../../mod/admin.php:510
msgid "Mark success (if update was manually applied)" msgid "Mark success (if update was manually applied)"
msgstr "" msgstr ""
#: ../../mod/admin.php:498 #: ../../mod/admin.php:511
msgid "Attempt to execute this update step automatically" msgid "Attempt to execute this update step automatically"
msgstr "" msgstr ""
#: ../../mod/admin.php:523 #: ../../mod/admin.php:536
#, php-format #, php-format
msgid "%s user blocked/unblocked" msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked" msgid_plural "%s users blocked/unblocked"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../mod/admin.php:530 #: ../../mod/admin.php:543
#, php-format #, php-format
msgid "%s user deleted" msgid "%s user deleted"
msgid_plural "%s users deleted" msgid_plural "%s users deleted"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../mod/admin.php:569 #: ../../mod/admin.php:582
#, php-format #, php-format
msgid "User '%s' deleted" msgid "User '%s' deleted"
msgstr "" msgstr ""
#: ../../mod/admin.php:577 #: ../../mod/admin.php:590
#, php-format #, php-format
msgid "User '%s' unblocked" msgid "User '%s' unblocked"
msgstr "" msgstr ""
#: ../../mod/admin.php:577 #: ../../mod/admin.php:590
#, php-format #, php-format
msgid "User '%s' blocked" msgid "User '%s' blocked"
msgstr "" msgstr ""
#: ../../mod/admin.php:641 #: ../../mod/admin.php:654
msgid "select all" msgid "select all"
msgstr "" msgstr ""
#: ../../mod/admin.php:642 #: ../../mod/admin.php:655
msgid "User registrations waiting for confirm" msgid "User registrations waiting for confirm"
msgstr "" msgstr ""
#: ../../mod/admin.php:643 #: ../../mod/admin.php:656
msgid "Request date" msgid "Request date"
msgstr "" msgstr ""
#: ../../mod/admin.php:643 ../../mod/admin.php:652 #: ../../mod/admin.php:656 ../../mod/admin.php:665
#: ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:79
msgid "Email" msgid "Email"
msgstr "" msgstr ""
#: ../../mod/admin.php:644 #: ../../mod/admin.php:657
msgid "No registrations." msgid "No registrations."
msgstr "" msgstr ""
#: ../../mod/admin.php:646 #: ../../mod/admin.php:659
msgid "Deny" msgid "Deny"
msgstr "" msgstr ""
#: ../../mod/admin.php:652 #: ../../mod/admin.php:665
msgid "Register date" msgid "Register date"
msgstr "" msgstr ""
#: ../../mod/admin.php:652 #: ../../mod/admin.php:665
msgid "Last login" msgid "Last login"
msgstr "" msgstr ""
#: ../../mod/admin.php:652 #: ../../mod/admin.php:665
msgid "Last item" msgid "Last item"
msgstr "" msgstr ""
#: ../../mod/admin.php:652 #: ../../mod/admin.php:665
msgid "Account" msgid "Account"
msgstr "" msgstr ""
#: ../../mod/admin.php:654 #: ../../mod/admin.php:667
msgid "" msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on " "Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?" "this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "" msgstr ""
#: ../../mod/admin.php:655 #: ../../mod/admin.php:668
msgid "" msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this " "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?" "site will be permanently deleted!\\n\\nAre you sure?"
msgstr "" msgstr ""
#: ../../mod/admin.php:696 #: ../../mod/admin.php:709
#, php-format #, php-format
msgid "Plugin %s disabled." msgid "Plugin %s disabled."
msgstr "" msgstr ""
#: ../../mod/admin.php:700 #: ../../mod/admin.php:713
#, php-format #, php-format
msgid "Plugin %s enabled." msgid "Plugin %s enabled."
msgstr "" msgstr ""
#: ../../mod/admin.php:710 ../../mod/admin.php:908 #: ../../mod/admin.php:723 ../../mod/admin.php:921
msgid "Disable" msgid "Disable"
msgstr "" msgstr ""
#: ../../mod/admin.php:712 ../../mod/admin.php:910 #: ../../mod/admin.php:725 ../../mod/admin.php:923
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: ../../mod/admin.php:734 ../../mod/admin.php:939 #: ../../mod/admin.php:747 ../../mod/admin.php:952
msgid "Toggle" msgid "Toggle"
msgstr "" msgstr ""
#: ../../mod/admin.php:742 ../../mod/admin.php:949 #: ../../mod/admin.php:755 ../../mod/admin.php:962
msgid "Author: " msgid "Author: "
msgstr "" msgstr ""
#: ../../mod/admin.php:743 ../../mod/admin.php:950 #: ../../mod/admin.php:756 ../../mod/admin.php:963
msgid "Maintainer: " msgid "Maintainer: "
msgstr "" msgstr ""
#: ../../mod/admin.php:872 #: ../../mod/admin.php:885
msgid "No themes found." msgid "No themes found."
msgstr "" msgstr ""
#: ../../mod/admin.php:931 #: ../../mod/admin.php:944
msgid "Screenshot" msgid "Screenshot"
msgstr "" msgstr ""
#: ../../mod/admin.php:979 #: ../../mod/admin.php:992
msgid "[Experimental]" msgid "[Experimental]"
msgstr "" msgstr ""
#: ../../mod/admin.php:980 #: ../../mod/admin.php:993
msgid "[Unsupported]" msgid "[Unsupported]"
msgstr "" msgstr ""
#: ../../mod/admin.php:1007 #: ../../mod/admin.php:1020
msgid "Log settings updated." msgid "Log settings updated."
msgstr "" msgstr ""
#: ../../mod/admin.php:1063 #: ../../mod/admin.php:1076
msgid "Clear" msgid "Clear"
msgstr "" msgstr ""
#: ../../mod/admin.php:1069 #: ../../mod/admin.php:1082
msgid "Debugging" msgid "Debugging"
msgstr "" msgstr ""
#: ../../mod/admin.php:1070 #: ../../mod/admin.php:1083
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: ../../mod/admin.php:1070 #: ../../mod/admin.php:1083
msgid "" msgid ""
"Must be writable by web server. Relative to your Friendica top-level " "Must be writable by web server. Relative to your Friendica top-level "
"directory." "directory."
msgstr "" msgstr ""
#: ../../mod/admin.php:1071 #: ../../mod/admin.php:1084
msgid "Log level" msgid "Log level"
msgstr "" msgstr ""
#: ../../mod/admin.php:1121 #: ../../mod/admin.php:1134
msgid "Close" msgid "Close"
msgstr "" msgstr ""
#: ../../mod/admin.php:1127 #: ../../mod/admin.php:1140
msgid "FTP Host" msgid "FTP Host"
msgstr "" msgstr ""
#: ../../mod/admin.php:1128 #: ../../mod/admin.php:1141
msgid "FTP Path" msgid "FTP Path"
msgstr "" msgstr ""
#: ../../mod/admin.php:1129 #: ../../mod/admin.php:1142
msgid "FTP User" msgid "FTP User"
msgstr "" msgstr ""
#: ../../mod/admin.php:1130 #: ../../mod/admin.php:1143
msgid "FTP Password" msgid "FTP Password"
msgstr "" msgstr ""
@ -4047,7 +4051,7 @@ msgstr ""
msgid "Edit visibility" msgid "Edit visibility"
msgstr "" msgstr ""
#: ../../mod/filer.php:29 ../../include/conversation.php:925 #: ../../mod/filer.php:29 ../../include/conversation.php:926
msgid "Save to Folder:" msgid "Save to Folder:"
msgstr "" msgstr ""
@ -4650,7 +4654,7 @@ msgid "Forums"
msgstr "" msgstr ""
#: ../../addon/page/page.php:63 ../../addon/showmore/showmore.php:87 #: ../../addon/page/page.php:63 ../../addon/showmore/showmore.php:87
#: ../../include/contact_widgets.php:188 ../../include/conversation.php:469 #: ../../include/contact_widgets.php:188 ../../include/conversation.php:470
#: ../../boot.php:517 #: ../../boot.php:517
msgid "show more" msgid "show more"
msgstr "" msgstr ""
@ -4695,7 +4699,7 @@ msgid "Latest likes"
msgstr "" msgstr ""
#: ../../addon/communityhome/communityhome.php:155 #: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook/theme.php:557 ../../include/text.php:1303 #: ../../view/theme/diabook/theme.php:557 ../../include/text.php:1309
#: ../../include/conversation.php:45 ../../include/conversation.php:118 #: ../../include/conversation.php:45 ../../include/conversation.php:118
msgid "event" msgid "event"
msgstr "" msgstr ""
@ -6333,51 +6337,51 @@ msgstr ""
msgid "December" msgid "December"
msgstr "" msgstr ""
#: ../../include/text.php:919 #: ../../include/text.php:920
msgid "bytes" msgid "bytes"
msgstr "" msgstr ""
#: ../../include/text.php:934 ../../include/text.php:949 #: ../../include/text.php:940 ../../include/text.php:955
msgid "remove" msgid "remove"
msgstr "" msgstr ""
#: ../../include/text.php:934 ../../include/text.php:949 #: ../../include/text.php:940 ../../include/text.php:955
msgid "[remove]" msgid "[remove]"
msgstr "" msgstr ""
#: ../../include/text.php:937 #: ../../include/text.php:943
msgid "Categories:" msgid "Categories:"
msgstr "" msgstr ""
#: ../../include/text.php:952 #: ../../include/text.php:958
msgid "Filed under:" msgid "Filed under:"
msgstr "" msgstr ""
#: ../../include/text.php:968 ../../include/text.php:980 #: ../../include/text.php:974 ../../include/text.php:986
msgid "Click to open/close" msgid "Click to open/close"
msgstr "" msgstr ""
#: ../../include/text.php:1085 #: ../../include/text.php:1091
msgid "default" msgid "default"
msgstr "" msgstr ""
#: ../../include/text.php:1097 #: ../../include/text.php:1103
msgid "Select an alternate language" msgid "Select an alternate language"
msgstr "" msgstr ""
#: ../../include/text.php:1307 #: ../../include/text.php:1313
msgid "activity" msgid "activity"
msgstr "" msgstr ""
#: ../../include/text.php:1309 #: ../../include/text.php:1315
msgid "comment" msgid "comment"
msgstr "" msgstr ""
#: ../../include/text.php:1310 #: ../../include/text.php:1316
msgid "post" msgid "post"
msgstr "" msgstr ""
#: ../../include/text.php:1465 #: ../../include/text.php:1471
msgid "Item filed" msgid "Item filed"
msgstr "" msgstr ""
@ -6951,30 +6955,30 @@ msgstr ""
msgid "stopped following" msgid "stopped following"
msgstr "" msgstr ""
#: ../../include/Contact.php:203 ../../include/conversation.php:820 #: ../../include/Contact.php:203 ../../include/conversation.php:821
msgid "View Status" msgid "View Status"
msgstr "" msgstr ""
#: ../../include/Contact.php:204 ../../include/conversation.php:821 #: ../../include/Contact.php:204 ../../include/conversation.php:822
msgid "View Profile" msgid "View Profile"
msgstr "" msgstr ""
#: ../../include/Contact.php:205 ../../include/conversation.php:822 #: ../../include/Contact.php:205 ../../include/conversation.php:823
msgid "View Photos" msgid "View Photos"
msgstr "" msgstr ""
#: ../../include/Contact.php:206 ../../include/Contact.php:219 #: ../../include/Contact.php:206 ../../include/Contact.php:219
#: ../../include/conversation.php:823 #: ../../include/conversation.php:824
msgid "Network Posts" msgid "Network Posts"
msgstr "" msgstr ""
#: ../../include/Contact.php:207 ../../include/Contact.php:219 #: ../../include/Contact.php:207 ../../include/Contact.php:219
#: ../../include/conversation.php:824 #: ../../include/conversation.php:825
msgid "Edit Contact" msgid "Edit Contact"
msgstr "" msgstr ""
#: ../../include/Contact.php:208 ../../include/Contact.php:219 #: ../../include/Contact.php:208 ../../include/Contact.php:219
#: ../../include/conversation.php:825 #: ../../include/conversation.php:826
msgid "Send PM" msgid "Send PM"
msgstr "" msgstr ""
@ -6987,216 +6991,216 @@ msgstr ""
msgid "%1$s marked %2$s's %3$s as favorite" msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "" msgstr ""
#: ../../include/conversation.php:320 ../../include/conversation.php:586 #: ../../include/conversation.php:321 ../../include/conversation.php:587
msgid "Select" msgid "Select"
msgstr "" msgstr ""
#: ../../include/conversation.php:337 ../../include/conversation.php:679 #: ../../include/conversation.php:338 ../../include/conversation.php:680
#: ../../include/conversation.php:680 #: ../../include/conversation.php:681
#, php-format #, php-format
msgid "View %s's profile @ %s" msgid "View %s's profile @ %s"
msgstr "" msgstr ""
#: ../../include/conversation.php:347 ../../include/conversation.php:691 #: ../../include/conversation.php:348 ../../include/conversation.php:692
#, php-format #, php-format
msgid "%s from %s" msgid "%s from %s"
msgstr "" msgstr ""
#: ../../include/conversation.php:362 #: ../../include/conversation.php:363
msgid "View in context" msgid "View in context"
msgstr "" msgstr ""
#: ../../include/conversation.php:468 #: ../../include/conversation.php:469
#, php-format #, php-format
msgid "%d comment" msgid "%d comment"
msgid_plural "%d comments" msgid_plural "%d comments"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/conversation.php:532 #: ../../include/conversation.php:533
msgid "like" msgid "like"
msgstr "" msgstr ""
#: ../../include/conversation.php:533 #: ../../include/conversation.php:534
msgid "dislike" msgid "dislike"
msgstr "" msgstr ""
#: ../../include/conversation.php:535 #: ../../include/conversation.php:536
msgid "Share this" msgid "Share this"
msgstr "" msgstr ""
#: ../../include/conversation.php:535 #: ../../include/conversation.php:536
msgid "share" msgid "share"
msgstr "" msgstr ""
#: ../../include/conversation.php:559 #: ../../include/conversation.php:560
msgid "Bold" msgid "Bold"
msgstr "" msgstr ""
#: ../../include/conversation.php:560 #: ../../include/conversation.php:561
msgid "Italic" msgid "Italic"
msgstr "" msgstr ""
#: ../../include/conversation.php:561 #: ../../include/conversation.php:562
msgid "Underline" msgid "Underline"
msgstr "" msgstr ""
#: ../../include/conversation.php:562 #: ../../include/conversation.php:563
msgid "Quote" msgid "Quote"
msgstr "" msgstr ""
#: ../../include/conversation.php:563 #: ../../include/conversation.php:564
msgid "Code" msgid "Code"
msgstr "" msgstr ""
#: ../../include/conversation.php:564 #: ../../include/conversation.php:565
msgid "Image" msgid "Image"
msgstr "" msgstr ""
#: ../../include/conversation.php:565 #: ../../include/conversation.php:566
msgid "Link" msgid "Link"
msgstr "" msgstr ""
#: ../../include/conversation.php:566 #: ../../include/conversation.php:567
msgid "Video" msgid "Video"
msgstr "" msgstr ""
#: ../../include/conversation.php:599 #: ../../include/conversation.php:600
msgid "add star" msgid "add star"
msgstr "" msgstr ""
#: ../../include/conversation.php:600 #: ../../include/conversation.php:601
msgid "remove star" msgid "remove star"
msgstr "" msgstr ""
#: ../../include/conversation.php:601 #: ../../include/conversation.php:602
msgid "toggle star status" msgid "toggle star status"
msgstr "" msgstr ""
#: ../../include/conversation.php:604 #: ../../include/conversation.php:605
msgid "starred" msgid "starred"
msgstr "" msgstr ""
#: ../../include/conversation.php:605 #: ../../include/conversation.php:606
msgid "add tag" msgid "add tag"
msgstr "" msgstr ""
#: ../../include/conversation.php:609 #: ../../include/conversation.php:610
msgid "save to folder" msgid "save to folder"
msgstr "" msgstr ""
#: ../../include/conversation.php:681 #: ../../include/conversation.php:682
msgid "to" msgid "to"
msgstr "" msgstr ""
#: ../../include/conversation.php:682 #: ../../include/conversation.php:683
msgid "Wall-to-Wall" msgid "Wall-to-Wall"
msgstr "" msgstr ""
#: ../../include/conversation.php:683 #: ../../include/conversation.php:684
msgid "via Wall-To-Wall:" msgid "via Wall-To-Wall:"
msgstr "" msgstr ""
#: ../../include/conversation.php:728 #: ../../include/conversation.php:729
msgid "Delete Selected Items" msgid "Delete Selected Items"
msgstr "" msgstr ""
#: ../../include/conversation.php:879 #: ../../include/conversation.php:880
#, php-format #, php-format
msgid "%s likes this." msgid "%s likes this."
msgstr "" msgstr ""
#: ../../include/conversation.php:879 #: ../../include/conversation.php:880
#, php-format #, php-format
msgid "%s doesn't like this." msgid "%s doesn't like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:883 #: ../../include/conversation.php:884
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> like this." msgid "<span %1$s>%2$d people</span> like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:885 #: ../../include/conversation.php:886
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> don't like this." msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:891 #: ../../include/conversation.php:892
msgid "and" msgid "and"
msgstr "" msgstr ""
#: ../../include/conversation.php:894 #: ../../include/conversation.php:895
#, php-format #, php-format
msgid ", and %d other people" msgid ", and %d other people"
msgstr "" msgstr ""
#: ../../include/conversation.php:895 #: ../../include/conversation.php:896
#, php-format #, php-format
msgid "%s like this." msgid "%s like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:895 #: ../../include/conversation.php:896
#, php-format #, php-format
msgid "%s don't like this." msgid "%s don't like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:920 #: ../../include/conversation.php:921
msgid "Visible to <strong>everybody</strong>" msgid "Visible to <strong>everybody</strong>"
msgstr "" msgstr ""
#: ../../include/conversation.php:922 #: ../../include/conversation.php:923
msgid "Please enter a video link/URL:" msgid "Please enter a video link/URL:"
msgstr "" msgstr ""
#: ../../include/conversation.php:923 #: ../../include/conversation.php:924
msgid "Please enter an audio link/URL:" msgid "Please enter an audio link/URL:"
msgstr "" msgstr ""
#: ../../include/conversation.php:924 #: ../../include/conversation.php:925
msgid "Tag term:" msgid "Tag term:"
msgstr "" msgstr ""
#: ../../include/conversation.php:926 #: ../../include/conversation.php:927
msgid "Where are you right now?" msgid "Where are you right now?"
msgstr "" msgstr ""
#: ../../include/conversation.php:969 #: ../../include/conversation.php:970
msgid "upload photo" msgid "upload photo"
msgstr "" msgstr ""
#: ../../include/conversation.php:971 #: ../../include/conversation.php:972
msgid "attach file" msgid "attach file"
msgstr "" msgstr ""
#: ../../include/conversation.php:973 #: ../../include/conversation.php:974
msgid "web link" msgid "web link"
msgstr "" msgstr ""
#: ../../include/conversation.php:974 #: ../../include/conversation.php:975
msgid "Insert video link" msgid "Insert video link"
msgstr "" msgstr ""
#: ../../include/conversation.php:975 #: ../../include/conversation.php:976
msgid "video link" msgid "video link"
msgstr "" msgstr ""
#: ../../include/conversation.php:976 #: ../../include/conversation.php:977
msgid "Insert audio link" msgid "Insert audio link"
msgstr "" msgstr ""
#: ../../include/conversation.php:977 #: ../../include/conversation.php:978
msgid "audio link" msgid "audio link"
msgstr "" msgstr ""
#: ../../include/conversation.php:979 #: ../../include/conversation.php:980
msgid "set location" msgid "set location"
msgstr "" msgstr ""
#: ../../include/conversation.php:981 #: ../../include/conversation.php:982
msgid "clear location" msgid "clear location"
msgstr "" msgstr ""
#: ../../include/conversation.php:988 #: ../../include/conversation.php:989
msgid "permissions" msgid "permissions"
msgstr "" msgstr ""

View file

@ -29,6 +29,7 @@
<script> <script>
var updateInterval = $update_interval; var updateInterval = $update_interval;
var localUser = $local_user;
function confirmDelete() { return confirm("$delitem"); } function confirmDelete() { return confirm("$delitem"); }
function commentOpen(obj,id) { function commentOpen(obj,id) {