1
0
Fork 0

fix to wall_upload photos default permissions to use cid rather than uid.

This commit is contained in:
friendica 2012-04-08 16:19:45 -07:00
commit 977625a53b
5 changed files with 338 additions and 307 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', '2.3.1305' ); define ( 'FRIENDICA_VERSION', '2.3.1306' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1137 ); define ( 'DB_UPDATE_VERSION', 1137 );

View file

@ -351,7 +351,7 @@ function item_post(&$a) {
$image_uri = substr($image_uri,0, strpos($image_uri,'-')); $image_uri = substr($image_uri,0, strpos($image_uri,'-'));
if(! strlen($image_uri)) if(! strlen($image_uri))
continue; continue;
$srch = '<' . intval($profile_uid) . '>'; $srch = '<' . intval($contact_record['id']) . '>';
$r = q("SELECT `id` FROM `photo` WHERE `allow_cid` = '%s' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' $r = q("SELECT `id` FROM `photo` WHERE `allow_cid` = '%s' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = ''
AND `resource-id` = '%s' AND `uid` = %d LIMIT 1", AND `resource-id` = '%s' AND `uid` = %d LIMIT 1",
dbesc($srch), dbesc($srch),

View file

@ -7,7 +7,7 @@ function wall_attach_post(&$a) {
if($a->argc > 1) { if($a->argc > 1) {
$nick = $a->argv[1]; $nick = $a->argv[1];
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1", $r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
dbesc($nick) dbesc($nick)
); );
if(! count($r)) if(! count($r))
@ -21,6 +21,7 @@ function wall_attach_post(&$a) {
$visitor = 0; $visitor = 0;
$page_owner_uid = $r[0]['uid']; $page_owner_uid = $r[0]['uid'];
$page_owner_cid = $r[0]['id'];
$page_owner_nick = $r[0]['nickname']; $page_owner_nick = $r[0]['nickname'];
$community_page = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false); $community_page = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
@ -73,7 +74,7 @@ function wall_attach_post(&$a) {
dbesc($filedata), dbesc($filedata),
dbesc($created), dbesc($created),
dbesc($created), dbesc($created),
dbesc('<' . $page_owner_uid . '>'), dbesc('<' . $page_owner_cid . '>'),
dbesc(''), dbesc(''),
dbesc(''), dbesc(''),
dbesc('') dbesc('')

View file

@ -6,7 +6,7 @@ function wall_upload_post(&$a) {
if($a->argc > 1) { if($a->argc > 1) {
$nick = $a->argv[1]; $nick = $a->argv[1];
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1", $r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
dbesc($nick) dbesc($nick)
); );
if(! count($r)) if(! count($r))
@ -16,10 +16,13 @@ function wall_upload_post(&$a) {
else else
return; return;
$can_post = false; $can_post = false;
$visitor = 0; $visitor = 0;
$page_owner_uid = $r[0]['uid']; $page_owner_uid = $r[0]['uid'];
$default_cid = $r[0]['id'];
$page_owner_nick = $r[0]['nickname']; $page_owner_nick = $r[0]['nickname'];
$community_page = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false); $community_page = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
@ -34,6 +37,7 @@ function wall_upload_post(&$a) {
if(count($r)) { if(count($r)) {
$can_post = true; $can_post = true;
$visitor = remote_user(); $visitor = remote_user();
$default_cid = $visitor;
} }
} }
} }
@ -76,7 +80,7 @@ function wall_upload_post(&$a) {
$smallest = 0; $smallest = 0;
$defperm = '<' . $page_owner_uid . '>'; $defperm = '<' . $default_cid . '>';
$r = $ph->store($page_owner_uid, $visitor, $hash, $filename, t('Wall Photos'), 0, 0, $defperm); $r = $ph->store($page_owner_uid, $visitor, $hash, $filename, t('Wall Photos'), 0, 0, $defperm);

View file

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.3.1305\n" "Project-Id-Version: 2.3.1306\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-04-07 10:00-0700\n" "POT-Creation-Date: 2012-04-08 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"
@ -54,8 +54,8 @@ msgstr ""
#: ../../mod/display.php:138 ../../mod/profiles.php:7 #: ../../mod/display.php:138 ../../mod/profiles.php:7
#: ../../mod/profiles.php:232 ../../mod/delegate.php:6 #: ../../mod/profiles.php:232 ../../mod/delegate.php:6
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:456 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:460
#: ../../include/items.php:3118 ../../index.php:294 #: ../../include/items.php:3118 ../../index.php:306
msgid "Permission denied." msgid "Permission denied."
msgstr "" msgstr ""
@ -132,12 +132,12 @@ msgstr ""
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:357 #: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:357
#: ../../mod/admin.php:525 ../../mod/admin.php:654 ../../mod/admin.php:826 #: ../../mod/admin.php:525 ../../mod/admin.php:654 ../../mod/admin.php:826
#: ../../mod/admin.php:906 ../../mod/profiles.php:390 ../../mod/invite.php:119 #: ../../mod/admin.php:906 ../../mod/profiles.php:390 ../../mod/invite.php:119
#: ../../addon/facebook/facebook.php:547 ../../addon/yourls/yourls.php:76 #: ../../addon/facebook/facebook.php:551 ../../addon/yourls/yourls.php:76
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57 #: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57
#: ../../addon/uhremotestorage/uhremotestorage.php:89 #: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:179 ../../addon/dwpost/dwpost.php:93 #: ../../addon/randplace/randplace.php:179 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187 #: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:69 #: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80
#: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61 #: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:70 #: ../../addon/openstreetmap/openstreetmap.php:70
#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:94 #: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:94
@ -147,11 +147,11 @@ msgstr ""
#: ../../addon/statusnet/statusnet.php:318 #: ../../addon/statusnet/statusnet.php:318
#: ../../addon/statusnet/statusnet.php:325 #: ../../addon/statusnet/statusnet.php:325
#: ../../addon/statusnet/statusnet.php:353 #: ../../addon/statusnet/statusnet.php:353
#: ../../addon/statusnet/statusnet.php:547 ../../addon/tumblr/tumblr.php:90 #: ../../addon/statusnet/statusnet.php:553 ../../addon/tumblr/tumblr.php:90
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 #: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
#: ../../addon/wppost/wppost.php:102 ../../addon/showmore/showmore.php:48 #: ../../addon/wppost/wppost.php:102 ../../addon/showmore/showmore.php:48
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 #: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:369 #: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375
#: ../../addon/posterous/posterous.php:90 #: ../../addon/posterous/posterous.php:90
#: ../../view/theme/quattro/config.php:21 ../../include/conversation.php:555 #: ../../view/theme/quattro/config.php:21 ../../include/conversation.php:555
msgid "Submit" msgid "Submit"
@ -211,11 +211,11 @@ msgstr ""
msgid "link to source" msgid "link to source"
msgstr "" msgstr ""
#: ../../mod/events.php:296 ../../view/theme/diabook-red/theme.php:240 #: ../../mod/events.php:296 ../../view/theme/diabook-red/theme.php:244
#: ../../view/theme/diabook-blue/theme.php:240 #: ../../view/theme/diabook-blue/theme.php:244
#: ../../view/theme/diabook/theme.php:248 #: ../../view/theme/diabook/theme.php:251
#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:52 #: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:52
#: ../../boot.php:1421 #: ../../boot.php:1422
msgid "Events" msgid "Events"
msgstr "" msgstr ""
@ -265,7 +265,7 @@ msgid "Description:"
msgstr "" msgstr ""
#: ../../mod/events.php:395 ../../include/event.php:37 #: ../../mod/events.php:395 ../../include/event.php:37
#: ../../include/bb2diaspora.php:260 ../../boot.php:1042 #: ../../include/bb2diaspora.php:260 ../../boot.php:1043
msgid "Location:" msgid "Location:"
msgstr "" msgstr ""
@ -347,10 +347,10 @@ msgstr ""
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:880 #: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:880
#: ../../mod/photos.php:951 ../../mod/photos.php:966 ../../mod/photos.php:1383 #: ../../mod/photos.php:951 ../../mod/photos.php:966 ../../mod/photos.php:1383
#: ../../mod/photos.php:1395 ../../addon/communityhome/communityhome.php:110 #: ../../mod/photos.php:1395 ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook-red/theme.php:110 #: ../../view/theme/diabook-red/theme.php:114
#: ../../view/theme/diabook-blue/theme.php:110 #: ../../view/theme/diabook-blue/theme.php:114
#: ../../view/theme/diabook/theme.php:114 #: ../../view/theme/diabook/theme.php:117
#: ../../view/theme/diabook-aerith/theme.php:110 #: ../../view/theme/diabook-aerith/theme.php:115
msgid "Contact Photos" msgid "Contact Photos"
msgstr "" msgstr ""
@ -373,10 +373,10 @@ msgstr ""
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174 #: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174
#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261 #: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261
#: ../../addon/communityhome/communityhome.php:111 #: ../../addon/communityhome/communityhome.php:111
#: ../../view/theme/diabook-red/theme.php:111 #: ../../view/theme/diabook-red/theme.php:115
#: ../../view/theme/diabook-blue/theme.php:111 #: ../../view/theme/diabook-blue/theme.php:115
#: ../../view/theme/diabook/theme.php:115 #: ../../view/theme/diabook/theme.php:118
#: ../../view/theme/diabook-aerith/theme.php:111 #: ../../view/theme/diabook-aerith/theme.php:116
msgid "Profile Photos" msgid "Profile Photos"
msgstr "" msgstr ""
@ -398,10 +398,10 @@ msgstr ""
#: ../../mod/photos.php:529 ../../mod/like.php:127 ../../mod/tagger.php:70 #: ../../mod/photos.php:529 ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/communityhome/communityhome.php:163 #: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook-red/theme.php:82 #: ../../view/theme/diabook-red/theme.php:86
#: ../../view/theme/diabook-blue/theme.php:82 #: ../../view/theme/diabook-blue/theme.php:86
#: ../../view/theme/diabook/theme.php:86 #: ../../view/theme/diabook/theme.php:89
#: ../../view/theme/diabook-aerith/theme.php:82 ../../include/text.php:1297 #: ../../view/theme/diabook-aerith/theme.php:87 ../../include/text.php:1297
#: ../../include/diaspora.php:1654 ../../include/conversation.php:53 #: ../../include/diaspora.php:1654 ../../include/conversation.php:53
#: ../../include/conversation.php:126 #: ../../include/conversation.php:126
msgid "photo" msgid "photo"
@ -576,11 +576,10 @@ msgstr ""
msgid "Not available." msgid "Not available."
msgstr "" msgstr ""
#: ../../mod/community.php:30 ../../addon/pages/pages.php:75 #: ../../mod/community.php:30 ../../view/theme/diabook-red/theme.php:246
#: ../../view/theme/diabook-red/theme.php:242 #: ../../view/theme/diabook-blue/theme.php:246
#: ../../view/theme/diabook-blue/theme.php:242 #: ../../view/theme/diabook/theme.php:253
#: ../../view/theme/diabook/theme.php:250 #: ../../view/theme/diabook-aerith/theme.php:247 ../../include/nav.php:101
#: ../../view/theme/diabook-aerith/theme.php:242 ../../include/nav.php:101
msgid "Community" msgid "Community"
msgstr "" msgstr ""
@ -1165,7 +1164,7 @@ msgid "is interested in:"
msgstr "" msgstr ""
#: ../../mod/match.php:58 ../../mod/suggest.php:59 #: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:986 #: ../../include/contact_widgets.php:9 ../../boot.php:987
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
@ -1213,10 +1212,10 @@ msgstr ""
msgid "Personal" msgid "Personal"
msgstr "" msgstr ""
#: ../../mod/notifications.php:90 ../../view/theme/diabook-red/theme.php:236 #: ../../mod/notifications.php:90 ../../view/theme/diabook-red/theme.php:240
#: ../../view/theme/diabook-blue/theme.php:236 #: ../../view/theme/diabook-blue/theme.php:240
#: ../../view/theme/diabook/theme.php:244 #: ../../view/theme/diabook/theme.php:247
#: ../../view/theme/diabook-aerith/theme.php:236 ../../include/nav.php:77 #: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:77
#: ../../include/nav.php:115 #: ../../include/nav.php:115
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -1594,10 +1593,10 @@ msgstr ""
msgid "Edit contact" msgid "Edit contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:523 ../../view/theme/diabook-red/theme.php:238 #: ../../mod/contacts.php:523 ../../view/theme/diabook-red/theme.php:242
#: ../../view/theme/diabook-blue/theme.php:238 #: ../../view/theme/diabook-blue/theme.php:242
#: ../../view/theme/diabook/theme.php:246 #: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook-aerith/theme.php:238 ../../include/nav.php:139 #: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:139
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -1630,8 +1629,8 @@ msgstr ""
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 #: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
#: ../../mod/register.php:392 ../../mod/register.php:446 #: ../../mod/register.php:392 ../../mod/register.php:446
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732
#: ../../addon/facebook/facebook.php:617 #: ../../addon/facebook/facebook.php:621
#: ../../addon/facebook/facebook.php:1069 ../../include/items.php:2658 #: ../../addon/facebook/facebook.php:1073 ../../include/items.php:2658
msgid "Administrator" msgid "Administrator"
msgstr "" msgstr ""
@ -1733,52 +1732,52 @@ msgstr ""
msgid " Cannot change to that email." msgid " Cannot change to that email."
msgstr "" msgstr ""
#: ../../mod/settings.php:420 ../../addon/facebook/facebook.php:445 #: ../../mod/settings.php:420 ../../addon/facebook/facebook.php:449
#: ../../addon/impressum/impressum.php:64 #: ../../addon/impressum/impressum.php:75
#: ../../addon/openstreetmap/openstreetmap.php:80 #: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:364 #: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:370
msgid "Settings updated." msgid "Settings updated."
msgstr "" msgstr ""
#: ../../mod/settings.php:484 ../../view/theme/diabook-red/theme.php:284 #: ../../mod/settings.php:484 ../../view/theme/diabook-red/theme.php:288
#: ../../view/theme/diabook-blue/theme.php:283 #: ../../view/theme/diabook-blue/theme.php:287
#: ../../view/theme/diabook/theme.php:293 #: ../../view/theme/diabook/theme.php:298
#: ../../view/theme/diabook-aerith/theme.php:283 ../../include/nav.php:137 #: ../../view/theme/diabook-aerith/theme.php:288 ../../include/nav.php:137
msgid "Account settings" msgid "Account settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:489 ../../view/theme/diabook-red/theme.php:289 #: ../../mod/settings.php:489 ../../view/theme/diabook-red/theme.php:293
#: ../../view/theme/diabook-blue/theme.php:288 #: ../../view/theme/diabook-blue/theme.php:292
#: ../../view/theme/diabook/theme.php:298 #: ../../view/theme/diabook/theme.php:303
#: ../../view/theme/diabook-aerith/theme.php:288 #: ../../view/theme/diabook-aerith/theme.php:293
msgid "Display settings" msgid "Display settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:495 ../../view/theme/diabook-red/theme.php:298 #: ../../mod/settings.php:495 ../../view/theme/diabook-red/theme.php:302
#: ../../view/theme/diabook-blue/theme.php:297 #: ../../view/theme/diabook-blue/theme.php:301
#: ../../view/theme/diabook/theme.php:307 #: ../../view/theme/diabook/theme.php:312
#: ../../view/theme/diabook-aerith/theme.php:297 #: ../../view/theme/diabook-aerith/theme.php:302
msgid "Connector settings" msgid "Connector settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:500 ../../view/theme/diabook-red/theme.php:303 #: ../../mod/settings.php:500 ../../view/theme/diabook-red/theme.php:307
#: ../../view/theme/diabook-blue/theme.php:302 #: ../../view/theme/diabook-blue/theme.php:306
#: ../../view/theme/diabook/theme.php:312 #: ../../view/theme/diabook/theme.php:317
#: ../../view/theme/diabook-aerith/theme.php:302 #: ../../view/theme/diabook-aerith/theme.php:307
msgid "Plugin settings" msgid "Plugin settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:505 ../../view/theme/diabook-red/theme.php:308 #: ../../mod/settings.php:505 ../../view/theme/diabook-red/theme.php:312
#: ../../view/theme/diabook-blue/theme.php:307 #: ../../view/theme/diabook-blue/theme.php:311
#: ../../view/theme/diabook/theme.php:317 #: ../../view/theme/diabook/theme.php:322
#: ../../view/theme/diabook-aerith/theme.php:307 #: ../../view/theme/diabook-aerith/theme.php:312
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: ../../mod/settings.php:510 ../../view/theme/diabook-red/theme.php:313 #: ../../mod/settings.php:510 ../../view/theme/diabook-red/theme.php:317
#: ../../view/theme/diabook-blue/theme.php:312 #: ../../view/theme/diabook-blue/theme.php:316
#: ../../view/theme/diabook/theme.php:322 #: ../../view/theme/diabook/theme.php:327
#: ../../view/theme/diabook-aerith/theme.php:312 #: ../../view/theme/diabook-aerith/theme.php:317
msgid "Export personal data" msgid "Export personal data"
msgstr "" msgstr ""
@ -1788,12 +1787,12 @@ msgid "Add application"
msgstr "" msgstr ""
#: ../../mod/settings.php:532 ../../mod/settings.php:559 #: ../../mod/settings.php:532 ../../mod/settings.php:559
#: ../../addon/statusnet/statusnet.php:541 #: ../../addon/statusnet/statusnet.php:547
msgid "Consumer Key" msgid "Consumer Key"
msgstr "" msgstr ""
#: ../../mod/settings.php:533 ../../mod/settings.php:560 #: ../../mod/settings.php:533 ../../mod/settings.php:560
#: ../../addon/statusnet/statusnet.php:540 #: ../../addon/statusnet/statusnet.php:546
msgid "Consumer Secret" msgid "Consumer Secret"
msgstr "" msgstr ""
@ -2258,12 +2257,12 @@ msgstr ""
msgid "Invalid contact." msgid "Invalid contact."
msgstr "" msgstr ""
#: ../../mod/notes.php:44 ../../boot.php:1426 #: ../../mod/notes.php:44 ../../boot.php:1427
msgid "Personal Notes" msgid "Personal Notes"
msgstr "" msgstr ""
#: ../../mod/notes.php:63 ../../mod/filer.php:30 #: ../../mod/notes.php:63 ../../mod/filer.php:30
#: ../../addon/facebook/facebook.php:673 ../../include/text.php:652 #: ../../addon/facebook/facebook.php:677 ../../include/text.php:652
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -2465,7 +2464,7 @@ msgstr ""
msgid "Group name changed." msgid "Group name changed."
msgstr "" msgstr ""
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:293 #: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:305
msgid "Permission denied" msgid "Permission denied"
msgstr "" msgstr ""
@ -2505,12 +2504,12 @@ msgstr ""
msgid "Profile Visibility Editor" msgid "Profile Visibility Editor"
msgstr "" msgstr ""
#: ../../mod/profperm.php:103 ../../view/theme/diabook-red/theme.php:237 #: ../../mod/profperm.php:103 ../../view/theme/diabook-red/theme.php:241
#: ../../view/theme/diabook-blue/theme.php:237 #: ../../view/theme/diabook-blue/theme.php:241
#: ../../view/theme/diabook/theme.php:245 #: ../../view/theme/diabook/theme.php:248
#: ../../view/theme/diabook-aerith/theme.php:237 #: ../../view/theme/diabook-aerith/theme.php:242
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:76 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:76
#: ../../include/nav.php:50 ../../boot.php:1408 #: ../../include/nav.php:50 ../../boot.php:1409
msgid "Profile" msgid "Profile"
msgstr "" msgstr ""
@ -2691,28 +2690,28 @@ msgid "People Search"
msgstr "" msgstr ""
#: ../../mod/like.php:127 ../../mod/tagger.php:70 #: ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/facebook/facebook.php:1440 #: ../../addon/facebook/facebook.php:1546
#: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167 #: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook-red/theme.php:77 #: ../../view/theme/diabook-red/theme.php:81
#: ../../view/theme/diabook-red/theme.php:86 #: ../../view/theme/diabook-red/theme.php:90
#: ../../view/theme/diabook-blue/theme.php:77 #: ../../view/theme/diabook-blue/theme.php:81
#: ../../view/theme/diabook-blue/theme.php:86 #: ../../view/theme/diabook-blue/theme.php:90
#: ../../view/theme/diabook/theme.php:81 ../../view/theme/diabook/theme.php:90 #: ../../view/theme/diabook/theme.php:84 ../../view/theme/diabook/theme.php:93
#: ../../view/theme/diabook-aerith/theme.php:77 #: ../../view/theme/diabook-aerith/theme.php:82
#: ../../view/theme/diabook-aerith/theme.php:86 #: ../../view/theme/diabook-aerith/theme.php:91
#: ../../include/diaspora.php:1654 ../../include/conversation.php:48 #: ../../include/diaspora.php:1654 ../../include/conversation.php:48
#: ../../include/conversation.php:57 ../../include/conversation.php:121 #: ../../include/conversation.php:57 ../../include/conversation.php:121
#: ../../include/conversation.php:130 #: ../../include/conversation.php:130
msgid "status" msgid "status"
msgstr "" msgstr ""
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1444 #: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1550
#: ../../addon/communityhome/communityhome.php:172 #: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook-red/theme.php:91 #: ../../view/theme/diabook-red/theme.php:95
#: ../../view/theme/diabook-blue/theme.php:91 #: ../../view/theme/diabook-blue/theme.php:95
#: ../../view/theme/diabook/theme.php:95 #: ../../view/theme/diabook/theme.php:98
#: ../../view/theme/diabook-aerith/theme.php:91 #: ../../view/theme/diabook-aerith/theme.php:96
#: ../../include/diaspora.php:1670 ../../include/conversation.php:65 #: ../../include/diaspora.php:1670 ../../include/conversation.php:65
#, php-format #, php-format
msgid "%1$s likes %2$s's %3$s" msgid "%1$s likes %2$s's %3$s"
@ -3032,7 +3031,7 @@ msgstr ""
msgid "Advanced" msgid "Advanced"
msgstr "" msgstr ""
#: ../../mod/admin.php:365 ../../addon/statusnet/statusnet.php:538 #: ../../mod/admin.php:365 ../../addon/statusnet/statusnet.php:544
msgid "Site name" msgid "Site name"
msgstr "" msgstr ""
@ -3758,30 +3757,30 @@ msgstr ""
msgid "Age: " msgid "Age: "
msgstr "" msgstr ""
#: ../../mod/profiles.php:476 ../../view/theme/diabook-red/theme.php:294 #: ../../mod/profiles.php:476 ../../view/theme/diabook-red/theme.php:298
#: ../../view/theme/diabook-blue/theme.php:293 #: ../../view/theme/diabook-blue/theme.php:297
#: ../../view/theme/diabook/theme.php:303 #: ../../view/theme/diabook/theme.php:308
#: ../../view/theme/diabook-aerith/theme.php:293 #: ../../view/theme/diabook-aerith/theme.php:298
msgid "Edit/Manage Profiles" msgid "Edit/Manage Profiles"
msgstr "" msgstr ""
#: ../../mod/profiles.php:477 ../../boot.php:1008 #: ../../mod/profiles.php:477 ../../boot.php:1009
msgid "Change profile photo" msgid "Change profile photo"
msgstr "" msgstr ""
#: ../../mod/profiles.php:478 ../../boot.php:1009 #: ../../mod/profiles.php:478 ../../boot.php:1010
msgid "Create New Profile" msgid "Create New Profile"
msgstr "" msgstr ""
#: ../../mod/profiles.php:489 ../../boot.php:1019 #: ../../mod/profiles.php:489 ../../boot.php:1020
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: ../../mod/profiles.php:491 ../../boot.php:1022 #: ../../mod/profiles.php:491 ../../boot.php:1023
msgid "visible to everybody" msgid "visible to everybody"
msgstr "" msgstr ""
#: ../../mod/profiles.php:492 ../../boot.php:1023 #: ../../mod/profiles.php:492 ../../boot.php:1024
msgid "Edit visibility" msgid "Edit visibility"
msgstr "" msgstr ""
@ -3833,10 +3832,10 @@ msgstr ""
msgid "No entries." msgid "No entries."
msgstr "" msgstr ""
#: ../../mod/suggest.php:38 ../../view/theme/diabook-red/theme.php:146 #: ../../mod/suggest.php:38 ../../view/theme/diabook-red/theme.php:150
#: ../../view/theme/diabook-blue/theme.php:146 #: ../../view/theme/diabook-blue/theme.php:150
#: ../../view/theme/diabook/theme.php:150 #: ../../view/theme/diabook/theme.php:153
#: ../../view/theme/diabook-aerith/theme.php:146 #: ../../view/theme/diabook-aerith/theme.php:151
#: ../../include/contact_widgets.php:33 #: ../../include/contact_widgets.php:33
msgid "Friend Suggestions" msgid "Friend Suggestions"
msgstr "" msgstr ""
@ -3851,10 +3850,10 @@ msgstr ""
msgid "Ignore/Hide" msgid "Ignore/Hide"
msgstr "" msgstr ""
#: ../../mod/directory.php:47 ../../view/theme/diabook-red/theme.php:144 #: ../../mod/directory.php:47 ../../view/theme/diabook-red/theme.php:148
#: ../../view/theme/diabook-blue/theme.php:144 #: ../../view/theme/diabook-blue/theme.php:148
#: ../../view/theme/diabook/theme.php:148 #: ../../view/theme/diabook/theme.php:151
#: ../../view/theme/diabook-aerith/theme.php:144 #: ../../view/theme/diabook-aerith/theme.php:149
msgid "Global Directory" msgid "Global Directory"
msgstr "" msgstr ""
@ -4040,71 +4039,71 @@ msgstr ""
msgid "Connection accepted at %s" msgid "Connection accepted at %s"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:462 #: ../../addon/facebook/facebook.php:466
msgid "Facebook disabled" msgid "Facebook disabled"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:467 #: ../../addon/facebook/facebook.php:471
msgid "Updating contacts" msgid "Updating contacts"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:488 #: ../../addon/facebook/facebook.php:492
msgid "Facebook API key is missing." msgid "Facebook API key is missing."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:495 #: ../../addon/facebook/facebook.php:499
msgid "Facebook Connect" msgid "Facebook Connect"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:501 #: ../../addon/facebook/facebook.php:505
msgid "Install Facebook connector for this account." msgid "Install Facebook connector for this account."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:508 #: ../../addon/facebook/facebook.php:512
msgid "Remove Facebook connector" msgid "Remove Facebook connector"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:513 #: ../../addon/facebook/facebook.php:517
msgid "" msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is " "Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]" "changed.]"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:520 #: ../../addon/facebook/facebook.php:524
msgid "Post to Facebook by default" msgid "Post to Facebook by default"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:524 #: ../../addon/facebook/facebook.php:528
msgid "Link all your Facebook friends and conversations on this website" msgid "Link all your Facebook friends and conversations on this website"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:526 #: ../../addon/facebook/facebook.php:530
msgid "" msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend " "Facebook conversations consist of your <em>profile wall</em> and your friend "
"<em>stream</em>." "<em>stream</em>."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:527 #: ../../addon/facebook/facebook.php:531
msgid "On this website, your Facebook friend stream is only visible to you." msgid "On this website, your Facebook friend stream is only visible to you."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:528 #: ../../addon/facebook/facebook.php:532
msgid "" msgid ""
"The following settings determine the privacy of your Facebook profile wall " "The following settings determine the privacy of your Facebook profile wall "
"on this website." "on this website."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:532 #: ../../addon/facebook/facebook.php:536
msgid "" msgid ""
"On this website your Facebook profile wall conversations will only be " "On this website your Facebook profile wall conversations will only be "
"visible to you" "visible to you"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:537 #: ../../addon/facebook/facebook.php:541
msgid "Do not import your Facebook profile wall conversations" msgid "Do not import your Facebook profile wall conversations"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:539 #: ../../addon/facebook/facebook.php:543
msgid "" msgid ""
"If you choose to link conversations and leave both of these boxes unchecked, " "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 " "your Facebook profile wall will be merged with your profile wall on this "
@ -4112,114 +4111,114 @@ msgid ""
"who may see the conversations." "who may see the conversations."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:544 #: ../../addon/facebook/facebook.php:548
msgid "Comma separated applications to ignore" msgid "Comma separated applications to ignore"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:615 #: ../../addon/facebook/facebook.php:619
msgid "Problems with Facebook Real-Time Updates" msgid "Problems with Facebook Real-Time Updates"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:639 #: ../../addon/facebook/facebook.php:643
#: ../../include/contact_selectors.php:81 #: ../../include/contact_selectors.php:81
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:640 #: ../../addon/facebook/facebook.php:644
msgid "Facebook Connector Settings" msgid "Facebook Connector Settings"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:649 #: ../../addon/facebook/facebook.php:653
msgid "Facebook API Key" msgid "Facebook API Key"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:658 #: ../../addon/facebook/facebook.php:662
msgid "" msgid ""
"Error: it appears that you have specified the App-ID and -Secret in your ." "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 " "htconfig.php file. As long as they are specified there, they cannot be set "
"using this form.<br><br>" "using this form.<br><br>"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:663 #: ../../addon/facebook/facebook.php:667
msgid "" msgid ""
"Error: the given API Key seems to be incorrect (the application access token " "Error: the given API Key seems to be incorrect (the application access token "
"could not be retrieved)." "could not be retrieved)."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:665 #: ../../addon/facebook/facebook.php:669
msgid "The given API Key seems to work correctly." msgid "The given API Key seems to work correctly."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:667 #: ../../addon/facebook/facebook.php:671
msgid "" msgid ""
"The correctness of the API Key could not be detected. Somthing strange's " "The correctness of the API Key could not be detected. Somthing strange's "
"going on." "going on."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:670 #: ../../addon/facebook/facebook.php:674
msgid "App-ID / API-Key" msgid "App-ID / API-Key"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:671 #: ../../addon/facebook/facebook.php:675
msgid "Application secret" msgid "Application secret"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:672 #: ../../addon/facebook/facebook.php:676
#, php-format #, php-format
msgid "Polling Interval (min. %1$s minutes)" msgid "Polling Interval (min. %1$s minutes)"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:676 #: ../../addon/facebook/facebook.php:680
msgid "Real-Time Updates" msgid "Real-Time Updates"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:680 #: ../../addon/facebook/facebook.php:684
msgid "Real-Time Updates are activated." msgid "Real-Time Updates are activated."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:681 #: ../../addon/facebook/facebook.php:685
msgid "Deactivate Real-Time Updates" msgid "Deactivate Real-Time Updates"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:683 #: ../../addon/facebook/facebook.php:687
msgid "Real-Time Updates not activated." msgid "Real-Time Updates not activated."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:683 #: ../../addon/facebook/facebook.php:687
msgid "Activate Real-Time Updates" msgid "Activate Real-Time Updates"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:697 #: ../../addon/facebook/facebook.php:701
msgid "The new values have been saved." msgid "The new values have been saved."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:716 #: ../../addon/facebook/facebook.php:720
msgid "Post to Facebook" msgid "Post to Facebook"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:808 #: ../../addon/facebook/facebook.php:812
msgid "" msgid ""
"Post to Facebook cancelled because of multi-network access permission " "Post to Facebook cancelled because of multi-network access permission "
"conflict." "conflict."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1026 #: ../../addon/facebook/facebook.php:1030
msgid "View on Friendica" msgid "View on Friendica"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1051 #: ../../addon/facebook/facebook.php:1055
msgid "Facebook post failed. Queued for retry." msgid "Facebook post failed. Queued for retry."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1087 #: ../../addon/facebook/facebook.php:1091
msgid "Your Facebook connection became invalid. Please Re-authenticate." msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1088 #: ../../addon/facebook/facebook.php:1092
msgid "Facebook connection became invalid" msgid "Facebook connection became invalid"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1089 #: ../../addon/facebook/facebook.php:1093
#, php-format #, php-format
msgid "" msgid ""
"Hi %1$s,\n" "Hi %1$s,\n"
@ -4229,11 +4228,6 @@ msgid ""
"connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." "connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1214
#: ../../addon/facebook/facebook.php:1223 ../../include/bb2diaspora.php:102
msgid "link"
msgstr ""
#: ../../addon/widgets/widget_like.php:58 #: ../../addon/widgets/widget_like.php:58
#, php-format #, php-format
msgid "%d person likes this" msgid "%d person likes this"
@ -4383,10 +4377,10 @@ msgid "Latest likes"
msgstr "" msgstr ""
#: ../../addon/communityhome/communityhome.php:155 #: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook-red/theme.php:74 #: ../../view/theme/diabook-red/theme.php:78
#: ../../view/theme/diabook-blue/theme.php:74 #: ../../view/theme/diabook-blue/theme.php:78
#: ../../view/theme/diabook/theme.php:78 #: ../../view/theme/diabook/theme.php:81
#: ../../view/theme/diabook-aerith/theme.php:74 ../../include/text.php:1295 #: ../../view/theme/diabook-aerith/theme.php:79 ../../include/text.php:1295
#: ../../include/conversation.php:45 ../../include/conversation.php:118 #: ../../include/conversation.php:45 ../../include/conversation.php:118
msgid "event" msgid "event"
msgstr "" msgstr ""
@ -4594,41 +4588,69 @@ msgstr ""
msgid "URL to embed:" msgid "URL to embed:"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:25 #: ../../addon/impressum/impressum.php:34
msgid "Impressum" msgid "Impressum"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:38 #: ../../addon/impressum/impressum.php:47
#: ../../addon/impressum/impressum.php:40 #: ../../addon/impressum/impressum.php:49
#: ../../addon/impressum/impressum.php:70 #: ../../addon/impressum/impressum.php:81
msgid "Site Owner" msgid "Site Owner"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:38 #: ../../addon/impressum/impressum.php:47
#: ../../addon/impressum/impressum.php:74 #: ../../addon/impressum/impressum.php:85
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:43 #: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:72 #: ../../addon/impressum/impressum.php:83
msgid "Postal Address" msgid "Postal Address"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:49 #: ../../addon/impressum/impressum.php:58
msgid "" msgid ""
"The impressum addon needs to be configured!<br />Please add at least the " "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 " "<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon." "refer to the README file of the addon."
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:71 #: ../../addon/impressum/impressum.php:81
msgid "The page operators name."
msgstr ""
#: ../../addon/impressum/impressum.php:82
msgid "Site Owners Profile" msgid "Site Owners Profile"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:73 #: ../../addon/impressum/impressum.php:82
msgid "Profile address of the operator."
msgstr ""
#: ../../addon/impressum/impressum.php:83
msgid "How to contact the operator via snail mail."
msgstr ""
#: ../../addon/impressum/impressum.php:84
msgid "Notes" msgid "Notes"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:84
msgid "Additional notes that are displayed beneath the contact information."
msgstr ""
#: ../../addon/impressum/impressum.php:85
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr ""
#: ../../addon/impressum/impressum.php:86
msgid "Footer note"
msgstr ""
#: ../../addon/impressum/impressum.php:86
msgid "Text for the footer."
msgstr ""
#: ../../addon/buglink/buglink.php:15 #: ../../addon/buglink/buglink.php:15
msgid "Report Bug" msgid "Report Bug"
msgstr "" msgstr ""
@ -4879,7 +4901,7 @@ msgstr ""
msgid "Clear OAuth configuration" msgid "Clear OAuth configuration"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:539 #: ../../addon/statusnet/statusnet.php:545
msgid "API URL" msgid "API URL"
msgstr "" msgstr ""
@ -4982,11 +5004,11 @@ msgstr ""
msgid "Cutting posts after how much characters" msgid "Cutting posts after how much characters"
msgstr "" msgstr ""
#: ../../addon/showmore/showmore.php:64 #: ../../addon/showmore/showmore.php:65
msgid "Show More Settings saved." msgid "Show More Settings saved."
msgstr "" msgstr ""
#: ../../addon/showmore/showmore.php:86 ../../include/conversation.php:466 #: ../../addon/showmore/showmore.php:87 ../../include/conversation.php:466
#: ../../boot.php:495 #: ../../boot.php:495
msgid "show more" msgid "show more"
msgstr "" msgstr ""
@ -5089,11 +5111,11 @@ msgstr ""
msgid "Send #tag links to Twitter" msgid "Send #tag links to Twitter"
msgstr "" msgstr ""
#: ../../addon/twitter/twitter.php:371 #: ../../addon/twitter/twitter.php:377
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: ../../addon/twitter/twitter.php:372 #: ../../addon/twitter/twitter.php:378
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
@ -5129,159 +5151,159 @@ msgstr ""
msgid "Post to Posterous by default" msgid "Post to Posterous by default"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:23 #: ../../view/theme/diabook-red/theme.php:27
#: ../../view/theme/diabook-blue/theme.php:23 #: ../../view/theme/diabook-blue/theme.php:27
#: ../../view/theme/diabook/theme.php:27 #: ../../view/theme/diabook/theme.php:30
#: ../../view/theme/dispy-dark/theme.php:116 #: ../../view/theme/dispy-dark/theme.php:120
#: ../../view/theme/diabook-aerith/theme.php:23 #: ../../view/theme/diabook-aerith/theme.php:28
msgid "Last users" msgid "Last users"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:52 #: ../../view/theme/diabook-red/theme.php:56
#: ../../view/theme/diabook-blue/theme.php:52 #: ../../view/theme/diabook-blue/theme.php:56
#: ../../view/theme/diabook/theme.php:56 #: ../../view/theme/diabook/theme.php:59
#: ../../view/theme/diabook-aerith/theme.php:52 #: ../../view/theme/diabook-aerith/theme.php:57
msgid "Last likes" msgid "Last likes"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:97 #: ../../view/theme/diabook-red/theme.php:101
#: ../../view/theme/diabook-blue/theme.php:97 #: ../../view/theme/diabook-blue/theme.php:101
#: ../../view/theme/diabook/theme.php:101 #: ../../view/theme/diabook/theme.php:104
#: ../../view/theme/diabook-aerith/theme.php:97 #: ../../view/theme/diabook-aerith/theme.php:102
msgid "Last photos" msgid "Last photos"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:142 #: ../../view/theme/diabook-red/theme.php:146
#: ../../view/theme/diabook-blue/theme.php:142 #: ../../view/theme/diabook-blue/theme.php:146
#: ../../view/theme/diabook/theme.php:146
#: ../../view/theme/diabook-aerith/theme.php:142
msgid "Find Friends"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:143
#: ../../view/theme/diabook-blue/theme.php:143
#: ../../view/theme/diabook/theme.php:147
#: ../../view/theme/diabook-aerith/theme.php:143
msgid "Local Directory"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:145
#: ../../view/theme/diabook-blue/theme.php:145
#: ../../view/theme/diabook/theme.php:149 #: ../../view/theme/diabook/theme.php:149
#: ../../view/theme/diabook-aerith/theme.php:145 #: ../../view/theme/diabook-aerith/theme.php:147
#: ../../include/contact_widgets.php:34 msgid "Find Friends"
msgid "Similar Interests"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:147 #: ../../view/theme/diabook-red/theme.php:147
#: ../../view/theme/diabook-blue/theme.php:147 #: ../../view/theme/diabook-blue/theme.php:147
#: ../../view/theme/diabook/theme.php:151 #: ../../view/theme/diabook/theme.php:150
#: ../../view/theme/diabook-aerith/theme.php:147 #: ../../view/theme/diabook-aerith/theme.php:148
msgid "Local Directory"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:149
#: ../../view/theme/diabook-blue/theme.php:149
#: ../../view/theme/diabook/theme.php:152
#: ../../view/theme/diabook-aerith/theme.php:150
#: ../../include/contact_widgets.php:34
msgid "Similar Interests"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:151
#: ../../view/theme/diabook-blue/theme.php:151
#: ../../view/theme/diabook/theme.php:154
#: ../../view/theme/diabook-aerith/theme.php:152
#: ../../include/contact_widgets.php:35 #: ../../include/contact_widgets.php:35
msgid "Invite Friends" msgid "Invite Friends"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:162 #: ../../view/theme/diabook-red/theme.php:166
#: ../../view/theme/diabook-red/theme.php:243 #: ../../view/theme/diabook-red/theme.php:247
#: ../../view/theme/diabook-blue/theme.php:162 #: ../../view/theme/diabook-blue/theme.php:166
#: ../../view/theme/diabook-blue/theme.php:243 #: ../../view/theme/diabook-blue/theme.php:247
#: ../../view/theme/diabook/theme.php:167 #: ../../view/theme/diabook/theme.php:170
#: ../../view/theme/diabook/theme.php:251 #: ../../view/theme/diabook/theme.php:254
#: ../../view/theme/diabook-aerith/theme.php:162 #: ../../view/theme/diabook-aerith/theme.php:167
#: ../../view/theme/diabook-aerith/theme.php:243 #: ../../view/theme/diabook-aerith/theme.php:248
msgid "Community Pages" msgid "Community Pages"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:195 #: ../../view/theme/diabook-red/theme.php:199
#: ../../view/theme/diabook-blue/theme.php:195 #: ../../view/theme/diabook-blue/theme.php:199
#: ../../view/theme/diabook/theme.php:200 #: ../../view/theme/diabook/theme.php:203
#: ../../view/theme/diabook-aerith/theme.php:195 #: ../../view/theme/diabook-aerith/theme.php:200
msgid "Help or @NewHere ?" msgid "Help or @NewHere ?"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:201 #: ../../view/theme/diabook-red/theme.php:205
#: ../../view/theme/diabook-blue/theme.php:201 #: ../../view/theme/diabook-blue/theme.php:205
#: ../../view/theme/diabook/theme.php:206 #: ../../view/theme/diabook/theme.php:209
#: ../../view/theme/diabook-aerith/theme.php:201 #: ../../view/theme/diabook-aerith/theme.php:206
msgid "Connect Services" msgid "Connect Services"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:207 #: ../../view/theme/diabook-red/theme.php:211
#: ../../view/theme/diabook-blue/theme.php:207 #: ../../view/theme/diabook-blue/theme.php:211
#: ../../view/theme/diabook/theme.php:212 #: ../../view/theme/diabook/theme.php:215
#: ../../view/theme/diabook-aerith/theme.php:207 #: ../../view/theme/diabook-aerith/theme.php:212
msgid "PostIt to Friendica" msgid "PostIt to Friendica"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:207 #: ../../view/theme/diabook-red/theme.php:211
#: ../../view/theme/diabook-blue/theme.php:207 #: ../../view/theme/diabook-blue/theme.php:211
#: ../../view/theme/diabook/theme.php:212 #: ../../view/theme/diabook/theme.php:215
#: ../../view/theme/diabook-aerith/theme.php:207 #: ../../view/theme/diabook-aerith/theme.php:212
msgid "Post to Friendica" msgid "Post to Friendica"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:208 #: ../../view/theme/diabook-red/theme.php:212
#: ../../view/theme/diabook-blue/theme.php:208 #: ../../view/theme/diabook-blue/theme.php:212
#: ../../view/theme/diabook/theme.php:213 #: ../../view/theme/diabook/theme.php:216
#: ../../view/theme/diabook-aerith/theme.php:208 #: ../../view/theme/diabook-aerith/theme.php:213
msgid " from anywhere by bookmarking this Link." msgid " from anywhere by bookmarking this Link."
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:236
#: ../../view/theme/diabook-blue/theme.php:236
#: ../../view/theme/diabook/theme.php:244
#: ../../view/theme/diabook-aerith/theme.php:236 ../../include/nav.php:49
#: ../../include/nav.php:115
msgid "Your posts and conversations"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:237
#: ../../view/theme/diabook-blue/theme.php:237
#: ../../view/theme/diabook/theme.php:245
#: ../../view/theme/diabook-aerith/theme.php:237 ../../include/nav.php:50
msgid "Your profile page"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:238
#: ../../view/theme/diabook-blue/theme.php:238
#: ../../view/theme/diabook/theme.php:246
#: ../../view/theme/diabook-aerith/theme.php:238
msgid "Your contacts"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:239
#: ../../view/theme/diabook-blue/theme.php:239
#: ../../view/theme/diabook/theme.php:247
#: ../../view/theme/diabook-aerith/theme.php:239 ../../include/nav.php:51
#: ../../boot.php:1413
msgid "Photos"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:239
#: ../../view/theme/diabook-blue/theme.php:239
#: ../../view/theme/diabook/theme.php:247
#: ../../view/theme/diabook-aerith/theme.php:239 ../../include/nav.php:51
msgid "Your photos"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:240 #: ../../view/theme/diabook-red/theme.php:240
#: ../../view/theme/diabook-blue/theme.php:240 #: ../../view/theme/diabook-blue/theme.php:240
#: ../../view/theme/diabook/theme.php:247
#: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:49
#: ../../include/nav.php:115
msgid "Your posts and conversations"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:241
#: ../../view/theme/diabook-blue/theme.php:241
#: ../../view/theme/diabook/theme.php:248 #: ../../view/theme/diabook/theme.php:248
#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:52 #: ../../view/theme/diabook-aerith/theme.php:242 ../../include/nav.php:50
msgid "Your profile page"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:242
#: ../../view/theme/diabook-blue/theme.php:242
#: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook-aerith/theme.php:243
msgid "Your contacts"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:243
#: ../../view/theme/diabook-blue/theme.php:243
#: ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:51
#: ../../boot.php:1414
msgid "Photos"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:243
#: ../../view/theme/diabook-blue/theme.php:243
#: ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:51
msgid "Your photos"
msgstr ""
#: ../../view/theme/diabook-red/theme.php:244
#: ../../view/theme/diabook-blue/theme.php:244
#: ../../view/theme/diabook/theme.php:251
#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:52
msgid "Your events" msgid "Your events"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:241 #: ../../view/theme/diabook-red/theme.php:245
#: ../../view/theme/diabook-blue/theme.php:241 #: ../../view/theme/diabook-blue/theme.php:245
#: ../../view/theme/diabook/theme.php:249 #: ../../view/theme/diabook/theme.php:252
#: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:53 #: ../../view/theme/diabook-aerith/theme.php:246 ../../include/nav.php:53
msgid "Personal notes" msgid "Personal notes"
msgstr "" msgstr ""
#: ../../view/theme/diabook-red/theme.php:241 #: ../../view/theme/diabook-red/theme.php:245
#: ../../view/theme/diabook-blue/theme.php:241 #: ../../view/theme/diabook-blue/theme.php:245
#: ../../view/theme/diabook/theme.php:249 #: ../../view/theme/diabook/theme.php:252
#: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:53 #: ../../view/theme/diabook-aerith/theme.php:246 ../../include/nav.php:53
msgid "Your personal photos" msgid "Your personal photos"
msgstr "" msgstr ""
@ -5305,7 +5327,7 @@ msgstr ""
msgid "Color scheme" msgid "Color scheme"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:17 ../../boot.php:1044 #: ../../include/profile_advanced.php:17 ../../boot.php:1045
msgid "Gender:" msgid "Gender:"
msgstr "" msgstr ""
@ -5326,11 +5348,11 @@ msgstr ""
msgid "Age:" msgid "Age:"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:37 ../../boot.php:1047 #: ../../include/profile_advanced.php:37 ../../boot.php:1048
msgid "Status:" msgid "Status:"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:45 ../../boot.php:1049 #: ../../include/profile_advanced.php:45 ../../boot.php:1050
msgid "Homepage:" msgid "Homepage:"
msgstr "" msgstr ""
@ -5898,7 +5920,7 @@ msgstr ""
msgid "End this session" msgid "End this session"
msgstr "" msgstr ""
#: ../../include/nav.php:49 ../../boot.php:1403 #: ../../include/nav.php:49 ../../boot.php:1404
msgid "Status" msgid "Status"
msgstr "" msgstr ""
@ -5978,11 +6000,11 @@ msgstr ""
msgid "Manage other pages" msgid "Manage other pages"
msgstr "" msgstr ""
#: ../../include/nav.php:138 ../../boot.php:1002 #: ../../include/nav.php:138 ../../boot.php:1003
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: ../../include/nav.php:138 ../../boot.php:1002 #: ../../include/nav.php:138 ../../boot.php:1003
msgid "Manage/edit profiles" msgid "Manage/edit profiles"
msgstr "" msgstr ""
@ -6144,7 +6166,7 @@ msgstr ""
msgid "%1$d %2$s ago" msgid "%1$d %2$s ago"
msgstr "" msgstr ""
#: ../../include/poller.php:533 #: ../../include/poller.php:543
msgid "From: " msgid "From: "
msgstr "" msgstr ""
@ -6152,7 +6174,7 @@ msgstr ""
msgid "$1 wrote:" msgid "$1 wrote:"
msgstr "" msgstr ""
#: ../../include/bbcode.php:237 ../../include/bbcode.php:303 #: ../../include/bbcode.php:238 ../../include/bbcode.php:304
msgid "Image/photo" msgid "Image/photo"
msgstr "" msgstr ""
@ -6378,6 +6400,10 @@ msgstr ""
msgid "image/photo" msgid "image/photo"
msgstr "" msgstr ""
#: ../../include/bb2diaspora.php:102
msgid "link"
msgstr ""
#: ../../include/security.php:21 #: ../../include/security.php:21
msgid "Welcome " msgid "Welcome "
msgstr "" msgstr ""
@ -6636,42 +6662,42 @@ msgstr ""
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "" msgstr ""
#: ../../boot.php:935 #: ../../boot.php:936
msgid "Edit profile" msgid "Edit profile"
msgstr "" msgstr ""
#: ../../boot.php:994 #: ../../boot.php:995
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: ../../boot.php:1109 ../../boot.php:1180 #: ../../boot.php:1110 ../../boot.php:1181
msgid "g A l F d" msgid "g A l F d"
msgstr "" msgstr ""
#: ../../boot.php:1110 ../../boot.php:1181 #: ../../boot.php:1111 ../../boot.php:1182
msgid "F d" msgid "F d"
msgstr "" msgstr ""
#: ../../boot.php:1135 #: ../../boot.php:1136
msgid "Birthday Reminders" msgid "Birthday Reminders"
msgstr "" msgstr ""
#: ../../boot.php:1136 #: ../../boot.php:1137
msgid "Birthdays this week:" msgid "Birthdays this week:"
msgstr "" msgstr ""
#: ../../boot.php:1159 ../../boot.php:1223 #: ../../boot.php:1160 ../../boot.php:1224
msgid "[today]" msgid "[today]"
msgstr "" msgstr ""
#: ../../boot.php:1204 #: ../../boot.php:1205
msgid "Event Reminders" msgid "Event Reminders"
msgstr "" msgstr ""
#: ../../boot.php:1205 #: ../../boot.php:1206
msgid "Events this week:" msgid "Events this week:"
msgstr "" msgstr ""
#: ../../boot.php:1217 #: ../../boot.php:1218
msgid "[No description]" msgid "[No description]"
msgstr "" msgstr ""