Merge remote-tracking branch 'upstream/develop' into 1508-random-becomes-guid
This commit is contained in:
commit
43fda0d626
6 changed files with 796 additions and 755 deletions
|
|
@ -1791,7 +1791,7 @@ function diaspora_message($importer,$xml,$msg) {
|
||||||
$msg_diaspora_handle = notags(unxmlify($xml->diaspora_handle));
|
$msg_diaspora_handle = notags(unxmlify($xml->diaspora_handle));
|
||||||
$msg_conversation_guid = notags(unxmlify($xml->conversation_guid));
|
$msg_conversation_guid = notags(unxmlify($xml->conversation_guid));
|
||||||
|
|
||||||
$parent_uri = $diaspora_handle . ':' . $msg_parent_guid;
|
$parent_uri = $msg_diaspora_handle . ':' . $msg_parent_guid;
|
||||||
|
|
||||||
$contact = diaspora_get_contact_by_handle($importer['uid'],$msg_diaspora_handle);
|
$contact = diaspora_get_contact_by_handle($importer['uid'],$msg_diaspora_handle);
|
||||||
if(! $contact) {
|
if(! $contact) {
|
||||||
|
|
@ -2991,7 +2991,7 @@ function diaspora_send_mail($item,$owner,$contact) {
|
||||||
$body = bb2diaspora($item['body']);
|
$body = bb2diaspora($item['body']);
|
||||||
$created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C');
|
$created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C');
|
||||||
|
|
||||||
$signed_text = $item['guid'] . ';' . $cnv['guid'] . ';' . $body . ';'
|
$signed_text = $item['guid'] . ';' . $cnv['guid'] . ';' . $body . ';'
|
||||||
. $created . ';' . $myaddr . ';' . $cnv['guid'];
|
. $created . ';' . $myaddr . ';' . $cnv['guid'];
|
||||||
|
|
||||||
$sig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
|
$sig = base64_encode(rsa_sign($signed_text,$owner['uprvkey'],'sha256'));
|
||||||
|
|
@ -2999,7 +2999,7 @@ function diaspora_send_mail($item,$owner,$contact) {
|
||||||
$msg = array(
|
$msg = array(
|
||||||
'guid' => xmlify($item['guid']),
|
'guid' => xmlify($item['guid']),
|
||||||
'parent_guid' => xmlify($cnv['guid']),
|
'parent_guid' => xmlify($cnv['guid']),
|
||||||
'parent_author_signature' => (($item['reply']) ? null : xmlify($sig)),
|
'parent_author_signature' => xmlify($sig),
|
||||||
'author_signature' => xmlify($sig),
|
'author_signature' => xmlify($sig),
|
||||||
'text' => xmlify($body),
|
'text' => xmlify($body),
|
||||||
'created_at' => xmlify($created),
|
'created_at' => xmlify($created),
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
// send a private message
|
// send a private message
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function send_message($recipient=0, $body='', $subject='', $replyto=''){
|
|
||||||
|
function send_message($recipient=0, $body='', $subject='', $replyto=''){
|
||||||
|
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
|
|
||||||
if(! $recipient) return -1;
|
if(! $recipient) return -1;
|
||||||
|
|
||||||
if(! strlen($subject))
|
if(! strlen($subject))
|
||||||
$subject = t('[no subject]');
|
$subject = t('[no subject]');
|
||||||
|
|
||||||
|
|
@ -26,9 +26,6 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){
|
||||||
return -2;
|
return -2;
|
||||||
}
|
}
|
||||||
|
|
||||||
$hash = random_string();
|
|
||||||
$uri = 'urn:X-dfrn:' . $a->get_baseurl() . ':' . local_user() . ':' . $hash ;
|
|
||||||
|
|
||||||
$convid = 0;
|
$convid = 0;
|
||||||
$reply = false;
|
$reply = false;
|
||||||
|
|
||||||
|
|
@ -43,19 +40,23 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){
|
||||||
);
|
);
|
||||||
if(count($r))
|
if(count($r))
|
||||||
$convid = $r[0]['convid'];
|
$convid = $r[0]['convid'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$recip_host = substr($contact[0]['url'],strpos($contact[0]['url'],'://')+3);
|
||||||
|
$recip_host = substr($recip_host,0,strpos($recip_host,'/'));
|
||||||
|
|
||||||
|
$recip_handle = (($contact[0]['addr']) ? $contact[0]['addr'] : $contact[0]['nick'] . '@' . $recip_host);
|
||||||
|
$sender_handle = $a->user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
|
||||||
|
|
||||||
|
$msg_guid = get_guid(32);
|
||||||
|
$uri = $recip_handle.':'.$msg_guid;
|
||||||
|
|
||||||
if(! $convid) {
|
if(! $convid) {
|
||||||
|
|
||||||
// create a new conversation
|
// create a new conversation
|
||||||
|
|
||||||
$conv_guid = get_guid();
|
$conv_guid = get_guid(32);
|
||||||
|
$convuri = $recip_handle.':'.$conv_guid;
|
||||||
$recip_host = substr($contact[0]['url'],strpos($contact[0]['url'],'://')+3);
|
|
||||||
$recip_host = substr($recip_host,0,strpos($recip_host,'/'));
|
|
||||||
|
|
||||||
$recip_handle = (($contact[0]['addr']) ? $contact[0]['addr'] : $contact[0]['nick'] . '@' . $recip_host);
|
|
||||||
$sender_handle = $a->user['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
|
|
||||||
|
|
||||||
$handles = $recip_handle . ';' . $sender_handle;
|
$handles = $recip_handle . ';' . $sender_handle;
|
||||||
|
|
||||||
|
|
@ -83,15 +84,15 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){
|
||||||
}
|
}
|
||||||
|
|
||||||
if(! strlen($replyto)) {
|
if(! strlen($replyto)) {
|
||||||
$replyto = $uri;
|
$replyto = $convuri;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$r = q("INSERT INTO `mail` ( `uid`, `guid`, `convid`, `from-name`, `from-photo`, `from-url`,
|
$r = q("INSERT INTO `mail` ( `uid`, `guid`, `convid`, `from-name`, `from-photo`, `from-url`,
|
||||||
`contact-id`, `title`, `body`, `seen`, `reply`, `replied`, `uri`, `parent-uri`, `created`)
|
`contact-id`, `title`, `body`, `seen`, `reply`, `replied`, `uri`, `parent-uri`, `created`)
|
||||||
VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, %d, '%s', '%s', '%s' )",
|
VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, %d, '%s', '%s', '%s' )",
|
||||||
intval(local_user()),
|
intval(local_user()),
|
||||||
dbesc(get_guid()),
|
dbesc($msg_guid),
|
||||||
intval($convid),
|
intval($convid),
|
||||||
dbesc($me[0]['name']),
|
dbesc($me[0]['name']),
|
||||||
dbesc($me[0]['thumb']),
|
dbesc($me[0]['thumb']),
|
||||||
|
|
@ -117,7 +118,7 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* When a photo was uploaded into the message using the (profile wall) ajax
|
* When a photo was uploaded into the message using the (profile wall) ajax
|
||||||
* uploader, The permissions are initially set to disallow anybody but the
|
* uploader, The permissions are initially set to disallow anybody but the
|
||||||
* owner from seeing it. This is because the permissions may not yet have been
|
* owner from seeing it. This is because the permissions may not yet have been
|
||||||
* set for the post. If it's private, the photo permissions should be set
|
* set for the post. If it's private, the photo permissions should be set
|
||||||
|
|
@ -143,11 +144,11 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){
|
||||||
dbesc($image_uri),
|
dbesc($image_uri),
|
||||||
dbesc( t('Wall Photos')),
|
dbesc( t('Wall Photos')),
|
||||||
intval(local_user())
|
intval(local_user())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if($post_id) {
|
if($post_id) {
|
||||||
proc_run('php',"include/notifier.php","mail","$post_id");
|
proc_run('php',"include/notifier.php","mail","$post_id");
|
||||||
return intval($post_id);
|
return intval($post_id);
|
||||||
|
|
@ -161,13 +162,13 @@ function send_message($recipient=0, $body='', $subject='', $replyto=''){
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function send_wallmessage($recipient='', $body='', $subject='', $replyto=''){
|
function send_wallmessage($recipient='', $body='', $subject='', $replyto=''){
|
||||||
|
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
|
|
||||||
|
|
||||||
if(! $recipient) return -1;
|
if(! $recipient) return -1;
|
||||||
|
|
||||||
if(! strlen($subject))
|
if(! strlen($subject))
|
||||||
$subject = t('[no subject]');
|
$subject = t('[no subject]');
|
||||||
|
|
||||||
|
|
@ -184,7 +185,7 @@ function send_wallmessage($recipient='', $body='', $subject='', $replyto=''){
|
||||||
if(! $me['name'])
|
if(! $me['name'])
|
||||||
return -2;
|
return -2;
|
||||||
|
|
||||||
$conv_guid = get_guid();
|
$conv_guid = get_guid(32);
|
||||||
|
|
||||||
$recip_handle = $recipient['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
|
$recip_handle = $recipient['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
|
||||||
|
|
||||||
|
|
@ -217,11 +218,11 @@ function send_wallmessage($recipient='', $body='', $subject='', $replyto=''){
|
||||||
return -4;
|
return -4;
|
||||||
}
|
}
|
||||||
|
|
||||||
$r = q("INSERT INTO `mail` ( `uid`, `guid`, `convid`, `from-name`, `from-photo`, `from-url`,
|
$r = q("INSERT INTO `mail` ( `uid`, `guid`, `convid`, `from-name`, `from-photo`, `from-url`,
|
||||||
`contact-id`, `title`, `body`, `seen`, `reply`, `replied`, `uri`, `parent-uri`, `created`, `unknown`)
|
`contact-id`, `title`, `body`, `seen`, `reply`, `replied`, `uri`, `parent-uri`, `created`, `unknown`)
|
||||||
VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, %d, '%s', '%s', '%s', %d )",
|
VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, '%s', '%s', %d, %d, %d, '%s', '%s', '%s', %d )",
|
||||||
intval($recipient['uid']),
|
intval($recipient['uid']),
|
||||||
dbesc(get_guid()),
|
dbesc(get_guid(32)),
|
||||||
intval($convid),
|
intval($convid),
|
||||||
dbesc($me['name']),
|
dbesc($me['name']),
|
||||||
dbesc($me['photo']),
|
dbesc($me['photo']),
|
||||||
|
|
|
||||||
|
|
@ -857,7 +857,7 @@ function admin_page_users_post(&$a){
|
||||||
$nu_nickname = ( x($_POST, 'new_user_nickname') ? $_POST['new_user_nickname'] : '');
|
$nu_nickname = ( x($_POST, 'new_user_nickname') ? $_POST['new_user_nickname'] : '');
|
||||||
$nu_email = ( x($_POST, 'new_user_email') ? $_POST['new_user_email'] : '');
|
$nu_email = ( x($_POST, 'new_user_email') ? $_POST['new_user_email'] : '');
|
||||||
|
|
||||||
check_form_security_token_redirectOnErr($a->get_baseurl().'/admin/users', 'admin_users');
|
check_form_security_token_redirectOnErr('/admin/users', 'admin_users');
|
||||||
|
|
||||||
if (!($nu_name==="") && !($nu_email==="") && !($nu_nickname==="")) {
|
if (!($nu_name==="") && !($nu_email==="") && !($nu_nickname==="")) {
|
||||||
require_once('include/user.php');
|
require_once('include/user.php');
|
||||||
|
|
|
||||||
|
|
@ -121,13 +121,13 @@ function regmod_content(&$a) {
|
||||||
|
|
||||||
if($cmd === 'deny') {
|
if($cmd === 'deny') {
|
||||||
user_deny($hash);
|
user_deny($hash);
|
||||||
goaway("/admin/users/");
|
goaway($a->get_baseurl()."/admin/users/");
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
if($cmd === 'allow') {
|
if($cmd === 'allow') {
|
||||||
user_allow($hash);
|
user_allow($hash);
|
||||||
goaway("/admin/users/");
|
goaway($a->get_baseurl()."/admin/users/");
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
1485
util/messages.po
1485
util/messages.po
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 3.4.1\n"
|
"Project-Id-Version: 3.4.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2015-08-02 13:56+0200\n"
|
"POT-Creation-Date: 2015-08-13 09:06+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
|
@ -47,11 +47,11 @@ msgstr ""
|
||||||
#: mod/follow.php:42 mod/follow.php:81 mod/item.php:170 mod/item.php:186
|
#: mod/follow.php:42 mod/follow.php:81 mod/item.php:170 mod/item.php:186
|
||||||
#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78
|
#: mod/group.php:19 mod/dfrn_confirm.php:55 mod/fsuggest.php:78
|
||||||
#: mod/wall_upload.php:66 mod/viewcontacts.php:24 mod/notifications.php:66
|
#: mod/wall_upload.php:66 mod/viewcontacts.php:24 mod/notifications.php:66
|
||||||
#: mod/message.php:38 mod/message.php:174 mod/crepair.php:120
|
#: 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/nogroup.php:25 mod/network.php:4 mod/allfriends.php:9
|
||||||
#: mod/events.php:164 mod/wallmessage.php:9 mod/wallmessage.php:33
|
#: mod/events.php:164 mod/wallmessage.php:9 mod/wallmessage.php:33
|
||||||
#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/wall_attach.php:55
|
#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/wall_attach.php:55
|
||||||
#: mod/settings.php:20 mod/settings.php:107 mod/settings.php:609
|
#: mod/settings.php:20 mod/settings.php:116 mod/settings.php:618
|
||||||
#: mod/register.php:42 mod/delegate.php:12 mod/mood.php:114 mod/suggest.php:58
|
#: 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/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/api.php:26 mod/api.php:31 mod/notes.php:20 mod/poke.php:135
|
||||||
|
|
@ -85,24 +85,24 @@ msgstr ""
|
||||||
msgid "Contact has been unarchived"
|
msgid "Contact has been unarchived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:411 mod/contacts.php:756
|
#: mod/contacts.php:411 mod/contacts.php:767
|
||||||
msgid "Do you really want to delete this contact?"
|
msgid "Do you really want to delete this contact?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:413 mod/follow.php:57 mod/message.php:209
|
#: mod/contacts.php:413 mod/follow.php:57 mod/message.php:210
|
||||||
#: mod/settings.php:1045 mod/settings.php:1051 mod/settings.php:1059
|
#: mod/settings.php:1054 mod/settings.php:1060 mod/settings.php:1068
|
||||||
#: mod/settings.php:1063 mod/settings.php:1068 mod/settings.php:1074
|
#: mod/settings.php:1072 mod/settings.php:1077 mod/settings.php:1083
|
||||||
#: mod/settings.php:1080 mod/settings.php:1086 mod/settings.php:1114
|
#: mod/settings.php:1089 mod/settings.php:1095 mod/settings.php:1123
|
||||||
#: mod/settings.php:1115 mod/settings.php:1116 mod/settings.php:1117
|
#: mod/settings.php:1124 mod/settings.php:1125 mod/settings.php:1126
|
||||||
#: mod/settings.php:1118 mod/dfrn_request.php:845 mod/register.php:235
|
#: mod/settings.php:1127 mod/dfrn_request.php:845 mod/register.php:235
|
||||||
#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661
|
#: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661
|
||||||
#: mod/api.php:105 include/items.php:4854
|
#: mod/api.php:105 include/items.php:4854
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:68
|
#: mod/contacts.php:416 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:68
|
||||||
#: mod/videos.php:121 mod/message.php:212 mod/fbrowser.php:89
|
#: mod/videos.php:121 mod/message.php:213 mod/fbrowser.php:89
|
||||||
#: mod/fbrowser.php:125 mod/settings.php:623 mod/settings.php:649
|
#: mod/fbrowser.php:125 mod/settings.php:632 mod/settings.php:658
|
||||||
#: mod/dfrn_request.php:859 mod/suggest.php:32 mod/editpost.php:148
|
#: mod/dfrn_request.php:859 mod/suggest.php:32 mod/editpost.php:148
|
||||||
#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093
|
#: mod/photos.php:225 mod/photos.php:314 include/conversation.php:1093
|
||||||
#: include/items.php:4857
|
#: include/items.php:4857
|
||||||
|
|
@ -132,7 +132,7 @@ msgstr ""
|
||||||
msgid "Private communications are not available for this contact."
|
msgid "Private communications are not available for this contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:498 mod/admin.php:585
|
#: mod/contacts.php:498 mod/admin.php:613
|
||||||
msgid "Never"
|
msgid "Never"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -164,13 +164,13 @@ msgstr[1] ""
|
||||||
msgid "View all contacts"
|
msgid "View all contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:521 mod/contacts.php:590 mod/contacts.php:759
|
#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770
|
||||||
#: mod/admin.php:1047
|
#: mod/admin.php:1075
|
||||||
msgid "Unblock"
|
msgid "Unblock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:521 mod/contacts.php:590 mod/contacts.php:759
|
#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770
|
||||||
#: mod/admin.php:1046
|
#: mod/admin.php:1074
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -178,66 +178,66 @@ msgstr ""
|
||||||
msgid "Toggle Blocked status"
|
msgid "Toggle Blocked status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:760
|
#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771
|
||||||
msgid "Unignore"
|
msgid "Unignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:527 mod/contacts.php:591 mod/contacts.php:760
|
#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771
|
||||||
#: mod/notifications.php:51 mod/notifications.php:164
|
#: mod/notifications.php:51 mod/notifications.php:174
|
||||||
#: mod/notifications.php:214
|
#: mod/notifications.php:233
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:530
|
#: mod/contacts.php:531
|
||||||
msgid "Toggle Ignored status"
|
msgid "Toggle Ignored status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:534 mod/contacts.php:761
|
#: mod/contacts.php:536 mod/contacts.php:772
|
||||||
msgid "Unarchive"
|
msgid "Unarchive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:534 mod/contacts.php:761
|
#: mod/contacts.php:536 mod/contacts.php:772
|
||||||
msgid "Archive"
|
msgid "Archive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:537
|
#: mod/contacts.php:539
|
||||||
msgid "Toggle Archive status"
|
msgid "Toggle Archive status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:540
|
#: mod/contacts.php:543
|
||||||
msgid "Repair"
|
msgid "Repair"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:543
|
#: mod/contacts.php:546
|
||||||
msgid "Advanced Contact Settings"
|
msgid "Advanced Contact Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:549
|
#: mod/contacts.php:553
|
||||||
msgid "Communications lost with this contact!"
|
msgid "Communications lost with this contact!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:552
|
#: mod/contacts.php:556
|
||||||
msgid "Fetch further information for feeds"
|
msgid "Fetch further information for feeds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:553 mod/admin.php:594
|
#: mod/contacts.php:557 mod/admin.php:622
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:553
|
#: mod/contacts.php:557
|
||||||
msgid "Fetch information"
|
msgid "Fetch information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:553
|
#: mod/contacts.php:557
|
||||||
msgid "Fetch information and keywords"
|
msgid "Fetch information and keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:562
|
#: mod/contacts.php:566
|
||||||
msgid "Contact Editor"
|
msgid "Contact Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:564 mod/manage.php:110 mod/fsuggest.php:107
|
#: mod/contacts.php:568 mod/manage.php:110 mod/fsuggest.php:107
|
||||||
#: mod/message.php:335 mod/message.php:564 mod/crepair.php:191
|
#: 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/events.php:511 mod/content.php:712 mod/install.php:250
|
||||||
#: mod/install.php:288 mod/mood.php:137 mod/profiles.php:683
|
#: 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/localtime.php:45 mod/poke.php:199 mod/invite.php:140
|
||||||
|
|
@ -250,201 +250,201 @@ msgstr ""
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:565
|
#: mod/contacts.php:569
|
||||||
msgid "Profile Visibility"
|
msgid "Profile Visibility"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:566
|
#: mod/contacts.php:570
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please choose the profile you would like to display to %s when viewing your "
|
"Please choose the profile you would like to display to %s when viewing your "
|
||||||
"profile securely."
|
"profile securely."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:567
|
#: mod/contacts.php:571
|
||||||
msgid "Contact Information / Notes"
|
msgid "Contact Information / Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:568
|
#: mod/contacts.php:572
|
||||||
msgid "Edit contact notes"
|
msgid "Edit contact notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:573 mod/contacts.php:799 mod/viewcontacts.php:64
|
#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64
|
||||||
#: mod/nogroup.php:40
|
#: mod/nogroup.php:40
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Visit %s's profile [%s]"
|
msgid "Visit %s's profile [%s]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:574
|
#: mod/contacts.php:578
|
||||||
msgid "Block/Unblock contact"
|
msgid "Block/Unblock contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:575
|
#: mod/contacts.php:579
|
||||||
msgid "Ignore contact"
|
msgid "Ignore contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:576
|
#: mod/contacts.php:580
|
||||||
msgid "Repair URL settings"
|
msgid "Repair URL settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:577
|
#: mod/contacts.php:581
|
||||||
msgid "View conversations"
|
msgid "View conversations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:579
|
#: mod/contacts.php:583
|
||||||
msgid "Delete contact"
|
msgid "Delete contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:583
|
#: mod/contacts.php:587
|
||||||
msgid "Last update:"
|
msgid "Last update:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:585
|
#: mod/contacts.php:589
|
||||||
msgid "Update public posts"
|
msgid "Update public posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:587 mod/admin.php:1541
|
#: mod/contacts.php:591 mod/admin.php:1569
|
||||||
msgid "Update now"
|
msgid "Update now"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:594
|
#: mod/contacts.php:598
|
||||||
msgid "Currently blocked"
|
msgid "Currently blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:595
|
#: mod/contacts.php:599
|
||||||
msgid "Currently ignored"
|
msgid "Currently ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:596
|
#: mod/contacts.php:600
|
||||||
msgid "Currently archived"
|
msgid "Currently archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:597 mod/notifications.php:157 mod/notifications.php:208
|
#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227
|
||||||
msgid "Hide this contact from others"
|
msgid "Hide this contact from others"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:597
|
#: mod/contacts.php:601
|
||||||
msgid ""
|
msgid ""
|
||||||
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
"Replies/likes to your public posts <strong>may</strong> still be visible"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:598
|
#: mod/contacts.php:602
|
||||||
msgid "Notification for new posts"
|
msgid "Notification for new posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:598
|
#: mod/contacts.php:602
|
||||||
msgid "Send a notification of every new post of this contact"
|
msgid "Send a notification of every new post of this contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:601
|
#: mod/contacts.php:605
|
||||||
msgid "Blacklisted keywords"
|
msgid "Blacklisted keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:601
|
#: mod/contacts.php:605
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of keywords that should not be converted to hashtags, "
|
"Comma separated list of keywords that should not be converted to hashtags, "
|
||||||
"when \"Fetch information and keywords\" is selected"
|
"when \"Fetch information and keywords\" is selected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:608
|
#: mod/contacts.php:612
|
||||||
msgid "Profile URL"
|
msgid "Profile URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:654
|
#: mod/contacts.php:658
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:657
|
#: mod/contacts.php:661
|
||||||
msgid "Suggest potential friends"
|
msgid "Suggest potential friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:660 mod/group.php:192
|
#: mod/contacts.php:665 mod/group.php:192
|
||||||
msgid "All Contacts"
|
msgid "All Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:663
|
#: mod/contacts.php:668
|
||||||
msgid "Show all contacts"
|
msgid "Show all contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:666
|
#: mod/contacts.php:672
|
||||||
msgid "Unblocked"
|
msgid "Unblocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:669
|
#: mod/contacts.php:675
|
||||||
msgid "Only show unblocked contacts"
|
msgid "Only show unblocked contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:673
|
#: mod/contacts.php:680
|
||||||
msgid "Blocked"
|
msgid "Blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:676
|
#: mod/contacts.php:683
|
||||||
msgid "Only show blocked contacts"
|
msgid "Only show blocked contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:680
|
#: mod/contacts.php:688
|
||||||
msgid "Ignored"
|
msgid "Ignored"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:683
|
#: mod/contacts.php:691
|
||||||
msgid "Only show ignored contacts"
|
msgid "Only show ignored contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:687
|
#: mod/contacts.php:696
|
||||||
msgid "Archived"
|
msgid "Archived"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:690
|
#: mod/contacts.php:699
|
||||||
msgid "Only show archived contacts"
|
msgid "Only show archived contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:694
|
#: mod/contacts.php:704
|
||||||
msgid "Hidden"
|
msgid "Hidden"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:697
|
#: mod/contacts.php:707
|
||||||
msgid "Only show hidden contacts"
|
msgid "Only show hidden contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:747 include/nav.php:178 view/theme/diabook/theme.php:125
|
#: mod/contacts.php:758 include/nav.php:178 view/theme/diabook/theme.php:125
|
||||||
msgid "Contacts"
|
msgid "Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:751
|
#: mod/contacts.php:762
|
||||||
msgid "Search your contacts"
|
msgid "Search your contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:752 mod/directory.php:63
|
#: mod/contacts.php:763 mod/directory.php:63
|
||||||
msgid "Finding: "
|
msgid "Finding: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:753 mod/directory.php:65 include/contact_widgets.php:34
|
#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34
|
||||||
msgid "Find"
|
msgid "Find"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:758 mod/settings.php:137 mod/settings.php:648
|
#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:657
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:762 mod/group.php:171 mod/admin.php:1045
|
#: mod/contacts.php:773 mod/group.php:171 mod/admin.php:1073
|
||||||
#: mod/content.php:440 mod/content.php:743 mod/settings.php:685
|
#: mod/content.php:440 mod/content.php:743 mod/settings.php:694
|
||||||
#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613
|
#: mod/photos.php:1673 object/Item.php:131 include/conversation.php:613
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:775
|
#: mod/contacts.php:786
|
||||||
msgid "Mutual Friendship"
|
msgid "Mutual Friendship"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:779
|
#: mod/contacts.php:790
|
||||||
msgid "is a fan of yours"
|
msgid "is a fan of yours"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:783
|
#: mod/contacts.php:794
|
||||||
msgid "you are a fan of"
|
msgid "you are a fan of"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/contacts.php:800 mod/nogroup.php:41
|
#: mod/contacts.php:811 mod/nogroup.php:41
|
||||||
msgid "Edit contact"
|
msgid "Edit contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -483,7 +483,7 @@ msgid "Profile Visibility Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529
|
#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529
|
||||||
#: include/identity.php:610 include/identity.php:639 include/nav.php:77
|
#: include/identity.php:610 include/identity.php:640 include/nav.php:77
|
||||||
#: view/theme/diabook/theme.php:124
|
#: view/theme/diabook/theme.php:124
|
||||||
msgid "Profile"
|
msgid "Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -501,7 +501,7 @@ msgid "All Contacts (with secure profile access)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/display.php:82 mod/display.php:295 mod/display.php:512
|
#: mod/display.php:82 mod/display.php:295 mod/display.php:512
|
||||||
#: mod/viewsrc.php:15 mod/admin.php:169 mod/admin.php:1090 mod/admin.php:1303
|
#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1118 mod/admin.php:1331
|
||||||
#: mod/notice.php:15 include/items.php:4813
|
#: mod/notice.php:15 include/items.php:4813
|
||||||
msgid "Item not found."
|
msgid "Item not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -551,8 +551,8 @@ msgid ""
|
||||||
"join."
|
"join."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/newmember.php:22 mod/admin.php:1142 mod/admin.php:1363
|
#: mod/newmember.php:22 mod/admin.php:1170 mod/admin.php:1391
|
||||||
#: mod/settings.php:90 include/nav.php:173 view/theme/diabook/theme.php:544
|
#: mod/settings.php:99 include/nav.php:173 view/theme/diabook/theme.php:544
|
||||||
#: view/theme/diabook/theme.php:648
|
#: view/theme/diabook/theme.php:648
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -777,7 +777,7 @@ msgstr ""
|
||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/profile_photo.php:248 mod/settings.php:1097
|
#: mod/profile_photo.php:248 mod/settings.php:1106
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -811,7 +811,7 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149
|
#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149
|
||||||
#: include/conversation.php:126 include/conversation.php:253
|
#: include/conversation.php:126 include/conversation.php:253
|
||||||
#: include/text.php:2000 include/diaspora.php:2111
|
#: include/text.php:2015 include/diaspora.php:2127
|
||||||
#: view/theme/diabook/theme.php:471
|
#: view/theme/diabook/theme.php:471
|
||||||
msgid "photo"
|
msgid "photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -819,7 +819,7 @@ msgstr ""
|
||||||
#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319
|
#: 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:121 include/conversation.php:130
|
||||||
#: include/conversation.php:248 include/conversation.php:257
|
#: include/conversation.php:248 include/conversation.php:257
|
||||||
#: include/diaspora.php:2111 view/theme/diabook/theme.php:466
|
#: include/diaspora.php:2127 view/theme/diabook/theme.php:466
|
||||||
#: view/theme/diabook/theme.php:475
|
#: view/theme/diabook/theme.php:475
|
||||||
msgid "status"
|
msgid "status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -854,7 +854,7 @@ msgstr ""
|
||||||
msgid "- select -"
|
msgid "- select -"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:978
|
#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:990
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -871,11 +871,11 @@ msgstr ""
|
||||||
msgid "Does %s know you?"
|
msgid "Does %s know you?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:57 mod/settings.php:1045 mod/settings.php:1051
|
#: mod/follow.php:57 mod/settings.php:1054 mod/settings.php:1060
|
||||||
#: mod/settings.php:1059 mod/settings.php:1063 mod/settings.php:1068
|
#: mod/settings.php:1068 mod/settings.php:1072 mod/settings.php:1077
|
||||||
#: mod/settings.php:1074 mod/settings.php:1080 mod/settings.php:1086
|
#: mod/settings.php:1083 mod/settings.php:1089 mod/settings.php:1095
|
||||||
#: mod/settings.php:1114 mod/settings.php:1115 mod/settings.php:1116
|
#: mod/settings.php:1123 mod/settings.php:1124 mod/settings.php:1125
|
||||||
#: mod/settings.php:1117 mod/settings.php:1118 mod/dfrn_request.php:845
|
#: mod/settings.php:1126 mod/settings.php:1127 mod/dfrn_request.php:845
|
||||||
#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662
|
#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662
|
||||||
#: mod/api.php:106
|
#: mod/api.php:106
|
||||||
msgid "No"
|
msgid "No"
|
||||||
|
|
@ -1038,7 +1038,7 @@ msgid "Unable to set contact photo."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/dfrn_confirm.php:487 include/conversation.php:172
|
#: mod/dfrn_confirm.php:487 include/conversation.php:172
|
||||||
#: include/diaspora.php:627
|
#: include/diaspora.php:634
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s is now friends with %2$s"
|
msgid "%1$s is now friends with %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -1112,7 +1112,7 @@ msgstr ""
|
||||||
msgid "Access to this item is restricted."
|
msgid "Access to this item is restricted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/videos.php:373 include/text.php:1429
|
#: mod/videos.php:373 include/text.php:1441
|
||||||
msgid "View Video"
|
msgid "View Video"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1276,7 +1276,7 @@ msgstr ""
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2127
|
#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143
|
||||||
#: view/theme/diabook/theme.php:480
|
#: view/theme/diabook/theme.php:480
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s likes %2$s's %3$s"
|
msgid "%1$s likes %2$s's %3$s"
|
||||||
|
|
@ -1303,7 +1303,7 @@ msgstr ""
|
||||||
msgid "No contacts."
|
msgid "No contacts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/viewcontacts.php:78 include/text.php:899
|
#: mod/viewcontacts.php:78 include/text.php:911
|
||||||
msgid "View Contacts"
|
msgid "View Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1311,8 +1311,8 @@ msgstr ""
|
||||||
msgid "Invalid request identifier."
|
msgid "Invalid request identifier."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:35 mod/notifications.php:165
|
#: mod/notifications.php:35 mod/notifications.php:175
|
||||||
#: mod/notifications.php:215
|
#: mod/notifications.php:234
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1320,168 +1320,188 @@ msgstr ""
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:83 include/nav.php:145
|
#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:145
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:88 mod/network.php:373
|
#: mod/notifications.php:90 mod/network.php:375
|
||||||
msgid "Personal"
|
msgid "Personal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:93 include/nav.php:105 include/nav.php:148
|
#: mod/notifications.php:96 include/nav.php:105 include/nav.php:148
|
||||||
#: view/theme/diabook/theme.php:123
|
#: view/theme/diabook/theme.php:123
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:98 include/nav.php:153
|
#: mod/notifications.php:102 include/nav.php:153
|
||||||
msgid "Introductions"
|
msgid "Introductions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:122
|
#: mod/notifications.php:127
|
||||||
msgid "Show Ignored Requests"
|
msgid "Show Ignored Requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:122
|
#: mod/notifications.php:127
|
||||||
msgid "Hide Ignored Requests"
|
msgid "Hide Ignored Requests"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:149 mod/notifications.php:199
|
#: mod/notifications.php:159 mod/notifications.php:209
|
||||||
msgid "Notification type: "
|
msgid "Notification type: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:150
|
#: mod/notifications.php:160
|
||||||
msgid "Friend Suggestion"
|
msgid "Friend Suggestion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:152
|
#: mod/notifications.php:162
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "suggested by %s"
|
msgid "suggested by %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:158 mod/notifications.php:209
|
#: mod/notifications.php:168 mod/notifications.php:228
|
||||||
msgid "Post a new friend activity"
|
msgid "Post a new friend activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:158 mod/notifications.php:209
|
#: mod/notifications.php:168 mod/notifications.php:228
|
||||||
msgid "if applicable"
|
msgid "if applicable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:161 mod/notifications.php:212 mod/admin.php:1043
|
#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1071
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:181
|
#: mod/notifications.php:191
|
||||||
msgid "Claims to be known to you: "
|
msgid "Claims to be known to you: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:181
|
#: mod/notifications.php:191
|
||||||
msgid "yes"
|
msgid "yes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:181
|
#: mod/notifications.php:191
|
||||||
msgid "no"
|
msgid "no"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:182
|
#: mod/notifications.php:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
|
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
|
||||||
"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
|
"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: "
|
"you allow to read but you do not want to read theirs. Approve as: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:185
|
#: mod/notifications.php:195
|
||||||
msgid ""
|
msgid ""
|
||||||
"Shall your connection be bidirectional or not? \"Friend\" implies that you "
|
"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 and you subscribe to their posts. \"Sharer\" means that you "
|
||||||
"allow to read but you do not want to read theirs. Approve as: "
|
"allow to read but you do not want to read theirs. Approve as: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:193
|
#: mod/notifications.php:203
|
||||||
msgid "Friend"
|
msgid "Friend"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:194
|
#: mod/notifications.php:204
|
||||||
msgid "Sharer"
|
msgid "Sharer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:194
|
#: mod/notifications.php:204
|
||||||
msgid "Fan/Admirer"
|
msgid "Fan/Admirer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:200
|
#: mod/notifications.php:210
|
||||||
msgid "Friend/Connect Request"
|
msgid "Friend/Connect Request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:200
|
#: mod/notifications.php:210
|
||||||
msgid "New Follower"
|
msgid "New Follower"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:221
|
#: 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."
|
msgid "No introductions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:224 include/nav.php:156
|
#: mod/notifications.php:243 include/nav.php:156
|
||||||
msgid "Notifications"
|
msgid "Notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:262 mod/notifications.php:391
|
#: mod/notifications.php:281 mod/notifications.php:410
|
||||||
#: mod/notifications.php:482
|
#: mod/notifications.php:501
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s liked %s's post"
|
msgid "%s liked %s's post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:272 mod/notifications.php:401
|
#: mod/notifications.php:291 mod/notifications.php:420
|
||||||
#: mod/notifications.php:492
|
#: mod/notifications.php:511
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s disliked %s's post"
|
msgid "%s disliked %s's post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:287 mod/notifications.php:416
|
#: mod/notifications.php:306 mod/notifications.php:435
|
||||||
#: mod/notifications.php:507
|
#: mod/notifications.php:526
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s is now friends with %s"
|
msgid "%s is now friends with %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:294 mod/notifications.php:423
|
#: mod/notifications.php:313 mod/notifications.php:442
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s created a new post"
|
msgid "%s created a new post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:295 mod/notifications.php:424
|
#: mod/notifications.php:314 mod/notifications.php:443
|
||||||
#: mod/notifications.php:517
|
#: mod/notifications.php:536
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s commented on %s's post"
|
msgid "%s commented on %s's post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:310
|
#: mod/notifications.php:329
|
||||||
msgid "No more network notifications."
|
msgid "No more network notifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:314
|
#: mod/notifications.php:333
|
||||||
msgid "Network Notifications"
|
msgid "Network Notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:340 mod/notify.php:72
|
#: mod/notifications.php:359 mod/notify.php:72
|
||||||
msgid "No more system notifications."
|
msgid "No more system notifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:344 mod/notify.php:76
|
#: mod/notifications.php:363 mod/notify.php:76
|
||||||
msgid "System Notifications"
|
msgid "System Notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:439
|
#: mod/notifications.php:458
|
||||||
msgid "No more personal notifications."
|
msgid "No more personal notifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:443
|
#: mod/notifications.php:462
|
||||||
msgid "Personal Notifications"
|
msgid "Personal Notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:524
|
#: mod/notifications.php:543
|
||||||
msgid "No more home notifications."
|
msgid "No more home notifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notifications.php:528
|
#: mod/notifications.php:547
|
||||||
msgid "Home Notifications"
|
msgid "Home Notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1545,131 +1565,131 @@ msgstr ""
|
||||||
msgid "New Message"
|
msgid "New Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:63 mod/wallmessage.php:56
|
#: mod/message.php:64 mod/wallmessage.php:56
|
||||||
msgid "No recipient selected."
|
msgid "No recipient selected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:67
|
#: mod/message.php:68
|
||||||
msgid "Unable to locate contact information."
|
msgid "Unable to locate contact information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:70 mod/wallmessage.php:62
|
#: mod/message.php:71 mod/wallmessage.php:62
|
||||||
msgid "Message could not be sent."
|
msgid "Message could not be sent."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:73 mod/wallmessage.php:65
|
#: mod/message.php:74 mod/wallmessage.php:65
|
||||||
msgid "Message collection failure."
|
msgid "Message collection failure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:76 mod/wallmessage.php:68
|
#: mod/message.php:77 mod/wallmessage.php:68
|
||||||
msgid "Message sent."
|
msgid "Message sent."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:182 include/nav.php:162
|
#: mod/message.php:183 include/nav.php:162
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:207
|
#: mod/message.php:208
|
||||||
msgid "Do you really want to delete this message?"
|
msgid "Do you really want to delete this message?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:227
|
#: mod/message.php:228
|
||||||
msgid "Message deleted."
|
msgid "Message deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:258
|
#: mod/message.php:259
|
||||||
msgid "Conversation removed."
|
msgid "Conversation removed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:283 mod/message.php:291 mod/message.php:466
|
#: mod/message.php:284 mod/message.php:292 mod/message.php:467
|
||||||
#: mod/message.php:474 mod/wallmessage.php:127 mod/wallmessage.php:135
|
#: mod/message.php:475 mod/wallmessage.php:127 mod/wallmessage.php:135
|
||||||
#: include/conversation.php:1001 include/conversation.php:1019
|
#: include/conversation.php:1001 include/conversation.php:1019
|
||||||
msgid "Please enter a link URL:"
|
msgid "Please enter a link URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:319 mod/wallmessage.php:142
|
#: mod/message.php:320 mod/wallmessage.php:142
|
||||||
msgid "Send Private Message"
|
msgid "Send Private Message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:320 mod/message.php:553 mod/wallmessage.php:144
|
#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144
|
||||||
msgid "To:"
|
msgid "To:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:325 mod/message.php:555 mod/wallmessage.php:145
|
#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145
|
||||||
msgid "Subject:"
|
msgid "Subject:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:329 mod/message.php:558 mod/wallmessage.php:151
|
#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151
|
||||||
#: mod/invite.php:134
|
#: mod/invite.php:134
|
||||||
msgid "Your message:"
|
msgid "Your message:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:332 mod/message.php:562 mod/wallmessage.php:154
|
#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154
|
||||||
#: mod/editpost.php:110 include/conversation.php:1056
|
#: mod/editpost.php:110 include/conversation.php:1056
|
||||||
msgid "Upload photo"
|
msgid "Upload photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:155
|
#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155
|
||||||
#: mod/editpost.php:114 include/conversation.php:1060
|
#: mod/editpost.php:114 include/conversation.php:1060
|
||||||
msgid "Insert web link"
|
msgid "Insert web link"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:334 mod/message.php:565 mod/content.php:501
|
#: 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/content.php:885 mod/wallmessage.php:156 mod/editpost.php:124
|
||||||
#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691
|
#: mod/photos.php:1564 object/Item.php:366 include/conversation.php:691
|
||||||
#: include/conversation.php:1074
|
#: include/conversation.php:1074
|
||||||
msgid "Please wait"
|
msgid "Please wait"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:371
|
#: mod/message.php:372
|
||||||
msgid "No messages."
|
msgid "No messages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:378
|
#: mod/message.php:379
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Unknown sender - %s"
|
msgid "Unknown sender - %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:381
|
#: mod/message.php:382
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You and %s"
|
msgid "You and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:384
|
#: mod/message.php:385
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s and You"
|
msgid "%s and You"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:405 mod/message.php:546
|
#: mod/message.php:406 mod/message.php:547
|
||||||
msgid "Delete conversation"
|
msgid "Delete conversation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:408
|
#: mod/message.php:409
|
||||||
msgid "D, d M Y - g:i A"
|
msgid "D, d M Y - g:i A"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:411
|
#: mod/message.php:412
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d message"
|
msgid "%d message"
|
||||||
msgid_plural "%d messages"
|
msgid_plural "%d messages"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: mod/message.php:450
|
#: mod/message.php:451
|
||||||
msgid "Message not available."
|
msgid "Message not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:520
|
#: mod/message.php:521
|
||||||
msgid "Delete message"
|
msgid "Delete message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:548
|
#: mod/message.php:549
|
||||||
msgid ""
|
msgid ""
|
||||||
"No secure communications available. You <strong>may</strong> be able to "
|
"No secure communications available. You <strong>may</strong> be able to "
|
||||||
"respond from the sender's profile page."
|
"respond from the sender's profile page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:552
|
#: mod/message.php:553
|
||||||
msgid "Send Reply"
|
msgid "Send Reply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1722,9 +1742,9 @@ msgstr ""
|
||||||
msgid "Refetch contact data"
|
msgid "Refetch contact data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/crepair.php:170 mod/admin.php:1041 mod/admin.php:1053
|
#: mod/crepair.php:170 mod/admin.php:1069 mod/admin.php:1081
|
||||||
#: mod/admin.php:1054 mod/admin.php:1067 mod/settings.php:624
|
#: mod/admin.php:1082 mod/admin.php:1095 mod/settings.php:633
|
||||||
#: mod/settings.php:650
|
#: mod/settings.php:659
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1800,7 +1820,7 @@ msgstr ""
|
||||||
msgid "No matches"
|
msgid "No matches"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/fbrowser.php:32 include/identity.php:646 include/nav.php:78
|
#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78
|
||||||
#: view/theme/diabook/theme.php:126
|
#: view/theme/diabook/theme.php:126
|
||||||
msgid "Photos"
|
msgid "Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -1817,19 +1837,19 @@ msgstr ""
|
||||||
msgid "Theme settings updated."
|
msgid "Theme settings updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:104 mod/admin.php:649
|
#: mod/admin.php:104 mod/admin.php:677
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:105 mod/admin.php:595 mod/admin.php:1036 mod/admin.php:1051
|
#: mod/admin.php:105 mod/admin.php:623 mod/admin.php:1064 mod/admin.php:1079
|
||||||
msgid "Users"
|
msgid "Users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:106 mod/admin.php:1140 mod/admin.php:1193 mod/settings.php:62
|
#: mod/admin.php:106 mod/admin.php:1168 mod/admin.php:1221 mod/settings.php:66
|
||||||
msgid "Plugins"
|
msgid "Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:107 mod/admin.php:1361 mod/admin.php:1395
|
#: mod/admin.php:107 mod/admin.php:1389 mod/admin.php:1423
|
||||||
msgid "Themes"
|
msgid "Themes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1837,664 +1857,696 @@ msgstr ""
|
||||||
msgid "DB updates"
|
msgid "DB updates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:123 mod/admin.php:132 mod/admin.php:1482
|
#: mod/admin.php:109 mod/admin.php:200
|
||||||
|
msgid "Inspect Queue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1510
|
||||||
msgid "Logs"
|
msgid "Logs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:124
|
#: mod/admin.php:125
|
||||||
msgid "probe address"
|
msgid "probe address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:125
|
#: mod/admin.php:126
|
||||||
msgid "check webfinger"
|
msgid "check webfinger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:130 include/nav.php:185
|
#: mod/admin.php:131 include/nav.php:185
|
||||||
msgid "Admin"
|
msgid "Admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:131
|
#: mod/admin.php:132
|
||||||
msgid "Plugin Features"
|
msgid "Plugin Features"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:133
|
#: mod/admin.php:134
|
||||||
msgid "diagnostics"
|
msgid "diagnostics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:134
|
#: mod/admin.php:135
|
||||||
msgid "User registrations waiting for confirmation"
|
msgid "User registrations waiting for confirmation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:193 mod/admin.php:989
|
#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:676 mod/admin.php:1063
|
||||||
msgid "Normal Account"
|
#: mod/admin.php:1167 mod/admin.php:1220 mod/admin.php:1388 mod/admin.php:1422
|
||||||
msgstr ""
|
#: mod/admin.php:1509
|
||||||
|
|
||||||
#: mod/admin.php:194 mod/admin.php:990
|
|
||||||
msgid "Soapbox Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mod/admin.php:195 mod/admin.php:991
|
|
||||||
msgid "Community/Celebrity Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mod/admin.php:196 mod/admin.php:992
|
|
||||||
msgid "Automatic Friend Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mod/admin.php:197
|
|
||||||
msgid "Blog Account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mod/admin.php:198
|
|
||||||
msgid "Private Forum"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mod/admin.php:217
|
|
||||||
msgid "Message queues"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mod/admin.php:222 mod/admin.php:648 mod/admin.php:1035 mod/admin.php:1139
|
|
||||||
#: mod/admin.php:1192 mod/admin.php:1360 mod/admin.php:1394 mod/admin.php:1481
|
|
||||||
msgid "Administration"
|
msgid "Administration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:223
|
#: mod/admin.php:202
|
||||||
msgid "Summary"
|
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:1017
|
||||||
|
msgid "Normal Account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mod/admin.php:221 mod/admin.php:1018
|
||||||
|
msgid "Soapbox Account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mod/admin.php:222 mod/admin.php:1019
|
||||||
|
msgid "Community/Celebrity Account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mod/admin.php:223 mod/admin.php:1020
|
||||||
|
msgid "Automatic Friend Account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mod/admin.php:224
|
||||||
|
msgid "Blog Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:225
|
#: 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"
|
msgid "Registered users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:227
|
#: mod/admin.php:254
|
||||||
msgid "Pending registrations"
|
msgid "Pending registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:228
|
#: mod/admin.php:255
|
||||||
msgid "Version"
|
msgid "Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:232
|
#: mod/admin.php:260
|
||||||
msgid "Active plugins"
|
msgid "Active plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:255
|
#: mod/admin.php:283
|
||||||
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
|
msgid "Can not parse base url. Must have at least <scheme>://<domain>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:532
|
#: mod/admin.php:560
|
||||||
msgid "Site settings updated."
|
msgid "Site settings updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:561 mod/settings.php:862
|
#: mod/admin.php:589 mod/settings.php:871
|
||||||
msgid "No special theme for mobile devices"
|
msgid "No special theme for mobile devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:578
|
#: mod/admin.php:606
|
||||||
msgid "No community page"
|
msgid "No community page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:579
|
#: mod/admin.php:607
|
||||||
msgid "Public postings from users of this site"
|
msgid "Public postings from users of this site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:580
|
#: mod/admin.php:608
|
||||||
msgid "Global community page"
|
msgid "Global community page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:586
|
#: mod/admin.php:614
|
||||||
msgid "At post arrival"
|
msgid "At post arrival"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:587 include/contact_selectors.php:56
|
#: mod/admin.php:615 include/contact_selectors.php:56
|
||||||
msgid "Frequently"
|
msgid "Frequently"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:588 include/contact_selectors.php:57
|
#: mod/admin.php:616 include/contact_selectors.php:57
|
||||||
msgid "Hourly"
|
msgid "Hourly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:589 include/contact_selectors.php:58
|
#: mod/admin.php:617 include/contact_selectors.php:58
|
||||||
msgid "Twice daily"
|
msgid "Twice daily"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:590 include/contact_selectors.php:59
|
#: mod/admin.php:618 include/contact_selectors.php:59
|
||||||
msgid "Daily"
|
msgid "Daily"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:596
|
#: mod/admin.php:624
|
||||||
msgid "Users, Global Contacts"
|
msgid "Users, Global Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:597
|
#: mod/admin.php:625
|
||||||
msgid "Users, Global Contacts/fallback"
|
msgid "Users, Global Contacts/fallback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:601
|
#: mod/admin.php:629
|
||||||
msgid "One month"
|
msgid "One month"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:602
|
#: mod/admin.php:630
|
||||||
msgid "Three months"
|
msgid "Three months"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:603
|
#: mod/admin.php:631
|
||||||
msgid "Half a year"
|
msgid "Half a year"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:604
|
#: mod/admin.php:632
|
||||||
msgid "One year"
|
msgid "One year"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:609
|
#: mod/admin.php:637
|
||||||
msgid "Multi user instance"
|
msgid "Multi user instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:632
|
#: mod/admin.php:660
|
||||||
msgid "Closed"
|
msgid "Closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:633
|
#: mod/admin.php:661
|
||||||
msgid "Requires approval"
|
msgid "Requires approval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:634
|
#: mod/admin.php:662
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:638
|
#: mod/admin.php:666
|
||||||
msgid "No SSL policy, links will track page SSL state"
|
msgid "No SSL policy, links will track page SSL state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:639
|
#: mod/admin.php:667
|
||||||
msgid "Force all links to use SSL"
|
msgid "Force all links to use SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:640
|
#: mod/admin.php:668
|
||||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:650 mod/admin.php:1194 mod/admin.php:1396 mod/admin.php:1483
|
#: mod/admin.php:678 mod/admin.php:1222 mod/admin.php:1424 mod/admin.php:1511
|
||||||
#: mod/settings.php:622 mod/settings.php:732 mod/settings.php:763
|
#: mod/settings.php:631 mod/settings.php:741 mod/settings.php:772
|
||||||
#: mod/settings.php:832 mod/settings.php:914 mod/settings.php:1146
|
#: mod/settings.php:841 mod/settings.php:923 mod/settings.php:1155
|
||||||
msgid "Save Settings"
|
msgid "Save Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:651 mod/register.php:260
|
#: mod/admin.php:679 mod/register.php:260
|
||||||
msgid "Registration"
|
msgid "Registration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:652
|
#: mod/admin.php:680
|
||||||
msgid "File upload"
|
msgid "File upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:653
|
#: mod/admin.php:681
|
||||||
msgid "Policies"
|
msgid "Policies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:654
|
#: mod/admin.php:682
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:655
|
#: mod/admin.php:683
|
||||||
msgid "Auto Discovered Contact Directory"
|
msgid "Auto Discovered Contact Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:656
|
#: mod/admin.php:684
|
||||||
msgid "Performance"
|
msgid "Performance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:657
|
#: mod/admin.php:685
|
||||||
msgid ""
|
msgid ""
|
||||||
"Relocate - WARNING: advanced function. Could make this server unreachable."
|
"Relocate - WARNING: advanced function. Could make this server unreachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:660
|
#: mod/admin.php:688
|
||||||
msgid "Site name"
|
msgid "Site name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:661
|
#: mod/admin.php:689
|
||||||
msgid "Host name"
|
msgid "Host name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:662
|
#: mod/admin.php:690
|
||||||
msgid "Sender Email"
|
msgid "Sender Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:663
|
#: mod/admin.php:691
|
||||||
msgid "Banner/Logo"
|
msgid "Banner/Logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:664
|
#: mod/admin.php:692
|
||||||
msgid "Shortcut icon"
|
msgid "Shortcut icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:665
|
#: mod/admin.php:693
|
||||||
msgid "Touch icon"
|
msgid "Touch icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:666
|
#: mod/admin.php:694
|
||||||
msgid "Additional Info"
|
msgid "Additional Info"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:666
|
#: mod/admin.php:694
|
||||||
msgid ""
|
msgid ""
|
||||||
"For public servers: you can add additional information here that will be "
|
"For public servers: you can add additional information here that will be "
|
||||||
"listed at dir.friendica.com/siteinfo."
|
"listed at dir.friendica.com/siteinfo."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:667
|
#: mod/admin.php:695
|
||||||
msgid "System language"
|
msgid "System language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:668
|
#: mod/admin.php:696
|
||||||
msgid "System theme"
|
msgid "System theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:668
|
#: mod/admin.php:696
|
||||||
msgid ""
|
msgid ""
|
||||||
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
"Default system theme - may be over-ridden by user profiles - <a href='#' "
|
||||||
"id='cnftheme'>change theme settings</a>"
|
"id='cnftheme'>change theme settings</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:669
|
#: mod/admin.php:697
|
||||||
msgid "Mobile system theme"
|
msgid "Mobile system theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:669
|
#: mod/admin.php:697
|
||||||
msgid "Theme for mobile devices"
|
msgid "Theme for mobile devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:670
|
#: mod/admin.php:698
|
||||||
msgid "SSL link policy"
|
msgid "SSL link policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:670
|
#: mod/admin.php:698
|
||||||
msgid "Determines whether generated links should be forced to use SSL"
|
msgid "Determines whether generated links should be forced to use SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:671
|
#: mod/admin.php:699
|
||||||
msgid "Force SSL"
|
msgid "Force SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:671
|
#: mod/admin.php:699
|
||||||
msgid ""
|
msgid ""
|
||||||
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
|
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
|
||||||
"to endless loops."
|
"to endless loops."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:672
|
#: mod/admin.php:700
|
||||||
msgid "Old style 'Share'"
|
msgid "Old style 'Share'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:672
|
#: mod/admin.php:700
|
||||||
msgid "Deactivates the bbcode element 'share' for repeating items."
|
msgid "Deactivates the bbcode element 'share' for repeating items."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:673
|
#: mod/admin.php:701
|
||||||
msgid "Hide help entry from navigation menu"
|
msgid "Hide help entry from navigation menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:673
|
#: mod/admin.php:701
|
||||||
msgid ""
|
msgid ""
|
||||||
"Hides the menu entry for the Help pages from the navigation menu. You can "
|
"Hides the menu entry for the Help pages from the navigation menu. You can "
|
||||||
"still access it calling /help directly."
|
"still access it calling /help directly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:674
|
#: mod/admin.php:702
|
||||||
msgid "Single user instance"
|
msgid "Single user instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:674
|
#: mod/admin.php:702
|
||||||
msgid "Make this instance multi-user or single-user for the named user"
|
msgid "Make this instance multi-user or single-user for the named user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:675
|
#: mod/admin.php:703
|
||||||
msgid "Maximum image size"
|
msgid "Maximum image size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:675
|
#: mod/admin.php:703
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||||
"limits."
|
"limits."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:676
|
#: mod/admin.php:704
|
||||||
msgid "Maximum image length"
|
msgid "Maximum image length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:676
|
#: mod/admin.php:704
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
||||||
"-1, which means no limits."
|
"-1, which means no limits."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:677
|
#: mod/admin.php:705
|
||||||
msgid "JPEG image quality"
|
msgid "JPEG image quality"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:677
|
#: mod/admin.php:705
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
||||||
"100, which is full quality."
|
"100, which is full quality."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:679
|
#: mod/admin.php:707
|
||||||
msgid "Register policy"
|
msgid "Register policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:680
|
#: mod/admin.php:708
|
||||||
msgid "Maximum Daily Registrations"
|
msgid "Maximum Daily Registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:680
|
#: mod/admin.php:708
|
||||||
msgid ""
|
msgid ""
|
||||||
"If registration is permitted above, this sets the maximum number of new user "
|
"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 "
|
"registrations to accept per day. If register is set to closed, this setting "
|
||||||
"has no effect."
|
"has no effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:681
|
#: mod/admin.php:709
|
||||||
msgid "Register text"
|
msgid "Register text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:681
|
#: mod/admin.php:709
|
||||||
msgid "Will be displayed prominently on the registration page."
|
msgid "Will be displayed prominently on the registration page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:682
|
#: mod/admin.php:710
|
||||||
msgid "Accounts abandoned after x days"
|
msgid "Accounts abandoned after x days"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:682
|
#: mod/admin.php:710
|
||||||
msgid ""
|
msgid ""
|
||||||
"Will not waste system resources polling external sites for abandonded "
|
"Will not waste system resources polling external sites for abandonded "
|
||||||
"accounts. Enter 0 for no time limit."
|
"accounts. Enter 0 for no time limit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:683
|
#: mod/admin.php:711
|
||||||
msgid "Allowed friend domains"
|
msgid "Allowed friend domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:683
|
#: mod/admin.php:711
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which are allowed to establish friendships "
|
"Comma separated list of domains which are allowed to establish friendships "
|
||||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:684
|
#: mod/admin.php:712
|
||||||
msgid "Allowed email domains"
|
msgid "Allowed email domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:684
|
#: mod/admin.php:712
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which are allowed in email addresses for "
|
"Comma separated list of domains which are allowed in email addresses for "
|
||||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||||
"domains"
|
"domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:685
|
#: mod/admin.php:713
|
||||||
msgid "Block public"
|
msgid "Block public"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:685
|
#: mod/admin.php:713
|
||||||
msgid ""
|
msgid ""
|
||||||
"Check to block public access to all otherwise public personal pages on this "
|
"Check to block public access to all otherwise public personal pages on this "
|
||||||
"site unless you are currently logged in."
|
"site unless you are currently logged in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:686
|
#: mod/admin.php:714
|
||||||
msgid "Force publish"
|
msgid "Force publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:686
|
#: mod/admin.php:714
|
||||||
msgid ""
|
msgid ""
|
||||||
"Check to force all profiles on this site to be listed in the site directory."
|
"Check to force all profiles on this site to be listed in the site directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:687
|
#: mod/admin.php:715
|
||||||
msgid "Global directory update URL"
|
msgid "Global directory update URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:687
|
#: mod/admin.php:715
|
||||||
msgid ""
|
msgid ""
|
||||||
"URL to update the global directory. If this is not set, the global directory "
|
"URL to update the global directory. If this is not set, the global directory "
|
||||||
"is completely unavailable to the application."
|
"is completely unavailable to the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:688
|
#: mod/admin.php:716
|
||||||
msgid "Allow threaded items"
|
msgid "Allow threaded items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:688
|
#: mod/admin.php:716
|
||||||
msgid "Allow infinite level threading for items on this site."
|
msgid "Allow infinite level threading for items on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:689
|
#: mod/admin.php:717
|
||||||
msgid "Private posts by default for new users"
|
msgid "Private posts by default for new users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:689
|
#: mod/admin.php:717
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set default post permissions for all new members to the default privacy "
|
"Set default post permissions for all new members to the default privacy "
|
||||||
"group rather than public."
|
"group rather than public."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:690
|
#: mod/admin.php:718
|
||||||
msgid "Don't include post content in email notifications"
|
msgid "Don't include post content in email notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:690
|
#: mod/admin.php:718
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't include the content of a post/comment/private message/etc. in the "
|
"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."
|
"email notifications that are sent out from this site, as a privacy measure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:691
|
#: mod/admin.php:719
|
||||||
msgid "Disallow public access to addons listed in the apps menu."
|
msgid "Disallow public access to addons listed in the apps menu."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:691
|
#: mod/admin.php:719
|
||||||
msgid ""
|
msgid ""
|
||||||
"Checking this box will restrict addons listed in the apps menu to members "
|
"Checking this box will restrict addons listed in the apps menu to members "
|
||||||
"only."
|
"only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:692
|
#: mod/admin.php:720
|
||||||
msgid "Don't embed private images in posts"
|
msgid "Don't embed private images in posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:692
|
#: mod/admin.php:720
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
"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 "
|
"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."
|
"photos will have to authenticate and load each image, which may take a while."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:693
|
#: mod/admin.php:721
|
||||||
msgid "Allow Users to set remote_self"
|
msgid "Allow Users to set remote_self"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:693
|
#: mod/admin.php:721
|
||||||
msgid ""
|
msgid ""
|
||||||
"With checking this, every user is allowed to mark every contact as a "
|
"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 "
|
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
||||||
"causes mirroring every posting of that contact in the users stream."
|
"causes mirroring every posting of that contact in the users stream."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:694
|
#: mod/admin.php:722
|
||||||
msgid "Block multiple registrations"
|
msgid "Block multiple registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:694
|
#: mod/admin.php:722
|
||||||
msgid "Disallow users to register additional accounts for use as pages."
|
msgid "Disallow users to register additional accounts for use as pages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:695
|
#: mod/admin.php:723
|
||||||
msgid "OpenID support"
|
msgid "OpenID support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:695
|
#: mod/admin.php:723
|
||||||
msgid "OpenID support for registration and logins."
|
msgid "OpenID support for registration and logins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:696
|
#: mod/admin.php:724
|
||||||
msgid "Fullname check"
|
msgid "Fullname check"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:696
|
#: mod/admin.php:724
|
||||||
msgid ""
|
msgid ""
|
||||||
"Force users to register with a space between firstname and lastname in Full "
|
"Force users to register with a space between firstname and lastname in Full "
|
||||||
"name, as an antispam measure"
|
"name, as an antispam measure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:697
|
#: mod/admin.php:725
|
||||||
msgid "UTF-8 Regular expressions"
|
msgid "UTF-8 Regular expressions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:697
|
#: mod/admin.php:725
|
||||||
msgid "Use PHP UTF8 regular expressions"
|
msgid "Use PHP UTF8 regular expressions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:698
|
#: mod/admin.php:726
|
||||||
msgid "Community Page Style"
|
msgid "Community Page Style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:698
|
#: mod/admin.php:726
|
||||||
msgid ""
|
msgid ""
|
||||||
"Type of community page to show. 'Global community' shows every public "
|
"Type of community page to show. 'Global community' shows every public "
|
||||||
"posting from an open distributed network that arrived on this server."
|
"posting from an open distributed network that arrived on this server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:699
|
#: mod/admin.php:727
|
||||||
msgid "Posts per user on community page"
|
msgid "Posts per user on community page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:699
|
#: mod/admin.php:727
|
||||||
msgid ""
|
msgid ""
|
||||||
"The maximum number of posts per user on the community page. (Not valid for "
|
"The maximum number of posts per user on the community page. (Not valid for "
|
||||||
"'Global Community')"
|
"'Global Community')"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:700
|
#: mod/admin.php:728
|
||||||
msgid "Enable OStatus support"
|
msgid "Enable OStatus support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:700
|
#: mod/admin.php:728
|
||||||
msgid ""
|
msgid ""
|
||||||
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
||||||
"communications in OStatus are public, so privacy warnings will be "
|
"communications in OStatus are public, so privacy warnings will be "
|
||||||
"occasionally displayed."
|
"occasionally displayed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:701
|
#: mod/admin.php:729
|
||||||
msgid "OStatus conversation completion interval"
|
msgid "OStatus conversation completion interval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:701
|
#: mod/admin.php:729
|
||||||
msgid ""
|
msgid ""
|
||||||
"How often shall the poller check for new entries in OStatus conversations? "
|
"How often shall the poller check for new entries in OStatus conversations? "
|
||||||
"This can be a very ressource task."
|
"This can be a very ressource task."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:702
|
#: mod/admin.php:730
|
||||||
msgid "Enable Diaspora support"
|
msgid "Enable Diaspora support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:702
|
#: mod/admin.php:730
|
||||||
msgid "Provide built-in Diaspora network compatibility."
|
msgid "Provide built-in Diaspora network compatibility."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:703
|
#: mod/admin.php:731
|
||||||
msgid "Only allow Friendica contacts"
|
msgid "Only allow Friendica contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:703
|
#: mod/admin.php:731
|
||||||
msgid ""
|
msgid ""
|
||||||
"All contacts must use Friendica protocols. All other built-in communication "
|
"All contacts must use Friendica protocols. All other built-in communication "
|
||||||
"protocols disabled."
|
"protocols disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:704
|
#: mod/admin.php:732
|
||||||
msgid "Verify SSL"
|
msgid "Verify SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:704
|
#: mod/admin.php:732
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish, you can turn on strict certificate checking. This will mean you "
|
"If you wish, you can turn on strict certificate checking. This will mean you "
|
||||||
"cannot connect (at all) to self-signed SSL sites."
|
"cannot connect (at all) to self-signed SSL sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:705
|
#: mod/admin.php:733
|
||||||
msgid "Proxy user"
|
msgid "Proxy user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:706
|
#: mod/admin.php:734
|
||||||
msgid "Proxy URL"
|
msgid "Proxy URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:707
|
#: mod/admin.php:735
|
||||||
msgid "Network timeout"
|
msgid "Network timeout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:707
|
#: mod/admin.php:735
|
||||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:708
|
#: mod/admin.php:736
|
||||||
msgid "Delivery interval"
|
msgid "Delivery interval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:708
|
#: mod/admin.php:736
|
||||||
msgid ""
|
msgid ""
|
||||||
"Delay background delivery processes by this many seconds to reduce system "
|
"Delay background delivery processes by this many seconds to reduce system "
|
||||||
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
|
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
|
||||||
"for large dedicated servers."
|
"for large dedicated servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:709
|
#: mod/admin.php:737
|
||||||
msgid "Poll interval"
|
msgid "Poll interval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:709
|
#: mod/admin.php:737
|
||||||
msgid ""
|
msgid ""
|
||||||
"Delay background polling processes by this many seconds to reduce system "
|
"Delay background polling processes by this many seconds to reduce system "
|
||||||
"load. If 0, use delivery interval."
|
"load. If 0, use delivery interval."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:710
|
#: mod/admin.php:738
|
||||||
msgid "Maximum Load Average"
|
msgid "Maximum Load Average"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:710
|
#: mod/admin.php:738
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum system load before delivery and poll processes are deferred - "
|
"Maximum system load before delivery and poll processes are deferred - "
|
||||||
"default 50."
|
"default 50."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:711
|
#: mod/admin.php:739
|
||||||
msgid "Maximum Load Average (Frontend)"
|
msgid "Maximum Load Average (Frontend)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:711
|
#: mod/admin.php:739
|
||||||
msgid "Maximum system load before the frontend quits service - default 50."
|
msgid "Maximum system load before the frontend quits service - default 50."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:713
|
#: mod/admin.php:741
|
||||||
msgid "Periodical check of global contacts"
|
msgid "Periodical check of global contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:713
|
#: mod/admin.php:741
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, the global contacts are checked periodically for missing or "
|
"If enabled, the global contacts are checked periodically for missing or "
|
||||||
"outdated data and the vitality of the contacts and servers."
|
"outdated data and the vitality of the contacts and servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:714
|
#: mod/admin.php:742
|
||||||
msgid "Discover contacts from other servers"
|
msgid "Discover contacts from other servers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:714
|
#: mod/admin.php:742
|
||||||
msgid ""
|
msgid ""
|
||||||
"Periodically query other servers for contacts. You can choose between "
|
"Periodically query other servers for contacts. You can choose between "
|
||||||
"'users': the users on the remote system, 'Global Contacts': active contacts "
|
"'users': the users on the remote system, 'Global Contacts': active contacts "
|
||||||
|
|
@ -2504,186 +2556,186 @@ msgid ""
|
||||||
"Global Contacts'."
|
"Global Contacts'."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:715
|
#: mod/admin.php:743
|
||||||
msgid "Timeframe for fetching global contacts"
|
msgid "Timeframe for fetching global contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:715
|
#: mod/admin.php:743
|
||||||
msgid ""
|
msgid ""
|
||||||
"When the discovery is activated, this value defines the timeframe for the "
|
"When the discovery is activated, this value defines the timeframe for the "
|
||||||
"activity of the global contacts that are fetched from other servers."
|
"activity of the global contacts that are fetched from other servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:716
|
#: mod/admin.php:744
|
||||||
msgid "Search the local directory"
|
msgid "Search the local directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:716
|
#: mod/admin.php:744
|
||||||
msgid ""
|
msgid ""
|
||||||
"Search the local directory instead of the global directory. When searching "
|
"Search the local directory instead of the global directory. When searching "
|
||||||
"locally, every search will be executed on the global directory in the "
|
"locally, every search will be executed on the global directory in the "
|
||||||
"background. This improves the search results when the search is repeated."
|
"background. This improves the search results when the search is repeated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:718
|
#: mod/admin.php:746
|
||||||
msgid "Use MySQL full text engine"
|
msgid "Use MySQL full text engine"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:718
|
#: mod/admin.php:746
|
||||||
msgid ""
|
msgid ""
|
||||||
"Activates the full text engine. Speeds up search - but can only search for "
|
"Activates the full text engine. Speeds up search - but can only search for "
|
||||||
"four and more characters."
|
"four and more characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:719
|
#: mod/admin.php:747
|
||||||
msgid "Suppress Language"
|
msgid "Suppress Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:719
|
#: mod/admin.php:747
|
||||||
msgid "Suppress language information in meta information about a posting."
|
msgid "Suppress language information in meta information about a posting."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:720
|
#: mod/admin.php:748
|
||||||
msgid "Suppress Tags"
|
msgid "Suppress Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:720
|
#: mod/admin.php:748
|
||||||
msgid "Suppress showing a list of hashtags at the end of the posting."
|
msgid "Suppress showing a list of hashtags at the end of the posting."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:721
|
#: mod/admin.php:749
|
||||||
msgid "Path to item cache"
|
msgid "Path to item cache"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:722
|
#: mod/admin.php:750
|
||||||
msgid "Cache duration in seconds"
|
msgid "Cache duration in seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:722
|
#: mod/admin.php:750
|
||||||
msgid ""
|
msgid ""
|
||||||
"How long should the cache files be hold? Default value is 86400 seconds (One "
|
"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."
|
"day). To disable the item cache, set the value to -1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:723
|
#: mod/admin.php:751
|
||||||
msgid "Maximum numbers of comments per post"
|
msgid "Maximum numbers of comments per post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:723
|
#: mod/admin.php:751
|
||||||
msgid "How much comments should be shown for each post? Default value is 100."
|
msgid "How much comments should be shown for each post? Default value is 100."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:724
|
#: mod/admin.php:752
|
||||||
msgid "Path for lock file"
|
msgid "Path for lock file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:725
|
#: mod/admin.php:753
|
||||||
msgid "Temp path"
|
msgid "Temp path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:726
|
#: mod/admin.php:754
|
||||||
msgid "Base path to installation"
|
msgid "Base path to installation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:727
|
#: mod/admin.php:755
|
||||||
msgid "Disable picture proxy"
|
msgid "Disable picture proxy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:727
|
#: mod/admin.php:755
|
||||||
msgid ""
|
msgid ""
|
||||||
"The picture proxy increases performance and privacy. It shouldn't be used on "
|
"The picture proxy increases performance and privacy. It shouldn't be used on "
|
||||||
"systems with very low bandwith."
|
"systems with very low bandwith."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:728
|
#: mod/admin.php:756
|
||||||
msgid "Enable old style pager"
|
msgid "Enable old style pager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:728
|
#: mod/admin.php:756
|
||||||
msgid ""
|
msgid ""
|
||||||
"The old style pager has page numbers but slows down massively the page speed."
|
"The old style pager has page numbers but slows down massively the page speed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:729
|
#: mod/admin.php:757
|
||||||
msgid "Only search in tags"
|
msgid "Only search in tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:729
|
#: mod/admin.php:757
|
||||||
msgid "On large systems the text search can slow down the system extremely."
|
msgid "On large systems the text search can slow down the system extremely."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:731
|
#: mod/admin.php:759
|
||||||
msgid "New base url"
|
msgid "New base url"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:733
|
#: mod/admin.php:761
|
||||||
msgid "RINO Encryption"
|
msgid "RINO Encryption"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:733
|
#: mod/admin.php:761
|
||||||
msgid "Encryption layer between nodes."
|
msgid "Encryption layer between nodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:751
|
#: mod/admin.php:779
|
||||||
msgid "Update has been marked successful"
|
msgid "Update has been marked successful"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:759
|
#: mod/admin.php:787
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Database structure update %s was successfully applied."
|
msgid "Database structure update %s was successfully applied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:762
|
#: mod/admin.php:790
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Executing of database structure update %s failed with error: %s"
|
msgid "Executing of database structure update %s failed with error: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:774
|
#: mod/admin.php:802
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Executing %s failed with error: %s"
|
msgid "Executing %s failed with error: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:777
|
#: mod/admin.php:805
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Update %s was successfully applied."
|
msgid "Update %s was successfully applied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:781
|
#: mod/admin.php:809
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Update %s did not return a status. Unknown if it succeeded."
|
msgid "Update %s did not return a status. Unknown if it succeeded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:783
|
#: mod/admin.php:811
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "There was no additional update function %s that needed to be called."
|
msgid "There was no additional update function %s that needed to be called."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:802
|
#: mod/admin.php:830
|
||||||
msgid "No failed updates."
|
msgid "No failed updates."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:803
|
#: mod/admin.php:831
|
||||||
msgid "Check database structure"
|
msgid "Check database structure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:808
|
#: mod/admin.php:836
|
||||||
msgid "Failed Updates"
|
msgid "Failed Updates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:809
|
#: mod/admin.php:837
|
||||||
msgid ""
|
msgid ""
|
||||||
"This does not include updates prior to 1139, which did not return a status."
|
"This does not include updates prior to 1139, which did not return a status."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:810
|
#: mod/admin.php:838
|
||||||
msgid "Mark success (if update was manually applied)"
|
msgid "Mark success (if update was manually applied)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:811
|
#: mod/admin.php:839
|
||||||
msgid "Attempt to execute this update step automatically"
|
msgid "Attempt to execute this update step automatically"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:843
|
#: mod/admin.php:871
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
|
@ -2691,7 +2743,7 @@ msgid ""
|
||||||
"\t\t\t\tthe administrator of %2$s has set up an account for you."
|
"\t\t\t\tthe administrator of %2$s has set up an account for you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:846
|
#: mod/admin.php:874
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
|
|
@ -2727,222 +2779,222 @@ msgid ""
|
||||||
"\t\t\tThank you and welcome to %4$s."
|
"\t\t\tThank you and welcome to %4$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:878 include/user.php:421
|
#: mod/admin.php:906 include/user.php:421
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Registration details for %s"
|
msgid "Registration details for %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:890
|
#: mod/admin.php:918
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s user blocked/unblocked"
|
msgid "%s user blocked/unblocked"
|
||||||
msgid_plural "%s users blocked/unblocked"
|
msgid_plural "%s users blocked/unblocked"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: mod/admin.php:897
|
#: mod/admin.php:925
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s user deleted"
|
msgid "%s user deleted"
|
||||||
msgid_plural "%s users deleted"
|
msgid_plural "%s users deleted"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: mod/admin.php:936
|
#: mod/admin.php:964
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "User '%s' deleted"
|
msgid "User '%s' deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:944
|
#: mod/admin.php:972
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "User '%s' unblocked"
|
msgid "User '%s' unblocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:944
|
#: mod/admin.php:972
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "User '%s' blocked"
|
msgid "User '%s' blocked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1037
|
#: mod/admin.php:1065
|
||||||
msgid "Add User"
|
msgid "Add User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1038
|
#: mod/admin.php:1066
|
||||||
msgid "select all"
|
msgid "select all"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1039
|
#: mod/admin.php:1067
|
||||||
msgid "User registrations waiting for confirm"
|
msgid "User registrations waiting for confirm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1040
|
#: mod/admin.php:1068
|
||||||
msgid "User waiting for permanent deletion"
|
msgid "User waiting for permanent deletion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1041
|
#: mod/admin.php:1069
|
||||||
msgid "Request date"
|
msgid "Request date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1041 mod/admin.php:1053 mod/admin.php:1054 mod/admin.php:1069
|
#: mod/admin.php:1069 mod/admin.php:1081 mod/admin.php:1082 mod/admin.php:1097
|
||||||
#: include/contact_selectors.php:79 include/contact_selectors.php:86
|
#: include/contact_selectors.php:79 include/contact_selectors.php:86
|
||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1042
|
#: mod/admin.php:1070
|
||||||
msgid "No registrations."
|
msgid "No registrations."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1044
|
#: mod/admin.php:1072
|
||||||
msgid "Deny"
|
msgid "Deny"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1048
|
#: mod/admin.php:1076
|
||||||
msgid "Site admin"
|
msgid "Site admin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1049
|
#: mod/admin.php:1077
|
||||||
msgid "Account expired"
|
msgid "Account expired"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1052
|
#: mod/admin.php:1080
|
||||||
msgid "New User"
|
msgid "New User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1053 mod/admin.php:1054
|
#: mod/admin.php:1081 mod/admin.php:1082
|
||||||
msgid "Register date"
|
msgid "Register date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1053 mod/admin.php:1054
|
#: mod/admin.php:1081 mod/admin.php:1082
|
||||||
msgid "Last login"
|
msgid "Last login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1053 mod/admin.php:1054
|
#: mod/admin.php:1081 mod/admin.php:1082
|
||||||
msgid "Last item"
|
msgid "Last item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1053
|
#: mod/admin.php:1081
|
||||||
msgid "Deleted since"
|
msgid "Deleted since"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1054 mod/settings.php:41
|
#: mod/admin.php:1082 mod/settings.php:41
|
||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1056
|
#: mod/admin.php:1084
|
||||||
msgid ""
|
msgid ""
|
||||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1057
|
#: mod/admin.php:1085
|
||||||
msgid ""
|
msgid ""
|
||||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1067
|
#: mod/admin.php:1095
|
||||||
msgid "Name of the new user."
|
msgid "Name of the new user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1068
|
#: mod/admin.php:1096
|
||||||
msgid "Nickname"
|
msgid "Nickname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1068
|
#: mod/admin.php:1096
|
||||||
msgid "Nickname of the new user."
|
msgid "Nickname of the new user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1069
|
#: mod/admin.php:1097
|
||||||
msgid "Email address of the new user."
|
msgid "Email address of the new user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1102
|
#: mod/admin.php:1130
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Plugin %s disabled."
|
msgid "Plugin %s disabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1106
|
#: mod/admin.php:1134
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Plugin %s enabled."
|
msgid "Plugin %s enabled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1116 mod/admin.php:1332
|
#: mod/admin.php:1144 mod/admin.php:1360
|
||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1118 mod/admin.php:1334
|
#: mod/admin.php:1146 mod/admin.php:1362
|
||||||
msgid "Enable"
|
msgid "Enable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1141 mod/admin.php:1362
|
#: mod/admin.php:1169 mod/admin.php:1390
|
||||||
msgid "Toggle"
|
msgid "Toggle"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1149 mod/admin.php:1372
|
#: mod/admin.php:1177 mod/admin.php:1400
|
||||||
msgid "Author: "
|
msgid "Author: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1150 mod/admin.php:1373
|
#: mod/admin.php:1178 mod/admin.php:1401
|
||||||
msgid "Maintainer: "
|
msgid "Maintainer: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1292
|
#: mod/admin.php:1320
|
||||||
msgid "No themes found."
|
msgid "No themes found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1354
|
#: mod/admin.php:1382
|
||||||
msgid "Screenshot"
|
msgid "Screenshot"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1400
|
#: mod/admin.php:1428
|
||||||
msgid "[Experimental]"
|
msgid "[Experimental]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1401
|
#: mod/admin.php:1429
|
||||||
msgid "[Unsupported]"
|
msgid "[Unsupported]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1428
|
#: mod/admin.php:1456
|
||||||
msgid "Log settings updated."
|
msgid "Log settings updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1484
|
#: mod/admin.php:1512
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1490
|
#: mod/admin.php:1518
|
||||||
msgid "Enable Debugging"
|
msgid "Enable Debugging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1491
|
#: mod/admin.php:1519
|
||||||
msgid "Log file"
|
msgid "Log file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1491
|
#: mod/admin.php:1519
|
||||||
msgid ""
|
msgid ""
|
||||||
"Must be writable by web server. Relative to your Friendica top-level "
|
"Must be writable by web server. Relative to your Friendica top-level "
|
||||||
"directory."
|
"directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1492
|
#: mod/admin.php:1520
|
||||||
msgid "Log level"
|
msgid "Log level"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1542 include/acl_selectors.php:347
|
#: mod/admin.php:1570 include/acl_selectors.php:347
|
||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1548
|
#: mod/admin.php:1576
|
||||||
msgid "FTP Host"
|
msgid "FTP Host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1549
|
#: mod/admin.php:1577
|
||||||
msgid "FTP Path"
|
msgid "FTP Path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1550
|
#: mod/admin.php:1578
|
||||||
msgid "FTP User"
|
msgid "FTP User"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/admin.php:1551
|
#: mod/admin.php:1579
|
||||||
msgid "FTP Password"
|
msgid "FTP Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2971,43 +3023,43 @@ msgstr ""
|
||||||
msgid "Sort by Comment Date"
|
msgid "Sort by Comment Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:364
|
#: mod/network.php:365
|
||||||
msgid "Posted Order"
|
msgid "Posted Order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:367
|
#: mod/network.php:368
|
||||||
msgid "Sort by Post Date"
|
msgid "Sort by Post Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:376
|
#: mod/network.php:378
|
||||||
msgid "Posts that mention or involve you"
|
msgid "Posts that mention or involve you"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:382
|
#: mod/network.php:385
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:385
|
#: mod/network.php:388
|
||||||
msgid "Activity Stream - by date"
|
msgid "Activity Stream - by date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:391
|
#: mod/network.php:395
|
||||||
msgid "Shared Links"
|
msgid "Shared Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:394
|
#: mod/network.php:398
|
||||||
msgid "Interesting Links"
|
msgid "Interesting Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:400
|
#: mod/network.php:405
|
||||||
msgid "Starred"
|
msgid "Starred"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:403
|
#: mod/network.php:408
|
||||||
msgid "Favourite Posts"
|
msgid "Favourite Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:460
|
#: mod/network.php:466
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Warning: This group contains %s member from an insecure network."
|
msgid "Warning: This group contains %s member from an insecure network."
|
||||||
msgid_plural ""
|
msgid_plural ""
|
||||||
|
|
@ -3015,33 +3067,33 @@ msgid_plural ""
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: mod/network.php:463
|
#: mod/network.php:469
|
||||||
msgid "Private messages to this group are at risk of public disclosure."
|
msgid "Private messages to this group are at risk of public disclosure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:526 mod/content.php:119
|
#: mod/network.php:532 mod/content.php:119
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:543 mod/content.php:130
|
#: mod/network.php:549 mod/content.php:130
|
||||||
msgid "Group is empty"
|
msgid "Group is empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:554 mod/content.php:135
|
#: mod/network.php:560 mod/content.php:135
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Group: %s"
|
msgid "Group: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:572
|
#: mod/network.php:578
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Contact: %s"
|
msgid "Contact: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:576
|
#: mod/network.php:582
|
||||||
msgid "Private messages to this person are at risk of public disclosure."
|
msgid "Private messages to this person are at risk of public disclosure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/network.php:581
|
#: mod/network.php:587
|
||||||
msgid "Invalid contact."
|
msgid "Invalid contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3070,11 +3122,11 @@ msgstr ""
|
||||||
msgid "Edit event"
|
msgid "Edit event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:361 include/text.php:1679 include/text.php:1689
|
#: mod/events.php:361 include/text.php:1697 include/text.php:1704
|
||||||
msgid "link to source"
|
msgid "link to source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:396 include/identity.php:663 include/nav.php:80
|
#: mod/events.php:396 include/identity.php:667 include/nav.php:80
|
||||||
#: view/theme/diabook/theme.php:127
|
#: view/theme/diabook/theme.php:127
|
||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3123,11 +3175,6 @@ msgstr ""
|
||||||
msgid "Description:"
|
msgid "Description:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:503 mod/directory.php:152 include/identity.php:268
|
|
||||||
#: include/bb2diaspora.php:170 include/event.php:42
|
|
||||||
msgid "Location:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mod/events.php:505
|
#: mod/events.php:505
|
||||||
msgid "Title:"
|
msgid "Title:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3171,7 +3218,7 @@ msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: mod/content.php:607 object/Item.php:391 object/Item.php:404
|
#: mod/content.php:607 object/Item.php:391 object/Item.php:404
|
||||||
#: include/text.php:2004
|
#: include/text.php:2019
|
||||||
msgid "comment"
|
msgid "comment"
|
||||||
msgid_plural "comments"
|
msgid_plural "comments"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
|
|
@ -3252,7 +3299,7 @@ msgstr ""
|
||||||
msgid "Video"
|
msgid "Video"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/content.php:730 mod/settings.php:684 object/Item.php:121
|
#: mod/content.php:730 mod/settings.php:693 object/Item.php:121
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3695,664 +3742,664 @@ msgstr ""
|
||||||
msgid "everybody"
|
msgid "everybody"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:46
|
#: mod/settings.php:47
|
||||||
msgid "Additional features"
|
msgid "Additional features"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:51
|
#: mod/settings.php:53
|
||||||
msgid "Display"
|
msgid "Display"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:57 mod/settings.php:814
|
#: mod/settings.php:60 mod/settings.php:823
|
||||||
msgid "Social Networks"
|
msgid "Social Networks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:67 include/nav.php:171
|
#: mod/settings.php:72 include/nav.php:171
|
||||||
msgid "Delegations"
|
msgid "Delegations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:72
|
#: mod/settings.php:78
|
||||||
msgid "Connected apps"
|
msgid "Connected apps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:77 mod/uexport.php:85
|
#: mod/settings.php:84 mod/uexport.php:85
|
||||||
msgid "Export personal data"
|
msgid "Export personal data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:82
|
#: mod/settings.php:90
|
||||||
msgid "Remove account"
|
msgid "Remove account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:134
|
#: mod/settings.php:143
|
||||||
msgid "Missing some important data!"
|
msgid "Missing some important data!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:246
|
#: mod/settings.php:255
|
||||||
msgid "Failed to connect with email account using the settings provided."
|
msgid "Failed to connect with email account using the settings provided."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:251
|
#: mod/settings.php:260
|
||||||
msgid "Email settings updated."
|
msgid "Email settings updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:266
|
#: mod/settings.php:275
|
||||||
msgid "Features updated"
|
msgid "Features updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:329
|
#: mod/settings.php:338
|
||||||
msgid "Relocate message has been send to your contacts"
|
msgid "Relocate message has been send to your contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:343 include/user.php:39
|
#: mod/settings.php:352 include/user.php:39
|
||||||
msgid "Passwords do not match. Password unchanged."
|
msgid "Passwords do not match. Password unchanged."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:348
|
#: mod/settings.php:357
|
||||||
msgid "Empty passwords are not allowed. Password unchanged."
|
msgid "Empty passwords are not allowed. Password unchanged."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:356
|
#: mod/settings.php:365
|
||||||
msgid "Wrong password."
|
msgid "Wrong password."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:367
|
#: mod/settings.php:376
|
||||||
msgid "Password changed."
|
msgid "Password changed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:369
|
#: mod/settings.php:378
|
||||||
msgid "Password update failed. Please try again."
|
msgid "Password update failed. Please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:436
|
#: mod/settings.php:445
|
||||||
msgid " Please use a shorter name."
|
msgid " Please use a shorter name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:438
|
#: mod/settings.php:447
|
||||||
msgid " Name too short."
|
msgid " Name too short."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:447
|
#: mod/settings.php:456
|
||||||
msgid "Wrong Password"
|
msgid "Wrong Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:452
|
#: mod/settings.php:461
|
||||||
msgid " Not valid email."
|
msgid " Not valid email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:458
|
#: mod/settings.php:467
|
||||||
msgid " Cannot change to that email."
|
msgid " Cannot change to that email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:514
|
#: mod/settings.php:523
|
||||||
msgid "Private forum has no privacy permissions. Using default privacy group."
|
msgid "Private forum has no privacy permissions. Using default privacy group."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:518
|
#: mod/settings.php:527
|
||||||
msgid "Private forum has no privacy permissions and no default privacy group."
|
msgid "Private forum has no privacy permissions and no default privacy group."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:548
|
#: mod/settings.php:557
|
||||||
msgid "Settings updated."
|
msgid "Settings updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:621 mod/settings.php:647 mod/settings.php:683
|
#: mod/settings.php:630 mod/settings.php:656 mod/settings.php:692
|
||||||
msgid "Add application"
|
msgid "Add application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:625 mod/settings.php:651
|
#: mod/settings.php:634 mod/settings.php:660
|
||||||
msgid "Consumer Key"
|
msgid "Consumer Key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:626 mod/settings.php:652
|
#: mod/settings.php:635 mod/settings.php:661
|
||||||
msgid "Consumer Secret"
|
msgid "Consumer Secret"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:627 mod/settings.php:653
|
#: mod/settings.php:636 mod/settings.php:662
|
||||||
msgid "Redirect"
|
msgid "Redirect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:628 mod/settings.php:654
|
#: mod/settings.php:637 mod/settings.php:663
|
||||||
msgid "Icon url"
|
msgid "Icon url"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:639
|
#: mod/settings.php:648
|
||||||
msgid "You can't edit this application."
|
msgid "You can't edit this application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:682
|
#: mod/settings.php:691
|
||||||
msgid "Connected Apps"
|
msgid "Connected Apps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:686
|
#: mod/settings.php:695
|
||||||
msgid "Client key starts with"
|
msgid "Client key starts with"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:687
|
#: mod/settings.php:696
|
||||||
msgid "No name"
|
msgid "No name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:688
|
#: mod/settings.php:697
|
||||||
msgid "Remove authorization"
|
msgid "Remove authorization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:700
|
#: mod/settings.php:709
|
||||||
msgid "No Plugin settings configured"
|
msgid "No Plugin settings configured"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:708
|
#: mod/settings.php:717
|
||||||
msgid "Plugin Settings"
|
msgid "Plugin Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:722
|
#: mod/settings.php:731
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:722
|
#: mod/settings.php:731
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:730
|
#: mod/settings.php:739
|
||||||
msgid "Additional Features"
|
msgid "Additional Features"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:740 mod/settings.php:744
|
#: mod/settings.php:749 mod/settings.php:753
|
||||||
msgid "General Social Media Settings"
|
msgid "General Social Media Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:750
|
#: mod/settings.php:759
|
||||||
msgid "Disable intelligent shortening"
|
msgid "Disable intelligent shortening"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:752
|
#: mod/settings.php:761
|
||||||
msgid ""
|
msgid ""
|
||||||
"Normally the system tries to find the best link to add to shortened posts. "
|
"Normally the system tries to find the best link to add to shortened posts. "
|
||||||
"If this option is enabled then every shortened post will always point to the "
|
"If this option is enabled then every shortened post will always point to the "
|
||||||
"original friendica post."
|
"original friendica post."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:758
|
#: mod/settings.php:767
|
||||||
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
|
msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:760
|
#: mod/settings.php:769
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you receive a message from an unknown OStatus user, this option decides "
|
"If you receive a message from an unknown OStatus user, this option decides "
|
||||||
"what to do. If it is checked, a new contact will be created for every "
|
"what to do. If it is checked, a new contact will be created for every "
|
||||||
"unknown user."
|
"unknown user."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:770 mod/settings.php:771
|
#: mod/settings.php:779 mod/settings.php:780
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Built-in support for %s connectivity is %s"
|
msgid "Built-in support for %s connectivity is %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:770 mod/dfrn_request.php:853
|
#: mod/settings.php:779 mod/dfrn_request.php:853
|
||||||
#: include/contact_selectors.php:80
|
#: include/contact_selectors.php:80
|
||||||
msgid "Diaspora"
|
msgid "Diaspora"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:770 mod/settings.php:771
|
#: mod/settings.php:779 mod/settings.php:780
|
||||||
msgid "enabled"
|
msgid "enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:770 mod/settings.php:771
|
#: mod/settings.php:779 mod/settings.php:780
|
||||||
msgid "disabled"
|
msgid "disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:771
|
#: mod/settings.php:780
|
||||||
msgid "GNU Social (OStatus)"
|
msgid "GNU Social (OStatus)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:807
|
#: mod/settings.php:816
|
||||||
msgid "Email access is disabled on this site."
|
msgid "Email access is disabled on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:819
|
#: mod/settings.php:828
|
||||||
msgid "Email/Mailbox Setup"
|
msgid "Email/Mailbox Setup"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:820
|
#: mod/settings.php:829
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish to communicate with email contacts using this service "
|
"If you wish to communicate with email contacts using this service "
|
||||||
"(optional), please specify how to connect to your mailbox."
|
"(optional), please specify how to connect to your mailbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:821
|
#: mod/settings.php:830
|
||||||
msgid "Last successful email check:"
|
msgid "Last successful email check:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:823
|
#: mod/settings.php:832
|
||||||
msgid "IMAP server name:"
|
msgid "IMAP server name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:824
|
#: mod/settings.php:833
|
||||||
msgid "IMAP port:"
|
msgid "IMAP port:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:825
|
#: mod/settings.php:834
|
||||||
msgid "Security:"
|
msgid "Security:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:825 mod/settings.php:830
|
#: mod/settings.php:834 mod/settings.php:839
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:826
|
#: mod/settings.php:835
|
||||||
msgid "Email login name:"
|
msgid "Email login name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:827
|
#: mod/settings.php:836
|
||||||
msgid "Email password:"
|
msgid "Email password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:828
|
#: mod/settings.php:837
|
||||||
msgid "Reply-to address:"
|
msgid "Reply-to address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:829
|
#: mod/settings.php:838
|
||||||
msgid "Send public posts to all email contacts:"
|
msgid "Send public posts to all email contacts:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:830
|
#: mod/settings.php:839
|
||||||
msgid "Action after import:"
|
msgid "Action after import:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:830
|
#: mod/settings.php:839
|
||||||
msgid "Mark as seen"
|
msgid "Mark as seen"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:830
|
#: mod/settings.php:839
|
||||||
msgid "Move to folder"
|
msgid "Move to folder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:831
|
#: mod/settings.php:840
|
||||||
msgid "Move to folder:"
|
msgid "Move to folder:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:912
|
#: mod/settings.php:921
|
||||||
msgid "Display Settings"
|
msgid "Display Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:918 mod/settings.php:934
|
#: mod/settings.php:927 mod/settings.php:943
|
||||||
msgid "Display Theme:"
|
msgid "Display Theme:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:919
|
#: mod/settings.php:928
|
||||||
msgid "Mobile Theme:"
|
msgid "Mobile Theme:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:920
|
#: mod/settings.php:929
|
||||||
msgid "Update browser every xx seconds"
|
msgid "Update browser every xx seconds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:920
|
#: mod/settings.php:929
|
||||||
msgid "Minimum of 10 seconds, no maximum"
|
msgid "Minimum of 10 seconds, no maximum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:921
|
#: mod/settings.php:930
|
||||||
msgid "Number of items to display per page:"
|
msgid "Number of items to display per page:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:921 mod/settings.php:922
|
#: mod/settings.php:930 mod/settings.php:931
|
||||||
msgid "Maximum of 100 items"
|
msgid "Maximum of 100 items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:922
|
#: mod/settings.php:931
|
||||||
msgid "Number of items to display per page when viewed from mobile device:"
|
msgid "Number of items to display per page when viewed from mobile device:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:923
|
#: mod/settings.php:932
|
||||||
msgid "Don't show emoticons"
|
msgid "Don't show emoticons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:924
|
#: mod/settings.php:933
|
||||||
msgid "Don't show notices"
|
msgid "Don't show notices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:925
|
#: mod/settings.php:934
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:926
|
#: mod/settings.php:935
|
||||||
msgid "Automatic updates only at the top of the network page"
|
msgid "Automatic updates only at the top of the network page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:928 view/theme/cleanzero/config.php:82
|
#: mod/settings.php:937 view/theme/cleanzero/config.php:82
|
||||||
#: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66
|
#: 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/diabook/config.php:150 view/theme/vier/config.php:58
|
||||||
#: view/theme/duepuntozero/config.php:61
|
#: view/theme/duepuntozero/config.php:61
|
||||||
msgid "Theme settings"
|
msgid "Theme settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1004
|
#: mod/settings.php:1013
|
||||||
msgid "User Types"
|
msgid "User Types"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1005
|
#: mod/settings.php:1014
|
||||||
msgid "Community Types"
|
msgid "Community Types"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1006
|
#: mod/settings.php:1015
|
||||||
msgid "Normal Account Page"
|
msgid "Normal Account Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1007
|
#: mod/settings.php:1016
|
||||||
msgid "This account is a normal personal profile"
|
msgid "This account is a normal personal profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1010
|
#: mod/settings.php:1019
|
||||||
msgid "Soapbox Page"
|
msgid "Soapbox Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1011
|
#: mod/settings.php:1020
|
||||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1014
|
#: mod/settings.php:1023
|
||||||
msgid "Community Forum/Celebrity Account"
|
msgid "Community Forum/Celebrity Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1015
|
#: mod/settings.php:1024
|
||||||
msgid "Automatically approve all connection/friend requests as read-write fans"
|
msgid "Automatically approve all connection/friend requests as read-write fans"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1018
|
#: mod/settings.php:1027
|
||||||
msgid "Automatic Friend Page"
|
msgid "Automatic Friend Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1019
|
#: mod/settings.php:1028
|
||||||
msgid "Automatically approve all connection/friend requests as friends"
|
msgid "Automatically approve all connection/friend requests as friends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1022
|
#: mod/settings.php:1031
|
||||||
msgid "Private Forum [Experimental]"
|
msgid "Private Forum [Experimental]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1023
|
#: mod/settings.php:1032
|
||||||
msgid "Private forum - approved members only"
|
msgid "Private forum - approved members only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1035
|
#: mod/settings.php:1044
|
||||||
msgid "OpenID:"
|
msgid "OpenID:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1035
|
#: mod/settings.php:1044
|
||||||
msgid "(Optional) Allow this OpenID to login to this account."
|
msgid "(Optional) Allow this OpenID to login to this account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1045
|
#: mod/settings.php:1054
|
||||||
msgid "Publish your default profile in your local site directory?"
|
msgid "Publish your default profile in your local site directory?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1051
|
#: mod/settings.php:1060
|
||||||
msgid "Publish your default profile in the global social directory?"
|
msgid "Publish your default profile in the global social directory?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1059
|
#: mod/settings.php:1068
|
||||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1063 include/acl_selectors.php:330
|
#: mod/settings.php:1072 include/acl_selectors.php:330
|
||||||
msgid "Hide your profile details from unknown viewers?"
|
msgid "Hide your profile details from unknown viewers?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1063
|
#: mod/settings.php:1072
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, posting public messages to Diaspora and other networks isn't "
|
"If enabled, posting public messages to Diaspora and other networks isn't "
|
||||||
"possible."
|
"possible."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1068
|
#: mod/settings.php:1077
|
||||||
msgid "Allow friends to post to your profile page?"
|
msgid "Allow friends to post to your profile page?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1074
|
#: mod/settings.php:1083
|
||||||
msgid "Allow friends to tag your posts?"
|
msgid "Allow friends to tag your posts?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1080
|
#: mod/settings.php:1089
|
||||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1086
|
#: mod/settings.php:1095
|
||||||
msgid "Permit unknown people to send you private mail?"
|
msgid "Permit unknown people to send you private mail?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1094
|
#: mod/settings.php:1103
|
||||||
msgid "Profile is <strong>not published</strong>."
|
msgid "Profile is <strong>not published</strong>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1102
|
#: mod/settings.php:1111
|
||||||
msgid "Your Identity Address is"
|
msgid "Your Identity Address is"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1111
|
#: mod/settings.php:1120
|
||||||
msgid "Automatically expire posts after this many days:"
|
msgid "Automatically expire posts after this many days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1111
|
#: mod/settings.php:1120
|
||||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1112
|
#: mod/settings.php:1121
|
||||||
msgid "Advanced expiration settings"
|
msgid "Advanced expiration settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1113
|
#: mod/settings.php:1122
|
||||||
msgid "Advanced Expiration"
|
msgid "Advanced Expiration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1114
|
#: mod/settings.php:1123
|
||||||
msgid "Expire posts:"
|
msgid "Expire posts:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1115
|
#: mod/settings.php:1124
|
||||||
msgid "Expire personal notes:"
|
msgid "Expire personal notes:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1116
|
#: mod/settings.php:1125
|
||||||
msgid "Expire starred posts:"
|
msgid "Expire starred posts:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1117
|
#: mod/settings.php:1126
|
||||||
msgid "Expire photos:"
|
msgid "Expire photos:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1118
|
#: mod/settings.php:1127
|
||||||
msgid "Only expire posts by others:"
|
msgid "Only expire posts by others:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1144
|
#: mod/settings.php:1153
|
||||||
msgid "Account Settings"
|
msgid "Account Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1152
|
#: mod/settings.php:1161
|
||||||
msgid "Password Settings"
|
msgid "Password Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1153 mod/register.php:271
|
#: mod/settings.php:1162 mod/register.php:271
|
||||||
msgid "New Password:"
|
msgid "New Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1154 mod/register.php:272
|
#: mod/settings.php:1163 mod/register.php:272
|
||||||
msgid "Confirm:"
|
msgid "Confirm:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1154
|
#: mod/settings.php:1163
|
||||||
msgid "Leave password fields blank unless changing"
|
msgid "Leave password fields blank unless changing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1155
|
#: mod/settings.php:1164
|
||||||
msgid "Current Password:"
|
msgid "Current Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1155 mod/settings.php:1156
|
#: mod/settings.php:1164 mod/settings.php:1165
|
||||||
msgid "Your current password to confirm the changes"
|
msgid "Your current password to confirm the changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1156
|
#: mod/settings.php:1165
|
||||||
msgid "Password:"
|
msgid "Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1160
|
#: mod/settings.php:1169
|
||||||
msgid "Basic Settings"
|
msgid "Basic Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1161 include/identity.php:538
|
#: mod/settings.php:1170 include/identity.php:538
|
||||||
msgid "Full Name:"
|
msgid "Full Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1162
|
#: mod/settings.php:1171
|
||||||
msgid "Email Address:"
|
msgid "Email Address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1163
|
#: mod/settings.php:1172
|
||||||
msgid "Your Timezone:"
|
msgid "Your Timezone:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1164
|
#: mod/settings.php:1173
|
||||||
msgid "Default Post Location:"
|
msgid "Default Post Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1165
|
#: mod/settings.php:1174
|
||||||
msgid "Use Browser Location:"
|
msgid "Use Browser Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1168
|
#: mod/settings.php:1177
|
||||||
msgid "Security and Privacy Settings"
|
msgid "Security and Privacy Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1170
|
#: mod/settings.php:1179
|
||||||
msgid "Maximum Friend Requests/Day:"
|
msgid "Maximum Friend Requests/Day:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1170 mod/settings.php:1200
|
#: mod/settings.php:1179 mod/settings.php:1209
|
||||||
msgid "(to prevent spam abuse)"
|
msgid "(to prevent spam abuse)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1171
|
#: mod/settings.php:1180
|
||||||
msgid "Default Post Permissions"
|
msgid "Default Post Permissions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1172
|
#: mod/settings.php:1181
|
||||||
msgid "(click to open/close)"
|
msgid "(click to open/close)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1181 mod/photos.php:1166 mod/photos.php:1538
|
#: mod/settings.php:1190 mod/photos.php:1166 mod/photos.php:1538
|
||||||
msgid "Show to Groups"
|
msgid "Show to Groups"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1182 mod/photos.php:1167 mod/photos.php:1539
|
#: mod/settings.php:1191 mod/photos.php:1167 mod/photos.php:1539
|
||||||
msgid "Show to Contacts"
|
msgid "Show to Contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1183
|
#: mod/settings.php:1192
|
||||||
msgid "Default Private Post"
|
msgid "Default Private Post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1184
|
#: mod/settings.php:1193
|
||||||
msgid "Default Public Post"
|
msgid "Default Public Post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1188
|
#: mod/settings.php:1197
|
||||||
msgid "Default Permissions for New Posts"
|
msgid "Default Permissions for New Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1200
|
#: mod/settings.php:1209
|
||||||
msgid "Maximum private messages per day from unknown people:"
|
msgid "Maximum private messages per day from unknown people:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1203
|
#: mod/settings.php:1212
|
||||||
msgid "Notification Settings"
|
msgid "Notification Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1204
|
#: mod/settings.php:1213
|
||||||
msgid "By default post a status message when:"
|
msgid "By default post a status message when:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1205
|
#: mod/settings.php:1214
|
||||||
msgid "accepting a friend request"
|
msgid "accepting a friend request"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1206
|
#: mod/settings.php:1215
|
||||||
msgid "joining a forum/community"
|
msgid "joining a forum/community"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1207
|
#: mod/settings.php:1216
|
||||||
msgid "making an <em>interesting</em> profile change"
|
msgid "making an <em>interesting</em> profile change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1208
|
#: mod/settings.php:1217
|
||||||
msgid "Send a notification email when:"
|
msgid "Send a notification email when:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1209
|
#: mod/settings.php:1218
|
||||||
msgid "You receive an introduction"
|
msgid "You receive an introduction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1210
|
#: mod/settings.php:1219
|
||||||
msgid "Your introductions are confirmed"
|
msgid "Your introductions are confirmed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1211
|
#: mod/settings.php:1220
|
||||||
msgid "Someone writes on your profile wall"
|
msgid "Someone writes on your profile wall"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1212
|
#: mod/settings.php:1221
|
||||||
msgid "Someone writes a followup comment"
|
msgid "Someone writes a followup comment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1213
|
#: mod/settings.php:1222
|
||||||
msgid "You receive a private message"
|
msgid "You receive a private message"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1214
|
#: mod/settings.php:1223
|
||||||
msgid "You receive a friend suggestion"
|
msgid "You receive a friend suggestion"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1215
|
#: mod/settings.php:1224
|
||||||
msgid "You are tagged in a post"
|
msgid "You are tagged in a post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1216
|
#: mod/settings.php:1225
|
||||||
msgid "You are poked/prodded/etc. in a post"
|
msgid "You are poked/prodded/etc. in a post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1218
|
#: mod/settings.php:1227
|
||||||
msgid "Activate desktop notifications"
|
msgid "Activate desktop notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1218
|
#: mod/settings.php:1227
|
||||||
msgid "Show desktop popup on new notifications"
|
msgid "Show desktop popup on new notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1220
|
#: mod/settings.php:1229
|
||||||
msgid "Text-only notification emails"
|
msgid "Text-only notification emails"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1222
|
#: mod/settings.php:1231
|
||||||
msgid "Send text only notification emails, without the html part"
|
msgid "Send text only notification emails, without the html part"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1224
|
#: mod/settings.php:1233
|
||||||
msgid "Advanced Account/Page Type Settings"
|
msgid "Advanced Account/Page Type Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1225
|
#: mod/settings.php:1234
|
||||||
msgid "Change the behaviour of this account for special situations"
|
msgid "Change the behaviour of this account for special situations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1228
|
#: mod/settings.php:1237
|
||||||
msgid "Relocate"
|
msgid "Relocate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1229
|
#: mod/settings.php:1238
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you have moved this profile from another server, and some of your "
|
"If you have moved this profile from another server, and some of your "
|
||||||
"contacts don't receive your updates, try pushing this button."
|
"contacts don't receive your updates, try pushing this button."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:1230
|
#: mod/settings.php:1239
|
||||||
msgid "Resend relocate message to contacts"
|
msgid "Resend relocate message to contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4600,7 +4647,7 @@ msgstr ""
|
||||||
msgid "System down for maintenance"
|
msgid "System down for maintenance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/search.php:99 include/text.php:977 include/nav.php:119
|
#: mod/search.php:99 include/text.php:989 include/nav.php:119
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4634,10 +4681,6 @@ msgstr ""
|
||||||
msgid "Gender: "
|
msgid "Gender: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/directory.php:154 include/identity.php:270 include/identity.php:540
|
|
||||||
msgid "Gender:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mod/directory.php:156 include/identity.php:273 include/identity.php:560
|
#: mod/directory.php:156 include/identity.php:273 include/identity.php:560
|
||||||
msgid "Status:"
|
msgid "Status:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4646,10 +4689,6 @@ msgstr ""
|
||||||
msgid "Homepage:"
|
msgid "Homepage:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/directory.php:160 include/identity.php:277 include/identity.php:581
|
|
||||||
msgid "About:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mod/directory.php:205
|
#: mod/directory.php:205
|
||||||
msgid "No entries (some entries may be hidden)."
|
msgid "No entries (some entries may be hidden)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -5217,7 +5256,7 @@ msgstr ""
|
||||||
msgid "Visible to:"
|
msgid "Visible to:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/notes.php:44 include/identity.php:670
|
#: mod/notes.php:44 include/identity.php:675
|
||||||
msgid "Personal Notes"
|
msgid "Personal Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5372,7 +5411,7 @@ msgstr ""
|
||||||
msgid "Contact Photos"
|
msgid "Contact Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/photos.php:84 include/identity.php:649
|
#: mod/photos.php:84 include/identity.php:651
|
||||||
msgid "Photo Albums"
|
msgid "Photo Albums"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6213,10 +6252,6 @@ msgstr ""
|
||||||
msgid "for %1$d %2$s"
|
msgid "for %1$d %2$s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/identity.php:575
|
|
||||||
msgid "Tags:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: include/identity.php:579
|
#: include/identity.php:579
|
||||||
msgid "Religion:"
|
msgid "Religion:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -6265,19 +6300,19 @@ msgstr ""
|
||||||
msgid "Status Messages and Posts"
|
msgid "Status Messages and Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/identity.php:642
|
#: include/identity.php:643
|
||||||
msgid "Profile Details"
|
msgid "Profile Details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/identity.php:653 include/identity.php:656 include/nav.php:79
|
#: include/identity.php:656 include/identity.php:659 include/nav.php:79
|
||||||
msgid "Videos"
|
msgid "Videos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/identity.php:666
|
#: include/identity.php:670
|
||||||
msgid "Events and Calendar"
|
msgid "Events and Calendar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/identity.php:673
|
#: include/identity.php:678
|
||||||
msgid "Only You Can See This"
|
msgid "Only You Can See This"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6366,7 +6401,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/conversation.php:118 include/conversation.php:245
|
#: include/conversation.php:118 include/conversation.php:245
|
||||||
#: include/text.php:1998 view/theme/diabook/theme.php:463
|
#: include/text.php:2013 view/theme/diabook/theme.php:463
|
||||||
msgid "event"
|
msgid "event"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6511,247 +6546,251 @@ msgstr ""
|
||||||
msgid "The end"
|
msgid "The end"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:878
|
#: include/text.php:884
|
||||||
msgid "No contacts"
|
msgid "No contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:887
|
#: include/text.php:899
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d Contact"
|
msgid "%d Contact"
|
||||||
msgid_plural "%d Contacts"
|
msgid_plural "%d Contacts"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: include/text.php:1027
|
#: include/text.php:1039
|
||||||
msgid "poke"
|
msgid "poke"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1027
|
#: include/text.php:1039
|
||||||
msgid "poked"
|
msgid "poked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1028
|
#: include/text.php:1040
|
||||||
msgid "ping"
|
msgid "ping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1028
|
#: include/text.php:1040
|
||||||
msgid "pinged"
|
msgid "pinged"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1029
|
#: include/text.php:1041
|
||||||
msgid "prod"
|
msgid "prod"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1029
|
#: include/text.php:1041
|
||||||
msgid "prodded"
|
msgid "prodded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1030
|
#: include/text.php:1042
|
||||||
msgid "slap"
|
msgid "slap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1030
|
#: include/text.php:1042
|
||||||
msgid "slapped"
|
msgid "slapped"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1031
|
#: include/text.php:1043
|
||||||
msgid "finger"
|
msgid "finger"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1031
|
#: include/text.php:1043
|
||||||
msgid "fingered"
|
msgid "fingered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1032
|
#: include/text.php:1044
|
||||||
msgid "rebuff"
|
msgid "rebuff"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1032
|
#: include/text.php:1044
|
||||||
msgid "rebuffed"
|
msgid "rebuffed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1046
|
#: include/text.php:1058
|
||||||
msgid "happy"
|
msgid "happy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1047
|
#: include/text.php:1059
|
||||||
msgid "sad"
|
msgid "sad"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1048
|
#: include/text.php:1060
|
||||||
msgid "mellow"
|
msgid "mellow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1049
|
#: include/text.php:1061
|
||||||
msgid "tired"
|
msgid "tired"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1050
|
#: include/text.php:1062
|
||||||
msgid "perky"
|
msgid "perky"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1051
|
#: include/text.php:1063
|
||||||
msgid "angry"
|
msgid "angry"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1052
|
#: include/text.php:1064
|
||||||
msgid "stupified"
|
msgid "stupified"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1053
|
#: include/text.php:1065
|
||||||
msgid "puzzled"
|
msgid "puzzled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1054
|
#: include/text.php:1066
|
||||||
msgid "interested"
|
msgid "interested"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1055
|
#: include/text.php:1067
|
||||||
msgid "bitter"
|
msgid "bitter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1056
|
#: include/text.php:1068
|
||||||
msgid "cheerful"
|
msgid "cheerful"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1057
|
#: include/text.php:1069
|
||||||
msgid "alive"
|
msgid "alive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1058
|
#: include/text.php:1070
|
||||||
msgid "annoyed"
|
msgid "annoyed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1059
|
#: include/text.php:1071
|
||||||
msgid "anxious"
|
msgid "anxious"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1060
|
#: include/text.php:1072
|
||||||
msgid "cranky"
|
msgid "cranky"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1061
|
#: include/text.php:1073
|
||||||
msgid "disturbed"
|
msgid "disturbed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1062
|
#: include/text.php:1074
|
||||||
msgid "frustrated"
|
msgid "frustrated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1063
|
#: include/text.php:1075
|
||||||
msgid "motivated"
|
msgid "motivated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1064
|
#: include/text.php:1076
|
||||||
msgid "relaxed"
|
msgid "relaxed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1065
|
#: include/text.php:1077
|
||||||
msgid "surprised"
|
msgid "surprised"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1235
|
#: include/text.php:1247
|
||||||
msgid "Monday"
|
msgid "Monday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1235
|
#: include/text.php:1247
|
||||||
msgid "Tuesday"
|
msgid "Tuesday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1235
|
#: include/text.php:1247
|
||||||
msgid "Wednesday"
|
msgid "Wednesday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1235
|
#: include/text.php:1247
|
||||||
msgid "Thursday"
|
msgid "Thursday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1235
|
#: include/text.php:1247
|
||||||
msgid "Friday"
|
msgid "Friday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1235
|
#: include/text.php:1247
|
||||||
msgid "Saturday"
|
msgid "Saturday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1235
|
#: include/text.php:1247
|
||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "January"
|
msgid "January"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "February"
|
msgid "February"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "March"
|
msgid "March"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "April"
|
msgid "April"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "May"
|
msgid "May"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "June"
|
msgid "June"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "July"
|
msgid "July"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "August"
|
msgid "August"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "September"
|
msgid "September"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "October"
|
msgid "October"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "November"
|
msgid "November"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1239
|
#: include/text.php:1251
|
||||||
msgid "December"
|
msgid "December"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1461
|
#: include/text.php:1473
|
||||||
msgid "bytes"
|
msgid "bytes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1493 include/text.php:1505
|
#: include/text.php:1505 include/text.php:1517
|
||||||
msgid "Click to open/close"
|
msgid "Click to open/close"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1734 include/user.php:255
|
#: include/text.php:1691 include/text.php:1692
|
||||||
|
msgid "local thread"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: include/text.php:1749 include/user.php:255
|
||||||
#: view/theme/duepuntozero/config.php:44
|
#: view/theme/duepuntozero/config.php:44
|
||||||
msgid "default"
|
msgid "default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:1746
|
#: include/text.php:1761
|
||||||
msgid "Select an alternate language"
|
msgid "Select an alternate language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:2002
|
#: include/text.php:2017
|
||||||
msgid "activity"
|
msgid "activity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:2005
|
#: include/text.php:2020
|
||||||
msgid "post"
|
msgid "post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/text.php:2173
|
#: include/text.php:2188
|
||||||
msgid "Item filed"
|
msgid "Item filed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6779,11 +6818,11 @@ msgstr ""
|
||||||
msgid "Encrypted content"
|
msgid "Encrypted content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/notifier.php:829 include/delivery.php:456
|
#: include/notifier.php:830 include/delivery.php:456
|
||||||
msgid "(no subject)"
|
msgid "(no subject)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/notifier.php:839 include/delivery.php:467 include/enotify.php:33
|
#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33
|
||||||
msgid "noreply"
|
msgid "noreply"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -6888,15 +6927,15 @@ msgstr ""
|
||||||
msgid "Finishes:"
|
msgid "Finishes:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/plugin.php:455 include/plugin.php:457
|
#: include/plugin.php:458 include/plugin.php:460
|
||||||
msgid "Click here to upgrade."
|
msgid "Click here to upgrade."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/plugin.php:463
|
#: include/plugin.php:466
|
||||||
msgid "This action exceeds the limits set by your subscription plan."
|
msgid "This action exceeds the limits set by your subscription plan."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/plugin.php:468
|
#: include/plugin.php:471
|
||||||
msgid "This action is not available under your subscription plan."
|
msgid "This action is not available under your subscription plan."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -7137,9 +7176,7 @@ msgid "Cannot use that email."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/user.php:140
|
#: include/user.php:140
|
||||||
msgid ""
|
msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
|
||||||
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
|
|
||||||
"must also begin with a letter."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/user.php:146 include/user.php:244
|
#: include/user.php:146 include/user.php:244
|
||||||
|
|
@ -7212,11 +7249,11 @@ msgid ""
|
||||||
"\t\tThank you and welcome to %2$s."
|
"\t\tThank you and welcome to %2$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/diaspora.php:710
|
#: include/diaspora.php:717
|
||||||
msgid "Sharing notification from Diaspora network"
|
msgid "Sharing notification from Diaspora network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/diaspora.php:2544
|
#: include/diaspora.php:2560
|
||||||
msgid "Attachments:"
|
msgid "Attachments:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -7768,18 +7805,18 @@ msgstr ""
|
||||||
msgid "User creation error"
|
msgid "User creation error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/uimport.php:171
|
#: include/uimport.php:173
|
||||||
msgid "User profile creation error"
|
msgid "User profile creation error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: include/uimport.php:220
|
#: include/uimport.php:222
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d contact not imported"
|
msgid "%d contact not imported"
|
||||||
msgid_plural "%d contacts not imported"
|
msgid_plural "%d contacts not imported"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: include/uimport.php:290
|
#: include/uimport.php:292
|
||||||
msgid "Done. You can now login with your username and password"
|
msgid "Done. You can now login with your username and password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,9 @@
|
||||||
<message>
|
<message>
|
||||||
<guid>{{$msg.guid}}</guid>
|
<guid>{{$msg.guid}}</guid>
|
||||||
<parent_guid>{{$msg.parent_guid}}</parent_guid>
|
<parent_guid>{{$msg.parent_guid}}</parent_guid>
|
||||||
|
{{if $msg.parent_author_signature}}
|
||||||
|
<parent_author_signature>{{$msg.parent_author_signature}}</parent_author_signature>
|
||||||
|
{{/if}}
|
||||||
<author_signature>{{$msg.author_signature}}</author_signature>
|
<author_signature>{{$msg.author_signature}}</author_signature>
|
||||||
<text>{{$msg.text}}</text>
|
<text>{{$msg.text}}</text>
|
||||||
<created_at>{{$msg.created_at}}</created_at>
|
<created_at>{{$msg.created_at}}</created_at>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue