1
0
Fork 0

extensible item_id table for managing all the different message-ids generated by multiple services

This commit is contained in:
friendica 2012-04-11 16:13:57 -07:00
commit 8a8702c9cd
4 changed files with 497 additions and 424 deletions

View file

@ -9,9 +9,9 @@ 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.1308' ); define ( 'FRIENDICA_VERSION', '2.3.1309' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1137 ); define ( 'DB_UPDATE_VERSION', 1138 );
define ( 'EOL', "<br />\r\n" ); define ( 'EOL', "<br />\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );

View file

@ -782,16 +782,12 @@ INDEX ( `otype` )
CREATE TABLE IF NOT EXISTS `item_id` ( CREATE TABLE IF NOT EXISTS `item_id` (
`iid` INT NOT NULL , `iid` INT NOT NULL ,
`uid` INT NOT NULL , `uid` INT NOT NULL ,
`face` CHAR( 255 ) NOT NULL , `sid` CHAR ( 255 ) NOT NULL,
`dspr` CHAR( 255 ) NOT NULL , `service` char ( 255 ) NOT NULL,
`twit` CHAR( 255 ) NOT NULL ,
`stat` CHAR( 255 ) NOT NULL ,
PRIMARY KEY ( `iid` ), PRIMARY KEY ( `iid` ),
INDEX ( `uid` ), INDEX ( `uid` ),
INDEX ( `face` ), INDEX ( `sid` ),
INDEX ( `dspr` ), INDEX ( `service` )
INDEX ( `twit` ),
INDEX ( `stat` )
) ENGINE = MyISAM DEFAULT CHARSET=utf8; ) ENGINE = MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `manage` ( CREATE TABLE IF NOT EXISTS `manage` (

View file

@ -1,6 +1,6 @@
<?php <?php
define( 'UPDATE_VERSION' , 1137 ); define( 'UPDATE_VERSION' , 1138 );
/** /**
* *
@ -1206,3 +1206,10 @@ function update_1136() {
q("ALTER TABLE `pconfig` ADD UNIQUE `access` ( `uid` , `cat` , `k` )"); q("ALTER TABLE `pconfig` ADD UNIQUE `access` ( `uid` , `cat` , `k` )");
} }
function update_1137() {
q("alter table item_id DROP `face` , DROP `dspr` , DROP `twit` , DROP `stat` ");
q("ALTER TABLE `item_id` ADD `sid` CHAR( 255 ) NOT NULL AFTER `uid` , ADD `service` CHAR( 255 ) NOT NULL AFTER `sid` , add index (`sid`), add index ( `service`) ");
}

View file

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.3.1308\n" "Project-Id-Version: 2.3.1309\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-04-10 10:00-0700\n" "POT-Creation-Date: 2012-04-11 10:00-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -49,13 +49,13 @@ msgstr ""
#: ../../mod/item.php:140 ../../mod/profile_photo.php:19 #: ../../mod/item.php:140 ../../mod/profile_photo.php:19
#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150 #: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150
#: ../../mod/profile_photo.php:163 ../../mod/message.php:38 #: ../../mod/profile_photo.php:163 ../../mod/message.php:38
#: ../../mod/message.php:91 ../../mod/allfriends.php:9 #: ../../mod/message.php:90 ../../mod/allfriends.php:9
#: ../../mod/wall_upload.php:46 ../../mod/follow.php:8 ../../mod/common.php:9 #: ../../mod/wall_upload.php:46 ../../mod/follow.php:8 ../../mod/common.php:9
#: ../../mod/display.php:138 ../../mod/profiles.php:7 #: ../../mod/display.php:138 ../../mod/profiles.php:7
#: ../../mod/profiles.php:232 ../../mod/delegate.php:6 #: ../../mod/profiles.php:233 ../../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:460 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:461
#: ../../include/items.php:3118 ../../index.php:306 #: ../../include/items.php:3121 ../../index.php:305
msgid "Permission denied." msgid "Permission denied."
msgstr "" msgstr ""
@ -85,7 +85,7 @@ msgid "Return to contact editor"
msgstr "" msgstr ""
#: ../../mod/crepair.php:148 ../../mod/settings.php:531 #: ../../mod/crepair.php:148 ../../mod/settings.php:531
#: ../../mod/settings.php:558 ../../mod/admin.php:528 ../../mod/admin.php:537 #: ../../mod/settings.php:558 ../../mod/admin.php:524 ../../mod/admin.php:533
msgid "Name" msgid "Name"
msgstr "" msgstr ""
@ -126,22 +126,23 @@ msgstr ""
#: ../../mod/photos.php:1194 ../../mod/photos.php:1234 #: ../../mod/photos.php:1194 ../../mod/photos.php:1234
#: ../../mod/photos.php:1274 ../../mod/photos.php:1305 #: ../../mod/photos.php:1274 ../../mod/photos.php:1305
#: ../../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:325
#: ../../mod/settings.php:529 ../../mod/settings.php:679 #: ../../mod/settings.php:529 ../../mod/settings.php:679
#: ../../mod/settings.php:741 ../../mod/settings.php:926 #: ../../mod/settings.php:741 ../../mod/settings.php:926
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:357 #: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:354
#: ../../mod/admin.php:525 ../../mod/admin.php:654 ../../mod/admin.php:826 #: ../../mod/admin.php:521 ../../mod/admin.php:650 ../../mod/admin.php:822
#: ../../mod/admin.php:906 ../../mod/profiles.php:390 ../../mod/invite.php:119 #: ../../mod/admin.php:902 ../../mod/profiles.php:402 ../../mod/invite.php:119
#: ../../addon/facebook/facebook.php:551 ../../addon/yourls/yourls.php:76 #: ../../addon/facebook/facebook.php:552 ../../addon/yourls/yourls.php:76
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57 #: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57
#: ../../addon/planets/planets.php:180 #: ../../addon/planets/planets.php:180
#: ../../addon/uhremotestorage/uhremotestorage.php:89 #: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:179 ../../addon/dwpost/dwpost.php:93 #: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187 #: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80 #: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80
#: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61 #: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:70 #: ../../addon/openstreetmap/openstreetmap.php:70
#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:94 #: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:94
#: ../../addon/gravatar/gravatar.php:86
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 #: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
#: ../../addon/statusnet/statusnet.php:278 #: ../../addon/statusnet/statusnet.php:278
#: ../../addon/statusnet/statusnet.php:292 #: ../../addon/statusnet/statusnet.php:292
@ -166,11 +167,11 @@ msgstr ""
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: ../../mod/help.php:38 ../../index.php:225 #: ../../mod/help.php:38 ../../index.php:224
msgid "Not Found" msgid "Not Found"
msgstr "" msgstr ""
#: ../../mod/help.php:41 ../../index.php:228 #: ../../mod/help.php:41 ../../index.php:227
msgid "Page not found." msgid "Page not found."
msgstr "" msgstr ""
@ -275,7 +276,7 @@ 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:707 ../../mod/settings.php:530 #: ../../mod/dfrn_request.php:752 ../../mod/settings.php:530
#: ../../mod/settings.php:557 ../../addon/js_upload/js_upload.php:45 #: ../../mod/settings.php:557 ../../addon/js_upload/js_upload.php:45
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -296,7 +297,7 @@ msgstr ""
msgid "Remove" msgid "Remove"
msgstr "" msgstr ""
#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:520 #: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:522
#, php-format #, php-format
msgid "%s welcomes %s" msgid "%s welcomes %s"
msgstr "" msgstr ""
@ -319,25 +320,25 @@ msgid ""
"and/or create new posts for you?" "and/or create new posts for you?"
msgstr "" msgstr ""
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:695 #: ../../mod/api.php:105 ../../mod/dfrn_request.php:740
#: ../../mod/settings.php:841 ../../mod/settings.php:847 #: ../../mod/settings.php:841 ../../mod/settings.php:847
#: ../../mod/settings.php:855 ../../mod/settings.php:859 #: ../../mod/settings.php:855 ../../mod/settings.php:859
#: ../../mod/settings.php:864 ../../mod/settings.php:870 #: ../../mod/settings.php:864 ../../mod/settings.php:870
#: ../../mod/settings.php:876 ../../mod/settings.php:882 #: ../../mod/settings.php:876 ../../mod/settings.php:882
#: ../../mod/settings.php:916 ../../mod/settings.php:917 #: ../../mod/settings.php:916 ../../mod/settings.php:917
#: ../../mod/settings.php:918 ../../mod/settings.php:919 #: ../../mod/settings.php:918 ../../mod/settings.php:919
#: ../../mod/register.php:536 ../../mod/profiles.php:369 #: ../../mod/register.php:532 ../../mod/profiles.php:379
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:696 #: ../../mod/api.php:106 ../../mod/dfrn_request.php:741
#: ../../mod/settings.php:841 ../../mod/settings.php:847 #: ../../mod/settings.php:841 ../../mod/settings.php:847
#: ../../mod/settings.php:855 ../../mod/settings.php:859 #: ../../mod/settings.php:855 ../../mod/settings.php:859
#: ../../mod/settings.php:864 ../../mod/settings.php:870 #: ../../mod/settings.php:864 ../../mod/settings.php:870
#: ../../mod/settings.php:876 ../../mod/settings.php:882 #: ../../mod/settings.php:876 ../../mod/settings.php:882
#: ../../mod/settings.php:916 ../../mod/settings.php:917 #: ../../mod/settings.php:916 ../../mod/settings.php:917
#: ../../mod/settings.php:918 ../../mod/settings.php:919 #: ../../mod/settings.php:918 ../../mod/settings.php:919
#: ../../mod/register.php:537 ../../mod/profiles.php:370 #: ../../mod/register.php:533 ../../mod/profiles.php:380
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -368,8 +369,8 @@ msgid "Contact information unavailable"
msgstr "" msgstr ""
#: ../../mod/photos.php:151 ../../mod/photos.php:598 ../../mod/photos.php:951 #: ../../mod/photos.php:151 ../../mod/photos.php:598 ../../mod/photos.php:951
#: ../../mod/photos.php:966 ../../mod/register.php:339 #: ../../mod/photos.php:966 ../../mod/register.php:335
#: ../../mod/register.php:346 ../../mod/register.php:353 #: ../../mod/register.php:342 ../../mod/register.php:349
#: ../../mod/profile_photo.php:60 ../../mod/profile_photo.php:67 #: ../../mod/profile_photo.php:60 ../../mod/profile_photo.php:67
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174 #: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174
#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261 #: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261
@ -431,7 +432,7 @@ msgid "Image upload failed."
msgstr "" msgstr ""
#: ../../mod/photos.php:760 ../../mod/community.php:16 #: ../../mod/photos.php:760 ../../mod/community.php:16
#: ../../mod/dfrn_request.php:626 ../../mod/viewcontacts.php:17 #: ../../mod/dfrn_request.php:671 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29 #: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
msgid "Public access denied." msgid "Public access denied."
msgstr "" msgstr ""
@ -537,8 +538,8 @@ msgid "Share"
msgstr "" msgstr ""
#: ../../mod/photos.php:1215 ../../mod/editpost.php:104 #: ../../mod/photos.php:1215 ../../mod/editpost.php:104
#: ../../mod/wallmessage.php:145 ../../mod/message.php:189 #: ../../mod/wallmessage.php:145 ../../mod/message.php:188
#: ../../mod/message.php:358 ../../include/conversation.php:362 #: ../../mod/message.php:357 ../../include/conversation.php:362
#: ../../include/conversation.php:702 ../../include/conversation.php:979 #: ../../include/conversation.php:702 ../../include/conversation.php:979
msgid "Please wait" msgid "Please wait"
msgstr "" msgstr ""
@ -560,7 +561,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: ../../mod/photos.php:1332 ../../mod/settings.php:593 #: ../../mod/photos.php:1332 ../../mod/settings.php:593
#: ../../mod/settings.php:677 ../../mod/group.php:168 ../../mod/admin.php:532 #: ../../mod/settings.php:677 ../../mod/group.php:168 ../../mod/admin.php:528
#: ../../include/conversation.php:318 ../../include/conversation.php:576 #: ../../include/conversation.php:318 ../../include/conversation.php:576
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -638,7 +639,7 @@ msgid "Edit"
msgstr "" msgstr ""
#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143 #: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143
#: ../../mod/message.php:187 ../../mod/message.php:356 #: ../../mod/message.php:186 ../../mod/message.php:355
#: ../../include/conversation.php:961 #: ../../include/conversation.php:961
msgid "Upload photo" msgid "Upload photo"
msgstr "" msgstr ""
@ -648,7 +649,7 @@ msgid "Attach file"
msgstr "" msgstr ""
#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144 #: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144
#: ../../mod/message.php:188 ../../mod/message.php:357 #: ../../mod/message.php:187 ../../mod/message.php:356
#: ../../include/conversation.php:965 #: ../../include/conversation.php:965
msgid "Insert web link" msgid "Insert web link"
msgstr "" msgstr ""
@ -701,19 +702,19 @@ msgstr ""
msgid "This introduction has already been accepted." msgid "This introduction has already been accepted."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:382 #: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:427
msgid "Profile location is not valid or does not contain profile information." msgid "Profile location is not valid or does not contain profile information."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:387 #: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:432
msgid "Warning: profile location has no identifiable owner name." msgid "Warning: profile location has no identifiable owner name."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:389 #: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:434
msgid "Warning: profile location has no profile photo." msgid "Warning: profile location has no profile photo."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:392 #: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:437
#, php-format #, php-format
msgid "%d required parameter was not found at the given location" msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location" msgid_plural "%d required parameters were not found at the given location"
@ -745,132 +746,140 @@ msgstr ""
msgid "Friends are advised to please try again in 24 hours." msgid "Friends are advised to please try again in 24 hours."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:307 #: ../../mod/dfrn_request.php:309
msgid "Invalid locator" msgid "Invalid locator"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:327 #: ../../mod/dfrn_request.php:318
msgid "Unable to resolve your name at the provided location." msgid "Invalid email address."
msgstr ""
#: ../../mod/dfrn_request.php:340
msgid "You have already introduced yourself here."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:344 #: ../../mod/dfrn_request.php:344
msgid "This account has not been configured for email. Request failed."
msgstr ""
#: ../../mod/dfrn_request.php:372
msgid "Unable to resolve your name at the provided location."
msgstr ""
#: ../../mod/dfrn_request.php:385
msgid "You have already introduced yourself here."
msgstr ""
#: ../../mod/dfrn_request.php:389
#, php-format #, php-format
msgid "Apparently you are already friends with %s." msgid "Apparently you are already friends with %s."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:365 #: ../../mod/dfrn_request.php:410
msgid "Invalid profile URL." msgid "Invalid profile URL."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:371 ../../mod/follow.php:20 #: ../../mod/dfrn_request.php:416 ../../mod/follow.php:20
msgid "Disallowed profile URL." msgid "Disallowed profile URL."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:440 ../../mod/contacts.php:102 #: ../../mod/dfrn_request.php:485 ../../mod/contacts.php:102
msgid "Failed to update contact record." msgid "Failed to update contact record."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:461 #: ../../mod/dfrn_request.php:506
msgid "Your introduction has been sent." msgid "Your introduction has been sent."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:514 #: ../../mod/dfrn_request.php:559
msgid "Please login to confirm introduction." msgid "Please login to confirm introduction."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:528 #: ../../mod/dfrn_request.php:573
msgid "" msgid ""
"Incorrect identity currently logged in. Please login to <strong>this</" "Incorrect identity currently logged in. Please login to <strong>this</"
"strong> profile." "strong> profile."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:540 #: ../../mod/dfrn_request.php:585
#, php-format #, php-format
msgid "Welcome home %s." msgid "Welcome home %s."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:541 #: ../../mod/dfrn_request.php:586
#, php-format #, php-format
msgid "Please confirm your introduction/connection request to %s." msgid "Please confirm your introduction/connection request to %s."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:542 #: ../../mod/dfrn_request.php:587
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:583 ../../include/items.php:2649 #: ../../mod/dfrn_request.php:628 ../../include/items.php:2652
msgid "[Name Withheld]" msgid "[Name Withheld]"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:670 #: ../../mod/dfrn_request.php:715
msgid "" msgid ""
"Please enter your 'Identity Address' from one of the following supported " "Please enter your 'Identity Address' from one of the following supported "
"communications networks:" "communications networks:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:686 #: ../../mod/dfrn_request.php:731
msgid "<strike>Connect as an email follower</strike> (Coming soon)" msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:688 #: ../../mod/dfrn_request.php:733
msgid "" msgid ""
"If you are not yet a member of the free social web, <a href=\"http://dir." "If you are not yet a member of the free social web, <a href=\"http://dir."
"friendica.com/siteinfo\">follow this link to find a public Friendica site " "friendica.com/siteinfo\">follow this link to find a public Friendica site "
"and join us today</a>." "and join us today</a>."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:691 #: ../../mod/dfrn_request.php:736
msgid "Friend/Connection Request" msgid "Friend/Connection Request"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:692 #: ../../mod/dfrn_request.php:737
msgid "" msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca" "testuser@identi.ca"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:693 #: ../../mod/dfrn_request.php:738
msgid "Please answer the following:" msgid "Please answer the following:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:694 #: ../../mod/dfrn_request.php:739
#, php-format #, php-format
msgid "Does %s know you?" msgid "Does %s know you?"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:697 #: ../../mod/dfrn_request.php:742
msgid "Add a personal note:" msgid "Add a personal note:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:699 ../../include/contact_selectors.php:76 #: ../../mod/dfrn_request.php:744 ../../include/contact_selectors.php:76
msgid "Friendica" msgid "Friendica"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:700 #: ../../mod/dfrn_request.php:745
msgid "StatusNet/Federated Social Web" msgid "StatusNet/Federated Social Web"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:701 ../../mod/settings.php:629 #: ../../mod/dfrn_request.php:746 ../../mod/settings.php:629
#: ../../include/contact_selectors.php:80 #: ../../include/contact_selectors.php:80
msgid "Diaspora" msgid "Diaspora"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:702 #: ../../mod/dfrn_request.php:747
#, php-format #, php-format
msgid "" msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search " " - please do not use this form. Instead, enter %s into your Diaspora search "
"bar." "bar."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:703 #: ../../mod/dfrn_request.php:748
msgid "Your Identity Address:" msgid "Your Identity Address:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:706 #: ../../mod/dfrn_request.php:751
msgid "Submit Request" msgid "Submit Request"
msgstr "" msgstr ""
@ -1196,8 +1205,8 @@ msgid "Discard"
msgstr "" msgstr ""
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 #: ../../mod/notifications.php:51 ../../mod/notifications.php:160
#: ../../mod/notifications.php:206 ../../mod/contacts.php:302 #: ../../mod/notifications.php:206 ../../mod/contacts.php:308
#: ../../mod/contacts.php:345 #: ../../mod/contacts.php:351
msgid "Ignore" msgid "Ignore"
msgstr "" msgstr ""
@ -1225,7 +1234,7 @@ msgstr ""
msgid "Introductions" msgid "Introductions"
msgstr "" msgstr ""
#: ../../mod/notifications.php:100 ../../mod/message.php:103 #: ../../mod/notifications.php:100 ../../mod/message.php:102
#: ../../include/nav.php:128 #: ../../include/nav.php:128
msgid "Messages" msgid "Messages"
msgstr "" msgstr ""
@ -1252,7 +1261,7 @@ msgid "suggested by %s"
msgstr "" msgstr ""
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 #: ../../mod/notifications.php:153 ../../mod/notifications.php:200
#: ../../mod/contacts.php:350 #: ../../mod/contacts.php:356
msgid "Hide this contact from others" msgid "Hide this contact from others"
msgstr "" msgstr ""
@ -1265,7 +1274,7 @@ msgid "if applicable"
msgstr "" msgstr ""
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 #: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/admin.php:530 #: ../../mod/admin.php:526
msgid "Approve" msgid "Approve"
msgstr "" msgstr ""
@ -1410,207 +1419,206 @@ msgstr ""
msgid "Contact has been removed." msgid "Contact has been removed."
msgstr "" msgstr ""
#: ../../mod/contacts.php:245 #: ../../mod/contacts.php:251
#, php-format #, php-format
msgid "You are mutual friends with %s" msgid "You are mutual friends with %s"
msgstr "" msgstr ""
#: ../../mod/contacts.php:249 #: ../../mod/contacts.php:255
#, php-format #, php-format
msgid "You are sharing with %s" msgid "You are sharing with %s"
msgstr "" msgstr ""
#: ../../mod/contacts.php:254 #: ../../mod/contacts.php:260
#, php-format #, php-format
msgid "%s is sharing with you" msgid "%s is sharing with you"
msgstr "" msgstr ""
#: ../../mod/contacts.php:271 #: ../../mod/contacts.php:277
msgid "Private communications are not available for this contact." msgid "Private communications are not available for this contact."
msgstr "" msgstr ""
#: ../../mod/contacts.php:274 #: ../../mod/contacts.php:280
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: ../../mod/contacts.php:278 #: ../../mod/contacts.php:284
msgid "(Update was successful)" msgid "(Update was successful)"
msgstr "" msgstr ""
#: ../../mod/contacts.php:278 #: ../../mod/contacts.php:284
msgid "(Update was not successful)" msgid "(Update was not successful)"
msgstr "" msgstr ""
#: ../../mod/contacts.php:280 #: ../../mod/contacts.php:286
msgid "Suggest friends" msgid "Suggest friends"
msgstr "" msgstr ""
#: ../../mod/contacts.php:284 #: ../../mod/contacts.php:290
#, php-format #, php-format
msgid "Network type: %s" msgid "Network type: %s"
msgstr "" msgstr ""
#: ../../mod/contacts.php:287 #: ../../mod/contacts.php:293
#, php-format #, php-format
msgid "%d contact in common" msgid "%d contact in common"
msgid_plural "%d contacts in common" msgid_plural "%d contacts in common"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../mod/contacts.php:292 #: ../../mod/contacts.php:298
msgid "View all contacts" msgid "View all contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:297 ../../mod/contacts.php:344 #: ../../mod/contacts.php:303 ../../mod/contacts.php:350
#: ../../mod/admin.php:534 #: ../../mod/admin.php:530
msgid "Unblock" msgid "Unblock"
msgstr "" msgstr ""
#: ../../mod/contacts.php:297 ../../mod/contacts.php:344 #: ../../mod/contacts.php:303 ../../mod/contacts.php:350
#: ../../mod/admin.php:533 #: ../../mod/admin.php:529
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: ../../mod/contacts.php:302 ../../mod/contacts.php:345 #: ../../mod/contacts.php:308 ../../mod/contacts.php:351
msgid "Unignore" msgid "Unignore"
msgstr "" msgstr ""
#: ../../mod/contacts.php:307 #: ../../mod/contacts.php:313
msgid "Repair" msgid "Repair"
msgstr "" msgstr ""
#: ../../mod/contacts.php:317 #: ../../mod/contacts.php:323
msgid "Contact Editor" msgid "Contact Editor"
msgstr "" msgstr ""
#: ../../mod/contacts.php:320 #: ../../mod/contacts.php:326
msgid "Profile Visibility" msgid "Profile Visibility"
msgstr "" msgstr ""
#: ../../mod/contacts.php:321 #: ../../mod/contacts.php:327
#, php-format #, php-format
msgid "" msgid ""
"Please choose the profile you would like to display to %s when viewing your " "Please choose the profile you would like to display to %s when viewing your "
"profile securely." "profile securely."
msgstr "" msgstr ""
#: ../../mod/contacts.php:322 #: ../../mod/contacts.php:328
msgid "Contact Information / Notes" msgid "Contact Information / Notes"
msgstr "" msgstr ""
#: ../../mod/contacts.php:323 #: ../../mod/contacts.php:329
msgid "Edit contact notes" msgid "Edit contact notes"
msgstr "" msgstr ""
#: ../../mod/contacts.php:328 ../../mod/contacts.php:501 #: ../../mod/contacts.php:334 ../../mod/contacts.php:507
#: ../../mod/viewcontacts.php:62 #: ../../mod/viewcontacts.php:62
#, php-format #, php-format
msgid "Visit %s's profile [%s]" msgid "Visit %s's profile [%s]"
msgstr "" msgstr ""
#: ../../mod/contacts.php:329 #: ../../mod/contacts.php:335
msgid "Block/Unblock contact" msgid "Block/Unblock contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:330 #: ../../mod/contacts.php:336
msgid "Ignore contact" msgid "Ignore contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:331 #: ../../mod/contacts.php:337
msgid "Repair URL settings" msgid "Repair URL settings"
msgstr "" msgstr ""
#: ../../mod/contacts.php:332 #: ../../mod/contacts.php:338
msgid "View conversations" msgid "View conversations"
msgstr "" msgstr ""
#: ../../mod/contacts.php:334 #: ../../mod/contacts.php:340
msgid "Delete contact" msgid "Delete contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:338 #: ../../mod/contacts.php:344
msgid "Last update:" msgid "Last update:"
msgstr "" msgstr ""
#: ../../mod/contacts.php:339 #: ../../mod/contacts.php:345
msgid "Update public posts" msgid "Update public posts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:341 ../../mod/admin.php:955 #: ../../mod/contacts.php:347 ../../mod/admin.php:951
msgid "Update now" msgid "Update now"
msgstr "" msgstr ""
#: ../../mod/contacts.php:348 #: ../../mod/contacts.php:354
msgid "Currently blocked" msgid "Currently blocked"
msgstr "" msgstr ""
#: ../../mod/contacts.php:349 #: ../../mod/contacts.php:355
msgid "Currently ignored" msgid "Currently ignored"
msgstr "" msgstr ""
#: ../../mod/contacts.php:350 #: ../../mod/contacts.php:356
msgid "" 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/contacts.php:405
msgid "Suggestions" msgid "Suggestions"
msgstr "" msgstr ""
#: ../../mod/contacts.php:404 ../../mod/group.php:191 #: ../../mod/contacts.php:410 ../../mod/group.php:191
msgid "All Contacts" msgid "All Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:409 #: ../../mod/contacts.php:415
msgid "Unblocked Contacts" msgid "Unblocked Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:415 #: ../../mod/contacts.php:421
msgid "Blocked Contacts" msgid "Blocked Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:421 #: ../../mod/contacts.php:427
msgid "Ignored Contacts" msgid "Ignored Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:427 #: ../../mod/contacts.php:433
msgid "Hidden Contacts" msgid "Hidden Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:477 #: ../../mod/contacts.php:483
msgid "Mutual Friendship" msgid "Mutual Friendship"
msgstr "" msgstr ""
#: ../../mod/contacts.php:481 #: ../../mod/contacts.php:487
msgid "is a fan of yours" msgid "is a fan of yours"
msgstr "" msgstr ""
#: ../../mod/contacts.php:485 #: ../../mod/contacts.php:491
msgid "you are a fan of" msgid "you are a fan of"
msgstr "" msgstr ""
#: ../../mod/contacts.php:502 ../../include/Contact.php:141 #: ../../mod/contacts.php:508
#: ../../include/conversation.php:817
msgid "Edit contact" msgid "Edit contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:523 ../../view/theme/diabook-red/theme.php:242 #: ../../mod/contacts.php:529 ../../view/theme/diabook-red/theme.php:242
#: ../../view/theme/diabook-blue/theme.php:242 #: ../../view/theme/diabook-blue/theme.php:242
#: ../../view/theme/diabook/theme.php:249 #: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:139 #: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:139
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:527 #: ../../mod/contacts.php:533
msgid "Search your contacts" msgid "Search your contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:528 ../../mod/directory.php:57 #: ../../mod/contacts.php:534 ../../mod/directory.php:57
msgid "Finding: " msgid "Finding: "
msgstr "" msgstr ""
#: ../../mod/contacts.php:529 ../../mod/directory.php:59 #: ../../mod/contacts.php:535 ../../mod/directory.php:59
#: ../../include/contact_widgets.php:32 #: ../../include/contact_widgets.php:33
msgid "Find" msgid "Find"
msgstr "" msgstr ""
@ -1628,10 +1636,11 @@ msgid "Password reset requested at %s"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 #: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
#: ../../mod/register.php:392 ../../mod/register.php:446 #: ../../mod/register.php:388 ../../mod/register.php:442
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732
#: ../../addon/facebook/facebook.php:621 #: ../../addon/facebook/facebook.php:622
#: ../../addon/facebook/facebook.php:1073 ../../include/items.php:2658 #: ../../addon/facebook/facebook.php:1076
#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2661
#: ../../boot.php:679 #: ../../boot.php:679
msgid "Administrator" msgid "Administrator"
msgstr "" msgstr ""
@ -1734,7 +1743,7 @@ msgstr ""
msgid " Cannot change to that email." msgid " Cannot change to that email."
msgstr "" msgstr ""
#: ../../mod/settings.php:420 ../../addon/facebook/facebook.php:449 #: ../../mod/settings.php:420 ../../addon/facebook/facebook.php:450
#: ../../addon/impressum/impressum.php:75 #: ../../addon/impressum/impressum.php:75
#: ../../addon/openstreetmap/openstreetmap.php:80 #: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:370 #: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:370
@ -1949,7 +1958,7 @@ msgstr ""
msgid "Don't show emoticons" msgid "Don't show emoticons"
msgstr "" msgstr ""
#: ../../mod/settings.php:808 ../../mod/admin.php:142 ../../mod/admin.php:506 #: ../../mod/settings.php:808 ../../mod/admin.php:142 ../../mod/admin.php:502
msgid "Normal Account" msgid "Normal Account"
msgstr "" msgstr ""
@ -1957,7 +1966,7 @@ msgstr ""
msgid "This account is a normal personal profile" msgid "This account is a normal personal profile"
msgstr "" msgstr ""
#: ../../mod/settings.php:812 ../../mod/admin.php:143 ../../mod/admin.php:507 #: ../../mod/settings.php:812 ../../mod/admin.php:143 ../../mod/admin.php:503
msgid "Soapbox Account" msgid "Soapbox Account"
msgstr "" msgstr ""
@ -1965,7 +1974,7 @@ msgstr ""
msgid "Automatically approve all connection/friend requests as read-only fans" msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "" msgstr ""
#: ../../mod/settings.php:816 ../../mod/admin.php:144 ../../mod/admin.php:508 #: ../../mod/settings.php:816 ../../mod/admin.php:144 ../../mod/admin.php:504
msgid "Community/Celebrity Account" msgid "Community/Celebrity Account"
msgstr "" msgstr ""
@ -1973,7 +1982,7 @@ msgstr ""
msgid "Automatically approve all connection/friend requests as read-write fans" msgid "Automatically approve all connection/friend requests as read-write fans"
msgstr "" msgstr ""
#: ../../mod/settings.php:820 ../../mod/admin.php:145 ../../mod/admin.php:509 #: ../../mod/settings.php:820 ../../mod/admin.php:145 ../../mod/admin.php:505
msgid "Automatic Friend Account" msgid "Automatic Friend Account"
msgstr "" msgstr ""
@ -2264,7 +2273,7 @@ msgid "Personal Notes"
msgstr "" msgstr ""
#: ../../mod/notes.php:63 ../../mod/filer.php:30 #: ../../mod/notes.php:63 ../../mod/filer.php:30
#: ../../addon/facebook/facebook.php:677 ../../include/text.php:652 #: ../../addon/facebook/facebook.php:680 ../../include/text.php:652
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@ -2273,7 +2282,7 @@ msgstr ""
msgid "Number of daily wall messages for %s exceeded. Message failed." msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "" msgstr ""
#: ../../mod/wallmessage.php:56 ../../mod/message.php:60 #: ../../mod/wallmessage.php:56 ../../mod/message.php:59
msgid "No recipient selected." msgid "No recipient selected."
msgstr "" msgstr ""
@ -2281,15 +2290,15 @@ msgstr ""
msgid "Unable to check your home location." msgid "Unable to check your home location."
msgstr "" msgstr ""
#: ../../mod/wallmessage.php:62 ../../mod/message.php:67 #: ../../mod/wallmessage.php:62 ../../mod/message.php:66
msgid "Message could not be sent." msgid "Message could not be sent."
msgstr "" msgstr ""
#: ../../mod/wallmessage.php:65 ../../mod/message.php:70 #: ../../mod/wallmessage.php:65 ../../mod/message.php:69
msgid "Message collection failure." msgid "Message collection failure."
msgstr "" msgstr ""
#: ../../mod/wallmessage.php:68 ../../mod/message.php:73 #: ../../mod/wallmessage.php:68 ../../mod/message.php:72
msgid "Message sent." msgid "Message sent."
msgstr "" msgstr ""
@ -2297,12 +2306,12 @@ msgstr ""
msgid "No recipient." msgid "No recipient."
msgstr "" msgstr ""
#: ../../mod/wallmessage.php:124 ../../mod/message.php:170 #: ../../mod/wallmessage.php:124 ../../mod/message.php:169
#: ../../include/conversation.php:914 #: ../../include/conversation.php:914
msgid "Please enter a link URL:" msgid "Please enter a link URL:"
msgstr "" msgstr ""
#: ../../mod/wallmessage.php:131 ../../mod/message.php:178 #: ../../mod/wallmessage.php:131 ../../mod/message.php:177
msgid "Send Private Message" msgid "Send Private Message"
msgstr "" msgstr ""
@ -2313,18 +2322,18 @@ msgid ""
"your site allow private mail from unknown senders." "your site allow private mail from unknown senders."
msgstr "" msgstr ""
#: ../../mod/wallmessage.php:133 ../../mod/message.php:179 #: ../../mod/wallmessage.php:133 ../../mod/message.php:178
#: ../../mod/message.php:348 #: ../../mod/message.php:347
msgid "To:" msgid "To:"
msgstr "" msgstr ""
#: ../../mod/wallmessage.php:134 ../../mod/message.php:180 #: ../../mod/wallmessage.php:134 ../../mod/message.php:179
#: ../../mod/message.php:349 #: ../../mod/message.php:348
msgid "Subject:" msgid "Subject:"
msgstr "" msgstr ""
#: ../../mod/wallmessage.php:140 ../../mod/message.php:184 #: ../../mod/wallmessage.php:140 ../../mod/message.php:183
#: ../../mod/message.php:352 ../../mod/invite.php:113 #: ../../mod/message.php:351 ../../mod/invite.php:113
msgid "Your message:" msgid "Your message:"
msgstr "" msgstr ""
@ -2466,7 +2475,7 @@ msgstr ""
msgid "Group name changed." msgid "Group name changed."
msgstr "" msgstr ""
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:305 #: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:304
msgid "Permission denied" msgid "Permission denied"
msgstr "" msgstr ""
@ -2599,91 +2608,91 @@ msgstr ""
msgid "An error occurred creating your default profile. Please try again." msgid "An error occurred creating your default profile. Please try again."
msgstr "" msgstr ""
#: ../../mod/register.php:390 ../../mod/regmod.php:52 #: ../../mod/register.php:386 ../../mod/regmod.php:52
#, php-format #, php-format
msgid "Registration details for %s" msgid "Registration details for %s"
msgstr "" msgstr ""
#: ../../mod/register.php:398 #: ../../mod/register.php:394
msgid "" msgid ""
"Registration successful. Please check your email for further instructions." "Registration successful. Please check your email for further instructions."
msgstr "" msgstr ""
#: ../../mod/register.php:402 #: ../../mod/register.php:398
msgid "Failed to send email message. Here is the message that failed." msgid "Failed to send email message. Here is the message that failed."
msgstr "" msgstr ""
#: ../../mod/register.php:407 #: ../../mod/register.php:403
msgid "Your registration can not be processed." msgid "Your registration can not be processed."
msgstr "" msgstr ""
#: ../../mod/register.php:444 #: ../../mod/register.php:440
#, php-format #, php-format
msgid "Registration request at %s" msgid "Registration request at %s"
msgstr "" msgstr ""
#: ../../mod/register.php:453 #: ../../mod/register.php:449
msgid "Your registration is pending approval by the site owner." msgid "Your registration is pending approval by the site owner."
msgstr "" msgstr ""
#: ../../mod/register.php:491 #: ../../mod/register.php:487
msgid "" msgid ""
"This site has exceeded the number of allowed daily account registrations. " "This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow." "Please try again tomorrow."
msgstr "" msgstr ""
#: ../../mod/register.php:517 #: ../../mod/register.php:513
msgid "" msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID " "You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'." "and clicking 'Register'."
msgstr "" msgstr ""
#: ../../mod/register.php:518 #: ../../mod/register.php:514
msgid "" msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill " "If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items." "in the rest of the items."
msgstr "" msgstr ""
#: ../../mod/register.php:519 #: ../../mod/register.php:515
msgid "Your OpenID (optional): " msgid "Your OpenID (optional): "
msgstr "" msgstr ""
#: ../../mod/register.php:533 #: ../../mod/register.php:529
msgid "Include your profile in member directory?" msgid "Include your profile in member directory?"
msgstr "" msgstr ""
#: ../../mod/register.php:553 #: ../../mod/register.php:549
msgid "Membership on this site is by invitation only." msgid "Membership on this site is by invitation only."
msgstr "" msgstr ""
#: ../../mod/register.php:554 #: ../../mod/register.php:550
msgid "Your invitation ID: " msgid "Your invitation ID: "
msgstr "" msgstr ""
#: ../../mod/register.php:557 ../../mod/admin.php:358 #: ../../mod/register.php:553 ../../mod/admin.php:355
msgid "Registration" msgid "Registration"
msgstr "" msgstr ""
#: ../../mod/register.php:565 #: ../../mod/register.php:561
msgid "Your Full Name (e.g. Joe Smith): " msgid "Your Full Name (e.g. Joe Smith): "
msgstr "" msgstr ""
#: ../../mod/register.php:566 #: ../../mod/register.php:562
msgid "Your Email Address: " msgid "Your Email Address: "
msgstr "" msgstr ""
#: ../../mod/register.php:567 #: ../../mod/register.php:563
msgid "" msgid ""
"Choose a profile nickname. This must begin with a text character. Your " "Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be '<strong>nickname@$sitename</" "profile address on this site will then be '<strong>nickname@$sitename</"
"strong>'." "strong>'."
msgstr "" msgstr ""
#: ../../mod/register.php:568 #: ../../mod/register.php:564
msgid "Choose a nickname: " msgid "Choose a nickname: "
msgstr "" msgstr ""
#: ../../mod/register.php:571 ../../include/nav.php:81 ../../boot.php:774 #: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:774
msgid "Register" msgid "Register"
msgstr "" msgstr ""
@ -2692,7 +2701,7 @@ msgid "People Search"
msgstr "" msgstr ""
#: ../../mod/like.php:127 ../../mod/tagger.php:70 #: ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/facebook/facebook.php:1546 #: ../../addon/facebook/facebook.php:1549
#: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167 #: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook-red/theme.php:81 #: ../../view/theme/diabook-red/theme.php:81
@ -2708,7 +2717,7 @@ msgstr ""
msgid "status" msgid "status"
msgstr "" msgstr ""
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1550 #: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1553
#: ../../addon/communityhome/communityhome.php:172 #: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook-red/theme.php:95 #: ../../view/theme/diabook-red/theme.php:95
#: ../../view/theme/diabook-blue/theme.php:95 #: ../../view/theme/diabook-blue/theme.php:95
@ -2725,8 +2734,8 @@ 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:566 ../../mod/admin.php:745 ../../mod/display.php:37 #: ../../mod/admin.php:562 ../../mod/admin.php:741 ../../mod/display.php:37
#: ../../mod/display.php:142 ../../include/items.php:3030 #: ../../mod/display.php:142 ../../include/items.php:3033
msgid "Item not found." msgid "Item not found."
msgstr "" msgstr ""
@ -2755,34 +2764,34 @@ msgstr ""
msgid "Empty post discarded." msgid "Empty post discarded."
msgstr "" msgstr ""
#: ../../mod/item.php:373 ../../mod/wall_upload.php:85 #: ../../mod/item.php:372 ../../mod/wall_upload.php:85
#: ../../mod/wall_upload.php:94 ../../mod/wall_upload.php:101 #: ../../mod/wall_upload.php:94 ../../mod/wall_upload.php:101
#: ../../include/message.php:144 #: ../../include/message.php:144
msgid "Wall Photos" msgid "Wall Photos"
msgstr "" msgstr ""
#: ../../mod/item.php:763 #: ../../mod/item.php:762
msgid "System error. Post not saved." msgid "System error. Post not saved."
msgstr "" msgstr ""
#: ../../mod/item.php:788 #: ../../mod/item.php:787
#, 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:790 #: ../../mod/item.php:789
#, 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:791 #: ../../mod/item.php:790
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:793 #: ../../mod/item.php:792
#, php-format #, php-format
msgid "%s posted an update." msgid "%s posted an update."
msgstr "" msgstr ""
@ -2870,67 +2879,67 @@ msgstr ""
msgid "New Message" msgid "New Message"
msgstr "" msgstr ""
#: ../../mod/message.php:64 #: ../../mod/message.php:63
msgid "Unable to locate contact information." msgid "Unable to locate contact information."
msgstr "" msgstr ""
#: ../../mod/message.php:118 #: ../../mod/message.php:117
msgid "Message deleted." msgid "Message deleted."
msgstr "" msgstr ""
#: ../../mod/message.php:148 #: ../../mod/message.php:147
msgid "Conversation removed." msgid "Conversation removed."
msgstr "" msgstr ""
#: ../../mod/message.php:220 #: ../../mod/message.php:219
msgid "No messages." msgid "No messages."
msgstr "" msgstr ""
#: ../../mod/message.php:227 #: ../../mod/message.php:226
#, php-format #, php-format
msgid "Unknown sender - %s" msgid "Unknown sender - %s"
msgstr "" msgstr ""
#: ../../mod/message.php:230 #: ../../mod/message.php:229
#, php-format #, php-format
msgid "You and %s" msgid "You and %s"
msgstr "" msgstr ""
#: ../../mod/message.php:233 #: ../../mod/message.php:232
#, php-format #, php-format
msgid "%s and You" msgid "%s and You"
msgstr "" msgstr ""
#: ../../mod/message.php:243 ../../mod/message.php:341 #: ../../mod/message.php:242 ../../mod/message.php:340
msgid "Delete conversation" msgid "Delete conversation"
msgstr "" msgstr ""
#: ../../mod/message.php:246 #: ../../mod/message.php:245
msgid "D, d M Y - g:i A" msgid "D, d M Y - g:i A"
msgstr "" msgstr ""
#: ../../mod/message.php:248 #: ../../mod/message.php:247
#, php-format #, php-format
msgid "%d message" msgid "%d message"
msgid_plural "%d messages" msgid_plural "%d messages"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../mod/message.php:283 #: ../../mod/message.php:282
msgid "Message not available." msgid "Message not available."
msgstr "" msgstr ""
#: ../../mod/message.php:325 #: ../../mod/message.php:324
msgid "Delete message" msgid "Delete message"
msgstr "" msgstr ""
#: ../../mod/message.php:343 #: ../../mod/message.php:342
msgid "" msgid ""
"No secure communications available. You <strong>may</strong> be able to " "No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page." "respond from the sender's profile page."
msgstr "" msgstr ""
#: ../../mod/message.php:347 #: ../../mod/message.php:346
msgid "Send Reply" msgid "Send Reply"
msgstr "" msgstr ""
@ -2943,23 +2952,23 @@ msgstr ""
msgid "No friends to display." msgid "No friends to display."
msgstr "" msgstr ""
#: ../../mod/admin.php:71 ../../mod/admin.php:356 #: ../../mod/admin.php:71 ../../mod/admin.php:353
msgid "Site" msgid "Site"
msgstr "" msgstr ""
#: ../../mod/admin.php:72 ../../mod/admin.php:524 ../../mod/admin.php:536 #: ../../mod/admin.php:72 ../../mod/admin.php:520 ../../mod/admin.php:532
msgid "Users" msgid "Users"
msgstr "" msgstr ""
#: ../../mod/admin.php:73 ../../mod/admin.php:613 ../../mod/admin.php:653 #: ../../mod/admin.php:73 ../../mod/admin.php:609 ../../mod/admin.php:649
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: ../../mod/admin.php:74 ../../mod/admin.php:791 ../../mod/admin.php:825 #: ../../mod/admin.php:74 ../../mod/admin.php:787 ../../mod/admin.php:821
msgid "Themes" msgid "Themes"
msgstr "" msgstr ""
#: ../../mod/admin.php:89 ../../mod/admin.php:905 #: ../../mod/admin.php:89 ../../mod/admin.php:901
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
@ -2967,9 +2976,9 @@ msgstr ""
msgid "User registrations waiting for confirmation" msgid "User registrations waiting for confirmation"
msgstr "" msgstr ""
#: ../../mod/admin.php:157 ../../mod/admin.php:355 ../../mod/admin.php:523 #: ../../mod/admin.php:157 ../../mod/admin.php:352 ../../mod/admin.php:519
#: ../../mod/admin.php:612 ../../mod/admin.php:652 ../../mod/admin.php:790 #: ../../mod/admin.php:608 ../../mod/admin.php:648 ../../mod/admin.php:786
#: ../../mod/admin.php:824 ../../mod/admin.php:904 #: ../../mod/admin.php:820 ../../mod/admin.php:900
msgid "Administration" msgid "Administration"
msgstr "" msgstr ""
@ -2993,437 +3002,429 @@ msgstr ""
msgid "Active plugins" msgid "Active plugins"
msgstr "" msgstr ""
#: ../../mod/admin.php:298 #: ../../mod/admin.php:295
msgid "Site settings updated." msgid "Site settings updated."
msgstr "" msgstr ""
#: ../../mod/admin.php:342 #: ../../mod/admin.php:339
msgid "Closed" msgid "Closed"
msgstr "" msgstr ""
#: ../../mod/admin.php:343 #: ../../mod/admin.php:340
msgid "Requires approval" msgid "Requires approval"
msgstr "" msgstr ""
#: ../../mod/admin.php:344 #: ../../mod/admin.php:341
msgid "Open" msgid "Open"
msgstr "" msgstr ""
#: ../../mod/admin.php:348 #: ../../mod/admin.php:345
msgid "No SSL policy, links will track page SSL state" msgid "No SSL policy, links will track page SSL state"
msgstr "" msgstr ""
#: ../../mod/admin.php:349 #: ../../mod/admin.php:346
msgid "Force all links to use SSL" msgid "Force all links to use SSL"
msgstr "" msgstr ""
#: ../../mod/admin.php:350 #: ../../mod/admin.php:347
msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "" msgstr ""
#: ../../mod/admin.php:359 #: ../../mod/admin.php:356
msgid "File upload" msgid "File upload"
msgstr "" msgstr ""
#: ../../mod/admin.php:360 #: ../../mod/admin.php:357
msgid "Policies" msgid "Policies"
msgstr "" msgstr ""
#: ../../mod/admin.php:361 #: ../../mod/admin.php:358
msgid "Advanced" msgid "Advanced"
msgstr "" msgstr ""
#: ../../mod/admin.php:365 ../../addon/statusnet/statusnet.php:544 #: ../../mod/admin.php:362 ../../addon/statusnet/statusnet.php:544
msgid "Site name" msgid "Site name"
msgstr "" msgstr ""
#: ../../mod/admin.php:366 #: ../../mod/admin.php:363
msgid "Banner/Logo" msgid "Banner/Logo"
msgstr "" msgstr ""
#: ../../mod/admin.php:367 #: ../../mod/admin.php:364
msgid "System language" msgid "System language"
msgstr "" msgstr ""
#: ../../mod/admin.php:368 #: ../../mod/admin.php:365
msgid "System theme" msgid "System theme"
msgstr "" msgstr ""
#: ../../mod/admin.php:368 #: ../../mod/admin.php:365
msgid "Default system theme - may be over-ridden by user profiles" msgid "Default system theme - may be over-ridden by user profiles"
msgstr "" msgstr ""
#: ../../mod/admin.php:369 #: ../../mod/admin.php:366
msgid "SSL link policy" msgid "SSL link policy"
msgstr "" msgstr ""
#: ../../mod/admin.php:369 #: ../../mod/admin.php:366
msgid "Determines whether generated links should be forced to use SSL" msgid "Determines whether generated links should be forced to use SSL"
msgstr "" msgstr ""
#: ../../mod/admin.php:370 #: ../../mod/admin.php:367
msgid "Maximum image size" msgid "Maximum image size"
msgstr "" msgstr ""
#: ../../mod/admin.php:370 #: ../../mod/admin.php:367
msgid "" msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no " "Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits." "limits."
msgstr "" msgstr ""
#: ../../mod/admin.php:372 #: ../../mod/admin.php:369
msgid "Register policy" msgid "Register policy"
msgstr "" msgstr ""
#: ../../mod/admin.php:373 #: ../../mod/admin.php:370
msgid "Register text" msgid "Register text"
msgstr "" msgstr ""
#: ../../mod/admin.php:373 #: ../../mod/admin.php:370
msgid "Will be displayed prominently on the registration page." msgid "Will be displayed prominently on the registration page."
msgstr "" msgstr ""
#: ../../mod/admin.php:374 #: ../../mod/admin.php:371
msgid "Accounts abandoned after x days" msgid "Accounts abandoned after x days"
msgstr "" msgstr ""
#: ../../mod/admin.php:374 #: ../../mod/admin.php:371
msgid "" msgid ""
"Will not waste system resources polling external sites for abandonded " "Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit." "accounts. Enter 0 for no time limit."
msgstr "" msgstr ""
#: ../../mod/admin.php:375 #: ../../mod/admin.php:372
msgid "Allowed friend domains" msgid "Allowed friend domains"
msgstr "" msgstr ""
#: ../../mod/admin.php:375 #: ../../mod/admin.php:372
msgid "" msgid ""
"Comma separated list of domains which are allowed to establish friendships " "Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains" "with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "" msgstr ""
#: ../../mod/admin.php:376 #: ../../mod/admin.php:373
msgid "Allowed email domains" msgid "Allowed email domains"
msgstr "" msgstr ""
#: ../../mod/admin.php:376 #: ../../mod/admin.php:373
msgid "" msgid ""
"Comma separated list of domains which are allowed in email addresses for " "Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any " "registrations to this site. Wildcards are accepted. Empty to allow any "
"domains" "domains"
msgstr "" msgstr ""
#: ../../mod/admin.php:377 #: ../../mod/admin.php:374
msgid "Block public" msgid "Block public"
msgstr "" msgstr ""
#: ../../mod/admin.php:377 #: ../../mod/admin.php:374
msgid "" msgid ""
"Check to block public access to all otherwise public personal pages on this " "Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in." "site unless you are currently logged in."
msgstr "" msgstr ""
#: ../../mod/admin.php:378 #: ../../mod/admin.php:375
msgid "Force publish" msgid "Force publish"
msgstr "" msgstr ""
#: ../../mod/admin.php:378 #: ../../mod/admin.php:375
msgid "" msgid ""
"Check to force all profiles on this site to be listed in the site directory." "Check to force all profiles on this site to be listed in the site directory."
msgstr "" msgstr ""
#: ../../mod/admin.php:379 #: ../../mod/admin.php:376
msgid "Global directory update URL" msgid "Global directory update URL"
msgstr "" msgstr ""
#: ../../mod/admin.php:379 #: ../../mod/admin.php:376
msgid "" msgid ""
"URL to update the global directory. If this is not set, the global directory " "URL to update the global directory. If this is not set, the global directory "
"is completely unavailable to the application." "is completely unavailable to the application."
msgstr "" msgstr ""
#: ../../mod/admin.php:381 #: ../../mod/admin.php:378
msgid "Block multiple registrations" msgid "Block multiple registrations"
msgstr "" msgstr ""
#: ../../mod/admin.php:381 #: ../../mod/admin.php:378
msgid "Disallow users to register additional accounts for use as pages." msgid "Disallow users to register additional accounts for use as pages."
msgstr "" msgstr ""
#: ../../mod/admin.php:382 #: ../../mod/admin.php:379
msgid "OpenID support" msgid "OpenID support"
msgstr "" msgstr ""
#: ../../mod/admin.php:382 #: ../../mod/admin.php:379
msgid "OpenID support for registration and logins." msgid "OpenID support for registration and logins."
msgstr "" msgstr ""
#: ../../mod/admin.php:383 #: ../../mod/admin.php:380
msgid "Gravatar support"
msgstr ""
#: ../../mod/admin.php:383
msgid "Search new user's photo on Gravatar."
msgstr ""
#: ../../mod/admin.php:384
msgid "Fullname check" msgid "Fullname check"
msgstr "" msgstr ""
#: ../../mod/admin.php:384 #: ../../mod/admin.php:380
msgid "" msgid ""
"Force users to register with a space between firstname and lastname in Full " "Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure" "name, as an antispam measure"
msgstr "" msgstr ""
#: ../../mod/admin.php:385 #: ../../mod/admin.php:381
msgid "UTF-8 Regular expressions" msgid "UTF-8 Regular expressions"
msgstr "" msgstr ""
#: ../../mod/admin.php:385 #: ../../mod/admin.php:381
msgid "Use PHP UTF8 regular expressions" msgid "Use PHP UTF8 regular expressions"
msgstr "" msgstr ""
#: ../../mod/admin.php:386 #: ../../mod/admin.php:382
msgid "Show Community Page" msgid "Show Community Page"
msgstr "" msgstr ""
#: ../../mod/admin.php:386 #: ../../mod/admin.php:382
msgid "" msgid ""
"Display a Community page showing all recent public postings on this site." "Display a Community page showing all recent public postings on this site."
msgstr "" msgstr ""
#: ../../mod/admin.php:387 #: ../../mod/admin.php:383
msgid "Enable OStatus support" msgid "Enable OStatus support"
msgstr "" msgstr ""
#: ../../mod/admin.php:387 #: ../../mod/admin.php:383
msgid "" msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All " "Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be " "communications in OStatus are public, so privacy warnings will be "
"occasionally displayed." "occasionally displayed."
msgstr "" msgstr ""
#: ../../mod/admin.php:388 #: ../../mod/admin.php:384
msgid "Enable Diaspora support" msgid "Enable Diaspora support"
msgstr "" msgstr ""
#: ../../mod/admin.php:388 #: ../../mod/admin.php:384
msgid "Provide built-in Diaspora network compatibility." msgid "Provide built-in Diaspora network compatibility."
msgstr "" msgstr ""
#: ../../mod/admin.php:389 #: ../../mod/admin.php:385
msgid "Only allow Friendica contacts" msgid "Only allow Friendica contacts"
msgstr "" msgstr ""
#: ../../mod/admin.php:389 #: ../../mod/admin.php:385
msgid "" msgid ""
"All contacts must use Friendica protocols. All other built-in communication " "All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled." "protocols disabled."
msgstr "" msgstr ""
#: ../../mod/admin.php:390 #: ../../mod/admin.php:386
msgid "Verify SSL" msgid "Verify SSL"
msgstr "" msgstr ""
#: ../../mod/admin.php:390 #: ../../mod/admin.php:386
msgid "" msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you " "If you wish, you can turn on strict certificate checking. This will mean you "
"cannot connect (at all) to self-signed SSL sites." "cannot connect (at all) to self-signed SSL sites."
msgstr "" msgstr ""
#: ../../mod/admin.php:391 #: ../../mod/admin.php:387
msgid "Proxy user" msgid "Proxy user"
msgstr "" msgstr ""
#: ../../mod/admin.php:392 #: ../../mod/admin.php:388
msgid "Proxy URL" msgid "Proxy URL"
msgstr "" msgstr ""
#: ../../mod/admin.php:393 #: ../../mod/admin.php:389
msgid "Network timeout" msgid "Network timeout"
msgstr "" msgstr ""
#: ../../mod/admin.php:393 #: ../../mod/admin.php:389
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "" msgstr ""
#: ../../mod/admin.php:414 #: ../../mod/admin.php:410
#, php-format #, php-format
msgid "%s user blocked/unblocked" msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked" msgid_plural "%s users blocked/unblocked"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../mod/admin.php:421 #: ../../mod/admin.php:417
#, php-format #, php-format
msgid "%s user deleted" msgid "%s user deleted"
msgid_plural "%s users deleted" msgid_plural "%s users deleted"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../mod/admin.php:455 #: ../../mod/admin.php:451
#, php-format #, php-format
msgid "User '%s' deleted" msgid "User '%s' deleted"
msgstr "" msgstr ""
#: ../../mod/admin.php:462 #: ../../mod/admin.php:458
#, php-format #, php-format
msgid "User '%s' unblocked" msgid "User '%s' unblocked"
msgstr "" msgstr ""
#: ../../mod/admin.php:462 #: ../../mod/admin.php:458
#, php-format #, php-format
msgid "User '%s' blocked" msgid "User '%s' blocked"
msgstr "" msgstr ""
#: ../../mod/admin.php:526 #: ../../mod/admin.php:522
msgid "select all" msgid "select all"
msgstr "" msgstr ""
#: ../../mod/admin.php:527 #: ../../mod/admin.php:523
msgid "User registrations waiting for confirm" msgid "User registrations waiting for confirm"
msgstr "" msgstr ""
#: ../../mod/admin.php:528 #: ../../mod/admin.php:524
msgid "Request date" msgid "Request date"
msgstr "" msgstr ""
#: ../../mod/admin.php:528 ../../mod/admin.php:537 #: ../../mod/admin.php:524 ../../mod/admin.php:533
#: ../../include/contact_selectors.php:79 #: ../../include/contact_selectors.php:79
msgid "Email" msgid "Email"
msgstr "" msgstr ""
#: ../../mod/admin.php:529 #: ../../mod/admin.php:525
msgid "No registrations." msgid "No registrations."
msgstr "" msgstr ""
#: ../../mod/admin.php:531 #: ../../mod/admin.php:527
msgid "Deny" msgid "Deny"
msgstr "" msgstr ""
#: ../../mod/admin.php:537 #: ../../mod/admin.php:533
msgid "Register date" msgid "Register date"
msgstr "" msgstr ""
#: ../../mod/admin.php:537 #: ../../mod/admin.php:533
msgid "Last login" msgid "Last login"
msgstr "" msgstr ""
#: ../../mod/admin.php:537 #: ../../mod/admin.php:533
msgid "Last item" msgid "Last item"
msgstr "" msgstr ""
#: ../../mod/admin.php:537 #: ../../mod/admin.php:533
msgid "Account" msgid "Account"
msgstr "" msgstr ""
#: ../../mod/admin.php:539 #: ../../mod/admin.php:535
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:540 #: ../../mod/admin.php:536
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:576 #: ../../mod/admin.php:572
#, php-format #, php-format
msgid "Plugin %s disabled." msgid "Plugin %s disabled."
msgstr "" msgstr ""
#: ../../mod/admin.php:580 #: ../../mod/admin.php:576
#, php-format #, php-format
msgid "Plugin %s enabled." msgid "Plugin %s enabled."
msgstr "" msgstr ""
#: ../../mod/admin.php:590 ../../mod/admin.php:769 #: ../../mod/admin.php:586 ../../mod/admin.php:765
msgid "Disable" msgid "Disable"
msgstr "" msgstr ""
#: ../../mod/admin.php:592 ../../mod/admin.php:771 #: ../../mod/admin.php:588 ../../mod/admin.php:767
msgid "Enable" msgid "Enable"
msgstr "" msgstr ""
#: ../../mod/admin.php:614 ../../mod/admin.php:792 #: ../../mod/admin.php:610 ../../mod/admin.php:788
msgid "Toggle" msgid "Toggle"
msgstr "" msgstr ""
#: ../../mod/admin.php:615 ../../mod/admin.php:793 ../../include/nav.php:137 #: ../../mod/admin.php:611 ../../mod/admin.php:789 ../../include/nav.php:137
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: ../../mod/admin.php:622 ../../mod/admin.php:802 #: ../../mod/admin.php:618 ../../mod/admin.php:798
msgid "Author: " msgid "Author: "
msgstr "" msgstr ""
#: ../../mod/admin.php:623 ../../mod/admin.php:803 #: ../../mod/admin.php:619 ../../mod/admin.php:799
msgid "Maintainer: " msgid "Maintainer: "
msgstr "" msgstr ""
#: ../../mod/admin.php:734 #: ../../mod/admin.php:730
msgid "No themes found." msgid "No themes found."
msgstr "" msgstr ""
#: ../../mod/admin.php:784 #: ../../mod/admin.php:780
msgid "Screenshot" msgid "Screenshot"
msgstr "" msgstr ""
#: ../../mod/admin.php:830 #: ../../mod/admin.php:826
msgid "[Experimental]" msgid "[Experimental]"
msgstr "" msgstr ""
#: ../../mod/admin.php:831 #: ../../mod/admin.php:827
msgid "[Unsupported]" msgid "[Unsupported]"
msgstr "" msgstr ""
#: ../../mod/admin.php:854 #: ../../mod/admin.php:850
msgid "Log settings updated." msgid "Log settings updated."
msgstr "" msgstr ""
#: ../../mod/admin.php:907 #: ../../mod/admin.php:903
msgid "Clear" msgid "Clear"
msgstr "" msgstr ""
#: ../../mod/admin.php:913 #: ../../mod/admin.php:909
msgid "Debugging" msgid "Debugging"
msgstr "" msgstr ""
#: ../../mod/admin.php:914 #: ../../mod/admin.php:910
msgid "Log file" msgid "Log file"
msgstr "" msgstr ""
#: ../../mod/admin.php:914 #: ../../mod/admin.php:910
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:915 #: ../../mod/admin.php:911
msgid "Log level" msgid "Log level"
msgstr "" msgstr ""
#: ../../mod/admin.php:956 #: ../../mod/admin.php:952
msgid "Close" msgid "Close"
msgstr "" msgstr ""
#: ../../mod/admin.php:962 #: ../../mod/admin.php:958
msgid "FTP Host" msgid "FTP Host"
msgstr "" msgstr ""
#: ../../mod/admin.php:963 #: ../../mod/admin.php:959
msgid "FTP Path" msgid "FTP Path"
msgstr "" msgstr ""
#: ../../mod/admin.php:964 #: ../../mod/admin.php:960
msgid "FTP User" msgid "FTP User"
msgstr "" msgstr ""
#: ../../mod/admin.php:965 #: ../../mod/admin.php:961
msgid "FTP Password" msgid "FTP Password"
msgstr "" msgstr ""
@ -3567,8 +3568,8 @@ msgstr ""
msgid "Search This Site" msgid "Search This Site"
msgstr "" msgstr ""
#: ../../mod/profiles.php:21 ../../mod/profiles.php:242 #: ../../mod/profiles.php:21 ../../mod/profiles.php:243
#: ../../mod/profiles.php:356 ../../mod/dfrn_confirm.php:62 #: ../../mod/profiles.php:357 ../../mod/dfrn_confirm.php:62
msgid "Profile not found." msgid "Profile not found."
msgstr "" msgstr ""
@ -3576,213 +3577,213 @@ msgstr ""
msgid "Profile Name is required." msgid "Profile Name is required."
msgstr "" msgstr ""
#: ../../mod/profiles.php:201 #: ../../mod/profiles.php:202
msgid "Profile updated." msgid "Profile updated."
msgstr "" msgstr ""
#: ../../mod/profiles.php:261 #: ../../mod/profiles.php:262
msgid "Profile deleted." msgid "Profile deleted."
msgstr "" msgstr ""
#: ../../mod/profiles.php:279 ../../mod/profiles.php:313 #: ../../mod/profiles.php:280 ../../mod/profiles.php:314
msgid "Profile-" msgid "Profile-"
msgstr "" msgstr ""
#: ../../mod/profiles.php:298 ../../mod/profiles.php:340 #: ../../mod/profiles.php:299 ../../mod/profiles.php:341
msgid "New profile created." msgid "New profile created."
msgstr "" msgstr ""
#: ../../mod/profiles.php:319 #: ../../mod/profiles.php:320
msgid "Profile unavailable to clone." msgid "Profile unavailable to clone."
msgstr "" msgstr ""
#: ../../mod/profiles.php:368 #: ../../mod/profiles.php:378
msgid "Hide your contact/friend list from viewers of this profile?" msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "" msgstr ""
#: ../../mod/profiles.php:389 #: ../../mod/profiles.php:401
msgid "Edit Profile Details" msgid "Edit Profile Details"
msgstr "" msgstr ""
#: ../../mod/profiles.php:391 #: ../../mod/profiles.php:403
msgid "View this profile" msgid "View this profile"
msgstr "" msgstr ""
#: ../../mod/profiles.php:392 #: ../../mod/profiles.php:404
msgid "Create a new profile using these settings" msgid "Create a new profile using these settings"
msgstr "" msgstr ""
#: ../../mod/profiles.php:393 #: ../../mod/profiles.php:405
msgid "Clone this profile" msgid "Clone this profile"
msgstr "" msgstr ""
#: ../../mod/profiles.php:394 #: ../../mod/profiles.php:406
msgid "Delete this profile" msgid "Delete this profile"
msgstr "" msgstr ""
#: ../../mod/profiles.php:395 #: ../../mod/profiles.php:407
msgid "Profile Name:" msgid "Profile Name:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:396 #: ../../mod/profiles.php:408
msgid "Your Full Name:" msgid "Your Full Name:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:397 #: ../../mod/profiles.php:409
msgid "Title/Description:" msgid "Title/Description:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:398 #: ../../mod/profiles.php:410
msgid "Your Gender:" msgid "Your Gender:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:399 #: ../../mod/profiles.php:411
#, php-format #, php-format
msgid "Birthday (%s):" msgid "Birthday (%s):"
msgstr "" msgstr ""
#: ../../mod/profiles.php:400 #: ../../mod/profiles.php:412
msgid "Street Address:" msgid "Street Address:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:401 #: ../../mod/profiles.php:413
msgid "Locality/City:" msgid "Locality/City:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:402 #: ../../mod/profiles.php:414
msgid "Postal/Zip Code:" msgid "Postal/Zip Code:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:403 #: ../../mod/profiles.php:415
msgid "Country:" msgid "Country:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:404 #: ../../mod/profiles.php:416
msgid "Region/State:" msgid "Region/State:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:405 #: ../../mod/profiles.php:417
msgid "<span class=\"heart\">&hearts;</span> Marital Status:" msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:406 #: ../../mod/profiles.php:418
msgid "Who: (if applicable)" msgid "Who: (if applicable)"
msgstr "" msgstr ""
#: ../../mod/profiles.php:407 #: ../../mod/profiles.php:419
msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "" msgstr ""
#: ../../mod/profiles.php:408 ../../include/profile_advanced.php:43 #: ../../mod/profiles.php:420 ../../include/profile_advanced.php:43
msgid "Sexual Preference:" msgid "Sexual Preference:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:409 #: ../../mod/profiles.php:421
msgid "Homepage URL:" msgid "Homepage URL:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:410 ../../include/profile_advanced.php:49 #: ../../mod/profiles.php:422 ../../include/profile_advanced.php:49
msgid "Political Views:" msgid "Political Views:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:411 #: ../../mod/profiles.php:423
msgid "Religious Views:" msgid "Religious Views:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:412 #: ../../mod/profiles.php:424
msgid "Public Keywords:" msgid "Public Keywords:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:413 #: ../../mod/profiles.php:425
msgid "Private Keywords:" msgid "Private Keywords:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:414 #: ../../mod/profiles.php:426
msgid "Example: fishing photography software" msgid "Example: fishing photography software"
msgstr "" msgstr ""
#: ../../mod/profiles.php:415 #: ../../mod/profiles.php:427
msgid "(Used for suggesting potential friends, can be seen by others)" msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "" msgstr ""
#: ../../mod/profiles.php:416 #: ../../mod/profiles.php:428
msgid "(Used for searching profiles, never shown to others)" msgid "(Used for searching profiles, never shown to others)"
msgstr "" msgstr ""
#: ../../mod/profiles.php:417 #: ../../mod/profiles.php:429
msgid "Tell us about yourself..." msgid "Tell us about yourself..."
msgstr "" msgstr ""
#: ../../mod/profiles.php:418 #: ../../mod/profiles.php:430
msgid "Hobbies/Interests" msgid "Hobbies/Interests"
msgstr "" msgstr ""
#: ../../mod/profiles.php:419 #: ../../mod/profiles.php:431
msgid "Contact information and Social Networks" msgid "Contact information and Social Networks"
msgstr "" msgstr ""
#: ../../mod/profiles.php:420 #: ../../mod/profiles.php:432
msgid "Musical interests" msgid "Musical interests"
msgstr "" msgstr ""
#: ../../mod/profiles.php:421 #: ../../mod/profiles.php:433
msgid "Books, literature" msgid "Books, literature"
msgstr "" msgstr ""
#: ../../mod/profiles.php:422 #: ../../mod/profiles.php:434
msgid "Television" msgid "Television"
msgstr "" msgstr ""
#: ../../mod/profiles.php:423 #: ../../mod/profiles.php:435
msgid "Film/dance/culture/entertainment" msgid "Film/dance/culture/entertainment"
msgstr "" msgstr ""
#: ../../mod/profiles.php:424 #: ../../mod/profiles.php:436
msgid "Love/romance" msgid "Love/romance"
msgstr "" msgstr ""
#: ../../mod/profiles.php:425 #: ../../mod/profiles.php:437
msgid "Work/employment" msgid "Work/employment"
msgstr "" msgstr ""
#: ../../mod/profiles.php:426 #: ../../mod/profiles.php:438
msgid "School/education" msgid "School/education"
msgstr "" msgstr ""
#: ../../mod/profiles.php:431 #: ../../mod/profiles.php:443
msgid "" msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> " "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet." "be visible to anybody using the internet."
msgstr "" msgstr ""
#: ../../mod/profiles.php:441 ../../mod/directory.php:111 #: ../../mod/profiles.php:453 ../../mod/directory.php:111
msgid "Age: " msgid "Age: "
msgstr "" msgstr ""
#: ../../mod/profiles.php:476 ../../view/theme/diabook-red/theme.php:298 #: ../../mod/profiles.php:488 ../../view/theme/diabook-red/theme.php:298
#: ../../view/theme/diabook-blue/theme.php:297 #: ../../view/theme/diabook-blue/theme.php:297
#: ../../view/theme/diabook/theme.php:308 #: ../../view/theme/diabook/theme.php:308
#: ../../view/theme/diabook-aerith/theme.php:298 #: ../../view/theme/diabook-aerith/theme.php:298
msgid "Edit/Manage Profiles" msgid "Edit/Manage Profiles"
msgstr "" msgstr ""
#: ../../mod/profiles.php:477 ../../boot.php:1047 #: ../../mod/profiles.php:489 ../../boot.php:1047
msgid "Change profile photo" msgid "Change profile photo"
msgstr "" msgstr ""
#: ../../mod/profiles.php:478 ../../boot.php:1048 #: ../../mod/profiles.php:490 ../../boot.php:1048
msgid "Create New Profile" msgid "Create New Profile"
msgstr "" msgstr ""
#: ../../mod/profiles.php:489 ../../boot.php:1058 #: ../../mod/profiles.php:501 ../../boot.php:1058
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: ../../mod/profiles.php:491 ../../boot.php:1061 #: ../../mod/profiles.php:503 ../../boot.php:1061
msgid "visible to everybody" msgid "visible to everybody"
msgstr "" msgstr ""
#: ../../mod/profiles.php:492 ../../boot.php:1062 #: ../../mod/profiles.php:504 ../../boot.php:1062
msgid "Edit visibility" msgid "Edit visibility"
msgstr "" msgstr ""
@ -3838,7 +3839,7 @@ msgstr ""
#: ../../view/theme/diabook-blue/theme.php:150 #: ../../view/theme/diabook-blue/theme.php:150
#: ../../view/theme/diabook/theme.php:153 #: ../../view/theme/diabook/theme.php:153
#: ../../view/theme/diabook-aerith/theme.php:151 #: ../../view/theme/diabook-aerith/theme.php:151
#: ../../include/contact_widgets.php:33 #: ../../include/contact_widgets.php:34
msgid "Friend Suggestions" msgid "Friend Suggestions"
msgstr "" msgstr ""
@ -4041,71 +4042,71 @@ msgstr ""
msgid "Connection accepted at %s" msgid "Connection accepted at %s"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:466 #: ../../addon/facebook/facebook.php:467
msgid "Facebook disabled" msgid "Facebook disabled"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:471 #: ../../addon/facebook/facebook.php:472
msgid "Updating contacts" msgid "Updating contacts"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:492 #: ../../addon/facebook/facebook.php:493
msgid "Facebook API key is missing." msgid "Facebook API key is missing."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:499 #: ../../addon/facebook/facebook.php:500
msgid "Facebook Connect" msgid "Facebook Connect"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:505 #: ../../addon/facebook/facebook.php:506
msgid "Install Facebook connector for this account." msgid "Install Facebook connector for this account."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:512 #: ../../addon/facebook/facebook.php:513
msgid "Remove Facebook connector" msgid "Remove Facebook connector"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:517 #: ../../addon/facebook/facebook.php:518
msgid "" msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is " "Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]" "changed.]"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:524 #: ../../addon/facebook/facebook.php:525
msgid "Post to Facebook by default" msgid "Post to Facebook by default"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:528 #: ../../addon/facebook/facebook.php:529
msgid "Link all your Facebook friends and conversations on this website" msgid "Link all your Facebook friends and conversations on this website"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:530 #: ../../addon/facebook/facebook.php:531
msgid "" msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend " "Facebook conversations consist of your <em>profile wall</em> and your friend "
"<em>stream</em>." "<em>stream</em>."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:531 #: ../../addon/facebook/facebook.php:532
msgid "On this website, your Facebook friend stream is only visible to you." msgid "On this website, your Facebook friend stream is only visible to you."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:532 #: ../../addon/facebook/facebook.php:533
msgid "" msgid ""
"The following settings determine the privacy of your Facebook profile wall " "The following settings determine the privacy of your Facebook profile wall "
"on this website." "on this website."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:536 #: ../../addon/facebook/facebook.php:537
msgid "" msgid ""
"On this website your Facebook profile wall conversations will only be " "On this website your Facebook profile wall conversations will only be "
"visible to you" "visible to you"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:541 #: ../../addon/facebook/facebook.php:542
msgid "Do not import your Facebook profile wall conversations" msgid "Do not import your Facebook profile wall conversations"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:543 #: ../../addon/facebook/facebook.php:544
msgid "" msgid ""
"If you choose to link conversations and leave both of these boxes unchecked, " "If you choose to link conversations and leave both of these boxes unchecked, "
"your Facebook profile wall will be merged with your profile wall on this " "your Facebook profile wall will be merged with your profile wall on this "
@ -4113,114 +4114,114 @@ msgid ""
"who may see the conversations." "who may see the conversations."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:548 #: ../../addon/facebook/facebook.php:549
msgid "Comma separated applications to ignore" msgid "Comma separated applications to ignore"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:619 #: ../../addon/facebook/facebook.php:620
msgid "Problems with Facebook Real-Time Updates" msgid "Problems with Facebook Real-Time Updates"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:643 #: ../../addon/facebook/facebook.php:644
#: ../../include/contact_selectors.php:81 #: ../../include/contact_selectors.php:81
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:644 #: ../../addon/facebook/facebook.php:645
msgid "Facebook Connector Settings" msgid "Facebook Connector Settings"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:653 #: ../../addon/facebook/facebook.php:656
msgid "Facebook API Key" msgid "Facebook API Key"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:662 #: ../../addon/facebook/facebook.php:665
msgid "" msgid ""
"Error: it appears that you have specified the App-ID and -Secret in your ." "Error: it appears that you have specified the App-ID and -Secret in your ."
"htconfig.php file. As long as they are specified there, they cannot be set " "htconfig.php file. As long as they are specified there, they cannot be set "
"using this form.<br><br>" "using this form.<br><br>"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:667 #: ../../addon/facebook/facebook.php:670
msgid "" msgid ""
"Error: the given API Key seems to be incorrect (the application access token " "Error: the given API Key seems to be incorrect (the application access token "
"could not be retrieved)." "could not be retrieved)."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:669 #: ../../addon/facebook/facebook.php:672
msgid "The given API Key seems to work correctly." msgid "The given API Key seems to work correctly."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:671 #: ../../addon/facebook/facebook.php:674
msgid "" msgid ""
"The correctness of the API Key could not be detected. Somthing strange's " "The correctness of the API Key could not be detected. Somthing strange's "
"going on." "going on."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:674 #: ../../addon/facebook/facebook.php:677
msgid "App-ID / API-Key" msgid "App-ID / API-Key"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:675 #: ../../addon/facebook/facebook.php:678
msgid "Application secret" msgid "Application secret"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:676 #: ../../addon/facebook/facebook.php:679
#, php-format #, php-format
msgid "Polling Interval (min. %1$s minutes)" msgid "Polling Interval (min. %1$s minutes)"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:680 #: ../../addon/facebook/facebook.php:683
msgid "Real-Time Updates" msgid "Real-Time Updates"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:684 #: ../../addon/facebook/facebook.php:687
msgid "Real-Time Updates are activated." msgid "Real-Time Updates are activated."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:685 #: ../../addon/facebook/facebook.php:688
msgid "Deactivate Real-Time Updates" msgid "Deactivate Real-Time Updates"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:687 #: ../../addon/facebook/facebook.php:690
msgid "Real-Time Updates not activated." msgid "Real-Time Updates not activated."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:687 #: ../../addon/facebook/facebook.php:690
msgid "Activate Real-Time Updates" msgid "Activate Real-Time Updates"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:701 #: ../../addon/facebook/facebook.php:704
msgid "The new values have been saved." msgid "The new values have been saved."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:720 #: ../../addon/facebook/facebook.php:723
msgid "Post to Facebook" msgid "Post to Facebook"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:812 #: ../../addon/facebook/facebook.php:815
msgid "" msgid ""
"Post to Facebook cancelled because of multi-network access permission " "Post to Facebook cancelled because of multi-network access permission "
"conflict." "conflict."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1030 #: ../../addon/facebook/facebook.php:1033
msgid "View on Friendica" msgid "View on Friendica"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1055 #: ../../addon/facebook/facebook.php:1058
msgid "Facebook post failed. Queued for retry." msgid "Facebook post failed. Queued for retry."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1091 #: ../../addon/facebook/facebook.php:1094
msgid "Your Facebook connection became invalid. Please Re-authenticate." msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1092 #: ../../addon/facebook/facebook.php:1095
msgid "Facebook connection became invalid" msgid "Facebook connection became invalid"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:1093 #: ../../addon/facebook/facebook.php:1096
#, php-format #, php-format
msgid "" msgid ""
"Hi %1$s,\n" "Hi %1$s,\n"
@ -4473,11 +4474,11 @@ msgstr ""
msgid "I won!" msgid "I won!"
msgstr "" msgstr ""
#: ../../addon/randplace/randplace.php:171 #: ../../addon/randplace/randplace.php:169
msgid "Randplace Settings" msgid "Randplace Settings"
msgstr "" msgstr ""
#: ../../addon/randplace/randplace.php:173 #: ../../addon/randplace/randplace.php:171
msgid "Enable Randplace Plugin" msgid "Enable Randplace Plugin"
msgstr "" msgstr ""
@ -4754,6 +4755,68 @@ msgstr ""
msgid "Disable richtext status editor" msgid "Disable richtext status editor"
msgstr "" msgstr ""
#: ../../addon/gravatar/gravatar.php:71
msgid "generic profile image"
msgstr ""
#: ../../addon/gravatar/gravatar.php:72
msgid "random geometric pattern"
msgstr ""
#: ../../addon/gravatar/gravatar.php:73
msgid "monster face"
msgstr ""
#: ../../addon/gravatar/gravatar.php:74
msgid "computer generated face"
msgstr ""
#: ../../addon/gravatar/gravatar.php:75
msgid "retro arcade style face"
msgstr ""
#: ../../addon/gravatar/gravatar.php:87
msgid "Default avatar image"
msgstr ""
#: ../../addon/gravatar/gravatar.php:87
msgid "Select default avatar image if none was found at Gravatar. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:88
msgid "Rating of images"
msgstr ""
#: ../../addon/gravatar/gravatar.php:88
msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:102
msgid "Gravatar settings updated."
msgstr ""
#: ../../addon/testdrive/testdrive.php:85
#, php-format
msgid "Your account on %s will expire in a few days."
msgstr ""
#: ../../addon/testdrive/testdrive.php:86
msgid "Your Friendica test account is about to expire."
msgstr ""
#: ../../addon/testdrive/testdrive.php:87
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your test account on %2$s will expire in less than five days. We hope you "
"enjoyed this test drive and use this opportunity to find a permanent "
"Friendica website for your integrated social communications. A list of "
"public sites is available at http://dir.friendica.com/siteinfo - and for "
"more information on setting up your own Friendica server please see the "
"Friendica project website at http://friendica.com."
msgstr ""
#: ../../addon/pageheader/pageheader.php:50 #: ../../addon/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings" msgid "\"pageheader\" Settings"
msgstr "" msgstr ""
@ -5192,7 +5255,6 @@ msgstr ""
#: ../../view/theme/diabook-red/theme.php:27 #: ../../view/theme/diabook-red/theme.php:27
#: ../../view/theme/diabook-blue/theme.php:27 #: ../../view/theme/diabook-blue/theme.php:27
#: ../../view/theme/diabook/theme.php:30 #: ../../view/theme/diabook/theme.php:30
#: ../../view/theme/dispy-dark/theme.php:120
#: ../../view/theme/diabook-aerith/theme.php:28 #: ../../view/theme/diabook-aerith/theme.php:28
msgid "Last users" msgid "Last users"
msgstr "" msgstr ""
@ -5229,7 +5291,7 @@ msgstr ""
#: ../../view/theme/diabook-blue/theme.php:149 #: ../../view/theme/diabook-blue/theme.php:149
#: ../../view/theme/diabook/theme.php:152 #: ../../view/theme/diabook/theme.php:152
#: ../../view/theme/diabook-aerith/theme.php:150 #: ../../view/theme/diabook-aerith/theme.php:150
#: ../../include/contact_widgets.php:34 #: ../../include/contact_widgets.php:35
msgid "Similar Interests" msgid "Similar Interests"
msgstr "" msgstr ""
@ -5237,7 +5299,7 @@ msgstr ""
#: ../../view/theme/diabook-blue/theme.php:151 #: ../../view/theme/diabook-blue/theme.php:151
#: ../../view/theme/diabook/theme.php:154 #: ../../view/theme/diabook/theme.php:154
#: ../../view/theme/diabook-aerith/theme.php:152 #: ../../view/theme/diabook-aerith/theme.php:152
#: ../../include/contact_widgets.php:35 #: ../../include/contact_widgets.php:37
msgid "Invite Friends" msgid "Invite Friends"
msgstr "" msgstr ""
@ -5911,7 +5973,7 @@ msgstr ""
msgid "[Relayed] Comment authored by %s from network %s" msgid "[Relayed] Comment authored by %s from network %s"
msgstr "" msgstr ""
#: ../../include/network.php:817 #: ../../include/network.php:822
msgid "view full size" msgid "view full size"
msgstr "" msgstr ""
@ -6074,46 +6136,50 @@ msgstr ""
msgid "Example: bob@example.com, http://example.com/barbara" msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "" msgstr ""
#: ../../include/contact_widgets.php:22 #: ../../include/contact_widgets.php:23
#, php-format #, php-format
msgid "%d invitation available" msgid "%d invitation available"
msgid_plural "%d invitations available" msgid_plural "%d invitations available"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/contact_widgets.php:28 #: ../../include/contact_widgets.php:29
msgid "Find People" msgid "Find People"
msgstr "" msgstr ""
#: ../../include/contact_widgets.php:29 #: ../../include/contact_widgets.php:30
msgid "Enter name or interest" msgid "Enter name or interest"
msgstr "" msgstr ""
#: ../../include/contact_widgets.php:30 #: ../../include/contact_widgets.php:31
msgid "Connect/Follow" msgid "Connect/Follow"
msgstr "" msgstr ""
#: ../../include/contact_widgets.php:31 #: ../../include/contact_widgets.php:32
msgid "Examples: Robert Morgenstein, Fishing" msgid "Examples: Robert Morgenstein, Fishing"
msgstr "" msgstr ""
#: ../../include/contact_widgets.php:66 #: ../../include/contact_widgets.php:36
msgid "Random Profile"
msgstr ""
#: ../../include/contact_widgets.php:68
msgid "Networks" msgid "Networks"
msgstr "" msgstr ""
#: ../../include/contact_widgets.php:69 #: ../../include/contact_widgets.php:71
msgid "All Networks" msgid "All Networks"
msgstr "" msgstr ""
#: ../../include/contact_widgets.php:96 #: ../../include/contact_widgets.php:98
msgid "Saved Folders" msgid "Saved Folders"
msgstr "" msgstr ""
#: ../../include/contact_widgets.php:99 ../../include/contact_widgets.php:127 #: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
msgid "Everything" msgid "Everything"
msgstr "" msgstr ""
#: ../../include/contact_widgets.php:124 #: ../../include/contact_widgets.php:126
msgid "Categories" msgid "Categories"
msgstr "" msgstr ""
@ -6441,11 +6507,11 @@ msgstr ""
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:2656 #: ../../include/items.php:2659
msgid "A new person is sharing with you at " msgid "A new person is sharing with you at "
msgstr "" msgstr ""
#: ../../include/items.php:2656 #: ../../include/items.php:2659
msgid "You have a new follower at " msgid "You have a new follower at "
msgstr "" msgstr ""
@ -6477,20 +6543,24 @@ msgid ""
msgstr "" msgstr ""
#: ../../include/Contact.php:137 ../../include/conversation.php:813 #: ../../include/Contact.php:137 ../../include/conversation.php:813
msgid "View status" msgid "View Status"
msgstr "" msgstr ""
#: ../../include/Contact.php:138 ../../include/conversation.php:814 #: ../../include/Contact.php:138 ../../include/conversation.php:814
msgid "View profile" msgid "View Profile"
msgstr "" msgstr ""
#: ../../include/Contact.php:139 ../../include/conversation.php:815 #: ../../include/Contact.php:139 ../../include/conversation.php:815
msgid "View photos" msgid "View Photos"
msgstr "" msgstr ""
#: ../../include/Contact.php:140 ../../include/Contact.php:153 #: ../../include/Contact.php:140 ../../include/Contact.php:153
#: ../../include/conversation.php:816 #: ../../include/conversation.php:816
msgid "View recent" msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:141 ../../include/conversation.php:817
msgid "Edit Contact"
msgstr "" msgstr ""
#: ../../include/Contact.php:142 ../../include/Contact.php:153 #: ../../include/Contact.php:142 ../../include/Contact.php:153