Merge pull request #1895 from fabrixxm/rino2-mcrypt
Adds checks for mcrypt module for RINO2
This commit is contained in:
commit
05d981be14
5 changed files with 5564 additions and 5378 deletions
|
|
@ -2000,6 +2000,8 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
|
|||
|
||||
$rino = get_config('system','rino_encrypt');
|
||||
$rino = intval($rino);
|
||||
// use RINO1 if mcrypt isn't installed and RINO2 was selected
|
||||
if ($rino==2 and !function_exists('mcrypt_create_iv')) $rino=1;
|
||||
|
||||
logger("Local rino version: ". $rino, LOGGER_DEBUG);
|
||||
|
||||
|
|
|
|||
|
|
@ -551,7 +551,12 @@ function admin_page_site_post(&$a){
|
|||
set_config('system','old_pager', $old_pager);
|
||||
set_config('system','only_tag_search', $only_tag_search);
|
||||
|
||||
set_config('system','rino_encrypt', $rino);
|
||||
|
||||
if ($rino==2 and !function_exists('mcrypt_create_iv')){
|
||||
notice(t("RINO2 needs mcrypt php extension to work."));
|
||||
} else {
|
||||
set_config('system','rino_encrypt', $rino);
|
||||
}
|
||||
|
||||
set_config('system','embedly', $embedly);
|
||||
|
||||
|
|
|
|||
|
|
@ -137,6 +137,8 @@ function dfrn_notify_post(&$a) {
|
|||
|
||||
$rino = get_config('system','rino_encrypt');
|
||||
$rino = intval($rino);
|
||||
// use RINO1 if mcrypt isn't installed and RINO2 was selected
|
||||
if ($rino==2 and !function_exists('mcrypt_create_iv')) $rino=1;
|
||||
|
||||
logger("Local rino version: ". $rino, LOGGER_DEBUG);
|
||||
|
||||
|
|
@ -307,7 +309,9 @@ function dfrn_notify_content(&$a) {
|
|||
|
||||
$rino = get_config('system','rino_encrypt');
|
||||
$rino = intval($rino);
|
||||
|
||||
// use RINO1 if mcrypt isn't installed and RINO2 was selected
|
||||
if ($rino==2 and !function_exists('mcrypt_create_iv')) $rino=1;
|
||||
|
||||
logger("Local rino version: ". $rino, LOGGER_DEBUG);
|
||||
|
||||
// if requested rino is lower than enabled local rino, lower local rino version
|
||||
|
|
|
|||
|
|
@ -392,6 +392,7 @@ function check_funcs(&$checks) {
|
|||
check_add($ck_funcs, t('OpenSSL PHP module'), true, true, "");
|
||||
check_add($ck_funcs, t('mysqli PHP module'), true, true, "");
|
||||
check_add($ck_funcs, t('mb_string PHP module'), true, true, "");
|
||||
check_add($ck_funcs, t('mcrypt PHP module'), true, true, "");
|
||||
|
||||
|
||||
if(function_exists('apache_get_modules')){
|
||||
|
|
@ -422,7 +423,13 @@ function check_funcs(&$checks) {
|
|||
$ck_funcs[4]['status']= false;
|
||||
$ck_funcs[4]['help']= t('Error: mb_string PHP module required but not installed.');
|
||||
}
|
||||
if(! function_exists('mcrypt_create_iv')){
|
||||
$ck_funcs[5]['status']= false;
|
||||
$ck_funcs[5]['help']= t('Error: mcrypt PHP module required but not installed.');
|
||||
}
|
||||
|
||||
|
||||
|
||||
$checks = array_merge($checks, $ck_funcs);
|
||||
|
||||
/*if((x($_SESSION,'sysmsg')) && is_array($_SESSION['sysmsg']) && count($_SESSION['sysmsg']))
|
||||
|
|
|
|||
10920
util/messages.po
10920
util/messages.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 3.4.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-09-01 07:09+0200\n"
|
||||
"POT-Creation-Date: 2015-09-22 09:58+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -18,6 +18,3090 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
|
||||
#: object/Item.php:95
|
||||
msgid "This entry was edited"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622
|
||||
msgid "Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:121 mod/settings.php:694 mod/content.php:730
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439
|
||||
#: mod/content.php:742 include/conversation.php:612
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673
|
||||
#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171
|
||||
#: mod/content.php:440 mod/content.php:743 include/conversation.php:613
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:134 mod/content.php:765
|
||||
msgid "save to folder"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:196 mod/content.php:755
|
||||
msgid "add star"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:197 mod/content.php:756
|
||||
msgid "remove star"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:198 mod/content.php:757
|
||||
msgid "toggle star status"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:201 mod/content.php:760
|
||||
msgid "starred"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:209
|
||||
msgid "ignore thread"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:210
|
||||
msgid "unignore thread"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:211
|
||||
msgid "toggle ignore status"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:214 mod/ostatus_subscribe.php:69
|
||||
msgid "ignored"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:221 mod/content.php:761
|
||||
msgid "add tag"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686
|
||||
msgid "I like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:232 mod/content.php:686
|
||||
msgid "like"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:233 mod/content.php:687
|
||||
msgid "dislike"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:235 mod/content.php:689
|
||||
msgid "Share this"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:235 mod/content.php:689
|
||||
msgid "share"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:318 include/conversation.php:665
|
||||
msgid "Categories:"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:319 include/conversation.php:666
|
||||
msgid "Filed under:"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:328 object/Item.php:329 mod/content.php:473
|
||||
#: mod/content.php:854 mod/content.php:855 include/conversation.php:653
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:330 mod/content.php:856
|
||||
msgid "to"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:331
|
||||
msgid "via"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:332 mod/content.php:857
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:333 mod/content.php:858
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:342 mod/content.php:483 mod/content.php:866
|
||||
#: include/conversation.php:673
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583
|
||||
#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:366 mod/message.php:335 mod/message.php:566
|
||||
#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564
|
||||
#: mod/content.php:501 mod/content.php:885 include/conversation.php:691
|
||||
#: include/conversation.php:1074
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:389 mod/content.php:605
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: object/Item.php:391 object/Item.php:404 mod/content.php:607
|
||||
#: include/text.php:2038
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147
|
||||
#: include/contact_widgets.php:205
|
||||
msgid "show more"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625
|
||||
#: mod/photos.php:1713 mod/content.php:709
|
||||
msgid "This is you"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336
|
||||
#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104
|
||||
#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584
|
||||
#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596
|
||||
#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199
|
||||
#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288
|
||||
#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191
|
||||
#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148
|
||||
#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70
|
||||
#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64
|
||||
#: view/theme/cleanzero/config.php:80
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:681 mod/content.php:713
|
||||
msgid "Bold"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:682 mod/content.php:714
|
||||
msgid "Italic"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:683 mod/content.php:715
|
||||
msgid "Underline"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:684 mod/content.php:716
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:685 mod/content.php:717
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:686 mod/content.php:718
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:687 mod/content.php:719
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:688 mod/content.php:720
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509
|
||||
#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717
|
||||
#: mod/content.php:721 include/conversation.php:1089
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:225 mod/apps.php:7
|
||||
msgid "You must be logged in to use addons. "
|
||||
msgstr ""
|
||||
|
||||
#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:272 mod/help.php:45
|
||||
msgid "Page not found."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:381 mod/profperm.php:19 mod/group.php:72
|
||||
msgid "Permission denied"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:382 mod/fsuggest.php:78 mod/files.php:170
|
||||
#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175
|
||||
#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164
|
||||
#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79
|
||||
#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70
|
||||
#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156
|
||||
#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33
|
||||
#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83
|
||||
#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15
|
||||
#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116
|
||||
#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165
|
||||
#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61
|
||||
#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96
|
||||
#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20
|
||||
#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19
|
||||
#: mod/profile_photo.php:169 mod/profile_photo.php:180
|
||||
#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110
|
||||
#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4
|
||||
#: mod/crepair.php:120 include/items.php:5036
|
||||
msgid "Permission denied."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:441
|
||||
msgid "toggle mobile"
|
||||
msgstr ""
|
||||
|
||||
#: mod/update_notes.php:37 mod/update_profile.php:41
|
||||
#: mod/update_community.php:18 mod/update_network.php:25
|
||||
#: mod/update_display.php:22
|
||||
msgid "[Embedded content - reload page to view]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120
|
||||
#: mod/crepair.php:134
|
||||
msgid "Contact not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/fsuggest.php:63
|
||||
msgid "Friend suggestion sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/fsuggest.php:97
|
||||
msgid "Suggest Friends"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fsuggest.php:99
|
||||
#, php-format
|
||||
msgid "Suggest a friend for %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:95
|
||||
msgid "This introduction has already been accepted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:120 mod/dfrn_request.php:518
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:125 mod/dfrn_request.php:523
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:127 mod/dfrn_request.php:525
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:130 mod/dfrn_request.php:528
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/dfrn_request.php:172
|
||||
msgid "Introduction complete."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:214
|
||||
msgid "Unrecoverable protocol error."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:242
|
||||
msgid "Profile unavailable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:267
|
||||
#, php-format
|
||||
msgid "%s has received too many connection requests today."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:268
|
||||
msgid "Spam protection measures have been invoked."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:269
|
||||
msgid "Friends are advised to please try again in 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:331
|
||||
msgid "Invalid locator"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:340
|
||||
msgid "Invalid email address."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:367
|
||||
msgid "This account has not been configured for email. Request failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:463
|
||||
msgid "Unable to resolve your name at the provided location."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:476
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:480
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:501
|
||||
msgid "Invalid profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:507 include/follow.php:70
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:576 mod/contacts.php:194
|
||||
msgid "Failed to update contact record."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:597
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:650
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:660
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to <strong>this</"
|
||||
"strong> profile."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:674 mod/dfrn_request.php:691
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:686
|
||||
msgid "Hide this contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:689
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:690
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250
|
||||
msgid "[Name Withheld]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187
|
||||
#: mod/search.php:93 mod/search.php:98 mod/display.php:223
|
||||
#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:819
|
||||
msgid ""
|
||||
"Please enter your 'Identity Address' from one of the following supported "
|
||||
"communications networks:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:840
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
|
||||
"\">follow this link to find a public Friendica site and join us today</a>."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:845
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:846
|
||||
msgid ""
|
||||
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
|
||||
"testuser@identi.ca"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:847 mod/follow.php:58
|
||||
msgid "Please answer the following:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:848 mod/follow.php:59
|
||||
#, php-format
|
||||
msgid "Does %s know you?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236
|
||||
#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074
|
||||
#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091
|
||||
#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109
|
||||
#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137
|
||||
#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658
|
||||
#: mod/profiles.php:662
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105
|
||||
#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59
|
||||
#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082
|
||||
#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097
|
||||
#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135
|
||||
#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138
|
||||
#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661
|
||||
#: mod/suggest.php:29 include/items.php:4868
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:852 mod/follow.php:60
|
||||
msgid "Add a personal note:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:854 include/contact_selectors.php:76
|
||||
msgid "Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:855
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:856 mod/settings.php:793
|
||||
#: include/contact_selectors.php:80
|
||||
msgid "Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:857
|
||||
#, php-format
|
||||
msgid ""
|
||||
" - please do not use this form. Instead, enter %s into your Diaspora search "
|
||||
"bar."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:858 mod/follow.php:66
|
||||
msgid "Your Identity Address:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:861 mod/follow.php:69
|
||||
msgid "Submit Request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148
|
||||
#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225
|
||||
#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121
|
||||
#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633
|
||||
#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871
|
||||
#: include/conversation.php:1093
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: mod/files.php:156 mod/videos.php:373 include/text.php:1460
|
||||
msgid "View Video"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile.php:21 include/identity.php:77
|
||||
msgid "Requested profile is not available."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile.php:155 mod/display.php:343
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile.php:179
|
||||
msgid "Tips for New Members"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:26
|
||||
msgid "Invalid request identifier."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:35 mod/notifications.php:175
|
||||
#: mod/notifications.php:234
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:51 mod/notifications.php:174
|
||||
#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623
|
||||
#: mod/contacts.php:799
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:78
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:90 mod/network.php:375
|
||||
msgid "Personal"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:96 view/theme/diabook/theme.php:123
|
||||
#: include/nav.php:105 include/nav.php:156
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:102 include/nav.php:161
|
||||
msgid "Introductions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:127
|
||||
msgid "Show Ignored Requests"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:127
|
||||
msgid "Hide Ignored Requests"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:159 mod/notifications.php:209
|
||||
msgid "Notification type: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:160
|
||||
msgid "Friend Suggestion"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:162
|
||||
#, php-format
|
||||
msgid "suggested by %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629
|
||||
msgid "Hide this contact from others"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:168 mod/notifications.php:228
|
||||
msgid "Post a new friend activity"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:168 mod/notifications.php:228
|
||||
msgid "if applicable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:191
|
||||
msgid "Claims to be known to you: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:191
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:191
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:192
|
||||
msgid ""
|
||||
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
|
||||
"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
|
||||
"you allow to read but you do not want to read theirs. Approve as: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:195
|
||||
msgid ""
|
||||
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
|
||||
"allow to read and you subscribe to their posts. \"Sharer\" means that you "
|
||||
"allow to read but you do not want to read theirs. Approve as: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:203
|
||||
msgid "Friend"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:204
|
||||
msgid "Sharer"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:204
|
||||
msgid "Fan/Admirer"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:210
|
||||
msgid "Friend/Connect Request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:210
|
||||
msgid "New Follower"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503
|
||||
#: mod/directory.php:152 include/event.php:42 include/identity.php:268
|
||||
#: include/bb2diaspora.php:170
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277
|
||||
#: include/identity.php:582
|
||||
msgid "About:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:224 include/identity.php:576
|
||||
msgid "Tags:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270
|
||||
#: include/identity.php:541
|
||||
msgid "Gender:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:240
|
||||
msgid "No introductions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:243 include/nav.php:164
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:281 mod/notifications.php:410
|
||||
#: mod/notifications.php:501
|
||||
#, php-format
|
||||
msgid "%s liked %s's post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:291 mod/notifications.php:420
|
||||
#: mod/notifications.php:511
|
||||
#, php-format
|
||||
msgid "%s disliked %s's post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:306 mod/notifications.php:435
|
||||
#: mod/notifications.php:526
|
||||
#, php-format
|
||||
msgid "%s is now friends with %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:313 mod/notifications.php:442
|
||||
#, php-format
|
||||
msgid "%s created a new post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:314 mod/notifications.php:443
|
||||
#: mod/notifications.php:536
|
||||
#, php-format
|
||||
msgid "%s commented on %s's post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:329
|
||||
msgid "No more network notifications."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:333
|
||||
msgid "Network Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:359 mod/notify.php:72
|
||||
msgid "No more system notifications."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:363 mod/notify.php:76
|
||||
msgid "System Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:458
|
||||
msgid "No more personal notifications."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:462
|
||||
msgid "Personal Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:543
|
||||
msgid "No more home notifications."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:547
|
||||
msgid "Home Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87
|
||||
#: view/theme/diabook/theme.php:471 include/text.php:2034
|
||||
#: include/diaspora.php:2134 include/conversation.php:126
|
||||
#: include/conversation.php:253
|
||||
msgid "photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87
|
||||
#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
|
||||
#: include/diaspora.php:2134 include/conversation.php:121
|
||||
#: include/conversation.php:130 include/conversation.php:248
|
||||
#: include/conversation.php:257
|
||||
msgid "status"
|
||||
msgstr ""
|
||||
|
||||
#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150
|
||||
#: include/conversation.php:137
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/like.php:168 include/conversation.php:140
|
||||
#, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/openid.php:24
|
||||
msgid "OpenID protocol error. No ID returned."
|
||||
msgstr ""
|
||||
|
||||
#: mod/openid.php:53
|
||||
msgid ""
|
||||
"Account not found and OpenID registration is not permitted on this site."
|
||||
msgstr ""
|
||||
|
||||
#: mod/openid.php:93 include/auth.php:112 include/auth.php:175
|
||||
msgid "Login failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:17
|
||||
msgid "Source (bbcode) text:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:23
|
||||
msgid "Source (Diaspora) text to convert to BBcode:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:31
|
||||
msgid "Source input: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:35
|
||||
msgid "bb2html (raw HTML): "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:39
|
||||
msgid "bb2html: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:43
|
||||
msgid "bb2html2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:47
|
||||
msgid "bb2md: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:51
|
||||
msgid "bb2md2html: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:55
|
||||
msgid "bb2dia2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:59
|
||||
msgid "bb2md2html2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:69
|
||||
msgid "Source input (Diaspora format): "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:74
|
||||
msgid "diaspora2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:57
|
||||
msgid "Theme settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:104 mod/admin.php:687
|
||||
msgid "Site"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:105 mod/admin.php:633 mod/admin.php:1078 mod/admin.php:1093
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:106 mod/admin.php:1182 mod/admin.php:1242 mod/settings.php:66
|
||||
msgid "Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:107 mod/admin.php:1410 mod/admin.php:1444
|
||||
msgid "Themes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:108
|
||||
msgid "DB updates"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:109 mod/admin.php:200
|
||||
msgid "Inspect Queue"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1531
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:125
|
||||
msgid "probe address"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:126
|
||||
msgid "check webfinger"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:131 include/nav.php:193
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:132
|
||||
msgid "Plugin Features"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:134
|
||||
msgid "diagnostics"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:135
|
||||
msgid "User registrations waiting for confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15
|
||||
#: mod/display.php:82 mod/display.php:295 mod/display.php:512
|
||||
#: mod/viewsrc.php:15 include/items.php:4827
|
||||
msgid "Item not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077
|
||||
#: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443
|
||||
#: mod/admin.php:1530
|
||||
msgid "Administration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:202
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:203
|
||||
msgid "Recipient Name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:204
|
||||
msgid "Recipient Profile"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:206
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:207
|
||||
msgid "Last Tried"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:208
|
||||
msgid ""
|
||||
"This page lists the content of the queue for outgoing postings. These are "
|
||||
"postings the initial delivery failed for. They will be resend later and "
|
||||
"eventually deleted if the delivery fails permanently."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:220 mod/admin.php:1031
|
||||
msgid "Normal Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:221 mod/admin.php:1032
|
||||
msgid "Soapbox Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:222 mod/admin.php:1033
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:223 mod/admin.php:1034
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:224
|
||||
msgid "Blog Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:225
|
||||
msgid "Private Forum"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:244
|
||||
msgid "Message queues"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:250
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:252
|
||||
msgid "Registered users"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:254
|
||||
msgid "Pending registrations"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:255
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:260
|
||||
msgid "Active plugins"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:283
|
||||
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:556
|
||||
msgid "RINO2 needs mcrypt php extension to work."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:564
|
||||
msgid "Site settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:599 mod/settings.php:885
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:616
|
||||
msgid "No community page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:617
|
||||
msgid "Public postings from users of this site"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:618
|
||||
msgid "Global community page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:623 mod/contacts.php:526
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:624
|
||||
msgid "At post arrival"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:625 include/contact_selectors.php:56
|
||||
msgid "Frequently"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:626 include/contact_selectors.php:57
|
||||
msgid "Hourly"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:627 include/contact_selectors.php:58
|
||||
msgid "Twice daily"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:628 include/contact_selectors.php:59
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:632 mod/contacts.php:585
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:634
|
||||
msgid "Users, Global Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:635
|
||||
msgid "Users, Global Contacts/fallback"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:639
|
||||
msgid "One month"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:640
|
||||
msgid "Three months"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:641
|
||||
msgid "Half a year"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:642
|
||||
msgid "One year"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:647
|
||||
msgid "Multi user instance"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:670
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:671
|
||||
msgid "Requires approval"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:672
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:676
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:677
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:678
|
||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532
|
||||
#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786
|
||||
#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:689 mod/register.php:260
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:690
|
||||
msgid "File upload"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:691
|
||||
msgid "Policies"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:692
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:693
|
||||
msgid "Auto Discovered Contact Directory"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:694
|
||||
msgid "Performance"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:695
|
||||
msgid ""
|
||||
"Relocate - WARNING: advanced function. Could make this server unreachable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:698
|
||||
msgid "Site name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:699
|
||||
msgid "Host name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:700
|
||||
msgid "Sender Email"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:700
|
||||
msgid ""
|
||||
"The email address your server shall use to send notification emails from."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:701
|
||||
msgid "Banner/Logo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:702
|
||||
msgid "Shortcut icon"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:702
|
||||
msgid "Link to an icon that will be used for browsers."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:703
|
||||
msgid "Touch icon"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:703
|
||||
msgid "Link to an icon that will be used for tablets and mobiles."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:704
|
||||
msgid "Additional Info"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:704
|
||||
#, php-format
|
||||
msgid ""
|
||||
"For public servers: you can add additional information here that will be "
|
||||
"listed at %s/siteinfo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:705
|
||||
msgid "System language"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:706
|
||||
msgid "System theme"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:706
|
||||
msgid ""
|
||||
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
||||
"id='cnftheme'>change theme settings</a>"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:707
|
||||
msgid "Mobile system theme"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:707
|
||||
msgid "Theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:708
|
||||
msgid "SSL link policy"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:708
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:709
|
||||
msgid "Force SSL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:709
|
||||
msgid ""
|
||||
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
|
||||
"to endless loops."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:710
|
||||
msgid "Old style 'Share'"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:710
|
||||
msgid "Deactivates the bbcode element 'share' for repeating items."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:711
|
||||
msgid "Hide help entry from navigation menu"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:711
|
||||
msgid ""
|
||||
"Hides the menu entry for the Help pages from the navigation menu. You can "
|
||||
"still access it calling /help directly."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:712
|
||||
msgid "Single user instance"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:712
|
||||
msgid "Make this instance multi-user or single-user for the named user"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:713
|
||||
msgid "Maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:713
|
||||
msgid ""
|
||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||
"limits."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:714
|
||||
msgid "Maximum image length"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:714
|
||||
msgid ""
|
||||
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
||||
"-1, which means no limits."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:715
|
||||
msgid "JPEG image quality"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:715
|
||||
msgid ""
|
||||
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
||||
"100, which is full quality."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:717
|
||||
msgid "Register policy"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:718
|
||||
msgid "Maximum Daily Registrations"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:718
|
||||
msgid ""
|
||||
"If registration is permitted above, this sets the maximum number of new user "
|
||||
"registrations to accept per day. If register is set to closed, this setting "
|
||||
"has no effect."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:719
|
||||
msgid "Register text"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:719
|
||||
msgid "Will be displayed prominently on the registration page."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:720
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:720
|
||||
msgid ""
|
||||
"Will not waste system resources polling external sites for abandonded "
|
||||
"accounts. Enter 0 for no time limit."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:721
|
||||
msgid "Allowed friend domains"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:721
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed to establish friendships "
|
||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:722
|
||||
msgid "Allowed email domains"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:722
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed in email addresses for "
|
||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||
"domains"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:723
|
||||
msgid "Block public"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:723
|
||||
msgid ""
|
||||
"Check to block public access to all otherwise public personal pages on this "
|
||||
"site unless you are currently logged in."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:724
|
||||
msgid "Force publish"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:724
|
||||
msgid ""
|
||||
"Check to force all profiles on this site to be listed in the site directory."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:725
|
||||
msgid "Global directory URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:725
|
||||
msgid ""
|
||||
"URL to the global directory. If this is not set, the global directory is "
|
||||
"completely unavailable to the application."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:726
|
||||
msgid "Allow threaded items"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:726
|
||||
msgid "Allow infinite level threading for items on this site."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:727
|
||||
msgid "Private posts by default for new users"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:727
|
||||
msgid ""
|
||||
"Set default post permissions for all new members to the default privacy "
|
||||
"group rather than public."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:728
|
||||
msgid "Don't include post content in email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:728
|
||||
msgid ""
|
||||
"Don't include the content of a post/comment/private message/etc. in the "
|
||||
"email notifications that are sent out from this site, as a privacy measure."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:729
|
||||
msgid "Disallow public access to addons listed in the apps menu."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:729
|
||||
msgid ""
|
||||
"Checking this box will restrict addons listed in the apps menu to members "
|
||||
"only."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:730
|
||||
msgid "Don't embed private images in posts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:730
|
||||
msgid ""
|
||||
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
||||
"of the image. This means that contacts who receive posts containing private "
|
||||
"photos will have to authenticate and load each image, which may take a while."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:731
|
||||
msgid "Allow Users to set remote_self"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:731
|
||||
msgid ""
|
||||
"With checking this, every user is allowed to mark every contact as a "
|
||||
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
||||
"causes mirroring every posting of that contact in the users stream."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:732
|
||||
msgid "Block multiple registrations"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:732
|
||||
msgid "Disallow users to register additional accounts for use as pages."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:733
|
||||
msgid "OpenID support"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:733
|
||||
msgid "OpenID support for registration and logins."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:734
|
||||
msgid "Fullname check"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:734
|
||||
msgid ""
|
||||
"Force users to register with a space between firstname and lastname in Full "
|
||||
"name, as an antispam measure"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:735
|
||||
msgid "UTF-8 Regular expressions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:735
|
||||
msgid "Use PHP UTF8 regular expressions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:736
|
||||
msgid "Community Page Style"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:736
|
||||
msgid ""
|
||||
"Type of community page to show. 'Global community' shows every public "
|
||||
"posting from an open distributed network that arrived on this server."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:737
|
||||
msgid "Posts per user on community page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:737
|
||||
msgid ""
|
||||
"The maximum number of posts per user on the community page. (Not valid for "
|
||||
"'Global Community')"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:738
|
||||
msgid "Enable OStatus support"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:738
|
||||
msgid ""
|
||||
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
||||
"communications in OStatus are public, so privacy warnings will be "
|
||||
"occasionally displayed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:739
|
||||
msgid "OStatus conversation completion interval"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:739
|
||||
msgid ""
|
||||
"How often shall the poller check for new entries in OStatus conversations? "
|
||||
"This can be a very ressource task."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:740
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:740
|
||||
msgid "Provide built-in Diaspora network compatibility."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:741
|
||||
msgid "Only allow Friendica contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:741
|
||||
msgid ""
|
||||
"All contacts must use Friendica protocols. All other built-in communication "
|
||||
"protocols disabled."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:742
|
||||
msgid "Verify SSL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:742
|
||||
msgid ""
|
||||
"If you wish, you can turn on strict certificate checking. This will mean you "
|
||||
"cannot connect (at all) to self-signed SSL sites."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:743
|
||||
msgid "Proxy user"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:744
|
||||
msgid "Proxy URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:745
|
||||
msgid "Network timeout"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:745
|
||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:746
|
||||
msgid "Delivery interval"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:746
|
||||
msgid ""
|
||||
"Delay background delivery processes by this many seconds to reduce system "
|
||||
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
|
||||
"for large dedicated servers."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:747
|
||||
msgid "Poll interval"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:747
|
||||
msgid ""
|
||||
"Delay background polling processes by this many seconds to reduce system "
|
||||
"load. If 0, use delivery interval."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:748
|
||||
msgid "Maximum Load Average"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:748
|
||||
msgid ""
|
||||
"Maximum system load before delivery and poll processes are deferred - "
|
||||
"default 50."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:749
|
||||
msgid "Maximum Load Average (Frontend)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:749
|
||||
msgid "Maximum system load before the frontend quits service - default 50."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:751
|
||||
msgid "Periodical check of global contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:751
|
||||
msgid ""
|
||||
"If enabled, the global contacts are checked periodically for missing or "
|
||||
"outdated data and the vitality of the contacts and servers."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:752
|
||||
msgid "Days between requery"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:752
|
||||
msgid "Number of days after which a server is requeried for his contacts."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:753
|
||||
msgid "Discover contacts from other servers"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:753
|
||||
msgid ""
|
||||
"Periodically query other servers for contacts. You can choose between "
|
||||
"'users': the users on the remote system, 'Global Contacts': active contacts "
|
||||
"that are known on the system. The fallback is meant for Redmatrix servers "
|
||||
"and older friendica servers, where global contacts weren't available. The "
|
||||
"fallback increases the server load, so the recommened setting is 'Users, "
|
||||
"Global Contacts'."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:754
|
||||
msgid "Timeframe for fetching global contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:754
|
||||
msgid ""
|
||||
"When the discovery is activated, this value defines the timeframe for the "
|
||||
"activity of the global contacts that are fetched from other servers."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:755
|
||||
msgid "Search the local directory"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:755
|
||||
msgid ""
|
||||
"Search the local directory instead of the global directory. When searching "
|
||||
"locally, every search will be executed on the global directory in the "
|
||||
"background. This improves the search results when the search is repeated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:757
|
||||
msgid "Publish server information"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:757
|
||||
msgid ""
|
||||
"If enabled, general server and usage data will be published. The data "
|
||||
"contains the name and version of the server, number of users with public "
|
||||
"profiles, number of posts and the activated protocols and connectors. See <a "
|
||||
"href='http://the-federation.info/'>the-federation.info</a> for details."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:759
|
||||
msgid "Use MySQL full text engine"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:759
|
||||
msgid ""
|
||||
"Activates the full text engine. Speeds up search - but can only search for "
|
||||
"four and more characters."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:760
|
||||
msgid "Suppress Language"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:760
|
||||
msgid "Suppress language information in meta information about a posting."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:761
|
||||
msgid "Suppress Tags"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:761
|
||||
msgid "Suppress showing a list of hashtags at the end of the posting."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:762
|
||||
msgid "Path to item cache"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:762
|
||||
msgid "The item caches buffers generated bbcode and external images."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:763
|
||||
msgid "Cache duration in seconds"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:763
|
||||
msgid ""
|
||||
"How long should the cache files be hold? Default value is 86400 seconds (One "
|
||||
"day). To disable the item cache, set the value to -1."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:764
|
||||
msgid "Maximum numbers of comments per post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:764
|
||||
msgid "How much comments should be shown for each post? Default value is 100."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:765
|
||||
msgid "Path for lock file"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:765
|
||||
msgid ""
|
||||
"The lock file is used to avoid multiple pollers at one time. Only define a "
|
||||
"folder here."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:766
|
||||
msgid "Temp path"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:766
|
||||
msgid ""
|
||||
"If you have a restricted system where the webserver can't access the system "
|
||||
"temp path, enter another path here."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:767
|
||||
msgid "Base path to installation"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:767
|
||||
msgid ""
|
||||
"If the system cannot detect the correct path to your installation, enter the "
|
||||
"correct path here. This setting should only be set if you are using a "
|
||||
"restricted system and symbolic links to your webroot."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:768
|
||||
msgid "Disable picture proxy"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:768
|
||||
msgid ""
|
||||
"The picture proxy increases performance and privacy. It shouldn't be used on "
|
||||
"systems with very low bandwith."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:769
|
||||
msgid "Enable old style pager"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:769
|
||||
msgid ""
|
||||
"The old style pager has page numbers but slows down massively the page speed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:770
|
||||
msgid "Only search in tags"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:770
|
||||
msgid "On large systems the text search can slow down the system extremely."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:772
|
||||
msgid "New base url"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:772
|
||||
msgid ""
|
||||
"Change base url for this server. Sends relocate message to all DFRN contacts "
|
||||
"of all users."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:774
|
||||
msgid "RINO Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:774
|
||||
msgid "Encryption layer between nodes."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:775
|
||||
msgid "Embedly API key"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:775
|
||||
msgid ""
|
||||
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
|
||||
"web pages. This is an optional parameter."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:793
|
||||
msgid "Update has been marked successful"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:801
|
||||
#, php-format
|
||||
msgid "Database structure update %s was successfully applied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:804
|
||||
#, php-format
|
||||
msgid "Executing of database structure update %s failed with error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:816
|
||||
#, php-format
|
||||
msgid "Executing %s failed with error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:819
|
||||
#, php-format
|
||||
msgid "Update %s was successfully applied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:823
|
||||
#, php-format
|
||||
msgid "Update %s did not return a status. Unknown if it succeeded."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:825
|
||||
#, php-format
|
||||
msgid "There was no additional update function %s that needed to be called."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:844
|
||||
msgid "No failed updates."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:845
|
||||
msgid "Check database structure"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:850
|
||||
msgid "Failed Updates"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:851
|
||||
msgid ""
|
||||
"This does not include updates prior to 1139, which did not return a status."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:852
|
||||
msgid "Mark success (if update was manually applied)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:853
|
||||
msgid "Attempt to execute this update step automatically"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:885
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\tthe administrator of %2$s has set up an account for you."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:888
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\tSite Location:\t%1$s\n"
|
||||
"\t\t\tLogin Name:\t\t%2$s\n"
|
||||
"\t\t\tPassword:\t\t%3$s\n"
|
||||
"\n"
|
||||
"\t\t\tYou may change your password from your account \"Settings\" page after "
|
||||
"logging\n"
|
||||
"\t\t\tin.\n"
|
||||
"\n"
|
||||
"\t\t\tPlease take a few moments to review the other account settings on that "
|
||||
"page.\n"
|
||||
"\n"
|
||||
"\t\t\tYou may also wish to add some basic information to your default "
|
||||
"profile\n"
|
||||
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
|
||||
"\n"
|
||||
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
|
||||
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
|
||||
"and\n"
|
||||
"\t\t\tperhaps what country you live in; if you do not wish to be more "
|
||||
"specific\n"
|
||||
"\t\t\tthan that.\n"
|
||||
"\n"
|
||||
"\t\t\tWe fully respect your right to privacy, and none of these items are "
|
||||
"necessary.\n"
|
||||
"\t\t\tIf you are new and do not know anybody here, they may help\n"
|
||||
"\t\t\tyou to make some new and interesting friends.\n"
|
||||
"\n"
|
||||
"\t\t\tThank you and welcome to %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:920 include/user.php:421
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:932
|
||||
#, php-format
|
||||
msgid "%s user blocked/unblocked"
|
||||
msgid_plural "%s users blocked/unblocked"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/admin.php:939
|
||||
#, php-format
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/admin.php:978
|
||||
#, php-format
|
||||
msgid "User '%s' deleted"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:986
|
||||
#, php-format
|
||||
msgid "User '%s' unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:986
|
||||
#, php-format
|
||||
msgid "User '%s' blocked"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1079
|
||||
msgid "Add User"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1080
|
||||
msgid "select all"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1081
|
||||
msgid "User registrations waiting for confirm"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1082
|
||||
msgid "User waiting for permanent deletion"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1083
|
||||
msgid "Request date"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109
|
||||
#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111
|
||||
#: include/contact_selectors.php:79 include/contact_selectors.php:86
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1084
|
||||
msgid "No registrations."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1086
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622
|
||||
#: mod/contacts.php:798
|
||||
msgid "Block"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622
|
||||
#: mod/contacts.php:798
|
||||
msgid "Unblock"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1090
|
||||
msgid "Site admin"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1091
|
||||
msgid "Account expired"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1094
|
||||
msgid "New User"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1095 mod/admin.php:1096
|
||||
msgid "Register date"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1095 mod/admin.php:1096
|
||||
msgid "Last login"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1095 mod/admin.php:1096
|
||||
msgid "Last item"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1095
|
||||
msgid "Deleted since"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1096 mod/settings.php:41
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1098
|
||||
msgid ""
|
||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1099
|
||||
msgid ""
|
||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1109
|
||||
msgid "Name of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1110
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1110
|
||||
msgid "Nickname of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1111
|
||||
msgid "Email address of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1144
|
||||
#, php-format
|
||||
msgid "Plugin %s disabled."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1148
|
||||
#, php-format
|
||||
msgid "Plugin %s enabled."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1158 mod/admin.php:1381
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1160 mod/admin.php:1383
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1183 mod/admin.php:1411
|
||||
msgid "Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22
|
||||
#: mod/settings.php:99 view/theme/diabook/theme.php:544
|
||||
#: view/theme/diabook/theme.php:648 include/nav.php:181
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1191 mod/admin.php:1421
|
||||
msgid "Author: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1192 mod/admin.php:1422
|
||||
msgid "Maintainer: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1341
|
||||
msgid "No themes found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1403
|
||||
msgid "Screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1449
|
||||
msgid "[Experimental]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1450
|
||||
msgid "[Unsupported]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1477
|
||||
msgid "Log settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1533
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1539
|
||||
msgid "Enable Debugging"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1540
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1540
|
||||
msgid ""
|
||||
"Must be writable by web server. Relative to your Friendica top-level "
|
||||
"directory."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1541
|
||||
msgid "Log level"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1590 mod/contacts.php:619
|
||||
msgid "Update now"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1591 include/acl_selectors.php:347
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1597
|
||||
msgid "FTP Host"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1598
|
||||
msgid "FTP Path"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1599
|
||||
msgid "FTP User"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1600
|
||||
msgid "FTP Password"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:9 include/nav.php:173
|
||||
msgid "New Message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:64 mod/wallmessage.php:56
|
||||
msgid "No recipient selected."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:68
|
||||
msgid "Unable to locate contact information."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:71 mod/wallmessage.php:62
|
||||
msgid "Message could not be sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:74 mod/wallmessage.php:65
|
||||
msgid "Message collection failure."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:77 mod/wallmessage.php:68
|
||||
msgid "Message sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:183 include/nav.php:170
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:208
|
||||
msgid "Do you really want to delete this message?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:228
|
||||
msgid "Message deleted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:259
|
||||
msgid "Conversation removed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:284 mod/message.php:292 mod/message.php:467
|
||||
#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135
|
||||
#: include/conversation.php:1001 include/conversation.php:1019
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:320 mod/wallmessage.php:142
|
||||
msgid "Send Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144
|
||||
msgid "To:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145
|
||||
msgid "Subject:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151
|
||||
#: mod/invite.php:134
|
||||
msgid "Your message:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110
|
||||
#: mod/wallmessage.php:154 include/conversation.php:1056
|
||||
msgid "Upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114
|
||||
#: mod/wallmessage.php:155 include/conversation.php:1060
|
||||
msgid "Insert web link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:372
|
||||
msgid "No messages."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:379
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:382
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:385
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:406 mod/message.php:547
|
||||
msgid "Delete conversation"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:409
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:412
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/message.php:451
|
||||
msgid "Message not available."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:521
|
||||
msgid "Delete message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:549
|
||||
msgid ""
|
||||
"No secure communications available. You <strong>may</strong> be able to "
|
||||
"respond from the sender's profile page."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:553
|
||||
msgid "Send Reply"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:17 mod/editpost.php:27
|
||||
msgid "Item not found"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:40
|
||||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:111 include/conversation.php:1057
|
||||
msgid "upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:112 include/conversation.php:1058
|
||||
msgid "Attach file"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:113 include/conversation.php:1059
|
||||
msgid "attach file"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:115 include/conversation.php:1061
|
||||
msgid "web link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:116 include/conversation.php:1062
|
||||
msgid "Insert video link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:117 include/conversation.php:1063
|
||||
msgid "video link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:118 include/conversation.php:1064
|
||||
msgid "Insert audio link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:119 include/conversation.php:1065
|
||||
msgid "audio link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:120 include/conversation.php:1066
|
||||
msgid "Set your location"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:121 include/conversation.php:1067
|
||||
msgid "set location"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:122 include/conversation.php:1068
|
||||
msgid "Clear browser location"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:123 include/conversation.php:1069
|
||||
msgid "clear location"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:125 include/conversation.php:1075
|
||||
msgid "Permission settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:133 include/acl_selectors.php:343
|
||||
msgid "CC: email addresses"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:134 include/conversation.php:1084
|
||||
msgid "Public post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:137 include/conversation.php:1071
|
||||
msgid "Set title"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:139 include/conversation.php:1073
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:140 include/acl_selectors.php:344
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133
|
||||
#: mod/profiles.php:179 mod/profiles.php:627
|
||||
msgid "Profile not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:121
|
||||
msgid ""
|
||||
"This may occasionally happen if contact was requested by both persons and it "
|
||||
"has already been approved."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:240
|
||||
msgid "Response from remote site was not understood."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
|
||||
msgid "Unexpected response from remote site: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:263
|
||||
msgid "Confirmation completed successfully."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286
|
||||
msgid "Remote site reported: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:277
|
||||
msgid "Temporary failure. Please wait and try again."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:284
|
||||
msgid "Introduction failed or was revoked."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:430
|
||||
msgid "Unable to set contact photo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:487 include/diaspora.php:633
|
||||
#: include/conversation.php:172
|
||||
#, php-format
|
||||
msgid "%1$s is now friends with %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:572
|
||||
#, php-format
|
||||
msgid "No user record found for '%s' "
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:582
|
||||
msgid "Our site encryption key is apparently messed up."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:593
|
||||
msgid "Empty site URL was provided or URL could not be decrypted by us."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:614
|
||||
msgid "Contact record was not found for you on our site."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:628
|
||||
#, php-format
|
||||
msgid "Site public key not available in contact record for URL %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:648
|
||||
msgid ""
|
||||
"The ID provided by your system is a duplicate on our system. It should work "
|
||||
"if you try again."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:659
|
||||
msgid "Unable to set your contact credentials on our system."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:726
|
||||
msgid "Unable to update your contact profile details on our system"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:798
|
||||
#, php-format
|
||||
msgid "%1$s has joined %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:71 mod/events.php:73
|
||||
msgid "Event can not end before it has started."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:80 mod/events.php:82
|
||||
msgid "Event title and start time are required."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:317
|
||||
msgid "l, F j"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:339
|
||||
msgid "Edit event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:361 include/text.php:1716 include/text.php:1723
|
||||
msgid "link to source"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:396 view/theme/diabook/theme.php:127
|
||||
#: include/identity.php:668 include/nav.php:80
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:397
|
||||
msgid "Create New Event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:398
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:399 mod/install.php:209
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:491
|
||||
msgid "Event details"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:492
|
||||
msgid "Starting date and Title are required."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:493
|
||||
msgid "Event Starts:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:493 mod/events.php:505
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:495
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:497
|
||||
msgid "Event Finishes:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:499
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:501
|
||||
msgid "Description:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:505
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:507
|
||||
msgid "Share this event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126
|
||||
#: include/identity.php:649 include/nav.php:78
|
||||
msgid "Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fbrowser.php:122
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: mod/home.php:35
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lockview.php:31 mod/lockview.php:39
|
||||
msgid "Remote privacy information not available."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lockview.php:48
|
||||
msgid "Visible to:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:42 mod/wallmessage.php:112
|
||||
#, php-format
|
||||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:59
|
||||
msgid "Unable to check your home location."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:86 mod/wallmessage.php:95
|
||||
msgid "No recipient."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:143
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
msgstr ""
|
||||
|
||||
#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838
|
||||
#: mod/viewcontacts.php:64
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/nogroup.php:41 mod/contacts.php:839
|
||||
msgid "Edit contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/nogroup.php:59
|
||||
msgid "Contacts who are not members of a group"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:59
|
||||
msgid "This is Friendica, version"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:60
|
||||
msgid "running at web location"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:62
|
||||
msgid ""
|
||||
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
|
||||
"more about the Friendica project."
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:64
|
||||
msgid "Bug reports and issues: please visit"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:64
|
||||
msgid "the bugtracker at github"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:65
|
||||
msgid ""
|
||||
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
|
||||
"dot com"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:79
|
||||
msgid "Installed plugins/addons/apps:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:92
|
||||
msgid "No installed plugins/addons/apps"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:46 mod/removeme.php:49
|
||||
msgid "Remove My Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:47
|
||||
msgid ""
|
||||
"This will completely remove your account. Once this has been done it is not "
|
||||
"recoverable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:48
|
||||
msgid "Please enter your password for verification:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76
|
||||
#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16
|
||||
#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692
|
||||
msgid "Invalid request."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153
|
||||
msgid "Unable to process image."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220
|
||||
#: mod/item.php:486 include/message.php:145 include/Photo.php:951
|
||||
#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995
|
||||
msgid "Wall Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301
|
||||
msgid "Image upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:76 mod/api.php:102
|
||||
msgid "Authorize application connection"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:77
|
||||
msgid "Return to your app and insert this Securty Code:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:89
|
||||
msgid "Please login to continue."
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:104
|
||||
msgid ""
|
||||
"Do you want to authorize this application to access your posts and contacts, "
|
||||
"and/or create new posts for you?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/tagger.php:95 include/conversation.php:265
|
||||
#, php-format
|
||||
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086
|
||||
#: mod/photos.php:1207 mod/photos.php:1230 mod/photos.php:1779
|
||||
#: mod/photos.php:1791 view/theme/diabook/theme.php:499
|
||||
msgid "Contact Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:84 include/identity.php:652
|
||||
msgid "Photo Albums"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:85 mod/photos.php:1836
|
||||
msgid "Recent Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838
|
||||
msgid "Upload New Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:102 mod/settings.php:34
|
||||
msgid "everybody"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:166
|
||||
msgid "Contact information unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207
|
||||
#: mod/photos.php:1230 mod/profile_photo.php:74 mod/profile_photo.php:81
|
||||
#: mod/profile_photo.php:88 mod/profile_photo.php:204
|
||||
#: mod/profile_photo.php:296 mod/profile_photo.php:305
|
||||
#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350
|
||||
#: include/user.php:357
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:187
|
||||
msgid "Album not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224
|
||||
msgid "Delete Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:220
|
||||
msgid "Do you really want to delete this photo album and all its photos?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534
|
||||
msgid "Delete Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:309
|
||||
msgid "Do you really want to delete this photo?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:684
|
||||
#, php-format
|
||||
msgid "%1$s was tagged in %2$s by %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:684
|
||||
msgid "a photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:797
|
||||
msgid "Image file is empty."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:952
|
||||
msgid "No photos selected"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1053 mod/videos.php:298
|
||||
msgid "Access to this item is restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1114
|
||||
#, php-format
|
||||
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1149
|
||||
msgid "Upload Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1153 mod/photos.php:1219
|
||||
msgid "New album name: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1154
|
||||
msgid "or existing album name: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1155
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346
|
||||
msgid "Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202
|
||||
msgid "Show to Groups"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203
|
||||
msgid "Show to Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1168
|
||||
msgid "Private Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1169
|
||||
msgid "Public Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1232
|
||||
msgid "Edit Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1238
|
||||
msgid "Show Newest First"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1240
|
||||
msgid "Show Oldest First"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1268 mod/photos.php:1821
|
||||
msgid "View Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1314
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1316
|
||||
msgid "Photo not available"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1372
|
||||
msgid "View photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1372
|
||||
msgid "Edit photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1373
|
||||
msgid "Use as profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1398
|
||||
msgid "View Full Size"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1477
|
||||
msgid "Tags: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1480
|
||||
msgid "[Remove any tag]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1520
|
||||
msgid "New album name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1521
|
||||
msgid "Caption"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1522
|
||||
msgid "Add a Tag"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1522
|
||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1523
|
||||
msgid "Do not rotate"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1524
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1525
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1540
|
||||
msgid "Private photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1541
|
||||
msgid "Public photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1563 include/conversation.php:1055
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1827 mod/videos.php:380
|
||||
msgid "View Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/hcard.php:10
|
||||
msgid "No profile"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:92
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:97
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Failed to send email message. Here your accout details:<br> login: %s<br> "
|
||||
"password: %s<br><br>You can change your password after login."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:107
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:150
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:188 mod/uimport.php:50
|
||||
msgid ""
|
||||
"This site has exceeded the number of allowed daily account registrations. "
|
||||
"Please try again tomorrow."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:216
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking 'Register'."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:217
|
||||
msgid ""
|
||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||
"in the rest of the items."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:218
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:232
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:256
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:257
|
||||
msgid "Your invitation ID: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:268
|
||||
msgid "Your Full Name (e.g. Joe Smith): "
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:269
|
||||
msgid "Your Email Address: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:271 mod/settings.php:1174
|
||||
msgid "New Password:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:271
|
||||
msgid "Leave empty for an auto generated password."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:272 mod/settings.php:1175
|
||||
msgid "Confirm:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:273
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be '<strong>nickname@$sitename</"
|
||||
"strong>'."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:274
|
||||
msgid "Choose a nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:277 boot.php:1248 include/nav.php:109
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:283 mod/uimport.php:64
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:284
|
||||
msgid "Import your profile to this friendica instance"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:19
|
||||
msgid "No valid account found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:35
|
||||
msgid "Password reset request issued. Check your email."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:42
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
|
||||
"\t\tpassword. In order to confirm this request, please select the "
|
||||
"verification link\n"
|
||||
"\t\tbelow or paste it into your web browser address bar.\n"
|
||||
"\n"
|
||||
"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
|
||||
"\t\tprovided and ignore and/or delete this email.\n"
|
||||
"\n"
|
||||
"\t\tYour password will not be changed unless we can verify that you\n"
|
||||
"\t\tissued this request."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:53
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tFollow this link to verify your identity:\n"
|
||||
"\n"
|
||||
"\t\t%1$s\n"
|
||||
"\n"
|
||||
"\t\tYou will then receive a follow-up message containing the new password.\n"
|
||||
"\t\tYou may change that password from your account settings page after "
|
||||
"logging in.\n"
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\tSite Location:\t%2$s\n"
|
||||
"\t\tLogin Name:\t%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:72
|
||||
#, php-format
|
||||
msgid "Password reset requested at %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:92
|
||||
msgid ""
|
||||
"Request could not be verified. (You may have previously submitted it.) "
|
||||
"Password reset failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:109 boot.php:1287
|
||||
msgid "Password Reset"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:110
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:111
|
||||
msgid "Your new password is"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:112
|
||||
msgid "Save or copy your new password - and then"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:113
|
||||
msgid "click here to login"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:114
|
||||
msgid ""
|
||||
"Your password may be changed from the <em>Settings</em> page after "
|
||||
"successful login."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
|
||||
"\t\t\t\tinformation for your records (or change your password immediately "
|
||||
"to\n"
|
||||
"\t\t\t\tsomething that you will remember).\n"
|
||||
"\t\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:131
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tYour login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\t\tSite Location:\t%1$s\n"
|
||||
"\t\t\t\tLogin Name:\t%2$s\n"
|
||||
"\t\t\t\tPassword:\t%3$s\n"
|
||||
"\n"
|
||||
"\t\t\t\tYou may change that password from your account settings page after "
|
||||
"logging in.\n"
|
||||
"\t\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:147
|
||||
#, php-format
|
||||
msgid "Your password has been changed at %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:159
|
||||
msgid "Forgot your Password?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:160
|
||||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:161
|
||||
msgid "Nickname or Email: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:162
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: mod/maintenance.php:5
|
||||
msgid "System down for maintenance"
|
||||
msgstr ""
|
||||
|
||||
#: mod/attach.php:8
|
||||
msgid "Item not available."
|
||||
msgstr ""
|
||||
|
||||
#: mod/attach.php:20
|
||||
msgid "Item was not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/apps.php:11
|
||||
msgid "Applications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/apps.php:14
|
||||
msgid "No installed applications."
|
||||
msgstr ""
|
||||
|
||||
#: mod/help.php:31
|
||||
msgid "Help:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/help.php:36 include/nav.php:114
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:114
|
||||
#, php-format
|
||||
msgid "%d contact edited."
|
||||
|
|
@ -25,7 +3109,7 @@ msgid_plural "%d contacts edited"
|
|||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/contacts.php:145 mod/contacts.php:340
|
||||
#: mod/contacts.php:145 mod/contacts.php:368
|
||||
msgid "Could not access contact record."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -37,486 +3121,415 @@ msgstr ""
|
|||
msgid "Contact updated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:194 mod/dfrn_request.php:576
|
||||
msgid "Failed to update contact record."
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:322 mod/manage.php:96 mod/display.php:508
|
||||
#: mod/profile_photo.php:19 mod/profile_photo.php:169 mod/profile_photo.php:180
|
||||
#: mod/profile_photo.php:193 mod/follow.php:9 mod/follow.php:44
|
||||
#: mod/follow.php:83 mod/item.php:170 mod/item.php:186 mod/group.php:19
|
||||
#: mod/dfrn_confirm.php:55 mod/fsuggest.php:78 mod/wall_upload.php:70
|
||||
#: mod/wall_upload.php:71 mod/viewcontacts.php:24 mod/notifications.php:66
|
||||
#: mod/message.php:39 mod/message.php:175 mod/crepair.php:120
|
||||
#: mod/nogroup.php:25 mod/network.php:4 mod/allfriends.php:9 mod/events.php:164
|
||||
#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79
|
||||
#: mod/wallmessage.php:103 mod/wall_attach.php:60 mod/wall_attach.php:61
|
||||
#: mod/settings.php:20 mod/settings.php:116 mod/settings.php:619
|
||||
#: mod/register.php:42 mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58
|
||||
#: mod/profiles.php:165 mod/profiles.php:615 mod/editpost.php:10 mod/api.php:26
|
||||
#: mod/api.php:31 mod/notes.php:20 mod/poke.php:135 mod/invite.php:15
|
||||
#: mod/invite.php:101 mod/photos.php:156 mod/photos.php:1072 mod/regmod.php:110
|
||||
#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5023 index.php:382
|
||||
msgid "Permission denied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:361
|
||||
#: mod/contacts.php:389
|
||||
msgid "Contact has been blocked"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:361
|
||||
#: mod/contacts.php:389
|
||||
msgid "Contact has been unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:372
|
||||
#: mod/contacts.php:400
|
||||
msgid "Contact has been ignored"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:372
|
||||
#: mod/contacts.php:400
|
||||
msgid "Contact has been unignored"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:384
|
||||
#: mod/contacts.php:412
|
||||
msgid "Contact has been archived"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:384
|
||||
#: mod/contacts.php:412
|
||||
msgid "Contact has been unarchived"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:411 mod/contacts.php:767
|
||||
#: mod/contacts.php:439 mod/contacts.php:795
|
||||
msgid "Do you really want to delete this contact?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:413 mod/follow.php:59 mod/message.php:210
|
||||
#: mod/settings.php:1066 mod/settings.php:1072 mod/settings.php:1080
|
||||
#: mod/settings.php:1084 mod/settings.php:1089 mod/settings.php:1095
|
||||
#: mod/settings.php:1101 mod/settings.php:1107 mod/settings.php:1133
|
||||
#: mod/settings.php:1134 mod/settings.php:1135 mod/settings.php:1136
|
||||
#: mod/settings.php:1137 mod/dfrn_request.php:848 mod/register.php:235
|
||||
#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 mod/api.php:105
|
||||
#: include/items.php:4855
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:70
|
||||
#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89
|
||||
#: mod/fbrowser.php:125 mod/settings.php:633 mod/settings.php:659
|
||||
#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148
|
||||
#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093
|
||||
#: include/items.php:4858
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:428
|
||||
#: mod/contacts.php:456
|
||||
msgid "Contact has been removed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:466
|
||||
#: mod/contacts.php:494
|
||||
#, php-format
|
||||
msgid "You are mutual friends with %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:470
|
||||
#: mod/contacts.php:498
|
||||
#, php-format
|
||||
msgid "You are sharing with %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:475
|
||||
#: mod/contacts.php:503
|
||||
#, php-format
|
||||
msgid "%s is sharing with you"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:495
|
||||
#: mod/contacts.php:523
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:498 mod/admin.php:618
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:502
|
||||
#: mod/contacts.php:530
|
||||
msgid "(Update was successful)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:502
|
||||
#: mod/contacts.php:530
|
||||
msgid "(Update was not successful)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:504
|
||||
#: mod/contacts.php:532
|
||||
msgid "Suggest friends"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:508
|
||||
#: mod/contacts.php:536
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:511 include/contact_widgets.php:200
|
||||
#: mod/contacts.php:539 include/contact_widgets.php:200
|
||||
#, php-format
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/contacts.php:516
|
||||
#: mod/contacts.php:544
|
||||
msgid "View all contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770
|
||||
#: mod/admin.php:1083
|
||||
msgid "Unblock"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770
|
||||
#: mod/admin.php:1082
|
||||
msgid "Block"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:524
|
||||
#: mod/contacts.php:552
|
||||
msgid "Toggle Blocked status"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771
|
||||
#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799
|
||||
msgid "Unignore"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771
|
||||
#: mod/notifications.php:51 mod/notifications.php:174 mod/notifications.php:233
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:531
|
||||
#: mod/contacts.php:559
|
||||
msgid "Toggle Ignored status"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:536 mod/contacts.php:772
|
||||
#: mod/contacts.php:564 mod/contacts.php:800
|
||||
msgid "Unarchive"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:536 mod/contacts.php:772
|
||||
#: mod/contacts.php:564 mod/contacts.php:800
|
||||
msgid "Archive"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:539
|
||||
#: mod/contacts.php:567
|
||||
msgid "Toggle Archive status"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:543
|
||||
#: mod/contacts.php:571
|
||||
msgid "Repair"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:546
|
||||
#: mod/contacts.php:574
|
||||
msgid "Advanced Contact Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:553
|
||||
#: mod/contacts.php:581
|
||||
msgid "Communications lost with this contact!"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:556
|
||||
#: mod/contacts.php:584
|
||||
msgid "Fetch further information for feeds"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:557 mod/admin.php:627
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:557
|
||||
#: mod/contacts.php:585
|
||||
msgid "Fetch information"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:557
|
||||
#: mod/contacts.php:585
|
||||
msgid "Fetch information and keywords"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:566
|
||||
#: mod/contacts.php:594
|
||||
msgid "Contact Editor"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107
|
||||
#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191
|
||||
#: mod/events.php:511 mod/content.php:712 mod/install.php:250
|
||||
#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683
|
||||
#: mod/localtime.php:45 mod/poke.php:199 mod/invite.php:140 mod/photos.php:1104
|
||||
#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584
|
||||
#: mod/photos.php:1628 mod/photos.php:1716 object/Item.php:680
|
||||
#: view/theme/cleanzero/config.php:80 view/theme/dispy/config.php:70
|
||||
#: view/theme/quattro/config.php:64 view/theme/diabook/config.php:148
|
||||
#: view/theme/diabook/theme.php:633 view/theme/vier/config.php:56
|
||||
#: view/theme/duepuntozero/config.php:59
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:569
|
||||
#: mod/contacts.php:597
|
||||
msgid "Profile Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:570
|
||||
#: mod/contacts.php:598
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please choose the profile you would like to display to %s when viewing your "
|
||||
"profile securely."
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:571
|
||||
#: mod/contacts.php:599
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:572
|
||||
#: mod/contacts.php:600
|
||||
msgid "Edit contact notes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64
|
||||
#: mod/nogroup.php:40
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:578
|
||||
#: mod/contacts.php:606
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:579
|
||||
#: mod/contacts.php:607
|
||||
msgid "Ignore contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:580
|
||||
#: mod/contacts.php:608
|
||||
msgid "Repair URL settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:581
|
||||
#: mod/contacts.php:609
|
||||
msgid "View conversations"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:583
|
||||
#: mod/contacts.php:611
|
||||
msgid "Delete contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:587
|
||||
#: mod/contacts.php:615
|
||||
msgid "Last update:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:589
|
||||
#: mod/contacts.php:617
|
||||
msgid "Update public posts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:591 mod/admin.php:1584
|
||||
msgid "Update now"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:598
|
||||
#: mod/contacts.php:626
|
||||
msgid "Currently blocked"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:599
|
||||
#: mod/contacts.php:627
|
||||
msgid "Currently ignored"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:600
|
||||
#: mod/contacts.php:628
|
||||
msgid "Currently archived"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227
|
||||
msgid "Hide this contact from others"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:601
|
||||
#: mod/contacts.php:629
|
||||
msgid ""
|
||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:602
|
||||
#: mod/contacts.php:630
|
||||
msgid "Notification for new posts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:602
|
||||
#: mod/contacts.php:630
|
||||
msgid "Send a notification of every new post of this contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:605
|
||||
#: mod/contacts.php:633
|
||||
msgid "Blacklisted keywords"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:605
|
||||
#: mod/contacts.php:633
|
||||
msgid ""
|
||||
"Comma separated list of keywords that should not be converted to hashtags, "
|
||||
"when \"Fetch information and keywords\" is selected"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:612
|
||||
#: mod/contacts.php:640
|
||||
msgid "Profile URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:658
|
||||
#: mod/contacts.php:686
|
||||
msgid "Suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:661
|
||||
#: mod/contacts.php:689
|
||||
msgid "Suggest potential friends"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:665 mod/group.php:192
|
||||
#: mod/contacts.php:693 mod/group.php:192
|
||||
msgid "All Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:668
|
||||
#: mod/contacts.php:696
|
||||
msgid "Show all contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:672
|
||||
#: mod/contacts.php:700
|
||||
msgid "Unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:675
|
||||
#: mod/contacts.php:703
|
||||
msgid "Only show unblocked contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:680
|
||||
#: mod/contacts.php:708
|
||||
msgid "Blocked"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:683
|
||||
#: mod/contacts.php:711
|
||||
msgid "Only show blocked contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:688
|
||||
#: mod/contacts.php:716
|
||||
msgid "Ignored"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:691
|
||||
#: mod/contacts.php:719
|
||||
msgid "Only show ignored contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:696
|
||||
#: mod/contacts.php:724
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:699
|
||||
#: mod/contacts.php:727
|
||||
msgid "Only show archived contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:704
|
||||
#: mod/contacts.php:732
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:707
|
||||
#: mod/contacts.php:735
|
||||
msgid "Only show hidden contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124
|
||||
#: include/nav.php:186 view/theme/diabook/theme.php:125
|
||||
#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005
|
||||
#: include/nav.php:124 include/nav.php:186
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:762
|
||||
#: mod/contacts.php:790
|
||||
msgid "Search your contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:763 mod/directory.php:63
|
||||
#: mod/contacts.php:791 mod/directory.php:63
|
||||
msgid "Finding: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34
|
||||
#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658
|
||||
#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1081
|
||||
#: mod/content.php:440 mod/content.php:743 mod/settings.php:695
|
||||
#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:786
|
||||
#: mod/contacts.php:814
|
||||
msgid "Mutual Friendship"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:790
|
||||
#: mod/contacts.php:818
|
||||
msgid "is a fan of yours"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:794
|
||||
#: mod/contacts.php:822
|
||||
msgid "you are a fan of"
|
||||
msgstr ""
|
||||
|
||||
#: mod/contacts.php:811 mod/nogroup.php:41
|
||||
msgid "Edit contact"
|
||||
#: mod/videos.php:113
|
||||
msgid "Do you really want to delete this video?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/hcard.php:10
|
||||
msgid "No profile"
|
||||
#: mod/videos.php:118
|
||||
msgid "Delete Video"
|
||||
msgstr ""
|
||||
|
||||
#: mod/manage.php:106
|
||||
msgid "Manage Identities and/or Pages"
|
||||
#: mod/videos.php:197
|
||||
msgid "No videos selected"
|
||||
msgstr ""
|
||||
|
||||
#: mod/manage.php:107
|
||||
#: mod/videos.php:389
|
||||
msgid "Recent Videos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:391
|
||||
msgid "Upload New Videos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/common.php:45
|
||||
msgid "Common Friends"
|
||||
msgstr ""
|
||||
|
||||
#: mod/common.php:82
|
||||
msgid "No contacts in common."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:26
|
||||
msgid "You already added this contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:108
|
||||
msgid "Contact added"
|
||||
msgstr ""
|
||||
|
||||
#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: mod/bookmarklet.php:41
|
||||
msgid "The post was created"
|
||||
msgstr ""
|
||||
|
||||
#: mod/uimport.php:66
|
||||
msgid "Move account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/uimport.php:67
|
||||
msgid "You can import an account from another Friendica server."
|
||||
msgstr ""
|
||||
|
||||
#: mod/uimport.php:68
|
||||
msgid ""
|
||||
"Toggle between different identities or community/group pages which share "
|
||||
"your account details or which you have been granted \"manage\" permissions"
|
||||
"You need to export your account from the old server and upload it here. We "
|
||||
"will recreate your old account here with all your contacts. We will try also "
|
||||
"to inform your friends that you moved here."
|
||||
msgstr ""
|
||||
|
||||
#: mod/manage.php:108
|
||||
msgid "Select an identity to manage: "
|
||||
#: mod/uimport.php:69
|
||||
msgid ""
|
||||
"This feature is experimental. We can't import contacts from the OStatus "
|
||||
"network (statusnet/identi.ca) or from Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: mod/oexchange.php:25
|
||||
msgid "Post successful."
|
||||
#: mod/uimport.php:70
|
||||
msgid "Account file"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:19 mod/group.php:72 index.php:381
|
||||
msgid "Permission denied"
|
||||
#: mod/uimport.php:70
|
||||
msgid ""
|
||||
"To export your account, go to \"Settings->Export your personal data\" and "
|
||||
"select \"Export account\""
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:25 mod/profperm.php:56
|
||||
msgid "Invalid profile identifier."
|
||||
#: mod/subthread.php:103
|
||||
#, php-format
|
||||
msgid "%1$s is following %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:102
|
||||
msgid "Profile Visibility Editor"
|
||||
#: mod/allfriends.php:37
|
||||
#, php-format
|
||||
msgid "Friends of %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529
|
||||
#: include/identity.php:610 include/identity.php:640 include/nav.php:77
|
||||
#: view/theme/diabook/theme.php:124
|
||||
msgid "Profile"
|
||||
#: mod/allfriends.php:44
|
||||
msgid "No friends to display."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:106 mod/group.php:222
|
||||
msgid "Click on a contact to add or remove."
|
||||
#: mod/tagrm.php:41
|
||||
msgid "Tag removed"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:115
|
||||
msgid "Visible To"
|
||||
#: mod/tagrm.php:79
|
||||
msgid "Remove Item Tag"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:131
|
||||
msgid "All Contacts (with secure profile access)"
|
||||
#: mod/tagrm.php:81
|
||||
msgid "Select a tag to remove: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/display.php:82 mod/display.php:295 mod/display.php:512
|
||||
#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1126 mod/admin.php:1346
|
||||
#: mod/notice.php:15 include/items.php:4814
|
||||
msgid "Item not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/display.php:223 mod/videos.php:187 mod/viewcontacts.php:19
|
||||
#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93
|
||||
#: mod/directory.php:35 mod/photos.php:942
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/display.php:343 mod/profile.php:155
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/display.php:505
|
||||
msgid "Item has been removed."
|
||||
#: mod/tagrm.php:93 mod/delegate.php:139
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: mod/newmember.php:6
|
||||
|
|
@ -550,12 +3563,6 @@ msgid ""
|
|||
"join."
|
||||
msgstr ""
|
||||
|
||||
#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406
|
||||
#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544
|
||||
#: view/theme/diabook/theme.php:648
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/newmember.php:26
|
||||
msgid "Go to Your Settings"
|
||||
msgstr ""
|
||||
|
|
@ -575,7 +3582,13 @@ msgid ""
|
|||
"potential friends know exactly how to find you."
|
||||
msgstr ""
|
||||
|
||||
#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696
|
||||
#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124
|
||||
#: include/identity.php:530 include/identity.php:611 include/identity.php:641
|
||||
#: include/nav.php:77
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -714,3099 +3727,122 @@ msgid ""
|
|||
"features and resources."
|
||||
msgstr ""
|
||||
|
||||
#: mod/openid.php:24
|
||||
msgid "OpenID protocol error. No ID returned."
|
||||
msgstr ""
|
||||
|
||||
#: mod/openid.php:53
|
||||
msgid ""
|
||||
"Account not found and OpenID registration is not permitted on this site."
|
||||
msgstr ""
|
||||
|
||||
#: mod/openid.php:93 include/auth.php:112 include/auth.php:175
|
||||
msgid "Login failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:44
|
||||
msgid "Image uploaded but image cropping failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
|
||||
#: mod/profile_photo.php:204 mod/profile_photo.php:296
|
||||
#: mod/profile_photo.php:305 mod/photos.php:177 mod/photos.php:753
|
||||
#: mod/photos.php:1207 mod/photos.php:1230 include/user.php:343
|
||||
#: include/user.php:350 include/user.php:357 view/theme/diabook/theme.php:500
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
|
||||
#: mod/profile_photo.php:308
|
||||
#, php-format
|
||||
msgid "Image size reduction [%s] failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:118
|
||||
msgid ""
|
||||
"Shift-reload the page or clear browser cache if the new photo does not "
|
||||
"display immediately."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:128
|
||||
msgid "Unable to process image"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829
|
||||
msgid "Unable to process image."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:242
|
||||
msgid "Upload File:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:243
|
||||
msgid "Select a profile:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:245
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:248
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:248
|
||||
msgid "skip this step"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:248
|
||||
msgid "select a photo from your photo albums"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:262
|
||||
msgid "Crop Image"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:263
|
||||
msgid "Please adjust the image cropping for optimum viewing."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:265
|
||||
msgid "Done Editing"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:299
|
||||
msgid "Image uploaded successfully."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856
|
||||
msgid "Image upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149
|
||||
#: include/conversation.php:126 include/conversation.php:253
|
||||
#: include/text.php:2034 include/diaspora.php:2127
|
||||
#: view/theme/diabook/theme.php:471
|
||||
msgid "photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319
|
||||
#: include/conversation.php:121 include/conversation.php:130
|
||||
#: include/conversation.php:248 include/conversation.php:257
|
||||
#: include/diaspora.php:2127 view/theme/diabook/theme.php:466
|
||||
#: view/theme/diabook/theme.php:475
|
||||
msgid "status"
|
||||
msgstr ""
|
||||
|
||||
#: mod/subthread.php:103
|
||||
#, php-format
|
||||
msgid "%1$s is following %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/tagrm.php:41
|
||||
msgid "Tag removed"
|
||||
msgstr ""
|
||||
|
||||
#: mod/tagrm.php:79
|
||||
msgid "Remove Item Tag"
|
||||
msgstr ""
|
||||
|
||||
#: mod/tagrm.php:81
|
||||
msgid "Select a tag to remove: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/tagrm.php:93 mod/delegate.php:139
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: mod/filer.php:30 include/conversation.php:1005 include/conversation.php:1023
|
||||
msgid "Save to Folder:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/filer.php:30
|
||||
msgid "- select -"
|
||||
msgstr ""
|
||||
|
||||
#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:26
|
||||
msgid "You already added this contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:58 mod/dfrn_request.php:847
|
||||
msgid "Please answer the following:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:59 mod/dfrn_request.php:848
|
||||
#, php-format
|
||||
msgid "Does %s know you?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:59 mod/settings.php:1066 mod/settings.php:1072
|
||||
#: mod/settings.php:1080 mod/settings.php:1084 mod/settings.php:1089
|
||||
#: mod/settings.php:1095 mod/settings.php:1101 mod/settings.php:1107
|
||||
#: mod/settings.php:1133 mod/settings.php:1134 mod/settings.php:1135
|
||||
#: mod/settings.php:1136 mod/settings.php:1137 mod/dfrn_request.php:848
|
||||
#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662
|
||||
#: mod/api.php:106
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:60 mod/dfrn_request.php:852
|
||||
msgid "Add a personal note:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:66 mod/dfrn_request.php:858
|
||||
msgid "Your Identity Address:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:69 mod/dfrn_request.php:861
|
||||
msgid "Submit Request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/follow.php:108
|
||||
msgid "Contact added"
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:115
|
||||
msgid "Unable to locate original post."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:347
|
||||
msgid "Empty post discarded."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:486 mod/wall_upload.php:199 mod/wall_upload.php:213
|
||||
#: mod/wall_upload.php:220 include/Photo.php:951 include/Photo.php:966
|
||||
#: include/Photo.php:973 include/Photo.php:995 include/message.php:145
|
||||
msgid "Wall Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:860
|
||||
msgid "System error. Post not saved."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This message was sent to you by %s, a member of the Friendica social network."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:991
|
||||
#, php-format
|
||||
msgid "You may visit them online at %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:992
|
||||
msgid ""
|
||||
"Please contact the sender by replying to this post if you do not wish to "
|
||||
"receive these messages."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:996
|
||||
#, php-format
|
||||
msgid "%s posted an update."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:29
|
||||
msgid "Group created."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:35
|
||||
msgid "Could not create group."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:47 mod/group.php:140
|
||||
msgid "Group not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:60
|
||||
msgid "Group name changed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:87
|
||||
msgid "Save Group"
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:93
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:94 mod/group.php:178 include/group.php:273
|
||||
msgid "Group Name: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:113
|
||||
msgid "Group removed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:115
|
||||
msgid "Unable to remove group."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:177
|
||||
msgid "Group Editor"
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:190
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: mod/apps.php:7 index.php:225
|
||||
msgid "You must be logged in to use addons. "
|
||||
msgstr ""
|
||||
|
||||
#: mod/apps.php:11
|
||||
msgid "Applications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/apps.php:14
|
||||
msgid "No installed applications."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:64 mod/profiles.php:18 mod/profiles.php:133
|
||||
#: mod/profiles.php:179 mod/profiles.php:627
|
||||
msgid "Profile not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92
|
||||
#: mod/crepair.php:134
|
||||
msgid "Contact not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:121
|
||||
msgid ""
|
||||
"This may occasionally happen if contact was requested by both persons and it "
|
||||
"has already been approved."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:240
|
||||
msgid "Response from remote site was not understood."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
|
||||
msgid "Unexpected response from remote site: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:263
|
||||
msgid "Confirmation completed successfully."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286
|
||||
msgid "Remote site reported: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:277
|
||||
msgid "Temporary failure. Please wait and try again."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:284
|
||||
msgid "Introduction failed or was revoked."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:430
|
||||
msgid "Unable to set contact photo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:487 include/conversation.php:172
|
||||
#: include/diaspora.php:634
|
||||
#, php-format
|
||||
msgid "%1$s is now friends with %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:572
|
||||
#, php-format
|
||||
msgid "No user record found for '%s' "
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:582
|
||||
msgid "Our site encryption key is apparently messed up."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:593
|
||||
msgid "Empty site URL was provided or URL could not be decrypted by us."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:614
|
||||
msgid "Contact record was not found for you on our site."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:628
|
||||
#, php-format
|
||||
msgid "Site public key not available in contact record for URL %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:648
|
||||
msgid ""
|
||||
"The ID provided by your system is a duplicate on our system. It should work "
|
||||
"if you try again."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:659
|
||||
msgid "Unable to set your contact credentials on our system."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:726
|
||||
msgid "Unable to update your contact profile details on our system"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237
|
||||
msgid "[Name Withheld]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_confirm.php:798
|
||||
#, php-format
|
||||
msgid "%1$s has joined %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile.php:21 include/identity.php:77
|
||||
msgid "Requested profile is not available."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile.php:179
|
||||
msgid "Tips for New Members"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:113
|
||||
msgid "Do you really want to delete this video?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:118
|
||||
msgid "Delete Video"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:197
|
||||
msgid "No videos selected"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:298 mod/photos.php:1053
|
||||
msgid "Access to this item is restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:373 include/text.php:1460
|
||||
msgid "View Video"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:380 mod/photos.php:1827
|
||||
msgid "View Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:389
|
||||
msgid "Recent Videos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/videos.php:391
|
||||
msgid "Upload New Videos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/tagger.php:95 include/conversation.php:265
|
||||
#, php-format
|
||||
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fsuggest.php:63
|
||||
msgid "Friend suggestion sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/fsuggest.php:97
|
||||
msgid "Suggest Friends"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fsuggest.php:99
|
||||
#, php-format
|
||||
msgid "Suggest a friend for %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_upload.php:19 mod/wall_upload.php:29 mod/wall_upload.php:76
|
||||
#: mod/wall_upload.php:110 mod/wall_upload.php:111 mod/wall_attach.php:16
|
||||
#: mod/wall_attach.php:21 mod/wall_attach.php:66 include/api.php:1692
|
||||
msgid "Invalid request."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:19
|
||||
msgid "No valid account found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:35
|
||||
msgid "Password reset request issued. Check your email."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:42
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
|
||||
"\t\tpassword. In order to confirm this request, please select the "
|
||||
"verification link\n"
|
||||
"\t\tbelow or paste it into your web browser address bar.\n"
|
||||
"\n"
|
||||
"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
|
||||
"\t\tprovided and ignore and/or delete this email.\n"
|
||||
"\n"
|
||||
"\t\tYour password will not be changed unless we can verify that you\n"
|
||||
"\t\tissued this request."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:53
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tFollow this link to verify your identity:\n"
|
||||
"\n"
|
||||
"\t\t%1$s\n"
|
||||
"\n"
|
||||
"\t\tYou will then receive a follow-up message containing the new password.\n"
|
||||
"\t\tYou may change that password from your account settings page after "
|
||||
"logging in.\n"
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\tSite Location:\t%2$s\n"
|
||||
"\t\tLogin Name:\t%3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:72
|
||||
#, php-format
|
||||
msgid "Password reset requested at %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:92
|
||||
msgid ""
|
||||
"Request could not be verified. (You may have previously submitted it.) "
|
||||
"Password reset failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:109 boot.php:1287
|
||||
msgid "Password Reset"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:110
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:111
|
||||
msgid "Your new password is"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:112
|
||||
msgid "Save or copy your new password - and then"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:113
|
||||
msgid "click here to login"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:114
|
||||
msgid ""
|
||||
"Your password may be changed from the <em>Settings</em> page after "
|
||||
"successful login."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:125
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
|
||||
"\t\t\t\tinformation for your records (or change your password immediately "
|
||||
"to\n"
|
||||
"\t\t\t\tsomething that you will remember).\n"
|
||||
"\t\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:131
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tYour login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\t\tSite Location:\t%1$s\n"
|
||||
"\t\t\t\tLogin Name:\t%2$s\n"
|
||||
"\t\t\t\tPassword:\t%3$s\n"
|
||||
"\n"
|
||||
"\t\t\t\tYou may change that password from your account settings page after "
|
||||
"logging in.\n"
|
||||
"\t\t\t"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:147
|
||||
#, php-format
|
||||
msgid "Your password has been changed at %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:159
|
||||
msgid "Forgot your Password?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:160
|
||||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:161
|
||||
msgid "Nickname or Email: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/lostpass.php:162
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143
|
||||
#: view/theme/diabook/theme.php:480
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/like.php:168 include/conversation.php:140
|
||||
#, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ping.php:233
|
||||
msgid "{0} wants to be your friend"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ping.php:248
|
||||
msgid "{0} sent you a message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ping.php:263
|
||||
msgid "{0} requested registration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/viewcontacts.php:41
|
||||
msgid "No contacts."
|
||||
msgstr ""
|
||||
|
||||
#: mod/viewcontacts.php:78 include/text.php:917
|
||||
msgid "View Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:26
|
||||
msgid "Invalid request identifier."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:35 mod/notifications.php:175 mod/notifications.php:234
|
||||
msgid "Discard"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:78
|
||||
msgid "System"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:90 mod/network.php:375
|
||||
msgid "Personal"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156
|
||||
#: view/theme/diabook/theme.php:123
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:102 include/nav.php:161
|
||||
msgid "Introductions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:127
|
||||
msgid "Show Ignored Requests"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:127
|
||||
msgid "Hide Ignored Requests"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:159 mod/notifications.php:209
|
||||
msgid "Notification type: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:160
|
||||
msgid "Friend Suggestion"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:162
|
||||
#, php-format
|
||||
msgid "suggested by %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:168 mod/notifications.php:228
|
||||
msgid "Post a new friend activity"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:168 mod/notifications.php:228
|
||||
msgid "if applicable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:191
|
||||
msgid "Claims to be known to you: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:191
|
||||
msgid "yes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:191
|
||||
msgid "no"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:192
|
||||
msgid ""
|
||||
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
|
||||
"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
|
||||
"you allow to read but you do not want to read theirs. Approve as: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:195
|
||||
msgid ""
|
||||
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
|
||||
"allow to read and you subscribe to their posts. \"Sharer\" means that you "
|
||||
"allow to read but you do not want to read theirs. Approve as: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:203
|
||||
msgid "Friend"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:204
|
||||
msgid "Sharer"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:204
|
||||
msgid "Fan/Admirer"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:210
|
||||
msgid "Friend/Connect Request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:210
|
||||
msgid "New Follower"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503
|
||||
#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170
|
||||
#: include/event.php:42
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277
|
||||
#: include/identity.php:581
|
||||
msgid "About:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:224 include/identity.php:575
|
||||
msgid "Tags:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270
|
||||
#: include/identity.php:540
|
||||
msgid "Gender:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:240
|
||||
msgid "No introductions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:243 include/nav.php:164
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:281 mod/notifications.php:410
|
||||
#: mod/notifications.php:501
|
||||
#, php-format
|
||||
msgid "%s liked %s's post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:291 mod/notifications.php:420
|
||||
#: mod/notifications.php:511
|
||||
#, php-format
|
||||
msgid "%s disliked %s's post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:306 mod/notifications.php:435
|
||||
#: mod/notifications.php:526
|
||||
#, php-format
|
||||
msgid "%s is now friends with %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:313 mod/notifications.php:442
|
||||
#, php-format
|
||||
msgid "%s created a new post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:314 mod/notifications.php:443
|
||||
#: mod/notifications.php:536
|
||||
#, php-format
|
||||
msgid "%s commented on %s's post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:329
|
||||
msgid "No more network notifications."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:333
|
||||
msgid "Network Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:359 mod/notify.php:72
|
||||
msgid "No more system notifications."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:363 mod/notify.php:76
|
||||
msgid "System Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:458
|
||||
msgid "No more personal notifications."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:462
|
||||
msgid "Personal Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:543
|
||||
msgid "No more home notifications."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notifications.php:547
|
||||
msgid "Home Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:17
|
||||
msgid "Source (bbcode) text:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:23
|
||||
msgid "Source (Diaspora) text to convert to BBcode:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:31
|
||||
msgid "Source input: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:35
|
||||
msgid "bb2html (raw HTML): "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:39
|
||||
msgid "bb2html: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:43
|
||||
msgid "bb2html2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:47
|
||||
msgid "bb2md: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:51
|
||||
msgid "bb2md2html: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:55
|
||||
msgid "bb2dia2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:59
|
||||
msgid "bb2md2html2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:69
|
||||
msgid "Source input (Diaspora format): "
|
||||
msgstr ""
|
||||
|
||||
#: mod/babel.php:74
|
||||
msgid "diaspora2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/navigation.php:20 include/nav.php:34
|
||||
msgid "Nothing new here"
|
||||
msgstr ""
|
||||
|
||||
#: mod/navigation.php:24 include/nav.php:38
|
||||
msgid "Clear notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:9 include/nav.php:173
|
||||
msgid "New Message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:64 mod/wallmessage.php:56
|
||||
msgid "No recipient selected."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:68
|
||||
msgid "Unable to locate contact information."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:71 mod/wallmessage.php:62
|
||||
msgid "Message could not be sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:74 mod/wallmessage.php:65
|
||||
msgid "Message collection failure."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:77 mod/wallmessage.php:68
|
||||
msgid "Message sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:183 include/nav.php:170
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:208
|
||||
msgid "Do you really want to delete this message?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:228
|
||||
msgid "Message deleted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:259
|
||||
msgid "Conversation removed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:284 mod/message.php:292 mod/message.php:467
|
||||
#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135
|
||||
#: include/conversation.php:1001 include/conversation.php:1019
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:320 mod/wallmessage.php:142
|
||||
msgid "Send Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144
|
||||
msgid "To:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145
|
||||
msgid "Subject:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151
|
||||
#: mod/invite.php:134
|
||||
msgid "Your message:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154
|
||||
#: mod/editpost.php:110 include/conversation.php:1056
|
||||
msgid "Upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155
|
||||
#: mod/editpost.php:114 include/conversation.php:1060
|
||||
msgid "Insert web link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:335 mod/message.php:566 mod/content.php:501
|
||||
#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124
|
||||
#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691
|
||||
#: include/conversation.php:1074
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:372
|
||||
msgid "No messages."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:379
|
||||
#, php-format
|
||||
msgid "Unknown sender - %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:382
|
||||
#, php-format
|
||||
msgid "You and %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:385
|
||||
#, php-format
|
||||
msgid "%s and You"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:406 mod/message.php:547
|
||||
msgid "Delete conversation"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:409
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:412
|
||||
#, php-format
|
||||
msgid "%d message"
|
||||
msgid_plural "%d messages"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/message.php:451
|
||||
msgid "Message not available."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:521
|
||||
msgid "Delete message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:549
|
||||
msgid ""
|
||||
"No secure communications available. You <strong>may</strong> be able to "
|
||||
"respond from the sender's profile page."
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:553
|
||||
msgid "Send Reply"
|
||||
msgstr ""
|
||||
|
||||
#: mod/update_display.php:22 mod/update_community.php:18
|
||||
#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25
|
||||
msgid "[Embedded content - reload page to view]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:107
|
||||
msgid "Contact settings applied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:109
|
||||
msgid "Contact update failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:140
|
||||
msgid "Repair Contact Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:142
|
||||
msgid ""
|
||||
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
|
||||
"information your communications with this contact may stop working."
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:143
|
||||
msgid ""
|
||||
"Please use your browser 'Back' button <strong>now</strong> if you are "
|
||||
"uncertain what to do on this page."
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:149
|
||||
msgid "Return to contact editor"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:160 mod/crepair.php:162
|
||||
msgid "No mirroring"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:160
|
||||
msgid "Mirror as forwarded posting"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:160 mod/crepair.php:162
|
||||
msgid "Mirror as my own posting"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:169
|
||||
msgid "Refetch contact data"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:170 mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090
|
||||
#: mod/admin.php:1103 mod/settings.php:634 mod/settings.php:660
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:171
|
||||
msgid "Account Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:172
|
||||
msgid "@Tagname - overrides Name/Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:173
|
||||
msgid "Account URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:174
|
||||
msgid "Friend Request URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:175
|
||||
msgid "Friend Confirm URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:176
|
||||
msgid "Notification Endpoint URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:177
|
||||
msgid "Poll/Feed URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:178
|
||||
msgid "New photo from this URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:179
|
||||
msgid "Remote Self"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:181
|
||||
msgid "Mirror postings from this contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:181
|
||||
msgid ""
|
||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||
"entries from this contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: mod/bookmarklet.php:41
|
||||
msgid "The post was created"
|
||||
msgstr ""
|
||||
|
||||
#: mod/viewsrc.php:7
|
||||
msgid "Access denied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dirfind.php:36
|
||||
#, php-format
|
||||
msgid "People Search - %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dirfind.php:125 mod/match.php:65 mod/suggest.php:92
|
||||
#: include/contact_widgets.php:10 include/identity.php:188
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dirfind.php:139 mod/match.php:73
|
||||
msgid "No matches"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78
|
||||
#: view/theme/diabook/theme.php:126
|
||||
msgid "Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/fbrowser.php:122
|
||||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: mod/nogroup.php:59
|
||||
msgid "Contacts who are not members of a group"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:57
|
||||
msgid "Theme settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:104 mod/admin.php:682
|
||||
msgid "Site"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66
|
||||
msgid "Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438
|
||||
msgid "Themes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:108
|
||||
msgid "DB updates"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:109 mod/admin.php:200
|
||||
msgid "Inspect Queue"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:125
|
||||
msgid "probe address"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:126
|
||||
msgid "check webfinger"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:131 include/nav.php:193
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:132
|
||||
msgid "Plugin Features"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:134
|
||||
msgid "diagnostics"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:135
|
||||
msgid "User registrations waiting for confirmation"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:681 mod/admin.php:1071
|
||||
#: mod/admin.php:1175 mod/admin.php:1235 mod/admin.php:1403 mod/admin.php:1437
|
||||
#: mod/admin.php:1524
|
||||
msgid "Administration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:202
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:203
|
||||
msgid "Recipient Name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:204
|
||||
msgid "Recipient Profile"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:206
|
||||
msgid "Created"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:207
|
||||
msgid "Last Tried"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:208
|
||||
msgid ""
|
||||
"This page lists the content of the queue for outgoing postings. These are "
|
||||
"postings the initial delivery failed for. They will be resend later and "
|
||||
"eventually deleted if the delivery fails permanently."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:220 mod/admin.php:1025
|
||||
msgid "Normal Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:221 mod/admin.php:1026
|
||||
msgid "Soapbox Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:222 mod/admin.php:1027
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:223 mod/admin.php:1028
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:224
|
||||
msgid "Blog Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:225
|
||||
msgid "Private Forum"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:244
|
||||
msgid "Message queues"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:250
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:252
|
||||
msgid "Registered users"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:254
|
||||
msgid "Pending registrations"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:255
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:260
|
||||
msgid "Active plugins"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:283
|
||||
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:565
|
||||
msgid "Site settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:594 mod/settings.php:883
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:611
|
||||
msgid "No community page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:612
|
||||
msgid "Public postings from users of this site"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:613
|
||||
msgid "Global community page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:619
|
||||
msgid "At post arrival"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:620 include/contact_selectors.php:56
|
||||
msgid "Frequently"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:621 include/contact_selectors.php:57
|
||||
msgid "Hourly"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:622 include/contact_selectors.php:58
|
||||
msgid "Twice daily"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:623 include/contact_selectors.php:59
|
||||
msgid "Daily"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:629
|
||||
msgid "Users, Global Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:630
|
||||
msgid "Users, Global Contacts/fallback"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:634
|
||||
msgid "One month"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:635
|
||||
msgid "Three months"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:636
|
||||
msgid "Half a year"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:637
|
||||
msgid "One year"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:642
|
||||
msgid "Multi user instance"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:665
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:666
|
||||
msgid "Requires approval"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:667
|
||||
msgid "Open"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:671
|
||||
msgid "No SSL policy, links will track page SSL state"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:672
|
||||
msgid "Force all links to use SSL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:673
|
||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:683 mod/admin.php:1237 mod/admin.php:1439 mod/admin.php:1526
|
||||
#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:784
|
||||
#: mod/settings.php:853 mod/settings.php:935 mod/settings.php:1165
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:684 mod/register.php:260
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:685
|
||||
msgid "File upload"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:686
|
||||
msgid "Policies"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:687
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:688
|
||||
msgid "Auto Discovered Contact Directory"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:689
|
||||
msgid "Performance"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:690
|
||||
msgid ""
|
||||
"Relocate - WARNING: advanced function. Could make this server unreachable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:693
|
||||
msgid "Site name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:694
|
||||
msgid "Host name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:695
|
||||
msgid "Sender Email"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:695
|
||||
msgid ""
|
||||
"The email address your server shall use to send notification emails from."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:696
|
||||
msgid "Banner/Logo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:697
|
||||
msgid "Shortcut icon"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:697
|
||||
msgid "Link to an icon that will be used for browsers."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:698
|
||||
msgid "Touch icon"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:698
|
||||
msgid "Link to an icon that will be used for tablets and mobiles."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:699
|
||||
msgid "Additional Info"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:699
|
||||
#, php-format
|
||||
msgid ""
|
||||
"For public servers: you can add additional information here that will be "
|
||||
"listed at %s/siteinfo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:700
|
||||
msgid "System language"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:701
|
||||
msgid "System theme"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:701
|
||||
msgid ""
|
||||
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
||||
"id='cnftheme'>change theme settings</a>"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:702
|
||||
msgid "Mobile system theme"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:702
|
||||
msgid "Theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:703
|
||||
msgid "SSL link policy"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:703
|
||||
msgid "Determines whether generated links should be forced to use SSL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:704
|
||||
msgid "Force SSL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:704
|
||||
msgid ""
|
||||
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
|
||||
"to endless loops."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:705
|
||||
msgid "Old style 'Share'"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:705
|
||||
msgid "Deactivates the bbcode element 'share' for repeating items."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:706
|
||||
msgid "Hide help entry from navigation menu"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:706
|
||||
msgid ""
|
||||
"Hides the menu entry for the Help pages from the navigation menu. You can "
|
||||
"still access it calling /help directly."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:707
|
||||
msgid "Single user instance"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:707
|
||||
msgid "Make this instance multi-user or single-user for the named user"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:708
|
||||
msgid "Maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:708
|
||||
msgid ""
|
||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||
"limits."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:709
|
||||
msgid "Maximum image length"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:709
|
||||
msgid ""
|
||||
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
||||
"-1, which means no limits."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:710
|
||||
msgid "JPEG image quality"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:710
|
||||
msgid ""
|
||||
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
||||
"100, which is full quality."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:712
|
||||
msgid "Register policy"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:713
|
||||
msgid "Maximum Daily Registrations"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:713
|
||||
msgid ""
|
||||
"If registration is permitted above, this sets the maximum number of new user "
|
||||
"registrations to accept per day. If register is set to closed, this setting "
|
||||
"has no effect."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:714
|
||||
msgid "Register text"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:714
|
||||
msgid "Will be displayed prominently on the registration page."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:715
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:715
|
||||
msgid ""
|
||||
"Will not waste system resources polling external sites for abandonded "
|
||||
"accounts. Enter 0 for no time limit."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:716
|
||||
msgid "Allowed friend domains"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:716
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed to establish friendships "
|
||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:717
|
||||
msgid "Allowed email domains"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:717
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed in email addresses for "
|
||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||
"domains"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:718
|
||||
msgid "Block public"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:718
|
||||
msgid ""
|
||||
"Check to block public access to all otherwise public personal pages on this "
|
||||
"site unless you are currently logged in."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:719
|
||||
msgid "Force publish"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:719
|
||||
msgid ""
|
||||
"Check to force all profiles on this site to be listed in the site directory."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:720
|
||||
msgid "Global directory update URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:720
|
||||
msgid ""
|
||||
"URL to update the global directory. If this is not set, the global directory "
|
||||
"is completely unavailable to the application."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:721
|
||||
msgid "Allow threaded items"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:721
|
||||
msgid "Allow infinite level threading for items on this site."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:722
|
||||
msgid "Private posts by default for new users"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:722
|
||||
msgid ""
|
||||
"Set default post permissions for all new members to the default privacy "
|
||||
"group rather than public."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:723
|
||||
msgid "Don't include post content in email notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:723
|
||||
msgid ""
|
||||
"Don't include the content of a post/comment/private message/etc. in the "
|
||||
"email notifications that are sent out from this site, as a privacy measure."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:724
|
||||
msgid "Disallow public access to addons listed in the apps menu."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:724
|
||||
msgid ""
|
||||
"Checking this box will restrict addons listed in the apps menu to members "
|
||||
"only."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:725
|
||||
msgid "Don't embed private images in posts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:725
|
||||
msgid ""
|
||||
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
||||
"of the image. This means that contacts who receive posts containing private "
|
||||
"photos will have to authenticate and load each image, which may take a while."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:726
|
||||
msgid "Allow Users to set remote_self"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:726
|
||||
msgid ""
|
||||
"With checking this, every user is allowed to mark every contact as a "
|
||||
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
||||
"causes mirroring every posting of that contact in the users stream."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:727
|
||||
msgid "Block multiple registrations"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:727
|
||||
msgid "Disallow users to register additional accounts for use as pages."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:728
|
||||
msgid "OpenID support"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:728
|
||||
msgid "OpenID support for registration and logins."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:729
|
||||
msgid "Fullname check"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:729
|
||||
msgid ""
|
||||
"Force users to register with a space between firstname and lastname in Full "
|
||||
"name, as an antispam measure"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:730
|
||||
msgid "UTF-8 Regular expressions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:730
|
||||
msgid "Use PHP UTF8 regular expressions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:731
|
||||
msgid "Community Page Style"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:731
|
||||
msgid ""
|
||||
"Type of community page to show. 'Global community' shows every public "
|
||||
"posting from an open distributed network that arrived on this server."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:732
|
||||
msgid "Posts per user on community page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:732
|
||||
msgid ""
|
||||
"The maximum number of posts per user on the community page. (Not valid for "
|
||||
"'Global Community')"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:733
|
||||
msgid "Enable OStatus support"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:733
|
||||
msgid ""
|
||||
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
||||
"communications in OStatus are public, so privacy warnings will be "
|
||||
"occasionally displayed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:734
|
||||
msgid "OStatus conversation completion interval"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:734
|
||||
msgid ""
|
||||
"How often shall the poller check for new entries in OStatus conversations? "
|
||||
"This can be a very ressource task."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:735
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:735
|
||||
msgid "Provide built-in Diaspora network compatibility."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:736
|
||||
msgid "Only allow Friendica contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:736
|
||||
msgid ""
|
||||
"All contacts must use Friendica protocols. All other built-in communication "
|
||||
"protocols disabled."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:737
|
||||
msgid "Verify SSL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:737
|
||||
msgid ""
|
||||
"If you wish, you can turn on strict certificate checking. This will mean you "
|
||||
"cannot connect (at all) to self-signed SSL sites."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:738
|
||||
msgid "Proxy user"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:739
|
||||
msgid "Proxy URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:740
|
||||
msgid "Network timeout"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:740
|
||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:741
|
||||
msgid "Delivery interval"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:741
|
||||
msgid ""
|
||||
"Delay background delivery processes by this many seconds to reduce system "
|
||||
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
|
||||
"for large dedicated servers."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:742
|
||||
msgid "Poll interval"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:742
|
||||
msgid ""
|
||||
"Delay background polling processes by this many seconds to reduce system "
|
||||
"load. If 0, use delivery interval."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:743
|
||||
msgid "Maximum Load Average"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:743
|
||||
msgid ""
|
||||
"Maximum system load before delivery and poll processes are deferred - "
|
||||
"default 50."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:744
|
||||
msgid "Maximum Load Average (Frontend)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:744
|
||||
msgid "Maximum system load before the frontend quits service - default 50."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:746
|
||||
msgid "Periodical check of global contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:746
|
||||
msgid ""
|
||||
"If enabled, the global contacts are checked periodically for missing or "
|
||||
"outdated data and the vitality of the contacts and servers."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:747
|
||||
msgid "Discover contacts from other servers"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:747
|
||||
msgid ""
|
||||
"Periodically query other servers for contacts. You can choose between "
|
||||
"'users': the users on the remote system, 'Global Contacts': active contacts "
|
||||
"that are known on the system. The fallback is meant for Redmatrix servers "
|
||||
"and older friendica servers, where global contacts weren't available. The "
|
||||
"fallback increases the server load, so the recommened setting is 'Users, "
|
||||
"Global Contacts'."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:748
|
||||
msgid "Timeframe for fetching global contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:748
|
||||
msgid ""
|
||||
"When the discovery is activated, this value defines the timeframe for the "
|
||||
"activity of the global contacts that are fetched from other servers."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:749
|
||||
msgid "Search the local directory"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:749
|
||||
msgid ""
|
||||
"Search the local directory instead of the global directory. When searching "
|
||||
"locally, every search will be executed on the global directory in the "
|
||||
"background. This improves the search results when the search is repeated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:751
|
||||
msgid "Publish server information"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:751
|
||||
msgid ""
|
||||
"If enabled, general server and usage data will be published. The data "
|
||||
"contains the name and version of the server, number of users with public "
|
||||
"profiles, number of posts and the activated protocols and connectors. See <a "
|
||||
"href='http://the-federation.info/'>the-federation.info</a> for details."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:753
|
||||
msgid "Use MySQL full text engine"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:753
|
||||
msgid ""
|
||||
"Activates the full text engine. Speeds up search - but can only search for "
|
||||
"four and more characters."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:754
|
||||
msgid "Suppress Language"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:754
|
||||
msgid "Suppress language information in meta information about a posting."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:755
|
||||
msgid "Suppress Tags"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:755
|
||||
msgid "Suppress showing a list of hashtags at the end of the posting."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:756
|
||||
msgid "Path to item cache"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:756
|
||||
msgid "The item caches buffers generated bbcode and external images."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:757
|
||||
msgid "Cache duration in seconds"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:757
|
||||
msgid ""
|
||||
"How long should the cache files be hold? Default value is 86400 seconds (One "
|
||||
"day). To disable the item cache, set the value to -1."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:758
|
||||
msgid "Maximum numbers of comments per post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:758
|
||||
msgid "How much comments should be shown for each post? Default value is 100."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:759
|
||||
msgid "Path for lock file"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:759
|
||||
msgid ""
|
||||
"The lock file is used to avoid multiple pollers at one time. Only define a "
|
||||
"folder here."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:760
|
||||
msgid "Temp path"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:760
|
||||
msgid ""
|
||||
"If you have a restricted system where the webserver can't access the system "
|
||||
"temp path, enter another path here."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:761
|
||||
msgid "Base path to installation"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:761
|
||||
msgid ""
|
||||
"If the system cannot detect the correct path to your installation, enter the "
|
||||
"correct path here. This setting should only be set if you are using a "
|
||||
"restricted system and symbolic links to your webroot."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:762
|
||||
msgid "Disable picture proxy"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:762
|
||||
msgid ""
|
||||
"The picture proxy increases performance and privacy. It shouldn't be used on "
|
||||
"systems with very low bandwith."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:763
|
||||
msgid "Enable old style pager"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:763
|
||||
msgid ""
|
||||
"The old style pager has page numbers but slows down massively the page speed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:764
|
||||
msgid "Only search in tags"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:764
|
||||
msgid "On large systems the text search can slow down the system extremely."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:766
|
||||
msgid "New base url"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:766
|
||||
msgid ""
|
||||
"Change base url for this server. Sends relocate message to all DFRN contacts "
|
||||
"of all users."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:768
|
||||
msgid "RINO Encryption"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:768
|
||||
msgid "Encryption layer between nodes."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:769
|
||||
msgid "Embedly API key"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:769
|
||||
msgid ""
|
||||
"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
|
||||
"web pages. This is an optional parameter."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:787
|
||||
msgid "Update has been marked successful"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:795
|
||||
#, php-format
|
||||
msgid "Database structure update %s was successfully applied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:798
|
||||
#, php-format
|
||||
msgid "Executing of database structure update %s failed with error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:810
|
||||
#, php-format
|
||||
msgid "Executing %s failed with error: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:813
|
||||
#, php-format
|
||||
msgid "Update %s was successfully applied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:817
|
||||
#, php-format
|
||||
msgid "Update %s did not return a status. Unknown if it succeeded."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:819
|
||||
#, php-format
|
||||
msgid "There was no additional update function %s that needed to be called."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:838
|
||||
msgid "No failed updates."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:839
|
||||
msgid "Check database structure"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:844
|
||||
msgid "Failed Updates"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:845
|
||||
msgid ""
|
||||
"This does not include updates prior to 1139, which did not return a status."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:846
|
||||
msgid "Mark success (if update was manually applied)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:847
|
||||
msgid "Attempt to execute this update step automatically"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:879
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tDear %1$s,\n"
|
||||
"\t\t\t\tthe administrator of %2$s has set up an account for you."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:882
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tThe login details are as follows:\n"
|
||||
"\n"
|
||||
"\t\t\tSite Location:\t%1$s\n"
|
||||
"\t\t\tLogin Name:\t\t%2$s\n"
|
||||
"\t\t\tPassword:\t\t%3$s\n"
|
||||
"\n"
|
||||
"\t\t\tYou may change your password from your account \"Settings\" page after "
|
||||
"logging\n"
|
||||
"\t\t\tin.\n"
|
||||
"\n"
|
||||
"\t\t\tPlease take a few moments to review the other account settings on that "
|
||||
"page.\n"
|
||||
"\n"
|
||||
"\t\t\tYou may also wish to add some basic information to your default "
|
||||
"profile\n"
|
||||
"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
|
||||
"\n"
|
||||
"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
|
||||
"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
|
||||
"and\n"
|
||||
"\t\t\tperhaps what country you live in; if you do not wish to be more "
|
||||
"specific\n"
|
||||
"\t\t\tthan that.\n"
|
||||
"\n"
|
||||
"\t\t\tWe fully respect your right to privacy, and none of these items are "
|
||||
"necessary.\n"
|
||||
"\t\t\tIf you are new and do not know anybody here, they may help\n"
|
||||
"\t\t\tyou to make some new and interesting friends.\n"
|
||||
"\n"
|
||||
"\t\t\tThank you and welcome to %4$s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:914 include/user.php:421
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:926
|
||||
#, php-format
|
||||
msgid "%s user blocked/unblocked"
|
||||
msgid_plural "%s users blocked/unblocked"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/admin.php:933
|
||||
#, php-format
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/admin.php:972
|
||||
#, php-format
|
||||
msgid "User '%s' deleted"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:980
|
||||
#, php-format
|
||||
msgid "User '%s' unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:980
|
||||
#, php-format
|
||||
msgid "User '%s' blocked"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1073
|
||||
msgid "Add User"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1074
|
||||
msgid "select all"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1075
|
||||
msgid "User registrations waiting for confirm"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1076
|
||||
msgid "User waiting for permanent deletion"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1077
|
||||
msgid "Request date"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105
|
||||
#: include/contact_selectors.php:79 include/contact_selectors.php:86
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1078
|
||||
msgid "No registrations."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1080
|
||||
msgid "Deny"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1084
|
||||
msgid "Site admin"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1085
|
||||
msgid "Account expired"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1088
|
||||
msgid "New User"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1089 mod/admin.php:1090
|
||||
msgid "Register date"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1089 mod/admin.php:1090
|
||||
msgid "Last login"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1089 mod/admin.php:1090
|
||||
msgid "Last item"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1089
|
||||
msgid "Deleted since"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1090 mod/settings.php:41
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1092
|
||||
msgid ""
|
||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1093
|
||||
msgid ""
|
||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1103
|
||||
msgid "Name of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1104
|
||||
msgid "Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1104
|
||||
msgid "Nickname of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1105
|
||||
msgid "Email address of the new user."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1138
|
||||
#, php-format
|
||||
msgid "Plugin %s disabled."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1142
|
||||
#, php-format
|
||||
msgid "Plugin %s enabled."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1152 mod/admin.php:1375
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1154 mod/admin.php:1377
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1177 mod/admin.php:1405
|
||||
msgid "Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1185 mod/admin.php:1415
|
||||
msgid "Author: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1186 mod/admin.php:1416
|
||||
msgid "Maintainer: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1335
|
||||
msgid "No themes found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1397
|
||||
msgid "Screenshot"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1443
|
||||
msgid "[Experimental]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1444
|
||||
msgid "[Unsupported]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1471
|
||||
msgid "Log settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1527
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1533
|
||||
msgid "Enable Debugging"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1534
|
||||
msgid "Log file"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1534
|
||||
msgid ""
|
||||
"Must be writable by web server. Relative to your Friendica top-level "
|
||||
"directory."
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1535
|
||||
msgid "Log level"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1585 include/acl_selectors.php:347
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1591
|
||||
msgid "FTP Host"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1592
|
||||
msgid "FTP Path"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1593
|
||||
msgid "FTP User"
|
||||
msgstr ""
|
||||
|
||||
#: mod/admin.php:1594
|
||||
msgid "FTP Password"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:143
|
||||
#, php-format
|
||||
msgid "Search Results For: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:187 mod/search.php:25
|
||||
#: mod/search.php:25 mod/network.php:187
|
||||
msgid "Remove term"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:196 mod/search.php:34 include/features.php:42
|
||||
#: mod/search.php:34 mod/network.php:196 include/features.php:42
|
||||
msgid "Saved Searches"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:197 include/group.php:277
|
||||
msgid "add"
|
||||
#: mod/search.php:107 include/text.php:996 include/nav.php:119
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:358
|
||||
msgid "Commented Order"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:361
|
||||
msgid "Sort by Comment Date"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:365
|
||||
msgid "Posted Order"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:368
|
||||
msgid "Sort by Post Date"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:378
|
||||
msgid "Posts that mention or involve you"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:385
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:388
|
||||
msgid "Activity Stream - by date"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:395
|
||||
msgid "Shared Links"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:398
|
||||
msgid "Interesting Links"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:405
|
||||
msgid "Starred"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:408
|
||||
msgid "Favourite Posts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:466
|
||||
#, php-format
|
||||
msgid "Warning: This group contains %s member from an insecure network."
|
||||
msgid_plural ""
|
||||
"Warning: This group contains %s members from an insecure network."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/network.php:469
|
||||
msgid "Private messages to this group are at risk of public disclosure."
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:532 mod/content.php:119
|
||||
msgid "No such group"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:549 mod/content.php:130
|
||||
msgid "Group is empty"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:560 mod/content.php:135
|
||||
#, php-format
|
||||
msgid "Group: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:578
|
||||
#, php-format
|
||||
msgid "Contact: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:582
|
||||
msgid "Private messages to this person are at risk of public disclosure."
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:587
|
||||
msgid "Invalid contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/allfriends.php:37
|
||||
#, php-format
|
||||
msgid "Friends of %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/allfriends.php:44
|
||||
msgid "No friends to display."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:71 mod/events.php:73
|
||||
msgid "Event can not end before it has started."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:80 mod/events.php:82
|
||||
msgid "Event title and start time are required."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:317
|
||||
msgid "l, F j"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:339
|
||||
msgid "Edit event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:361 include/text.php:1716 include/text.php:1723
|
||||
msgid "link to source"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:396 include/identity.php:667 include/nav.php:80
|
||||
#: view/theme/diabook/theme.php:127
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:397
|
||||
msgid "Create New Event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:398
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:399 mod/install.php:209
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:491
|
||||
msgid "Event details"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:492
|
||||
msgid "Starting date and Title are required."
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:493
|
||||
msgid "Event Starts:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:493 mod/events.php:505
|
||||
msgid "Required"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:495
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:497
|
||||
msgid "Event Finishes:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:499
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:501
|
||||
msgid "Description:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:505
|
||||
msgid "Title:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:507
|
||||
msgid "Share this event"
|
||||
msgstr ""
|
||||
|
||||
#: mod/events.php:509 mod/content.php:721 mod/editpost.php:145
|
||||
#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717
|
||||
#: object/Item.php:689 include/conversation.php:1089
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672
|
||||
#: object/Item.php:130 include/conversation.php:612
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:473 mod/content.php:854 mod/content.php:855
|
||||
#: object/Item.php:328 object/Item.php:329 include/conversation.php:653
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:483 mod/content.php:866 object/Item.php:342
|
||||
#: include/conversation.php:673
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:499 include/conversation.php:689
|
||||
msgid "View in context"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:605 object/Item.php:389
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/content.php:607 object/Item.php:391 object/Item.php:404
|
||||
#: include/text.php:2038
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/content.php:608 boot.php:765 object/Item.php:392
|
||||
#: include/contact_widgets.php:205 include/items.php:5134
|
||||
msgid "show more"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117
|
||||
msgid "Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232
|
||||
msgid "I like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:686 object/Item.php:232
|
||||
msgid "like"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:687 object/Item.php:233
|
||||
msgid "dislike"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:689 object/Item.php:235
|
||||
msgid "Share this"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:689 object/Item.php:235
|
||||
msgid "share"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625
|
||||
#: mod/photos.php:1713 object/Item.php:677
|
||||
msgid "This is you"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:711 mod/photos.php:1583 mod/photos.php:1627
|
||||
#: mod/photos.php:1715 boot.php:764 object/Item.php:363 object/Item.php:679
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:713 object/Item.php:681
|
||||
msgid "Bold"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:714 object/Item.php:682
|
||||
msgid "Italic"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:715 object/Item.php:683
|
||||
msgid "Underline"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:716 object/Item.php:684
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:717 object/Item.php:685
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:718 object/Item.php:686
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:719 object/Item.php:687
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:720 object/Item.php:688
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:730 mod/settings.php:694 object/Item.php:121
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:755 object/Item.php:196
|
||||
msgid "add star"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:756 object/Item.php:197
|
||||
msgid "remove star"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:757 object/Item.php:198
|
||||
msgid "toggle star status"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:760 object/Item.php:201
|
||||
msgid "starred"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:761 object/Item.php:221
|
||||
msgid "add tag"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:765 object/Item.php:134
|
||||
msgid "save to folder"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:856 object/Item.php:330
|
||||
msgid "to"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:857 object/Item.php:332
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:858 object/Item.php:333
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:46 mod/removeme.php:49
|
||||
msgid "Remove My Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:47
|
||||
msgid ""
|
||||
"This will completely remove your account. Once this has been done it is not "
|
||||
"recoverable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/removeme.php:48
|
||||
msgid "Please enter your password for verification:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:119
|
||||
msgid "Friendica Communications Server - Setup"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:125
|
||||
msgid "Could not connect to database."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:129
|
||||
msgid "Could not create table."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:135
|
||||
msgid "Your Friendica site database has been installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:140
|
||||
msgid ""
|
||||
"You may need to import the file \"database.sql\" manually using phpmyadmin "
|
||||
"or mysql."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:141 mod/install.php:208 mod/install.php:530
|
||||
msgid "Please see the file \"INSTALL.txt\"."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:153
|
||||
msgid "Database already in use."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:205
|
||||
msgid "System check"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:210
|
||||
msgid "Check again"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:229
|
||||
msgid "Database connection"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:230
|
||||
msgid ""
|
||||
"In order to install Friendica we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:231
|
||||
msgid ""
|
||||
"Please contact your hosting provider or site administrator if you have "
|
||||
"questions about these settings."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:232
|
||||
msgid ""
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:236
|
||||
msgid "Database Server Name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:237
|
||||
msgid "Database Login Name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:238
|
||||
msgid "Database Login Password"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:239
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:240 mod/install.php:279
|
||||
msgid "Site administrator email address"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:240 mod/install.php:279
|
||||
msgid ""
|
||||
"Your account email address must match this in order to use the web admin "
|
||||
"panel."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:244 mod/install.php:282
|
||||
msgid "Please select a default timezone for your website"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:269
|
||||
msgid "Site settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:323
|
||||
msgid "Could not find a command line version of PHP in the web server PATH."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:324
|
||||
msgid ""
|
||||
"If you don't have a command line version of PHP installed on server, you "
|
||||
"will not be able to run background polling via cron. See <a href='http://"
|
||||
"friendica.com/node/27'>'Activating scheduled tasks'</a>"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:328
|
||||
msgid "PHP executable path"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:328
|
||||
msgid ""
|
||||
"Enter full path to php executable. You can leave this blank to continue the "
|
||||
"installation."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:333
|
||||
msgid "Command line PHP"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:342
|
||||
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:343
|
||||
msgid "Found PHP version: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:345
|
||||
msgid "PHP cli binary"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:356
|
||||
msgid ""
|
||||
"The command line version of PHP on your system does not have "
|
||||
"\"register_argc_argv\" enabled."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:357
|
||||
msgid "This is required for message delivery to work."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:359
|
||||
msgid "PHP register_argc_argv"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:380
|
||||
msgid ""
|
||||
"Error: the \"openssl_pkey_new\" function on this system is not able to "
|
||||
"generate encryption keys"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:381
|
||||
msgid ""
|
||||
"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
|
||||
"installation.php\"."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:383
|
||||
msgid "Generate encryption keys"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:390
|
||||
msgid "libCurl PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:391
|
||||
msgid "GD graphics PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:392
|
||||
msgid "OpenSSL PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:393
|
||||
msgid "mysqli PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:394
|
||||
msgid "mb_string PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:399 mod/install.php:401
|
||||
msgid "Apache mod_rewrite module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:399
|
||||
msgid ""
|
||||
"Error: Apache webserver mod-rewrite module is required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:407
|
||||
msgid "Error: libCURL PHP module required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:411
|
||||
msgid ""
|
||||
"Error: GD graphics PHP module with JPEG support required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:415
|
||||
msgid "Error: openssl PHP module required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:419
|
||||
msgid "Error: mysqli PHP module required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:423
|
||||
msgid "Error: mb_string PHP module required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:440
|
||||
msgid ""
|
||||
"The web installer needs to be able to create a file called \".htconfig.php\" "
|
||||
"in the top folder of your web server and it is unable to do so."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:441
|
||||
msgid ""
|
||||
"This is most often a permission setting, as the web server may not be able "
|
||||
"to write files in your folder - even if you can."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:442
|
||||
msgid ""
|
||||
"At the end of this procedure, we will give you a text to save in a file "
|
||||
"named .htconfig.php in your Friendica top folder."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:443
|
||||
msgid ""
|
||||
"You can alternatively skip this procedure and perform a manual installation. "
|
||||
"Please see the file \"INSTALL.txt\" for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:446
|
||||
msgid ".htconfig.php is writable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:456
|
||||
msgid ""
|
||||
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
|
||||
"compiles templates to PHP to speed up rendering."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:457
|
||||
msgid ""
|
||||
"In order to store these compiled templates, the web server needs to have "
|
||||
"write access to the directory view/smarty3/ under the Friendica top level "
|
||||
"folder."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:458
|
||||
msgid ""
|
||||
"Please ensure that the user that your web server runs as (e.g. www-data) has "
|
||||
"write access to this folder."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:459
|
||||
msgid ""
|
||||
"Note: as a security measure, you should give the web server write access to "
|
||||
"view/smarty3/ only--not the template files (.tpl) that it contains."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:462
|
||||
msgid "view/smarty3 is writable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:478
|
||||
msgid ""
|
||||
"Url rewrite in .htaccess is not working. Check your server configuration."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:480
|
||||
msgid "Url rewrite is working"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:489
|
||||
msgid ""
|
||||
"The database configuration file \".htconfig.php\" could not be written. "
|
||||
"Please use the enclosed text to create a configuration file in your web "
|
||||
"server root."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:528
|
||||
msgid "<h1>What next</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:529
|
||||
msgid ""
|
||||
"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:42 mod/wallmessage.php:112
|
||||
#, php-format
|
||||
msgid "Number of daily wall messages for %s exceeded. Message failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:59
|
||||
msgid "Unable to check your home location."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:86 mod/wallmessage.php:95
|
||||
msgid "No recipient."
|
||||
msgstr ""
|
||||
|
||||
#: mod/wallmessage.php:143
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you wish for %s to respond, please check that the privacy settings on "
|
||||
"your site allow private mail from unknown senders."
|
||||
msgstr ""
|
||||
|
||||
#: mod/help.php:31
|
||||
msgid "Help:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/help.php:36 include/nav.php:114
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: mod/help.php:45 index.php:272
|
||||
msgid "Page not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536
|
||||
#, php-format
|
||||
msgid "%1$s welcomes %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/home.php:35
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:83
|
||||
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:83
|
||||
msgid "Or - did you try to upload an empty file?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:94
|
||||
#, php-format
|
||||
msgid "File exceeds size limit of %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:145 mod/wall_attach.php:161
|
||||
msgid "File upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/match.php:13
|
||||
msgid "Profile Match"
|
||||
msgstr ""
|
||||
|
||||
#: mod/match.php:22
|
||||
msgid "No keywords to match. Please add keywords to your default profile."
|
||||
msgstr ""
|
||||
|
||||
#: mod/match.php:64
|
||||
msgid "is interested in:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/share.php:38
|
||||
msgid "link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/community.php:23
|
||||
msgid "Not available."
|
||||
msgstr ""
|
||||
|
||||
#: mod/community.php:32 include/nav.php:137 include/nav.php:139
|
||||
#: view/theme/diabook/theme.php:129
|
||||
msgid "Community"
|
||||
msgstr ""
|
||||
|
||||
#: mod/community.php:62 mod/community.php:71 mod/search.php:192
|
||||
#: mod/search.php:199 mod/community.php:62 mod/community.php:71
|
||||
msgid "No results."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:34 mod/photos.php:102
|
||||
msgid "everybody"
|
||||
#: mod/search.php:205
|
||||
#, php-format
|
||||
msgid "Items tagged with: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/search.php:207
|
||||
#, php-format
|
||||
msgid "Search results for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:27
|
||||
msgid "Total invitation limit exceeded."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:49
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:73
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:84
|
||||
msgid "Invitation limit exceeded. Please contact your site administrator."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:89
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:93
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/invite.php:112
|
||||
msgid "You have no more invitations available"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:120
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Visit %s for a list of public sites that you can join. Friendica members on "
|
||||
"other sites can all connect with each other, as well as with members of many "
|
||||
"other social networks."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:122
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To accept this invitation, please visit and register at %s or any other "
|
||||
"public Friendica website."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:123
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks. See %s for a list of alternate Friendica "
|
||||
"sites you can join."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:126
|
||||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other "
|
||||
"public sites or invite members."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:132
|
||||
msgid "Send invitations"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:133
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:135
|
||||
msgid ""
|
||||
"You are cordially invited to join me and other close friends on Friendica - "
|
||||
"and help us to create a better social web."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:137
|
||||
msgid "You will need to supply this invitation code: $invite_code"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:137
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:139
|
||||
msgid ""
|
||||
"For more information about the Friendica project and why we feel it is "
|
||||
"important, please visit http://friendica.com"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:47
|
||||
|
|
@ -3817,7 +3853,7 @@ msgstr ""
|
|||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:60 mod/settings.php:835
|
||||
#: mod/settings.php:60 mod/settings.php:837
|
||||
msgid "Social Networks"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3995,866 +4031,492 @@ msgid ""
|
|||
"unknown user."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:791 mod/settings.php:792
|
||||
#: mod/settings.php:779
|
||||
msgid "Your legacy GNU Social account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:781
|
||||
msgid ""
|
||||
"If you enter your old GNU Social/Statusnet account name here (in the format "
|
||||
"user@domain.tld), your contacts will be added automatically. The field will "
|
||||
"be emptied when done."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:784
|
||||
msgid "Repair OStatus subscriptions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:793 mod/settings.php:794
|
||||
#, php-format
|
||||
msgid "Built-in support for %s connectivity is %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:791 mod/dfrn_request.php:856
|
||||
#: include/contact_selectors.php:80
|
||||
msgid "Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:791 mod/settings.php:792
|
||||
#: mod/settings.php:793 mod/settings.php:794
|
||||
msgid "enabled"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:791 mod/settings.php:792
|
||||
#: mod/settings.php:793 mod/settings.php:794
|
||||
msgid "disabled"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:792
|
||||
#: mod/settings.php:794
|
||||
msgid "GNU Social (OStatus)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:828
|
||||
#: mod/settings.php:830
|
||||
msgid "Email access is disabled on this site."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:840
|
||||
#: mod/settings.php:842
|
||||
msgid "Email/Mailbox Setup"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:841
|
||||
#: mod/settings.php:843
|
||||
msgid ""
|
||||
"If you wish to communicate with email contacts using this service "
|
||||
"(optional), please specify how to connect to your mailbox."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:842
|
||||
#: mod/settings.php:844
|
||||
msgid "Last successful email check:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:844
|
||||
#: mod/settings.php:846
|
||||
msgid "IMAP server name:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:845
|
||||
#: mod/settings.php:847
|
||||
msgid "IMAP port:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:846
|
||||
#: mod/settings.php:848
|
||||
msgid "Security:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:846 mod/settings.php:851
|
||||
#: mod/settings.php:848 mod/settings.php:853
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:847
|
||||
#: mod/settings.php:849
|
||||
msgid "Email login name:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:848
|
||||
#: mod/settings.php:850
|
||||
msgid "Email password:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:849
|
||||
#: mod/settings.php:851
|
||||
msgid "Reply-to address:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:850
|
||||
#: mod/settings.php:852
|
||||
msgid "Send public posts to all email contacts:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:851
|
||||
#: mod/settings.php:853
|
||||
msgid "Action after import:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:851
|
||||
#: mod/settings.php:853
|
||||
msgid "Mark as seen"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:851
|
||||
#: mod/settings.php:853
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:852
|
||||
#: mod/settings.php:854
|
||||
msgid "Move to folder:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:933
|
||||
#: mod/settings.php:935
|
||||
msgid "Display Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:939 mod/settings.php:955
|
||||
#: mod/settings.php:941 mod/settings.php:957
|
||||
msgid "Display Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:940
|
||||
#: mod/settings.php:942
|
||||
msgid "Mobile Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:941
|
||||
#: mod/settings.php:943
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:941
|
||||
#: mod/settings.php:943
|
||||
msgid "Minimum of 10 seconds, no maximum"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:942
|
||||
#: mod/settings.php:944
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:942 mod/settings.php:943
|
||||
#: mod/settings.php:944 mod/settings.php:945
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:943
|
||||
#: mod/settings.php:945
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:944
|
||||
#: mod/settings.php:946
|
||||
msgid "Don't show emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:945
|
||||
#: mod/settings.php:947
|
||||
msgid "Don't show notices"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:946
|
||||
#: mod/settings.php:948
|
||||
msgid "Infinite scroll"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:947
|
||||
#: mod/settings.php:949
|
||||
msgid "Automatic updates only at the top of the network page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:949 view/theme/cleanzero/config.php:82
|
||||
#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66
|
||||
#: view/theme/diabook/config.php:150 view/theme/vier/config.php:58
|
||||
#: view/theme/duepuntozero/config.php:61
|
||||
#: mod/settings.php:951 view/theme/diabook/config.php:150
|
||||
#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72
|
||||
#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66
|
||||
#: view/theme/cleanzero/config.php:82
|
||||
msgid "Theme settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1025
|
||||
#: mod/settings.php:1027
|
||||
msgid "User Types"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1026
|
||||
#: mod/settings.php:1028
|
||||
msgid "Community Types"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1027
|
||||
#: mod/settings.php:1029
|
||||
msgid "Normal Account Page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1028
|
||||
#: mod/settings.php:1030
|
||||
msgid "This account is a normal personal profile"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1031
|
||||
#: mod/settings.php:1033
|
||||
msgid "Soapbox Page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1032
|
||||
#: mod/settings.php:1034
|
||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1035
|
||||
#: mod/settings.php:1037
|
||||
msgid "Community Forum/Celebrity Account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1036
|
||||
#: mod/settings.php:1038
|
||||
msgid "Automatically approve all connection/friend requests as read-write fans"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1039
|
||||
#: mod/settings.php:1041
|
||||
msgid "Automatic Friend Page"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1040
|
||||
#: mod/settings.php:1042
|
||||
msgid "Automatically approve all connection/friend requests as friends"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1043
|
||||
#: mod/settings.php:1045
|
||||
msgid "Private Forum [Experimental]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1044
|
||||
#: mod/settings.php:1046
|
||||
msgid "Private forum - approved members only"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1056
|
||||
#: mod/settings.php:1058
|
||||
msgid "OpenID:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1056
|
||||
#: mod/settings.php:1058
|
||||
msgid "(Optional) Allow this OpenID to login to this account."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1066
|
||||
#: mod/settings.php:1068
|
||||
msgid "Publish your default profile in your local site directory?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1072
|
||||
#: mod/settings.php:1074
|
||||
msgid "Publish your default profile in the global social directory?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1080
|
||||
#: mod/settings.php:1082
|
||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1084 include/acl_selectors.php:330
|
||||
#: mod/settings.php:1086 include/acl_selectors.php:330
|
||||
msgid "Hide your profile details from unknown viewers?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1084
|
||||
#: mod/settings.php:1086
|
||||
msgid ""
|
||||
"If enabled, posting public messages to Diaspora and other networks isn't "
|
||||
"possible."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1089
|
||||
#: mod/settings.php:1091
|
||||
msgid "Allow friends to post to your profile page?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1095
|
||||
#: mod/settings.php:1097
|
||||
msgid "Allow friends to tag your posts?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1101
|
||||
#: mod/settings.php:1103
|
||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1107
|
||||
#: mod/settings.php:1109
|
||||
msgid "Permit unknown people to send you private mail?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1115
|
||||
#: mod/settings.php:1117
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1123
|
||||
#: mod/settings.php:1125
|
||||
#, php-format
|
||||
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1130
|
||||
#: mod/settings.php:1132
|
||||
msgid "Automatically expire posts after this many days:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1130
|
||||
#: mod/settings.php:1132
|
||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1131
|
||||
#: mod/settings.php:1133
|
||||
msgid "Advanced expiration settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1132
|
||||
#: mod/settings.php:1134
|
||||
msgid "Advanced Expiration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1133
|
||||
#: mod/settings.php:1135
|
||||
msgid "Expire posts:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1134
|
||||
#: mod/settings.php:1136
|
||||
msgid "Expire personal notes:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1135
|
||||
#: mod/settings.php:1137
|
||||
msgid "Expire starred posts:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1136
|
||||
#: mod/settings.php:1138
|
||||
msgid "Expire photos:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1137
|
||||
#: mod/settings.php:1139
|
||||
msgid "Only expire posts by others:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1163
|
||||
#: mod/settings.php:1165
|
||||
msgid "Account Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1171
|
||||
#: mod/settings.php:1173
|
||||
msgid "Password Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1172 mod/register.php:271
|
||||
msgid "New Password:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1173 mod/register.php:272
|
||||
msgid "Confirm:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1173
|
||||
#: mod/settings.php:1175
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1174
|
||||
#: mod/settings.php:1176
|
||||
msgid "Current Password:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1174 mod/settings.php:1175
|
||||
#: mod/settings.php:1176 mod/settings.php:1177
|
||||
msgid "Your current password to confirm the changes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1175
|
||||
#: mod/settings.php:1177
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1179
|
||||
#: mod/settings.php:1181
|
||||
msgid "Basic Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1180 include/identity.php:538
|
||||
#: mod/settings.php:1182 include/identity.php:539
|
||||
msgid "Full Name:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1181
|
||||
#: mod/settings.php:1183
|
||||
msgid "Email Address:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1182
|
||||
#: mod/settings.php:1184
|
||||
msgid "Your Timezone:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1183
|
||||
#: mod/settings.php:1185
|
||||
msgid "Default Post Location:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1184
|
||||
#: mod/settings.php:1186
|
||||
msgid "Use Browser Location:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1187
|
||||
#: mod/settings.php:1189
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1189
|
||||
#: mod/settings.php:1191
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1189 mod/settings.php:1219
|
||||
#: mod/settings.php:1191 mod/settings.php:1221
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1190
|
||||
#: mod/settings.php:1192
|
||||
msgid "Default Post Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1191
|
||||
#: mod/settings.php:1193
|
||||
msgid "(click to open/close)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538
|
||||
msgid "Show to Groups"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539
|
||||
msgid "Show to Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1202
|
||||
#: mod/settings.php:1204
|
||||
msgid "Default Private Post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1203
|
||||
#: mod/settings.php:1205
|
||||
msgid "Default Public Post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1207
|
||||
#: mod/settings.php:1209
|
||||
msgid "Default Permissions for New Posts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1219
|
||||
#: mod/settings.php:1221
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1222
|
||||
#: mod/settings.php:1224
|
||||
msgid "Notification Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1223
|
||||
#: mod/settings.php:1225
|
||||
msgid "By default post a status message when:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1224
|
||||
#: mod/settings.php:1226
|
||||
msgid "accepting a friend request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1225
|
||||
#: mod/settings.php:1227
|
||||
msgid "joining a forum/community"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1226
|
||||
#: mod/settings.php:1228
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1227
|
||||
#: mod/settings.php:1229
|
||||
msgid "Send a notification email when:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1228
|
||||
#: mod/settings.php:1230
|
||||
msgid "You receive an introduction"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1229
|
||||
#: mod/settings.php:1231
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1230
|
||||
#: mod/settings.php:1232
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1231
|
||||
#: mod/settings.php:1233
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1232
|
||||
#: mod/settings.php:1234
|
||||
msgid "You receive a private message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1233
|
||||
#: mod/settings.php:1235
|
||||
msgid "You receive a friend suggestion"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1234
|
||||
#: mod/settings.php:1236
|
||||
msgid "You are tagged in a post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1235
|
||||
#: mod/settings.php:1237
|
||||
msgid "You are poked/prodded/etc. in a post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1237
|
||||
#: mod/settings.php:1239
|
||||
msgid "Activate desktop notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1237
|
||||
#: mod/settings.php:1239
|
||||
msgid "Show desktop popup on new notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1239
|
||||
#: mod/settings.php:1241
|
||||
msgid "Text-only notification emails"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1241
|
||||
#: mod/settings.php:1243
|
||||
msgid "Send text only notification emails, without the html part"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1243
|
||||
#: mod/settings.php:1245
|
||||
msgid "Advanced Account/Page Type Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1244
|
||||
#: mod/settings.php:1246
|
||||
msgid "Change the behaviour of this account for special situations"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1247
|
||||
#: mod/settings.php:1249
|
||||
msgid "Relocate"
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1248
|
||||
#: mod/settings.php:1250
|
||||
msgid ""
|
||||
"If you have moved this profile from another server, and some of your "
|
||||
"contacts don't receive your updates, try pushing this button."
|
||||
msgstr ""
|
||||
|
||||
#: mod/settings.php:1249
|
||||
#: mod/settings.php:1251
|
||||
msgid "Resend relocate message to contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:95
|
||||
msgid "This introduction has already been accepted."
|
||||
#: mod/display.php:505
|
||||
msgid "Item has been removed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:120 mod/dfrn_request.php:518
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:125 mod/dfrn_request.php:523
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:127 mod/dfrn_request.php:525
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:130 mod/dfrn_request.php:528
|
||||
#: mod/dirfind.php:36
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/dfrn_request.php:172
|
||||
msgid "Introduction complete."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:214
|
||||
msgid "Unrecoverable protocol error."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:242
|
||||
msgid "Profile unavailable."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:267
|
||||
#, php-format
|
||||
msgid "%s has received too many connection requests today."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:268
|
||||
msgid "Spam protection measures have been invoked."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:269
|
||||
msgid "Friends are advised to please try again in 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:331
|
||||
msgid "Invalid locator"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:340
|
||||
msgid "Invalid email address."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:367
|
||||
msgid "This account has not been configured for email. Request failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:463
|
||||
msgid "Unable to resolve your name at the provided location."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:476
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:480
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:501
|
||||
msgid "Invalid profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:507 include/follow.php:70
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:597
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:650
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:660
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to <strong>this</"
|
||||
"strong> profile."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:674 mod/dfrn_request.php:691
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:686
|
||||
msgid "Hide this contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:689
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:690
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:819
|
||||
msgid ""
|
||||
"Please enter your 'Identity Address' from one of the following supported "
|
||||
"communications networks:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:840
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
|
||||
"\">follow this link to find a public Friendica site and join us today</a>."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:845
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:846
|
||||
msgid ""
|
||||
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
|
||||
"testuser@identi.ca"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:854 include/contact_selectors.php:76
|
||||
msgid "Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:855
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_request.php:857
|
||||
#, php-format
|
||||
msgid ""
|
||||
" - please do not use this form. Instead, enter %s into your Diaspora search "
|
||||
"bar."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:92
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:97
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Failed to send email message. Here your accout details:<br> login: %s<br> "
|
||||
"password: %s<br><br>You can change your password after login."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:107
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:150
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:188 mod/uimport.php:50
|
||||
msgid ""
|
||||
"This site has exceeded the number of allowed daily account registrations. "
|
||||
"Please try again tomorrow."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:216
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking 'Register'."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:217
|
||||
msgid ""
|
||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||
"in the rest of the items."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:218
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:232
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:256
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:257
|
||||
msgid "Your invitation ID: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:268
|
||||
msgid "Your Full Name (e.g. Joe Smith): "
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:269
|
||||
msgid "Your Email Address: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:271
|
||||
msgid "Leave empty for an auto generated password."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:273
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be '<strong>nickname@$sitename</"
|
||||
"strong>'."
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:274
|
||||
msgid "Choose a nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:277 boot.php:1248 include/nav.php:109
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:283 mod/uimport.php:64
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: mod/register.php:284
|
||||
msgid "Import your profile to this friendica instance"
|
||||
msgstr ""
|
||||
|
||||
#: mod/maintenance.php:5
|
||||
msgid "System down for maintenance"
|
||||
msgstr ""
|
||||
|
||||
#: mod/search.php:100 include/text.php:996 include/nav.php:119
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: mod/search.php:198
|
||||
#, php-format
|
||||
msgid "Items tagged with: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/search.php:200
|
||||
#, php-format
|
||||
msgid "Search results for: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:53 view/theme/diabook/theme.php:525
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:61
|
||||
msgid "Find on this site"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:64
|
||||
msgid "Site Directory"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:129 mod/profiles.php:747
|
||||
msgid "Age: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:132
|
||||
msgid "Gender: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:156 include/identity.php:273 include/identity.php:560
|
||||
msgid "Status:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:158 include/identity.php:275 include/identity.php:571
|
||||
msgid "Homepage:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:205
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:101
|
||||
msgid "No potential page delegates located."
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:130 include/nav.php:179
|
||||
msgid "Delegate Page Management"
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:132
|
||||
msgid ""
|
||||
"Delegates are able to manage all aspects of this account/page except for "
|
||||
"basic account settings. Please do not delegate your personal account to "
|
||||
"anybody that you do not trust completely."
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:133
|
||||
msgid "Existing Page Managers"
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:135
|
||||
msgid "Existing Page Delegates"
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:137
|
||||
msgid "Potential Delegates"
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:140
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:141
|
||||
msgid "No entries."
|
||||
msgstr ""
|
||||
|
||||
#: mod/common.php:45
|
||||
msgid "Common Friends"
|
||||
msgstr ""
|
||||
|
||||
#: mod/common.php:82
|
||||
msgid "No contacts in common."
|
||||
msgstr ""
|
||||
|
||||
#: mod/uexport.php:77
|
||||
msgid "Export account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/uexport.php:77
|
||||
msgid ""
|
||||
"Export your account info and contacts. Use this to make a backup of your "
|
||||
"account and/or to move it to another server."
|
||||
msgstr ""
|
||||
|
||||
#: mod/uexport.php:78
|
||||
msgid "Export all"
|
||||
msgstr ""
|
||||
|
||||
#: mod/uexport.php:78
|
||||
msgid ""
|
||||
"Export your accout info, contacts and all your items as json. Could be a "
|
||||
"very big file, and could take a lot of time. Use this to make a full backup "
|
||||
"of your account (photos are not exported)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/mood.php:62 include/conversation.php:226
|
||||
#, php-format
|
||||
msgid "%1$s is currently %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/mood.php:133
|
||||
msgid "Mood"
|
||||
msgstr ""
|
||||
|
||||
#: mod/mood.php:134
|
||||
msgid "Set your current mood and tell your friends"
|
||||
msgstr ""
|
||||
|
||||
#: mod/suggest.php:27
|
||||
msgid "Do you really want to delete this suggestion?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/suggest.php:69 include/contact_widgets.php:35
|
||||
#: view/theme/diabook/theme.php:527
|
||||
msgid "Friend Suggestions"
|
||||
msgid "People Search - %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/suggest.php:76
|
||||
msgid ""
|
||||
"No suggestions available. If this is a new site, please try again in 24 "
|
||||
"hours."
|
||||
#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70
|
||||
#: include/identity.php:188 include/contact_widgets.php:10
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: mod/suggest.php:94
|
||||
msgid "Ignore/Hide"
|
||||
#: mod/dirfind.php:141 mod/match.php:77
|
||||
msgid "No matches"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:37
|
||||
|
|
@ -5064,7 +4726,7 @@ msgstr ""
|
|||
msgid "Since [date]:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:711 include/identity.php:569
|
||||
#: mod/profiles.php:711 include/identity.php:570
|
||||
msgid "Sexual Preference:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5072,11 +4734,11 @@ msgstr ""
|
|||
msgid "Homepage URL:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:713 include/identity.php:573
|
||||
#: mod/profiles.php:713 include/identity.php:574
|
||||
msgid "Hometown:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:714 include/identity.php:577
|
||||
#: mod/profiles.php:714 include/identity.php:578
|
||||
msgid "Political Views:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5092,11 +4754,11 @@ msgstr ""
|
|||
msgid "Private Keywords:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:718 include/identity.php:585
|
||||
#: mod/profiles.php:718 include/identity.php:586
|
||||
msgid "Likes:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:719 include/identity.php:587
|
||||
#: mod/profiles.php:719 include/identity.php:588
|
||||
msgid "Dislikes:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5158,6 +4820,10 @@ msgid ""
|
|||
"be visible to anybody using the internet."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:747 mod/directory.php:129
|
||||
msgid "Age: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/profiles.php:800
|
||||
msgid "Edit/Manage Profiles"
|
||||
msgstr ""
|
||||
|
|
@ -5182,153 +4848,284 @@ msgstr ""
|
|||
msgid "Edit visibility"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:17 mod/editpost.php:27
|
||||
msgid "Item not found"
|
||||
#: mod/share.php:38
|
||||
msgid "link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:40
|
||||
msgid "Edit post"
|
||||
#: mod/uexport.php:77
|
||||
msgid "Export account"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:111 include/conversation.php:1057
|
||||
msgid "upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:112 include/conversation.php:1058
|
||||
msgid "Attach file"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:113 include/conversation.php:1059
|
||||
msgid "attach file"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:115 include/conversation.php:1061
|
||||
msgid "web link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:116 include/conversation.php:1062
|
||||
msgid "Insert video link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:117 include/conversation.php:1063
|
||||
msgid "video link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:118 include/conversation.php:1064
|
||||
msgid "Insert audio link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:119 include/conversation.php:1065
|
||||
msgid "audio link"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:120 include/conversation.php:1066
|
||||
msgid "Set your location"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:121 include/conversation.php:1067
|
||||
msgid "set location"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:122 include/conversation.php:1068
|
||||
msgid "Clear browser location"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:123 include/conversation.php:1069
|
||||
msgid "clear location"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:125 include/conversation.php:1075
|
||||
msgid "Permission settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:133 include/acl_selectors.php:343
|
||||
msgid "CC: email addresses"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:134 include/conversation.php:1084
|
||||
msgid "Public post"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:137 include/conversation.php:1071
|
||||
msgid "Set title"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:139 include/conversation.php:1073
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/editpost.php:140 include/acl_selectors.php:344
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:59
|
||||
msgid "This is Friendica, version"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:60
|
||||
msgid "running at web location"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:62
|
||||
#: mod/uexport.php:77
|
||||
msgid ""
|
||||
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
|
||||
"more about the Friendica project."
|
||||
"Export your account info and contacts. Use this to make a backup of your "
|
||||
"account and/or to move it to another server."
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:64
|
||||
msgid "Bug reports and issues: please visit"
|
||||
#: mod/uexport.php:78
|
||||
msgid "Export all"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:64
|
||||
msgid "the bugtracker at github"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:65
|
||||
#: mod/uexport.php:78
|
||||
msgid ""
|
||||
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
|
||||
"dot com"
|
||||
"Export your accout info, contacts and all your items as json. Could be a "
|
||||
"very big file, and could take a lot of time. Use this to make a full backup "
|
||||
"of your account (photos are not exported)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:79
|
||||
msgid "Installed plugins/addons/apps:"
|
||||
#: mod/ping.php:233
|
||||
msgid "{0} wants to be your friend"
|
||||
msgstr ""
|
||||
|
||||
#: mod/friendica.php:92
|
||||
msgid "No installed plugins/addons/apps"
|
||||
#: mod/ping.php:248
|
||||
msgid "{0} sent you a message"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:76 mod/api.php:102
|
||||
msgid "Authorize application connection"
|
||||
#: mod/ping.php:263
|
||||
msgid "{0} requested registration"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:77
|
||||
msgid "Return to your app and insert this Securty Code:"
|
||||
#: mod/navigation.php:20 include/nav.php:34
|
||||
msgid "Nothing new here"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:89
|
||||
msgid "Please login to continue."
|
||||
#: mod/navigation.php:24 include/nav.php:38
|
||||
msgid "Clear notifications"
|
||||
msgstr ""
|
||||
|
||||
#: mod/api.php:104
|
||||
#: mod/community.php:23
|
||||
msgid "Not available."
|
||||
msgstr ""
|
||||
|
||||
#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137
|
||||
#: include/nav.php:139
|
||||
msgid "Community"
|
||||
msgstr ""
|
||||
|
||||
#: mod/filer.php:30 include/conversation.php:1005
|
||||
#: include/conversation.php:1023
|
||||
msgid "Save to Folder:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/filer.php:30
|
||||
msgid "- select -"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:83
|
||||
msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:83
|
||||
msgid "Or - did you try to upload an empty file?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:94
|
||||
#, php-format
|
||||
msgid "File exceeds size limit of %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/wall_attach.php:145 mod/wall_attach.php:161
|
||||
msgid "File upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:25 mod/profperm.php:56
|
||||
msgid "Invalid profile identifier."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:102
|
||||
msgid "Profile Visibility Editor"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:106 mod/group.php:222
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:115
|
||||
msgid "Visible To"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profperm.php:131
|
||||
msgid "All Contacts (with secure profile access)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/suggest.php:27
|
||||
msgid "Do you really want to delete this suggestion?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/suggest.php:69 view/theme/diabook/theme.php:527
|
||||
#: include/contact_widgets.php:35
|
||||
msgid "Friend Suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/suggest.php:76
|
||||
msgid ""
|
||||
"Do you want to authorize this application to access your posts and contacts, "
|
||||
"and/or create new posts for you?"
|
||||
"No suggestions available. If this is a new site, please try again in 24 "
|
||||
"hours."
|
||||
msgstr ""
|
||||
|
||||
#: mod/lockview.php:31 mod/lockview.php:39
|
||||
msgid "Remote privacy information not available."
|
||||
#: mod/suggest.php:94
|
||||
msgid "Ignore/Hide"
|
||||
msgstr ""
|
||||
|
||||
#: mod/lockview.php:48
|
||||
msgid "Visible to:"
|
||||
#: mod/viewsrc.php:7
|
||||
msgid "Access denied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/notes.php:44 include/identity.php:675
|
||||
#: mod/repair_ostatus.php:14
|
||||
msgid "Resubsribing to OStatus contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/repair_ostatus.php:30
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
|
||||
msgid "Keep this window open until done."
|
||||
msgstr ""
|
||||
|
||||
#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536
|
||||
#, php-format
|
||||
msgid "%1$s welcomes %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/manage.php:106
|
||||
msgid "Manage Identities and/or Pages"
|
||||
msgstr ""
|
||||
|
||||
#: mod/manage.php:107
|
||||
msgid ""
|
||||
"Toggle between different identities or community/group pages which share "
|
||||
"your account details or which you have been granted \"manage\" permissions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/manage.php:108
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:101
|
||||
msgid "No potential page delegates located."
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:130 include/nav.php:179
|
||||
msgid "Delegate Page Management"
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:132
|
||||
msgid ""
|
||||
"Delegates are able to manage all aspects of this account/page except for "
|
||||
"basic account settings. Please do not delegate your personal account to "
|
||||
"anybody that you do not trust completely."
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:133
|
||||
msgid "Existing Page Managers"
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:135
|
||||
msgid "Existing Page Delegates"
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:137
|
||||
msgid "Potential Delegates"
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:140
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
#: mod/delegate.php:141
|
||||
msgid "No entries."
|
||||
msgstr ""
|
||||
|
||||
#: mod/viewcontacts.php:41
|
||||
msgid "No contacts."
|
||||
msgstr ""
|
||||
|
||||
#: mod/viewcontacts.php:78 include/text.php:917
|
||||
msgid "View Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/notes.php:44 include/identity.php:676
|
||||
msgid "Personal Notes"
|
||||
msgstr ""
|
||||
|
||||
#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13
|
||||
#: mod/poke.php:192
|
||||
msgid "Poke/Prod"
|
||||
msgstr ""
|
||||
|
||||
#: mod/poke.php:193
|
||||
msgid "poke, prod or do other things to somebody"
|
||||
msgstr ""
|
||||
|
||||
#: mod/poke.php:194
|
||||
msgid "Recipient"
|
||||
msgstr ""
|
||||
|
||||
#: mod/poke.php:195
|
||||
msgid "Choose what you wish to do to recipient"
|
||||
msgstr ""
|
||||
|
||||
#: mod/poke.php:198
|
||||
msgid "Make this post private"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:53 view/theme/diabook/theme.php:525
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:61
|
||||
msgid "Find on this site"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:64
|
||||
msgid "Site Directory"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:132
|
||||
msgid "Gender: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:156 include/identity.php:273 include/identity.php:561
|
||||
msgid "Status:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:158 include/identity.php:275 include/identity.php:572
|
||||
msgid "Homepage:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/directory.php:205
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:14
|
||||
msgid "Subsribing to OStatus contacts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:25
|
||||
msgid "No contact provided."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:30
|
||||
msgid "Couldn't fetch information for contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:38
|
||||
msgid "Couldn't fetch friends for contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:65
|
||||
msgid "success"
|
||||
msgstr ""
|
||||
|
||||
#: mod/ostatus_subscribe.php:67
|
||||
msgid "failed"
|
||||
msgstr ""
|
||||
|
||||
#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148
|
||||
msgid "l F d, Y \\@ g:i A"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5361,302 +5158,439 @@ msgstr ""
|
|||
msgid "Please select your timezone:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/poke.php:192
|
||||
msgid "Poke/Prod"
|
||||
#: mod/oexchange.php:25
|
||||
msgid "Post successful."
|
||||
msgstr ""
|
||||
|
||||
#: mod/poke.php:193
|
||||
msgid "poke, prod or do other things to somebody"
|
||||
#: mod/profile_photo.php:44
|
||||
msgid "Image uploaded but image cropping failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/poke.php:194
|
||||
msgid "Recipient"
|
||||
msgstr ""
|
||||
|
||||
#: mod/poke.php:195
|
||||
msgid "Choose what you wish to do to recipient"
|
||||
msgstr ""
|
||||
|
||||
#: mod/poke.php:198
|
||||
msgid "Make this post private"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:27
|
||||
msgid "Total invitation limit exceeded."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:49
|
||||
#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
|
||||
#: mod/profile_photo.php:308
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgid "Image size reduction [%s] failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:73
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:84
|
||||
msgid "Invitation limit exceeded. Please contact your site administrator."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:89
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:93
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/invite.php:112
|
||||
msgid "You have no more invitations available"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:120
|
||||
#, php-format
|
||||
#: mod/profile_photo.php:118
|
||||
msgid ""
|
||||
"Visit %s for a list of public sites that you can join. Friendica members on "
|
||||
"other sites can all connect with each other, as well as with members of many "
|
||||
"other social networks."
|
||||
"Shift-reload the page or clear browser cache if the new photo does not "
|
||||
"display immediately."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:122
|
||||
#, php-format
|
||||
#: mod/profile_photo.php:128
|
||||
msgid "Unable to process image"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:242
|
||||
msgid "Upload File:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:243
|
||||
msgid "Select a profile:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:245
|
||||
#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96
|
||||
#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96
|
||||
#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:248
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:248
|
||||
msgid "skip this step"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:248
|
||||
msgid "select a photo from your photo albums"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:262
|
||||
msgid "Crop Image"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:263
|
||||
msgid "Please adjust the image cropping for optimum viewing."
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:265
|
||||
msgid "Done Editing"
|
||||
msgstr ""
|
||||
|
||||
#: mod/profile_photo.php:299
|
||||
msgid "Image uploaded successfully."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:119
|
||||
msgid "Friendica Communications Server - Setup"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:125
|
||||
msgid "Could not connect to database."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:129
|
||||
msgid "Could not create table."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:135
|
||||
msgid "Your Friendica site database has been installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:140
|
||||
msgid ""
|
||||
"To accept this invitation, please visit and register at %s or any other "
|
||||
"public Friendica website."
|
||||
"You may need to import the file \"database.sql\" manually using phpmyadmin "
|
||||
"or mysql."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:123
|
||||
#, php-format
|
||||
#: mod/install.php:141 mod/install.php:208 mod/install.php:537
|
||||
msgid "Please see the file \"INSTALL.txt\"."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:153
|
||||
msgid "Database already in use."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:205
|
||||
msgid "System check"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:210
|
||||
msgid "Check again"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:229
|
||||
msgid "Database connection"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:230
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
"web that is owned and controlled by its members. They can also connect with "
|
||||
"many traditional social networks. See %s for a list of alternate Friendica "
|
||||
"sites you can join."
|
||||
"In order to install Friendica we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:126
|
||||
#: mod/install.php:231
|
||||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other "
|
||||
"public sites or invite members."
|
||||
"Please contact your hosting provider or site administrator if you have "
|
||||
"questions about these settings."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:132
|
||||
msgid "Send invitations"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:133
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:135
|
||||
#: mod/install.php:232
|
||||
msgid ""
|
||||
"You are cordially invited to join me and other close friends on Friendica - "
|
||||
"and help us to create a better social web."
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:137
|
||||
msgid "You will need to supply this invitation code: $invite_code"
|
||||
#: mod/install.php:236
|
||||
msgid "Database Server Name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:137
|
||||
#: mod/install.php:237
|
||||
msgid "Database Login Name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:238
|
||||
msgid "Database Login Password"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:239
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:240 mod/install.php:279
|
||||
msgid "Site administrator email address"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:240 mod/install.php:279
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
"Your account email address must match this in order to use the web admin "
|
||||
"panel."
|
||||
msgstr ""
|
||||
|
||||
#: mod/invite.php:139
|
||||
#: mod/install.php:244 mod/install.php:282
|
||||
msgid "Please select a default timezone for your website"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:269
|
||||
msgid "Site settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:323
|
||||
msgid "Could not find a command line version of PHP in the web server PATH."
|
||||
msgstr ""
|
||||
|
||||
#: mod/install.php:324
|
||||
msgid ""
|
||||
"For more information about the Friendica project and why we feel it is "
|
||||
"important, please visit http://friendica.com"
|
||||
"If you don't have a command line version of PHP installed on server, you "
|
||||
"will not be able to run background polling via cron. See <a href='http://"
|
||||
"friendica.com/node/27'>'Activating scheduled tasks'</a>"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:50 mod/photos.php:177 mod/photos.php:1086 mod/photos.php:1207
|
||||
#: mod/photos.php:1230 mod/photos.php:1779 mod/photos.php:1791
|
||||
#: view/theme/diabook/theme.php:499
|
||||
msgid "Contact Photos"
|
||||
#: mod/install.php:328
|
||||
msgid "PHP executable path"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:84 include/identity.php:651
|
||||
msgid "Photo Albums"
|
||||
#: mod/install.php:328
|
||||
msgid ""
|
||||
"Enter full path to php executable. You can leave this blank to continue the "
|
||||
"installation."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:85 mod/photos.php:1836
|
||||
msgid "Recent Photos"
|
||||
#: mod/install.php:333
|
||||
msgid "Command line PHP"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838
|
||||
msgid "Upload New Photos"
|
||||
#: mod/install.php:342
|
||||
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:166
|
||||
msgid "Contact information unavailable"
|
||||
#: mod/install.php:343
|
||||
msgid "Found PHP version: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:187
|
||||
msgid "Album not found."
|
||||
#: mod/install.php:345
|
||||
msgid "PHP cli binary"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224
|
||||
msgid "Delete Album"
|
||||
#: mod/install.php:356
|
||||
msgid ""
|
||||
"The command line version of PHP on your system does not have "
|
||||
"\"register_argc_argv\" enabled."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:220
|
||||
msgid "Do you really want to delete this photo album and all its photos?"
|
||||
#: mod/install.php:357
|
||||
msgid "This is required for message delivery to work."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534
|
||||
msgid "Delete Photo"
|
||||
#: mod/install.php:359
|
||||
msgid "PHP register_argc_argv"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:309
|
||||
msgid "Do you really want to delete this photo?"
|
||||
#: mod/install.php:380
|
||||
msgid ""
|
||||
"Error: the \"openssl_pkey_new\" function on this system is not able to "
|
||||
"generate encryption keys"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:684
|
||||
#, php-format
|
||||
msgid "%1$s was tagged in %2$s by %3$s"
|
||||
#: mod/install.php:381
|
||||
msgid ""
|
||||
"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
|
||||
"installation.php\"."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:684
|
||||
msgid "a photo"
|
||||
#: mod/install.php:383
|
||||
msgid "Generate encryption keys"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:797
|
||||
msgid "Image file is empty."
|
||||
#: mod/install.php:390
|
||||
msgid "libCurl PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:952
|
||||
msgid "No photos selected"
|
||||
#: mod/install.php:391
|
||||
msgid "GD graphics PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1114
|
||||
#, php-format
|
||||
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
|
||||
#: mod/install.php:392
|
||||
msgid "OpenSSL PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1149
|
||||
msgid "Upload Photos"
|
||||
#: mod/install.php:393
|
||||
msgid "mysqli PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1153 mod/photos.php:1219
|
||||
msgid "New album name: "
|
||||
#: mod/install.php:394
|
||||
msgid "mb_string PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1154
|
||||
msgid "or existing album name: "
|
||||
#: mod/install.php:395
|
||||
msgid "mcrypt PHP module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1155
|
||||
msgid "Do not show a status post for this upload"
|
||||
#: mod/install.php:400 mod/install.php:402
|
||||
msgid "Apache mod_rewrite module"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346
|
||||
msgid "Permissions"
|
||||
#: mod/install.php:400
|
||||
msgid ""
|
||||
"Error: Apache webserver mod-rewrite module is required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1168
|
||||
msgid "Private Photo"
|
||||
#: mod/install.php:408
|
||||
msgid "Error: libCURL PHP module required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1169
|
||||
msgid "Public Photo"
|
||||
#: mod/install.php:412
|
||||
msgid ""
|
||||
"Error: GD graphics PHP module with JPEG support required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1232
|
||||
msgid "Edit Album"
|
||||
#: mod/install.php:416
|
||||
msgid "Error: openssl PHP module required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1238
|
||||
msgid "Show Newest First"
|
||||
#: mod/install.php:420
|
||||
msgid "Error: mysqli PHP module required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1240
|
||||
msgid "Show Oldest First"
|
||||
#: mod/install.php:424
|
||||
msgid "Error: mb_string PHP module required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1268 mod/photos.php:1821
|
||||
msgid "View Photo"
|
||||
#: mod/install.php:428
|
||||
msgid "Error: mcrypt PHP module required but not installed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1314
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
#: mod/install.php:447
|
||||
msgid ""
|
||||
"The web installer needs to be able to create a file called \".htconfig.php\" "
|
||||
"in the top folder of your web server and it is unable to do so."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1316
|
||||
msgid "Photo not available"
|
||||
#: mod/install.php:448
|
||||
msgid ""
|
||||
"This is most often a permission setting, as the web server may not be able "
|
||||
"to write files in your folder - even if you can."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1372
|
||||
msgid "View photo"
|
||||
#: mod/install.php:449
|
||||
msgid ""
|
||||
"At the end of this procedure, we will give you a text to save in a file "
|
||||
"named .htconfig.php in your Friendica top folder."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1372
|
||||
msgid "Edit photo"
|
||||
#: mod/install.php:450
|
||||
msgid ""
|
||||
"You can alternatively skip this procedure and perform a manual installation. "
|
||||
"Please see the file \"INSTALL.txt\" for instructions."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1373
|
||||
msgid "Use as profile photo"
|
||||
#: mod/install.php:453
|
||||
msgid ".htconfig.php is writable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1398
|
||||
msgid "View Full Size"
|
||||
#: mod/install.php:463
|
||||
msgid ""
|
||||
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
|
||||
"compiles templates to PHP to speed up rendering."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1477
|
||||
msgid "Tags: "
|
||||
#: mod/install.php:464
|
||||
msgid ""
|
||||
"In order to store these compiled templates, the web server needs to have "
|
||||
"write access to the directory view/smarty3/ under the Friendica top level "
|
||||
"folder."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1480
|
||||
msgid "[Remove any tag]"
|
||||
#: mod/install.php:465
|
||||
msgid ""
|
||||
"Please ensure that the user that your web server runs as (e.g. www-data) has "
|
||||
"write access to this folder."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1520
|
||||
msgid "New album name"
|
||||
#: mod/install.php:466
|
||||
msgid ""
|
||||
"Note: as a security measure, you should give the web server write access to "
|
||||
"view/smarty3/ only--not the template files (.tpl) that it contains."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1521
|
||||
msgid "Caption"
|
||||
#: mod/install.php:469
|
||||
msgid "view/smarty3 is writable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1522
|
||||
msgid "Add a Tag"
|
||||
#: mod/install.php:485
|
||||
msgid ""
|
||||
"Url rewrite in .htaccess is not working. Check your server configuration."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1522
|
||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
#: mod/install.php:487
|
||||
msgid "Url rewrite is working"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1523
|
||||
msgid "Do not rotate"
|
||||
#: mod/install.php:496
|
||||
msgid ""
|
||||
"The database configuration file \".htconfig.php\" could not be written. "
|
||||
"Please use the enclosed text to create a configuration file in your web "
|
||||
"server root."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1524
|
||||
msgid "Rotate CW (right)"
|
||||
#: mod/install.php:535
|
||||
msgid "<h1>What next</h1>"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1525
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1540
|
||||
msgid "Private photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1541
|
||||
msgid "Public photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1563 include/conversation.php:1055
|
||||
msgid "Share"
|
||||
#: mod/install.php:536
|
||||
msgid ""
|
||||
"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
|
||||
msgstr ""
|
||||
|
||||
#: mod/p.php:9
|
||||
msgid "Not Extended"
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:29
|
||||
msgid "Group created."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:35
|
||||
msgid "Could not create group."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:47 mod/group.php:140
|
||||
msgid "Group not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:60
|
||||
msgid "Group name changed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:87
|
||||
msgid "Save Group"
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:93
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:94 mod/group.php:178 include/group.php:273
|
||||
msgid "Group Name: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:113
|
||||
msgid "Group removed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:115
|
||||
msgid "Unable to remove group."
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:177
|
||||
msgid "Group Editor"
|
||||
msgstr ""
|
||||
|
||||
#: mod/group.php:190
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:119 mod/network.php:532
|
||||
msgid "No such group"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:130 mod/network.php:549
|
||||
msgid "Group is empty"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:135 mod/network.php:560
|
||||
#, php-format
|
||||
msgid "Group: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/content.php:499 include/conversation.php:689
|
||||
msgid "View in context"
|
||||
msgstr ""
|
||||
|
||||
#: mod/regmod.php:55
|
||||
msgid "Account approved."
|
||||
msgstr ""
|
||||
|
|
@ -5670,43 +5604,520 @@ msgstr ""
|
|||
msgid "Please login."
|
||||
msgstr ""
|
||||
|
||||
#: mod/uimport.php:66
|
||||
msgid "Move account"
|
||||
#: mod/match.php:18
|
||||
msgid "Profile Match"
|
||||
msgstr ""
|
||||
|
||||
#: mod/uimport.php:67
|
||||
msgid "You can import an account from another Friendica server."
|
||||
#: mod/match.php:27
|
||||
msgid "No keywords to match. Please add keywords to your default profile."
|
||||
msgstr ""
|
||||
|
||||
#: mod/uimport.php:68
|
||||
#: mod/match.php:69
|
||||
msgid "is interested in:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:115
|
||||
msgid "Unable to locate original post."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:347
|
||||
msgid "Empty post discarded."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:860
|
||||
msgid "System error. Post not saved."
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:989
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You need to export your account from the old server and upload it here. We "
|
||||
"will recreate your old account here with all your contacts. We will try also "
|
||||
"to inform your friends that you moved here."
|
||||
"This message was sent to you by %s, a member of the Friendica social network."
|
||||
msgstr ""
|
||||
|
||||
#: mod/uimport.php:69
|
||||
#: mod/item.php:991
|
||||
#, php-format
|
||||
msgid "You may visit them online at %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/item.php:992
|
||||
msgid ""
|
||||
"This feature is experimental. We can't import contacts from the OStatus "
|
||||
"network (statusnet/identi.ca) or from Diaspora"
|
||||
"Please contact the sender by replying to this post if you do not wish to "
|
||||
"receive these messages."
|
||||
msgstr ""
|
||||
|
||||
#: mod/uimport.php:70
|
||||
msgid "Account file"
|
||||
#: mod/item.php:996
|
||||
#, php-format
|
||||
msgid "%s posted an update."
|
||||
msgstr ""
|
||||
|
||||
#: mod/uimport.php:70
|
||||
#: mod/mood.php:62 include/conversation.php:226
|
||||
#, php-format
|
||||
msgid "%1$s is currently %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/mood.php:133
|
||||
msgid "Mood"
|
||||
msgstr ""
|
||||
|
||||
#: mod/mood.php:134
|
||||
msgid "Set your current mood and tell your friends"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:143
|
||||
#, php-format
|
||||
msgid "Search Results For: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:197 include/group.php:277
|
||||
msgid "add"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:358
|
||||
msgid "Commented Order"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:361
|
||||
msgid "Sort by Comment Date"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:365
|
||||
msgid "Posted Order"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:368
|
||||
msgid "Sort by Post Date"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:378
|
||||
msgid "Posts that mention or involve you"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:385
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:388
|
||||
msgid "Activity Stream - by date"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:395
|
||||
msgid "Shared Links"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:398
|
||||
msgid "Interesting Links"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:405
|
||||
msgid "Starred"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:408
|
||||
msgid "Favourite Posts"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:466
|
||||
#, php-format
|
||||
msgid "Warning: This group contains %s member from an insecure network."
|
||||
msgid_plural ""
|
||||
"Warning: This group contains %s members from an insecure network."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: mod/network.php:469
|
||||
msgid "Private messages to this group are at risk of public disclosure."
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:578
|
||||
#, php-format
|
||||
msgid "Contact: %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:582
|
||||
msgid "Private messages to this person are at risk of public disclosure."
|
||||
msgstr ""
|
||||
|
||||
#: mod/network.php:587
|
||||
msgid "Invalid contact."
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:107
|
||||
msgid "Contact settings applied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:109
|
||||
msgid "Contact update failed."
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:140
|
||||
msgid "Repair Contact Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:142
|
||||
msgid ""
|
||||
"To export your account, go to \"Settings->Export your personal data\" and "
|
||||
"select \"Export account\""
|
||||
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
|
||||
"information your communications with this contact may stop working."
|
||||
msgstr ""
|
||||
|
||||
#: mod/attach.php:8
|
||||
msgid "Item not available."
|
||||
#: mod/crepair.php:143
|
||||
msgid ""
|
||||
"Please use your browser 'Back' button <strong>now</strong> if you are "
|
||||
"uncertain what to do on this page."
|
||||
msgstr ""
|
||||
|
||||
#: mod/attach.php:20
|
||||
msgid "Item was not found."
|
||||
#: mod/crepair.php:149
|
||||
msgid "Return to contact editor"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:160 mod/crepair.php:162
|
||||
msgid "No mirroring"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:160
|
||||
msgid "Mirror as forwarded posting"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:160 mod/crepair.php:162
|
||||
msgid "Mirror as my own posting"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:169
|
||||
msgid "Refetch contact data"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:171
|
||||
msgid "Account Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:172
|
||||
msgid "@Tagname - overrides Name/Nickname"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:173
|
||||
msgid "Account URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:174
|
||||
msgid "Friend Request URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:175
|
||||
msgid "Friend Confirm URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:176
|
||||
msgid "Notification Endpoint URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:177
|
||||
msgid "Poll/Feed URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:178
|
||||
msgid "New photo from this URL"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:179
|
||||
msgid "Remote Self"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:181
|
||||
msgid "Mirror postings from this contact"
|
||||
msgstr ""
|
||||
|
||||
#: mod/crepair.php:181
|
||||
msgid ""
|
||||
"Mark this contact as remote_self, this will cause friendica to repost new "
|
||||
"entries from this contact."
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156
|
||||
msgid "Your posts and conversations"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:124 include/nav.php:77
|
||||
msgid "Your profile page"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:125
|
||||
msgid "Your contacts"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:126 include/nav.php:78
|
||||
msgid "Your photos"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:127 include/nav.php:80
|
||||
msgid "Your events"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:128 include/nav.php:81
|
||||
msgid "Personal notes"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:128
|
||||
msgid "Your personal photos"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544
|
||||
#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158
|
||||
msgid "Community Pages"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626
|
||||
#: view/theme/diabook/config.php:160
|
||||
msgid "Community Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630
|
||||
#: view/theme/diabook/config.php:164
|
||||
msgid "Last users"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632
|
||||
#: view/theme/diabook/config.php:166
|
||||
msgid "Last likes"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:463 include/text.php:2032
|
||||
#: include/conversation.php:118 include/conversation.php:245
|
||||
msgid "event"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631
|
||||
#: view/theme/diabook/config.php:165
|
||||
msgid "Last photos"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629
|
||||
#: view/theme/diabook/config.php:163
|
||||
msgid "Find Friends"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:524
|
||||
msgid "Local Directory"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36
|
||||
msgid "Similar Interests"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38
|
||||
msgid "Invite Friends"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625
|
||||
#: view/theme/diabook/config.php:159
|
||||
msgid "Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:584
|
||||
msgid "Set zoomfactor for Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156
|
||||
msgid "Set longitude (X) for Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157
|
||||
msgid "Set latitude (Y) for Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627
|
||||
#: view/theme/diabook/config.php:161
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628
|
||||
#: view/theme/diabook/config.php:162
|
||||
msgid "Connect Services"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
|
||||
#: include/acl_selectors.php:337
|
||||
msgid "don't show"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
|
||||
#: include/acl_selectors.php:336
|
||||
msgid "show"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:622
|
||||
msgid "Show/hide boxes at right-hand column:"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73
|
||||
#: view/theme/cleanzero/config.php:84
|
||||
msgid "Set font-size for posts and comments"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74
|
||||
msgid "Set line-height for posts and comments"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:153
|
||||
msgid "Set resolution for middle column"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:154
|
||||
msgid "Set color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:155
|
||||
msgid "Set zoomfactor for Earth Layer"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:59
|
||||
msgid "Set style"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/dispy/config.php:75
|
||||
msgid "Set colour scheme"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:44 include/text.php:1768
|
||||
#: include/user.php:255
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:45
|
||||
msgid "greenzero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:46
|
||||
msgid "purplezero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:47
|
||||
msgid "easterbunny"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:48
|
||||
msgid "darkzero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:49
|
||||
msgid "comix"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:50
|
||||
msgid "slackr"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:62
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:67
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:67
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:67
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86
|
||||
msgid "Color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:69
|
||||
msgid "Posts font size"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:70
|
||||
msgid "Textareas font size"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/cleanzero/config.php:83
|
||||
msgid "Set resize level for images in posts and comments (width and height)"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/cleanzero/config.php:85
|
||||
msgid "Set theme width"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106
|
||||
msgid "Click here to download"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149
|
||||
#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121
|
||||
msgid "Create new pull request"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42
|
||||
msgid "Reload active plugins"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22
|
||||
msgid "Drop contact"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32
|
||||
msgid "Public projects on this node"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79
|
||||
#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56
|
||||
msgid "Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72
|
||||
#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107
|
||||
msgid "No pull requests to show"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123
|
||||
msgid "opened by"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128
|
||||
msgid "closed"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133
|
||||
msgid "merged"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31
|
||||
msgid "Projects"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32
|
||||
msgid "add new"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51
|
||||
msgid "delete"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80
|
||||
#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80
|
||||
#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51
|
||||
msgid "Clone this project:"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38
|
||||
msgid "New pull request"
|
||||
msgstr ""
|
||||
|
||||
#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63
|
||||
msgid "Can't show you the diff at the moment. Sorry"
|
||||
msgstr ""
|
||||
|
||||
#: boot.php:763
|
||||
|
|
@ -5766,145 +6177,6 @@ msgstr ""
|
|||
msgid "privacy policy"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:95
|
||||
msgid "This entry was edited"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:209
|
||||
msgid "ignore thread"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:210
|
||||
msgid "unignore thread"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:211
|
||||
msgid "toggle ignore status"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:214
|
||||
msgid "ignored"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:318 include/conversation.php:665
|
||||
msgid "Categories:"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:319 include/conversation.php:666
|
||||
msgid "Filed under:"
|
||||
msgstr ""
|
||||
|
||||
#: object/Item.php:331
|
||||
msgid "via"
|
||||
msgstr ""
|
||||
|
||||
#: include/dbstructure.php:26
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tThe friendica developers released update %s recently,\n"
|
||||
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
|
||||
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
|
||||
"\t\t\tfriendica developer if you can not help me on your own. My database "
|
||||
"might be invalid."
|
||||
msgstr ""
|
||||
|
||||
#: include/dbstructure.php:31
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The error message is\n"
|
||||
"[pre]%s[/pre]"
|
||||
msgstr ""
|
||||
|
||||
#: include/dbstructure.php:152
|
||||
msgid "Errors encountered creating database tables."
|
||||
msgstr ""
|
||||
|
||||
#: include/dbstructure.php:210
|
||||
msgid "Errors encountered performing database changes."
|
||||
msgstr ""
|
||||
|
||||
#: include/auth.php:38
|
||||
msgid "Logged out."
|
||||
msgstr ""
|
||||
|
||||
#: include/auth.php:128 include/user.php:75
|
||||
msgid ""
|
||||
"We encountered a problem while logging in with the OpenID you provided. "
|
||||
"Please check the correct spelling of the ID."
|
||||
msgstr ""
|
||||
|
||||
#: include/auth.php:128 include/user.php:75
|
||||
msgid "The error message was:"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:6
|
||||
msgid "Add New Contact"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:7
|
||||
msgid "Enter address or web location"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:8
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:24
|
||||
#, php-format
|
||||
msgid "%d invitation available"
|
||||
msgid_plural "%d invitations available"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: include/contact_widgets.php:30
|
||||
msgid "Find People"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:31
|
||||
msgid "Enter name or interest"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:32
|
||||
msgid "Connect/Follow"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:33
|
||||
msgid "Examples: Robert Morgenstein, Fishing"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526
|
||||
msgid "Similar Interests"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:37
|
||||
msgid "Random Profile"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528
|
||||
msgid "Invite Friends"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:71
|
||||
msgid "Networks"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:74
|
||||
msgid "All Networks"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:104 include/features.php:60
|
||||
msgid "Saved Folders"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:107 include/contact_widgets.php:139
|
||||
msgid "Everything"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:136
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: include/features.php:23
|
||||
msgid "General Features"
|
||||
msgstr ""
|
||||
|
|
@ -6042,6 +6314,10 @@ msgstr ""
|
|||
msgid "Add categories to your posts"
|
||||
msgstr ""
|
||||
|
||||
#: include/features.php:60 include/contact_widgets.php:104
|
||||
msgid "Saved Folders"
|
||||
msgstr ""
|
||||
|
||||
#: include/features.php:60
|
||||
msgid "Ability to file posts under folders"
|
||||
msgstr ""
|
||||
|
|
@ -6070,513 +6346,34 @@ msgstr ""
|
|||
msgid "Ability to mute notifications for a thread"
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:75
|
||||
msgid "Connect URL missing."
|
||||
#: include/auth.php:38
|
||||
msgid "Logged out."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:102
|
||||
#: include/auth.php:128 include/user.php:75
|
||||
msgid ""
|
||||
"This site is not configured to allow communications with other networks."
|
||||
"We encountered a problem while logging in with the OpenID you provided. "
|
||||
"Please check the correct spelling of the ID."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:103 include/follow.php:123
|
||||
msgid "No compatible communication protocols or feeds were discovered."
|
||||
#: include/auth.php:128 include/user.php:75
|
||||
msgid "The error message was:"
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:121
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
#: include/event.php:22 include/bb2diaspora.php:154
|
||||
msgid "Starts:"
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:125
|
||||
msgid "An author or name was not found."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:127
|
||||
msgid "No browser URL could be matched to this address."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:129
|
||||
msgid ""
|
||||
"Unable to match @-style Identity Address with a known protocol or email "
|
||||
"contact."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:130
|
||||
msgid "Use mailto: in front of address to force email check."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:136
|
||||
msgid ""
|
||||
"The profile address specified belongs to a network which has been disabled "
|
||||
"on this site."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:146
|
||||
msgid ""
|
||||
"Limited profile. This person will be unable to receive direct/personal "
|
||||
"notifications from you."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:249
|
||||
msgid "Unable to retrieve contact information."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:302
|
||||
msgid "following"
|
||||
msgstr ""
|
||||
|
||||
#: include/group.php:25
|
||||
msgid ""
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this group and any future members. If this is "
|
||||
"not what you intended, please create another group with a different name."
|
||||
msgstr ""
|
||||
|
||||
#: include/group.php:207
|
||||
msgid "Default privacy group for new contacts"
|
||||
msgstr ""
|
||||
|
||||
#: include/group.php:226
|
||||
msgid "Everybody"
|
||||
msgstr ""
|
||||
|
||||
#: include/group.php:249
|
||||
msgid "edit"
|
||||
msgstr ""
|
||||
|
||||
#: include/group.php:271
|
||||
msgid "Edit group"
|
||||
msgstr ""
|
||||
|
||||
#: include/group.php:272
|
||||
msgid "Create a new group"
|
||||
msgstr ""
|
||||
|
||||
#: include/group.php:275
|
||||
msgid "Contacts not in any group"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:43 include/datetime.php:45
|
||||
msgid "Miscellaneous"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:141
|
||||
msgid "YYYY-MM-DD or MM-DD"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:256
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:262
|
||||
msgid "less than a second ago"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:272
|
||||
msgid "year"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:272
|
||||
msgid "years"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:273
|
||||
msgid "month"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:273
|
||||
msgid "months"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:274
|
||||
msgid "week"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:274
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:275
|
||||
msgid "day"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:275
|
||||
msgid "days"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:276
|
||||
msgid "hour"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:276
|
||||
msgid "hours"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:277
|
||||
msgid "minute"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:277
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:278
|
||||
msgid "second"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:278
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:287
|
||||
#, php-format
|
||||
msgid "%1$d %2$s ago"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:459 include/items.php:2432
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:460 include/items.php:2433
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:38
|
||||
msgid "Requested account is not available."
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:121 include/identity.php:255 include/identity.php:607
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:220
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:226 include/nav.php:184
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:226
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:341
|
||||
msgid "Network:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:373 include/identity.php:459
|
||||
msgid "g A l F d"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:374 include/identity.php:460
|
||||
msgid "F d"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:419 include/identity.php:506
|
||||
msgid "[today]"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:431
|
||||
msgid "Birthday Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:432
|
||||
msgid "Birthdays this week:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:493
|
||||
msgid "[No description]"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:517
|
||||
msgid "Event Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:518
|
||||
msgid "Events this week:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:545
|
||||
msgid "j F, Y"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:546
|
||||
msgid "j F"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:553
|
||||
msgid "Birthday:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:557
|
||||
msgid "Age:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:566
|
||||
#, php-format
|
||||
msgid "for %1$d %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:579
|
||||
msgid "Religion:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:583
|
||||
msgid "Hobbies/Interests:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:590
|
||||
msgid "Contact information and Social Networks:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:592
|
||||
msgid "Musical interests:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:594
|
||||
msgid "Books, literature:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:596
|
||||
msgid "Television:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:598
|
||||
msgid "Film/dance/culture/entertainment:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:600
|
||||
msgid "Love/Romance:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:602
|
||||
msgid "Work/employment:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:604
|
||||
msgid "School/education:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:632 include/nav.php:76
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:635
|
||||
msgid "Status Messages and Posts"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:643
|
||||
msgid "Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:656 include/identity.php:659 include/nav.php:79
|
||||
msgid "Videos"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:670
|
||||
msgid "Events and Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:678
|
||||
msgid "Only You Can See This"
|
||||
msgstr ""
|
||||
|
||||
#: include/acl_selectors.php:324
|
||||
msgid "Post to Email"
|
||||
msgstr ""
|
||||
|
||||
#: include/acl_selectors.php:329
|
||||
#, php-format
|
||||
msgid "Connectors disabled, since \"%s\" is enabled."
|
||||
msgstr ""
|
||||
|
||||
#: include/acl_selectors.php:335
|
||||
msgid "Visible to everybody"
|
||||
msgstr ""
|
||||
|
||||
#: include/acl_selectors.php:336 view/theme/diabook/config.php:142
|
||||
#: view/theme/diabook/theme.php:621
|
||||
msgid "show"
|
||||
msgstr ""
|
||||
|
||||
#: include/acl_selectors.php:337 view/theme/diabook/config.php:142
|
||||
#: view/theme/diabook/theme.php:621
|
||||
msgid "don't show"
|
||||
#: include/event.php:32 include/bb2diaspora.php:162
|
||||
msgid "Finishes:"
|
||||
msgstr ""
|
||||
|
||||
#: include/message.php:15 include/message.php:173
|
||||
msgid "[no subject]"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:119
|
||||
msgid "stopped following"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:232 include/conversation.php:881
|
||||
msgid "Poke"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:233 include/conversation.php:875
|
||||
msgid "View Status"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:234 include/conversation.php:876
|
||||
msgid "View Profile"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:235 include/conversation.php:877
|
||||
msgid "View Photos"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:236 include/Contact.php:259 include/conversation.php:878
|
||||
msgid "Network Posts"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:237 include/Contact.php:259 include/conversation.php:879
|
||||
msgid "Edit Contact"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:238
|
||||
msgid "Drop Contact"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:239 include/Contact.php:259 include/conversation.php:880
|
||||
msgid "Send PM"
|
||||
msgstr ""
|
||||
|
||||
#: include/security.php:22
|
||||
msgid "Welcome "
|
||||
msgstr ""
|
||||
|
||||
#: include/security.php:23
|
||||
msgid "Please upload a profile photo."
|
||||
msgstr ""
|
||||
|
||||
#: include/security.php:26
|
||||
msgid "Welcome back "
|
||||
msgstr ""
|
||||
|
||||
#: include/security.php:375
|
||||
msgid ""
|
||||
"The form security token was not correct. This probably happened because the "
|
||||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:118 include/conversation.php:245
|
||||
#: include/text.php:2032 view/theme/diabook/theme.php:463
|
||||
msgid "event"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:206
|
||||
#, php-format
|
||||
msgid "%1$s poked %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:290
|
||||
msgid "post/item"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:291
|
||||
#, php-format
|
||||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:771
|
||||
msgid "remove"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:775
|
||||
msgid "Delete Selected Items"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:874
|
||||
msgid "Follow Thread"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:943
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:943
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:948
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:951
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:965
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:971
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:973
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:973
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1000 include/conversation.php:1018
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1002 include/conversation.php:1020
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1003 include/conversation.php:1021
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1004 include/conversation.php:1022
|
||||
msgid "Tag term:"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1006 include/conversation.php:1024
|
||||
msgid "Where are you right now?"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1007
|
||||
msgid "Delete item(s)?"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1076
|
||||
msgid "permissions"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1099
|
||||
msgid "Post to Groups"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1100
|
||||
msgid "Post to Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1101
|
||||
msgid "Private post"
|
||||
msgstr ""
|
||||
|
||||
#: include/network.php:959
|
||||
msgid "view full size"
|
||||
#: include/Scrape.php:603
|
||||
msgid " on Last.fm"
|
||||
msgstr ""
|
||||
|
||||
#: include/text.php:299
|
||||
|
|
@ -6854,11 +6651,6 @@ msgstr ""
|
|||
msgid "view on separate page"
|
||||
msgstr ""
|
||||
|
||||
#: include/text.php:1768 include/user.php:255
|
||||
#: view/theme/duepuntozero/config.php:44
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: include/text.php:1780
|
||||
msgid "Select an alternate language"
|
||||
msgstr ""
|
||||
|
|
@ -6875,303 +6667,6 @@ msgstr ""
|
|||
msgid "Item filed"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113
|
||||
msgid "Image/photo"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:556
|
||||
#, php-format
|
||||
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:590
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href="
|
||||
"\"%s\" target=\"_blank\">post</a>"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:1076 include/bbcode.php:1096
|
||||
msgid "$1 wrote:"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:1121 include/bbcode.php:1122
|
||||
msgid "Encrypted content"
|
||||
msgstr ""
|
||||
|
||||
#: include/notifier.php:830 include/delivery.php:456
|
||||
msgid "(no subject)"
|
||||
msgstr ""
|
||||
|
||||
#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33
|
||||
msgid "noreply"
|
||||
msgstr ""
|
||||
|
||||
#: include/dba_pdo.php:72 include/dba.php:56
|
||||
#, php-format
|
||||
msgid "Cannot locate DNS info for database server '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:32
|
||||
msgid "Unknown | Not categorised"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:33
|
||||
msgid "Block immediately"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:34
|
||||
msgid "Shady, spammer, self-marketer"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:35
|
||||
msgid "Known to me, but no opinion"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:36
|
||||
msgid "OK, probably harmless"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:37
|
||||
msgid "Reputable, has my trust"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:60
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:61
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:77
|
||||
msgid "OStatus"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:78
|
||||
msgid "RSS/Atom"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:82
|
||||
msgid "Zot!"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:83
|
||||
msgid "LinkedIn"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:84
|
||||
msgid "XMPP/IM"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:85
|
||||
msgid "MySpace"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:87
|
||||
msgid "Google+"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:88
|
||||
msgid "pump.io"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:89
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:90
|
||||
msgid "Diaspora Connector"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:91
|
||||
msgid "Statusnet"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:92
|
||||
msgid "App.net"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:103
|
||||
msgid "Redmatrix"
|
||||
msgstr ""
|
||||
|
||||
#: include/Scrape.php:603
|
||||
msgid " on Last.fm"
|
||||
msgstr ""
|
||||
|
||||
#: include/bb2diaspora.php:154 include/event.php:22
|
||||
msgid "Starts:"
|
||||
msgstr ""
|
||||
|
||||
#: include/bb2diaspora.php:162 include/event.php:32
|
||||
msgid "Finishes:"
|
||||
msgstr ""
|
||||
|
||||
#: include/plugin.php:458 include/plugin.php:460
|
||||
msgid "Click here to upgrade."
|
||||
msgstr ""
|
||||
|
||||
#: include/plugin.php:466
|
||||
msgid "This action exceeds the limits set by your subscription plan."
|
||||
msgstr ""
|
||||
|
||||
#: include/plugin.php:471
|
||||
msgid "This action is not available under your subscription plan."
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:73
|
||||
msgid "End this session"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123
|
||||
msgid "Your posts and conversations"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:77 view/theme/diabook/theme.php:124
|
||||
msgid "Your profile page"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:78 view/theme/diabook/theme.php:126
|
||||
msgid "Your photos"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:79
|
||||
msgid "Your videos"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:80 view/theme/diabook/theme.php:127
|
||||
msgid "Your events"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:81 view/theme/diabook/theme.php:128
|
||||
msgid "Personal notes"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:81
|
||||
msgid "Your personal notes"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:92
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:105
|
||||
msgid "Home Page"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:109
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:114
|
||||
msgid "Help and documentation"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:117
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:117
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:119
|
||||
msgid "Search site content"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:137
|
||||
msgid "Conversations on this site"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:139
|
||||
msgid "Conversations on the network"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:141
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:141
|
||||
msgid "People directory"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:143
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:143
|
||||
msgid "Information about this friendica instance"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:153
|
||||
msgid "Conversations from your friends"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:154
|
||||
msgid "Network Reset"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:154
|
||||
msgid "Load Network page with no filters"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:161
|
||||
msgid "Friend Requests"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:165
|
||||
msgid "See all notifications"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:166
|
||||
msgid "Mark all system notifications seen"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:170
|
||||
msgid "Private mail"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:171
|
||||
msgid "Inbox"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:172
|
||||
msgid "Outbox"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:176
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:176
|
||||
msgid "Manage other pages"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:181
|
||||
msgid "Account settings"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:184
|
||||
msgid "Manage/Edit Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:186
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:193
|
||||
msgid "Site setup and configuration"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:197
|
||||
msgid "Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:197
|
||||
msgid "Site map"
|
||||
msgstr ""
|
||||
|
||||
#: include/api.php:321 include/api.php:332 include/api.php:441
|
||||
#: include/api.php:1141 include/api.php:1143
|
||||
msgid "User not found."
|
||||
|
|
@ -7212,136 +6707,259 @@ msgstr ""
|
|||
msgid "DB error"
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:48
|
||||
msgid "An invitation is required."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:53
|
||||
msgid "Invitation could not be verified."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:61
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:82
|
||||
msgid "Please enter the required information."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:96
|
||||
msgid "Please use a shorter name."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:98
|
||||
msgid "Name too short."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:113
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:118
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:121
|
||||
msgid "Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:134
|
||||
msgid "Cannot use that email."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:140
|
||||
msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:146 include/user.php:244
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:156
|
||||
msgid ""
|
||||
"Nickname was once registered here and may not be re-used. Please choose "
|
||||
"another."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:172
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:230
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:265
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42
|
||||
msgid "Friends"
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:385
|
||||
#: include/dba.php:56 include/dba_pdo.php:72
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
|
||||
"\t"
|
||||
msgid "Cannot locate DNS info for database server '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:389
|
||||
#: include/items.php:2445 include/datetime.php:459
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\t\t\tSite Location:\t%3$s\n"
|
||||
"\t\t\tLogin Name:\t%1$s\n"
|
||||
"\t\t\tPassword:\t%5$s\n"
|
||||
"\n"
|
||||
"\t\tYou may change your password from your account \"Settings\" page after "
|
||||
"logging\n"
|
||||
"\t\tin.\n"
|
||||
"\n"
|
||||
"\t\tPlease take a few moments to review the other account settings on that "
|
||||
"page.\n"
|
||||
"\n"
|
||||
"\t\tYou may also wish to add some basic information to your default profile\n"
|
||||
"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
|
||||
"\n"
|
||||
"\t\tWe recommend setting your full name, adding a profile photo,\n"
|
||||
"\t\tadding some profile \"keywords\" (very useful in making new friends) - "
|
||||
"and\n"
|
||||
"\t\tperhaps what country you live in; if you do not wish to be more "
|
||||
"specific\n"
|
||||
"\t\tthan that.\n"
|
||||
"\n"
|
||||
"\t\tWe fully respect your right to privacy, and none of these items are "
|
||||
"necessary.\n"
|
||||
"\t\tIf you are new and do not know anybody here, they may help\n"
|
||||
"\t\tyou to make some new and interesting friends.\n"
|
||||
"\n"
|
||||
"\n"
|
||||
"\t\tThank you and welcome to %2$s."
|
||||
msgid "%s's birthday"
|
||||
msgstr ""
|
||||
|
||||
#: include/diaspora.php:717
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
#: include/items.php:2446 include/datetime.php:460
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr ""
|
||||
|
||||
#: include/diaspora.php:2560
|
||||
msgid "Attachments:"
|
||||
msgstr ""
|
||||
|
||||
#: include/items.php:4853
|
||||
#: include/items.php:4866
|
||||
msgid "Do you really want to delete this item?"
|
||||
msgstr ""
|
||||
|
||||
#: include/items.php:5128
|
||||
#: include/items.php:5141
|
||||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
#: include/delivery.php:456 include/notifier.php:834
|
||||
msgid "(no subject)"
|
||||
msgstr ""
|
||||
|
||||
#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33
|
||||
msgid "noreply"
|
||||
msgstr ""
|
||||
|
||||
#: include/diaspora.php:716
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
msgstr ""
|
||||
|
||||
#: include/diaspora.php:2567
|
||||
msgid "Attachments:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:38
|
||||
msgid "Requested account is not available."
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:121 include/identity.php:255 include/identity.php:608
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:220
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:226 include/nav.php:184
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:226
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:342
|
||||
msgid "Network:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:374 include/identity.php:460
|
||||
msgid "g A l F d"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:375 include/identity.php:461
|
||||
msgid "F d"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:420 include/identity.php:507
|
||||
msgid "[today]"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:432
|
||||
msgid "Birthday Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:433
|
||||
msgid "Birthdays this week:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:494
|
||||
msgid "[No description]"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:518
|
||||
msgid "Event Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:519
|
||||
msgid "Events this week:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:546
|
||||
msgid "j F, Y"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:547
|
||||
msgid "j F"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:554
|
||||
msgid "Birthday:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:558
|
||||
msgid "Age:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:567
|
||||
#, php-format
|
||||
msgid "for %1$d %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:580
|
||||
msgid "Religion:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:584
|
||||
msgid "Hobbies/Interests:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:591
|
||||
msgid "Contact information and Social Networks:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:593
|
||||
msgid "Musical interests:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:595
|
||||
msgid "Books, literature:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:597
|
||||
msgid "Television:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:599
|
||||
msgid "Film/dance/culture/entertainment:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:601
|
||||
msgid "Love/Romance:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:603
|
||||
msgid "Work/employment:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:605
|
||||
msgid "School/education:"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:633 include/nav.php:76
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:636
|
||||
msgid "Status Messages and Posts"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:644
|
||||
msgid "Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:657 include/identity.php:660 include/nav.php:79
|
||||
msgid "Videos"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:671
|
||||
msgid "Events and Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: include/identity.php:679
|
||||
msgid "Only You Can See This"
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:75
|
||||
msgid "Connect URL missing."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:102
|
||||
msgid ""
|
||||
"This site is not configured to allow communications with other networks."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:103 include/follow.php:123
|
||||
msgid "No compatible communication protocols or feeds were discovered."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:121
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:125
|
||||
msgid "An author or name was not found."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:127
|
||||
msgid "No browser URL could be matched to this address."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:129
|
||||
msgid ""
|
||||
"Unable to match @-style Identity Address with a known protocol or email "
|
||||
"contact."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:130
|
||||
msgid "Use mailto: in front of address to force email check."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:136
|
||||
msgid ""
|
||||
"The profile address specified belongs to a network which has been disabled "
|
||||
"on this site."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:146
|
||||
msgid ""
|
||||
"Limited profile. This person will be unable to receive direct/personal "
|
||||
"notifications from you."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:253
|
||||
msgid "Unable to retrieve contact information."
|
||||
msgstr ""
|
||||
|
||||
#: include/follow.php:306
|
||||
msgid "following"
|
||||
msgstr ""
|
||||
|
||||
#: include/security.php:22
|
||||
msgid "Welcome "
|
||||
msgstr ""
|
||||
|
||||
#: include/security.php:23
|
||||
msgid "Please upload a profile photo."
|
||||
msgstr ""
|
||||
|
||||
#: include/security.php:26
|
||||
msgid "Welcome back "
|
||||
msgstr ""
|
||||
|
||||
#: include/security.php:375
|
||||
msgid ""
|
||||
"The form security token was not correct. This probably happened because the "
|
||||
"form has been opened for too long (>3 hours) before submitting it."
|
||||
msgstr ""
|
||||
|
||||
#: include/profile_selectors.php:6
|
||||
msgid "Male"
|
||||
msgstr ""
|
||||
|
|
@ -7486,6 +7104,10 @@ msgstr ""
|
|||
msgid "Sex Addict"
|
||||
msgstr ""
|
||||
|
||||
#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301
|
||||
msgid "Friends"
|
||||
msgstr ""
|
||||
|
||||
#: include/profile_selectors.php:42
|
||||
msgid "Friends/Benefits"
|
||||
msgstr ""
|
||||
|
|
@ -7570,6 +7192,461 @@ msgstr ""
|
|||
msgid "Ask me"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:94
|
||||
msgid "Error decoding account file"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:100
|
||||
msgid "Error! No version data in file! This is not a Friendica account file?"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:116 include/uimport.php:127
|
||||
msgid "Error! Cannot check nickname"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:120 include/uimport.php:131
|
||||
#, php-format
|
||||
msgid "User '%s' already exists on this server!"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:153
|
||||
msgid "User creation error"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:173
|
||||
msgid "User profile creation error"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:222
|
||||
#, php-format
|
||||
msgid "%d contact not imported"
|
||||
msgid_plural "%d contacts not imported"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: include/uimport.php:292
|
||||
msgid "Done. You can now login with your username and password"
|
||||
msgstr ""
|
||||
|
||||
#: include/plugin.php:458 include/plugin.php:460
|
||||
msgid "Click here to upgrade."
|
||||
msgstr ""
|
||||
|
||||
#: include/plugin.php:466
|
||||
msgid "This action exceeds the limits set by your subscription plan."
|
||||
msgstr ""
|
||||
|
||||
#: include/plugin.php:471
|
||||
msgid "This action is not available under your subscription plan."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:206
|
||||
#, php-format
|
||||
msgid "%1$s poked %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:290
|
||||
msgid "post/item"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:291
|
||||
#, php-format
|
||||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:771
|
||||
msgid "remove"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:775
|
||||
msgid "Delete Selected Items"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:874
|
||||
msgid "Follow Thread"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:875 include/Contact.php:233
|
||||
msgid "View Status"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:876 include/Contact.php:234
|
||||
msgid "View Profile"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:877 include/Contact.php:235
|
||||
msgid "View Photos"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:878 include/Contact.php:236
|
||||
#: include/Contact.php:259
|
||||
msgid "Network Posts"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:879 include/Contact.php:237
|
||||
#: include/Contact.php:259
|
||||
msgid "Edit Contact"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:880 include/Contact.php:239
|
||||
#: include/Contact.php:259
|
||||
msgid "Send PM"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:881 include/Contact.php:232
|
||||
msgid "Poke"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:943
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:943
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:948
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:951
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:965
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:971
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:973
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:973
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1000 include/conversation.php:1018
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1002 include/conversation.php:1020
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1003 include/conversation.php:1021
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1004 include/conversation.php:1022
|
||||
msgid "Tag term:"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1006 include/conversation.php:1024
|
||||
msgid "Where are you right now?"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1007
|
||||
msgid "Delete item(s)?"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1076
|
||||
msgid "permissions"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1099
|
||||
msgid "Post to Groups"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1100
|
||||
msgid "Post to Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: include/conversation.php:1101
|
||||
msgid "Private post"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:6
|
||||
msgid "Add New Contact"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:7
|
||||
msgid "Enter address or web location"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:8
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:24
|
||||
#, php-format
|
||||
msgid "%d invitation available"
|
||||
msgid_plural "%d invitations available"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: include/contact_widgets.php:30
|
||||
msgid "Find People"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:31
|
||||
msgid "Enter name or interest"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:32
|
||||
msgid "Connect/Follow"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:33
|
||||
msgid "Examples: Robert Morgenstein, Fishing"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:37
|
||||
msgid "Random Profile"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:71
|
||||
msgid "Networks"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:74
|
||||
msgid "All Networks"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:107 include/contact_widgets.php:139
|
||||
msgid "Everything"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_widgets.php:136
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:73
|
||||
msgid "End this session"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:79
|
||||
msgid "Your videos"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:81
|
||||
msgid "Your personal notes"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:92
|
||||
msgid "Sign in"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:105
|
||||
msgid "Home Page"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:109
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:114
|
||||
msgid "Help and documentation"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:117
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:117
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:119
|
||||
msgid "Search site content"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:137
|
||||
msgid "Conversations on this site"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:139
|
||||
msgid "Conversations on the network"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:141
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:141
|
||||
msgid "People directory"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:143
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:143
|
||||
msgid "Information about this friendica instance"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:153
|
||||
msgid "Conversations from your friends"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:154
|
||||
msgid "Network Reset"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:154
|
||||
msgid "Load Network page with no filters"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:161
|
||||
msgid "Friend Requests"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:165
|
||||
msgid "See all notifications"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:166
|
||||
msgid "Mark all system notifications seen"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:170
|
||||
msgid "Private mail"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:171
|
||||
msgid "Inbox"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:172
|
||||
msgid "Outbox"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:176
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:176
|
||||
msgid "Manage other pages"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:181
|
||||
msgid "Account settings"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:184
|
||||
msgid "Manage/Edit Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:186
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:193
|
||||
msgid "Site setup and configuration"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:197
|
||||
msgid "Navigation"
|
||||
msgstr ""
|
||||
|
||||
#: include/nav.php:197
|
||||
msgid "Site map"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:32
|
||||
msgid "Unknown | Not categorised"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:33
|
||||
msgid "Block immediately"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:34
|
||||
msgid "Shady, spammer, self-marketer"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:35
|
||||
msgid "Known to me, but no opinion"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:36
|
||||
msgid "OK, probably harmless"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:37
|
||||
msgid "Reputable, has my trust"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:60
|
||||
msgid "Weekly"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:61
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:77
|
||||
msgid "OStatus"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:78
|
||||
msgid "RSS/Atom"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:82
|
||||
msgid "Zot!"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:83
|
||||
msgid "LinkedIn"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:84
|
||||
msgid "XMPP/IM"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:85
|
||||
msgid "MySpace"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:87
|
||||
msgid "Google+"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:88
|
||||
msgid "pump.io"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:89
|
||||
msgid "Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:90
|
||||
msgid "Diaspora Connector"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:91
|
||||
msgid "Statusnet"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:92
|
||||
msgid "App.net"
|
||||
msgstr ""
|
||||
|
||||
#: include/contact_selectors.php:103
|
||||
msgid "Redmatrix"
|
||||
msgstr ""
|
||||
|
||||
#: include/enotify.php:18
|
||||
msgid "Friendica Notification"
|
||||
msgstr ""
|
||||
|
|
@ -7853,6 +7930,153 @@ msgstr ""
|
|||
msgid "Please visit %s to approve or reject the request."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:48
|
||||
msgid "An invitation is required."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:53
|
||||
msgid "Invitation could not be verified."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:61
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:82
|
||||
msgid "Please enter the required information."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:96
|
||||
msgid "Please use a shorter name."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:98
|
||||
msgid "Name too short."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:113
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:118
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:121
|
||||
msgid "Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:134
|
||||
msgid "Cannot use that email."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:140
|
||||
msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:146 include/user.php:244
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:156
|
||||
msgid ""
|
||||
"Nickname was once registered here and may not be re-used. Please choose "
|
||||
"another."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:172
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:230
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:265
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:385
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tDear %1$s,\n"
|
||||
"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
|
||||
"\t"
|
||||
msgstr ""
|
||||
|
||||
#: include/user.php:389
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\tThe login details are as follows:\n"
|
||||
"\t\t\tSite Location:\t%3$s\n"
|
||||
"\t\t\tLogin Name:\t%1$s\n"
|
||||
"\t\t\tPassword:\t%5$s\n"
|
||||
"\n"
|
||||
"\t\tYou may change your password from your account \"Settings\" page after "
|
||||
"logging\n"
|
||||
"\t\tin.\n"
|
||||
"\n"
|
||||
"\t\tPlease take a few moments to review the other account settings on that "
|
||||
"page.\n"
|
||||
"\n"
|
||||
"\t\tYou may also wish to add some basic information to your default profile\n"
|
||||
"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
|
||||
"\n"
|
||||
"\t\tWe recommend setting your full name, adding a profile photo,\n"
|
||||
"\t\tadding some profile \"keywords\" (very useful in making new friends) - "
|
||||
"and\n"
|
||||
"\t\tperhaps what country you live in; if you do not wish to be more "
|
||||
"specific\n"
|
||||
"\t\tthan that.\n"
|
||||
"\n"
|
||||
"\t\tWe fully respect your right to privacy, and none of these items are "
|
||||
"necessary.\n"
|
||||
"\t\tIf you are new and do not know anybody here, they may help\n"
|
||||
"\t\tyou to make some new and interesting friends.\n"
|
||||
"\n"
|
||||
"\n"
|
||||
"\t\tThank you and welcome to %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: include/acl_selectors.php:324
|
||||
msgid "Post to Email"
|
||||
msgstr ""
|
||||
|
||||
#: include/acl_selectors.php:329
|
||||
#, php-format
|
||||
msgid "Connectors disabled, since \"%s\" is enabled."
|
||||
msgstr ""
|
||||
|
||||
#: include/acl_selectors.php:335
|
||||
msgid "Visible to everybody"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113
|
||||
msgid "Image/photo"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:556
|
||||
#, php-format
|
||||
msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:590
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href="
|
||||
"\"%s\" target=\"_blank\">post</a>"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:1076 include/bbcode.php:1096
|
||||
msgid "$1 wrote:"
|
||||
msgstr ""
|
||||
|
||||
#: include/bbcode.php:1121 include/bbcode.php:1122
|
||||
msgid "Encrypted content"
|
||||
msgstr ""
|
||||
|
||||
#: include/oembed.php:220
|
||||
msgid "Embedded content"
|
||||
msgstr ""
|
||||
|
|
@ -7861,204 +8085,148 @@ msgstr ""
|
|||
msgid "Embedding disabled"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:94
|
||||
msgid "Error decoding account file"
|
||||
#: include/group.php:25
|
||||
msgid ""
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this group and any future members. If this is "
|
||||
"not what you intended, please create another group with a different name."
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:100
|
||||
msgid "Error! No version data in file! This is not a Friendica account file?"
|
||||
#: include/group.php:207
|
||||
msgid "Default privacy group for new contacts"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:116 include/uimport.php:127
|
||||
msgid "Error! Cannot check nickname"
|
||||
#: include/group.php:226
|
||||
msgid "Everybody"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:120 include/uimport.php:131
|
||||
#: include/group.php:249
|
||||
msgid "edit"
|
||||
msgstr ""
|
||||
|
||||
#: include/group.php:271
|
||||
msgid "Edit group"
|
||||
msgstr ""
|
||||
|
||||
#: include/group.php:272
|
||||
msgid "Create a new group"
|
||||
msgstr ""
|
||||
|
||||
#: include/group.php:275
|
||||
msgid "Contacts not in any group"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:119
|
||||
msgid "stopped following"
|
||||
msgstr ""
|
||||
|
||||
#: include/Contact.php:238
|
||||
msgid "Drop Contact"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:43 include/datetime.php:45
|
||||
msgid "Miscellaneous"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:141
|
||||
msgid "YYYY-MM-DD or MM-DD"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:256
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:262
|
||||
msgid "less than a second ago"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:272
|
||||
msgid "year"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:272
|
||||
msgid "years"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:273
|
||||
msgid "month"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:273
|
||||
msgid "months"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:274
|
||||
msgid "week"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:274
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:275
|
||||
msgid "day"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:275
|
||||
msgid "days"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:276
|
||||
msgid "hour"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:276
|
||||
msgid "hours"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:277
|
||||
msgid "minute"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:277
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:278
|
||||
msgid "second"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:278
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
|
||||
#: include/datetime.php:287
|
||||
#, php-format
|
||||
msgid "User '%s' already exists on this server!"
|
||||
msgid "%1$d %2$s ago"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:153
|
||||
msgid "User creation error"
|
||||
#: include/network.php:959
|
||||
msgid "view full size"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:173
|
||||
msgid "User profile creation error"
|
||||
msgstr ""
|
||||
|
||||
#: include/uimport.php:222
|
||||
#: include/dbstructure.php:26
|
||||
#, php-format
|
||||
msgid "%d contact not imported"
|
||||
msgid_plural "%d contacts not imported"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: include/uimport.php:292
|
||||
msgid "Done. You can now login with your username and password"
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\tThe friendica developers released update %s recently,\n"
|
||||
"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
|
||||
"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
|
||||
"\t\t\tfriendica developer if you can not help me on your own. My database "
|
||||
"might be invalid."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:441
|
||||
msgid "toggle mobile"
|
||||
#: include/dbstructure.php:31
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The error message is\n"
|
||||
"[pre]%s[/pre]"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/cleanzero/config.php:83
|
||||
msgid "Set resize level for images in posts and comments (width and height)"
|
||||
#: include/dbstructure.php:152
|
||||
msgid "Errors encountered creating database tables."
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73
|
||||
#: view/theme/diabook/config.php:151
|
||||
msgid "Set font-size for posts and comments"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/cleanzero/config.php:85
|
||||
msgid "Set theme width"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68
|
||||
msgid "Color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152
|
||||
msgid "Set line-height for posts and comments"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/dispy/config.php:75
|
||||
msgid "Set colour scheme"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:67
|
||||
msgid "Alignment"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:67
|
||||
msgid "Left"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:67
|
||||
msgid "Center"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:69
|
||||
msgid "Posts font size"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/quattro/config.php:70
|
||||
msgid "Textareas font size"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:153
|
||||
msgid "Set resolution for middle column"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:154
|
||||
msgid "Set color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:155
|
||||
msgid "Set zoomfactor for Earth Layer"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585
|
||||
msgid "Set longitude (X) for Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586
|
||||
msgid "Set latitude (Y) for Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130
|
||||
#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624
|
||||
msgid "Community Pages"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579
|
||||
#: view/theme/diabook/theme.php:625
|
||||
msgid "Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391
|
||||
#: view/theme/diabook/theme.php:626
|
||||
msgid "Community Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599
|
||||
#: view/theme/diabook/theme.php:627
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606
|
||||
#: view/theme/diabook/theme.php:628
|
||||
msgid "Connect Services"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523
|
||||
#: view/theme/diabook/theme.php:629
|
||||
msgid "Find Friends"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412
|
||||
#: view/theme/diabook/theme.php:630
|
||||
msgid "Last users"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486
|
||||
#: view/theme/diabook/theme.php:631
|
||||
msgid "Last photos"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441
|
||||
#: view/theme/diabook/theme.php:632
|
||||
msgid "Last likes"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:125
|
||||
msgid "Your contacts"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:128
|
||||
msgid "Your personal photos"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:524
|
||||
msgid "Local Directory"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:584
|
||||
msgid "Set zoomfactor for Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/diabook/theme.php:622
|
||||
msgid "Show/hide boxes at right-hand column:"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/vier/config.php:59
|
||||
msgid "Set style"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:45
|
||||
msgid "greenzero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:46
|
||||
msgid "purplezero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:47
|
||||
msgid "easterbunny"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:48
|
||||
msgid "darkzero"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:49
|
||||
msgid "comix"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:50
|
||||
msgid "slackr"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/duepuntozero/config.php:62
|
||||
msgid "Variations"
|
||||
#: include/dbstructure.php:210
|
||||
msgid "Errors encountered performing database changes."
|
||||
msgstr ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue