1
0
Fork 0

Merge remote-tracking branch 'origin/master'

This commit is contained in:
tommy tomson 2012-03-06 08:28:21 +01:00
commit eaaf030c18
12 changed files with 707 additions and 536 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.1271' ); define ( 'FRIENDICA_VERSION', '2.3.1272' );
define ( 'DFRN_PROTOCOL_VERSION', '2.22' ); define ( 'DFRN_PROTOCOL_VERSION', '2.22' );
define ( 'DB_UPDATE_VERSION', 1131 ); define ( 'DB_UPDATE_VERSION', 1131 );

View file

@ -108,14 +108,18 @@ function can_write_wall(&$a,$owner) {
if(remote_user()) { if(remote_user()) {
// user remembered decision and avoid a DB lookup for each and every display item // use remembered decision and avoid a DB lookup for each and every display item
// DO NOT use this function if there are going to be multiple owners // DO NOT use this function if there are going to be multiple owners
// We have a contact-id for an authenticated remote user, this block determines if the contact
// belongs to this page owner, and has the necessary permissions to post content
if($verified === 2) if($verified === 2)
return true; return true;
elseif($verified === 1) elseif($verified === 1)
return false; return false;
else { else {
$r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` LEFT JOIN `user` on `user`.`uid` = `contact`.`uid` $r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` LEFT JOIN `user` on `user`.`uid` = `contact`.`uid`
WHERE `contact`.`uid` = %d AND `contact`.`id` = %d AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 WHERE `contact`.`uid` = %d AND `contact`.`id` = %d AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
AND `user`.`blockwall` = 0 AND `readonly` = 0 AND ( `contact`.`rel` IN ( %d , %d ) OR `user`.`page-flags` = %d ) LIMIT 1", AND `user`.`blockwall` = 0 AND `readonly` = 0 AND ( `contact`.`rel` IN ( %d , %d ) OR `user`.`page-flags` = %d ) LIMIT 1",
@ -125,6 +129,7 @@ function can_write_wall(&$a,$owner) {
intval(CONTACT_IS_FRIEND), intval(CONTACT_IS_FRIEND),
intval(PAGE_COMMUNITY) intval(PAGE_COMMUNITY)
); );
if(count($r)) { if(count($r)) {
$verified = 2; $verified = 2;
return true; return true;

View file

@ -145,8 +145,9 @@ function admin_page_summary(&$a) {
Array( t('Automatic Friend Account'), 0) Array( t('Automatic Friend Account'), 0)
); );
$users=0; $users=0;
foreach ($r as $u){ $accounts[$u['page-flags']][1] = $u['count']; $users+=$u['count']; } foreach ($r as $u){ $accounts[$u['page-flags']][1] = $u['count']; $users+= $u['count']; }
logger('accounts: ' . print_r($accounts,true));
$r = q("SELECT COUNT(id) as `count` FROM `register`"); $r = q("SELECT COUNT(id) as `count` FROM `register`");
$pending = $r[0]['count']; $pending = $r[0]['count'];
@ -574,6 +575,8 @@ function admin_page_plugins(&$a){
'$status' => $status, '$status' => $status,
'$action' => $action, '$action' => $action,
'$info' => get_plugin_info($plugin), '$info' => get_plugin_info($plugin),
'$str_author' => t('Author: '),
'$str_maintainer' => t('Maintainer: '),
'$admin_form' => $admin_form, '$admin_form' => $admin_form,
'$function' => 'plugins', '$function' => 'plugins',
@ -747,7 +750,8 @@ function admin_page_themes(&$a){
'$info' => get_theme_info($theme), '$info' => get_theme_info($theme),
'$function' => 'themes', '$function' => 'themes',
'$admin_form' => $admin_form, '$admin_form' => $admin_form,
'$str_author' => t('Author: '),
'$str_maintainer' => t('Maintainer: '),
'$readme' => $readme '$readme' => $readme
)); ));
} }

View file

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.3.1262\n" "Project-Id-Version: 2.3.1272\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-02-24 22:44-0800\n" "POT-Creation-Date: 2012-03-05 16:34-0800\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"
@ -39,8 +39,8 @@ msgstr ""
#: ../../mod/api.php:31 ../../mod/photos.php:129 ../../mod/photos.php:865 #: ../../mod/api.php:31 ../../mod/photos.php:129 ../../mod/photos.php:865
#: ../../mod/editpost.php:10 ../../mod/install.php:171 #: ../../mod/editpost.php:10 ../../mod/install.php:171
#: ../../mod/notifications.php:62 ../../mod/contacts.php:125 #: ../../mod/notifications.php:62 ../../mod/contacts.php:125
#: ../../mod/settings.php:49 ../../mod/settings.php:404 #: ../../mod/settings.php:49 ../../mod/settings.php:411
#: ../../mod/settings.php:409 ../../mod/manage.php:86 ../../mod/network.php:6 #: ../../mod/settings.php:416 ../../mod/manage.php:86 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/attach.php:33 ../../mod/group.php:19 #: ../../mod/notes.php:20 ../../mod/attach.php:33 ../../mod/group.php:19
#: ../../mod/viewcontacts.php:22 ../../mod/register.php:36 #: ../../mod/viewcontacts.php:22 ../../mod/register.php:36
#: ../../mod/regmod.php:111 ../../mod/item.php:124 ../../mod/item.php:140 #: ../../mod/regmod.php:111 ../../mod/item.php:124 ../../mod/item.php:140
@ -52,7 +52,7 @@ msgstr ""
#: ../../mod/profiles.php:229 ../../mod/delegate.php:6 #: ../../mod/profiles.php:229 ../../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:332 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:332
#: ../../include/items.php:2968 ../../index.php:288 #: ../../include/items.php:3005 ../../index.php:288
msgid "Permission denied." msgid "Permission denied."
msgstr "" msgstr ""
@ -81,8 +81,8 @@ msgstr ""
msgid "Return to contact editor" msgid "Return to contact editor"
msgstr "" msgstr ""
#: ../../mod/crepair.php:148 ../../mod/settings.php:455 #: ../../mod/crepair.php:148 ../../mod/settings.php:462
#: ../../mod/settings.php:481 ../../mod/admin.php:480 ../../mod/admin.php:489 #: ../../mod/settings.php:488 ../../mod/admin.php:483 ../../mod/admin.php:492
msgid "Name" msgid "Name"
msgstr "" msgstr ""
@ -124,18 +124,18 @@ msgstr ""
#: ../../mod/photos.php:1262 ../../mod/photos.php:1293 #: ../../mod/photos.php:1262 ../../mod/photos.php:1293
#: ../../mod/install.php:251 ../../mod/install.php:289 #: ../../mod/install.php:251 ../../mod/install.php:289
#: ../../mod/localtime.php:45 ../../mod/contacts.php:319 #: ../../mod/localtime.php:45 ../../mod/contacts.php:319
#: ../../mod/settings.php:453 ../../mod/settings.php:592 #: ../../mod/settings.php:460 ../../mod/settings.php:603
#: ../../mod/settings.php:786 ../../mod/manage.php:109 ../../mod/group.php:84 #: ../../mod/settings.php:797 ../../mod/manage.php:109 ../../mod/group.php:80
#: ../../mod/group.php:167 ../../mod/admin.php:312 ../../mod/admin.php:477 #: ../../mod/admin.php:312 ../../mod/admin.php:480 ../../mod/admin.php:606
#: ../../mod/admin.php:603 ../../mod/admin.php:769 ../../mod/admin.php:847 #: ../../mod/admin.php:772 ../../mod/admin.php:852 ../../mod/profiles.php:375
#: ../../mod/profiles.php:375 ../../mod/invite.php:106 #: ../../mod/invite.php:106 ../../addon/facebook/facebook.php:411
#: ../../addon/facebook/facebook.php:411 ../../addon/yourls/yourls.php:76 #: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:92
#: ../../addon/nsfw/nsfw.php:57 #: ../../addon/nsfw/nsfw.php:57
#: ../../addon/uhremotestorage/uhremotestorage.php:89 #: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:179 ../../addon/drpost/drpost.php:110 #: ../../addon/randplace/randplace.php:179 ../../addon/dwpost/dwpost.php:92
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 #: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187
#: ../../addon/impressum/impressum.php:69 ../../addon/blockem/blockem.php:57 #: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:69
#: ../../addon/qcomment/qcomment.php:60 #: ../../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
#: ../../addon/pageheader/pageheader.php:52 #: ../../addon/pageheader/pageheader.php:52
@ -145,11 +145,11 @@ msgstr ""
#: ../../addon/statusnet/statusnet.php:320 #: ../../addon/statusnet/statusnet.php:320
#: ../../addon/statusnet/statusnet.php:345 #: ../../addon/statusnet/statusnet.php:345
#: ../../addon/statusnet/statusnet.php:532 ../../addon/tumblr/tumblr.php:90 #: ../../addon/statusnet/statusnet.php:532 ../../addon/tumblr/tumblr.php:90
#: ../../addon/numfriends/numfriends.php:85 ../../addon/wppost/wppost.php:102 #: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
#: ../../addon/showmore/showmore.php:48 ../../addon/piwik/piwik.php:89 #: ../../addon/wppost/wppost.php:102 ../../addon/showmore/showmore.php:48
#: ../../addon/twitter/twitter.php:175 ../../addon/twitter/twitter.php:201 #: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:175
#: ../../addon/twitter/twitter.php:355 ../../addon/posterous/posterous.php:90 #: ../../addon/twitter/twitter.php:201 ../../addon/twitter/twitter.php:355
#: ../../include/conversation.php:542 #: ../../addon/posterous/posterous.php:90 ../../include/conversation.php:552
msgid "Submit" msgid "Submit"
msgstr "" msgstr ""
@ -203,7 +203,7 @@ msgstr ""
msgid "Edit event" msgid "Edit event"
msgstr "" msgstr ""
#: ../../mod/events.php:272 ../../include/text.php:964 #: ../../mod/events.php:272 ../../include/text.php:982
msgid "link to source" msgid "link to source"
msgstr "" msgstr ""
@ -257,7 +257,7 @@ msgid "Description:"
msgstr "" msgstr ""
#: ../../mod/events.php:395 ../../include/event.php:37 #: ../../mod/events.php:395 ../../include/event.php:37
#: ../../include/bb2diaspora.php:290 ../../boot.php:980 #: ../../include/bb2diaspora.php:260 ../../boot.php:980
msgid "Location:" msgid "Location:"
msgstr "" msgstr ""
@ -266,8 +266,8 @@ msgid "Share this event"
msgstr "" msgstr ""
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/dfrn_request.php:686 ../../mod/settings.php:454 #: ../../mod/dfrn_request.php:686 ../../mod/settings.php:461
#: ../../mod/settings.php:480 ../../addon/js_upload/js_upload.php:45 #: ../../mod/settings.php:487 ../../addon/js_upload/js_upload.php:45
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -311,23 +311,23 @@ msgid ""
msgstr "" msgstr ""
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:676 #: ../../mod/api.php:105 ../../mod/dfrn_request.php:676
#: ../../mod/settings.php:681 ../../mod/settings.php:687 #: ../../mod/settings.php:692 ../../mod/settings.php:698
#: ../../mod/settings.php:695 ../../mod/settings.php:699 #: ../../mod/settings.php:706 ../../mod/settings.php:710
#: ../../mod/settings.php:704 ../../mod/settings.php:710 #: ../../mod/settings.php:715 ../../mod/settings.php:721
#: ../../mod/settings.php:716 ../../mod/settings.php:776 #: ../../mod/settings.php:727 ../../mod/settings.php:787
#: ../../mod/settings.php:777 ../../mod/settings.php:778 #: ../../mod/settings.php:788 ../../mod/settings.php:789
#: ../../mod/settings.php:779 ../../mod/register.php:524 #: ../../mod/settings.php:790 ../../mod/register.php:524
#: ../../mod/profiles.php:357 #: ../../mod/profiles.php:357
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:677 #: ../../mod/api.php:106 ../../mod/dfrn_request.php:677
#: ../../mod/settings.php:681 ../../mod/settings.php:687 #: ../../mod/settings.php:692 ../../mod/settings.php:698
#: ../../mod/settings.php:695 ../../mod/settings.php:699 #: ../../mod/settings.php:706 ../../mod/settings.php:710
#: ../../mod/settings.php:704 ../../mod/settings.php:710 #: ../../mod/settings.php:715 ../../mod/settings.php:721
#: ../../mod/settings.php:716 ../../mod/settings.php:776 #: ../../mod/settings.php:727 ../../mod/settings.php:787
#: ../../mod/settings.php:777 ../../mod/settings.php:778 #: ../../mod/settings.php:788 ../../mod/settings.php:789
#: ../../mod/settings.php:779 ../../mod/register.php:525 #: ../../mod/settings.php:790 ../../mod/register.php:525
#: ../../mod/profiles.php:358 #: ../../mod/profiles.php:358
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -381,7 +381,7 @@ msgid "was tagged in a"
msgstr "" 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 ../../include/text.php:1226
#: ../../include/diaspora.php:1600 ../../include/conversation.php:53 #: ../../include/diaspora.php:1600 ../../include/conversation.php:53
#: ../../include/conversation.php:126 #: ../../include/conversation.php:126
msgid "photo" msgid "photo"
@ -471,7 +471,7 @@ msgstr ""
msgid "Use as profile photo" msgid "Use as profile photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:1078 ../../include/conversation.php:472 #: ../../mod/photos.php:1078 ../../include/conversation.php:482
msgid "Private Message" msgid "Private Message"
msgstr "" msgstr ""
@ -503,44 +503,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:1200 ../../include/conversation.php:519 #: ../../mod/photos.php:1200 ../../include/conversation.php:529
msgid "I like this (toggle)" msgid "I like this (toggle)"
msgstr "" msgstr ""
#: ../../mod/photos.php:1201 ../../include/conversation.php:520 #: ../../mod/photos.php:1201 ../../include/conversation.php:530
msgid "I don't like this (toggle)" msgid "I don't like this (toggle)"
msgstr "" msgstr ""
#: ../../mod/photos.php:1202 ../../include/conversation.php:914 #: ../../mod/photos.php:1202 ../../include/conversation.php:933
msgid "Share" msgid "Share"
msgstr "" msgstr ""
#: ../../mod/photos.php:1203 ../../mod/editpost.php:104 #: ../../mod/photos.php:1203 ../../mod/editpost.php:104
#: ../../mod/message.php:155 ../../mod/message.php:296 #: ../../mod/message.php:155 ../../mod/message.php:296
#: ../../include/conversation.php:343 ../../include/conversation.php:677 #: ../../include/conversation.php:348 ../../include/conversation.php:694
#: ../../include/conversation.php:931 #: ../../include/conversation.php:950
msgid "Please wait" msgid "Please wait"
msgstr "" msgstr ""
#: ../../mod/photos.php:1219 ../../mod/photos.php:1259 #: ../../mod/photos.php:1219 ../../mod/photos.php:1259
#: ../../mod/photos.php:1290 ../../include/conversation.php:539 #: ../../mod/photos.php:1290 ../../include/conversation.php:549
msgid "This is you" msgid "This is you"
msgstr "" msgstr ""
#: ../../mod/photos.php:1221 ../../mod/photos.php:1261 #: ../../mod/photos.php:1221 ../../mod/photos.php:1261
#: ../../mod/photos.php:1292 ../../include/conversation.php:541 #: ../../mod/photos.php:1292 ../../include/conversation.php:551
#: ../../boot.php:447 #: ../../boot.php:447
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: ../../mod/photos.php:1223 ../../mod/editpost.php:123 #: ../../mod/photos.php:1223 ../../mod/editpost.php:123
#: ../../include/conversation.php:543 ../../include/conversation.php:949 #: ../../include/conversation.php:553 ../../include/conversation.php:968
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
#: ../../mod/photos.php:1320 ../../mod/settings.php:513 #: ../../mod/photos.php:1320 ../../mod/settings.php:520
#: ../../mod/group.php:154 ../../mod/admin.php:484 #: ../../mod/settings.php:601 ../../mod/group.php:158 ../../mod/admin.php:487
#: ../../include/conversation.php:302 ../../include/conversation.php:563 #: ../../include/conversation.php:304 ../../include/conversation.php:573
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -604,26 +604,26 @@ msgstr ""
msgid "Edit post" msgid "Edit post"
msgstr "" msgstr ""
#: ../../mod/editpost.php:80 ../../include/conversation.php:900 #: ../../mod/editpost.php:80 ../../include/conversation.php:919
msgid "Post to Email" msgid "Post to Email"
msgstr "" msgstr ""
#: ../../mod/editpost.php:95 ../../mod/settings.php:512 #: ../../mod/editpost.php:95 ../../mod/settings.php:519
#: ../../include/conversation.php:550 #: ../../include/conversation.php:560
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: ../../mod/editpost.php:96 ../../mod/message.php:153 #: ../../mod/editpost.php:96 ../../mod/message.php:153
#: ../../mod/message.php:294 ../../include/conversation.php:915 #: ../../mod/message.php:294 ../../include/conversation.php:934
msgid "Upload photo" msgid "Upload photo"
msgstr "" msgstr ""
#: ../../mod/editpost.php:97 ../../include/conversation.php:917 #: ../../mod/editpost.php:97 ../../include/conversation.php:936
msgid "Attach file" msgid "Attach file"
msgstr "" msgstr ""
#: ../../mod/editpost.php:98 ../../mod/message.php:154 #: ../../mod/editpost.php:98 ../../mod/message.php:154
#: ../../mod/message.php:295 ../../include/conversation.php:919 #: ../../mod/message.php:295 ../../include/conversation.php:938
msgid "Insert web link" msgid "Insert web link"
msgstr "" msgstr ""
@ -639,31 +639,31 @@ msgstr ""
msgid "Insert Vorbis [.ogg] audio" msgid "Insert Vorbis [.ogg] audio"
msgstr "" msgstr ""
#: ../../mod/editpost.php:102 ../../include/conversation.php:925 #: ../../mod/editpost.php:102 ../../include/conversation.php:944
msgid "Set your location" msgid "Set your location"
msgstr "" msgstr ""
#: ../../mod/editpost.php:103 ../../include/conversation.php:927 #: ../../mod/editpost.php:103 ../../include/conversation.php:946
msgid "Clear browser location" msgid "Clear browser location"
msgstr "" msgstr ""
#: ../../mod/editpost.php:105 ../../include/conversation.php:932 #: ../../mod/editpost.php:105 ../../include/conversation.php:951
msgid "Permission settings" msgid "Permission settings"
msgstr "" msgstr ""
#: ../../mod/editpost.php:113 ../../include/conversation.php:941 #: ../../mod/editpost.php:113 ../../include/conversation.php:960
msgid "CC: email addresses" msgid "CC: email addresses"
msgstr "" msgstr ""
#: ../../mod/editpost.php:114 ../../include/conversation.php:942 #: ../../mod/editpost.php:114 ../../include/conversation.php:961
msgid "Public post" msgid "Public post"
msgstr "" msgstr ""
#: ../../mod/editpost.php:117 ../../include/conversation.php:930 #: ../../mod/editpost.php:117 ../../include/conversation.php:949
msgid "Set title" msgid "Set title"
msgstr "" msgstr ""
#: ../../mod/editpost.php:118 ../../include/conversation.php:944 #: ../../mod/editpost.php:118 ../../include/conversation.php:963
msgid "Example: bob@example.com, mary@example.com" msgid "Example: bob@example.com, mary@example.com"
msgstr "" msgstr ""
@ -772,7 +772,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:582 ../../include/items.php:2504 #: ../../mod/dfrn_request.php:582 ../../include/items.php:2541
msgid "[Name Withheld]" msgid "[Name Withheld]"
msgstr "" msgstr ""
@ -820,7 +820,7 @@ msgstr ""
msgid "StatusNet/Federated Social Web" msgid "StatusNet/Federated Social Web"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:682 ../../mod/settings.php:548 #: ../../mod/dfrn_request.php:682 ../../mod/settings.php:555
#: ../../include/contact_selectors.php:80 #: ../../include/contact_selectors.php:80
msgid "Diaspora" msgid "Diaspora"
msgstr "" msgstr ""
@ -1082,7 +1082,7 @@ msgid "Errors encountered creating database tables."
msgstr "" msgstr ""
#: ../../mod/localtime.php:12 ../../include/event.php:11 #: ../../mod/localtime.php:12 ../../include/event.php:11
#: ../../include/bb2diaspora.php:268 #: ../../include/bb2diaspora.php:238
msgid "l F d, Y \\@ g:i A" msgid "l F d, Y \\@ g:i A"
msgstr "" msgstr ""
@ -1225,7 +1225,7 @@ msgid "if applicable"
msgstr "" msgstr ""
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 #: ../../mod/notifications.php:153 ../../mod/notifications.php:200
#: ../../mod/admin.php:482 #: ../../mod/admin.php:485
msgid "Approve" msgid "Approve"
msgstr "" msgstr ""
@ -1310,11 +1310,11 @@ msgstr ""
msgid "Network Notifications" msgid "Network Notifications"
msgstr "" msgstr ""
#: ../../mod/notifications.php:324 ../../mod/notify.php:59 #: ../../mod/notifications.php:324 ../../mod/notify.php:61
msgid "No more system notifications." msgid "No more system notifications."
msgstr "" msgstr ""
#: ../../mod/notifications.php:328 ../../mod/notify.php:63 #: ../../mod/notifications.php:328 ../../mod/notify.php:65
msgid "System Notifications" msgid "System Notifications"
msgstr "" msgstr ""
@ -1422,12 +1422,12 @@ msgid "View all contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:297 ../../mod/contacts.php:344 #: ../../mod/contacts.php:297 ../../mod/contacts.php:344
#: ../../mod/admin.php:486 #: ../../mod/admin.php:489
msgid "Unblock" msgid "Unblock"
msgstr "" msgstr ""
#: ../../mod/contacts.php:297 ../../mod/contacts.php:344 #: ../../mod/contacts.php:297 ../../mod/contacts.php:344
#: ../../mod/admin.php:485 #: ../../mod/admin.php:488
msgid "Block" msgid "Block"
msgstr "" msgstr ""
@ -1496,7 +1496,7 @@ msgstr ""
msgid "Update public posts" msgid "Update public posts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:341 ../../mod/admin.php:896 #: ../../mod/contacts.php:341 ../../mod/admin.php:901
msgid "Update now" msgid "Update now"
msgstr "" msgstr ""
@ -1513,7 +1513,7 @@ msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible" "Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "" msgstr ""
#: ../../mod/contacts.php:399 ../../mod/group.php:194 #: ../../mod/contacts.php:399 ../../mod/group.php:179
msgid "All Contacts" msgid "All Contacts"
msgstr "" msgstr ""
@ -1546,23 +1546,23 @@ msgid "you are a fan of"
msgstr "" msgstr ""
#: ../../mod/contacts.php:498 ../../include/Contact.php:135 #: ../../mod/contacts.php:498 ../../include/Contact.php:135
#: ../../include/conversation.php:773 #: ../../include/conversation.php:792
msgid "Edit contact" msgid "Edit contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:518 ../../include/nav.php:132 #: ../../mod/contacts.php:519 ../../include/nav.php:132
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:522 #: ../../mod/contacts.php:523
msgid "Search your contacts" msgid "Search your contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:523 ../../mod/directory.php:67 #: ../../mod/contacts.php:524 ../../mod/directory.php:67
msgid "Finding: " msgid "Finding: "
msgstr "" msgstr ""
#: ../../mod/contacts.php:524 ../../mod/directory.php:69 #: ../../mod/contacts.php:525 ../../mod/directory.php:69
#: ../../include/contact_widgets.php:34 #: ../../include/contact_widgets.php:34
msgid "Find" msgid "Find"
msgstr "" msgstr ""
@ -1582,8 +1582,8 @@ msgstr ""
#: ../../mod/lostpass.php:44 ../../mod/lostpass.php:106 #: ../../mod/lostpass.php:44 ../../mod/lostpass.php:106
#: ../../mod/register.php:380 ../../mod/register.php:434 #: ../../mod/register.php:380 ../../mod/register.php:434
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:716 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:726
#: ../../include/items.php:2513 #: ../../include/items.php:2550
msgid "Administrator" msgid "Administrator"
msgstr "" msgstr ""
@ -1637,428 +1637,444 @@ msgstr ""
msgid "Reset" msgid "Reset"
msgstr "" msgstr ""
#: ../../mod/settings.php:70 #: ../../mod/settings.php:72
msgid "Missing some important data!" msgid "Missing some important data!"
msgstr "" msgstr ""
#: ../../mod/settings.php:73 ../../mod/settings.php:479 ../../mod/admin.php:75 #: ../../mod/settings.php:75 ../../mod/settings.php:486 ../../mod/admin.php:75
msgid "Update" msgid "Update"
msgstr "" msgstr ""
#: ../../mod/settings.php:168 #: ../../mod/settings.php:175
msgid "Failed to connect with email account using the settings provided." msgid "Failed to connect with email account using the settings provided."
msgstr "" msgstr ""
#: ../../mod/settings.php:173 #: ../../mod/settings.php:180
msgid "Email settings updated." msgid "Email settings updated."
msgstr "" msgstr ""
#: ../../mod/settings.php:191 #: ../../mod/settings.php:198
msgid "Passwords do not match. Password unchanged." msgid "Passwords do not match. Password unchanged."
msgstr "" msgstr ""
#: ../../mod/settings.php:196 #: ../../mod/settings.php:203
msgid "Empty passwords are not allowed. Password unchanged." msgid "Empty passwords are not allowed. Password unchanged."
msgstr "" msgstr ""
#: ../../mod/settings.php:207 #: ../../mod/settings.php:214
msgid "Password changed." msgid "Password changed."
msgstr "" msgstr ""
#: ../../mod/settings.php:209 #: ../../mod/settings.php:216
msgid "Password update failed. Please try again." msgid "Password update failed. Please try again."
msgstr "" msgstr ""
#: ../../mod/settings.php:273 #: ../../mod/settings.php:280
msgid " Please use a shorter name." msgid " Please use a shorter name."
msgstr "" msgstr ""
#: ../../mod/settings.php:275 #: ../../mod/settings.php:282
msgid " Name too short." msgid " Name too short."
msgstr "" msgstr ""
#: ../../mod/settings.php:281 #: ../../mod/settings.php:288
msgid " Not valid email." msgid " Not valid email."
msgstr "" msgstr ""
#: ../../mod/settings.php:283 #: ../../mod/settings.php:290
msgid " Cannot change to that email." msgid " Cannot change to that email."
msgstr "" msgstr ""
#: ../../mod/settings.php:351 ../../addon/facebook/facebook.php:321 #: ../../mod/settings.php:358 ../../addon/facebook/facebook.php:321
#: ../../addon/impressum/impressum.php:64 #: ../../addon/impressum/impressum.php:64
#: ../../addon/openstreetmap/openstreetmap.php:80 #: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:350 #: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:350
msgid "Settings updated." msgid "Settings updated."
msgstr "" msgstr ""
#: ../../mod/settings.php:415 ../../include/nav.php:130 #: ../../mod/settings.php:422 ../../include/nav.php:130
msgid "Account settings" msgid "Account settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:420 #: ../../mod/settings.php:427
msgid "Connector settings" msgid "Connector settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:425 #: ../../mod/settings.php:432
msgid "Plugin settings" msgid "Plugin settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:430 #: ../../mod/settings.php:437
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: ../../mod/settings.php:435 #: ../../mod/settings.php:442
msgid "Export personal data" msgid "Export personal data"
msgstr "" msgstr ""
#: ../../mod/settings.php:452 ../../mod/settings.php:478 #: ../../mod/settings.php:459 ../../mod/settings.php:485
#: ../../mod/settings.php:511 #: ../../mod/settings.php:518
msgid "Add application" msgid "Add application"
msgstr "" msgstr ""
#: ../../mod/settings.php:456 ../../mod/settings.php:482 #: ../../mod/settings.php:463 ../../mod/settings.php:489
#: ../../addon/statusnet/statusnet.php:526 #: ../../addon/statusnet/statusnet.php:526
msgid "Consumer Key" msgid "Consumer Key"
msgstr "" msgstr ""
#: ../../mod/settings.php:457 ../../mod/settings.php:483 #: ../../mod/settings.php:464 ../../mod/settings.php:490
#: ../../addon/statusnet/statusnet.php:525 #: ../../addon/statusnet/statusnet.php:525
msgid "Consumer Secret" msgid "Consumer Secret"
msgstr "" msgstr ""
#: ../../mod/settings.php:458 ../../mod/settings.php:484 #: ../../mod/settings.php:465 ../../mod/settings.php:491
msgid "Redirect" msgid "Redirect"
msgstr "" msgstr ""
#: ../../mod/settings.php:459 ../../mod/settings.php:485 #: ../../mod/settings.php:466 ../../mod/settings.php:492
msgid "Icon url" msgid "Icon url"
msgstr "" msgstr ""
#: ../../mod/settings.php:470 #: ../../mod/settings.php:477
msgid "You can't edit this application." msgid "You can't edit this application."
msgstr "" msgstr ""
#: ../../mod/settings.php:510 #: ../../mod/settings.php:517
msgid "Connected Apps" msgid "Connected Apps"
msgstr "" msgstr ""
#: ../../mod/settings.php:514 #: ../../mod/settings.php:521
msgid "Client key starts with" msgid "Client key starts with"
msgstr "" msgstr ""
#: ../../mod/settings.php:515 #: ../../mod/settings.php:522
msgid "No name" msgid "No name"
msgstr "" msgstr ""
#: ../../mod/settings.php:516 #: ../../mod/settings.php:523
msgid "Remove authorization" msgid "Remove authorization"
msgstr "" msgstr ""
#: ../../mod/settings.php:528 #: ../../mod/settings.php:535
msgid "No Plugin settings configured" msgid "No Plugin settings configured"
msgstr "" msgstr ""
#: ../../mod/settings.php:535 ../../addon/widgets/widgets.php:122 #: ../../mod/settings.php:542 ../../addon/widgets/widgets.php:122
msgid "Plugin Settings" msgid "Plugin Settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:548 ../../mod/settings.php:549 #: ../../mod/settings.php:555 ../../mod/settings.php:556
#, php-format #, php-format
msgid "Built-in support for %s connectivity is %s" msgid "Built-in support for %s connectivity is %s"
msgstr "" msgstr ""
#: ../../mod/settings.php:548 ../../mod/settings.php:549 #: ../../mod/settings.php:555 ../../mod/settings.php:556
msgid "enabled" msgid "enabled"
msgstr "" msgstr ""
#: ../../mod/settings.php:548 ../../mod/settings.php:549 #: ../../mod/settings.php:555 ../../mod/settings.php:556
msgid "disabled" msgid "disabled"
msgstr "" msgstr ""
#: ../../mod/settings.php:549 #: ../../mod/settings.php:556
msgid "StatusNet" msgid "StatusNet"
msgstr "" msgstr ""
#: ../../mod/settings.php:575 #: ../../mod/settings.php:584
msgid "Connector Settings" msgid "Connector Settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:581 #: ../../mod/settings.php:590
msgid "Email/Mailbox Setup" msgid "Email/Mailbox Setup"
msgstr "" msgstr ""
#: ../../mod/settings.php:582 #: ../../mod/settings.php:591
msgid "" msgid ""
"If you wish to communicate with email contacts using this service " "If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox." "(optional), please specify how to connect to your mailbox."
msgstr "" msgstr ""
#: ../../mod/settings.php:583 #: ../../mod/settings.php:592
msgid "Last successful email check:" msgid "Last successful email check:"
msgstr "" msgstr ""
#: ../../mod/settings.php:584 #: ../../mod/settings.php:593
msgid "Email access is disabled on this site." msgid "Email access is disabled on this site."
msgstr "" msgstr ""
#: ../../mod/settings.php:585 #: ../../mod/settings.php:594
msgid "IMAP server name:" msgid "IMAP server name:"
msgstr "" msgstr ""
#: ../../mod/settings.php:586 #: ../../mod/settings.php:595
msgid "IMAP port:" msgid "IMAP port:"
msgstr "" msgstr ""
#: ../../mod/settings.php:587 #: ../../mod/settings.php:596
msgid "Security:" msgid "Security:"
msgstr "" msgstr ""
#: ../../mod/settings.php:587 #: ../../mod/settings.php:596 ../../mod/settings.php:601
msgid "None" msgid "None"
msgstr "" msgstr ""
#: ../../mod/settings.php:588 #: ../../mod/settings.php:597
msgid "Email login name:" msgid "Email login name:"
msgstr "" msgstr ""
#: ../../mod/settings.php:589 #: ../../mod/settings.php:598
msgid "Email password:" msgid "Email password:"
msgstr "" msgstr ""
#: ../../mod/settings.php:590 #: ../../mod/settings.php:599
msgid "Reply-to address:" msgid "Reply-to address:"
msgstr "" msgstr ""
#: ../../mod/settings.php:591 #: ../../mod/settings.php:600
msgid "Send public posts to all email contacts:" msgid "Send public posts to all email contacts:"
msgstr "" msgstr ""
#: ../../mod/settings.php:648 ../../mod/admin.php:142 ../../mod/admin.php:459 #: ../../mod/settings.php:601
msgid "Action after import:"
msgstr ""
#: ../../mod/settings.php:601
msgid "Mark as seen"
msgstr ""
#: ../../mod/settings.php:601
msgid "Move to folder"
msgstr ""
#: ../../mod/settings.php:602
msgid "Move to folder:"
msgstr ""
#: ../../mod/settings.php:659 ../../mod/admin.php:142 ../../mod/admin.php:461
msgid "Normal Account" msgid "Normal Account"
msgstr "" msgstr ""
#: ../../mod/settings.php:649 #: ../../mod/settings.php:660
msgid "This account is a normal personal profile" msgid "This account is a normal personal profile"
msgstr "" msgstr ""
#: ../../mod/settings.php:652 ../../mod/admin.php:143 ../../mod/admin.php:460 #: ../../mod/settings.php:663 ../../mod/admin.php:143 ../../mod/admin.php:462
msgid "Soapbox Account" msgid "Soapbox Account"
msgstr "" msgstr ""
#: ../../mod/settings.php:653 #: ../../mod/settings.php:664
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:656 ../../mod/admin.php:144 ../../mod/admin.php:461 #: ../../mod/settings.php:667 ../../mod/admin.php:144 ../../mod/admin.php:463
msgid "Community/Celebrity Account" msgid "Community/Celebrity Account"
msgstr "" msgstr ""
#: ../../mod/settings.php:657 #: ../../mod/settings.php:668
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:660 ../../mod/admin.php:145 ../../mod/admin.php:462 #: ../../mod/settings.php:671 ../../mod/admin.php:145 ../../mod/admin.php:464
msgid "Automatic Friend Account" msgid "Automatic Friend Account"
msgstr "" msgstr ""
#: ../../mod/settings.php:661 #: ../../mod/settings.php:672
msgid "Automatically approve all connection/friend requests as friends" msgid "Automatically approve all connection/friend requests as friends"
msgstr "" msgstr ""
#: ../../mod/settings.php:671 #: ../../mod/settings.php:682
msgid "OpenID:" msgid "OpenID:"
msgstr "" msgstr ""
#: ../../mod/settings.php:671 #: ../../mod/settings.php:682
msgid "(Optional) Allow this OpenID to login to this account." msgid "(Optional) Allow this OpenID to login to this account."
msgstr "" msgstr ""
#: ../../mod/settings.php:681 #: ../../mod/settings.php:692
msgid "Publish your default profile in your local site directory?" msgid "Publish your default profile in your local site directory?"
msgstr "" msgstr ""
#: ../../mod/settings.php:687 #: ../../mod/settings.php:698
msgid "Publish your default profile in the global social directory?" msgid "Publish your default profile in the global social directory?"
msgstr "" msgstr ""
#: ../../mod/settings.php:695 #: ../../mod/settings.php:706
msgid "Hide your contact/friend list from viewers of your default profile?" msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "" msgstr ""
#: ../../mod/settings.php:699 #: ../../mod/settings.php:710
msgid "Hide your profile details from unknown viewers?" msgid "Hide your profile details from unknown viewers?"
msgstr "" msgstr ""
#: ../../mod/settings.php:704 #: ../../mod/settings.php:715
msgid "Allow friends to post to your profile page?" msgid "Allow friends to post to your profile page?"
msgstr "" msgstr ""
#: ../../mod/settings.php:710 #: ../../mod/settings.php:721
msgid "Allow friends to tag your posts?" msgid "Allow friends to tag your posts?"
msgstr "" msgstr ""
#: ../../mod/settings.php:716 #: ../../mod/settings.php:727
msgid "Allow us to suggest you as a potential friend to new members?" msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "" msgstr ""
#: ../../mod/settings.php:725 #: ../../mod/settings.php:736
msgid "Profile is <strong>not published</strong>." msgid "Profile is <strong>not published</strong>."
msgstr "" msgstr ""
#: ../../mod/settings.php:757 ../../mod/profile_photo.php:206 #: ../../mod/settings.php:768 ../../mod/profile_photo.php:206
msgid "or" msgid "or"
msgstr "" msgstr ""
#: ../../mod/settings.php:762 #: ../../mod/settings.php:773
msgid "Your Identity Address is" msgid "Your Identity Address is"
msgstr "" msgstr ""
#: ../../mod/settings.php:773 #: ../../mod/settings.php:784
msgid "Automatically expire posts after this many days:" msgid "Automatically expire posts after this many days:"
msgstr "" msgstr ""
#: ../../mod/settings.php:773 #: ../../mod/settings.php:784
msgid "If empty, posts will not expire. Expired posts will be deleted" msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "" msgstr ""
#: ../../mod/settings.php:774 #: ../../mod/settings.php:785
msgid "Advanced expiration settings" msgid "Advanced expiration settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:775 #: ../../mod/settings.php:786
msgid "Advanced Expiration" msgid "Advanced Expiration"
msgstr "" msgstr ""
#: ../../mod/settings.php:776 #: ../../mod/settings.php:787
msgid "Expire posts:" msgid "Expire posts:"
msgstr "" msgstr ""
#: ../../mod/settings.php:777 #: ../../mod/settings.php:788
msgid "Expire personal notes:" msgid "Expire personal notes:"
msgstr "" msgstr ""
#: ../../mod/settings.php:778 #: ../../mod/settings.php:789
msgid "Expire starred posts:" msgid "Expire starred posts:"
msgstr "" msgstr ""
#: ../../mod/settings.php:779 #: ../../mod/settings.php:790
msgid "Expire photos:" msgid "Expire photos:"
msgstr "" msgstr ""
#: ../../mod/settings.php:784 #: ../../mod/settings.php:795
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:792 #: ../../mod/settings.php:803
msgid "Password Settings" msgid "Password Settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:793 #: ../../mod/settings.php:804
msgid "New Password:" msgid "New Password:"
msgstr "" msgstr ""
#: ../../mod/settings.php:794 #: ../../mod/settings.php:805
msgid "Confirm:" msgid "Confirm:"
msgstr "" msgstr ""
#: ../../mod/settings.php:794 #: ../../mod/settings.php:805
msgid "Leave password fields blank unless changing" msgid "Leave password fields blank unless changing"
msgstr "" msgstr ""
#: ../../mod/settings.php:798 #: ../../mod/settings.php:809
msgid "Basic Settings" msgid "Basic Settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:799 ../../include/profile_advanced.php:15 #: ../../mod/settings.php:810 ../../include/profile_advanced.php:15
msgid "Full Name:" msgid "Full Name:"
msgstr "" msgstr ""
#: ../../mod/settings.php:800 #: ../../mod/settings.php:811
msgid "Email Address:" msgid "Email Address:"
msgstr "" msgstr ""
#: ../../mod/settings.php:801 #: ../../mod/settings.php:812
msgid "Your Timezone:" msgid "Your Timezone:"
msgstr "" msgstr ""
#: ../../mod/settings.php:802 #: ../../mod/settings.php:813
msgid "Default Post Location:" msgid "Default Post Location:"
msgstr "" msgstr ""
#: ../../mod/settings.php:803 #: ../../mod/settings.php:814
msgid "Use Browser Location:" msgid "Use Browser Location:"
msgstr "" msgstr ""
#: ../../mod/settings.php:804 #: ../../mod/settings.php:815
msgid "Display Theme:" msgid "Display Theme:"
msgstr "" msgstr ""
#: ../../mod/settings.php:805 #: ../../mod/settings.php:816
msgid "Update browser every xx seconds" msgid "Update browser every xx seconds"
msgstr "" msgstr ""
#: ../../mod/settings.php:805 #: ../../mod/settings.php:816
msgid "Minimum of 10 seconds, no maximum" msgid "Minimum of 10 seconds, no maximum"
msgstr "" msgstr ""
#: ../../mod/settings.php:807 #: ../../mod/settings.php:818
msgid "Security and Privacy Settings" msgid "Security and Privacy Settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:809 #: ../../mod/settings.php:820
msgid "Maximum Friend Requests/Day:" msgid "Maximum Friend Requests/Day:"
msgstr "" msgstr ""
#: ../../mod/settings.php:809 #: ../../mod/settings.php:820
msgid "(to prevent spam abuse)" msgid "(to prevent spam abuse)"
msgstr "" msgstr ""
#: ../../mod/settings.php:810 #: ../../mod/settings.php:821
msgid "Default Post Permissions" msgid "Default Post Permissions"
msgstr "" msgstr ""
#: ../../mod/settings.php:811 #: ../../mod/settings.php:822
msgid "(click to open/close)" msgid "(click to open/close)"
msgstr "" msgstr ""
#: ../../mod/settings.php:826 #: ../../mod/settings.php:837
msgid "Notification Settings" msgid "Notification Settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:827 #: ../../mod/settings.php:838
msgid "Send a notification email when:" msgid "Send a notification email when:"
msgstr "" msgstr ""
#: ../../mod/settings.php:828 #: ../../mod/settings.php:839
msgid "You receive an introduction" msgid "You receive an introduction"
msgstr "" msgstr ""
#: ../../mod/settings.php:829 #: ../../mod/settings.php:840
msgid "Your introductions are confirmed" msgid "Your introductions are confirmed"
msgstr "" msgstr ""
#: ../../mod/settings.php:830 #: ../../mod/settings.php:841
msgid "Someone writes on your profile wall" msgid "Someone writes on your profile wall"
msgstr "" msgstr ""
#: ../../mod/settings.php:831 #: ../../mod/settings.php:842
msgid "Someone writes a followup comment" msgid "Someone writes a followup comment"
msgstr "" msgstr ""
#: ../../mod/settings.php:832 #: ../../mod/settings.php:843
msgid "You receive a private message" msgid "You receive a private message"
msgstr "" msgstr ""
#: ../../mod/settings.php:833 #: ../../mod/settings.php:844
msgid "You receive a friend suggestion" msgid "You receive a friend suggestion"
msgstr "" msgstr ""
#: ../../mod/settings.php:834 #: ../../mod/settings.php:845
msgid "You are tagged in a post" msgid "You are tagged in a post"
msgstr "" msgstr ""
#: ../../mod/settings.php:837 #: ../../mod/settings.php:848
msgid "Advanced Page Settings" msgid "Advanced Page Settings"
msgstr "" msgstr ""
@ -2152,7 +2168,7 @@ msgstr ""
msgid "Personal Notes" msgid "Personal Notes"
msgstr "" msgstr ""
#: ../../mod/notes.php:63 ../../include/text.php:639 #: ../../mod/notes.php:63 ../../include/text.php:645
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -2279,7 +2295,7 @@ msgstr ""
msgid "Could not create group." msgid "Could not create group."
msgstr "" msgstr ""
#: ../../mod/group.php:43 ../../mod/group.php:123 #: ../../mod/group.php:43 ../../mod/group.php:127
msgid "Group not found." msgid "Group not found."
msgstr "" msgstr ""
@ -2291,34 +2307,34 @@ msgstr ""
msgid "Permission denied" msgid "Permission denied"
msgstr "" msgstr ""
#: ../../mod/group.php:82 #: ../../mod/group.php:85
msgid "Create a group of contacts/friends." msgid "Create a group of contacts/friends."
msgstr "" msgstr ""
#: ../../mod/group.php:83 ../../mod/group.php:166 #: ../../mod/group.php:86 ../../mod/group.php:166
msgid "Group Name: " msgid "Group Name: "
msgstr "" msgstr ""
#: ../../mod/group.php:98 #: ../../mod/group.php:102
msgid "Group removed." msgid "Group removed."
msgstr "" msgstr ""
#: ../../mod/group.php:100 #: ../../mod/group.php:104
msgid "Unable to remove group." msgid "Unable to remove group."
msgstr "" msgstr ""
#: ../../mod/group.php:164 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove."
msgstr ""
#: ../../mod/group.php:165 #: ../../mod/group.php:165
msgid "Group Editor" msgid "Group Editor"
msgstr "" msgstr ""
#: ../../mod/group.php:179 #: ../../mod/group.php:177
msgid "Members" msgid "Members"
msgstr "" msgstr ""
#: ../../mod/group.php:209 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove."
msgstr ""
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 #: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier." msgid "Invalid profile identifier."
msgstr "" msgstr ""
@ -2345,7 +2361,7 @@ msgstr ""
msgid "No contacts." msgid "No contacts."
msgstr "" msgstr ""
#: ../../mod/viewcontacts.php:73 ../../include/text.php:578 #: ../../mod/viewcontacts.php:74 ../../include/text.php:584
msgid "View Contacts" msgid "View Contacts"
msgstr "" msgstr ""
@ -2526,9 +2542,9 @@ msgid "%1$s doesn't like %2$s's %3$s"
msgstr "" msgstr ""
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:127 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:127
#: ../../mod/admin.php:518 ../../mod/admin.php:694 ../../mod/display.php:29 #: ../../mod/admin.php:521 ../../mod/admin.php:697 ../../mod/display.php:29
#: ../../mod/display.php:134 ../../mod/viewd.php:14 #: ../../mod/display.php:134 ../../mod/viewd.php:14
#: ../../include/items.php:2880 #: ../../include/items.php:2917
msgid "Item not found." msgid "Item not found."
msgstr "" msgstr ""
@ -2563,28 +2579,28 @@ msgstr ""
msgid "Wall Photos" msgid "Wall Photos"
msgstr "" msgstr ""
#: ../../mod/item.php:830 #: ../../mod/item.php:833
msgid "System error. Post not saved." msgid "System error. Post not saved."
msgstr "" msgstr ""
#: ../../mod/item.php:855 #: ../../mod/item.php:858
#, 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:857 #: ../../mod/item.php:860
#, 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:858 #: ../../mod/item.php:861
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:860 #: ../../mod/item.php:863
#, php-format #, php-format
msgid "%s posted an update." msgid "%s posted an update."
msgstr "" msgstr ""
@ -2708,7 +2724,7 @@ msgstr ""
msgid "Conversation removed." msgid "Conversation removed."
msgstr "" msgstr ""
#: ../../mod/message.php:137 ../../include/conversation.php:868 #: ../../mod/message.php:137 ../../include/conversation.php:887
msgid "Please enter a link URL:" msgid "Please enter a link URL:"
msgstr "" msgstr ""
@ -2766,19 +2782,19 @@ msgstr ""
msgid "Site" msgid "Site"
msgstr "" msgstr ""
#: ../../mod/admin.php:72 ../../mod/admin.php:476 ../../mod/admin.php:488 #: ../../mod/admin.php:72 ../../mod/admin.php:479 ../../mod/admin.php:491
msgid "Users" msgid "Users"
msgstr "" msgstr ""
#: ../../mod/admin.php:73 ../../mod/admin.php:565 ../../mod/admin.php:602 #: ../../mod/admin.php:73 ../../mod/admin.php:568 ../../mod/admin.php:605
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: ../../mod/admin.php:74 ../../mod/admin.php:736 ../../mod/admin.php:768 #: ../../mod/admin.php:74 ../../mod/admin.php:739 ../../mod/admin.php:771
msgid "Themes" msgid "Themes"
msgstr "" msgstr ""
#: ../../mod/admin.php:89 ../../mod/admin.php:846 #: ../../mod/admin.php:89 ../../mod/admin.php:851
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
@ -2786,9 +2802,9 @@ msgstr ""
msgid "User registrations waiting for confirmation" msgid "User registrations waiting for confirmation"
msgstr "" msgstr ""
#: ../../mod/admin.php:160 ../../mod/admin.php:310 ../../mod/admin.php:475 #: ../../mod/admin.php:160 ../../mod/admin.php:310 ../../mod/admin.php:478
#: ../../mod/admin.php:564 ../../mod/admin.php:601 ../../mod/admin.php:735 #: ../../mod/admin.php:567 ../../mod/admin.php:604 ../../mod/admin.php:738
#: ../../mod/admin.php:767 ../../mod/admin.php:845 #: ../../mod/admin.php:770 ../../mod/admin.php:850
msgid "Administration" msgid "Administration"
msgstr "" msgstr ""
@ -2952,7 +2968,7 @@ msgstr ""
#: ../../mod/admin.php:369 #: ../../mod/admin.php:369
#, php-format #, php-format
msgid "%s user blocked" 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] ""
@ -2979,132 +2995,140 @@ msgstr ""
msgid "User '%s' blocked" msgid "User '%s' blocked"
msgstr "" msgstr ""
#: ../../mod/admin.php:478 #: ../../mod/admin.php:481
msgid "select all" msgid "select all"
msgstr "" msgstr ""
#: ../../mod/admin.php:479 #: ../../mod/admin.php:482
msgid "User registrations waiting for confirm" msgid "User registrations waiting for confirm"
msgstr "" msgstr ""
#: ../../mod/admin.php:480 #: ../../mod/admin.php:483
msgid "Request date" msgid "Request date"
msgstr "" msgstr ""
#: ../../mod/admin.php:480 ../../mod/admin.php:489 #: ../../mod/admin.php:483 ../../mod/admin.php:492
#: ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:79
msgid "Email" msgid "Email"
msgstr "" msgstr ""
#: ../../mod/admin.php:481 #: ../../mod/admin.php:484
msgid "No registrations." msgid "No registrations."
msgstr "" msgstr ""
#: ../../mod/admin.php:483 #: ../../mod/admin.php:486
msgid "Deny" msgid "Deny"
msgstr "" msgstr ""
#: ../../mod/admin.php:489 #: ../../mod/admin.php:492
msgid "Register date" msgid "Register date"
msgstr "" msgstr ""
#: ../../mod/admin.php:489 #: ../../mod/admin.php:492
msgid "Last login" msgid "Last login"
msgstr "" msgstr ""
#: ../../mod/admin.php:489 #: ../../mod/admin.php:492
msgid "Last item" msgid "Last item"
msgstr "" msgstr ""
#: ../../mod/admin.php:489 #: ../../mod/admin.php:492
msgid "Account" msgid "Account"
msgstr "" msgstr ""
#: ../../mod/admin.php:491 #: ../../mod/admin.php:494
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:492 #: ../../mod/admin.php:495
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:528 #: ../../mod/admin.php:531
#, php-format #, php-format
msgid "Plugin %s disabled." msgid "Plugin %s disabled."
msgstr "" msgstr ""
#: ../../mod/admin.php:532 #: ../../mod/admin.php:535
#, php-format #, php-format
msgid "Plugin %s enabled." msgid "Plugin %s enabled."
msgstr "" msgstr ""
#: ../../mod/admin.php:542 ../../mod/admin.php:718 #: ../../mod/admin.php:545 ../../mod/admin.php:721
msgid "Disable" msgid "Disable"
msgstr "" msgstr ""
#: ../../mod/admin.php:544 ../../mod/admin.php:720 #: ../../mod/admin.php:547 ../../mod/admin.php:723
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: ../../mod/admin.php:566 ../../mod/admin.php:737 #: ../../mod/admin.php:569 ../../mod/admin.php:740
msgid "Toggle" msgid "Toggle"
msgstr "" msgstr ""
#: ../../mod/admin.php:567 ../../mod/admin.php:738 ../../include/nav.php:130 #: ../../mod/admin.php:570 ../../mod/admin.php:741 ../../include/nav.php:130
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: ../../mod/admin.php:683 #: ../../mod/admin.php:686
msgid "No themes found." msgid "No themes found."
msgstr "" msgstr ""
#: ../../mod/admin.php:795 #: ../../mod/admin.php:776
msgid "[Experimental]"
msgstr ""
#: ../../mod/admin.php:777
msgid "[Unsupported]"
msgstr ""
#: ../../mod/admin.php:800
msgid "Log settings updated." msgid "Log settings updated."
msgstr "" msgstr ""
#: ../../mod/admin.php:848 #: ../../mod/admin.php:853
msgid "Clear" msgid "Clear"
msgstr "" msgstr ""
#: ../../mod/admin.php:854 #: ../../mod/admin.php:859
msgid "Debugging" msgid "Debugging"
msgstr "" msgstr ""
#: ../../mod/admin.php:855 #: ../../mod/admin.php:860
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: ../../mod/admin.php:855 #: ../../mod/admin.php:860
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:856 #: ../../mod/admin.php:861
msgid "Log level" msgid "Log level"
msgstr "" msgstr ""
#: ../../mod/admin.php:897 #: ../../mod/admin.php:902
msgid "Close" msgid "Close"
msgstr "" msgstr ""
#: ../../mod/admin.php:903 #: ../../mod/admin.php:908
msgid "FTP Host" msgid "FTP Host"
msgstr "" msgstr ""
#: ../../mod/admin.php:904 #: ../../mod/admin.php:909
msgid "FTP Path" msgid "FTP Path"
msgstr "" msgstr ""
#: ../../mod/admin.php:905 #: ../../mod/admin.php:910
msgid "FTP User" msgid "FTP User"
msgstr "" msgstr ""
#: ../../mod/admin.php:906 #: ../../mod/admin.php:911
msgid "FTP Password" msgid "FTP Password"
msgstr "" msgstr ""
@ -3120,48 +3144,48 @@ msgstr ""
msgid "Tips for New Members" msgid "Tips for New Members"
msgstr "" msgstr ""
#: ../../mod/ping.php:146 #: ../../mod/ping.php:174
msgid "{0} wants to be your friend" msgid "{0} wants to be your friend"
msgstr "" msgstr ""
#: ../../mod/ping.php:151 #: ../../mod/ping.php:179
msgid "{0} sent you a message" msgid "{0} sent you a message"
msgstr "" msgstr ""
#: ../../mod/ping.php:156 #: ../../mod/ping.php:184
msgid "{0} requested registration" msgid "{0} requested registration"
msgstr "" msgstr ""
#: ../../mod/ping.php:162 #: ../../mod/ping.php:190
#, php-format #, php-format
msgid "{0} commented %s's post" msgid "{0} commented %s's post"
msgstr "" msgstr ""
#: ../../mod/ping.php:167 #: ../../mod/ping.php:195
#, php-format #, php-format
msgid "{0} liked %s's post" msgid "{0} liked %s's post"
msgstr "" msgstr ""
#: ../../mod/ping.php:172 #: ../../mod/ping.php:200
#, php-format #, php-format
msgid "{0} disliked %s's post" msgid "{0} disliked %s's post"
msgstr "" msgstr ""
#: ../../mod/ping.php:177 #: ../../mod/ping.php:205
#, php-format #, php-format
msgid "{0} is now friends with %s" msgid "{0} is now friends with %s"
msgstr "" msgstr ""
#: ../../mod/ping.php:182 #: ../../mod/ping.php:210
msgid "{0} posted" msgid "{0} posted"
msgstr "" msgstr ""
#: ../../mod/ping.php:187 #: ../../mod/ping.php:215
#, php-format #, php-format
msgid "{0} tagged %s's post with #%s" msgid "{0} tagged %s's post with #%s"
msgstr "" msgstr ""
#: ../../mod/ping.php:193 #: ../../mod/ping.php:221
msgid "{0} mentioned you in a post" msgid "{0} mentioned you in a post"
msgstr "" msgstr ""
@ -3589,78 +3613,84 @@ msgid ""
"Once you have registered, please connect with me via my profile page at:" "Once you have registered, please connect with me via my profile page at:"
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:238 #: ../../mod/dfrn_confirm.php:119
msgid ""
"This may occasionally happen if contact was requested by both persons and it "
"has already been approved."
msgstr ""
#: ../../mod/dfrn_confirm.php:239
msgid "Response from remote site was not understood." msgid "Response from remote site was not understood."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:247 #: ../../mod/dfrn_confirm.php:248
msgid "Unexpected response from remote site: " msgid "Unexpected response from remote site: "
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:255 #: ../../mod/dfrn_confirm.php:256
msgid "Confirmation completed successfully." msgid "Confirmation completed successfully."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:257 ../../mod/dfrn_confirm.php:271 #: ../../mod/dfrn_confirm.php:258 ../../mod/dfrn_confirm.php:272
#: ../../mod/dfrn_confirm.php:278 #: ../../mod/dfrn_confirm.php:279
msgid "Remote site reported: " msgid "Remote site reported: "
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:269 #: ../../mod/dfrn_confirm.php:270
msgid "Temporary failure. Please wait and try again." msgid "Temporary failure. Please wait and try again."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:276 #: ../../mod/dfrn_confirm.php:277
msgid "Introduction failed or was revoked." msgid "Introduction failed or was revoked."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:421 #: ../../mod/dfrn_confirm.php:422
msgid "Unable to set contact photo." msgid "Unable to set contact photo."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:473 ../../include/diaspora.php:495 #: ../../mod/dfrn_confirm.php:474 ../../include/diaspora.php:495
#: ../../include/conversation.php:101 #: ../../include/conversation.php:101
#, php-format #, php-format
msgid "%1$s is now friends with %2$s" msgid "%1$s is now friends with %2$s"
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:543 #: ../../mod/dfrn_confirm.php:544
#, php-format #, php-format
msgid "No user record found for '%s' " msgid "No user record found for '%s' "
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:553 #: ../../mod/dfrn_confirm.php:554
msgid "Our site encryption key is apparently messed up." msgid "Our site encryption key is apparently messed up."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:564 #: ../../mod/dfrn_confirm.php:565
msgid "Empty site URL was provided or URL could not be decrypted by us." msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:585 #: ../../mod/dfrn_confirm.php:586
msgid "Contact record was not found for you on our site." msgid "Contact record was not found for you on our site."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:599 #: ../../mod/dfrn_confirm.php:600
#, php-format #, php-format
msgid "Site public key not available in contact record for URL %s." msgid "Site public key not available in contact record for URL %s."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:619 #: ../../mod/dfrn_confirm.php:620
msgid "" msgid ""
"The ID provided by your system is a duplicate on our system. It should work " "The ID provided by your system is a duplicate on our system. It should work "
"if you try again." "if you try again."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:630 #: ../../mod/dfrn_confirm.php:631
msgid "Unable to set your contact credentials on our system." msgid "Unable to set your contact credentials on our system."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:684 #: ../../mod/dfrn_confirm.php:694
msgid "Unable to update your contact profile details on our system" msgid "Unable to update your contact profile details on our system"
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:714 #: ../../mod/dfrn_confirm.php:724
#, php-format #, php-format
msgid "Connection accepted at %s" msgid "Connection accepted at %s"
msgstr "" msgstr ""
@ -3773,7 +3803,7 @@ msgid "Facebook post failed. Queued for retry."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:877 ../../addon/facebook/facebook.php:886 #: ../../addon/facebook/facebook.php:877 ../../addon/facebook/facebook.php:886
#: ../../include/bb2diaspora.php:132 #: ../../include/bb2diaspora.php:102
msgid "link" msgid "link"
msgstr "" msgstr ""
@ -3831,6 +3861,30 @@ msgstr ""
msgid "yourls Settings saved." msgid "yourls Settings saved."
msgstr "" msgstr ""
#: ../../addon/ljpost/ljpost.php:38
msgid "Post to LiveJournal"
msgstr ""
#: ../../addon/ljpost/ljpost.php:69
msgid "LiveJournal Post Settings"
msgstr ""
#: ../../addon/ljpost/ljpost.php:71
msgid "Enable LiveJournal Post Plugin"
msgstr ""
#: ../../addon/ljpost/ljpost.php:76
msgid "LiveJournal username"
msgstr ""
#: ../../addon/ljpost/ljpost.php:81
msgid "LiveJournal password"
msgstr ""
#: ../../addon/ljpost/ljpost.php:86
msgid "Post to LiveJournal by default"
msgstr ""
#: ../../addon/nsfw/nsfw.php:47 #: ../../addon/nsfw/nsfw.php:47
msgid "\"Not Safe For Work\" Settings" msgid "\"Not Safe For Work\" Settings"
msgstr "" msgstr ""
@ -3857,12 +3911,15 @@ msgid "%s - Click to open/close"
msgstr "" msgstr ""
#: ../../addon/communityhome/communityhome.php:28 #: ../../addon/communityhome/communityhome.php:28
#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:62 #: ../../addon/communityhome/communityhome.php:34
#: ../../boot.php:710 #: ../../addon/communityhome/twillingham/communityhome.php:28
#: ../../addon/communityhome/twillingham/communityhome.php:34
#: ../../include/nav.php:62 ../../boot.php:710
msgid "Login" msgid "Login"
msgstr "" msgstr ""
#: ../../addon/communityhome/communityhome.php:29 #: ../../addon/communityhome/communityhome.php:29
#: ../../addon/communityhome/twillingham/communityhome.php:29
msgid "OpenID" msgid "OpenID"
msgstr "" msgstr ""
@ -3871,6 +3928,7 @@ msgid "Last users"
msgstr "" msgstr ""
#: ../../addon/communityhome/communityhome.php:81 #: ../../addon/communityhome/communityhome.php:81
#: ../../addon/communityhome/twillingham/communityhome.php:81
msgid "Most active users" msgid "Most active users"
msgstr "" msgstr ""
@ -3882,11 +3940,15 @@ msgstr ""
msgid "Last likes" msgid "Last likes"
msgstr "" msgstr ""
#: ../../addon/communityhome/communityhome.php:155 #: ../../addon/communityhome/communityhome.php:155 ../../include/text.php:1224
#: ../../include/conversation.php:45 ../../include/conversation.php:118 #: ../../include/conversation.php:45 ../../include/conversation.php:118
msgid "event" msgid "event"
msgstr "" msgstr ""
#: ../../addon/communityhome/twillingham/communityhome.php:38
msgid "Latest users"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:84 #: ../../addon/uhremotestorage/uhremotestorage.php:84
#, php-format #, php-format
msgid "" msgid ""
@ -3973,6 +4035,30 @@ msgstr ""
msgid "Enable Randplace Plugin" msgid "Enable Randplace Plugin"
msgstr "" msgstr ""
#: ../../addon/dwpost/dwpost.php:38
msgid "Post to Dreamwidth"
msgstr ""
#: ../../addon/dwpost/dwpost.php:69
msgid "Dreamwidth Post Settings"
msgstr ""
#: ../../addon/dwpost/dwpost.php:71
msgid "Enable dreamwidth Post Plugin"
msgstr ""
#: ../../addon/dwpost/dwpost.php:76
msgid "dreamwidth username"
msgstr ""
#: ../../addon/dwpost/dwpost.php:81
msgid "dreamwidth password"
msgstr ""
#: ../../addon/dwpost/dwpost.php:86
msgid "Post to dreamwidth by default"
msgstr ""
#: ../../addon/drpost/drpost.php:35 #: ../../addon/drpost/drpost.php:35
msgid "Post to Drupal" msgid "Post to Drupal"
msgstr "" msgstr ""
@ -4151,10 +4237,16 @@ msgid "Quick Comment Settings"
msgstr "" msgstr ""
#: ../../addon/qcomment/qcomment.php:56 #: ../../addon/qcomment/qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to "
"provide simple replies."
msgstr ""
#: ../../addon/qcomment/qcomment.php:57
msgid "Enter quick comments, one per line" msgid "Enter quick comments, one per line"
msgstr "" msgstr ""
#: ../../addon/qcomment/qcomment.php:74 #: ../../addon/qcomment/qcomment.php:75
msgid "Quick Comment settings saved." msgid "Quick Comment settings saved."
msgstr "" msgstr ""
@ -4357,6 +4449,29 @@ msgstr ""
msgid "How many contacts to display on profile sidebar" msgid "How many contacts to display on profile sidebar"
msgstr "" msgstr ""
#: ../../addon/gnot/gnot.php:48
msgid "Gnot settings updated."
msgstr ""
#: ../../addon/gnot/gnot.php:79
msgid "Gnot Settings"
msgstr ""
#: ../../addon/gnot/gnot.php:81
msgid ""
"Allows threading of email comment notifications on Gmail and anonymising the "
"subject line."
msgstr ""
#: ../../addon/gnot/gnot.php:82
msgid "Enable this plugin/addon?"
msgstr ""
#: ../../addon/gnot/gnot.php:97
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr ""
#: ../../addon/wppost/wppost.php:42 #: ../../addon/wppost/wppost.php:42
msgid "Post to Wordpress" msgid "Post to Wordpress"
msgstr "" msgstr ""
@ -4507,6 +4622,10 @@ msgstr ""
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: ../../addon/irc/irc.php:20
msgid "irc Chatroom"
msgstr ""
#: ../../addon/posterous/posterous.php:36 #: ../../addon/posterous/posterous.php:36
msgid "Post to Posterous" msgid "Post to Posterous"
msgstr "" msgstr ""
@ -4892,142 +5011,154 @@ msgstr ""
msgid "Ask me" msgid "Ask me"
msgstr "" msgstr ""
#: ../../include/event.php:17 ../../include/bb2diaspora.php:274 #: ../../include/event.php:17 ../../include/bb2diaspora.php:244
msgid "Starts:" msgid "Starts:"
msgstr "" msgstr ""
#: ../../include/event.php:27 ../../include/bb2diaspora.php:282 #: ../../include/event.php:27 ../../include/bb2diaspora.php:252
msgid "Finishes:" msgid "Finishes:"
msgstr "" msgstr ""
#: ../../include/delivery.php:424 ../../include/notifier.php:637 #: ../../include/delivery.php:425 ../../include/notifier.php:638
msgid "(no subject)" msgid "(no subject)"
msgstr "" msgstr ""
#: ../../include/delivery.php:431 ../../include/enotify.php:16 #: ../../include/delivery.php:432 ../../include/enotify.php:17
#: ../../include/notifier.php:644 #: ../../include/notifier.php:645
msgid "noreply" msgid "noreply"
msgstr "" msgstr ""
#: ../../include/text.php:232 #: ../../include/text.php:238
msgid "prev" msgid "prev"
msgstr "" msgstr ""
#: ../../include/text.php:234 #: ../../include/text.php:240
msgid "first" msgid "first"
msgstr "" msgstr ""
#: ../../include/text.php:263 #: ../../include/text.php:269
msgid "last" msgid "last"
msgstr "" msgstr ""
#: ../../include/text.php:266 #: ../../include/text.php:272
msgid "next" msgid "next"
msgstr "" msgstr ""
#: ../../include/text.php:557 #: ../../include/text.php:563
msgid "No contacts" msgid "No contacts"
msgstr "" msgstr ""
#: ../../include/text.php:566 #: ../../include/text.php:572
#, php-format #, php-format
msgid "%d Contact" msgid "%d Contact"
msgid_plural "%d Contacts" msgid_plural "%d Contacts"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/text.php:637 ../../include/nav.php:87 #: ../../include/text.php:643 ../../include/nav.php:87
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: ../../include/text.php:813 #: ../../include/text.php:831
msgid "Monday" msgid "Monday"
msgstr "" msgstr ""
#: ../../include/text.php:813 #: ../../include/text.php:831
msgid "Tuesday" msgid "Tuesday"
msgstr "" msgstr ""
#: ../../include/text.php:813 #: ../../include/text.php:831
msgid "Wednesday" msgid "Wednesday"
msgstr "" msgstr ""
#: ../../include/text.php:813 #: ../../include/text.php:831
msgid "Thursday" msgid "Thursday"
msgstr "" msgstr ""
#: ../../include/text.php:813 #: ../../include/text.php:831
msgid "Friday" msgid "Friday"
msgstr "" msgstr ""
#: ../../include/text.php:813 #: ../../include/text.php:831
msgid "Saturday" msgid "Saturday"
msgstr "" msgstr ""
#: ../../include/text.php:813 #: ../../include/text.php:831
msgid "Sunday" msgid "Sunday"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "January" msgid "January"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "February" msgid "February"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "March" msgid "March"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "April" msgid "April"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "May" msgid "May"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "June" msgid "June"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "July" msgid "July"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "August" msgid "August"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "September" msgid "September"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "October" msgid "October"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "November" msgid "November"
msgstr "" msgstr ""
#: ../../include/text.php:817 #: ../../include/text.php:835
msgid "December" msgid "December"
msgstr "" msgstr ""
#: ../../include/text.php:887 #: ../../include/text.php:905
msgid "bytes" msgid "bytes"
msgstr "" msgstr ""
#: ../../include/text.php:982 #: ../../include/text.php:1000
msgid "Select an alternate language" msgid "Select an alternate language"
msgstr "" msgstr ""
#: ../../include/text.php:994 #: ../../include/text.php:1012
msgid "default" msgid "default"
msgstr "" msgstr ""
#: ../../include/text.php:1228
msgid "activity"
msgstr ""
#: ../../include/text.php:1230
msgid "comment"
msgstr ""
#: ../../include/text.php:1231
msgid "post"
msgstr ""
#: ../../include/diaspora.php:570 #: ../../include/diaspora.php:570
msgid "Sharing notification from Diaspora network" msgid "Sharing notification from Diaspora network"
msgstr "" msgstr ""
@ -5041,6 +5172,10 @@ msgstr ""
msgid "[Relayed] Comment authored by %s from network %s" msgid "[Relayed] Comment authored by %s from network %s"
msgstr "" msgstr ""
#: ../../include/network.php:814
msgid "view full size"
msgstr ""
#: ../../include/oembed.php:128 #: ../../include/oembed.php:128
msgid "Embedded content" msgid "Embedded content"
msgstr "" msgstr ""
@ -5336,7 +5471,7 @@ msgstr ""
msgid "%1$d %2$s ago" msgid "%1$d %2$s ago"
msgstr "" msgstr ""
#: ../../include/poller.php:474 #: ../../include/poller.php:513
msgid "From: " msgid "From: "
msgstr "" msgstr ""
@ -5357,15 +5492,15 @@ msgstr ""
msgid "[no subject]" msgid "[no subject]"
msgstr "" msgstr ""
#: ../../include/acl_selectors.php:279 #: ../../include/acl_selectors.php:284
msgid "Visible to everybody" msgid "Visible to everybody"
msgstr "" msgstr ""
#: ../../include/acl_selectors.php:280 #: ../../include/acl_selectors.php:285
msgid "show" msgid "show"
msgstr "" msgstr ""
#: ../../include/acl_selectors.php:281 #: ../../include/acl_selectors.php:286
msgid "don't show" msgid "don't show"
msgstr "" msgstr ""
@ -5382,172 +5517,191 @@ msgstr ""
msgid "%s Administrator" msgid "%s Administrator"
msgstr "" msgstr ""
#: ../../include/enotify.php:28 #: ../../include/enotify.php:29
#, php-format #, php-format
msgid "New mail received at %s" msgid "%s <!item_type!>"
msgstr "" msgstr ""
#: ../../include/enotify.php:30 #: ../../include/enotify.php:33
#, php-format
msgid "[Friendica:Notify] New mail received at %s"
msgstr ""
#: ../../include/enotify.php:35
#, php-format #, php-format
msgid "%s sent you a new private message at %s." msgid "%s sent you a new private message at %s."
msgstr "" msgstr ""
#: ../../include/enotify.php:31 #: ../../include/enotify.php:36
#, php-format #, php-format
msgid "%s sent you %s." msgid "%s sent you %s."
msgstr "" msgstr ""
#: ../../include/enotify.php:31 #: ../../include/enotify.php:36
msgid "a private message" msgid "a private message"
msgstr "" msgstr ""
#: ../../include/enotify.php:32 #: ../../include/enotify.php:37
#, php-format #, php-format
msgid "Please visit %s to view and/or reply to your private messages." msgid "Please visit %s to view and/or reply to your private messages."
msgstr "" msgstr ""
#: ../../include/enotify.php:40 #: ../../include/enotify.php:67
#, php-format #, php-format
msgid "%s commented on an item at %s" msgid "%s's"
msgstr "" msgstr ""
#: ../../include/enotify.php:41 #: ../../include/enotify.php:71
msgid "your"
msgstr ""
#: ../../include/enotify.php:78
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%d by %s"
msgstr ""
#: ../../include/enotify.php:79
#, php-format #, php-format
msgid "%s commented on an item/conversation you have been following." msgid "%s commented on an item/conversation you have been following."
msgstr "" msgstr ""
#: ../../include/enotify.php:42 #: ../../include/enotify.php:80
#, php-format #, php-format
msgid "%s commented in %s." msgid "%s commented on %s."
msgstr "" msgstr ""
#: ../../include/enotify.php:42 #: ../../include/enotify.php:82 ../../include/enotify.php:95
msgid "a watched conversation" #: ../../include/enotify.php:106 ../../include/enotify.php:117
msgstr ""
#: ../../include/enotify.php:44 ../../include/enotify.php:54
#: ../../include/enotify.php:64 ../../include/enotify.php:74
#, php-format #, php-format
msgid "Please visit %s to view and/or reply to the conversation." msgid "Please visit %s to view and/or reply to the conversation."
msgstr "" msgstr ""
#: ../../include/enotify.php:51 #: ../../include/enotify.php:89
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr ""
#: ../../include/enotify.php:91
#, php-format #, php-format
msgid "%s posted to your profile wall at %s" msgid "%s posted to your profile wall at %s"
msgstr "" msgstr ""
#: ../../include/enotify.php:52 #: ../../include/enotify.php:93
#, php-format #, php-format
msgid "%s posted to %s" msgid "%s posted to %s"
msgstr "" msgstr ""
#: ../../include/enotify.php:52 #: ../../include/enotify.php:93
msgid "your profile wall." msgid "your profile wall."
msgstr "" msgstr ""
#: ../../include/enotify.php:61 #: ../../include/enotify.php:102
#, php-format #, php-format
msgid "%s tagged you at %s" msgid "[Friendica:Notify] %s tagged you"
msgstr ""
#: ../../include/enotify.php:62
#, php-format
msgid "%s %s."
msgstr ""
#: ../../include/enotify.php:62
msgid "tagged you"
msgstr ""
#: ../../include/enotify.php:71
#, php-format
msgid "%s tagged your post at %s"
msgstr ""
#: ../../include/enotify.php:72
#, php-format
msgid "%s tagged %s"
msgstr ""
#: ../../include/enotify.php:72
msgid "your post"
msgstr ""
#: ../../include/enotify.php:81
#, php-format
msgid "Introduction received at %s"
msgstr ""
#: ../../include/enotify.php:82
#, php-format
msgid "You've received an introduction from '%s' at %s"
msgstr ""
#: ../../include/enotify.php:83
#, php-format
msgid "You've received %s from %s."
msgstr ""
#: ../../include/enotify.php:83
msgid "an introduction"
msgstr ""
#: ../../include/enotify.php:84 ../../include/enotify.php:101
#, php-format
msgid "You may visit their profile at %s"
msgstr ""
#: ../../include/enotify.php:86
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr ""
#: ../../include/enotify.php:93
#, php-format
msgid "Friend suggestion received at %s"
msgstr ""
#: ../../include/enotify.php:94
#, php-format
msgid "You've received a friend suggestion from '%s' at %s"
msgstr ""
#: ../../include/enotify.php:95
#, php-format
msgid "You've received %s for %s from %s."
msgstr ""
#: ../../include/enotify.php:96
msgid "a friend suggestion"
msgstr ""
#: ../../include/enotify.php:99
msgid "Name:"
msgstr ""
#: ../../include/enotify.php:100
msgid "Photo:"
msgstr "" msgstr ""
#: ../../include/enotify.php:103 #: ../../include/enotify.php:103
#, php-format #, php-format
msgid "%s tagged you at %s"
msgstr ""
#: ../../include/enotify.php:104
#, php-format
msgid "%s %s."
msgstr ""
#: ../../include/enotify.php:104
msgid "tagged you"
msgstr ""
#: ../../include/enotify.php:113
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr ""
#: ../../include/enotify.php:114
#, php-format
msgid "%s tagged your post at %s"
msgstr ""
#: ../../include/enotify.php:115
#, php-format
msgid "%s tagged %s"
msgstr ""
#: ../../include/enotify.php:115
msgid "your post"
msgstr ""
#: ../../include/enotify.php:124
msgid "[Friendica:Notify] Introduction received"
msgstr ""
#: ../../include/enotify.php:125
#, php-format
msgid "You've received an introduction from '%s' at %s"
msgstr ""
#: ../../include/enotify.php:126
#, php-format
msgid "You've received %s from %s."
msgstr ""
#: ../../include/enotify.php:126
msgid "an introduction"
msgstr ""
#: ../../include/enotify.php:127 ../../include/enotify.php:144
#, php-format
msgid "You may visit their profile at %s"
msgstr ""
#: ../../include/enotify.php:129
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr ""
#: ../../include/enotify.php:136
msgid "[Friendica:Notify] Friend suggestion received"
msgstr ""
#: ../../include/enotify.php:137
#, php-format
msgid "You've received a friend suggestion from '%s' at %s"
msgstr ""
#: ../../include/enotify.php:138
#, php-format
msgid "You've received %s for %s from %s."
msgstr ""
#: ../../include/enotify.php:139
msgid "a friend suggestion"
msgstr ""
#: ../../include/enotify.php:142
msgid "Name:"
msgstr ""
#: ../../include/enotify.php:143
msgid "Photo:"
msgstr ""
#: ../../include/enotify.php:146
#, php-format
msgid "Please visit %s to approve or reject the suggestion." msgid "Please visit %s to approve or reject the suggestion."
msgstr "" msgstr ""
#: ../../include/items.php:2511 #: ../../include/items.php:2548
msgid "A new person is sharing with you at " msgid "A new person is sharing with you at "
msgstr "" msgstr ""
#: ../../include/items.php:2511 #: ../../include/items.php:2548
msgid "You have a new follower at " msgid "You have a new follower at "
msgstr "" msgstr ""
#: ../../include/bb2diaspora.php:83 #: ../../include/bb2diaspora.php:102 ../../include/bb2diaspora.php:112
msgid "view full size" #: ../../include/bb2diaspora.php:113
msgstr ""
#: ../../include/bb2diaspora.php:132 ../../include/bb2diaspora.php:142
#: ../../include/bb2diaspora.php:143
msgid "image/photo" msgid "image/photo"
msgstr "" msgstr ""
@ -5563,25 +5717,25 @@ msgstr ""
msgid "Welcome back " msgid "Welcome back "
msgstr "" msgstr ""
#: ../../include/Contact.php:131 ../../include/conversation.php:769 #: ../../include/Contact.php:131 ../../include/conversation.php:788
msgid "View status" msgid "View status"
msgstr "" msgstr ""
#: ../../include/Contact.php:132 ../../include/conversation.php:770 #: ../../include/Contact.php:132 ../../include/conversation.php:789
msgid "View profile" msgid "View profile"
msgstr "" msgstr ""
#: ../../include/Contact.php:133 ../../include/conversation.php:771 #: ../../include/Contact.php:133 ../../include/conversation.php:790
msgid "View photos" msgid "View photos"
msgstr "" msgstr ""
#: ../../include/Contact.php:134 ../../include/Contact.php:147 #: ../../include/Contact.php:134 ../../include/Contact.php:147
#: ../../include/conversation.php:772 #: ../../include/conversation.php:791
msgid "View recent" msgid "View recent"
msgstr "" msgstr ""
#: ../../include/Contact.php:136 ../../include/Contact.php:147 #: ../../include/Contact.php:136 ../../include/Contact.php:147
#: ../../include/conversation.php:774 #: ../../include/conversation.php:793
msgid "Send PM" msgid "Send PM"
msgstr "" msgstr ""
@ -5594,188 +5748,188 @@ 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:301 ../../include/conversation.php:562 #: ../../include/conversation.php:303 ../../include/conversation.php:572
msgid "Select" msgid "Select"
msgstr "" msgstr ""
#: ../../include/conversation.php:316 ../../include/conversation.php:648 #: ../../include/conversation.php:320 ../../include/conversation.php:665
#: ../../include/conversation.php:649 #: ../../include/conversation.php:666
#, php-format #, php-format
msgid "View %s's profile @ %s" msgid "View %s's profile @ %s"
msgstr "" msgstr ""
#: ../../include/conversation.php:325 ../../include/conversation.php:660 #: ../../include/conversation.php:330 ../../include/conversation.php:677
#, php-format #, php-format
msgid "%s from %s" msgid "%s from %s"
msgstr "" msgstr ""
#: ../../include/conversation.php:341 #: ../../include/conversation.php:346
msgid "View in context" msgid "View in context"
msgstr "" msgstr ""
#: ../../include/conversation.php:456 #: ../../include/conversation.php:467
#, 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:459 ../../boot.php:448 #: ../../include/conversation.php:468 ../../boot.php:448
msgid "show more" msgid "show more"
msgstr "" msgstr ""
#: ../../include/conversation.php:519 #: ../../include/conversation.php:529
msgid "like" msgid "like"
msgstr "" msgstr ""
#: ../../include/conversation.php:520 #: ../../include/conversation.php:530
msgid "dislike" msgid "dislike"
msgstr "" msgstr ""
#: ../../include/conversation.php:522 #: ../../include/conversation.php:532
msgid "Share this" msgid "Share this"
msgstr "" msgstr ""
#: ../../include/conversation.php:522 #: ../../include/conversation.php:532
msgid "share" msgid "share"
msgstr "" msgstr ""
#: ../../include/conversation.php:572 #: ../../include/conversation.php:582
msgid "add star" msgid "add star"
msgstr "" msgstr ""
#: ../../include/conversation.php:573 #: ../../include/conversation.php:583
msgid "remove star" msgid "remove star"
msgstr "" msgstr ""
#: ../../include/conversation.php:574 #: ../../include/conversation.php:584
msgid "toggle star status" msgid "toggle star status"
msgstr "" msgstr ""
#: ../../include/conversation.php:577 #: ../../include/conversation.php:587
msgid "starred" msgid "starred"
msgstr "" msgstr ""
#: ../../include/conversation.php:578 #: ../../include/conversation.php:588
msgid "add tag" msgid "add tag"
msgstr "" msgstr ""
#: ../../include/conversation.php:650 #: ../../include/conversation.php:667
msgid "to" msgid "to"
msgstr "" msgstr ""
#: ../../include/conversation.php:651 #: ../../include/conversation.php:668
msgid "Wall-to-Wall" msgid "Wall-to-Wall"
msgstr "" msgstr ""
#: ../../include/conversation.php:652 #: ../../include/conversation.php:669
msgid "via Wall-To-Wall:" msgid "via Wall-To-Wall:"
msgstr "" msgstr ""
#: ../../include/conversation.php:694 #: ../../include/conversation.php:713
msgid "Delete Selected Items" msgid "Delete Selected Items"
msgstr "" msgstr ""
#: ../../include/conversation.php:826 #: ../../include/conversation.php:845
#, php-format #, php-format
msgid "%s likes this." msgid "%s likes this."
msgstr "" msgstr ""
#: ../../include/conversation.php:826 #: ../../include/conversation.php:845
#, php-format #, php-format
msgid "%s doesn't like this." msgid "%s doesn't like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:830 #: ../../include/conversation.php:849
#, 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:832 #: ../../include/conversation.php:851
#, 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:838 #: ../../include/conversation.php:857
msgid "and" msgid "and"
msgstr "" msgstr ""
#: ../../include/conversation.php:841 #: ../../include/conversation.php:860
#, php-format #, php-format
msgid ", and %d other people" msgid ", and %d other people"
msgstr "" msgstr ""
#: ../../include/conversation.php:842 #: ../../include/conversation.php:861
#, php-format #, php-format
msgid "%s like this." msgid "%s like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:842 #: ../../include/conversation.php:861
#, php-format #, php-format
msgid "%s don't like this." msgid "%s don't like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:867 #: ../../include/conversation.php:886
msgid "Visible to <strong>everybody</strong>" msgid "Visible to <strong>everybody</strong>"
msgstr "" msgstr ""
#: ../../include/conversation.php:869 #: ../../include/conversation.php:888
msgid "Please enter a video link/URL:" msgid "Please enter a video link/URL:"
msgstr "" msgstr ""
#: ../../include/conversation.php:870 #: ../../include/conversation.php:889
msgid "Please enter an audio link/URL:" msgid "Please enter an audio link/URL:"
msgstr "" msgstr ""
#: ../../include/conversation.php:871 #: ../../include/conversation.php:890
msgid "Tag term:" msgid "Tag term:"
msgstr "" msgstr ""
#: ../../include/conversation.php:872 #: ../../include/conversation.php:891
msgid "Where are you right now?" msgid "Where are you right now?"
msgstr "" msgstr ""
#: ../../include/conversation.php:873 #: ../../include/conversation.php:892
msgid "Enter a title for this item" msgid "Enter a title for this item"
msgstr "" msgstr ""
#: ../../include/conversation.php:916 #: ../../include/conversation.php:935
msgid "upload photo" msgid "upload photo"
msgstr "" msgstr ""
#: ../../include/conversation.php:918 #: ../../include/conversation.php:937
msgid "attach file" msgid "attach file"
msgstr "" msgstr ""
#: ../../include/conversation.php:920 #: ../../include/conversation.php:939
msgid "web link" msgid "web link"
msgstr "" msgstr ""
#: ../../include/conversation.php:921 #: ../../include/conversation.php:940
msgid "Insert video link" msgid "Insert video link"
msgstr "" msgstr ""
#: ../../include/conversation.php:922 #: ../../include/conversation.php:941
msgid "video link" msgid "video link"
msgstr "" msgstr ""
#: ../../include/conversation.php:923 #: ../../include/conversation.php:942
msgid "Insert audio link" msgid "Insert audio link"
msgstr "" msgstr ""
#: ../../include/conversation.php:924 #: ../../include/conversation.php:943
msgid "audio link" msgid "audio link"
msgstr "" msgstr ""
#: ../../include/conversation.php:926 #: ../../include/conversation.php:945
msgid "set location" msgid "set location"
msgstr "" msgstr ""
#: ../../include/conversation.php:928 #: ../../include/conversation.php:947
msgid "clear location" msgid "clear location"
msgstr "" msgstr ""
#: ../../include/conversation.php:933 #: ../../include/conversation.php:952
msgid "permissions" msgid "permissions"
msgstr "" msgstr ""

View file

@ -4,12 +4,17 @@
<p><span class='toggleplugin icon $status'></span> $info.name - $info.version : <a href="$baseurl/admin/$function/$plugin/?a=t">$action</a></p> <p><span class='toggleplugin icon $status'></span> $info.name - $info.version : <a href="$baseurl/admin/$function/$plugin/?a=t">$action</a></p>
<p>$info.description</p> <p>$info.description</p>
<p class="author"> <p class="author">$str_author
{{ for $info.author as $a }} {{ for $info.author as $a }}
{{ if $a.link }}<a href="$a.link">$a.name</a>{{ else }}$a.name{{ endif }}, {{ if $a.link }}<a href="$a.link">$a.name</a>{{ else }}$a.name{{ endif }},
{{ endfor }} {{ endfor }}
</p> </p>
<p class="maintainer">$str_maintainer
{{ for $info.maintainer as $a }}
{{ if $a.link }}<a href="$a.link">$a.name</a>{{ else }}$a.name{{ endif }},
{{ endfor }}
</p>
{{ if $admin_form }} {{ if $admin_form }}
<h3>$settings</h3> <h3>$settings</h3>

View file

@ -13,7 +13,7 @@
{{ for $accounts as $p }} {{ for $accounts as $p }}
<dl> <dl>
<dt>$p.0</dt> <dt>$p.0</dt>
<dd>$p.1</dd> <dd>{{ if $p.1 }}$p.1{{ else }}0{{ endif }}</dd>
</dl> </dl>
{{ endfor }} {{ endfor }}

View file

@ -24,7 +24,8 @@ nav #banner #logo-text a { color: #ffffff; }
.wall-item-content-wrapper { border: 1px solid #444444; } .wall-item-content-wrapper { border: 1px solid #444444; }
.wall-item-tools { background-color: #444444; background-image: none;} .wall-item-tools { background-color: #444444; background-image: none;}
.comment-edit-wrapper{ background-color: #333333; } .comment-wwedit-wrapper{ background-color: #333333; }
.comment-edit-preview{ color: #000000; }
.wall-item-content-wrapper.comment { background-color: #444444; border: 0px;} .wall-item-content-wrapper.comment { background-color: #444444; border: 0px;}
.photo-top-album-name{ background-color: #333333; } .photo-top-album-name{ background-color: #333333; }
.photo-album-image-wrapper .caption { background-color: rgba(51, 51, 51, 0.8); color: #FFFFFF; } .photo-album-image-wrapper .caption { background-color: rgba(51, 51, 51, 0.8); color: #FFFFFF; }

View file

@ -4,6 +4,8 @@
* Name: Darkzero * Name: Darkzero
* Version: 1.0 * Version: 1.0
* Author: Fabio Communi <fabrix.xm@gmail.com> * Author: Fabio Communi <fabrix.xm@gmail.com>
* Maintainer: Fabio Communi <fabrix.xm@gmail.com>
* Maintainer: Mike Macgirvin <mike@macgirvin.com>
*/ */
$a->theme_info = array( $a->theme_info = array(

View file

@ -1703,11 +1703,11 @@ div[id$="wrapper"] br {
} }
#settings-nickname-desc { #settings-nickname-desc {
background-color:#DDEFFF; background-color: #def;
-webkit-border-radius:5px; -webkit-border-radius: 5px;
-moz-border-radius:5px; -moz-border-radius: 5px;
border-radius:5px; border-radius: 5px;
padding:5px; padding: 5px;
} }
#register-form div, #register-form div,
@ -2116,7 +2116,7 @@ div[id$="wrapper"] br {
margin: 0 10px 0.2em 0; margin: 0 10px 0.2em 0;
border: 1px #999 solid; border: 1px #999 solid;
padding: 5px; padding: 5px;
background: #f2eedf; background: #def;
vertical-align: middle; vertical-align: middle;
} }
.field input { .field input {
@ -2132,7 +2132,7 @@ div[id$="wrapper"] br {
} }
.field_help { .field_help {
display: block; display: block;
margin-left: 0px; margin-left: 297px;
color: #666; color: #666;
} }
.field .onoff { .field .onoff {
@ -2142,32 +2142,26 @@ div[id$="wrapper"] br {
.field .onoff a { .field .onoff a {
display: block; display: block;
border: 1px solid #666; border: 1px solid #666;
background: url("../../../images/onoff.jpg") no-repeat; padding: 3px 6px 4px 10px;
padding: 4px 2px 2px;
height: 16px; height: 16px;
text-decoration: none; text-decoration: none;
} }
.field .onoff .off {
border-color: #666;
padding-left: 40px;
background: #ccc left center;
color: #666;
text-align:right;
}
.field .onoff .on { .field .onoff .on {
border-color:#204a87; background: url("../../../images/onoff.jpg") no-repeat 42px 1px #def;
padding-right:40px; color: #333;
background-position:right center; text-align: left;
background-color:#3465A4; }
color:#fff; .field .onoff .off {
text-align:left; background: url("../../../images/onoff.jpg") no-repeat 2px 1px #ccc;
color: #333;
text-align: right;
} }
.hidden { .hidden {
display:none !important; display:none !important;
} }
.field.radio .field_help { .field.radio .field_help {
margin-left:0; margin-left: 0;
} }

View file

@ -58,6 +58,9 @@
</div> </div>
</nav> </nav>
<ul id="nav-notifications-template" style="display:none;" rel="template"> <ul id="nav-notifications-template" style="display:none;" rel="template">
<li><a href="{0}">{2} <span class="notif-when">{3}</span></a></li> <li class="{4}"><a href="{0}"><img src="{1}" height="24" width="24" alt="" />{2} <span class="notif-when">{3}</span></a></li>
</ul> </ul>

View file

@ -55,7 +55,7 @@ p {
} }
label { label {
font-variant:small-caps; /* font-variant:small-caps; */
} }
li { li {
@ -455,7 +455,7 @@ aside a{
.vcard { .vcard {
font-size: 1em; font-size: 1em;
font-variant:small-caps; /* font-variant:small-caps; */
} }
.vcard dd { .vcard dd {
@ -488,7 +488,7 @@ aside h4 { font-size: 1.3em; }
color: #626262; color: #626262;
text-align: center; text-align: center;
font-weight: bold; font-weight: bold;
font-variant:small-caps; /* font-variant:small-caps; */
font-size: 1.1em; font-size: 1.1em;
} }
.allcontact-link a { .allcontact-link a {
@ -1041,7 +1041,7 @@ profile-jot-banner-wrapper {
font-size: 0.9em; font-size: 0.9em;
margin: 4px 0px 0px 140px; margin: 4px 0px 0px 140px;
padding-left: 10px; padding-left: 10px;
font-variant:small-caps; /* font-variant:small-caps; */
} }
.wall-item-author a { .wall-item-author a {
@ -1063,7 +1063,7 @@ profile-jot-banner-wrapper {
margin-left: 25px; margin-left: 25px;
font-size: 0.9em; font-size: 0.9em;
display: block; display: block;
font-variant:small-caps; /* font-variant:small-caps; */
color: #898989; color: #898989;
} }
@ -1072,7 +1072,7 @@ profile-jot-banner-wrapper {
.wall-item-conv a{ .wall-item-conv a{
font-size: 0.9em; font-size: 0.9em;
color: #898989; color: #898989;
font-variant:small-caps; /* font-variant:small-caps; */
} }
.wallwall .wwto { .wallwall .wwto {
@ -1157,7 +1157,7 @@ profile-jot-banner-wrapper {
font-size: 0.9em; font-size: 0.9em;
color: #898989; color: #898989;
margin-left: 60px; margin-left: 60px;
font-variant:small-caps; /* font-variant:small-caps; */
} }
.wall-item-outside-wrapper.comment { margin-left: 70px; } .wall-item-outside-wrapper.comment { margin-left: 70px; }
@ -1189,7 +1189,7 @@ profile-jot-banner-wrapper {
.icollapse-wrapper { .icollapse-wrapper {
font-size: 0.9em; font-size: 0.9em;
color: #898989; color: #898989;
font-variant:small-caps; /* font-variant:small-caps; */
} }
.comment-wwedit-wrapper, .comment-wwedit-wrapper,
@ -1266,7 +1266,7 @@ profile-jot-banner-wrapper {
margin-bottom: 0px; margin-bottom: 0px;
padding-bottom: 5px; padding-bottom: 5px;
font-size: 18px; font-size: 18px;
font-variant:small-caps; /* font-variant:small-caps; */
} }
div[id$="wrapper"] { height: 100%;} div[id$="wrapper"] { height: 100%;}
@ -1298,7 +1298,7 @@ div[id$="wrapper"] br { clear: left; }
.profile-listing-name { .profile-listing-name {
font-size: 1em; font-size: 1em;
font-variant: small-caps; /* font-variant: small-caps;*/
} }
.profile-listing-name a { .profile-listing-name a {
color: #898989; color: #898989;
@ -1342,7 +1342,7 @@ div[id$="wrapper"] br { clear: left; }
.profile-match-name a{ .profile-match-name a{
color: #999; color: #999;
font-variant: small-caps; /* font-variant: small-caps; */
font-size: 1em; font-size: 1em;
} }
@ -1462,7 +1462,7 @@ div[id$="wrapper"] br { clear: left; }
padding: 0px 5px; padding: 0px 5px;
font-weight: bold; font-weight: bold;
font-stretch:semi-expanded; font-stretch:semi-expanded;
font-variant:small-caps; /* font-variant:small-caps; */
} }
.photo-top-album-name a{ .photo-top-album-name a{
@ -1476,7 +1476,7 @@ div[id$="wrapper"] br { clear: left; }
text-align: center; text-align: center;
color: #6e6e6e; color: #6e6e6e;
font-size: 0.9em; font-size: 0.9em;
font-variant: small-caps; /* font-variant: small-caps; */
} }
#photo-photo{ #photo-photo{
@ -1487,7 +1487,7 @@ div[id$="wrapper"] br { clear: left; }
#photo-caption { #photo-caption {
margin-top: 10px; margin-top: 10px;
color: #6E6E6E; color: #6E6E6E;
font-variant:small-caps; /* font-variant:small-caps; */
font-size: 1.1em; font-size: 1.1em;
} }
@ -1712,18 +1712,18 @@ input#photo_edit_form {
} }
#prvmail-subject-label { #prvmail-subject-label {
font-variant:small-caps; /* font-variant:small-caps; */
} }
#prvmail-to { #prvmail-to {
padding-left: 10px; padding-left: 10px;
} }
#prvmail-to-label { #prvmail-to-label {
font-variant:small-caps; /* font-variant:small-caps; */
} }
#prvmail-message-label { #prvmail-message-label {
font-variant:small-caps; /* font-variant:small-caps; */
font-size: 1em; font-size: 1em;
} }
@ -1769,7 +1769,7 @@ margin-left: 0px;
.mail-list-sender-name { .mail-list-sender-name {
font-size: 1.1em; font-size: 1.1em;
display: inline; display: inline;
font-variant:small-caps; /* font-variant:small-caps; */
} }
.mail-list-date { .mail-list-date {
@ -1779,7 +1779,7 @@ margin-left: 0px;
font-size: 0.9em; font-size: 0.9em;
padding-left: 10px; padding-left: 10px;
font-stretch:ultra-condensed; font-stretch:ultra-condensed;
font-variant:small-caps; /* font-variant:small-caps; */
} }
.mail-list-subject { .mail-list-subject {
@ -1808,8 +1808,8 @@ margin-left: 0px;
height: 64px; height: 64px;
} }
.mail-conv-sender-name { float: left; font-variant:small-caps; font-style: bold; } .mail-conv-sender-name { float: left; font-style: bold; }
.mail-conv-date { float: right; font-variant:small-caps; } .mail-conv-date { float: right; }
.mail-conv-subject { clear: right; font-weight: bold; font-size: 1.2em } .mail-conv-subject { clear: right; font-weight: bold; font-size: 1.2em }
.mail-conv-body { .mail-conv-body {
clear: both; clear: both;
@ -1903,7 +1903,7 @@ margin-left: 0px;
font: #999; font: #999;
font-size: 12px; font-size: 12px;
text-align:center; text-align:center;
font-variant:small-caps; /* font-variant:small-caps; */
font-weight: bold; font-weight: bold;
margin-top:5px; margin-top:5px;
} }
@ -1920,7 +1920,7 @@ margin-left: 0px;
background-color: #ffffff; background-color: #ffffff;
} }
#contact-edit-banner-name { font-size: 1.5em; margin-left: 30px; font-variant: small-caps; } #contact-edit-banner-name { font-size: 1.5em; margin-left: 30px; }
#contact-edit-update-now { #contact-edit-update-now {
@ -2003,7 +2003,7 @@ margin-left: 0px;
} }
.view-contact-name { .view-contact-name {
font-variant: small-caps; /* font-variant: small-caps; */
} }
#div.side-link { #div.side-link {
@ -2540,7 +2540,7 @@ margin-left: 0px;
margin-bottom: 2px; margin-bottom: 2px;
margin-top: 2px; margin-top: 2px;
font-size: 0.9em; font-size: 0.9em;
font-variant: small-caps; /* font-variant: small-caps; */
text-align: left; text-align: left;
} }
@ -2606,7 +2606,7 @@ margin-left: 0px;
.event-list-date { .event-list-date {
color: #626262; color: #626262;
margin-bottom: 10px; margin-bottom: 10px;
font-variant:small-caps; /* font-variant:small-caps; */
font-stretch:condensed; font-stretch:condensed;
} }
@ -2642,7 +2642,7 @@ margin-left: 0px;
color: #ffffff; color: #ffffff;
font-weight: bold; font-weight: bold;
text-align:center; text-align:center;
font-variant:small-caps; /* font-variant:small-caps; */
-moz-box-shadow: 5px 2px 8px #959494; -moz-box-shadow: 5px 2px 8px #959494;
-webkit-box-shadow: 5px 2px 8px #959494; -webkit-box-shadow: 5px 2px 8px #959494;
box-shadow: 5px 2px 8px #959494; box-shadow: 5px 2px 8px #959494;
@ -2720,13 +2720,13 @@ tr {
.directory-details { .directory-details {
font-size: 0.9em; font-size: 0.9em;
font-variant: small-caps; /* font-variant: small-caps; */
width: 160px; width: 160px;
} }
.directory-name { .directory-name {
font-size: 1em; font-size: 1em;
font-variant: small-caps; /* font-variant: small-caps; */
width: 150px; width: 150px;
} }
@ -3277,3 +3277,6 @@ ul.menu-popup {
opacity: 1.0; opacity: 1.0;
filter:alpha(opacity=100); filter:alpha(opacity=100);
} }
.notify-seen {
background: #000;
}