This commit is contained in:
Friendika 2011-08-07 16:15:54 -07:00
commit 48ffa880f0
22 changed files with 2871 additions and 2432 deletions

View file

@ -214,7 +214,7 @@ function fb_get_friends($uid) {
dbesc(($jp->nickname) ? $jp->nickname : strtolower($jp->first_name)), dbesc(($jp->nickname) ? $jp->nickname : strtolower($jp->first_name)),
dbesc('https://graph.facebook.com/' . $jp->id . '/picture'), dbesc('https://graph.facebook.com/' . $jp->id . '/picture'),
dbesc(NETWORK_FACEBOOK), dbesc(NETWORK_FACEBOOK),
intval(REL_BUD), intval(CONTACT_IS_FRIEND),
intval(1), intval(1),
intval(1) intval(1)
); );

View file

@ -7,9 +7,9 @@ require_once('include/text.php');
require_once("include/pgettext.php"); require_once("include/pgettext.php");
define ( 'FRIENDIKA_VERSION', '2.2.1063' ); define ( 'FRIENDIKA_VERSION', '2.2.1065' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1077 ); define ( 'DB_UPDATE_VERSION', 1078 );
define ( 'EOL', "<br />\r\n" ); define ( 'EOL', "<br />\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
@ -55,13 +55,12 @@ define ( 'REGISTER_OPEN', 2 );
/** /**
* relationship types * relationship types
* When used in contact records, this indicates that 'uid' has
* this relationship with contact['name']
*/ */
define ( 'REL_VIP', 1); // other person is 'following' us define ( 'CONTACT_IS_FOLLOWER', 1);
define ( 'REL_FAN', 2); // we are 'following' other person define ( 'CONTACT_IS_SHARING', 2);
define ( 'REL_BUD', 3); // mutual relationship define ( 'CONTACT_IS_FRIEND', 3);
/** /**
* Hook array order * Hook array order
@ -76,10 +75,10 @@ define ( 'HOOK_FUNCTION', 2);
* page/profile types * page/profile types
* *
* PAGE_NORMAL is a typical personal profile account * PAGE_NORMAL is a typical personal profile account
* PAGE_SOAPBOX automatically approves all friend requests as REL_FAN, (readonly) * PAGE_SOAPBOX automatically approves all friend requests as CONTACT_IS_SHARING, (readonly)
* PAGE_COMMUNITY automatically approves all friend requests as REL_FAN, but with * PAGE_COMMUNITY automatically approves all friend requests as CONTACT_IS_SHARING, but with
* write access to wall and comments (no email and not included in page owner's ACL lists) * write access to wall and comments (no email and not included in page owner's ACL lists)
* PAGE_FREELOVE automatically approves all friend requests as full friends (REL_BUD). * PAGE_FREELOVE automatically approves all friend requests as full friends (CONTACT_IS_FRIEND).
* *
*/ */
@ -283,7 +282,12 @@ class App {
$this->path = $path; $this->path = $path;
} }
set_include_path("include/$this->hostname" . PATH_SEPARATOR . 'include' . PATH_SEPARATOR . '.' ); set_include_path(
"include/$this->hostname" . PATH_SEPARATOR
. 'include' . PATH_SEPARATOR
. 'library' . PATH_SEPARATOR
. 'library/phpsec' . PATH_SEPARATOR
. '.' );
if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=") if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=")
$this->query_string = substr($_SERVER['QUERY_STRING'],2); $this->query_string = substr($_SERVER['QUERY_STRING'],2);

View file

@ -96,7 +96,7 @@ function contact_selector($selname, $selclass, $preselected = false, $options) {
$sql_extra = ''; $sql_extra = '';
if($x['mutual']) { if($x['mutual']) {
$sql_extra .= sprintf(" AND `rel` = %d ", intval(REL_BUD)); $sql_extra .= sprintf(" AND `rel` = %d ", intval(CONTACT_IS_FRIEND));
} }
if(intval($x['exclude'])) if(intval($x['exclude']))
@ -163,7 +163,7 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p
$sql_extra = ''; $sql_extra = '';
if($privmail || $celeb) { if($privmail || $celeb) {
$sql_extra .= sprintf(" AND `rel` = %d ", intval(REL_BUD)); $sql_extra .= sprintf(" AND `rel` = %d ", intval(CONTACT_IS_FRIEND));
} }
if($privmail) { if($privmail) {

View file

@ -273,8 +273,8 @@
WHERE `uid` = %d AND `rel` IN ( %d, %d ) WHERE `uid` = %d AND `rel` IN ( %d, %d )
AND `self`=0 AND `blocked`=0", AND `self`=0 AND `blocked`=0",
intval($uinfo[0]['uid']), intval($uinfo[0]['uid']),
intval(REL_FAN), intval(CONTACT_IS_SHARING),
intval(REL_BUD) intval(CONTACT_IS_FRIEND)
); );
$countfriends = $r[0]['count']; $countfriends = $r[0]['count'];
@ -282,8 +282,8 @@
WHERE `uid` = %d AND `rel` IN ( %d, %d ) WHERE `uid` = %d AND `rel` IN ( %d, %d )
AND `self`=0 AND `blocked`=0", AND `self`=0 AND `blocked`=0",
intval($uinfo[0]['uid']), intval($uinfo[0]['uid']),
intval(REL_VIP), intval(CONTACT_IS_FOLLOWER),
intval(REL_BUD) intval(CONTACT_IS_FRIEND)
); );
$countfollowers = $r[0]['count']; $countfollowers = $r[0]['count'];
@ -832,9 +832,9 @@
return false; return false;
if($qtype == 'friends') if($qtype == 'friends')
$sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(REL_FAN), intval(REL_BUD)); $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_SHARING), intval(CONTACT_IS_FRIEND));
if($qtype == 'followers') if($qtype == 'followers')
$sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(REL_VIP), intval(REL_BUD)); $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_FOLLOWER), intval(CONTACT_IS_FRIEND));
$r = q("SELECT id FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra", $r = q("SELECT id FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra",

View file

@ -37,8 +37,6 @@ function DerToRsa($Der)
} }
function pkcs8_encode($Modulus,$PublicExponent) { function pkcs8_encode($Modulus,$PublicExponent) {
//Encode key sequence //Encode key sequence
$modulus = new ASNValue(ASNValue::TAG_INTEGER); $modulus = new ASNValue(ASNValue::TAG_INTEGER);
@ -75,17 +73,6 @@ function pkcs1_encode($Modulus,$PublicExponent) {
//Encode bit string //Encode bit string
$bitStringValue = $keySequence->Encode(); $bitStringValue = $keySequence->Encode();
return $bitStringValue; return $bitStringValue;
// $bitStringValue = chr(0x00) . $bitStringValue; //Add unused bits byte
// $bitString = new ASNValue(ASNValue::TAG_BITSTRING);
// $bitString->Value = $bitStringValue;
//Encode body
// $bodyValue = "\x30\x0d\x06\x09\x2a\x86\x48\x86\xf7\x0d\x01\x01\x01\x05\x00" . $bitString->Encode();
// $body = new ASNValue(ASNValue::TAG_SEQUENCE);
// $body->Value = $bodyValue;
//Get DER encoded public key:
// $PublicDER = $body->Encode();
// return $PublicDER;
} }
@ -107,12 +94,8 @@ function pubrsatome($key,&$m,&$e) {
$r = ASN_BASE::parseASNString($x); $r = ASN_BASE::parseASNString($x);
// print_r($r);
$m = base64url_decode($r[0]->asnData[0]->asnData); $m = base64url_decode($r[0]->asnData[0]->asnData);
$e = base64url_decode($r[0]->asnData[1]->asnData); $e = base64url_decode($r[0]->asnData[1]->asnData);
} }

View file

@ -915,7 +915,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
$postvars['dissolve'] = '1'; $postvars['dissolve'] = '1';
if((($contact['rel']) && ($contact['rel'] != REL_FAN) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) { if((($contact['rel']) && ($contact['rel'] != CONTACT_IS_SHARING) && (! $contact['blocked'])) || ($owner['page-flags'] == PAGE_COMMUNITY)) {
$postvars['data'] = $atom; $postvars['data'] = $atom;
$postvars['perm'] = 'rw'; $postvars['perm'] = 'rw';
} }
@ -1448,9 +1448,9 @@ function new_follower($importer,$contact,$datarray,$item) {
$nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data']; $nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
if(is_array($contact)) { if(is_array($contact)) {
if($contact['network'] == 'stat' && $contact['rel'] == REL_FAN) { if($contact['network'] == 'stat' && $contact['rel'] == CONTACT_IS_SHARING) {
$r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval(REL_BUD), intval(CONTACT_IS_FRIEND),
intval($contact['id']), intval($contact['id']),
intval($importer['uid']) intval($importer['uid'])
); );
@ -1472,12 +1472,12 @@ function new_follower($importer,$contact,$datarray,$item) {
dbesc($nick), dbesc($nick),
dbesc($photo), dbesc($photo),
dbesc('stat'), dbesc('stat'),
intval(REL_VIP) intval(CONTACT_IS_FOLLOWER)
); );
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 AND `rel` = %d LIMIT 1", $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 AND `rel` = %d LIMIT 1",
intval($importer['uid']), intval($importer['uid']),
dbesc($url), dbesc($url),
intval(REL_VIP) intval(CONTACT_IS_FOLLOWER)
); );
if(count($r)) if(count($r))
$contact_record = $r[0]; $contact_record = $r[0];
@ -1522,9 +1522,9 @@ function new_follower($importer,$contact,$datarray,$item) {
function lose_follower($importer,$contact,$datarray,$item) { function lose_follower($importer,$contact,$datarray,$item) {
if(($contact['rel'] == REL_BUD) || ($contact['rel'] == REL_FAN)) { if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_SHARING)) {
q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1", q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
intval(REL_FAN), intval(CONTACT_IS_SHARING),
intval($contact['id']) intval($contact['id'])
); );
} }

View file

@ -555,7 +555,7 @@ function notifier_run($argv, $argc){
WHERE `network` = 'dfrn' AND `uid` = %d AND `blocked` = 0 AND `pending` = 0 WHERE `network` = 'dfrn' AND `uid` = %d AND `blocked` = 0 AND `pending` = 0
AND `rel` != %d ", AND `rel` != %d ",
intval($owner['uid']), intval($owner['uid']),
intval(REL_FAN) intval(CONTACT_IS_SHARING)
); );
if((count($r)) && (($max_allowed == 0) || (count($r) < $max_allowed))) { if((count($r)) && (($max_allowed == 0) || (count($r) < $max_allowed))) {

View file

@ -87,8 +87,8 @@ function poller_run($argv, $argc){
WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != '' WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != ''
$sql_extra $sql_extra
AND `self` = 0 AND `blocked` = 0 AND `readonly` = 0 ORDER BY RAND()", AND `self` = 0 AND `blocked` = 0 AND `readonly` = 0 ORDER BY RAND()",
intval(REL_FAN), intval(CONTACT_IS_SHARING),
intval(REL_BUD) intval(CONTACT_IS_FRIEND)
); );
if(! count($contacts)) { if(! count($contacts)) {
@ -312,7 +312,7 @@ function poller_run($argv, $argc){
// Will only do this once per notify-enabled OStatus contact // Will only do this once per notify-enabled OStatus contact
// or if relationship changes // or if relationship changes
$stat_writeable = ((($contact['notify']) && ($contact['rel'] == REL_VIP || $contact['rel'] == REL_BUD)) ? 1 : 0); $stat_writeable = ((($contact['notify']) && ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['rel'] == CONTACT_IS_FRIEND)) ? 1 : 0);
if($stat_writeable != $contact['writable']) { if($stat_writeable != $contact['writable']) {
q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d LIMIT 1", q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d LIMIT 1",
@ -323,7 +323,7 @@ function poller_run($argv, $argc){
// Are we allowed to import from this person? // Are we allowed to import from this person?
if($contact['rel'] == REL_VIP || $contact['blocked'] || $contact['readonly']) if($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly'])
continue; continue;
$xml = fetch_url($contact['poll']); $xml = fetch_url($contact['poll']);
@ -463,7 +463,7 @@ function poller_run($argv, $argc){
consume_feed($xml,$importer,$contact,$hub,1); consume_feed($xml,$importer,$contact,$hub,1);
if((strlen($hub)) && ($hub_update) && (($contact['rel'] == REL_BUD) || (($contact['network'] === NETWORK_OSTATUS) && (! $contact['readonly'])))) { if((strlen($hub)) && ($hub_update) && (($contact['rel'] == CONTACT_IS_FRIEND) || (($contact['network'] === NETWORK_OSTATUS) && (! $contact['readonly'])))) {
logger('poller: subscribing to hub(s) : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']); logger('poller: subscribing to hub(s) : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
$hubs = explode(',', $hub); $hubs = explode(',', $hub);
if(count($hubs)) { if(count($hubs)) {

View file

@ -114,8 +114,6 @@ EOT;
// Setup RSA stuff to PKCS#1 sign the data // Setup RSA stuff to PKCS#1 sign the data
set_include_path(get_include_path() . PATH_SEPARATOR . 'library/phpsec');
require_once('library/phpsec/Crypt/RSA.php'); require_once('library/phpsec/Crypt/RSA.php');
$rsa = new CRYPT_RSA(); $rsa = new CRYPT_RSA();

View file

@ -28,8 +28,8 @@ function can_write_wall(&$a,$owner) {
AND `user`.`blockwall` = 0 AND `readonly` = 0 AND ( `contact`.`rel` IN ( %d , %d ) OR `user`.`page-flags` = %d ) LIMIT 1", AND `user`.`blockwall` = 0 AND `readonly` = 0 AND ( `contact`.`rel` IN ( %d , %d ) OR `user`.`page-flags` = %d ) LIMIT 1",
intval($owner), intval($owner),
intval(remote_user()), intval(remote_user()),
intval(REL_VIP), intval(CONTACT_IS_FOLLOWER),
intval(REL_BUD), intval(CONTACT_IS_FRIEND),
intval(PAGE_COMMUNITY) intval(PAGE_COMMUNITY)
); );
if(count($r)) { if(count($r)) {

View file

@ -167,6 +167,3 @@ class ASNValue
return $result; return $result;
} }
} }
?>

View file

@ -187,7 +187,6 @@ class ASN_BASE {
return new ASN_BOOLEAN((bool)$data); return new ASN_BOOLEAN((bool)$data);
case ASN_INTEGER: case ASN_INTEGER:
return new ASN_INTEGER(strtr(base64_encode($data),'+/','-_')); return new ASN_INTEGER(strtr(base64_encode($data),'+/','-_'));
// return new ASN_INTEGER(ord($data));
case ASN_BIT_STR: case ASN_BIT_STR:
return new ASN_BIT_STR(self::parseASNString($data, $level+1, $maxLevels)); return new ASN_BIT_STR(self::parseASNString($data, $level+1, $maxLevels));
case ASN_OCTET_STR: case ASN_OCTET_STR:
@ -290,9 +289,3 @@ class ASN_BASE {
} }
function accum($s) {
$result = strtr(base64_encode($s),'+/=','-_,');
return $result;
}

View file

@ -249,16 +249,16 @@ function contacts_content(&$a) {
$tpl = get_markup_template("contact_edit.tpl"); $tpl = get_markup_template("contact_edit.tpl");
switch($r[0]['rel']) { switch($r[0]['rel']) {
case REL_BUD: case CONTACT_IS_FRIEND:
$dir_icon = 'images/lrarrow.gif'; $dir_icon = 'images/lrarrow.gif';
$alt_text = t('Mutual Friendship'); $alt_text = t('Mutual Friendship');
break; break;
case REL_VIP; case CONTACT_IS_FOLLOWER;
$dir_icon = 'images/larrow.gif'; $dir_icon = 'images/larrow.gif';
$alt_text = t('is a fan of yours'); $alt_text = t('is a fan of yours');
break; break;
case REL_FAN; case CONTACT_IS_SHARING;
$dir_icon = 'images/rarrow.gif'; $dir_icon = 'images/rarrow.gif';
$alt_text = t('you are a fan of'); $alt_text = t('you are a fan of');
break; break;
@ -368,7 +368,7 @@ function contacts_content(&$a) {
$search = dbesc($search.'*'); $search = dbesc($search.'*');
$sql_extra .= ((strlen($search)) ? " AND MATCH `name` AGAINST ('$search' IN BOOLEAN MODE) " : ""); $sql_extra .= ((strlen($search)) ? " AND MATCH `name` AGAINST ('$search' IN BOOLEAN MODE) " : "");
$sql_extra2 = ((($sort_type > 0) && ($sort_type <= REL_BUD)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : ''); $sql_extra2 = ((($sort_type > 0) && ($sort_type <= CONTACT_IS_FRIEND)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : '');
$r = q("SELECT COUNT(*) AS `total` FROM `contact` $r = q("SELECT COUNT(*) AS `total` FROM `contact`
@ -392,15 +392,15 @@ function contacts_content(&$a) {
continue; continue;
switch($rr['rel']) { switch($rr['rel']) {
case REL_BUD: case CONTACT_IS_FRIEND:
$dir_icon = 'images/lrarrow.gif'; $dir_icon = 'images/lrarrow.gif';
$alt_text = t('Mutual Friendship'); $alt_text = t('Mutual Friendship');
break; break;
case REL_VIP; case CONTACT_IS_FOLLOWER;
$dir_icon = 'images/larrow.gif'; $dir_icon = 'images/larrow.gif';
$alt_text = t('is a fan of yours'); $alt_text = t('is a fan of yours');
break; break;
case REL_FAN; case CONTACT_IS_SHARING;
$dir_icon = 'images/rarrow.gif'; $dir_icon = 'images/rarrow.gif';
$alt_text = t('you are a fan of'); $alt_text = t('you are a fan of');
break; break;

View file

@ -306,11 +306,11 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
if($network === 'dfrn') { if($network === 'dfrn') {
$new_relation = REL_VIP; $new_relation = CONTACT_IS_FOLLOWER;
if(($relation == REL_FAN) || ($duplex)) if(($relation == CONTACT_IS_SHARING) || ($duplex))
$new_relation = REL_BUD; $new_relation = CONTACT_IS_FRIEND;
if(($relation == REL_FAN) && ($duplex)) if(($relation == CONTACT_IS_SHARING) && ($duplex))
$duplex = 0; $duplex = 0;
$r = q("UPDATE `contact` SET `photo` = '%s', $r = q("UPDATE `contact` SET `photo` = '%s',
@ -401,7 +401,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1", $r = q("SELECT `hide-friends` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
intval($uid) intval($uid)
); );
if((count($r)) && ($r[0]['hide-friends'] == 0) && (is_array($contact)) && isset($new_relation) && ($new_relation == REL_BUD)) { if((count($r)) && ($r[0]['hide-friends'] == 0) && (is_array($contact)) && isset($new_relation) && ($new_relation == CONTACT_IS_FRIEND)) {
require_once('include/items.php'); require_once('include/items.php');
@ -592,11 +592,11 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
logger('dfrn_confirm: request - photos imported'); logger('dfrn_confirm: request - photos imported');
$new_relation = REL_FAN; $new_relation = CONTACT_IS_SHARING;
if(($relation == REL_VIP) || ($duplex)) if(($relation == CONTACT_IS_FOLLOWER) || ($duplex))
$new_relation = REL_BUD; $new_relation = CONTACT_IS_FRIEND;
if(($relation == REL_VIP) && ($duplex)) if(($relation == CONTACT_IS_FOLLOWER) && ($duplex))
$duplex = 0; $duplex = 0;
$r = q("UPDATE `contact` SET $r = q("UPDATE `contact` SET
@ -639,7 +639,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
if((count($r)) && ($r[0]['notify-flags'] & NOTIFY_CONFIRM)) { if((count($r)) && ($r[0]['notify-flags'] & NOTIFY_CONFIRM)) {
push_lang($r[0]['language']); push_lang($r[0]['language']);
$tpl = (($new_relation == REL_BUD) $tpl = (($new_relation == CONTACT_IS_FRIEND)
? get_intltext_template('friend_complete_eml.tpl') ? get_intltext_template('friend_complete_eml.tpl')
: get_intltext_template('intro_complete_eml.tpl')); : get_intltext_template('intro_complete_eml.tpl'));

View file

@ -309,7 +309,7 @@ function dfrn_request_post(&$a) {
notice( t('You have already introduced yourself here.') . EOL ); notice( t('You have already introduced yourself here.') . EOL );
return; return;
} }
elseif($ret[0]['rel'] == REL_BUD) { elseif($ret[0]['rel'] == CONTACT_IS_FRIEND) {
notice( sprintf( t('Apparently you are already friends with %s.'), $a->profile['name']) . EOL); notice( sprintf( t('Apparently you are already friends with %s.'), $a->profile['name']) . EOL);
return; return;
} }
@ -445,7 +445,7 @@ function dfrn_request_post(&$a) {
* *
* OStatus network * OStatus network
* Check contact existence * Check contact existence
* Try and scrape together enough information to create a contact record, with us as REL_VIP * Try and scrape together enough information to create a contact record, with us as CONTACT_IS_FOLLOWER
* Substitute our user's feed URL into $url template * Substitute our user's feed URL into $url template
* Send the subscriber home to subscribe * Send the subscriber home to subscribe
* *

View file

@ -82,9 +82,9 @@ function follow_post(&$a) {
if(count($r)) { if(count($r)) {
// update contact // update contact
if($r[0]['rel'] == REL_VIP) { if($r[0]['rel'] == CONTACT_IS_FOLLOWER) {
q("UPDATE `contact` SET `rel` = %d , `readonly` = 0 WHERE `id` = %d AND `uid` = %d LIMIT 1", q("UPDATE `contact` SET `rel` = %d , `readonly` = 0 WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval(REL_BUD), intval(CONTACT_IS_FRIEND),
intval($r[0]['id']), intval($r[0]['id']),
intval(local_user()) intval(local_user())
); );
@ -106,7 +106,7 @@ function follow_post(&$a) {
dbesc($ret['nick']), dbesc($ret['nick']),
dbesc($ret['photo']), dbesc($ret['photo']),
dbesc($ret['network']), dbesc($ret['network']),
intval(($ret['network'] === NETWORK_MAIL) ? REL_BUD : REL_FAN), intval(($ret['network'] === NETWORK_MAIL) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING),
intval($ret['priority']), intval($ret['priority']),
intval($writeable) intval($writeable)
); );

View file

@ -111,8 +111,8 @@ function pubsub_post(&$a) {
AND ( `rel` = %d OR `rel` = %d ) AND `blocked` = 0 AND `readonly` = 0 LIMIT 1", AND ( `rel` = %d OR `rel` = %d ) AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
intval($contact_id), intval($contact_id),
intval($importer['uid']), intval($importer['uid']),
intval(REL_FAN), intval(CONTACT_IS_SHARING),
intval(REL_BUD) intval(CONTACT_IS_FRIEND)
); );
if(! count($r)) { if(! count($r)) {

View file

@ -238,7 +238,7 @@ function receive_post(&$a) {
// is this a follower? Or have we ignored the person? // is this a follower? Or have we ignored the person?
// If so we can not accept this post. // If so we can not accept this post.
if((count($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == REL_VIP) || ($r[0]['blocked']))) { if((count($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) {
logger('mod-diaspora: Ignoring this author.'); logger('mod-diaspora: Ignoring this author.');
receive_return(202); receive_return(202);
// NOTREACHED // NOTREACHED

View file

@ -134,7 +134,14 @@ function salmon_post(&$a) {
// Setup RSA stuff to verify the signature // Setup RSA stuff to verify the signature
set_include_path(get_include_path() . PATH_SEPARATOR . 'library/phpsec'); require_once('library/phpsec/Crypt/RSA.php');
$rsa = new CRYPT_RSA();
$rsa->signatureMode = CRYPT_RSA_SIGNATURE_PKCS1;
$rsa->setHash('sha256');
$rsa->loadKey($prvkey);
$sig = $rsa->sign($data);
require_once('library/phpsec/Crypt/RSA.php'); require_once('library/phpsec/Crypt/RSA.php');
@ -194,7 +201,7 @@ function salmon_post(&$a) {
// is this a follower? Or have we ignored the person? // is this a follower? Or have we ignored the person?
// If so we can not accept this post. // If so we can not accept this post.
if((count($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == REL_VIP) || ($r[0]['blocked']))) { if((count($r)) && (($r[0]['readonly']) || ($r[0]['rel'] == CONTACT_IS_FOLLOWER) || ($r[0]['blocked']))) {
logger('mod-salmon: Ignoring this author.'); logger('mod-salmon: Ignoring this author.');
salmon_return(202); salmon_return(202);
// NOTREACHED // NOTREACHED

View file

@ -1,6 +1,6 @@
<?php <?php
define( 'UPDATE_VERSION' , 1077 ); define( 'UPDATE_VERSION' , 1078 );
/** /**
* *
@ -626,7 +626,15 @@ function update_1075() {
} }
function update_1076() { function update_1076() {
q("CREATE TABLE ``guid` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY , q("CREATE TABLE `guid` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`guid` CHAR( 16 ) NOT NULL , INDEX ( `guid` ) ) ENGINE = MYISAM ");
}
// There was a typo in 1076 so we'll try again in 1077 to make sure
function update_1077() {
q("CREATE TABLE IF NOT EXISTS `guid` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`guid` CHAR( 16 ) NOT NULL , INDEX ( `guid` ) ) ENGINE = MYISAM "); `guid` CHAR( 16 ) NOT NULL , INDEX ( `guid` ) ) ENGINE = MYISAM ");
} }

View file

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.2.991\n" "Project-Id-Version: 2.2.1064\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-05-26 06:46-0700\n" "POT-Creation-Date: 2011-08-07 04:50-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -30,26 +30,27 @@ msgid "Contact update failed."
msgstr "" msgstr ""
#: ../../mod/crepair.php:54 ../../mod/wall_attach.php:43 #: ../../mod/crepair.php:54 ../../mod/wall_attach.php:43
#: ../../mod/photos.php:89 ../../mod/photos.php:802 ../../mod/editpost.php:10 #: ../../mod/fsuggest.php:78 ../../mod/events.php:102 ../../mod/photos.php:122
#: ../../mod/install.php:93 ../../mod/notifications.php:56 #: ../../mod/photos.php:849 ../../mod/editpost.php:10 ../../mod/install.php:96
#: ../../mod/contacts.php:106 ../../mod/settings.php:15 #: ../../mod/notifications.php:62 ../../mod/contacts.php:132
#: ../../mod/settings.php:20 ../../mod/settings.php:251 #: ../../mod/settings.php:41 ../../mod/settings.php:46
#: ../../mod/manage.php:75 ../../mod/network.php:6 ../../mod/notes.php:20 #: ../../mod/settings.php:305 ../../mod/manage.php:75 ../../mod/network.php:6
#: ../../mod/attach.php:64 ../../mod/group.php:19 #: ../../mod/notes.php:20 ../../mod/attach.php:33 ../../mod/group.php:19
#: ../../mod/viewcontacts.php:21 ../../mod/register.php:27 #: ../../mod/viewcontacts.php:21 ../../mod/register.php:27
#: ../../mod/regmod.php:18 ../../mod/item.php:57 ../../mod/item.php:801 #: ../../mod/regmod.php:111 ../../mod/item.php:110
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133
#: ../../mod/profile_photo.php:144 ../../mod/profile_photo.php:155 #: ../../mod/profile_photo.php:144 ../../mod/profile_photo.php:155
#: ../../mod/message.php:8 ../../mod/message.php:116 #: ../../mod/message.php:8 ../../mod/message.php:116 ../../mod/admin.php:10
#: ../../mod/wall_upload.php:42 ../../mod/follow.php:8 #: ../../mod/wall_upload.php:42 ../../mod/follow.php:8
#: ../../mod/display.php:138 ../../mod/profiles.php:7 #: ../../mod/display.php:108 ../../mod/profiles.php:7
#: ../../mod/profiles.php:230 ../../mod/invite.php:13 ../../mod/invite.php:54 #: ../../mod/profiles.php:226 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:242 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:308
#: ../../index.php:256 #: ../../include/items.php:1916 ../../index.php:266
msgid "Permission denied." msgid "Permission denied."
msgstr "" msgstr ""
#: ../../mod/crepair.php:68 ../../mod/contacts.php:214 #: ../../mod/crepair.php:68 ../../mod/fsuggest.php:20
#: ../../mod/fsuggest.php:92 ../../mod/contacts.php:240
#: ../../mod/dfrn_confirm.php:114 #: ../../mod/dfrn_confirm.php:114
msgid "Contact not found." msgid "Contact not found."
msgstr "" msgstr ""
@ -70,7 +71,7 @@ msgid ""
"uncertain what to do on this page." "uncertain what to do on this page."
msgstr "" msgstr ""
#: ../../mod/crepair.php:85 #: ../../mod/crepair.php:85 ../../mod/admin.php:464 ../../mod/admin.php:473
msgid "Name" msgid "Name"
msgstr "" msgstr ""
@ -98,20 +99,25 @@ msgstr ""
msgid "Poll/Feed URL" msgid "Poll/Feed URL"
msgstr "" msgstr ""
#: ../../mod/crepair.php:100 ../../mod/photos.php:830 ../../mod/photos.php:887 #: ../../mod/crepair.php:100 ../../mod/fsuggest.php:107
#: ../../mod/photos.php:1095 ../../mod/photos.php:1135 #: ../../mod/events.php:333 ../../mod/photos.php:877 ../../mod/photos.php:934
#: ../../mod/photos.php:1174 ../../mod/photos.php:1205 #: ../../mod/photos.php:1144 ../../mod/photos.php:1184
#: ../../mod/install.php:133 ../../mod/contacts.php:264 #: ../../mod/photos.php:1223 ../../mod/photos.php:1254
#: ../../mod/settings.php:426 ../../mod/manage.php:106 ../../mod/group.php:76 #: ../../mod/install.php:137 ../../mod/contacts.php:296
#: ../../mod/group.php:159 ../../mod/profiles.php:383 ../../mod/invite.php:68 #: ../../mod/settings.php:482 ../../mod/manage.php:106 ../../mod/group.php:84
#: ../../addon/facebook/facebook.php:289 #: ../../mod/group.php:167 ../../mod/admin.php:298 ../../mod/admin.php:461
#: ../../addon/randplace/randplace.php:179 ../../addon/oembed/oembed.php:49 #: ../../mod/admin.php:587 ../../mod/admin.php:652 ../../mod/profiles.php:372
#: ../../addon/statusnet/statusnet.php:216 #: ../../mod/invite.php:106 ../../addon/facebook/facebook.php:366
#: ../../addon/statusnet/statusnet.php:230 #: ../../addon/randplace/randplace.php:178
#: ../../addon/statusnet/statusnet.php:256 #: ../../addon/impressum/impressum.php:69 ../../addon/oembed/oembed.php:41
#: ../../addon/statusnet/statusnet.php:223
#: ../../addon/statusnet/statusnet.php:237
#: ../../addon/statusnet/statusnet.php:263 #: ../../addon/statusnet/statusnet.php:263
#: ../../addon/statusnet/statusnet.php:285 ../../addon/twitter/twitter.php:156 #: ../../addon/statusnet/statusnet.php:270
#: ../../addon/twitter/twitter.php:175 ../../include/conversation.php:383 #: ../../addon/statusnet/statusnet.php:292
#: ../../addon/statusnet/statusnet.php:414 ../../addon/piwik/piwik.php:76
#: ../../addon/twitter/twitter.php:171 ../../addon/twitter/twitter.php:194
#: ../../addon/twitter/twitter.php:276 ../../include/conversation.php:406
msgid "Submit" msgid "Submit"
msgstr "" msgstr ""
@ -132,8 +138,112 @@ msgstr ""
msgid "File upload failed." msgid "File upload failed."
msgstr "" msgstr ""
#: ../../mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr ""
#: ../../mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr ""
#: ../../mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr ""
#: ../../mod/events.php:112 ../../mod/photos.php:834 ../../mod/notes.php:46
#: ../../mod/profile.php:116
msgid "Status"
msgstr ""
#: ../../mod/events.php:113 ../../mod/photos.php:835 ../../mod/notes.php:47
#: ../../mod/profperm.php:103 ../../mod/profile.php:117
#: ../../include/profile_advanced.php:7
msgid "Profile"
msgstr ""
#: ../../mod/events.php:114 ../../mod/photos.php:836 ../../mod/notes.php:48
#: ../../mod/profile.php:118
msgid "Photos"
msgstr ""
#: ../../mod/events.php:115 ../../mod/events.php:120 ../../mod/photos.php:837
#: ../../mod/notes.php:49 ../../mod/profile.php:119
msgid "Events"
msgstr ""
#: ../../mod/events.php:116 ../../mod/photos.php:838 ../../mod/notes.php:50
#: ../../mod/notes.php:55 ../../mod/profile.php:120
msgid "Personal Notes"
msgstr ""
#: ../../mod/events.php:210
msgid "Create New Event"
msgstr ""
#: ../../mod/events.php:213
msgid "Previous"
msgstr ""
#: ../../mod/events.php:216
msgid "Next"
msgstr ""
#: ../../mod/events.php:223
msgid "l, F j"
msgstr ""
#: ../../mod/events.php:235
msgid "Edit event"
msgstr ""
#: ../../mod/events.php:237 ../../include/text.php:835
msgid "link to source"
msgstr ""
#: ../../mod/events.php:305
msgid "hour:minute"
msgstr ""
#: ../../mod/events.php:314
msgid "Event details"
msgstr ""
#: ../../mod/events.php:315
#, php-format
msgid "Format is %s %s. Starting date and Description are required."
msgstr ""
#: ../../mod/events.php:316
msgid "Event Starts:"
msgstr ""
#: ../../mod/events.php:319
msgid "Finish date/time is not known or not relevant"
msgstr ""
#: ../../mod/events.php:321
msgid "Event Finishes:"
msgstr ""
#: ../../mod/events.php:324
msgid "Adjust for viewer timezone"
msgstr ""
#: ../../mod/events.php:326
msgid "Description:"
msgstr ""
#: ../../mod/events.php:328 ../../include/event.php:37 ../../boot.php:869
msgid "Location:"
msgstr ""
#: ../../mod/events.php:330
msgid "Share this event"
msgstr ""
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/dfrn_request.php:644 ../../addon/js_upload/js_upload.php:41 #: ../../mod/dfrn_request.php:644 ../../addon/js_upload/js_upload.php:45
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -158,204 +268,225 @@ msgstr ""
msgid "%s welcomes %s" msgid "%s welcomes %s"
msgstr "" msgstr ""
#: ../../mod/photos.php:34 #: ../../mod/photos.php:37
msgid "Photo Albums" msgid "Photo Albums"
msgstr "" msgstr ""
#: ../../mod/photos.php:38 ../../mod/photos.php:110 ../../mod/photos.php:810 #: ../../mod/photos.php:45 ../../mod/photos.php:143 ../../mod/photos.php:857
#: ../../mod/photos.php:879 ../../mod/photos.php:894 ../../mod/photos.php:1282 #: ../../mod/photos.php:926 ../../mod/photos.php:941 ../../mod/photos.php:1332
#: ../../mod/photos.php:1293 ../../include/Photo.php:233 #: ../../mod/photos.php:1344
#: ../../include/Photo.php:240 ../../include/Photo.php:247
#: ../../include/items.php:1041 ../../include/items.php:1044
#: ../../include/items.php:1047
msgid "Contact Photos" msgid "Contact Photos"
msgstr "" msgstr ""
#: ../../mod/photos.php:99 #: ../../mod/photos.php:57 ../../mod/settings.php:9
msgid "everybody"
msgstr ""
#: ../../mod/photos.php:132
msgid "Contact information unavailable" msgid "Contact information unavailable"
msgstr "" msgstr ""
#: ../../mod/photos.php:110 ../../mod/photos.php:535 ../../mod/photos.php:879 #: ../../mod/photos.php:143 ../../mod/photos.php:577 ../../mod/photos.php:926
#: ../../mod/photos.php:894 ../../mod/register.php:290 #: ../../mod/photos.php:941 ../../mod/register.php:316
#: ../../mod/register.php:297 ../../mod/register.php:304 #: ../../mod/register.php:323 ../../mod/register.php:330
#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 #: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65
#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:160 #: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:160
#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:245 #: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:245
msgid "Profile Photos" msgid "Profile Photos"
msgstr "" msgstr ""
#: ../../mod/photos.php:120 #: ../../mod/photos.php:153
msgid "Album not found." msgid "Album not found."
msgstr "" msgstr ""
#: ../../mod/photos.php:138 ../../mod/photos.php:888 #: ../../mod/photos.php:171 ../../mod/photos.php:935
msgid "Delete Album" msgid "Delete Album"
msgstr "" msgstr ""
#: ../../mod/photos.php:201 ../../mod/photos.php:1096 #: ../../mod/photos.php:234 ../../mod/photos.php:1145
msgid "Delete Photo" msgid "Delete Photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:473 #: ../../mod/photos.php:508
msgid "was tagged in a" msgid "was tagged in a"
msgstr "" msgstr ""
#: ../../mod/photos.php:473 ../../mod/like.php:110 #: ../../mod/photos.php:508 ../../mod/like.php:110
#: ../../include/conversation.php:20 #: ../../include/conversation.php:31
msgid "photo" msgid "photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:473 #: ../../mod/photos.php:508
msgid "by" msgid "by"
msgstr "" msgstr ""
#: ../../mod/photos.php:563 ../../addon/js_upload/js_upload.php:306 #: ../../mod/photos.php:608 ../../addon/js_upload/js_upload.php:310
msgid "Image exceeds size limit of " msgid "Image exceeds size limit of "
msgstr "" msgstr ""
#: ../../mod/photos.php:577 ../../mod/profile_photo.php:118 #: ../../mod/photos.php:616
msgid "Image file is empty."
msgstr ""
#: ../../mod/photos.php:630 ../../mod/profile_photo.php:118
#: ../../mod/wall_upload.php:65 #: ../../mod/wall_upload.php:65
msgid "Unable to process image." msgid "Unable to process image."
msgstr "" msgstr ""
#: ../../mod/photos.php:597 ../../mod/profile_photo.php:241 #: ../../mod/photos.php:650 ../../mod/profile_photo.php:241
#: ../../mod/wall_upload.php:82 #: ../../mod/wall_upload.php:84
msgid "Image upload failed." msgid "Image upload failed."
msgstr "" msgstr ""
#: ../../mod/photos.php:680 ../../mod/dfrn_request.php:591 #: ../../mod/photos.php:733 ../../mod/community.php:9
#: ../../mod/viewcontacts.php:16 ../../mod/display.php:7 #: ../../mod/dfrn_request.php:591 ../../mod/viewcontacts.php:16
#: ../../mod/search.php:13 ../../mod/directory.php:20 #: ../../mod/display.php:7 ../../mod/search.php:13 ../../mod/directory.php:20
msgid "Public access denied." msgid "Public access denied."
msgstr "" msgstr ""
#: ../../mod/photos.php:690 #: ../../mod/photos.php:743
msgid "No photos selected" msgid "No photos selected"
msgstr "" msgstr ""
#: ../../mod/photos.php:837 #: ../../mod/photos.php:820
msgid "Access to this item is restricted."
msgstr ""
#: ../../mod/photos.php:884
msgid "Upload Photos" msgid "Upload Photos"
msgstr "" msgstr ""
#: ../../mod/photos.php:840 ../../mod/photos.php:883 #: ../../mod/photos.php:887 ../../mod/photos.php:930
msgid "New album name: " msgid "New album name: "
msgstr "" msgstr ""
#: ../../mod/photos.php:841 #: ../../mod/photos.php:888
msgid "or existing album name: " msgid "or existing album name: "
msgstr "" msgstr ""
#: ../../mod/photos.php:843 ../../mod/photos.php:1091 #: ../../mod/photos.php:890 ../../mod/photos.php:1140
msgid "Permissions" msgid "Permissions"
msgstr "" msgstr ""
#: ../../mod/photos.php:898 #: ../../mod/photos.php:945
msgid "Edit Album" msgid "Edit Album"
msgstr "" msgstr ""
#: ../../mod/photos.php:908 ../../mod/photos.php:1311 #: ../../mod/photos.php:955 ../../mod/photos.php:1362
msgid "View Photo" msgid "View Photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:937 #: ../../mod/photos.php:984
msgid "Photo not available" msgid "Photo not available"
msgstr "" msgstr ""
#: ../../mod/photos.php:986 #: ../../mod/photos.php:1033
msgid "Edit photo" msgid "Edit photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:987 #: ../../mod/photos.php:1034
msgid "Use as profile photo" msgid "Use as profile photo"
msgstr "" msgstr ""
#: ../../mod/photos.php:993 ../../include/conversation.php:316 #: ../../mod/photos.php:1040 ../../include/conversation.php:339
msgid "Private Message" msgid "Private Message"
msgstr "" msgstr ""
#: ../../mod/photos.php:1000 #: ../../mod/photos.php:1051
msgid "<< Prev"
msgstr ""
#: ../../mod/photos.php:1004
msgid "View Full Size" msgid "View Full Size"
msgstr "" msgstr ""
#: ../../mod/photos.php:1009 #: ../../mod/photos.php:1119
msgid "Next >>"
msgstr ""
#: ../../mod/photos.php:1071
msgid "Tags: " msgid "Tags: "
msgstr "" msgstr ""
#: ../../mod/photos.php:1074 #: ../../mod/photos.php:1122
msgid "[Remove any tag]" msgid "[Remove any tag]"
msgstr "" msgstr ""
#: ../../mod/photos.php:1084 #: ../../mod/photos.php:1133
msgid "New album name" msgid "New album name"
msgstr "" msgstr ""
#: ../../mod/photos.php:1087 #: ../../mod/photos.php:1136
msgid "Caption" msgid "Caption"
msgstr "" msgstr ""
#: ../../mod/photos.php:1089 #: ../../mod/photos.php:1138
msgid "Add a Tag" msgid "Add a Tag"
msgstr "" msgstr ""
#: ../../mod/photos.php:1093 #: ../../mod/photos.php:1142
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "" msgstr ""
#: ../../mod/photos.php:1113 ../../include/conversation.php:364 #: ../../mod/photos.php:1162 ../../include/conversation.php:387
msgid "I like this (toggle)" msgid "I like this (toggle)"
msgstr "" msgstr ""
#: ../../mod/photos.php:1114 ../../include/conversation.php:365 #: ../../mod/photos.php:1163 ../../include/conversation.php:388
msgid "I don't like this (toggle)" msgid "I don't like this (toggle)"
msgstr "" msgstr ""
#: ../../mod/photos.php:1115 ../../include/conversation.php:366 #: ../../mod/photos.php:1164 ../../include/conversation.php:389
#: ../../include/conversation.php:731 #: ../../include/conversation.php:743
msgid "Share" msgid "Share"
msgstr "" msgstr ""
#: ../../mod/photos.php:1116 ../../mod/editpost.php:97 #: ../../mod/photos.php:1165 ../../mod/editpost.php:99
#: ../../mod/message.php:190 ../../mod/message.php:324 #: ../../mod/message.php:190 ../../mod/message.php:324
#: ../../include/conversation.php:367 ../../include/conversation.php:741 #: ../../include/conversation.php:390 ../../include/conversation.php:753
msgid "Please wait" msgid "Please wait"
msgstr "" msgstr ""
#: ../../mod/photos.php:1132 ../../mod/photos.php:1171 #: ../../mod/photos.php:1181 ../../mod/photos.php:1220
#: ../../mod/photos.php:1202 ../../include/conversation.php:380 #: ../../mod/photos.php:1251 ../../include/conversation.php:403
msgid "This is you" msgid "This is you"
msgstr "" msgstr ""
#: ../../mod/photos.php:1134 ../../mod/photos.php:1173 #: ../../mod/photos.php:1183 ../../mod/photos.php:1222
#: ../../mod/photos.php:1204 ../../include/conversation.php:382 #: ../../mod/photos.php:1253 ../../include/conversation.php:405
#: ../../boot.php:386 #: ../../boot.php:412
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: ../../mod/photos.php:1232 ../../mod/group.php:146 #: ../../mod/photos.php:1281 ../../mod/group.php:154 ../../mod/admin.php:468
#: ../../include/conversation.php:179 ../../include/conversation.php:393 #: ../../include/conversation.php:424
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
#: ../../mod/photos.php:1298 #: ../../mod/photos.php:1349
msgid "Recent Photos" msgid "Recent Photos"
msgstr "" msgstr ""
#: ../../mod/photos.php:1302 #: ../../mod/photos.php:1353
msgid "Upload New Photos" msgid "Upload New Photos"
msgstr "" msgstr ""
#: ../../mod/photos.php:1315 #: ../../mod/photos.php:1366
msgid "View Album" msgid "View Album"
msgstr "" msgstr ""
#: ../../mod/community.php:14
msgid "Not available."
msgstr ""
#: ../../mod/community.php:26 ../../include/nav.php:79
msgid "Community"
msgstr ""
#: ../../mod/community.php:56 ../../mod/search.php:65
msgid "No results."
msgstr ""
#: ../../mod/community.php:83 ../../mod/network.php:302
#: ../../mod/register.php:504 ../../mod/profile.php:241
#: ../../mod/display.php:117
msgid ""
"Shared content is covered by the <a href=\"http://creativecommons.org/"
"licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."
msgstr ""
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 #: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found" msgid "Item not found"
msgstr "" msgstr ""
@ -364,62 +495,62 @@ msgstr ""
msgid "Edit post" msgid "Edit post"
msgstr "" msgstr ""
#: ../../mod/editpost.php:75 ../../include/conversation.php:717 #: ../../mod/editpost.php:75 ../../include/conversation.php:729
msgid "Post to Email" msgid "Post to Email"
msgstr "" msgstr ""
#: ../../mod/editpost.php:88 ../../include/group.php:169 #: ../../mod/editpost.php:90 ../../include/group.php:171
#: ../../include/conversation.php:391 #: ../../include/group.php:172 ../../include/conversation.php:414
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: ../../mod/editpost.php:89 ../../mod/message.php:188 #: ../../mod/editpost.php:91 ../../mod/message.php:188
#: ../../mod/message.php:322 ../../include/conversation.php:732 #: ../../mod/message.php:322 ../../include/conversation.php:744
msgid "Upload photo" msgid "Upload photo"
msgstr "" msgstr ""
#: ../../mod/editpost.php:90 ../../include/conversation.php:733 #: ../../mod/editpost.php:92 ../../include/conversation.php:745
msgid "Attach file" msgid "Attach file"
msgstr "" msgstr ""
#: ../../mod/editpost.php:91 ../../mod/message.php:189 #: ../../mod/editpost.php:93 ../../mod/message.php:189
#: ../../mod/message.php:323 ../../include/conversation.php:734 #: ../../mod/message.php:323 ../../include/conversation.php:746
msgid "Insert web link" msgid "Insert web link"
msgstr "" msgstr ""
#: ../../mod/editpost.php:92 ../../include/conversation.php:735 #: ../../mod/editpost.php:94 ../../include/conversation.php:747
msgid "Insert YouTube video" msgid "Insert YouTube video"
msgstr "" msgstr ""
#: ../../mod/editpost.php:93 ../../include/conversation.php:736 #: ../../mod/editpost.php:95 ../../include/conversation.php:748
msgid "Insert Vorbis [.ogg] video" msgid "Insert Vorbis [.ogg] video"
msgstr "" msgstr ""
#: ../../mod/editpost.php:94 ../../include/conversation.php:737 #: ../../mod/editpost.php:96 ../../include/conversation.php:749
msgid "Insert Vorbis [.ogg] audio" msgid "Insert Vorbis [.ogg] audio"
msgstr "" msgstr ""
#: ../../mod/editpost.php:95 ../../include/conversation.php:738 #: ../../mod/editpost.php:97 ../../include/conversation.php:750
msgid "Set your location" msgid "Set your location"
msgstr "" msgstr ""
#: ../../mod/editpost.php:96 ../../include/conversation.php:739 #: ../../mod/editpost.php:98 ../../include/conversation.php:751
msgid "Clear browser location" msgid "Clear browser location"
msgstr "" msgstr ""
#: ../../mod/editpost.php:98 ../../include/conversation.php:742 #: ../../mod/editpost.php:100 ../../include/conversation.php:754
msgid "Permission settings" msgid "Permission settings"
msgstr "" msgstr ""
#: ../../mod/editpost.php:106 ../../include/conversation.php:750 #: ../../mod/editpost.php:108 ../../include/conversation.php:762
msgid "CC: email addresses" msgid "CC: email addresses"
msgstr "" msgstr ""
#: ../../mod/editpost.php:107 ../../include/conversation.php:751 #: ../../mod/editpost.php:109 ../../include/conversation.php:763
msgid "Public post" msgid "Public post"
msgstr "" msgstr ""
#: ../../mod/editpost.php:109 ../../include/conversation.php:753 #: ../../mod/editpost.php:111 ../../include/conversation.php:765
msgid "Example: bob@example.com, mary@example.com" msgid "Example: bob@example.com, mary@example.com"
msgstr "" msgstr ""
@ -496,7 +627,7 @@ msgstr ""
msgid "Disallowed profile URL." msgid "Disallowed profile URL."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:406 ../../mod/contacts.php:90 #: ../../mod/dfrn_request.php:406 ../../mod/contacts.php:116
msgid "Failed to update contact record." msgid "Failed to update contact record."
msgstr "" msgstr ""
@ -528,7 +659,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:542 ../../include/items.php:1440 #: ../../mod/dfrn_request.php:542 ../../include/items.php:1505
msgid "[Name Withheld]" msgid "[Name Withheld]"
msgstr "" msgstr ""
@ -536,11 +667,11 @@ msgstr ""
msgid "Introduction received at " msgid "Introduction received at "
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:551 ../../mod/lostpass.php:40 #: ../../mod/dfrn_request.php:551 ../../mod/lostpass.php:44
#: ../../mod/lostpass.php:102 ../../mod/register.php:335 #: ../../mod/lostpass.php:106 ../../mod/register.php:369
#: ../../mod/register.php:385 ../../mod/regmod.php:98 #: ../../mod/register.php:423 ../../mod/regmod.php:54
#: ../../mod/dfrn_notify.php:191 ../../mod/dfrn_notify.php:443 #: ../../mod/dfrn_notify.php:291 ../../mod/dfrn_notify.php:547
#: ../../mod/dfrn_confirm.php:658 ../../include/items.php:1449 #: ../../mod/dfrn_confirm.php:658 ../../include/items.php:1514
msgid "Administrator" msgid "Administrator"
msgstr "" msgstr ""
@ -559,18 +690,21 @@ msgid "Please answer the following:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:633 #: ../../mod/dfrn_request.php:633
msgid "Does $name know you?" #, php-format
msgid "Does %s know you?"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:634 ../../mod/settings.php:350 #: ../../mod/dfrn_request.php:634 ../../mod/settings.php:415
#: ../../mod/settings.php:362 ../../mod/register.php:459 #: ../../mod/settings.php:421 ../../mod/settings.php:429
#: ../../mod/profiles.php:358 ../../mod/profiles.php:367 #: ../../mod/settings.php:433 ../../mod/register.php:498
#: ../../mod/profiles.php:354
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:635 ../../mod/settings.php:351 #: ../../mod/dfrn_request.php:635 ../../mod/settings.php:415
#: ../../mod/settings.php:363 ../../mod/register.php:460 #: ../../mod/settings.php:421 ../../mod/settings.php:429
#: ../../mod/profiles.php:359 ../../mod/profiles.php:368 #: ../../mod/settings.php:433 ../../mod/register.php:499
#: ../../mod/profiles.php:355
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -608,188 +742,208 @@ msgstr ""
msgid "Submit Request" msgid "Submit Request"
msgstr "" msgstr ""
#: ../../mod/install.php:33 #: ../../mod/install.php:34
msgid "Could not create/connect to database." msgid "Could not create/connect to database."
msgstr "" msgstr ""
#: ../../mod/install.php:38 #: ../../mod/install.php:39
msgid "Connected to database." msgid "Connected to database."
msgstr "" msgstr ""
#: ../../mod/install.php:72 #: ../../mod/install.php:75
msgid "Proceed with Installation" msgid "Proceed with Installation"
msgstr "" msgstr ""
#: ../../mod/install.php:74 #: ../../mod/install.php:77
msgid "Your Friendika site database has been installed." msgid "Your Friendika site database has been installed."
msgstr "" msgstr ""
#: ../../mod/install.php:75 #: ../../mod/install.php:78
msgid "" msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr "" msgstr ""
#: ../../mod/install.php:76 ../../mod/install.php:86 ../../mod/install.php:199 #: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207
msgid "Please see the file \"INSTALL.txt\"." msgid "Please see the file \"INSTALL.txt\"."
msgstr "" msgstr ""
#: ../../mod/install.php:78 #: ../../mod/install.php:81
msgid "Proceed to registration" msgid "Proceed to registration"
msgstr "" msgstr ""
#: ../../mod/install.php:84 #: ../../mod/install.php:87
msgid "Database import failed." msgid "Database import failed."
msgstr "" msgstr ""
#: ../../mod/install.php:85 #: ../../mod/install.php:88
msgid "" msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin " "You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql." "or mysql."
msgstr "" msgstr ""
#: ../../mod/install.php:98 #: ../../mod/install.php:101
msgid "Welcome to Friendika." msgid "Welcome to Friendika."
msgstr "" msgstr ""
#: ../../mod/install.php:121 #: ../../mod/install.php:124
msgid "Friendika Social Network" msgid "Friendika Social Network"
msgstr "" msgstr ""
#: ../../mod/install.php:122 #: ../../mod/install.php:125
msgid "Installation" msgid "Installation"
msgstr "" msgstr ""
#: ../../mod/install.php:123 #: ../../mod/install.php:126
msgid "" msgid ""
"In order to install Friendika we need to know how to contact your database." "In order to install Friendika we need to know how to connect to your "
"database."
msgstr "" msgstr ""
#: ../../mod/install.php:124 #: ../../mod/install.php:127
msgid "" msgid ""
"Please contact your hosting provider or site administrator if you have " "Please contact your hosting provider or site administrator if you have "
"questions about these settings." "questions about these settings."
msgstr "" msgstr ""
#: ../../mod/install.php:125 #: ../../mod/install.php:128
msgid "" msgid ""
"The database you specify below must already exist. If it does not, please " "The database you specify below should already exist. If it does not, please "
"create it before continuing." "create it before continuing."
msgstr "" msgstr ""
#: ../../mod/install.php:126 #: ../../mod/install.php:129
msgid "Database Server Name" msgid "Database Server Name"
msgstr "" msgstr ""
#: ../../mod/install.php:127 #: ../../mod/install.php:130
msgid "Database Login Name" msgid "Database Login Name"
msgstr "" msgstr ""
#: ../../mod/install.php:128 #: ../../mod/install.php:131
msgid "Database Login Password" msgid "Database Login Password"
msgstr "" msgstr ""
#: ../../mod/install.php:129 #: ../../mod/install.php:132
msgid "Database Name" msgid "Database Name"
msgstr "" msgstr ""
#: ../../mod/install.php:130 #: ../../mod/install.php:133
msgid "Please select a default timezone for your website" msgid "Please select a default timezone for your website"
msgstr "" msgstr ""
#: ../../mod/install.php:148 #: ../../mod/install.php:134
msgid ""
"Site administrator email address. Your account email address must match this "
"in order to use the web admin panel."
msgstr ""
#: ../../mod/install.php:153
msgid "Could not find a command line version of PHP in the web server PATH." msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "" msgstr ""
#: ../../mod/install.php:149 #: ../../mod/install.php:154
msgid "" msgid ""
"This is required. Please adjust the configuration file .htconfig.php " "This is required. Please adjust the configuration file .htconfig.php "
"accordingly." "accordingly."
msgstr "" msgstr ""
#: ../../mod/install.php:156 #: ../../mod/install.php:161
msgid "" msgid ""
"The command line version of PHP on your system does not have " "The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled." "\"register_argc_argv\" enabled."
msgstr "" msgstr ""
#: ../../mod/install.php:157 #: ../../mod/install.php:162
msgid "This is required for message delivery to work." msgid "This is required for message delivery to work."
msgstr "" msgstr ""
#: ../../mod/install.php:179 #: ../../mod/install.php:184
msgid "" msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to " "Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys" "generate encryption keys"
msgstr "" msgstr ""
#: ../../mod/install.php:180 #: ../../mod/install.php:185
msgid "" msgid ""
"If running under Windows, please see \"http://www.php.net/manual/en/openssl." "If running under Windows, please see \"http://www.php.net/manual/en/openssl."
"installation.php\"." "installation.php\"."
msgstr "" msgstr ""
#: ../../mod/install.php:189 #: ../../mod/install.php:194
msgid "" msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed." "Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "" msgstr ""
#: ../../mod/install.php:191 #: ../../mod/install.php:196
msgid "Error: libCURL PHP module required but not installed." msgid "Error: libCURL PHP module required but not installed."
msgstr "" msgstr ""
#: ../../mod/install.php:193 #: ../../mod/install.php:198
msgid "" msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed." "Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "" msgstr ""
#: ../../mod/install.php:195 #: ../../mod/install.php:200
msgid "Error: openssl PHP module required but not installed." msgid "Error: openssl PHP module required but not installed."
msgstr "" msgstr ""
#: ../../mod/install.php:197 #: ../../mod/install.php:202
msgid "Error: mysqli PHP module required but not installed." msgid "Error: mysqli PHP module required but not installed."
msgstr "" msgstr ""
#: ../../mod/install.php:208 #: ../../mod/install.php:204
msgid "Error: mb_string PHP module required but not installed."
msgstr ""
#: ../../mod/install.php:216
msgid "" msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\" " "The web installer needs to be able to create a file called \".htconfig.php\" "
"in the top folder of your web server and it is unable to do so." "in the top folder of your web server and it is unable to do so."
msgstr "" msgstr ""
#: ../../mod/install.php:209 #: ../../mod/install.php:217
msgid "" msgid ""
"This is most often a permission setting, as the web server may not be able " "This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can." "to write files in your folder - even if you can."
msgstr "" msgstr ""
#: ../../mod/install.php:210 #: ../../mod/install.php:218
msgid "" msgid ""
"Please check with your site documentation or support people to see if this " "Please check with your site documentation or support people to see if this "
"situation can be corrected." "situation can be corrected."
msgstr "" msgstr ""
#: ../../mod/install.php:211 #: ../../mod/install.php:219
msgid "" msgid ""
"If not, you may be required to perform a manual installation. Please see the " "If not, you may be required to perform a manual installation. Please see the "
"file \"INSTALL.txt\" for instructions." "file \"INSTALL.txt\" for instructions."
msgstr "" msgstr ""
#: ../../mod/install.php:220 #: ../../mod/install.php:228
msgid "" msgid ""
"The database configuration file \".htconfig.php\" could not be written. " "The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web " "Please use the enclosed text to create a configuration file in your web "
"server root." "server root."
msgstr "" msgstr ""
#: ../../mod/install.php:235 #: ../../mod/install.php:243
msgid "Errors encountered creating database tables." msgid "Errors encountered creating database tables."
msgstr "" msgstr ""
#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
#: ../../mod/update_profile.php:41
msgid "[Embedded content - reload page to view]"
msgstr ""
#: ../../mod/match.php:10 #: ../../mod/match.php:10
msgid "Profile Match" msgid "Profile Match"
msgstr "" msgstr ""
#: ../../mod/match.php:50 #: ../../mod/match.php:18
msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
#: ../../mod/match.php:54
msgid "No matches" msgid "No matches"
msgstr "" msgstr ""
@ -806,628 +960,669 @@ msgstr ""
msgid "Welcome to %s" msgid "Welcome to %s"
msgstr "" msgstr ""
#: ../../mod/notifications.php:28 #: ../../mod/notifications.php:26
msgid "Invalid request identifier." msgid "Invalid request identifier."
msgstr "" msgstr ""
#: ../../mod/notifications.php:31 ../../mod/notifications.php:133 #: ../../mod/notifications.php:35 ../../mod/notifications.php:118
#: ../../mod/notifications.php:162
msgid "Discard" msgid "Discard"
msgstr "" msgstr ""
#: ../../mod/notifications.php:41 ../../mod/notifications.php:132 #: ../../mod/notifications.php:47 ../../mod/notifications.php:117
#: ../../mod/notifications.php:161
msgid "Ignore" msgid "Ignore"
msgstr "" msgstr ""
#: ../../mod/notifications.php:68 #: ../../mod/notifications.php:74
msgid "Pending Friend/Connect Notifications" msgid "Pending Friend/Connect Notifications"
msgstr "" msgstr ""
#: ../../mod/notifications.php:72 #: ../../mod/notifications.php:78
msgid "Show Ignored Requests" msgid "Show Ignored Requests"
msgstr "" msgstr ""
#: ../../mod/notifications.php:72 #: ../../mod/notifications.php:78
msgid "Hide Ignored Requests" msgid "Hide Ignored Requests"
msgstr "" msgstr ""
#: ../../mod/notifications.php:104 #: ../../mod/notifications.php:105 ../../mod/notifications.php:148
msgid "Claims to be known to you: "
msgstr ""
#: ../../mod/notifications.php:104
msgid "yes"
msgstr ""
#: ../../mod/notifications.php:104
msgid "no"
msgstr ""
#: ../../mod/notifications.php:110
msgid "Approve as: "
msgstr ""
#: ../../mod/notifications.php:111
msgid "Friend"
msgstr ""
#: ../../mod/notifications.php:112
msgid "Fan/Admirer"
msgstr ""
#: ../../mod/notifications.php:119
msgid "Notification type: " msgid "Notification type: "
msgstr "" msgstr ""
#: ../../mod/notifications.php:120 #: ../../mod/notifications.php:106
msgid "Friend/Connect Request" msgid "Friend Suggestion"
msgstr "" msgstr ""
#: ../../mod/notifications.php:120 #: ../../mod/notifications.php:108
msgid "New Follower" #, php-format
msgid "suggested by %s"
msgstr "" msgstr ""
#: ../../mod/notifications.php:130 ../../mod/notifications.php:153 #: ../../mod/notifications.php:114 ../../mod/notifications.php:159
#: ../../mod/admin.php:466
msgid "Approve" msgid "Approve"
msgstr "" msgstr ""
#: ../../mod/notifications.php:133
msgid "Claims to be known to you: "
msgstr ""
#: ../../mod/notifications.php:133
msgid "yes"
msgstr ""
#: ../../mod/notifications.php:133
msgid "no"
msgstr ""
#: ../../mod/notifications.php:139 #: ../../mod/notifications.php:139
msgid "Approve as: "
msgstr ""
#: ../../mod/notifications.php:140
msgid "Friend"
msgstr ""
#: ../../mod/notifications.php:141
msgid "Fan/Admirer"
msgstr ""
#: ../../mod/notifications.php:149
msgid "Friend/Connect Request"
msgstr ""
#: ../../mod/notifications.php:149
msgid "New Follower"
msgstr ""
#: ../../mod/notifications.php:168
msgid "No notifications." msgid "No notifications."
msgstr "" msgstr ""
#: ../../mod/notifications.php:143 #: ../../mod/contacts.php:26
msgid "User registrations waiting for confirm"
msgstr ""
#: ../../mod/notifications.php:154
msgid "Deny"
msgstr ""
#: ../../mod/notifications.php:159
msgid "No registrations."
msgstr ""
#: ../../mod/contacts.php:12
msgid "Invite Friends" msgid "Invite Friends"
msgstr "" msgstr ""
#: ../../mod/contacts.php:15 #: ../../mod/contacts.php:32
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/contacts.php:41
msgid "Find People With Shared Interests" msgid "Find People With Shared Interests"
msgstr "" msgstr ""
#: ../../mod/contacts.php:19 #: ../../mod/contacts.php:45
msgid "Connect/Follow" msgid "Connect/Follow"
msgstr "" msgstr ""
#: ../../mod/contacts.php:20 #: ../../mod/contacts.php:46
msgid "Example: bob@example.com, http://example.com/barbara" msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "" msgstr ""
#: ../../mod/contacts.php:21 #: ../../mod/contacts.php:47
msgid "Follow" msgid "Follow"
msgstr "" msgstr ""
#: ../../mod/contacts.php:43 ../../mod/contacts.php:124 #: ../../mod/contacts.php:69 ../../mod/contacts.php:150
msgid "Could not access contact record." msgid "Could not access contact record."
msgstr "" msgstr ""
#: ../../mod/contacts.php:57 #: ../../mod/contacts.php:83
msgid "Could not locate selected profile." msgid "Could not locate selected profile."
msgstr "" msgstr ""
#: ../../mod/contacts.php:88 #: ../../mod/contacts.php:114
msgid "Contact updated." msgid "Contact updated."
msgstr "" msgstr ""
#: ../../mod/contacts.php:146 #: ../../mod/contacts.php:172
msgid "Contact has been blocked" msgid "Contact has been blocked"
msgstr "" msgstr ""
#: ../../mod/contacts.php:146 #: ../../mod/contacts.php:172
msgid "Contact has been unblocked" msgid "Contact has been unblocked"
msgstr "" msgstr ""
#: ../../mod/contacts.php:160 #: ../../mod/contacts.php:186
msgid "Contact has been ignored" msgid "Contact has been ignored"
msgstr "" msgstr ""
#: ../../mod/contacts.php:160 #: ../../mod/contacts.php:186
msgid "Contact has been unignored" msgid "Contact has been unignored"
msgstr "" msgstr ""
#: ../../mod/contacts.php:181 #: ../../mod/contacts.php:207
msgid "stopped following" msgid "stopped following"
msgstr "" msgstr ""
#: ../../mod/contacts.php:200 #: ../../mod/contacts.php:226
msgid "Contact has been removed." msgid "Contact has been removed."
msgstr "" msgstr ""
#: ../../mod/contacts.php:228 ../../mod/contacts.php:363 #: ../../mod/contacts.php:254 ../../mod/contacts.php:397
msgid "Mutual Friendship" msgid "Mutual Friendship"
msgstr "" msgstr ""
#: ../../mod/contacts.php:232 ../../mod/contacts.php:367 #: ../../mod/contacts.php:258 ../../mod/contacts.php:401
msgid "is a fan of yours" msgid "is a fan of yours"
msgstr "" msgstr ""
#: ../../mod/contacts.php:237 ../../mod/contacts.php:371 #: ../../mod/contacts.php:263 ../../mod/contacts.php:405
msgid "you are a fan of" msgid "you are a fan of"
msgstr "" msgstr ""
#: ../../mod/contacts.php:252 #: ../../mod/contacts.php:280
msgid "Privacy Unavailable" msgid "Privacy Unavailable"
msgstr "" msgstr ""
#: ../../mod/contacts.php:253 #: ../../mod/contacts.php:281
msgid "Private communications are not available for this contact." msgid "Private communications are not available for this contact."
msgstr "" msgstr ""
#: ../../mod/contacts.php:256 #: ../../mod/contacts.php:284
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: ../../mod/contacts.php:260 #: ../../mod/contacts.php:288
msgid "(Update was successful)" msgid "(Update was successful)"
msgstr "" msgstr ""
#: ../../mod/contacts.php:260 #: ../../mod/contacts.php:288
msgid "(Update was not successful)" msgid "(Update was not successful)"
msgstr "" msgstr ""
#: ../../mod/contacts.php:263 #: ../../mod/contacts.php:291
msgid "Suggest friends"
msgstr ""
#: ../../mod/contacts.php:295
msgid "Contact Editor" msgid "Contact Editor"
msgstr "" msgstr ""
#: ../../mod/contacts.php:265 #: ../../mod/contacts.php:297
msgid "Profile Visibility" msgid "Profile Visibility"
msgstr "" msgstr ""
#: ../../mod/contacts.php:266 #: ../../mod/contacts.php:298
#, 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:267 #: ../../mod/contacts.php:299
msgid "Contact Information / Notes" msgid "Contact Information / Notes"
msgstr "" msgstr ""
#: ../../mod/contacts.php:268 #: ../../mod/contacts.php:300
msgid "Online Reputation" msgid "Online Reputation"
msgstr "" msgstr ""
#: ../../mod/contacts.php:269 #: ../../mod/contacts.php:301
msgid "" msgid ""
"Occasionally your friends may wish to inquire about this person's online " "Occasionally your friends may wish to inquire about this person's online "
"legitimacy." "legitimacy."
msgstr "" msgstr ""
#: ../../mod/contacts.php:270 #: ../../mod/contacts.php:302
msgid "" msgid ""
"You may help them choose whether or not to interact with this person by " "You may help them choose whether or not to interact with this person by "
"providing a <em>reputation</em> to guide them." "providing a <em>reputation</em> to guide them."
msgstr "" msgstr ""
#: ../../mod/contacts.php:271 #: ../../mod/contacts.php:303
msgid "" msgid ""
"Please take a moment to elaborate on this selection if you feel it could be " "Please take a moment to elaborate on this selection if you feel it could be "
"helpful to others." "helpful to others."
msgstr "" msgstr ""
#: ../../mod/contacts.php:272 #: ../../mod/contacts.php:304 ../../mod/contacts.php:421
msgid "Visit $name's profile" #: ../../mod/viewcontacts.php:61
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "" msgstr ""
#: ../../mod/contacts.php:273 #: ../../mod/contacts.php:305
msgid "Block/Unblock contact" msgid "Block/Unblock contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:274 #: ../../mod/contacts.php:306
msgid "Ignore contact" msgid "Ignore contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:275 #: ../../mod/contacts.php:307
msgid "Repair contact URL settings" msgid "Repair contact URL settings"
msgstr "" msgstr ""
#: ../../mod/contacts.php:276 #: ../../mod/contacts.php:308
msgid "Repair contact URL settings (WARNING: Advanced)" msgid "Repair contact URL settings (WARNING: Advanced)"
msgstr "" msgstr ""
#: ../../mod/contacts.php:277 #: ../../mod/contacts.php:309
msgid "View conversations" msgid "View conversations"
msgstr "" msgstr ""
#: ../../mod/contacts.php:278 #: ../../mod/contacts.php:312
msgid "Delete contact" msgid "Delete contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:280 #: ../../mod/contacts.php:314
msgid "Last updated: " msgid "Last updated: "
msgstr "" msgstr ""
#: ../../mod/contacts.php:281 #: ../../mod/contacts.php:315
msgid "Update public posts: " msgid "Update public posts: "
msgstr "" msgstr ""
#: ../../mod/contacts.php:283 #: ../../mod/contacts.php:317 ../../mod/admin.php:701
msgid "Update now" msgid "Update now"
msgstr "" msgstr ""
#: ../../mod/contacts.php:286 #: ../../mod/contacts.php:320
msgid "Unblock this contact" msgid "Unblock this contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:286 #: ../../mod/contacts.php:320
msgid "Block this contact" msgid "Block this contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:287 #: ../../mod/contacts.php:321
msgid "Unignore this contact" msgid "Unignore this contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:287 #: ../../mod/contacts.php:321
msgid "Ignore this contact" msgid "Ignore this contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:290 #: ../../mod/contacts.php:324
msgid "Currently blocked" msgid "Currently blocked"
msgstr "" msgstr ""
#: ../../mod/contacts.php:291 #: ../../mod/contacts.php:325
msgid "Currently ignored" msgid "Currently ignored"
msgstr "" msgstr ""
#: ../../mod/contacts.php:322 ../../include/nav.php:109 #: ../../mod/contacts.php:356 ../../include/nav.php:110
#: ../../include/acl_selectors.php:141 ../../include/acl_selectors.php:156
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:324 #: ../../mod/contacts.php:358
msgid "Show Blocked Connections" msgid "Show Blocked Connections"
msgstr "" msgstr ""
#: ../../mod/contacts.php:324 #: ../../mod/contacts.php:358
msgid "Hide Blocked Connections" msgid "Hide Blocked Connections"
msgstr "" msgstr ""
#: ../../mod/contacts.php:326 ../../mod/directory.php:55 #: ../../mod/contacts.php:360 ../../mod/directory.php:55
msgid "Finding: " msgid "Finding: "
msgstr "" msgstr ""
#: ../../mod/contacts.php:327 ../../mod/directory.php:57 #: ../../mod/contacts.php:361 ../../mod/directory.php:57
msgid "Find" msgid "Find"
msgstr "" msgstr ""
#: ../../mod/contacts.php:387 ../../mod/viewcontacts.php:52 #: ../../mod/contacts.php:422 ../../include/conversation.php:609
msgid "Visit $username's profile"
msgstr ""
#: ../../mod/contacts.php:388 ../../include/conversation.php:597
msgid "Edit contact" msgid "Edit contact"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:27 #: ../../mod/lostpass.php:16
msgid "No valid account found."
msgstr ""
#: ../../mod/lostpass.php:31
msgid "Password reset request issued. Check your email." msgid "Password reset request issued. Check your email."
msgstr "" msgstr ""
#: ../../mod/lostpass.php:38 #: ../../mod/lostpass.php:42
#, php-format #, php-format
msgid "Password reset requested at %s" msgid "Password reset requested at %s"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:60 #: ../../mod/lostpass.php:64
msgid "" msgid ""
"Request could not be verified. (You may have previously submitted it.) " "Request could not be verified. (You may have previously submitted it.) "
"Password reset failed." "Password reset failed."
msgstr "" msgstr ""
#: ../../mod/lostpass.php:78 ../../boot.php:852 #: ../../mod/lostpass.php:82 ../../boot.php:655
msgid "Password Reset" msgid "Password Reset"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:79 #: ../../mod/lostpass.php:83
msgid "Your password has been reset as requested." msgid "Your password has been reset as requested."
msgstr "" msgstr ""
#: ../../mod/lostpass.php:80 #: ../../mod/lostpass.php:84
msgid "Your new password is" msgid "Your new password is"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:81 #: ../../mod/lostpass.php:85
msgid "Save or copy your new password - and then" msgid "Save or copy your new password - and then"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:82 #: ../../mod/lostpass.php:86
msgid "click here to login" msgid "click here to login"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:83 #: ../../mod/lostpass.php:87
msgid "" msgid ""
"Your password may be changed from the <em>Settings</em> page after " "Your password may be changed from the <em>Settings</em> page after "
"successful login." "successful login."
msgstr "" msgstr ""
#: ../../mod/lostpass.php:114 #: ../../mod/lostpass.php:118
msgid "Forgot your Password?" msgid "Forgot your Password?"
msgstr "" msgstr ""
#: ../../mod/lostpass.php:115 #: ../../mod/lostpass.php:119
msgid "" msgid ""
"Enter your email address and submit to have your password reset. Then check " "Enter your email address and submit to have your password reset. Then check "
"your email for further instructions." "your email for further instructions."
msgstr "" msgstr ""
#: ../../mod/lostpass.php:116 #: ../../mod/lostpass.php:120
msgid "Nickname or Email: " msgid "Nickname or Email: "
msgstr "" msgstr ""
#: ../../mod/lostpass.php:117 #: ../../mod/lostpass.php:121
msgid "Reset" msgid "Reset"
msgstr "" msgstr ""
#: ../../mod/settings.php:38 #: ../../mod/settings.php:64
msgid "Passwords do not match. Password unchanged." msgid "Passwords do not match. Password unchanged."
msgstr "" msgstr ""
#: ../../mod/settings.php:43 #: ../../mod/settings.php:69
msgid "Empty passwords are not allowed. Password unchanged." msgid "Empty passwords are not allowed. Password unchanged."
msgstr "" msgstr ""
#: ../../mod/settings.php:54 #: ../../mod/settings.php:80
msgid "Password changed." msgid "Password changed."
msgstr "" msgstr ""
#: ../../mod/settings.php:56 #: ../../mod/settings.php:82
msgid "Password update failed. Please try again." msgid "Password update failed. Please try again."
msgstr "" msgstr ""
#: ../../mod/settings.php:138 #: ../../mod/settings.php:161
msgid "Failed to connect with email account using the settings provided."
msgstr ""
#: ../../mod/settings.php:188
msgid " Please use a shorter name." msgid " Please use a shorter name."
msgstr "" msgstr ""
#: ../../mod/settings.php:140 #: ../../mod/settings.php:190
msgid " Name too short." msgid " Name too short."
msgstr "" msgstr ""
#: ../../mod/settings.php:146 #: ../../mod/settings.php:196
msgid " Not valid email." msgid " Not valid email."
msgstr "" msgstr ""
#: ../../mod/settings.php:148 #: ../../mod/settings.php:198
msgid " Cannot change to that email." msgid " Cannot change to that email."
msgstr "" msgstr ""
#: ../../mod/settings.php:206 #: ../../mod/settings.php:257 ../../addon/facebook/facebook.php:297
#: ../../addon/impressum/impressum.php:64 ../../addon/piwik/piwik.php:89
#: ../../addon/twitter/twitter.php:271
msgid "Settings updated." msgid "Settings updated."
msgstr "" msgstr ""
#: ../../mod/settings.php:256 ../../mod/settings.php:418 #: ../../mod/settings.php:311 ../../include/nav.php:108
#: ../../addon/widgets/widgets.php:123 msgid "Account settings"
msgid "Plugin Settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:257 ../../mod/settings.php:417 #: ../../mod/settings.php:312
msgid "Account Settings" msgid "Plugin settings"
msgstr "" msgstr ""
#: ../../mod/settings.php:263 #: ../../mod/settings.php:322
msgid "No Plugin settings configured" msgid "No Plugin settings configured"
msgstr "" msgstr ""
#: ../../mod/settings.php:323 #: ../../mod/settings.php:329 ../../addon/widgets/widgets.php:122
msgid "Plugin Settings"
msgstr ""
#: ../../mod/settings.php:382 ../../mod/admin.php:133 ../../mod/admin.php:443
msgid "Normal Account" msgid "Normal Account"
msgstr "" msgstr ""
#: ../../mod/settings.php:324 #: ../../mod/settings.php:383
msgid "This account is a normal personal profile" msgid "This account is a normal personal profile"
msgstr "" msgstr ""
#: ../../mod/settings.php:325 #: ../../mod/settings.php:386 ../../mod/admin.php:134 ../../mod/admin.php:444
msgid "Soapbox Account" msgid "Soapbox Account"
msgstr "" msgstr ""
#: ../../mod/settings.php:326 #: ../../mod/settings.php:387
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:327 #: ../../mod/settings.php:390 ../../mod/admin.php:135 ../../mod/admin.php:445
msgid "Community/Celebrity Account" msgid "Community/Celebrity Account"
msgstr "" msgstr ""
#: ../../mod/settings.php:328 #: ../../mod/settings.php:391
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:329 #: ../../mod/settings.php:394 ../../mod/admin.php:136 ../../mod/admin.php:446
msgid "Automatic Friend Account" msgid "Automatic Friend Account"
msgstr "" msgstr ""
#: ../../mod/settings.php:330 #: ../../mod/settings.php:395
msgid "Automatically approve all connection/friend requests as friends" msgid "Automatically approve all connection/friend requests as friends"
msgstr "" msgstr ""
#: ../../mod/settings.php:339 #: ../../mod/settings.php:405
msgid "OpenID: " msgid "OpenID:"
msgstr "" msgstr ""
#: ../../mod/settings.php:339 #: ../../mod/settings.php:405
msgid "&nbsp;(Optional) Allow this OpenID to login to this account." msgid "(Optional) Allow this OpenID to login to this account."
msgstr "" msgstr ""
#: ../../mod/settings.php:349 #: ../../mod/settings.php:415
msgid "Publish your default profile in site directory?" msgid "Publish your default profile in your local site directory?"
msgstr ""
#: ../../mod/settings.php:361
msgid "Publish your default profile in global social directory?"
msgstr ""
#: ../../mod/settings.php:377
msgid "Profile is <strong>not published</strong>."
msgstr ""
#: ../../mod/settings.php:398 ../../mod/profile_photo.php:196
msgid "or"
msgstr ""
#: ../../mod/settings.php:403
msgid "Your Identity Address is"
msgstr ""
#: ../../mod/settings.php:413
msgid "Export Personal Data"
msgstr ""
#: ../../mod/settings.php:419
msgid "Basic Settings"
msgstr ""
#: ../../mod/settings.php:420 ../../include/profile_advanced.php:10
msgid "Full Name:"
msgstr "" msgstr ""
#: ../../mod/settings.php:421 #: ../../mod/settings.php:421
msgid "Email Address:" msgid "Publish your default profile in the global social directory?"
msgstr ""
#: ../../mod/settings.php:422
msgid "Your Timezone:"
msgstr ""
#: ../../mod/settings.php:423
msgid "Default Post Location:"
msgstr ""
#: ../../mod/settings.php:424
msgid "Use Browser Location:"
msgstr ""
#: ../../mod/settings.php:425
msgid "Display Theme:"
msgstr ""
#: ../../mod/settings.php:427
msgid "Security and Privacy Settings"
msgstr ""
#: ../../mod/settings.php:428
msgid "Maximum Friend Requests/Day:"
msgstr "" msgstr ""
#: ../../mod/settings.php:429 #: ../../mod/settings.php:429
msgid "(to prevent spam abuse)" msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
#: ../../mod/settings.php:430
msgid "Allow friends to post to your profile page:"
msgstr ""
#: ../../mod/settings.php:431
msgid "Automatically expire (delete) posts older than"
msgstr ""
#: ../../mod/settings.php:432 ../../include/datetime.php:154
msgid "days"
msgstr "" msgstr ""
#: ../../mod/settings.php:433 #: ../../mod/settings.php:433
msgid "Notification Settings" msgid "Hide profile details and all your messages from unknown viewers?"
msgstr ""
#: ../../mod/settings.php:434
msgid "Send a notification email when:"
msgstr ""
#: ../../mod/settings.php:435
msgid "You receive an introduction"
msgstr ""
#: ../../mod/settings.php:436
msgid "Your introductions are confirmed"
msgstr ""
#: ../../mod/settings.php:437
msgid "Someone writes on your profile wall"
msgstr ""
#: ../../mod/settings.php:438
msgid "Someone writes a followup comment"
msgstr ""
#: ../../mod/settings.php:439
msgid "You receive a private message"
msgstr ""
#: ../../mod/settings.php:440
msgid "Password Settings"
msgstr ""
#: ../../mod/settings.php:441
msgid "Leave password fields blank unless changing"
msgstr "" msgstr ""
#: ../../mod/settings.php:442 #: ../../mod/settings.php:442
msgid "Profile is <strong>not published</strong>."
msgstr ""
#: ../../mod/settings.php:461 ../../mod/profile_photo.php:196
msgid "or"
msgstr ""
#: ../../mod/settings.php:466
msgid "Your Identity Address is"
msgstr ""
#: ../../mod/settings.php:480
msgid "Account Settings"
msgstr ""
#: ../../mod/settings.php:487
msgid "Export Personal Data"
msgstr ""
#: ../../mod/settings.php:490
msgid "Password Settings"
msgstr ""
#: ../../mod/settings.php:491
msgid "New Password:" msgid "New Password:"
msgstr "" msgstr ""
#: ../../mod/settings.php:443 #: ../../mod/settings.php:492
msgid "Confirm:" msgid "Confirm:"
msgstr "" msgstr ""
#: ../../mod/settings.php:444 #: ../../mod/settings.php:492
msgid "Advanced Page Settings" msgid "Leave password fields blank unless changing"
msgstr "" msgstr ""
#: ../../mod/settings.php:459 #: ../../mod/settings.php:496
msgid "Basic Settings"
msgstr ""
#: ../../mod/settings.php:497 ../../include/profile_advanced.php:10
msgid "Full Name:"
msgstr ""
#: ../../mod/settings.php:498
msgid "Email Address:"
msgstr ""
#: ../../mod/settings.php:499
msgid "Your Timezone:"
msgstr ""
#: ../../mod/settings.php:500
msgid "Default Post Location:"
msgstr ""
#: ../../mod/settings.php:501
msgid "Use Browser Location:"
msgstr ""
#: ../../mod/settings.php:502
msgid "Display Theme:"
msgstr ""
#: ../../mod/settings.php:506
msgid "Security and Privacy Settings"
msgstr ""
#: ../../mod/settings.php:508
msgid "Maximum Friend Requests/Day:"
msgstr ""
#: ../../mod/settings.php:508
msgid "(to prevent spam abuse)"
msgstr ""
#: ../../mod/settings.php:509
msgid "Default Post Permissions" msgid "Default Post Permissions"
msgstr "" msgstr ""
#: ../../mod/settings.php:460 #: ../../mod/settings.php:510
msgid "(click to open/close)" msgid "(click to open/close)"
msgstr "" msgstr ""
#: ../../mod/settings.php:473 #: ../../mod/settings.php:514
msgid "Allow friends to post to your profile page:"
msgstr ""
#: ../../mod/settings.php:515
msgid "Automatically expire posts after days:"
msgstr ""
#: ../../mod/settings.php:515
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
#: ../../mod/settings.php:524
msgid "Notification Settings"
msgstr ""
#: ../../mod/settings.php:525
msgid "Send a notification email when:"
msgstr ""
#: ../../mod/settings.php:526
msgid "You receive an introduction"
msgstr ""
#: ../../mod/settings.php:527
msgid "Your introductions are confirmed"
msgstr ""
#: ../../mod/settings.php:528
msgid "Someone writes on your profile wall"
msgstr ""
#: ../../mod/settings.php:529
msgid "Someone writes a followup comment"
msgstr ""
#: ../../mod/settings.php:530
msgid "You receive a private message"
msgstr ""
#: ../../mod/settings.php:534
msgid "Email/Mailbox Setup" msgid "Email/Mailbox Setup"
msgstr "" msgstr ""
#: ../../mod/settings.php:474 #: ../../mod/settings.php:535
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:475 #: ../../mod/settings.php:536
msgid "Last successful email check:"
msgstr ""
#: ../../mod/settings.php:537
msgid "Email access is disabled on this site."
msgstr ""
#: ../../mod/settings.php:538
msgid "IMAP server name:" msgid "IMAP server name:"
msgstr "" msgstr ""
#: ../../mod/settings.php:477 #: ../../mod/settings.php:539
msgid "IMAP port:" msgid "IMAP port:"
msgstr "" msgstr ""
#: ../../mod/settings.php:479 #: ../../mod/settings.php:540
msgid "Security (TLS or SSL):" msgid "Security:"
msgstr "" msgstr ""
#: ../../mod/settings.php:481 #: ../../mod/settings.php:540
msgid "None"
msgstr ""
#: ../../mod/settings.php:541
msgid "Email login name:" msgid "Email login name:"
msgstr "" msgstr ""
#: ../../mod/settings.php:483 #: ../../mod/settings.php:542
msgid "Email password:" msgid "Email password:"
msgstr "" msgstr ""
#: ../../mod/settings.php:484 #: ../../mod/settings.php:543
msgid "Reply-to address (Optional):" msgid "Reply-to address:"
msgstr "" msgstr ""
#: ../../mod/settings.php:486 #: ../../mod/settings.php:544
msgid "Send public posts to all email contacts:" msgid "Send public posts to all email contacts:"
msgstr "" msgstr ""
#: ../../mod/settings.php:488 #: ../../mod/settings.php:549
msgid "Email access is disabled on this site." msgid "Advanced Page Settings"
msgstr "" msgstr ""
#: ../../mod/manage.php:37 #: ../../mod/manage.php:37
@ -1449,15 +1644,23 @@ msgstr ""
msgid "Select an identity to manage: " msgid "Select an identity to manage: "
msgstr "" msgstr ""
#: ../../mod/network.php:18 #: ../../mod/network.php:27
msgid "Normal View" msgid "View Conversations"
msgstr "" msgstr ""
#: ../../mod/network.php:20 #: ../../mod/network.php:29
msgid "New Item View" msgid "View New Items"
msgstr "" msgstr ""
#: ../../mod/network.php:64 #: ../../mod/network.php:35
msgid "View Any Items"
msgstr ""
#: ../../mod/network.php:43
msgid "View Starred Items"
msgstr ""
#: ../../mod/network.php:94
#, 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 ""
@ -1465,54 +1668,131 @@ msgid_plural ""
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../mod/network.php:67 #: ../../mod/network.php:97
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:129 #: ../../mod/network.php:164
msgid "No such group" msgid "No such group"
msgstr "" msgstr ""
#: ../../mod/network.php:140 #: ../../mod/network.php:175
msgid "Group is empty" msgid "Group is empty"
msgstr "" msgstr ""
#: ../../mod/network.php:144 #: ../../mod/network.php:180
msgid "Group: " msgid "Group: "
msgstr "" msgstr ""
#: ../../mod/network.php:154 #: ../../mod/network.php:190
msgid "Contact: " msgid "Contact: "
msgstr "" msgstr ""
#: ../../mod/network.php:156 #: ../../mod/network.php:192
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:161 #: ../../mod/network.php:197
msgid "Invalid contact." msgid "Invalid contact."
msgstr "" msgstr ""
#: ../../mod/network.php:262 ../../mod/register.php:465 #: ../../mod/notes.php:74
#: ../../mod/profile.php:265 ../../mod/display.php:147
msgid ""
"Shared content is covered by the <a href=\"http://creativecommons.org/"
"licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."
msgstr ""
#: ../../mod/notes.php:41 ../../mod/apps.php:8
msgid "Private Notes"
msgstr ""
#: ../../mod/notes.php:60
msgid "Save" msgid "Save"
msgstr "" msgstr ""
#: ../../mod/attach.php:6 #: ../../mod/newmember.php:6
msgid "Welcome to Friendika"
msgstr ""
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr ""
#: ../../mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page."
msgstr ""
#: ../../mod/newmember.php:16
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This will be useful in making friends."
msgstr ""
#: ../../mod/newmember.php:18
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished "
"directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr ""
#: ../../mod/newmember.php:20
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make "
"friends than people who do not."
msgstr ""
#: ../../mod/newmember.php:23
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr ""
#: ../../mod/newmember.php:28
msgid ""
"Enter your email access information on your Settings page if you wish to "
"import and interact with friends or mailing lists from your email INBOX"
msgstr ""
#: ../../mod/newmember.php:30
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown "
"visitors."
msgstr ""
#: ../../mod/newmember.php:32
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr ""
#: ../../mod/newmember.php:34
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Connect</em> dialog."
msgstr ""
#: ../../mod/newmember.php:36
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr ""
#: ../../mod/newmember.php:38
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with "
"each group privately on your Network page."
msgstr ""
#: ../../mod/newmember.php:40
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program "
"features and resources."
msgstr ""
#: ../../mod/attach.php:8
msgid "Item not available." msgid "Item not available."
msgstr "" msgstr ""
#: ../../mod/attach.php:16 #: ../../mod/attach.php:20
msgid "Item was not found." msgid "Item was not found."
msgstr "" msgstr ""
@ -1524,7 +1804,7 @@ msgstr ""
msgid "Could not create group." msgid "Could not create group."
msgstr "" msgstr ""
#: ../../mod/group.php:43 ../../mod/group.php:115 #: ../../mod/group.php:43 ../../mod/group.php:123
msgid "Group not found." msgid "Group not found."
msgstr "" msgstr ""
@ -1532,64 +1812,59 @@ msgstr ""
msgid "Group name changed." msgid "Group name changed."
msgstr "" msgstr ""
#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:255 #: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:265
msgid "Permission denied" msgid "Permission denied"
msgstr "" msgstr ""
#: ../../mod/group.php:74 #: ../../mod/group.php:82
msgid "Create a group of contacts/friends." msgid "Create a group of contacts/friends."
msgstr "" msgstr ""
#: ../../mod/group.php:75 ../../mod/group.php:158 #: ../../mod/group.php:83 ../../mod/group.php:166
msgid "Group Name: " msgid "Group Name: "
msgstr "" msgstr ""
#: ../../mod/group.php:90 #: ../../mod/group.php:98
msgid "Group removed." msgid "Group removed."
msgstr "" msgstr ""
#: ../../mod/group.php:92 #: ../../mod/group.php:100
msgid "Unable to remove group." msgid "Unable to remove group."
msgstr "" msgstr ""
#: ../../mod/group.php:156 ../../mod/profperm.php:96 #: ../../mod/group.php:164 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove." msgid "Click on a contact to add or remove."
msgstr "" msgstr ""
#: ../../mod/group.php:157 #: ../../mod/group.php:165
msgid "Group Editor" msgid "Group Editor"
msgstr "" msgstr ""
#: ../../mod/group.php:172 #: ../../mod/group.php:180
msgid "Members" msgid "Members"
msgstr "" msgstr ""
#: ../../mod/group.php:186 #: ../../mod/group.php:195
msgid "All Contacts" msgid "All Contacts"
msgstr "" msgstr ""
#: ../../mod/profperm.php:25 ../../mod/profperm.php:46 #: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier." msgid "Invalid profile identifier."
msgstr "" msgstr ""
#: ../../mod/profperm.php:92 #: ../../mod/profperm.php:101
msgid "Profile Visibility Editor" msgid "Profile Visibility Editor"
msgstr "" msgstr ""
#: ../../mod/profperm.php:94 ../../mod/profile.php:116 #: ../../mod/profperm.php:114
#: ../../include/profile_advanced.php:7
msgid "Profile"
msgstr ""
#: ../../mod/profperm.php:105
msgid "Visible To" msgid "Visible To"
msgstr "" msgstr ""
#: ../../mod/profperm.php:116 #: ../../mod/profperm.php:128
msgid "All Contacts (with secure profile access)" msgid "All Contacts (with secure profile access)"
msgstr "" msgstr ""
#: ../../mod/viewcontacts.php:25 ../../boot.php:2059 #: ../../mod/viewcontacts.php:25 ../../include/text.php:548
msgid "View Contacts" msgid "View Contacts"
msgstr "" msgstr ""
@ -1597,272 +1872,280 @@ msgstr ""
msgid "No contacts." msgid "No contacts."
msgstr "" msgstr ""
#: ../../mod/register.php:49 #: ../../mod/register.php:53
msgid "An invitation is required."
msgstr ""
#: ../../mod/register.php:58
msgid "Invitation could not be verified."
msgstr ""
#: ../../mod/register.php:66
msgid "Invalid OpenID url" msgid "Invalid OpenID url"
msgstr "" msgstr ""
#: ../../mod/register.php:64 #: ../../mod/register.php:81
msgid "Please enter the required information." msgid "Please enter the required information."
msgstr "" msgstr ""
#: ../../mod/register.php:76 #: ../../mod/register.php:95
msgid "Please use a shorter name." msgid "Please use a shorter name."
msgstr "" msgstr ""
#: ../../mod/register.php:78 #: ../../mod/register.php:97
msgid "Name too short." msgid "Name too short."
msgstr "" msgstr ""
#: ../../mod/register.php:93 #: ../../mod/register.php:112
msgid "That doesn't appear to be your full (First Last) name." msgid "That doesn't appear to be your full (First Last) name."
msgstr "" msgstr ""
#: ../../mod/register.php:97 #: ../../mod/register.php:117
msgid "Your email domain is not among those allowed on this site." msgid "Your email domain is not among those allowed on this site."
msgstr "" msgstr ""
#: ../../mod/register.php:100 #: ../../mod/register.php:120
msgid "Not a valid email address." msgid "Not a valid email address."
msgstr "" msgstr ""
#: ../../mod/register.php:106 #: ../../mod/register.php:130
msgid "Cannot use that email." msgid "Cannot use that email."
msgstr "" msgstr ""
#: ../../mod/register.php:111 #: ../../mod/register.php:136
msgid "" msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " "Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter." "must also begin with a letter."
msgstr "" msgstr ""
#: ../../mod/register.php:117 ../../mod/register.php:217 #: ../../mod/register.php:142 ../../mod/register.php:243
msgid "Nickname is already registered. Please choose another." msgid "Nickname is already registered. Please choose another."
msgstr "" msgstr ""
#: ../../mod/register.php:136 #: ../../mod/register.php:161
msgid "SERIOUS ERROR: Generation of security keys failed." msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "" msgstr ""
#: ../../mod/register.php:203 #: ../../mod/register.php:229
msgid "An error occurred during registration. Please try again." msgid "An error occurred during registration. Please try again."
msgstr "" msgstr ""
#: ../../mod/register.php:239 #: ../../mod/register.php:265
msgid "An error occurred creating your default profile. Please try again." msgid "An error occurred creating your default profile. Please try again."
msgstr "" msgstr ""
#: ../../mod/register.php:333 ../../mod/regmod.php:96 #: ../../mod/register.php:367 ../../mod/regmod.php:52
#, php-format #, php-format
msgid "Registration details for %s" msgid "Registration details for %s"
msgstr "" msgstr ""
#: ../../mod/register.php:341 #: ../../mod/register.php:375
msgid "" msgid ""
"Registration successful. Please check your email for further instructions." "Registration successful. Please check your email for further instructions."
msgstr "" msgstr ""
#: ../../mod/register.php:345 #: ../../mod/register.php:379
msgid "Failed to send email message. Here is the message that failed." msgid "Failed to send email message. Here is the message that failed."
msgstr "" msgstr ""
#: ../../mod/register.php:350 #: ../../mod/register.php:384
msgid "Your registration can not be processed." msgid "Your registration can not be processed."
msgstr "" msgstr ""
#: ../../mod/register.php:383 #: ../../mod/register.php:421
#, php-format #, php-format
msgid "Registration request at %s" msgid "Registration request at %s"
msgstr "" msgstr ""
#: ../../mod/register.php:392 #: ../../mod/register.php:430
msgid "Your registration is pending approval by the site owner." msgid "Your registration is pending approval by the site owner."
msgstr "" msgstr ""
#: ../../mod/register.php:440 #: ../../mod/register.php:479
msgid "" msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID " "You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'." "and clicking 'Register'."
msgstr "" msgstr ""
#: ../../mod/register.php:441 #: ../../mod/register.php:480
msgid "" msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill " "If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items." "in the rest of the items."
msgstr "" msgstr ""
#: ../../mod/register.php:442 #: ../../mod/register.php:481
msgid "Your OpenID (optional): " msgid "Your OpenID (optional): "
msgstr "" msgstr ""
#: ../../mod/register.php:456 #: ../../mod/register.php:495
msgid "Include your profile in member directory?" msgid "Include your profile in member directory?"
msgstr "" msgstr ""
#: ../../mod/register.php:472 #: ../../mod/register.php:511
msgid "Membership on this site is by invitation only."
msgstr ""
#: ../../mod/register.php:512
msgid "Your invitation ID: "
msgstr ""
#: ../../mod/register.php:515 ../../mod/admin.php:299
msgid "Registration" msgid "Registration"
msgstr "" msgstr ""
#: ../../mod/register.php:480 #: ../../mod/register.php:523
msgid "Your Full Name (e.g. Joe Smith): " msgid "Your Full Name (e.g. Joe Smith): "
msgstr "" msgstr ""
#: ../../mod/register.php:481 #: ../../mod/register.php:524
msgid "Your Email Address: " msgid "Your Email Address: "
msgstr "" msgstr ""
#: ../../mod/register.php:482 #: ../../mod/register.php:525
msgid "" msgid ""
"Choose a profile nickname. This must begin with a text character. Your " "Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be '<strong>nickname@$sitename</" "profile address on this site will then be '<strong>nickname@$sitename</"
"strong>'." "strong>'."
msgstr "" msgstr ""
#: ../../mod/register.php:483 #: ../../mod/register.php:526
msgid "Choose a nickname: " msgid "Choose a nickname: "
msgstr "" msgstr ""
#: ../../mod/register.php:486 ../../include/nav.php:59 ../../boot.php:835 #: ../../mod/register.php:529 ../../include/nav.php:59 ../../boot.php:638
msgid "Register" msgid "Register"
msgstr "" msgstr ""
#: ../../mod/like.php:110 ../../addon/facebook/facebook.php:774 #: ../../mod/like.php:110 ../../addon/facebook/facebook.php:947
#: ../../include/conversation.php:20 #: ../../include/conversation.php:26 ../../include/conversation.php:35
msgid "status" msgid "status"
msgstr "" msgstr ""
#: ../../mod/like.php:127 ../../addon/facebook/facebook.php:778 #: ../../mod/like.php:127 ../../addon/facebook/facebook.php:951
#: ../../include/conversation.php:25 #: ../../include/conversation.php:43
#, php-format #, php-format
msgid "%1$s likes %2$s's %3$s" msgid "%1$s likes %2$s's %3$s"
msgstr "" msgstr ""
#: ../../mod/like.php:129 ../../include/conversation.php:28 #: ../../mod/like.php:129 ../../include/conversation.php:46
#, php-format #, php-format
msgid "%1$s doesn't like %2$s's %3$s" msgid "%1$s doesn't like %2$s's %3$s"
msgstr "" msgstr ""
#: ../../mod/friendika.php:43 #: ../../mod/friendika.php:42
msgid "This is Friendika version" msgid "This is Friendika version"
msgstr "" msgstr ""
#: ../../mod/friendika.php:44 #: ../../mod/friendika.php:43
msgid "running at web location" msgid "running at web location"
msgstr "" msgstr ""
#: ../../mod/friendika.php:46 #: ../../mod/friendika.php:45
msgid "" msgid ""
"Shared content within the Friendika network is provided under the <a href=" "Shared content within the Friendika network is provided under the <a href="
"\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution " "\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution "
"3.0 license</a>" "3.0 license</a>"
msgstr "" msgstr ""
#: ../../mod/friendika.php:48 #: ../../mod/friendika.php:47
msgid "" msgid ""
"Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</" "Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</"
"a> to learn more about the Friendika project." "a> to learn more about the Friendika project."
msgstr "" msgstr ""
#: ../../mod/friendika.php:50 #: ../../mod/friendika.php:49
msgid "Bug reports and issues: please visit" msgid "Bug reports and issues: please visit"
msgstr "" msgstr ""
#: ../../mod/friendika.php:51 #: ../../mod/friendika.php:50
msgid "" msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - " "Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - "
"dot com" "dot com"
msgstr "" msgstr ""
#: ../../mod/friendika.php:56 #: ../../mod/friendika.php:55
msgid "Installed plugins/addons/apps" msgid "Installed plugins/addons/apps"
msgstr "" msgstr ""
#: ../../mod/friendika.php:64 #: ../../mod/friendika.php:63
msgid "No installed plugins/addons/apps" msgid "No installed plugins/addons/apps"
msgstr "" msgstr ""
#: ../../mod/regmod.php:12 #: ../../mod/regmod.php:61
msgid "Please login." msgid "Account approved."
msgstr "" msgstr ""
#: ../../mod/regmod.php:56 #: ../../mod/regmod.php:93
#, php-format #, php-format
msgid "Registration revoked for %s" msgid "Registration revoked for %s"
msgstr "" msgstr ""
#: ../../mod/regmod.php:105 #: ../../mod/regmod.php:105
msgid "Account approved." msgid "Please login."
msgstr "" msgstr ""
#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41 #: ../../mod/item.php:81
msgid "[Embedded content - reload page to view]"
msgstr ""
#: ../../mod/item.php:37
msgid "Unable to locate original post." msgid "Unable to locate original post."
msgstr "" msgstr ""
#: ../../mod/item.php:128 #: ../../mod/item.php:182
msgid "Empty post discarded." msgid "Empty post discarded."
msgstr "" msgstr ""
#: ../../mod/item.php:214 ../../mod/message.php:93 #: ../../mod/item.php:282 ../../mod/message.php:93
#: ../../mod/wall_upload.php:79 ../../mod/wall_upload.php:88 #: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90
#: ../../mod/wall_upload.php:95 #: ../../mod/wall_upload.php:97
msgid "Wall Photos" msgid "Wall Photos"
msgstr "" msgstr ""
#: ../../mod/item.php:517 ../../mod/item.php:560 ../../mod/item.php:583 #: ../../mod/item.php:605 ../../mod/item.php:650 ../../mod/item.php:673
#: ../../mod/item.php:624 ../../mod/dfrn_notify.php:193 #: ../../mod/item.php:716 ../../mod/dfrn_notify.php:293
#: ../../mod/dfrn_notify.php:401 ../../mod/dfrn_notify.php:444 #: ../../mod/dfrn_notify.php:503 ../../mod/dfrn_notify.php:548
#: ../../mod/dfrn_notify.php:530 ../../mod/dfrn_notify.php:571 #: ../../mod/dfrn_notify.php:634 ../../mod/dfrn_notify.php:677
msgid "noreply" msgid "noreply"
msgstr "" msgstr ""
#: ../../mod/item.php:559 ../../mod/item.php:623 ../../mod/dfrn_notify.php:570 #: ../../mod/item.php:649 ../../mod/item.php:715 ../../mod/dfrn_notify.php:676
msgid "Administrator@" msgid "Administrator@"
msgstr "" msgstr ""
#: ../../mod/item.php:562 ../../mod/dfrn_notify.php:446 #: ../../mod/item.php:652 ../../mod/dfrn_notify.php:550
#: ../../mod/dfrn_notify.php:573 #: ../../mod/dfrn_notify.php:679
#, php-format #, php-format
msgid "%s commented on an item at %s" msgid "%s commented on an item at %s"
msgstr "" msgstr ""
#: ../../mod/item.php:626 #: ../../mod/item.php:718
#, php-format #, php-format
msgid "%s posted to your profile wall at %s" msgid "%s posted to your profile wall at %s"
msgstr "" msgstr ""
#: ../../mod/item.php:655 #: ../../mod/item.php:747
msgid "System error. Post not saved." msgid "System error. Post not saved."
msgstr "" msgstr ""
#: ../../mod/item.php:674 #: ../../mod/item.php:766
#, php-format #, php-format
msgid "" msgid ""
"This message was sent to you by %s, a member of the Friendika social network." "This message was sent to you by %s, a member of the Friendika social network."
msgstr "" msgstr ""
#: ../../mod/item.php:676 #: ../../mod/item.php:768
#, php-format #, php-format
msgid "You may visit them online at %s" msgid "You may visit them online at %s"
msgstr "" msgstr ""
#: ../../mod/item.php:677 #: ../../mod/item.php:769
msgid "" msgid ""
"Please contact the sender by replying to this post if you do not wish to " "Please contact the sender by replying to this post if you do not wish to "
"receive these messages." "receive these messages."
msgstr "" msgstr ""
#: ../../mod/item.php:679 #: ../../mod/item.php:771
#, php-format #, php-format
msgid "%s posted an update." msgid "%s posted an update."
msgstr "" msgstr ""
#: ../../mod/item.php:730 ../../mod/display.php:25 ../../mod/display.php:142
msgid "Item not found."
msgstr ""
#: ../../mod/profile_photo.php:28 #: ../../mod/profile_photo.php:28
msgid "Image uploaded but image cropping failed." msgid "Image uploaded but image cropping failed."
msgstr "" msgstr ""
@ -1952,7 +2235,7 @@ msgstr ""
msgid "Message could not be sent." msgid "Message could not be sent."
msgstr "" msgstr ""
#: ../../mod/message.php:125 ../../include/nav.php:101 #: ../../mod/message.php:125 ../../include/nav.php:102
msgid "Messages" msgid "Messages"
msgstr "" msgstr ""
@ -1976,7 +2259,7 @@ msgstr ""
msgid "Conversation removed." msgid "Conversation removed."
msgstr "" msgstr ""
#: ../../mod/message.php:172 ../../include/conversation.php:684 #: ../../mod/message.php:172 ../../include/conversation.php:696
msgid "Please enter a link URL:" msgid "Please enter a link URL:"
msgstr "" msgstr ""
@ -1992,7 +2275,8 @@ msgstr ""
msgid "Subject:" msgid "Subject:"
msgstr "" msgstr ""
#: ../../mod/message.php:185 ../../mod/message.php:319 ../../mod/invite.php:63 #: ../../mod/message.php:185 ../../mod/message.php:319
#: ../../mod/invite.php:101
msgid "Your message:" msgid "Your message:"
msgstr "" msgstr ""
@ -2020,74 +2304,416 @@ msgstr ""
msgid "Send Reply" msgid "Send Reply"
msgstr "" msgstr ""
#: ../../mod/profile.php:11 ../../boot.php:2270 #: ../../mod/admin.php:66 ../../mod/admin.php:297
msgid "Site"
msgstr ""
#: ../../mod/admin.php:67 ../../mod/admin.php:460 ../../mod/admin.php:472
msgid "Users"
msgstr ""
#: ../../mod/admin.php:68 ../../mod/admin.php:549 ../../mod/admin.php:586
msgid "Plugins"
msgstr ""
#: ../../mod/admin.php:69
msgid "Update"
msgstr ""
#: ../../mod/admin.php:83 ../../mod/admin.php:651
msgid "Logs"
msgstr ""
#: ../../mod/admin.php:88
msgid "User registrations waiting for confirmation"
msgstr ""
#: ../../mod/admin.php:118 ../../mod/admin.php:502 ../../mod/display.php:25
#: ../../mod/display.php:112 ../../include/items.php:1828
msgid "Item not found."
msgstr ""
#: ../../mod/admin.php:151 ../../mod/admin.php:296 ../../mod/admin.php:459
#: ../../mod/admin.php:548 ../../mod/admin.php:585 ../../mod/admin.php:650
msgid "Administration"
msgstr ""
#: ../../mod/admin.php:152
msgid "Summary"
msgstr ""
#: ../../mod/admin.php:153
msgid "Registered users"
msgstr ""
#: ../../mod/admin.php:155
msgid "Pending registrations"
msgstr ""
#: ../../mod/admin.php:156
msgid "Version"
msgstr ""
#: ../../mod/admin.php:158
msgid "Active plugins"
msgstr ""
#: ../../mod/admin.php:245
msgid "Site settings updated."
msgstr ""
#: ../../mod/admin.php:289
msgid "Closed"
msgstr ""
#: ../../mod/admin.php:290
msgid "Requires approval"
msgstr ""
#: ../../mod/admin.php:291
msgid "Open"
msgstr ""
#: ../../mod/admin.php:300
msgid "File upload"
msgstr ""
#: ../../mod/admin.php:301
msgid "Policies"
msgstr ""
#: ../../mod/admin.php:302
msgid "Advanced"
msgstr ""
#: ../../mod/admin.php:306
msgid "Site name"
msgstr ""
#: ../../mod/admin.php:307
msgid "Banner/Logo"
msgstr ""
#: ../../mod/admin.php:308
msgid "System language"
msgstr ""
#: ../../mod/admin.php:309
msgid "System theme"
msgstr ""
#: ../../mod/admin.php:311
msgid "Maximum image size"
msgstr ""
#: ../../mod/admin.php:313
msgid "Register policy"
msgstr ""
#: ../../mod/admin.php:314
msgid "Register text"
msgstr ""
#: ../../mod/admin.php:315
msgid "Allowed friend domains"
msgstr ""
#: ../../mod/admin.php:316
msgid "Allowed email domains"
msgstr ""
#: ../../mod/admin.php:317
msgid "Block public"
msgstr ""
#: ../../mod/admin.php:318
msgid "Force publish"
msgstr ""
#: ../../mod/admin.php:319
msgid "Global directory update URL"
msgstr ""
#: ../../mod/admin.php:321
msgid "Block multiple registrations"
msgstr ""
#: ../../mod/admin.php:322
msgid "OpenID support"
msgstr ""
#: ../../mod/admin.php:323
msgid "Gravatar support"
msgstr ""
#: ../../mod/admin.php:324
msgid "Fullname check"
msgstr ""
#: ../../mod/admin.php:325
msgid "UTF-8 Regular expressions"
msgstr ""
#: ../../mod/admin.php:326
msgid "Show Community Page"
msgstr ""
#: ../../mod/admin.php:327
msgid "Enable OStatus support"
msgstr ""
#: ../../mod/admin.php:328
msgid "Only allow Friendika contacts"
msgstr ""
#: ../../mod/admin.php:329
msgid "Verify SSL"
msgstr ""
#: ../../mod/admin.php:330
msgid "Proxy user"
msgstr ""
#: ../../mod/admin.php:331
msgid "Proxy URL"
msgstr ""
#: ../../mod/admin.php:332
msgid "Network timeout"
msgstr ""
#: ../../mod/admin.php:353
#, php-format
msgid "%s user blocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/admin.php:360
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
#: ../../mod/admin.php:394
#, php-format
msgid "User '%s' deleted"
msgstr ""
#: ../../mod/admin.php:401
#, php-format
msgid "User '%s' unblocked"
msgstr ""
#: ../../mod/admin.php:401
#, php-format
msgid "User '%s' blocked"
msgstr ""
#: ../../mod/admin.php:462
msgid "select all"
msgstr ""
#: ../../mod/admin.php:463
msgid "User registrations waiting for confirm"
msgstr ""
#: ../../mod/admin.php:464
msgid "Request date"
msgstr ""
#: ../../mod/admin.php:464 ../../mod/admin.php:473
msgid "Email"
msgstr ""
#: ../../mod/admin.php:465
msgid "No registrations."
msgstr ""
#: ../../mod/admin.php:467
msgid "Deny"
msgstr ""
#: ../../mod/admin.php:469
msgid "Block"
msgstr ""
#: ../../mod/admin.php:470
msgid "Unblock"
msgstr ""
#: ../../mod/admin.php:473
msgid "Register date"
msgstr ""
#: ../../mod/admin.php:473
msgid "Last login"
msgstr ""
#: ../../mod/admin.php:473
msgid "Last item"
msgstr ""
#: ../../mod/admin.php:473
msgid "Account"
msgstr ""
#: ../../mod/admin.php:475
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
#: ../../mod/admin.php:476
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
#: ../../mod/admin.php:512
#, php-format
msgid "Plugin %s disabled."
msgstr ""
#: ../../mod/admin.php:516
#, php-format
msgid "Plugin %s enabled."
msgstr ""
#: ../../mod/admin.php:526
msgid "Disable"
msgstr ""
#: ../../mod/admin.php:528
msgid "Enable"
msgstr ""
#: ../../mod/admin.php:550
msgid "Toggle"
msgstr ""
#: ../../mod/admin.php:551 ../../include/nav.php:108
msgid "Settings"
msgstr ""
#: ../../mod/admin.php:613
msgid "Log settings updated."
msgstr ""
#: ../../mod/admin.php:653
msgid "Clear"
msgstr ""
#: ../../mod/admin.php:659
msgid "Debugging"
msgstr ""
#: ../../mod/admin.php:660
msgid "Log file"
msgstr ""
#: ../../mod/admin.php:660
msgid "Must be writable by web server. Relative to your Friendika index.php."
msgstr ""
#: ../../mod/admin.php:661
msgid "Log level"
msgstr ""
#: ../../mod/admin.php:702
msgid "Close"
msgstr ""
#: ../../mod/admin.php:708
msgid "FTP Host"
msgstr ""
#: ../../mod/admin.php:709
msgid "FTP Path"
msgstr ""
#: ../../mod/admin.php:710
msgid "FTP User"
msgstr ""
#: ../../mod/admin.php:711
msgid "FTP Password"
msgstr ""
#: ../../mod/profile.php:11 ../../boot.php:793
msgid "No profile" msgid "No profile"
msgstr "" msgstr ""
#: ../../mod/profile.php:59 #: ../../mod/profile.php:102 ../../mod/display.php:63
msgid "Access to this profile has been restricted." msgid "Access to this profile has been restricted."
msgstr "" msgstr ""
#: ../../mod/profile.php:115 #: ../../mod/profile.php:133
msgid "Status" msgid "Tips for New Members"
msgstr "" msgstr ""
#: ../../mod/profile.php:117 #: ../../mod/openid.php:62 ../../mod/openid.php:122 ../../include/auth.php:120
msgid "Photos" #: ../../include/auth.php:145 ../../include/auth.php:198
msgstr ""
#: ../../mod/openid.php:62 ../../mod/openid.php:122 ../../include/auth.php:114
#: ../../include/auth.php:139 ../../include/auth.php:192
msgid "Login failed." msgid "Login failed."
msgstr "" msgstr ""
#: ../../mod/openid.php:78 ../../include/auth.php:208 #: ../../mod/openid.php:78 ../../include/auth.php:214
msgid "Welcome " msgid "Welcome "
msgstr "" msgstr ""
#: ../../mod/openid.php:79 ../../include/auth.php:209 #: ../../mod/openid.php:79 ../../include/auth.php:215
msgid "Please upload a profile photo." msgid "Please upload a profile photo."
msgstr "" msgstr ""
#: ../../mod/openid.php:82 ../../include/auth.php:212 #: ../../mod/openid.php:82 ../../include/auth.php:218
msgid "Welcome back " msgid "Welcome back "
msgstr "" msgstr ""
#: ../../mod/follow.php:43 #: ../../mod/follow.php:39
msgid "The profile address specified does not provide adequate information." msgid ""
"This site is not configured to allow communications with other networks."
msgstr "" msgstr ""
#: ../../mod/follow.php:45 #: ../../mod/follow.php:40 ../../mod/follow.php:50
msgid "No compatible communication protocols or feeds were discovered." msgid "No compatible communication protocols or feeds were discovered."
msgstr "" msgstr ""
#: ../../mod/follow.php:47 #: ../../mod/follow.php:48
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: ../../mod/follow.php:52
msgid "An author or name was not found." msgid "An author or name was not found."
msgstr "" msgstr ""
#: ../../mod/follow.php:49 #: ../../mod/follow.php:54
msgid "No browser URL could be matched to this address." msgid "No browser URL could be matched to this address."
msgstr "" msgstr ""
#: ../../mod/follow.php:57 #: ../../mod/follow.php:61
msgid "Communication options with this network have been restricted."
msgstr ""
#: ../../mod/follow.php:66
msgid "" msgid ""
"Limited profile. This person will be unable to receive direct/personal " "Limited profile. This person will be unable to receive direct/personal "
"notifications from you." "notifications from you."
msgstr "" msgstr ""
#: ../../mod/follow.php:112 #: ../../mod/follow.php:121
msgid "Unable to retrieve contact information." msgid "Unable to retrieve contact information."
msgstr "" msgstr ""
#: ../../mod/follow.php:158 #: ../../mod/follow.php:167
msgid "following" msgid "following"
msgstr "" msgstr ""
#: ../../mod/display.php:135 #: ../../mod/display.php:105
msgid "Item has been removed." msgid "Item has been removed."
msgstr "" msgstr ""
#: ../../mod/dfrn_notify.php:251 #: ../../mod/dfrn_notify.php:353
msgid "New mail received at " msgid "New mail received at "
msgstr "" msgstr ""
@ -2095,16 +2721,16 @@ msgstr ""
msgid "Applications" msgid "Applications"
msgstr "" msgstr ""
#: ../../mod/search.php:26 ../../include/nav.php:70 ../../boot.php:2114 #: ../../mod/apps.php:11
msgid "No installed applications."
msgstr ""
#: ../../mod/search.php:26 ../../include/text.php:603 ../../include/nav.php:69
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: ../../mod/search.php:69 #: ../../mod/profiles.php:21 ../../mod/profiles.php:236
msgid "No results." #: ../../mod/profiles.php:341 ../../mod/dfrn_confirm.php:62
msgstr ""
#: ../../mod/profiles.php:21 ../../mod/profiles.php:240
#: ../../mod/profiles.php:345 ../../mod/dfrn_confirm.php:62
msgid "Profile not found." msgid "Profile not found."
msgstr "" msgstr ""
@ -2112,213 +2738,210 @@ msgstr ""
msgid "Profile Name is required." msgid "Profile Name is required."
msgstr "" msgstr ""
#: ../../mod/profiles.php:202 #: ../../mod/profiles.php:198
msgid "Profile updated." msgid "Profile updated."
msgstr "" msgstr ""
#: ../../mod/profiles.php:257 #: ../../mod/profiles.php:253
msgid "Profile deleted." msgid "Profile deleted."
msgstr "" msgstr ""
#: ../../mod/profiles.php:273 ../../mod/profiles.php:304 #: ../../mod/profiles.php:269 ../../mod/profiles.php:300
msgid "Profile-" msgid "Profile-"
msgstr "" msgstr ""
#: ../../mod/profiles.php:292 ../../mod/profiles.php:331 #: ../../mod/profiles.php:288 ../../mod/profiles.php:327
msgid "New profile created." msgid "New profile created."
msgstr "" msgstr ""
#: ../../mod/profiles.php:310 #: ../../mod/profiles.php:306
msgid "Profile unavailable to clone." msgid "Profile unavailable to clone."
msgstr "" msgstr ""
#: ../../mod/profiles.php:357 #: ../../mod/profiles.php:353
msgid "Hide your contact/friend list from viewers of this profile?" msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "" msgstr ""
#: ../../mod/profiles.php:366 #: ../../mod/profiles.php:371
msgid "Hide profile details and all your messages from unknown viewers?"
msgstr ""
#: ../../mod/profiles.php:382
msgid "Edit Profile Details" msgid "Edit Profile Details"
msgstr "" msgstr ""
#: ../../mod/profiles.php:384 #: ../../mod/profiles.php:373
msgid "View this profile" msgid "View this profile"
msgstr "" msgstr ""
#: ../../mod/profiles.php:385 #: ../../mod/profiles.php:374
msgid "Create a new profile using these settings" msgid "Create a new profile using these settings"
msgstr "" msgstr ""
#: ../../mod/profiles.php:386 #: ../../mod/profiles.php:375
msgid "Clone this profile" msgid "Clone this profile"
msgstr "" msgstr ""
#: ../../mod/profiles.php:387 #: ../../mod/profiles.php:376
msgid "Delete this profile" msgid "Delete this profile"
msgstr "" msgstr ""
#: ../../mod/profiles.php:388 #: ../../mod/profiles.php:377
msgid "Profile Name:" msgid "Profile Name:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:389 #: ../../mod/profiles.php:378
msgid "Your Full Name:" msgid "Your Full Name:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:390 #: ../../mod/profiles.php:379
msgid "Title/Description:" msgid "Title/Description:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:391 #: ../../mod/profiles.php:380
msgid "Your Gender:" msgid "Your Gender:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:392 #: ../../mod/profiles.php:381
msgid "Birthday (y/m/d):" #, php-format
msgid "Birthday (%s):"
msgstr "" msgstr ""
#: ../../mod/profiles.php:393 #: ../../mod/profiles.php:382
msgid "Street Address:" msgid "Street Address:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:394 #: ../../mod/profiles.php:383
msgid "Locality/City:" msgid "Locality/City:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:395 #: ../../mod/profiles.php:384
msgid "Postal/Zip Code:" msgid "Postal/Zip Code:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:396 #: ../../mod/profiles.php:385
msgid "Country:" msgid "Country:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:397 #: ../../mod/profiles.php:386
msgid "Region/State:" msgid "Region/State:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:398 #: ../../mod/profiles.php:387
msgid "<span class=\"heart\">&hearts;</span> Marital Status:" msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:399 #: ../../mod/profiles.php:388
msgid "Who: (if applicable)" msgid "Who: (if applicable)"
msgstr "" msgstr ""
#: ../../mod/profiles.php:400 #: ../../mod/profiles.php:389
msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "" msgstr ""
#: ../../mod/profiles.php:401 ../../include/profile_advanced.php:90 #: ../../mod/profiles.php:390 ../../include/profile_advanced.php:90
msgid "Sexual Preference:" msgid "Sexual Preference:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:402 #: ../../mod/profiles.php:391
msgid "Homepage URL:" msgid "Homepage URL:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:403 ../../include/profile_advanced.php:115 #: ../../mod/profiles.php:392 ../../include/profile_advanced.php:115
msgid "Political Views:" msgid "Political Views:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:404 #: ../../mod/profiles.php:393
msgid "Religious Views:" msgid "Religious Views:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:405 #: ../../mod/profiles.php:394
msgid "Public Keywords:" msgid "Public Keywords:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:406 #: ../../mod/profiles.php:395
msgid "Private Keywords:" msgid "Private Keywords:"
msgstr "" msgstr ""
#: ../../mod/profiles.php:407 #: ../../mod/profiles.php:396
msgid "Example: fishing photography software" msgid "Example: fishing photography software"
msgstr "" msgstr ""
#: ../../mod/profiles.php:408 #: ../../mod/profiles.php:397
msgid "(Used for suggesting potential friends, can be seen by others)" msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "" msgstr ""
#: ../../mod/profiles.php:409 #: ../../mod/profiles.php:398
msgid "(Used for searching profiles, never shown to others)" msgid "(Used for searching profiles, never shown to others)"
msgstr "" msgstr ""
#: ../../mod/profiles.php:410 #: ../../mod/profiles.php:399
msgid "Tell us about yourself..." msgid "Tell us about yourself..."
msgstr "" msgstr ""
#: ../../mod/profiles.php:411 #: ../../mod/profiles.php:400
msgid "Hobbies/Interests" msgid "Hobbies/Interests"
msgstr "" msgstr ""
#: ../../mod/profiles.php:412 #: ../../mod/profiles.php:401
msgid "Contact information and Social Networks" msgid "Contact information and Social Networks"
msgstr "" msgstr ""
#: ../../mod/profiles.php:413 #: ../../mod/profiles.php:402
msgid "Musical interests" msgid "Musical interests"
msgstr "" msgstr ""
#: ../../mod/profiles.php:414 #: ../../mod/profiles.php:403
msgid "Books, literature" msgid "Books, literature"
msgstr "" msgstr ""
#: ../../mod/profiles.php:415 #: ../../mod/profiles.php:404
msgid "Television" msgid "Television"
msgstr "" msgstr ""
#: ../../mod/profiles.php:416 #: ../../mod/profiles.php:405
msgid "Film/dance/culture/entertainment" msgid "Film/dance/culture/entertainment"
msgstr "" msgstr ""
#: ../../mod/profiles.php:417 #: ../../mod/profiles.php:406
msgid "Love/romance" msgid "Love/romance"
msgstr "" msgstr ""
#: ../../mod/profiles.php:418 #: ../../mod/profiles.php:407
msgid "Work/employment" msgid "Work/employment"
msgstr "" msgstr ""
#: ../../mod/profiles.php:419 #: ../../mod/profiles.php:408
msgid "School/education" msgid "School/education"
msgstr "" msgstr ""
#: ../../mod/profiles.php:424 #: ../../mod/profiles.php:413
msgid "" msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> " "This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet." "be visible to anybody using the internet."
msgstr "" msgstr ""
#: ../../mod/profiles.php:435 ../../mod/directory.php:112 #: ../../mod/profiles.php:423 ../../mod/directory.php:112
msgid "Age: " msgid "Age: "
msgstr "" msgstr ""
#: ../../mod/profiles.php:470 ../../include/nav.php:108 #: ../../mod/profiles.php:458 ../../include/nav.php:109
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: ../../mod/profiles.php:471 #: ../../mod/profiles.php:459
msgid "Change profile photo" msgid "Change profile photo"
msgstr "" msgstr ""
#: ../../mod/profiles.php:472 #: ../../mod/profiles.php:460
msgid "Create New Profile" msgid "Create New Profile"
msgstr "" msgstr ""
#: ../../mod/profiles.php:482 #: ../../mod/profiles.php:470
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: ../../mod/profiles.php:484 #: ../../mod/profiles.php:472
msgid "Visible to everybody" msgid "visible to everybody"
msgstr "" msgstr ""
#: ../../mod/profiles.php:485 #: ../../mod/profiles.php:473
msgid "Edit visibility" msgid "Edit visibility"
msgstr "" msgstr ""
@ -2346,46 +2969,54 @@ msgstr ""
msgid "No entries (some entries may be hidden)." msgid "No entries (some entries may be hidden)."
msgstr "" msgstr ""
#: ../../mod/invite.php:28 #: ../../mod/invite.php:35
#, php-format #, php-format
msgid "%s : Not a valid email address." msgid "%s : Not a valid email address."
msgstr "" msgstr ""
#: ../../mod/invite.php:32 #: ../../mod/invite.php:59
#, php-format #, php-format
msgid "Please join my network on %s" msgid "Please join my network on %s"
msgstr "" msgstr ""
#: ../../mod/invite.php:42 #: ../../mod/invite.php:69
#, php-format #, php-format
msgid "%s : Message delivery failed." msgid "%s : Message delivery failed."
msgstr "" msgstr ""
#: ../../mod/invite.php:46 #: ../../mod/invite.php:73
#, php-format #, php-format
msgid "%d message sent." msgid "%d message sent."
msgid_plural "%d messages sent." msgid_plural "%d messages sent."
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../mod/invite.php:61 #: ../../mod/invite.php:92
msgid "You have no more invitations available"
msgstr ""
#: ../../mod/invite.php:99
msgid "Send invitations" msgid "Send invitations"
msgstr "" msgstr ""
#: ../../mod/invite.php:62 #: ../../mod/invite.php:100
msgid "Enter email addresses, one per line:" msgid "Enter email addresses, one per line:"
msgstr "" msgstr ""
#: ../../mod/invite.php:64 #: ../../mod/invite.php:102
#, php-format #, php-format
msgid "Please join my social network on %s" msgid "Please join my social network on %s"
msgstr "" msgstr ""
#: ../../mod/invite.php:65 #: ../../mod/invite.php:103
msgid "To accept this invitation, please visit:" msgid "To accept this invitation, please visit:"
msgstr "" msgstr ""
#: ../../mod/invite.php:66 #: ../../mod/invite.php:104
msgid "You will need to supply this invitation code: $invite_code"
msgstr ""
#: ../../mod/invite.php:104
msgid "" msgid ""
"Once you have registered, please connect with me via my profile page at:" "Once you have registered, please connect with me via my profile page at:"
msgstr "" msgstr ""
@ -2419,7 +3050,7 @@ msgstr ""
msgid "Unable to set contact photo." msgid "Unable to set contact photo."
msgstr "" msgstr ""
#: ../../mod/dfrn_confirm.php:430 ../../include/conversation.php:61 #: ../../mod/dfrn_confirm.php:430 ../../include/conversation.php:79
#, php-format #, php-format
msgid "%1$s is now friends with %2$s" msgid "%1$s is now friends with %2$s"
msgstr "" msgstr ""
@ -2460,225 +3091,273 @@ msgstr ""
msgid "Connection accepted at %s" msgid "Connection accepted at %s"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:248 #: ../../addon/facebook/facebook.php:314
msgid "Facebook disabled" msgid "Facebook disabled"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:253 #: ../../addon/facebook/facebook.php:319
msgid "Updating contacts" msgid "Updating contacts"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:262 #: ../../addon/facebook/facebook.php:328
msgid "Facebook API key is missing." msgid "Facebook API key is missing."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:269 #: ../../addon/facebook/facebook.php:335
msgid "Facebook Connect" msgid "Facebook Connect"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:275 #: ../../addon/facebook/facebook.php:341
msgid "Install Facebook connector for this account." msgid "Install Facebook connector for this account."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:282 #: ../../addon/facebook/facebook.php:348
msgid "Remove Facebook connector" msgid "Remove Facebook connector"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:288 #: ../../addon/facebook/facebook.php:354
msgid "Post to Facebook by default" msgid "Post to Facebook by default"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:350 #: ../../addon/facebook/facebook.php:358
msgid "Link all your Facebook friends and conversations"
msgstr ""
#: ../../addon/facebook/facebook.php:363
msgid "Warning: Your Facebook privacy settings can not be imported."
msgstr ""
#: ../../addon/facebook/facebook.php:364
msgid ""
"Linked Facebook items <strong>may</strong> be publicly visible, depending on "
"your privacy settings for this website/account."
msgstr ""
#: ../../addon/facebook/facebook.php:419
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:351 #: ../../addon/facebook/facebook.php:420
msgid "Facebook Connector Settings" msgid "Facebook Connector Settings"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:365 #: ../../addon/facebook/facebook.php:434
msgid "Post to Facebook" msgid "Post to Facebook"
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:434 #: ../../addon/facebook/facebook.php:507
msgid "" msgid ""
"Post to Facebook cancelled because of multi-network access permission " "Post to Facebook cancelled because of multi-network access permission "
"conflict." "conflict."
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:500 #: ../../addon/facebook/facebook.php:573
msgid "Image: " msgid "Image: "
msgstr "" msgstr ""
#: ../../addon/facebook/facebook.php:576 #: ../../addon/facebook/facebook.php:649
msgid "View on Friendika" msgid "View on Friendika"
msgstr "" msgstr ""
#: ../../addon/widgets/widgets.php:41 #: ../../addon/facebook/facebook.php:680
msgid "Widgets key: " msgid "Facebook post failed. Queued for retry."
msgstr "" msgstr ""
#: ../../addon/widgets/widgets.php:45 #: ../../addon/widgets/widgets.php:53
msgid "Generate new key" msgid "Generate new key"
msgstr "" msgstr ""
#: ../../addon/widgets/widgets.php:56
msgid "Widgets key"
msgstr ""
#: ../../addon/widgets/widgets.php:58
msgid "Widgets available"
msgstr ""
#: ../../addon/widgets/widget_friends.php:30 #: ../../addon/widgets/widget_friends.php:30
msgid "Connect on Friendika!" msgid "Connect on Friendika!"
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:14 #: ../../addon/tictac/tictac.php:20
msgid "Three Dimensional Tic-Tac-Toe" msgid "Three Dimensional Tic-Tac-Toe"
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:47 #: ../../addon/tictac/tictac.php:53
msgid "3D Tic-Tac-Toe" msgid "3D Tic-Tac-Toe"
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:52 #: ../../addon/tictac/tictac.php:58
msgid "New game" msgid "New game"
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:53 #: ../../addon/tictac/tictac.php:59
msgid "New game with handicap" msgid "New game with handicap"
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:54 #: ../../addon/tictac/tictac.php:60
msgid "" msgid ""
"Three dimensional tic-tac-toe is just like the traditional game except that " "Three dimensional tic-tac-toe is just like the traditional game except that "
"it is played on multiple levels simultaneously. " "it is played on multiple levels simultaneously. "
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:55 #: ../../addon/tictac/tictac.php:61
msgid "" msgid ""
"In this case there are three levels. You win by getting three in a row on " "In this case there are three levels. You win by getting three in a row on "
"any level, as well as up, down, and diagonally across the different levels." "any level, as well as up, down, and diagonally across the different levels."
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:57 #: ../../addon/tictac/tictac.php:63
msgid "" msgid ""
"The handicap game disables the center position on the middle level because " "The handicap game disables the center position on the middle level because "
"the player claiming this square often has an unfair advantage." "the player claiming this square often has an unfair advantage."
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:176 #: ../../addon/tictac/tictac.php:182
msgid "You go first..." msgid "You go first..."
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:181 #: ../../addon/tictac/tictac.php:187
msgid "I'm going first this time..." msgid "I'm going first this time..."
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:187 #: ../../addon/tictac/tictac.php:193
msgid "You won!" msgid "You won!"
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:193 ../../addon/tictac/tictac.php:218 #: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
msgid "\"Cat\" game!" msgid "\"Cat\" game!"
msgstr "" msgstr ""
#: ../../addon/tictac/tictac.php:216 #: ../../addon/tictac/tictac.php:222
msgid "I won!" msgid "I won!"
msgstr "" msgstr ""
#: ../../addon/randplace/randplace.php:171 #: ../../addon/randplace/randplace.php:170
msgid "Randplace Settings" msgid "Randplace Settings"
msgstr "" msgstr ""
#: ../../addon/randplace/randplace.php:173 #: ../../addon/randplace/randplace.php:172
msgid "Enable Randplace Plugin" msgid "Enable Randplace Plugin"
msgstr "" msgstr ""
#: ../../addon/java_upload/java_upload.php:33 #: ../../addon/js_upload/js_upload.php:43
msgid "Select files to upload: "
msgstr ""
#: ../../addon/java_upload/java_upload.php:35
msgid ""
"Use the following controls only if the Java uploader [above] fails to launch."
msgstr ""
#: ../../addon/js_upload/js_upload.php:39
msgid "Upload a file" msgid "Upload a file"
msgstr "" msgstr ""
#: ../../addon/js_upload/js_upload.php:40 #: ../../addon/js_upload/js_upload.php:44
msgid "Drop files here to upload" msgid "Drop files here to upload"
msgstr "" msgstr ""
#: ../../addon/js_upload/js_upload.php:42 #: ../../addon/js_upload/js_upload.php:46
msgid "Failed" msgid "Failed"
msgstr "" msgstr ""
#: ../../addon/js_upload/js_upload.php:288 #: ../../addon/js_upload/js_upload.php:292
msgid "No files were uploaded." msgid "No files were uploaded."
msgstr "" msgstr ""
#: ../../addon/js_upload/js_upload.php:294 #: ../../addon/js_upload/js_upload.php:298
msgid "Uploaded file is empty" msgid "Uploaded file is empty"
msgstr "" msgstr ""
#: ../../addon/js_upload/js_upload.php:299 #: ../../addon/js_upload/js_upload.php:303
msgid "Uploaded file is too large" msgid "Uploaded file is too large"
msgstr "" msgstr ""
#: ../../addon/js_upload/js_upload.php:317 #: ../../addon/js_upload/js_upload.php:321
msgid "File has an invalid extension, it should be one of " msgid "File has an invalid extension, it should be one of "
msgstr "" msgstr ""
#: ../../addon/js_upload/js_upload.php:328 #: ../../addon/js_upload/js_upload.php:332
msgid "Upload was cancelled, or server error encountered" msgid "Upload was cancelled, or server error encountered"
msgstr "" msgstr ""
#: ../../addon/oembed/oembed.php:29 #: ../../addon/impressum/impressum.php:25
msgid "Impressum"
msgstr ""
#: ../../addon/impressum/impressum.php:38
#: ../../addon/impressum/impressum.php:40
#: ../../addon/impressum/impressum.php:70
msgid "Site Owner"
msgstr ""
#: ../../addon/impressum/impressum.php:38
#: ../../addon/impressum/impressum.php:74
msgid "Email Address"
msgstr ""
#: ../../addon/impressum/impressum.php:43
#: ../../addon/impressum/impressum.php:72
msgid "Postal Address"
msgstr ""
#: ../../addon/impressum/impressum.php:49
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr ""
#: ../../addon/impressum/impressum.php:71
msgid "Site Owners Profile"
msgstr ""
#: ../../addon/impressum/impressum.php:73
msgid "Notes"
msgstr ""
#: ../../addon/oembed/oembed.php:30
msgid "OEmbed settings updated" msgid "OEmbed settings updated"
msgstr "" msgstr ""
#: ../../addon/oembed/oembed.php:42 #: ../../addon/oembed/oembed.php:43
msgid "Use OEmbed for YouTube videos: " msgid "Use OEmbed for YouTube videos"
msgstr "" msgstr ""
#: ../../addon/oembed/oembed.php:76 #: ../../addon/oembed/oembed.php:71
msgid "URL to embed:" msgid "URL to embed:"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:78 #: ../../addon/statusnet/statusnet.php:82
msgid "Post to StatusNet" msgid "Post to StatusNet"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:117 #: ../../addon/statusnet/statusnet.php:124
msgid "" msgid ""
"Please contact your site administrator.<br />The provided API URL is not " "Please contact your site administrator.<br />The provided API URL is not "
"valid." "valid."
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:145 #: ../../addon/statusnet/statusnet.php:152
msgid "We could not contact the StatusNet API with the Path you entered." msgid "We could not contact the StatusNet API with the Path you entered."
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:172 #: ../../addon/statusnet/statusnet.php:179
msgid "StatusNet settings updated." msgid "StatusNet settings updated."
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:195 #: ../../addon/statusnet/statusnet.php:202
msgid "StatusNet Posting Settings" msgid "StatusNet Posting Settings"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:209 #: ../../addon/statusnet/statusnet.php:216
msgid "Globally Available StatusNet OAuthKeys" msgid "Globally Available StatusNet OAuthKeys"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:210 #: ../../addon/statusnet/statusnet.php:217
msgid "" msgid ""
"There are preconfigured OAuth key pairs for some StatusNet servers " "There are preconfigured OAuth key pairs for some StatusNet servers "
"available. If you are useing one of them, please use these credentials. If " "available. If you are useing one of them, please use these credentials. If "
"not feel free to connect to any other StatusNet instance (see below)." "not feel free to connect to any other StatusNet instance (see below)."
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:218 #: ../../addon/statusnet/statusnet.php:225
msgid "Provide your own OAuth Credentials" msgid "Provide your own OAuth Credentials"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:219 #: ../../addon/statusnet/statusnet.php:226
msgid "" msgid ""
"No consumer key pair for StatusNet found. Register your Friendika Account as " "No consumer key pair for StatusNet found. Register your Friendika Account as "
"an desktop client on your StatusNet account, copy the consumer key pair here " "an desktop client on your StatusNet account, copy the consumer key pair here "
@ -2687,19 +3366,19 @@ msgid ""
"installation at your favorited StatusNet installation." "installation at your favorited StatusNet installation."
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:221 #: ../../addon/statusnet/statusnet.php:228
msgid "OAuth Consumer Key" msgid "OAuth Consumer Key"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:224 #: ../../addon/statusnet/statusnet.php:231
msgid "OAuth Consumer Secret" msgid "OAuth Consumer Secret"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:227 #: ../../addon/statusnet/statusnet.php:234
msgid "Base API Path (remember the trailing /)" msgid "Base API Path (remember the trailing /)"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:248 #: ../../addon/statusnet/statusnet.php:255
msgid "" msgid ""
"To connect to your StatusNet account click the button below to get a " "To connect to your StatusNet account click the button below to get a "
"security code from StatusNet which you have to copy into the input box below " "security code from StatusNet which you have to copy into the input box below "
@ -2707,63 +3386,80 @@ msgid ""
"to StatusNet." "to StatusNet."
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:249 #: ../../addon/statusnet/statusnet.php:256
msgid "Log in with StatusNet" msgid "Log in with StatusNet"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:251 #: ../../addon/statusnet/statusnet.php:258
msgid "Copy the security code from StatusNet here" msgid "Copy the security code from StatusNet here"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:257 #: ../../addon/statusnet/statusnet.php:264
msgid "Cancel Connection Process" msgid "Cancel Connection Process"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:259 #: ../../addon/statusnet/statusnet.php:266
msgid "Current StatusNet API is" msgid "Current StatusNet API is"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:260 #: ../../addon/statusnet/statusnet.php:267
msgid "Cancel StatusNet Connection" msgid "Cancel StatusNet Connection"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:271 ../../addon/twitter/twitter.php:165 #: ../../addon/statusnet/statusnet.php:278 ../../addon/twitter/twitter.php:180
msgid "Currently connected to: " msgid "Currently connected to: "
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:272 #: ../../addon/statusnet/statusnet.php:279
msgid "" msgid ""
"If enabled all your <strong>public</strong> postings will be posted to the " "If enabled all your <strong>public</strong> postings can be posted to the "
"associated StatusNet account." "associated StatusNet account. You can choose to do so by default (here) or "
"for every posting separately in the posting options when writing the entry."
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:274 #: ../../addon/statusnet/statusnet.php:281
msgid "Allow posting to StatusNet" msgid "Allow posting to StatusNet"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:277 #: ../../addon/statusnet/statusnet.php:284
msgid "Send public postings to StatusNet by default" msgid "Send public postings to StatusNet by default"
msgstr "" msgstr ""
#: ../../addon/statusnet/statusnet.php:282 ../../addon/twitter/twitter.php:172 #: ../../addon/statusnet/statusnet.php:289 ../../addon/twitter/twitter.php:191
msgid "Clear OAuth configuration" msgid "Clear OAuth configuration"
msgstr "" msgstr ""
#: ../../addon/twitter/twitter.php:64 #: ../../addon/piwik/piwik.php:77
msgid "Piwik Base URL"
msgstr ""
#: ../../addon/piwik/piwik.php:78
msgid "Site ID"
msgstr ""
#: ../../addon/piwik/piwik.php:79
msgid "Show opt-out cookie link?"
msgstr ""
#: ../../addon/twitter/twitter.php:70
msgid "Post to Twitter" msgid "Post to Twitter"
msgstr "" msgstr ""
#: ../../addon/twitter/twitter.php:122 #: ../../addon/twitter/twitter.php:115
msgid "Twitter settings updated."
msgstr ""
#: ../../addon/twitter/twitter.php:137
msgid "Twitter Posting Settings" msgid "Twitter Posting Settings"
msgstr "" msgstr ""
#: ../../addon/twitter/twitter.php:129 #: ../../addon/twitter/twitter.php:144
msgid "" msgid ""
"No consumer key pair for Twitter found. Please contact your site " "No consumer key pair for Twitter found. Please contact your site "
"administrator." "administrator."
msgstr "" msgstr ""
#: ../../addon/twitter/twitter.php:148 #: ../../addon/twitter/twitter.php:163
msgid "" msgid ""
"At this Friendika instance the Twitter plugin was enabled but you have not " "At this Friendika instance the Twitter plugin was enabled but you have not "
"yet connected your account to your Twitter account. To do so click the " "yet connected your account to your Twitter account. To do so click the "
@ -2772,29 +3468,42 @@ msgid ""
"be posted to Twitter." "be posted to Twitter."
msgstr "" msgstr ""
#: ../../addon/twitter/twitter.php:149 #: ../../addon/twitter/twitter.php:164
msgid "Log in with Twitter" msgid "Log in with Twitter"
msgstr "" msgstr ""
#: ../../addon/twitter/twitter.php:151 #: ../../addon/twitter/twitter.php:166
msgid "Copy the PIN from Twitter here" msgid "Copy the PIN from Twitter here"
msgstr "" msgstr ""
#: ../../addon/twitter/twitter.php:166 #: ../../addon/twitter/twitter.php:181
msgid "" msgid ""
"If enabled all your <strong>public</strong> postings will be posted to the " "If enabled all your <strong>public</strong> postings can be posted to the "
"associated Twitter account as well." "associated Twitter account. You can choose to do so by default (here) or for "
"every posting separately in the posting options when writing the entry."
msgstr "" msgstr ""
#: ../../addon/twitter/twitter.php:168 #: ../../addon/twitter/twitter.php:183
msgid "Send public postings to Twitter" msgid "Allow posting to Twitter"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:23 ../../boot.php:2356 #: ../../addon/twitter/twitter.php:186
msgid "Send public postings to Twitter by default"
msgstr ""
#: ../../addon/twitter/twitter.php:278
msgid "Consumer key"
msgstr ""
#: ../../addon/twitter/twitter.php:279
msgid "Consumer secret"
msgstr ""
#: ../../include/profile_advanced.php:23 ../../boot.php:881
msgid "Gender:" msgid "Gender:"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:36 ../../include/items.php:1086 #: ../../include/profile_advanced.php:36 ../../include/items.php:1123
msgid "Birthday:" msgid "Birthday:"
msgstr "" msgstr ""
@ -2814,7 +3523,7 @@ msgstr ""
msgid "<span class=\"heart\">&hearts;</span> Status:" msgid "<span class=\"heart\">&hearts;</span> Status:"
msgstr "" msgstr ""
#: ../../include/profile_advanced.php:103 ../../boot.php:2362 #: ../../include/profile_advanced.php:103 ../../boot.php:887
msgid "Homepage:" msgid "Homepage:"
msgstr "" msgstr ""
@ -3122,6 +3831,129 @@ msgstr ""
msgid "Ask me" msgid "Ask me"
msgstr "" msgstr ""
#: ../../include/event.php:11
msgid "l F d, Y \\@ g:i A"
msgstr ""
#: ../../include/event.php:17
msgid "Starts:"
msgstr ""
#: ../../include/event.php:27
msgid "Finishes:"
msgstr ""
#: ../../include/text.php:222
msgid "prev"
msgstr ""
#: ../../include/text.php:224
msgid "first"
msgstr ""
#: ../../include/text.php:253
msgid "last"
msgstr ""
#: ../../include/text.php:256
msgid "next"
msgstr ""
#: ../../include/text.php:535
msgid "No contacts"
msgstr ""
#: ../../include/text.php:543
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] ""
msgstr[1] ""
#: ../../include/text.php:700
msgid "Monday"
msgstr ""
#: ../../include/text.php:700
msgid "Tuesday"
msgstr ""
#: ../../include/text.php:700
msgid "Wednesday"
msgstr ""
#: ../../include/text.php:700
msgid "Thursday"
msgstr ""
#: ../../include/text.php:700
msgid "Friday"
msgstr ""
#: ../../include/text.php:700
msgid "Saturday"
msgstr ""
#: ../../include/text.php:700
msgid "Sunday"
msgstr ""
#: ../../include/text.php:704
msgid "January"
msgstr ""
#: ../../include/text.php:704
msgid "February"
msgstr ""
#: ../../include/text.php:704
msgid "March"
msgstr ""
#: ../../include/text.php:704
msgid "April"
msgstr ""
#: ../../include/text.php:704
msgid "May"
msgstr ""
#: ../../include/text.php:704
msgid "June"
msgstr ""
#: ../../include/text.php:704
msgid "July"
msgstr ""
#: ../../include/text.php:704
msgid "August"
msgstr ""
#: ../../include/text.php:704
msgid "September"
msgstr ""
#: ../../include/text.php:704
msgid "October"
msgstr ""
#: ../../include/text.php:704
msgid "November"
msgstr ""
#: ../../include/text.php:704
msgid "December"
msgstr ""
#: ../../include/text.php:767
msgid "bytes"
msgstr ""
#: ../../include/text.php:850
msgid "Select an alternate language"
msgstr ""
#: ../../include/oembed.php:95 #: ../../include/oembed.php:95
msgid "Embedding disabled" msgid "Embedding disabled"
msgstr "" msgstr ""
@ -3134,40 +3966,108 @@ msgstr ""
msgid "Everybody" msgid "Everybody"
msgstr "" msgstr ""
#: ../../include/nav.php:41 ../../boot.php:865 #: ../../include/nav.php:41 ../../boot.php:668
msgid "Logout" msgid "Logout"
msgstr "" msgstr ""
#: ../../include/nav.php:44 ../../boot.php:843 ../../boot.php:849 #: ../../include/nav.php:41
msgid "End this session"
msgstr ""
#: ../../include/nav.php:44 ../../boot.php:646 ../../boot.php:652
msgid "Login" msgid "Login"
msgstr "" msgstr ""
#: ../../include/nav.php:55 ../../include/nav.php:92 #: ../../include/nav.php:44
msgid "Sign in"
msgstr ""
#: ../../include/nav.php:55 ../../include/nav.php:93
msgid "Home" msgid "Home"
msgstr "" msgstr ""
#: ../../include/nav.php:68 #: ../../include/nav.php:55
msgid "Home Page"
msgstr ""
#: ../../include/nav.php:59
msgid "Create an account"
msgstr ""
#: ../../include/nav.php:64
msgid "Help and documentation"
msgstr ""
#: ../../include/nav.php:67
msgid "Apps" msgid "Apps"
msgstr "" msgstr ""
#: ../../include/nav.php:80 #: ../../include/nav.php:67
msgid "Addon applications, utilities, games"
msgstr ""
#: ../../include/nav.php:69
msgid "Search site content"
msgstr ""
#: ../../include/nav.php:79
msgid "Conversations on this site"
msgstr ""
#: ../../include/nav.php:81
msgid "Directory" msgid "Directory"
msgstr "" msgstr ""
#: ../../include/nav.php:90 #: ../../include/nav.php:81
msgid "People directory"
msgstr ""
#: ../../include/nav.php:91
msgid "Network" msgid "Network"
msgstr "" msgstr ""
#: ../../include/nav.php:98 #: ../../include/nav.php:91
msgid "Conversations from your friends"
msgstr ""
#: ../../include/nav.php:93
msgid "Your posts and conversations"
msgstr ""
#: ../../include/nav.php:99
msgid "Notifications" msgid "Notifications"
msgstr "" msgstr ""
#: ../../include/nav.php:104 #: ../../include/nav.php:99
msgid "Friend requests"
msgstr ""
#: ../../include/nav.php:102
msgid "Private mail"
msgstr ""
#: ../../include/nav.php:105
msgid "Manage" msgid "Manage"
msgstr "" msgstr ""
#: ../../include/nav.php:107 #: ../../include/nav.php:105
msgid "Settings" msgid "Manage other pages"
msgstr ""
#: ../../include/nav.php:109
msgid "Manage/edit profiles"
msgstr ""
#: ../../include/nav.php:110
msgid "Manage/edit friends and contacts"
msgstr ""
#: ../../include/nav.php:117
msgid "Admin"
msgstr ""
#: ../../include/nav.php:117
msgid "Site setup and configuration"
msgstr "" msgstr ""
#: ../../include/auth.php:27 #: ../../include/auth.php:27
@ -3178,71 +4078,79 @@ msgstr ""
msgid "Miscellaneous" msgid "Miscellaneous"
msgstr "" msgstr ""
#: ../../include/datetime.php:148 #: ../../include/datetime.php:105 ../../include/datetime.php:237
msgid "less than a second ago"
msgstr ""
#: ../../include/datetime.php:151
msgid "year" msgid "year"
msgstr "" msgstr ""
#: ../../include/datetime.php:151 #: ../../include/datetime.php:110 ../../include/datetime.php:238
msgid "years"
msgstr ""
#: ../../include/datetime.php:152
msgid "month" msgid "month"
msgstr "" msgstr ""
#: ../../include/datetime.php:152 #: ../../include/datetime.php:115 ../../include/datetime.php:240
msgid "months"
msgstr ""
#: ../../include/datetime.php:153
msgid "week"
msgstr ""
#: ../../include/datetime.php:153
msgid "weeks"
msgstr ""
#: ../../include/datetime.php:154
msgid "day" msgid "day"
msgstr "" msgstr ""
#: ../../include/datetime.php:155 #: ../../include/datetime.php:228
msgid "never"
msgstr ""
#: ../../include/datetime.php:234
msgid "less than a second ago"
msgstr ""
#: ../../include/datetime.php:237
msgid "years"
msgstr ""
#: ../../include/datetime.php:238
msgid "months"
msgstr ""
#: ../../include/datetime.php:239
msgid "week"
msgstr ""
#: ../../include/datetime.php:239
msgid "weeks"
msgstr ""
#: ../../include/datetime.php:240
msgid "days"
msgstr ""
#: ../../include/datetime.php:241
msgid "hour" msgid "hour"
msgstr "" msgstr ""
#: ../../include/datetime.php:155 #: ../../include/datetime.php:241
msgid "hours" msgid "hours"
msgstr "" msgstr ""
#: ../../include/datetime.php:156 #: ../../include/datetime.php:242
msgid "minute" msgid "minute"
msgstr "" msgstr ""
#: ../../include/datetime.php:156 #: ../../include/datetime.php:242
msgid "minutes" msgid "minutes"
msgstr "" msgstr ""
#: ../../include/datetime.php:157 #: ../../include/datetime.php:243
msgid "second" msgid "second"
msgstr "" msgstr ""
#: ../../include/datetime.php:157 #: ../../include/datetime.php:243
msgid "seconds" msgid "seconds"
msgstr "" msgstr ""
#: ../../include/datetime.php:164 #: ../../include/datetime.php:250
msgid " ago" msgid " ago"
msgstr "" msgstr ""
#: ../../include/poller.php:380 #: ../../include/poller.php:418
msgid "From: " msgid "From: "
msgstr "" msgstr ""
#: ../../include/bbcode.php:83 #: ../../include/bbcode.php:116
msgid "Image/photo" msgid "Image/photo"
msgstr "" msgstr ""
@ -3251,327 +4159,229 @@ msgstr ""
msgid "Cannot locate DNS info for database server '%s'" msgid "Cannot locate DNS info for database server '%s'"
msgstr "" msgstr ""
#: ../../include/acl_selectors.php:133 #: ../../include/acl_selectors.php:279
msgid "Visible To:" msgid "Visible to everybody"
msgstr "" msgstr ""
#: ../../include/acl_selectors.php:133 #: ../../include/acl_selectors.php:280
msgid "everybody" msgid "show"
msgstr "" msgstr ""
#: ../../include/acl_selectors.php:137 ../../include/acl_selectors.php:152 #: ../../include/acl_selectors.php:281
msgid "Groups" msgid "don't show"
msgstr "" msgstr ""
#: ../../include/acl_selectors.php:148 #: ../../include/notifier.php:459
msgid "Except For:"
msgstr ""
#: ../../include/notifier.php:414
msgid "(no subject)" msgid "(no subject)"
msgstr "" msgstr ""
#: ../../include/items.php:1447 #: ../../include/items.php:1512
msgid "You have a new follower at " msgid "You have a new follower at "
msgstr "" msgstr ""
#: ../../include/conversation.php:191 ../../include/conversation.php:451 #: ../../include/conversation.php:23
#: ../../include/conversation.php:452 msgid "event"
msgstr ""
#: ../../include/conversation.php:213 ../../include/conversation.php:485
#: ../../include/conversation.php:486
#, php-format #, php-format
msgid "View %s's profile" msgid "View %s's profile"
msgstr "" msgstr ""
#: ../../include/conversation.php:207 #: ../../include/conversation.php:222 ../../include/conversation.php:498
#, php-format
msgid "%s from %s"
msgstr ""
#: ../../include/conversation.php:230
msgid "View in context" msgid "View in context"
msgstr "" msgstr ""
#: ../../include/conversation.php:278 #: ../../include/conversation.php:301
msgid "See more posts like this" msgid "See more posts like this"
msgstr "" msgstr ""
#: ../../include/conversation.php:303 #: ../../include/conversation.php:326
#, php-format #, php-format
msgid "See all %d comments" msgid "See all %d comments"
msgstr "" msgstr ""
#: ../../include/conversation.php:453 #: ../../include/conversation.php:424
msgid "Select"
msgstr ""
#: ../../include/conversation.php:426
msgid "toggle star status"
msgstr ""
#: ../../include/conversation.php:487
msgid "to" msgid "to"
msgstr "" msgstr ""
#: ../../include/conversation.php:454 #: ../../include/conversation.php:488
msgid "Wall-to-Wall" msgid "Wall-to-Wall"
msgstr "" msgstr ""
#: ../../include/conversation.php:455 #: ../../include/conversation.php:489
msgid "via Wall-To-Wall:" msgid "via Wall-To-Wall:"
msgstr "" msgstr ""
#: ../../include/conversation.php:593 #: ../../include/conversation.php:531
msgid "Delete Selected Items"
msgstr ""
#: ../../include/conversation.php:605
msgid "View status" msgid "View status"
msgstr "" msgstr ""
#: ../../include/conversation.php:594 #: ../../include/conversation.php:606
msgid "View profile" msgid "View profile"
msgstr "" msgstr ""
#: ../../include/conversation.php:595 #: ../../include/conversation.php:607
msgid "View photos" msgid "View photos"
msgstr "" msgstr ""
#: ../../include/conversation.php:596 #: ../../include/conversation.php:608
msgid "View recent" msgid "View recent"
msgstr "" msgstr ""
#: ../../include/conversation.php:598 #: ../../include/conversation.php:610
msgid "Send PM" msgid "Send PM"
msgstr "" msgstr ""
#: ../../include/conversation.php:648 #: ../../include/conversation.php:660
#, php-format #, php-format
msgid "%s likes this." msgid "%s likes this."
msgstr "" msgstr ""
#: ../../include/conversation.php:648 #: ../../include/conversation.php:660
#, php-format #, php-format
msgid "%s doesn't like this." msgid "%s doesn't like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:652 #: ../../include/conversation.php:664
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> like this." msgid "<span %1$s>%2$d people</span> like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:654 #: ../../include/conversation.php:666
#, php-format #, php-format
msgid "<span %1$s>%2$d people</span> don't like this." msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:660 #: ../../include/conversation.php:672
msgid "and" msgid "and"
msgstr "" msgstr ""
#: ../../include/conversation.php:663 #: ../../include/conversation.php:675
#, php-format #, php-format
msgid ", and %d other people" msgid ", and %d other people"
msgstr "" msgstr ""
#: ../../include/conversation.php:664 #: ../../include/conversation.php:676
#, php-format #, php-format
msgid "%s like this." msgid "%s like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:664 #: ../../include/conversation.php:676
#, php-format #, php-format
msgid "%s don't like this." msgid "%s don't like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:683 #: ../../include/conversation.php:695
msgid "Visible to <strong>everybody</strong>" msgid "Visible to <strong>everybody</strong>"
msgstr "" msgstr ""
#: ../../include/conversation.php:685 #: ../../include/conversation.php:697
msgid "Please enter a YouTube link:" msgid "Please enter a YouTube link:"
msgstr "" msgstr ""
#: ../../include/conversation.php:686 #: ../../include/conversation.php:698
msgid "Please enter a video(.ogg) link/URL:" msgid "Please enter a video(.ogg) link/URL:"
msgstr "" msgstr ""
#: ../../include/conversation.php:687 #: ../../include/conversation.php:699
msgid "Please enter an audio(.ogg) link/URL:" msgid "Please enter an audio(.ogg) link/URL:"
msgstr "" msgstr ""
#: ../../include/conversation.php:688 #: ../../include/conversation.php:700
msgid "Where are you right now?" msgid "Where are you right now?"
msgstr "" msgstr ""
#: ../../include/conversation.php:689 #: ../../include/conversation.php:701
msgid "Enter a title for this item" msgid "Enter a title for this item"
msgstr "" msgstr ""
#: ../../include/conversation.php:740 #: ../../include/conversation.php:752
msgid "Set title" msgid "Set title"
msgstr "" msgstr ""
#: ../../boot.php:385 #: ../../boot.php:411
msgid "Delete this item?" msgid "Delete this item?"
msgstr "" msgstr ""
#: ../../boot.php:834 #: ../../boot.php:637
msgid "Create a New Account" msgid "Create a New Account"
msgstr "" msgstr ""
#: ../../boot.php:841 #: ../../boot.php:644
msgid "Nickname or Email address: " msgid "Nickname or Email address: "
msgstr "" msgstr ""
#: ../../boot.php:842 #: ../../boot.php:645
msgid "Password: " msgid "Password: "
msgstr "" msgstr ""
#: ../../boot.php:847 #: ../../boot.php:650
msgid "Nickname/Email/OpenID: " msgid "Nickname/Email/OpenID: "
msgstr "" msgstr ""
#: ../../boot.php:848 #: ../../boot.php:651
msgid "Password (if not OpenID): " msgid "Password (if not OpenID): "
msgstr "" msgstr ""
#: ../../boot.php:851 #: ../../boot.php:654
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "" msgstr ""
#: ../../boot.php:1113 #: ../../boot.php:854
msgid "prev"
msgstr ""
#: ../../boot.php:1115
msgid "first"
msgstr ""
#: ../../boot.php:1144
msgid "last"
msgstr ""
#: ../../boot.php:1147
msgid "next"
msgstr ""
#: ../../boot.php:2046
msgid "No contacts"
msgstr ""
#: ../../boot.php:2054
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] ""
msgstr[1] ""
#: ../../boot.php:2329
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
#: ../../boot.php:2344 #: ../../boot.php:873
msgid "Location:"
msgstr ""
#: ../../boot.php:2348
msgid ", " msgid ", "
msgstr "" msgstr ""
#: ../../boot.php:2360 #: ../../boot.php:885
msgid "Status:" msgid "Status:"
msgstr "" msgstr ""
#: ../../boot.php:2457 #: ../../boot.php:976
msgid "Monday"
msgstr ""
#: ../../boot.php:2457
msgid "Tuesday"
msgstr ""
#: ../../boot.php:2457
msgid "Wednesday"
msgstr ""
#: ../../boot.php:2457
msgid "Thursday"
msgstr ""
#: ../../boot.php:2457
msgid "Friday"
msgstr ""
#: ../../boot.php:2457
msgid "Saturday"
msgstr ""
#: ../../boot.php:2457
msgid "Sunday"
msgstr ""
#: ../../boot.php:2461
msgid "January"
msgstr ""
#: ../../boot.php:2461
msgid "February"
msgstr ""
#: ../../boot.php:2461
msgid "March"
msgstr ""
#: ../../boot.php:2461
msgid "April"
msgstr ""
#: ../../boot.php:2461
msgid "May"
msgstr ""
#: ../../boot.php:2461
msgid "June"
msgstr ""
#: ../../boot.php:2461
msgid "July"
msgstr ""
#: ../../boot.php:2461
msgid "August"
msgstr ""
#: ../../boot.php:2461
msgid "September"
msgstr ""
#: ../../boot.php:2461
msgid "October"
msgstr ""
#: ../../boot.php:2461
msgid "November"
msgstr ""
#: ../../boot.php:2461
msgid "December"
msgstr ""
#: ../../boot.php:2476
msgid "g A l F d" msgid "g A l F d"
msgstr "" msgstr ""
#: ../../boot.php:2494 #: ../../boot.php:994
msgid "Birthday Reminders" msgid "Birthday Reminders"
msgstr "" msgstr ""
#: ../../boot.php:2495 #: ../../boot.php:995
msgid "Birthdays this week:" msgid "Birthdays this week:"
msgstr "" msgstr ""
#: ../../boot.php:2496 #: ../../boot.php:996
msgid "(Adjusted for local time)" msgid "(Adjusted for local time)"
msgstr "" msgstr ""
#: ../../boot.php:2507 #: ../../boot.php:1007
msgid "[today]" msgid "[today]"
msgstr "" msgstr ""
#: ../../boot.php:2570 #: ../../index.php:209
msgid "bytes"
msgstr ""
#: ../../boot.php:2744
msgid "link to source"
msgstr ""
#: ../../index.php:199
msgid "Not Found" msgid "Not Found"
msgstr "" msgstr ""
#: ../../index.php:200 #: ../../index.php:210
msgid "Page not found." msgid "Page not found."
msgstr "" msgstr ""

View file

@ -1,1391 +1,1030 @@
<?php <?php
function string_plural_select($n){ ;
return ($n != 1); $a->strings["Post successful."] = "";
} $a->strings["Contact settings applied."] = "";
$a->strings["Contact update failed."] = "";
$a->strings['Not Found'] = 'Not Found'; $a->strings["Permission denied."] = "";
$a->strings['Page not found.' ] = 'Page not found.' ; $a->strings["Contact not found."] = "";
$a->strings['Permission denied'] = 'Permission denied'; $a->strings["Repair Contact Settings"] = "";
$a->strings['Permission denied.'] = 'Permission denied.'; $a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact will stop working."] = "";
$a->strings['Delete this item?'] = 'Delete this item?'; $a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "";
$a->strings['Comment'] = 'Comment'; $a->strings["Name"] = "";
$a->strings['Create a New Account'] = 'Create a New Account'; $a->strings["Account Nickname"] = "";
$a->strings['Register'] = 'Register'; $a->strings["Account URL"] = "";
$a->strings['Nickname or Email address: '] = 'Nickname or Email address: '; $a->strings["Friend Request URL"] = "";
$a->strings['Password: '] = 'Password: '; $a->strings["Friend Confirm URL"] = "";
$a->strings['Login'] = 'Login'; $a->strings["Notification Endpoint URL"] = "";
$a->strings['Nickname/Email/OpenID: '] = 'Nickname/Email/OpenID: '; $a->strings["Poll/Feed URL"] = "";
$a->strings["Password \x28if not OpenID\x29: "] = "Password \x28if not OpenID\x29: "; $a->strings["Submit"] = "";
$a->strings['Forgot your password?'] = 'Forgot your password?'; $a->strings["Help:"] = "";
$a->strings['Password Reset'] = 'Password Reset'; $a->strings["Help"] = "";
$a->strings['Logout'] = 'Logout'; $a->strings["File exceeds size limit of %d"] = "";
$a->strings['prev'] = 'prev'; $a->strings["File upload failed."] = "";
$a->strings['first'] = 'first'; $a->strings["Friend suggestion sent."] = "";
$a->strings['last'] = 'last'; $a->strings["Suggest Friends"] = "";
$a->strings['next'] = 'next'; $a->strings["Suggest a friend for %s"] = "";
$a->strings['No contacts'] = 'No contacts'; $a->strings["Status"] = "";
$a->strings['View Contacts'] = 'View Contacts'; $a->strings["Profile"] = "";
$a->strings['Search'] = 'Search'; $a->strings["Photos"] = "";
$a->strings['No profile'] = 'No profile'; $a->strings["Events"] = "";
$a->strings['Connect'] = 'Connect'; $a->strings["Personal Notes"] = "";
$a->strings['Location:'] = 'Location:'; $a->strings["Create New Event"] = "";
$a->strings[', '] = ', '; $a->strings["Previous"] = "";
$a->strings['Gender:'] = 'Gender:'; $a->strings["Next"] = "";
$a->strings['Status:'] = 'Status:'; $a->strings["l, F j"] = "";
$a->strings['Homepage:'] = 'Homepage:'; $a->strings["Edit event"] = "";
$a->strings['Monday'] = 'Monday'; $a->strings["link to source"] = "";
$a->strings['Tuesday'] = 'Tuesday'; $a->strings["hour:minute"] = "";
$a->strings['Wednesday'] = 'Wednesday'; $a->strings["Event details"] = "";
$a->strings['Thursday'] = 'Thursday'; $a->strings["Format is %s %s. Starting date and Description are required."] = "";
$a->strings['Friday'] = 'Friday'; $a->strings["Event Starts:"] = "";
$a->strings['Saturday'] = 'Saturday'; $a->strings["Finish date/time is not known or not relevant"] = "";
$a->strings['Sunday'] = 'Sunday'; $a->strings["Event Finishes:"] = "";
$a->strings['January'] = 'January'; $a->strings["Adjust for viewer timezone"] = "";
$a->strings['February'] = 'February'; $a->strings["Description:"] = "";
$a->strings['March'] = 'March'; $a->strings["Location:"] = "";
$a->strings['April'] = 'April'; $a->strings["Share this event"] = "";
$a->strings['May'] = 'May'; $a->strings["Cancel"] = "";
$a->strings['June'] = 'June'; $a->strings["Tag removed"] = "";
$a->strings['July'] = 'July'; $a->strings["Remove Item Tag"] = "";
$a->strings['August'] = 'August'; $a->strings["Select a tag to remove: "] = "";
$a->strings['September'] = 'September'; $a->strings["Remove"] = "";
$a->strings['October'] = 'October'; $a->strings["%s welcomes %s"] = "";
$a->strings['November'] = 'November'; $a->strings["Photo Albums"] = "";
$a->strings['December'] = 'December'; $a->strings["Contact Photos"] = "";
$a->strings['g A l F d'] = 'g A l F d'; $a->strings["everybody"] = "";
$a->strings['Birthday Reminders'] = 'Birthday Reminders'; $a->strings["Contact information unavailable"] = "";
$a->strings['Birthdays this week:'] = 'Birthdays this week:'; $a->strings["Profile Photos"] = "";
$a->strings["\x28Adjusted for local time\x29"] = "\x28Adjusted for local time\x29"; $a->strings["Album not found."] = "";
$a->strings['[today]'] = '[today]'; $a->strings["Delete Album"] = "";
$a->strings['bytes'] = 'bytes'; $a->strings["Delete Photo"] = "";
$a->strings['link to source'] = 'link to source'; $a->strings["was tagged in a"] = "";
$a->strings['%d Contact'] = array( $a->strings["photo"] = "";
0 => '%d Contact', $a->strings["by"] = "";
1 => '%d Contacts', $a->strings["Image exceeds size limit of "] = "";
); $a->strings["Image file is empty."] = "";
$a->strings['Applications'] = 'Applications'; $a->strings["Unable to process image."] = "";
$a->strings['Private Notes'] = 'Private Notes'; $a->strings["Image upload failed."] = "";
$a->strings['Item not available.'] = 'Item not available.'; $a->strings["Public access denied."] = "";
$a->strings['Item was not found.'] = 'Item was not found.'; $a->strings["No photos selected"] = "";
$a->strings["Invite Friends"] = "Invite Friends"; $a->strings["Access to this item is restricted."] = "";
$a->strings['Find People With Shared Interests'] = 'Find People With Shared Interests'; $a->strings["Upload Photos"] = "";
$a->strings['Connect/Follow'] = 'Connect/Follow'; $a->strings["New album name: "] = "";
$a->strings['Example: bob@example.com, http://example.com/barbara'] = 'Example: bob@example.com, http://example.com/barbara'; $a->strings["or existing album name: "] = "";
$a->strings['Follow'] = 'Follow'; $a->strings["Permissions"] = "";
$a->strings['Could not access contact record.'] = 'Could not access contact record.'; $a->strings["Edit Album"] = "";
$a->strings['Could not locate selected profile.'] = 'Could not locate selected profile.'; $a->strings["View Photo"] = "";
$a->strings['Contact updated.'] = 'Contact updated.'; $a->strings["Photo not available"] = "";
$a->strings['Failed to update contact record.'] = 'Failed to update contact record.'; $a->strings["Edit photo"] = "";
$a->strings['Contact has been '] = 'Contact has been '; $a->strings["Use as profile photo"] = "";
$a->strings['blocked'] = 'blocked'; $a->strings["Private Message"] = "";
$a->strings['unblocked'] = 'unblocked'; $a->strings["View Full Size"] = "";
$a->strings['Contact has been blocked'] = 'Contact has been blocked'; $a->strings["Tags: "] = "";
$a->strings['Contact has been unblocked'] = 'Contact has been unblocked'; $a->strings["[Remove any tag]"] = "";
$a->strings['Contact has been ignored'] = 'Contact has been ignored'; $a->strings["New album name"] = "";
$a->strings['Contact has been unignored'] = 'Contact has been unignored'; $a->strings["Caption"] = "";
$a->strings['stopped following'] = 'stopped following'; $a->strings["Add a Tag"] = "";
$a->strings['Contact has been removed.'] = 'Contact has been removed.'; $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "";
$a->strings['Contact not found.'] = 'Contact not found.'; $a->strings["I like this (toggle)"] = "";
$a->strings['Mutual Friendship'] = 'Mutual Friendship'; $a->strings["I don't like this (toggle)"] = "";
$a->strings['is a fan of yours'] = 'is a fan of yours'; $a->strings["Share"] = "";
$a->strings['you are a fan of'] = 'you are a fan of'; $a->strings["Please wait"] = "";
$a->strings['Privacy Unavailable'] = 'Privacy Unavailable'; $a->strings["This is you"] = "";
$a->strings['Private communications are not available for this contact.'] = 'Private communications are not available for this contact.'; $a->strings["Comment"] = "";
$a->strings['Never'] = 'Never'; $a->strings["Delete"] = "";
$a->strings["\x28Update was successful\x29"] = "\x28Update was successful\x29"; $a->strings["Recent Photos"] = "";
$a->strings["\x28Update was not successful\x29"] = "\x28Update was not successful\x29"; $a->strings["Upload New Photos"] = "";
$a->strings['Contact Editor'] = 'Contact Editor'; $a->strings["View Album"] = "";
$a->strings['Submit'] = 'Submit'; $a->strings["Not available."] = "";
$a->strings['Profile Visibility'] = 'Profile Visibility'; $a->strings["Community"] = "";
$a->strings['Please choose the profile you would like to display to %s when viewing your profile securely.'] = 'Please choose the profile you would like to display to %s when viewing your profile securely.'; $a->strings["No results."] = "";
$a->strings['Contact Information / Notes'] = 'Contact Information / Notes'; $a->strings["Shared content is covered by the <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."] = "";
$a->strings['Online Reputation'] = 'Online Reputation'; $a->strings["Item not found"] = "";
$a->strings['Occasionally your friends may wish to inquire about this person\'s online legitimacy.'] = 'Occasionally your friends may wish to inquire about this person\'s online legitimacy.'; $a->strings["Edit post"] = "";
$a->strings['You may help them choose whether or not to interact with this person by providing a <em>reputation</em> to guide them.'] = 'You may help them choose whether or not to interact with this person by providing a <em>reputation</em> to guide them.'; $a->strings["Post to Email"] = "";
$a->strings['Please take a moment to elaborate on this selection if you feel it could be helpful to others.'] = 'Please take a moment to elaborate on this selection if you feel it could be helpful to others.'; $a->strings["Edit"] = "";
$a->strings['Visit $name\'s profile'] = 'Visit $name\'s profile'; $a->strings["Upload photo"] = "";
$a->strings['Block/Unblock contact'] = 'Block/Unblock contact'; $a->strings["Attach file"] = "";
$a->strings['Ignore contact'] = 'Ignore contact'; $a->strings["Insert web link"] = "";
$a->strings['Repair contact URL settings'] = 'Repair contact URL settings'; $a->strings["Insert YouTube video"] = "";
$a->strings["Repair contact URL settings \x28WARNING: Advanced\x29"] = "Repair contact URL settings \x28WARNING: Advanced\x29"; $a->strings["Insert Vorbis [.ogg] video"] = "";
$a->strings['View conversations'] = 'View conversations'; $a->strings["Insert Vorbis [.ogg] audio"] = "";
$a->strings['Delete contact'] = 'Delete contact'; $a->strings["Set your location"] = "";
$a->strings['Last updated: '] = 'Last updated: '; $a->strings["Clear browser location"] = "";
$a->strings['Update public posts: '] = 'Update public posts: '; $a->strings["Permission settings"] = "";
$a->strings['Update now'] = 'Update now'; $a->strings["CC: email addresses"] = "";
$a->strings['Unblock this contact'] = 'Unblock this contact'; $a->strings["Public post"] = "";
$a->strings['Block this contact'] = 'Block this contact'; $a->strings["Example: bob@example.com, mary@example.com"] = "";
$a->strings['Unignore this contact'] = 'Unignore this contact'; $a->strings["This introduction has already been accepted."] = "";
$a->strings['Ignore this contact'] = 'Ignore this contact'; $a->strings["Profile location is not valid or does not contain profile information."] = "";
$a->strings['Currently blocked'] = 'Currently blocked'; $a->strings["Warning: profile location has no identifiable owner name."] = "";
$a->strings['Currently ignored'] = 'Currently ignored'; $a->strings["Warning: profile location has no profile photo."] = "";
$a->strings['Contacts'] = 'Contacts';
$a->strings['Show Blocked Connections'] = 'Show Blocked Connections';
$a->strings['Hide Blocked Connections'] = 'Hide Blocked Connections';
$a->strings['Finding: '] = 'Finding: ';
$a->strings['Find'] = 'Find';
$a->strings['Visit $username\'s profile'] = 'Visit $username\'s profile';
$a->strings['Edit contact'] = 'Edit contact';
$a->strings['Contact settings applied.'] = 'Contact settings applied.';
$a->strings['Contact update failed.'] = 'Contact update failed.';
$a->strings['Repair Contact Settings'] = 'Repair Contact Settings';
$a->strings['<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact will stop working.'] = '<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact will stop working.';
$a->strings['Please use your browser \'Back\' button <strong>now</strong> if you are uncertain what to do on this page.'] = 'Please use your browser \'Back\' button <strong>now</strong> if you are uncertain what to do on this page.';
$a->strings['Name'] = 'Name';
$a->strings['Account Nickname'] = 'Account Nickname';
$a->strings['Account URL'] = 'Account URL';
$a->strings['Friend Request URL'] = 'Friend Request URL';
$a->strings['Friend Confirm URL'] = 'Friend Confirm URL';
$a->strings['Notification Endpoint URL'] = 'Notification Endpoint URL';
$a->strings['Poll/Feed URL'] = 'Poll/Feed URL';
$a->strings['Profile not found.'] = 'Profile not found.';
$a->strings['Response from remote site was not understood.'] = 'Response from remote site was not understood.';
$a->strings['Unexpected response from remote site: '] = 'Unexpected response from remote site: ';
$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully.";
$a->strings['Remote site reported: '] = 'Remote site reported: ';
$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again.";
$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked.";
$a->strings['Unable to set contact photo.'] = 'Unable to set contact photo.';
$a->strings['%1$s is now friends with %2$s'] = '%1$s is now friends with %2$s';
$a->strings['Our site encryption key is apparently messed up.'] = 'Our site encryption key is apparently messed up.';
$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'Empty site URL was provided or URL could not be decrypted by us.';
$a->strings['Contact record was not found for you on our site.'] = 'Contact record was not found for you on our site.';
$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'The ID provided by your system is a duplicate on our system. It should work if you try again.';
$a->strings['Unable to set your contact credentials on our system.'] = 'Unable to set your contact credentials on our system.';
$a->strings['Unable to update your contact profile details on our system'] = 'Unable to update your contact profile details on our system';
$a->strings["Connection accepted at %s"] = "Connection accepted at %s";
$a->strings['Administrator'] = 'Administrator';
$a->strings['noreply'] = 'noreply';
$a->strings['%s commented on an item at %s'] = '%s commented on an item at %s';
$a->strings["This introduction has already been accepted."] = "This introduction has already been accepted.";
$a->strings['Profile location is not valid or does not contain profile information.'] = 'Profile location is not valid or does not contain profile information.';
$a->strings['Warning: profile location has no identifiable owner name.'] = 'Warning: profile location has no identifiable owner name.';
$a->strings['Warning: profile location has no profile photo.'] = 'Warning: profile location has no profile photo.';
$a->strings["Introduction complete."] = "Introduction complete.";
$a->strings['Unrecoverable protocol error.'] = 'Unrecoverable protocol error.';
$a->strings['Profile unavailable.'] = 'Profile unavailable.';
$a->strings['%s has received too many connection requests today.'] = '%s has received too many connection requests today.';
$a->strings['Spam protection measures have been invoked.'] = 'Spam protection measures have been invoked.';
$a->strings['Friends are advised to please try again in 24 hours.'] = 'Friends are advised to please try again in 24 hours.';
$a->strings["Invalid locator"] = "Invalid locator";
$a->strings["Unable to resolve your name at the provided location."] = "Unable to resolve your name at the provided location.";
$a->strings['You have already introduced yourself here.'] = 'You have already introduced yourself here.';
$a->strings['Apparently you are already friends with %s.'] = 'Apparently you are already friends with %s.';
$a->strings['Invalid profile URL.'] = 'Invalid profile URL.';
$a->strings['Disallowed profile URL.'] = 'Disallowed profile URL.';
$a->strings['Your introduction has been sent.'] = 'Your introduction has been sent.';
$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Incorrect identity currently logged in. Please login to <strong>this</strong> profile.";
$a->strings['Welcome home %s.'] = 'Welcome home %s.';
$a->strings['Please confirm your introduction/connection request to %s.'] = 'Please confirm your introduction/connection request to %s.';
$a->strings['Confirm'] = 'Confirm';
$a->strings['[Name Withheld]'] = '[Name Withheld]';
$a->strings["Introduction received at "] = "Introduction received at ";
$a->strings['Public access denied.'] = 'Public access denied.';
$a->strings['Friend/Connection Request'] = 'Friend/Connection Request';
$a->strings['Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca'] = 'Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca';
$a->strings['Please answer the following:'] = 'Please answer the following:';
$a->strings['Does $name know you?'] = 'Does $name know you?';
$a->strings['Yes'] = 'Yes';
$a->strings['No'] = 'No';
$a->strings['Add a personal note:'] = 'Add a personal note:';
$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Please enter your 'Identity Address' from one of the following supported social networks:";
$a->strings['Friendika'] = 'Friendika';
$a->strings['StatusNet/Federated Social Web'] = 'StatusNet/Federated Social Web';
$a->strings["Private \x28secure\x29 network"] = "Private \x28secure\x29 network";
$a->strings["Public \x28insecure\x29 network"] = "Public \x28insecure\x29 network";
$a->strings['Your Identity Address:'] = 'Your Identity Address:';
$a->strings['Submit Request'] = 'Submit Request';
$a->strings['Cancel'] = 'Cancel';
$a->strings["%d required parameter was not found at the given location"] = array( $a->strings["%d required parameter was not found at the given location"] = array(
0 => "%d required parameter was not found at the given location", 0 => "",
1 => "%d required parameters were not found at the given location", 1 => "",
); );
$a->strings['Global Directory'] = 'Global Directory'; $a->strings["Introduction complete."] = "";
$a->strings['Normal site view'] = 'Normal site view'; $a->strings["Unrecoverable protocol error."] = "";
$a->strings['View all site entries'] = 'View all site entries'; $a->strings["Profile unavailable."] = "";
$a->strings['Site Directory'] = 'Site Directory'; $a->strings["%s has received too many connection requests today."] = "";
$a->strings['Age: '] = 'Age: '; $a->strings["Spam protection measures have been invoked."] = "";
$a->strings['Gender: '] = 'Gender: '; $a->strings["Friends are advised to please try again in 24 hours."] = "";
$a->strings["No entries \x28some entries may be hidden\x29."] = "No entries \x28some entries may be hidden\x29."; $a->strings["Invalid locator"] = "";
$a->strings['Item not found.'] = 'Item not found.'; $a->strings["Unable to resolve your name at the provided location."] = "";
$a->strings['Item has been removed.'] = 'Item has been removed.'; $a->strings["You have already introduced yourself here."] = "";
$a->strings['Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.'] = 'Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.'; $a->strings["Apparently you are already friends with %s."] = "";
$a->strings['Item not found'] = 'Item not found'; $a->strings["Invalid profile URL."] = "";
$a->strings['Edit post'] = 'Edit post'; $a->strings["Disallowed profile URL."] = "";
$a->strings['Visible to <strong>everybody</strong>'] = 'Visible to <strong>everybody</strong>'; $a->strings["Failed to update contact record."] = "";
$a->strings["Post to Email"] = "Post to Email"; $a->strings["Your introduction has been sent."] = "";
$a->strings['Edit'] = 'Edit'; $a->strings["Please login to confirm introduction."] = "";
$a->strings['Upload photo'] = 'Upload photo'; $a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "";
$a->strings['Attach file'] = 'Attach file'; $a->strings["Welcome home %s."] = "";
$a->strings['Insert web link'] = 'Insert web link'; $a->strings["Please confirm your introduction/connection request to %s."] = "";
$a->strings['Insert YouTube video'] = 'Insert YouTube video'; $a->strings["Confirm"] = "";
$a->strings['Insert Vorbis [.ogg] video'] = 'Insert Vorbis [.ogg] video'; $a->strings["[Name Withheld]"] = "";
$a->strings['Insert Vorbis [.ogg] audio'] = 'Insert Vorbis [.ogg] audio'; $a->strings["Introduction received at "] = "";
$a->strings['Set your location'] = 'Set your location'; $a->strings["Administrator"] = "";
$a->strings['Clear browser location'] = 'Clear browser location'; $a->strings["Friend/Connection Request"] = "";
$a->strings['Please wait'] = 'Please wait'; $a->strings["Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca"] = "";
$a->strings['Permission settings'] = 'Permission settings'; $a->strings["Please answer the following:"] = "";
$a->strings['CC: email addresses'] = 'CC: email addresses'; $a->strings["Does %s know you?"] = "";
$a->strings['Public post'] = 'Public post'; $a->strings["Yes"] = "";
$a->strings['Example: bob@example.com, mary@example.com'] = 'Example: bob@example.com, mary@example.com'; $a->strings["No"] = "";
$a->strings['The profile address specified does not provide adequate information.'] = 'The profile address specified does not provide adequate information.'; $a->strings["Add a personal note:"] = "";
$a->strings['No compatible communication protocols or feeds were discovered.'] = 'No compatible communication protocols or feeds were discovered.'; $a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "";
$a->strings['An author or name was not found.'] = 'An author or name was not found.'; $a->strings["Friendika"] = "";
$a->strings['No browser URL could be matched to this address.'] = 'No browser URL could be matched to this address.'; $a->strings["StatusNet/Federated Social Web"] = "";
$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Limited profile. This person will be unable to receive direct/personal notifications from you.'; $a->strings["Private (secure) network"] = "";
$a->strings['Unable to retrieve contact information.'] = 'Unable to retrieve contact information.'; $a->strings["Public (insecure) network"] = "";
$a->strings['following'] = 'following'; $a->strings["Your Identity Address:"] = "";
$a->strings['This is Friendika version'] = 'This is Friendika version'; $a->strings["Submit Request"] = "";
$a->strings['running at web location'] = 'running at web location'; $a->strings["Could not create/connect to database."] = "";
$a->strings['Shared content within the Friendika network is provided under the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 license</a>'] = 'Shared content within the Friendika network is provided under the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 license</a>'; $a->strings["Connected to database."] = "";
$a->strings['Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendika project.'] = 'Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendika project.'; $a->strings["Proceed with Installation"] = "";
$a->strings['Bug reports and issues: please visit'] = 'Bug reports and issues: please visit'; $a->strings["Your Friendika site database has been installed."] = "";
$a->strings['Suggestions, praise, donations, etc. - please email "Info" at Friendika - dot com'] = 'Suggestions, praise, donations, etc. - please email "Info" at Friendika - dot com'; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
$a->strings['Installed plugins/addons/apps'] = 'Installed plugins/addons/apps'; $a->strings["Please see the file \"INSTALL.txt\"."] = "";
$a->strings['No installed plugins/addons/apps'] = 'No installed plugins/addons/apps'; $a->strings["Proceed to registration"] = "";
$a->strings['Group created.'] = 'Group created.'; $a->strings["Database import failed."] = "";
$a->strings['Could not create group.'] = 'Could not create group.'; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "";
$a->strings['Group not found.'] = 'Group not found.'; $a->strings["Welcome to Friendika."] = "";
$a->strings['Group name changed.'] = 'Group name changed.'; $a->strings["Friendika Social Network"] = "";
$a->strings['Create a group of contacts/friends.'] = 'Create a group of contacts/friends.'; $a->strings["Installation"] = "";
$a->strings['Group Name: '] = 'Group Name: '; $a->strings["In order to install Friendika we need to know how to connect to your database."] = "";
$a->strings['Group removed.'] = 'Group removed.'; $a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
$a->strings['Unable to remove group.'] = 'Unable to remove group.'; $a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
$a->strings['Delete'] = 'Delete'; $a->strings["Database Server Name"] = "";
$a->strings['Click on a contact to add or remove.'] = 'Click on a contact to add or remove.'; $a->strings["Database Login Name"] = "";
$a->strings['Group Editor'] = 'Group Editor'; $a->strings["Database Login Password"] = "";
$a->strings['Members'] = 'Members'; $a->strings["Database Name"] = "";
$a->strings['All Contacts'] = 'All Contacts'; $a->strings["Please select a default timezone for your website"] = "";
$a->strings['Help:'] = 'Help:'; $a->strings["Site administrator email address. Your account email address must match this in order to use the web admin panel."] = "";
$a->strings['Help'] = 'Help'; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
$a->strings["Welcome to %s"] = "Welcome to %s"; $a->strings["This is required. Please adjust the configuration file .htconfig.php accordingly."] = "";
$a->strings['Could not create/connect to database.'] = 'Could not create/connect to database.'; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
$a->strings['Connected to database.'] = 'Connected to database.'; $a->strings["This is required for message delivery to work."] = "";
$a->strings['Proceed with Installation'] = 'Proceed with Installation'; $a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
$a->strings['Your Friendika site database has been installed.'] = 'Your Friendika site database has been installed.'; $a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
$a->strings['IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'] = 'IMPORTANT: You will need to [manually] setup a scheduled task for the poller.'; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
$a->strings['Please see the file "INSTALL.txt".'] = 'Please see the file "INSTALL.txt".'; $a->strings["Error: libCURL PHP module required but not installed."] = "";
$a->strings['Proceed to registration'] = 'Proceed to registration'; $a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
$a->strings['Database import failed.'] = 'Database import failed.'; $a->strings["Error: openssl PHP module required but not installed."] = "";
$a->strings['You may need to import the file "database.sql" manually using phpmyadmin or mysql.'] = 'You may need to import the file "database.sql" manually using phpmyadmin or mysql.'; $a->strings["Error: mysqli PHP module required but not installed."] = "";
$a->strings['Welcome to Friendika.'] = 'Welcome to Friendika.'; $a->strings["Error: mb_string PHP module required but not installed."] = "";
$a->strings['Friendika Social Network'] = 'Friendika Social Network'; $a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "";
$a->strings['Installation'] = 'Installation'; $a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "";
$a->strings['In order to install Friendika we need to know how to contact your database.'] = 'In order to install Friendika we need to know how to contact your database.'; $a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "";
$a->strings['Please contact your hosting provider or site administrator if you have questions about these settings.'] = 'Please contact your hosting provider or site administrator if you have questions about these settings.'; $a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
$a->strings['The database you specify below must already exist. If it does not, please create it before continuing.'] = 'The database you specify below must already exist. If it does not, please create it before continuing.'; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "";
$a->strings['Database Server Name'] = 'Database Server Name'; $a->strings["Errors encountered creating database tables."] = "";
$a->strings['Database Login Name'] = 'Database Login Name'; $a->strings["[Embedded content - reload page to view]"] = "";
$a->strings['Database Login Password'] = 'Database Login Password'; $a->strings["Profile Match"] = "";
$a->strings['Database Name'] = 'Database Name'; $a->strings["No keywords to match. Please add keywords to your default profile."] = "";
$a->strings['Please select a default timezone for your website'] = 'Please select a default timezone for your website'; $a->strings["No matches"] = "";
$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Could not find a command line version of PHP in the web server PATH.'; $a->strings["Remote privacy information not available."] = "";
$a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'This is required. Please adjust the configuration file .htconfig.php accordingly.'; $a->strings["Visible to:"] = "";
$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'The command line version of PHP on your system does not have "register_argc_argv" enabled.'; $a->strings["Welcome to %s"] = "";
$a->strings['This is required for message delivery to work.'] = 'This is required for message delivery to work.'; $a->strings["Invalid request identifier."] = "";
$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'; $a->strings["Discard"] = "";
$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'; $a->strings["Ignore"] = "";
$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Error: Apache webserver mod-rewrite module is required but not installed.'; $a->strings["Pending Friend/Connect Notifications"] = "";
$a->strings['Error: libCURL PHP module required but not installed.'] = 'Error: libCURL PHP module required but not installed.'; $a->strings["Show Ignored Requests"] = "";
$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Error: GD graphics PHP module with JPEG support required but not installed.'; $a->strings["Hide Ignored Requests"] = "";
$a->strings['Error: openssl PHP module required but not installed.'] = 'Error: openssl PHP module required but not installed.'; $a->strings["Notification type: "] = "";
$a->strings['Error: mysqli PHP module required but not installed.'] = 'Error: mysqli PHP module required but not installed.'; $a->strings["Friend Suggestion"] = "";
$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'; $a->strings["suggested by %s"] = "";
$a->strings['This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.'] = 'This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.'; $a->strings["Approve"] = "";
$a->strings['Please check with your site documentation or support people to see if this situation can be corrected.'] = 'Please check with your site documentation or support people to see if this situation can be corrected.'; $a->strings["Claims to be known to you: "] = "";
$a->strings['If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'; $a->strings["yes"] = "";
$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'; $a->strings["no"] = "";
$a->strings['Errors encountered creating database tables.'] = 'Errors encountered creating database tables.'; $a->strings["Approve as: "] = "";
$a->strings['%s : Not a valid email address.'] = '%s : Not a valid email address.'; $a->strings["Friend"] = "";
$a->strings['Please join my network on %s'] = 'Please join my network on %s'; $a->strings["Fan/Admirer"] = "";
$a->strings['%s : Message delivery failed.'] = '%s : Message delivery failed.'; $a->strings["Friend/Connect Request"] = "";
$a->strings['Send invitations'] = 'Send invitations'; $a->strings["New Follower"] = "";
$a->strings['Enter email addresses, one per line:'] = 'Enter email addresses, one per line:'; $a->strings["No notifications."] = "";
$a->strings['Your message:'] = 'Your message:'; $a->strings["Invite Friends"] = "";
$a->strings['To accept this invitation, please visit:'] = 'To accept this invitation, please visit:'; $a->strings["%d invitation available"] = array(
$a->strings['Once you have registered, please connect with me via my profile page at:'] = 'Once you have registered, please connect with me via my profile page at:'; 0 => "",
1 => "",
);
$a->strings["Find People With Shared Interests"] = "";
$a->strings["Connect/Follow"] = "";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "";
$a->strings["Follow"] = "";
$a->strings["Could not access contact record."] = "";
$a->strings["Could not locate selected profile."] = "";
$a->strings["Contact updated."] = "";
$a->strings["Contact has been blocked"] = "";
$a->strings["Contact has been unblocked"] = "";
$a->strings["Contact has been ignored"] = "";
$a->strings["Contact has been unignored"] = "";
$a->strings["stopped following"] = "";
$a->strings["Contact has been removed."] = "";
$a->strings["Mutual Friendship"] = "";
$a->strings["is a fan of yours"] = "";
$a->strings["you are a fan of"] = "";
$a->strings["Privacy Unavailable"] = "";
$a->strings["Private communications are not available for this contact."] = "";
$a->strings["Never"] = "";
$a->strings["(Update was successful)"] = "";
$a->strings["(Update was not successful)"] = "";
$a->strings["Suggest friends"] = "";
$a->strings["Contact Editor"] = "";
$a->strings["Profile Visibility"] = "";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "";
$a->strings["Contact Information / Notes"] = "";
$a->strings["Online Reputation"] = "";
$a->strings["Occasionally your friends may wish to inquire about this person's online legitimacy."] = "";
$a->strings["You may help them choose whether or not to interact with this person by providing a <em>reputation</em> to guide them."] = "";
$a->strings["Please take a moment to elaborate on this selection if you feel it could be helpful to others."] = "";
$a->strings["Visit %s's profile [%s]"] = "";
$a->strings["Block/Unblock contact"] = "";
$a->strings["Ignore contact"] = "";
$a->strings["Repair contact URL settings"] = "";
$a->strings["Repair contact URL settings (WARNING: Advanced)"] = "";
$a->strings["View conversations"] = "";
$a->strings["Delete contact"] = "";
$a->strings["Last updated: "] = "";
$a->strings["Update public posts: "] = "";
$a->strings["Update now"] = "";
$a->strings["Unblock this contact"] = "";
$a->strings["Block this contact"] = "";
$a->strings["Unignore this contact"] = "";
$a->strings["Ignore this contact"] = "";
$a->strings["Currently blocked"] = "";
$a->strings["Currently ignored"] = "";
$a->strings["Contacts"] = "";
$a->strings["Show Blocked Connections"] = "";
$a->strings["Hide Blocked Connections"] = "";
$a->strings["Finding: "] = "";
$a->strings["Find"] = "";
$a->strings["Edit contact"] = "";
$a->strings["No valid account found."] = "";
$a->strings["Password reset request issued. Check your email."] = "";
$a->strings["Password reset requested at %s"] = "";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "";
$a->strings["Password Reset"] = "";
$a->strings["Your password has been reset as requested."] = "";
$a->strings["Your new password is"] = "";
$a->strings["Save or copy your new password - and then"] = "";
$a->strings["click here to login"] = "";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "";
$a->strings["Forgot your Password?"] = "";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
$a->strings["Nickname or Email: "] = "";
$a->strings["Reset"] = "";
$a->strings["Passwords do not match. Password unchanged."] = "";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "";
$a->strings["Password changed."] = "";
$a->strings["Password update failed. Please try again."] = "";
$a->strings["Failed to connect with email account using the settings provided."] = "";
$a->strings[" Please use a shorter name."] = "";
$a->strings[" Name too short."] = "";
$a->strings[" Not valid email."] = "";
$a->strings[" Cannot change to that email."] = "";
$a->strings["Settings updated."] = "";
$a->strings["Account settings"] = "";
$a->strings["Plugin settings"] = "";
$a->strings["No Plugin settings configured"] = "";
$a->strings["Plugin Settings"] = "";
$a->strings["Normal Account"] = "";
$a->strings["This account is a normal personal profile"] = "";
$a->strings["Soapbox Account"] = "";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "";
$a->strings["Community/Celebrity Account"] = "";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "";
$a->strings["Automatic Friend Account"] = "";
$a->strings["Automatically approve all connection/friend requests as friends"] = "";
$a->strings["OpenID:"] = "";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "";
$a->strings["Publish your default profile in your local site directory?"] = "";
$a->strings["Publish your default profile in the global social directory?"] = "";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "";
$a->strings["Hide profile details and all your messages from unknown viewers?"] = "";
$a->strings["Profile is <strong>not published</strong>."] = "";
$a->strings["or"] = "";
$a->strings["Your Identity Address is"] = "";
$a->strings["Account Settings"] = "";
$a->strings["Export Personal Data"] = "";
$a->strings["Password Settings"] = "";
$a->strings["New Password:"] = "";
$a->strings["Confirm:"] = "";
$a->strings["Leave password fields blank unless changing"] = "";
$a->strings["Basic Settings"] = "";
$a->strings["Full Name:"] = "";
$a->strings["Email Address:"] = "";
$a->strings["Your Timezone:"] = "";
$a->strings["Default Post Location:"] = "";
$a->strings["Use Browser Location:"] = "";
$a->strings["Display Theme:"] = "";
$a->strings["Security and Privacy Settings"] = "";
$a->strings["Maximum Friend Requests/Day:"] = "";
$a->strings["(to prevent spam abuse)"] = "";
$a->strings["Default Post Permissions"] = "";
$a->strings["(click to open/close)"] = "";
$a->strings["Allow friends to post to your profile page:"] = "";
$a->strings["Automatically expire posts after days:"] = "";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "";
$a->strings["Notification Settings"] = "";
$a->strings["Send a notification email when:"] = "";
$a->strings["You receive an introduction"] = "";
$a->strings["Your introductions are confirmed"] = "";
$a->strings["Someone writes on your profile wall"] = "";
$a->strings["Someone writes a followup comment"] = "";
$a->strings["You receive a private message"] = "";
$a->strings["Email/Mailbox Setup"] = "";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "";
$a->strings["Last successful email check:"] = "";
$a->strings["Email access is disabled on this site."] = "";
$a->strings["IMAP server name:"] = "";
$a->strings["IMAP port:"] = "";
$a->strings["Security:"] = "";
$a->strings["None"] = "";
$a->strings["Email login name:"] = "";
$a->strings["Email password:"] = "";
$a->strings["Reply-to address:"] = "";
$a->strings["Send public posts to all email contacts:"] = "";
$a->strings["Advanced Page Settings"] = "";
$a->strings["Welcome back %s"] = "";
$a->strings["Manage Identities and/or Pages"] = "";
$a->strings["(Toggle between different identities or community/group pages which share your account details.)"] = "";
$a->strings["Select an identity to manage: "] = "";
$a->strings["View Conversations"] = "";
$a->strings["View New Items"] = "";
$a->strings["View Any Items"] = "";
$a->strings["View Starred Items"] = "";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "",
1 => "",
);
$a->strings["Private messages to this group are at risk of public disclosure."] = "";
$a->strings["No such group"] = "";
$a->strings["Group is empty"] = "";
$a->strings["Group: "] = "";
$a->strings["Contact: "] = "";
$a->strings["Private messages to this person are at risk of public disclosure."] = "";
$a->strings["Invalid contact."] = "";
$a->strings["Save"] = "";
$a->strings["Welcome to Friendika"] = "";
$a->strings["New Member Checklist"] = "";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page."] = "";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "";
$a->strings["Enter your email access information on your Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Connect</em> dialog."] = "";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "";
$a->strings["Item not available."] = "";
$a->strings["Item was not found."] = "";
$a->strings["Group created."] = "";
$a->strings["Could not create group."] = "";
$a->strings["Group not found."] = "";
$a->strings["Group name changed."] = "";
$a->strings["Permission denied"] = "";
$a->strings["Create a group of contacts/friends."] = "";
$a->strings["Group Name: "] = "";
$a->strings["Group removed."] = "";
$a->strings["Unable to remove group."] = "";
$a->strings["Click on a contact to add or remove."] = "";
$a->strings["Group Editor"] = "";
$a->strings["Members"] = "";
$a->strings["All Contacts"] = "";
$a->strings["Invalid profile identifier."] = "";
$a->strings["Profile Visibility Editor"] = "";
$a->strings["Visible To"] = "";
$a->strings["All Contacts (with secure profile access)"] = "";
$a->strings["View Contacts"] = "";
$a->strings["No contacts."] = "";
$a->strings["An invitation is required."] = "";
$a->strings["Invitation could not be verified."] = "";
$a->strings["Invalid OpenID url"] = "";
$a->strings["Please enter the required information."] = "";
$a->strings["Please use a shorter name."] = "";
$a->strings["Name too short."] = "";
$a->strings["That doesn't appear to be your full (First Last) name."] = "";
$a->strings["Your email domain is not among those allowed on this site."] = "";
$a->strings["Not a valid email address."] = "";
$a->strings["Cannot use that email."] = "";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "";
$a->strings["Nickname is already registered. Please choose another."] = "";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "";
$a->strings["An error occurred during registration. Please try again."] = "";
$a->strings["An error occurred creating your default profile. Please try again."] = "";
$a->strings["Registration details for %s"] = "";
$a->strings["Registration successful. Please check your email for further instructions."] = "";
$a->strings["Failed to send email message. Here is the message that failed."] = "";
$a->strings["Your registration can not be processed."] = "";
$a->strings["Registration request at %s"] = "";
$a->strings["Your registration is pending approval by the site owner."] = "";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "";
$a->strings["Your OpenID (optional): "] = "";
$a->strings["Include your profile in member directory?"] = "";
$a->strings["Membership on this site is by invitation only."] = "";
$a->strings["Your invitation ID: "] = "";
$a->strings["Registration"] = "";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "";
$a->strings["Your Email Address: "] = "";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "";
$a->strings["Choose a nickname: "] = "";
$a->strings["Register"] = "";
$a->strings["status"] = "";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "";
$a->strings["This is Friendika version"] = "";
$a->strings["running at web location"] = "";
$a->strings["Shared content within the Friendika network is provided under the <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0 license</a>"] = "";
$a->strings["Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn more about the Friendika project."] = "";
$a->strings["Bug reports and issues: please visit"] = "";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - dot com"] = "";
$a->strings["Installed plugins/addons/apps"] = "";
$a->strings["No installed plugins/addons/apps"] = "";
$a->strings["Account approved."] = "";
$a->strings["Registration revoked for %s"] = "";
$a->strings["Please login."] = "";
$a->strings["Unable to locate original post."] = "";
$a->strings["Empty post discarded."] = "";
$a->strings["Wall Photos"] = "";
$a->strings["noreply"] = "";
$a->strings["Administrator@"] = "";
$a->strings["%s commented on an item at %s"] = "";
$a->strings["%s posted to your profile wall at %s"] = "";
$a->strings["System error. Post not saved."] = "";
$a->strings["This message was sent to you by %s, a member of the Friendika social network."] = "";
$a->strings["You may visit them online at %s"] = "";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "";
$a->strings["%s posted an update."] = "";
$a->strings["Image uploaded but image cropping failed."] = "";
$a->strings["Image size reduction [%s] failed."] = "";
$a->strings["Unable to process image"] = "";
$a->strings["Image exceeds size limit of %d"] = "";
$a->strings["Upload File:"] = "";
$a->strings["Upload Profile Photo"] = "";
$a->strings["Upload"] = "";
$a->strings["skip this step"] = "";
$a->strings["select a photo from your photo albums"] = "";
$a->strings["Crop Image"] = "";
$a->strings["Please adjust the image cropping for optimum viewing."] = "";
$a->strings["Done Editing"] = "";
$a->strings["Image uploaded successfully."] = "";
$a->strings["Remove My Account"] = "";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "";
$a->strings["Please enter your password for verification:"] = "";
$a->strings["No recipient selected."] = "";
$a->strings["[no subject]"] = "";
$a->strings["Unable to locate contact information."] = "";
$a->strings["Message sent."] = "";
$a->strings["Message could not be sent."] = "";
$a->strings["Messages"] = "";
$a->strings["Inbox"] = "";
$a->strings["Outbox"] = "";
$a->strings["New Message"] = "";
$a->strings["Message deleted."] = "";
$a->strings["Conversation removed."] = "";
$a->strings["Please enter a link URL:"] = "";
$a->strings["Send Private Message"] = "";
$a->strings["To:"] = "";
$a->strings["Subject:"] = "";
$a->strings["Your message:"] = "";
$a->strings["No messages."] = "";
$a->strings["Delete conversation"] = "";
$a->strings["D, d M Y - g:i A"] = "";
$a->strings["Message not available."] = "";
$a->strings["Delete message"] = "";
$a->strings["Send Reply"] = "";
$a->strings["Site"] = "";
$a->strings["Users"] = "";
$a->strings["Plugins"] = "";
$a->strings["Update"] = "";
$a->strings["Logs"] = "";
$a->strings["User registrations waiting for confirmation"] = "";
$a->strings["Item not found."] = "";
$a->strings["Administration"] = "";
$a->strings["Summary"] = "";
$a->strings["Registered users"] = "";
$a->strings["Pending registrations"] = "";
$a->strings["Version"] = "";
$a->strings["Active plugins"] = "";
$a->strings["Site settings updated."] = "";
$a->strings["Closed"] = "";
$a->strings["Requires approval"] = "";
$a->strings["Open"] = "";
$a->strings["File upload"] = "";
$a->strings["Policies"] = "";
$a->strings["Advanced"] = "";
$a->strings["Site name"] = "";
$a->strings["Banner/Logo"] = "";
$a->strings["System language"] = "";
$a->strings["System theme"] = "";
$a->strings["Maximum image size"] = "";
$a->strings["Register policy"] = "";
$a->strings["Register text"] = "";
$a->strings["Allowed friend domains"] = "";
$a->strings["Allowed email domains"] = "";
$a->strings["Block public"] = "";
$a->strings["Force publish"] = "";
$a->strings["Global directory update URL"] = "";
$a->strings["Block multiple registrations"] = "";
$a->strings["OpenID support"] = "";
$a->strings["Gravatar support"] = "";
$a->strings["Fullname check"] = "";
$a->strings["UTF-8 Regular expressions"] = "";
$a->strings["Show Community Page"] = "";
$a->strings["Enable OStatus support"] = "";
$a->strings["Only allow Friendika contacts"] = "";
$a->strings["Verify SSL"] = "";
$a->strings["Proxy user"] = "";
$a->strings["Proxy URL"] = "";
$a->strings["Network timeout"] = "";
$a->strings["%s user blocked"] = array(
0 => "",
1 => "",
);
$a->strings["%s user deleted"] = array(
0 => "",
1 => "",
);
$a->strings["User '%s' deleted"] = "";
$a->strings["User '%s' unblocked"] = "";
$a->strings["User '%s' blocked"] = "";
$a->strings["select all"] = "";
$a->strings["User registrations waiting for confirm"] = "";
$a->strings["Request date"] = "";
$a->strings["Email"] = "";
$a->strings["No registrations."] = "";
$a->strings["Deny"] = "";
$a->strings["Block"] = "";
$a->strings["Unblock"] = "";
$a->strings["Register date"] = "";
$a->strings["Last login"] = "";
$a->strings["Last item"] = "";
$a->strings["Account"] = "";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
$a->strings["Plugin %s disabled."] = "";
$a->strings["Plugin %s enabled."] = "";
$a->strings["Disable"] = "";
$a->strings["Enable"] = "";
$a->strings["Toggle"] = "";
$a->strings["Settings"] = "";
$a->strings["Log settings updated."] = "";
$a->strings["Clear"] = "";
$a->strings["Debugging"] = "";
$a->strings["Log file"] = "";
$a->strings["Must be writable by web server. Relative to your Friendika index.php."] = "";
$a->strings["Log level"] = "";
$a->strings["Close"] = "";
$a->strings["FTP Host"] = "";
$a->strings["FTP Path"] = "";
$a->strings["FTP User"] = "";
$a->strings["FTP Password"] = "";
$a->strings["No profile"] = "";
$a->strings["Access to this profile has been restricted."] = "";
$a->strings["Tips for New Members"] = "";
$a->strings["Login failed."] = "";
$a->strings["Welcome "] = "";
$a->strings["Please upload a profile photo."] = "";
$a->strings["Welcome back "] = "";
$a->strings["This site is not configured to allow communications with other networks."] = "";
$a->strings["No compatible communication protocols or feeds were discovered."] = "";
$a->strings["The profile address specified does not provide adequate information."] = "";
$a->strings["An author or name was not found."] = "";
$a->strings["No browser URL could be matched to this address."] = "";
$a->strings["Communication options with this network have been restricted."] = "";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
$a->strings["Unable to retrieve contact information."] = "";
$a->strings["following"] = "";
$a->strings["Item has been removed."] = "";
$a->strings["New mail received at "] = "";
$a->strings["Applications"] = "";
$a->strings["No installed applications."] = "";
$a->strings["Search"] = "";
$a->strings["Profile not found."] = "";
$a->strings["Profile Name is required."] = "";
$a->strings["Profile updated."] = "";
$a->strings["Profile deleted."] = "";
$a->strings["Profile-"] = "";
$a->strings["New profile created."] = "";
$a->strings["Profile unavailable to clone."] = "";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "";
$a->strings["Edit Profile Details"] = "";
$a->strings["View this profile"] = "";
$a->strings["Create a new profile using these settings"] = "";
$a->strings["Clone this profile"] = "";
$a->strings["Delete this profile"] = "";
$a->strings["Profile Name:"] = "";
$a->strings["Your Full Name:"] = "";
$a->strings["Title/Description:"] = "";
$a->strings["Your Gender:"] = "";
$a->strings["Birthday (%s):"] = "";
$a->strings["Street Address:"] = "";
$a->strings["Locality/City:"] = "";
$a->strings["Postal/Zip Code:"] = "";
$a->strings["Country:"] = "";
$a->strings["Region/State:"] = "";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "";
$a->strings["Who: (if applicable)"] = "";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "";
$a->strings["Sexual Preference:"] = "";
$a->strings["Homepage URL:"] = "";
$a->strings["Political Views:"] = "";
$a->strings["Religious Views:"] = "";
$a->strings["Public Keywords:"] = "";
$a->strings["Private Keywords:"] = "";
$a->strings["Example: fishing photography software"] = "";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "";
$a->strings["(Used for searching profiles, never shown to others)"] = "";
$a->strings["Tell us about yourself..."] = "";
$a->strings["Hobbies/Interests"] = "";
$a->strings["Contact information and Social Networks"] = "";
$a->strings["Musical interests"] = "";
$a->strings["Books, literature"] = "";
$a->strings["Television"] = "";
$a->strings["Film/dance/culture/entertainment"] = "";
$a->strings["Love/romance"] = "";
$a->strings["Work/employment"] = "";
$a->strings["School/education"] = "";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
$a->strings["Age: "] = "";
$a->strings["Profiles"] = "";
$a->strings["Change profile photo"] = "";
$a->strings["Create New Profile"] = "";
$a->strings["Profile Image"] = "";
$a->strings["visible to everybody"] = "";
$a->strings["Edit visibility"] = "";
$a->strings["Global Directory"] = "";
$a->strings["Normal site view"] = "";
$a->strings["View all site entries"] = "";
$a->strings["Site Directory"] = "";
$a->strings["Gender: "] = "";
$a->strings["No entries (some entries may be hidden)."] = "";
$a->strings["%s : Not a valid email address."] = "";
$a->strings["Please join my network on %s"] = "";
$a->strings["%s : Message delivery failed."] = "";
$a->strings["%d message sent."] = array( $a->strings["%d message sent."] = array(
0 => "%d message sent.", 0 => "",
1 => "%d messages sent.", 1 => "",
); );
$a->strings['Unable to locate original post.'] = 'Unable to locate original post.'; $a->strings["You have no more invitations available"] = "";
$a->strings['Empty post discarded.'] = 'Empty post discarded.'; $a->strings["Send invitations"] = "";
$a->strings['Wall Photos'] = 'Wall Photos'; $a->strings["Enter email addresses, one per line:"] = "";
$a->strings['%s posted to your profile wall at %s'] = '%s posted to your profile wall at %s'; $a->strings["Please join my social network on %s"] = "";
$a->strings['System error. Post not saved.'] = 'System error. Post not saved.'; $a->strings["To accept this invitation, please visit:"] = "";
$a->strings['This message was sent to you by %s, a member of the Friendika social network.'] = 'This message was sent to you by %s, a member of the Friendika social network.'; $a->strings["You will need to supply this invitation code: \$invite_code"] = "";
$a->strings['You may visit them online at %s'] = 'You may visit them online at %s'; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "";
$a->strings['Please contact the sender by replying to this post if you do not wish to receive these messages.'] = 'Please contact the sender by replying to this post if you do not wish to receive these messages.'; $a->strings["Response from remote site was not understood."] = "";
$a->strings['%s posted an update.'] = '%s posted an update.'; $a->strings["Unexpected response from remote site: "] = "";
$a->strings['photo'] = 'photo'; $a->strings["Confirmation completed successfully."] = "";
$a->strings['status'] = 'status'; $a->strings["Remote site reported: "] = "";
$a->strings['%1$s likes %2$s\'s %3$s'] = '%1$s likes %2$s\'s %3$s'; $a->strings["Temporary failure. Please wait and try again."] = "";
$a->strings['%1$s doesn\'t like %2$s\'s %3$s'] = '%1$s doesn\'t like %2$s\'s %3$s'; $a->strings["Introduction failed or was revoked."] = "";
$a->strings['Remote privacy information not available.'] = 'Remote privacy information not available.'; $a->strings["Unable to set contact photo."] = "";
$a->strings['Visible to:'] = 'Visible to:'; $a->strings["%1\$s is now friends with %2\$s"] = "";
$a->strings['Password reset request issued. Check your email.'] = 'Password reset request issued. Check your email.'; $a->strings["No user record found for '%s' "] = "";
$a->strings['Password reset requested at %s'] = 'Password reset requested at %s'; $a->strings["Our site encryption key is apparently messed up."] = "";
$a->strings["Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed."] = "Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed."; $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "";
$a->strings['Your password has been reset as requested.'] = 'Your password has been reset as requested.'; $a->strings["Contact record was not found for you on our site."] = "";
$a->strings['Your new password is'] = 'Your new password is'; $a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "";
$a->strings['Save or copy your new password - and then'] = 'Save or copy your new password - and then'; $a->strings["Unable to set your contact credentials on our system."] = "";
$a->strings['click here to login'] = 'click here to login'; $a->strings["Unable to update your contact profile details on our system"] = "";
$a->strings['Your password may be changed from the <em>Settings</em> page after successful login.'] = 'Your password may be changed from the <em>Settings</em> page after successful login.'; $a->strings["Connection accepted at %s"] = "";
$a->strings['Forgot your Password?'] = 'Forgot your Password?'; $a->strings["Facebook disabled"] = "";
$a->strings['Enter your email address and submit to have your password reset. Then check your email for further instructions.'] = 'Enter your email address and submit to have your password reset. Then check your email for further instructions.'; $a->strings["Updating contacts"] = "";
$a->strings['Nickname or Email: '] = 'Nickname or Email: '; $a->strings["Facebook API key is missing."] = "";
$a->strings['Reset'] = 'Reset'; $a->strings["Facebook Connect"] = "";
$a->strings["Welcome back %s"] = "Welcome back %s"; $a->strings["Install Facebook connector for this account."] = "";
$a->strings['Manage Identities and/or Pages'] = 'Manage Identities and/or Pages'; $a->strings["Remove Facebook connector"] = "";
$a->strings["\x28Toggle between different identities or community/group pages which share your account details.\x29"] = "\x28Toggle between different identities or community/group pages which share your account details.\x29"; $a->strings["Post to Facebook by default"] = "";
$a->strings['Select an identity to manage: '] = 'Select an identity to manage: '; $a->strings["Link all your Facebook friends and conversations"] = "";
$a->strings['Profile Match'] = 'Profile Match'; $a->strings["Warning: Your Facebook privacy settings can not be imported."] = "";
$a->strings['No matches'] = 'No matches'; $a->strings["Linked Facebook items <strong>may</strong> be publicly visible, depending on your privacy settings for this website/account."] = "";
$a->strings['No recipient selected.'] = 'No recipient selected.'; $a->strings["Facebook"] = "";
$a->strings['[no subject]'] = '[no subject]'; $a->strings["Facebook Connector Settings"] = "";
$a->strings['Unable to locate contact information.'] = 'Unable to locate contact information.'; $a->strings["Post to Facebook"] = "";
$a->strings['Message sent.'] = 'Message sent.'; $a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "";
$a->strings['Message could not be sent.'] = 'Message could not be sent.'; $a->strings["Image: "] = "";
$a->strings['Messages'] = 'Messages'; $a->strings["View on Friendika"] = "";
$a->strings['Inbox'] = 'Inbox'; $a->strings["Facebook post failed. Queued for retry."] = "";
$a->strings['Outbox'] = 'Outbox'; $a->strings["Generate new key"] = "";
$a->strings['New Message'] = 'New Message'; $a->strings["Widgets key"] = "";
$a->strings['Message deleted.'] = 'Message deleted.'; $a->strings["Widgets available"] = "";
$a->strings['Conversation removed.'] = 'Conversation removed.'; $a->strings["Connect on Friendika!"] = "";
$a->strings['Please enter a link URL:'] = 'Please enter a link URL:'; $a->strings["Three Dimensional Tic-Tac-Toe"] = "";
$a->strings['Send Private Message'] = 'Send Private Message'; $a->strings["3D Tic-Tac-Toe"] = "";
$a->strings['To:'] = 'To:'; $a->strings["New game"] = "";
$a->strings['Subject:'] = 'Subject:'; $a->strings["New game with handicap"] = "";
$a->strings['No messages.'] = 'No messages.'; $a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "";
$a->strings['Delete conversation'] = 'Delete conversation'; $a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "";
$a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; $a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "";
$a->strings['Message not available.'] = 'Message not available.'; $a->strings["You go first..."] = "";
$a->strings['Delete message'] = 'Delete message'; $a->strings["I'm going first this time..."] = "";
$a->strings['Send Reply'] = 'Send Reply'; $a->strings["You won!"] = "";
$a->strings['Normal View'] = 'Normal View'; $a->strings["\"Cat\" game!"] = "";
$a->strings['New Item View'] = 'New Item View'; $a->strings["I won!"] = "";
$a->strings['Private messages to this group are at risk of public disclosure.'] = 'Private messages to this group are at risk of public disclosure.'; $a->strings["Randplace Settings"] = "";
$a->strings['No such group'] = 'No such group'; $a->strings["Enable Randplace Plugin"] = "";
$a->strings['Group is empty'] = 'Group is empty'; $a->strings["Upload a file"] = "";
$a->strings['Group: '] = 'Group: '; $a->strings["Drop files here to upload"] = "";
$a->strings['Contact: '] = 'Contact: '; $a->strings["Failed"] = "";
$a->strings['Private messages to this person are at risk of public disclosure.'] = 'Private messages to this person are at risk of public disclosure.'; $a->strings["No files were uploaded."] = "";
$a->strings['Invalid contact.'] = 'Invalid contact.'; $a->strings["Uploaded file is empty"] = "";
$a->strings['Warning: This group contains %s member from an insecure network.'] = array( $a->strings["Uploaded file is too large"] = "";
0 => 'Warning: This group contains %s member from an insecure network.', $a->strings["File has an invalid extension, it should be one of "] = "";
1 => 'Warning: This group contains %s members from an insecure network.', $a->strings["Upload was cancelled, or server error encountered"] = "";
$a->strings["Impressum"] = "";
$a->strings["Site Owner"] = "";
$a->strings["Email Address"] = "";
$a->strings["Postal Address"] = "";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "";
$a->strings["Site Owners Profile"] = "";
$a->strings["Notes"] = "";
$a->strings["OEmbed settings updated"] = "";
$a->strings["Use OEmbed for YouTube videos"] = "";
$a->strings["URL to embed:"] = "";
$a->strings["Post to StatusNet"] = "";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "";
$a->strings["StatusNet settings updated."] = "";
$a->strings["StatusNet Posting Settings"] = "";
$a->strings["Globally Available StatusNet OAuthKeys"] = "";
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "";
$a->strings["Provide your own OAuth Credentials"] = "";
$a->strings["No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation."] = "";
$a->strings["OAuth Consumer Key"] = "";
$a->strings["OAuth Consumer Secret"] = "";
$a->strings["Base API Path (remember the trailing /)"] = "";
$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "";
$a->strings["Log in with StatusNet"] = "";
$a->strings["Copy the security code from StatusNet here"] = "";
$a->strings["Cancel Connection Process"] = "";
$a->strings["Current StatusNet API is"] = "";
$a->strings["Cancel StatusNet Connection"] = "";
$a->strings["Currently connected to: "] = "";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "";
$a->strings["Allow posting to StatusNet"] = "";
$a->strings["Send public postings to StatusNet by default"] = "";
$a->strings["Clear OAuth configuration"] = "";
$a->strings["Piwik Base URL"] = "";
$a->strings["Site ID"] = "";
$a->strings["Show opt-out cookie link?"] = "";
$a->strings["Post to Twitter"] = "";
$a->strings["Twitter settings updated."] = "";
$a->strings["Twitter Posting Settings"] = "";
$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "";
$a->strings["At this Friendika instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "";
$a->strings["Log in with Twitter"] = "";
$a->strings["Copy the PIN from Twitter here"] = "";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "";
$a->strings["Allow posting to Twitter"] = "";
$a->strings["Send public postings to Twitter by default"] = "";
$a->strings["Consumer key"] = "";
$a->strings["Consumer secret"] = "";
$a->strings["Gender:"] = "";
$a->strings["Birthday:"] = "";
$a->strings["j F, Y"] = "";
$a->strings["j F"] = "";
$a->strings["Age:"] = "";
$a->strings["<span class=\"heart\">&hearts;</span> Status:"] = "";
$a->strings["Homepage:"] = "";
$a->strings["Religion:"] = "";
$a->strings["About:"] = "";
$a->strings["Hobbies/Interests:"] = "";
$a->strings["Contact information and Social Networks:"] = "";
$a->strings["Musical interests:"] = "";
$a->strings["Books, literature:"] = "";
$a->strings["Television:"] = "";
$a->strings["Film/dance/culture/entertainment:"] = "";
$a->strings["Love/Romance:"] = "";
$a->strings["Work/employment:"] = "";
$a->strings["School/education:"] = "";
$a->strings["Unknown | Not categorised"] = "";
$a->strings["Block immediately"] = "";
$a->strings["Shady, spammer, self-marketer"] = "";
$a->strings["Known to me, but no opinion"] = "";
$a->strings["OK, probably harmless"] = "";
$a->strings["Reputable, has my trust"] = "";
$a->strings["Frequently"] = "";
$a->strings["Hourly"] = "";
$a->strings["Twice daily"] = "";
$a->strings["Daily"] = "";
$a->strings["Weekly"] = "";
$a->strings["Monthly"] = "";
$a->strings["Male"] = "";
$a->strings["Female"] = "";
$a->strings["Currently Male"] = "";
$a->strings["Currently Female"] = "";
$a->strings["Mostly Male"] = "";
$a->strings["Mostly Female"] = "";
$a->strings["Transgender"] = "";
$a->strings["Intersex"] = "";
$a->strings["Transsexual"] = "";
$a->strings["Hermaphrodite"] = "";
$a->strings["Neuter"] = "";
$a->strings["Non-specific"] = "";
$a->strings["Other"] = "";
$a->strings["Undecided"] = "";
$a->strings["Males"] = "";
$a->strings["Females"] = "";
$a->strings["Gay"] = "";
$a->strings["Lesbian"] = "";
$a->strings["No Preference"] = "";
$a->strings["Bisexual"] = "";
$a->strings["Autosexual"] = "";
$a->strings["Abstinent"] = "";
$a->strings["Virgin"] = "";
$a->strings["Deviant"] = "";
$a->strings["Fetish"] = "";
$a->strings["Oodles"] = "";
$a->strings["Nonsexual"] = "";
$a->strings["Single"] = "";
$a->strings["Lonely"] = "";
$a->strings["Available"] = "";
$a->strings["Unavailable"] = "";
$a->strings["Dating"] = "";
$a->strings["Unfaithful"] = "";
$a->strings["Sex Addict"] = "";
$a->strings["Friends"] = "";
$a->strings["Friends/Benefits"] = "";
$a->strings["Casual"] = "";
$a->strings["Engaged"] = "";
$a->strings["Married"] = "";
$a->strings["Partners"] = "";
$a->strings["Cohabiting"] = "";
$a->strings["Happy"] = "";
$a->strings["Not Looking"] = "";
$a->strings["Swinger"] = "";
$a->strings["Betrayed"] = "";
$a->strings["Separated"] = "";
$a->strings["Unstable"] = "";
$a->strings["Divorced"] = "";
$a->strings["Widowed"] = "";
$a->strings["Uncertain"] = "";
$a->strings["Complicated"] = "";
$a->strings["Don't care"] = "";
$a->strings["Ask me"] = "";
$a->strings["l F d, Y \\@ g:i A"] = "";
$a->strings["Starts:"] = "";
$a->strings["Finishes:"] = "";
$a->strings["prev"] = "";
$a->strings["first"] = "";
$a->strings["last"] = "";
$a->strings["next"] = "";
$a->strings["No contacts"] = "";
$a->strings["%d Contact"] = array(
0 => "",
1 => "",
); );
$a->strings['Save'] = 'Save'; $a->strings["Monday"] = "";
$a->strings['Invalid request identifier.'] = 'Invalid request identifier.'; $a->strings["Tuesday"] = "";
$a->strings['Discard'] = 'Discard'; $a->strings["Wednesday"] = "";
$a->strings['Ignore'] = 'Ignore'; $a->strings["Thursday"] = "";
$a->strings['Pending Friend/Connect Notifications'] = 'Pending Friend/Connect Notifications'; $a->strings["Friday"] = "";
$a->strings['Show Ignored Requests'] = 'Show Ignored Requests'; $a->strings["Saturday"] = "";
$a->strings['Hide Ignored Requests'] = 'Hide Ignored Requests'; $a->strings["Sunday"] = "";
$a->strings['Claims to be known to you: '] = 'Claims to be known to you: '; $a->strings["January"] = "";
$a->strings['yes'] = 'yes'; $a->strings["February"] = "";
$a->strings['no'] = 'no'; $a->strings["March"] = "";
$a->strings['Approve as: '] = 'Approve as: '; $a->strings["April"] = "";
$a->strings['Friend'] = 'Friend'; $a->strings["May"] = "";
$a->strings['Fan/Admirer'] = 'Fan/Admirer'; $a->strings["June"] = "";
$a->strings['Notification type: '] = 'Notification type: '; $a->strings["July"] = "";
$a->strings['Friend/Connect Request'] = 'Friend/Connect Request'; $a->strings["August"] = "";
$a->strings['New Follower'] = 'New Follower'; $a->strings["September"] = "";
$a->strings['Approve'] = 'Approve'; $a->strings["October"] = "";
$a->strings['No notifications.'] = 'No notifications.'; $a->strings["November"] = "";
$a->strings['User registrations waiting for confirm'] = 'User registrations waiting for confirm'; $a->strings["December"] = "";
$a->strings['Deny'] = 'Deny'; $a->strings["bytes"] = "";
$a->strings['No registrations.'] = 'No registrations.'; $a->strings["Select an alternate language"] = "";
$a->strings['Post successful.'] = 'Post successful.'; $a->strings["Embedding disabled"] = "";
$a->strings['Login failed.'] = 'Login failed.'; $a->strings["Create a new group"] = "";
$a->strings["Welcome "] = "Welcome "; $a->strings["Everybody"] = "";
$a->strings['Please upload a profile photo.'] = 'Please upload a profile photo.'; $a->strings["Logout"] = "";
$a->strings["Welcome back "] = "Welcome back "; $a->strings["End this session"] = "";
$a->strings['Photo Albums'] = 'Photo Albums'; $a->strings["Login"] = "";
$a->strings['Contact Photos'] = 'Contact Photos'; $a->strings["Sign in"] = "";
$a->strings['Contact information unavailable'] = 'Contact information unavailable'; $a->strings["Home"] = "";
$a->strings['Profile Photos'] = 'Profile Photos'; $a->strings["Home Page"] = "";
$a->strings['Album not found.'] = 'Album not found.'; $a->strings["Create an account"] = "";
$a->strings['Delete Album'] = 'Delete Album'; $a->strings["Help and documentation"] = "";
$a->strings['Delete Photo'] = 'Delete Photo'; $a->strings["Apps"] = "";
$a->strings['was tagged in a'] = 'was tagged in a'; $a->strings["Addon applications, utilities, games"] = "";
$a->strings['by'] = 'by'; $a->strings["Search site content"] = "";
$a->strings['Image exceeds size limit of '] = 'Image exceeds size limit of '; $a->strings["Conversations on this site"] = "";
$a->strings['Unable to process image.'] = 'Unable to process image.'; $a->strings["Directory"] = "";
$a->strings['Image upload failed.'] = 'Image upload failed.'; $a->strings["People directory"] = "";
$a->strings['No photos selected'] = 'No photos selected'; $a->strings["Network"] = "";
$a->strings['Upload Photos'] = 'Upload Photos'; $a->strings["Conversations from your friends"] = "";
$a->strings['New album name: '] = 'New album name: '; $a->strings["Your posts and conversations"] = "";
$a->strings['or existing album name: '] = 'or existing album name: '; $a->strings["Notifications"] = "";
$a->strings['Permissions'] = 'Permissions'; $a->strings["Friend requests"] = "";
$a->strings['Edit Album'] = 'Edit Album'; $a->strings["Private mail"] = "";
$a->strings['View Photo'] = 'View Photo'; $a->strings["Manage"] = "";
$a->strings['Photo not available'] = 'Photo not available'; $a->strings["Manage other pages"] = "";
$a->strings['Edit photo'] = 'Edit photo'; $a->strings["Manage/edit profiles"] = "";
$a->strings['Use as profile photo'] = 'Use as profile photo'; $a->strings["Manage/edit friends and contacts"] = "";
$a->strings['Private Message'] = 'Private Message'; $a->strings["Admin"] = "";
$a->strings['<< Prev'] = '<< Prev'; $a->strings["Site setup and configuration"] = "";
$a->strings['View Full Size'] = 'View Full Size'; $a->strings["Logged out."] = "";
$a->strings['Next >>'] = 'Next >>'; $a->strings["Miscellaneous"] = "";
$a->strings['[Remove any tag]'] = '[Remove any tag]'; $a->strings["year"] = "";
$a->strings['New album name'] = 'New album name'; $a->strings["month"] = "";
$a->strings['Caption'] = 'Caption'; $a->strings["day"] = "";
$a->strings['Add a Tag'] = 'Add a Tag'; $a->strings["never"] = "";
$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'; $a->strings["less than a second ago"] = "";
$a->strings["I like this \x28toggle\x29"] = "I like this \x28toggle\x29"; $a->strings["years"] = "";
$a->strings["I don't like this \x28toggle\x29"] = "I don't like this \x28toggle\x29"; $a->strings["months"] = "";
$a->strings['Share'] = 'Share'; $a->strings["week"] = "";
$a->strings['This is you'] = 'This is you'; $a->strings["weeks"] = "";
$a->strings['Recent Photos'] = 'Recent Photos'; $a->strings["days"] = "";
$a->strings['Upload New Photos'] = 'Upload New Photos'; $a->strings["hour"] = "";
$a->strings['View Album'] = 'View Album'; $a->strings["hours"] = "";
$a->strings['Access to this profile has been restricted.'] = 'Access to this profile has been restricted.'; $a->strings["minute"] = "";
$a->strings['Status'] = 'Status'; $a->strings["minutes"] = "";
$a->strings['Profile'] = 'Profile'; $a->strings["second"] = "";
$a->strings['Photos'] = 'Photos'; $a->strings["seconds"] = "";
$a->strings['Image uploaded but image cropping failed.'] = 'Image uploaded but image cropping failed.'; $a->strings[" ago"] = "";
$a->strings['Unable to process image'] = 'Unable to process image'; $a->strings["From: "] = "";
$a->strings['Upload File:'] = 'Upload File:'; $a->strings["Image/photo"] = "";
$a->strings['Upload Profile Photo'] = 'Upload Profile Photo'; $a->strings["Cannot locate DNS info for database server '%s'"] = "";
$a->strings['Upload'] = 'Upload'; $a->strings["Visible to everybody"] = "";
$a->strings['or'] = 'or'; $a->strings["show"] = "";
$a->strings['skip this step'] = 'skip this step'; $a->strings["don't show"] = "";
$a->strings['select a photo from your photo albums'] = 'select a photo from your photo albums'; $a->strings["(no subject)"] = "";
$a->strings['Crop Image'] = 'Crop Image'; $a->strings["You have a new follower at "] = "";
$a->strings['Please adjust the image cropping for optimum viewing.'] = 'Please adjust the image cropping for optimum viewing.'; $a->strings["event"] = "";
$a->strings['Done Editing'] = 'Done Editing'; $a->strings["View %s's profile"] = "";
$a->strings['Image uploaded successfully.'] = 'Image uploaded successfully.'; $a->strings["%s from %s"] = "";
$a->strings['Profile Name is required.'] = 'Profile Name is required.'; $a->strings["View in context"] = "";
$a->strings['Profile updated.'] = 'Profile updated.'; $a->strings["See more posts like this"] = "";
$a->strings['Profile deleted.'] = 'Profile deleted.'; $a->strings["See all %d comments"] = "";
$a->strings['Profile-'] = 'Profile-'; $a->strings["Select"] = "";
$a->strings['New profile created.'] = 'New profile created.'; $a->strings["toggle star status"] = "";
$a->strings['Profile unavailable to clone.'] = 'Profile unavailable to clone.'; $a->strings["to"] = "";
$a->strings['Hide your contact/friend list from viewers of this profile?'] = 'Hide your contact/friend list from viewers of this profile?'; $a->strings["Wall-to-Wall"] = "";
$a->strings['Hide profile details and all your messages from unknown viewers?'] = 'Hide profile details and all your messages from unknown viewers?'; $a->strings["via Wall-To-Wall:"] = "";
$a->strings['Edit Profile Details'] = 'Edit Profile Details'; $a->strings["Delete Selected Items"] = "";
$a->strings['View this profile'] = 'View this profile'; $a->strings["View status"] = "";
$a->strings['Create a new profile using these settings'] = 'Create a new profile using these settings'; $a->strings["View profile"] = "";
$a->strings['Clone this profile'] = 'Clone this profile'; $a->strings["View photos"] = "";
$a->strings['Delete this profile'] = 'Delete this profile'; $a->strings["View recent"] = "";
$a->strings['Profile Name:'] = 'Profile Name:'; $a->strings["Send PM"] = "";
$a->strings['Your Full Name:'] = 'Your Full Name:'; $a->strings["%s likes this."] = "";
$a->strings['Title/Description:'] = 'Title/Description:'; $a->strings["%s doesn't like this."] = "";
$a->strings['Your Gender:'] = 'Your Gender:'; $a->strings["<span %1\$s>%2\$d people</span> like this."] = "";
$a->strings["Birthday \x28y/m/d\x29:"] = "Birthday \x28y/m/d\x29:"; $a->strings["<span %1\$s>%2\$d people</span> don't like this."] = "";
$a->strings['Street Address:'] = 'Street Address:'; $a->strings["and"] = "";
$a->strings['Locality/City:'] = 'Locality/City:'; $a->strings[", and %d other people"] = "";
$a->strings['Postal/Zip Code:'] = 'Postal/Zip Code:'; $a->strings["%s like this."] = "";
$a->strings['Country:'] = 'Country:'; $a->strings["%s don't like this."] = "";
$a->strings['Region/State:'] = 'Region/State:'; $a->strings["Visible to <strong>everybody</strong>"] = "";
$a->strings['<span class="heart">&hearts;</span> Marital Status:'] = '<span class="heart">&hearts;</span> Marital Status:'; $a->strings["Please enter a YouTube link:"] = "";
$a->strings["Who: \x28if applicable\x29"] = "Who: \x28if applicable\x29"; $a->strings["Please enter a video(.ogg) link/URL:"] = "";
$a->strings['Examples: cathy123, Cathy Williams, cathy@example.com'] = 'Examples: cathy123, Cathy Williams, cathy@example.com'; $a->strings["Please enter an audio(.ogg) link/URL:"] = "";
$a->strings['Sexual Preference:'] = 'Sexual Preference:'; $a->strings["Where are you right now?"] = "";
$a->strings['Homepage URL:'] = 'Homepage URL:'; $a->strings["Enter a title for this item"] = "";
$a->strings['Political Views:'] = 'Political Views:'; $a->strings["Set title"] = "";
$a->strings['Religious Views:'] = 'Religious Views:'; $a->strings["Delete this item?"] = "";
$a->strings['Public Keywords:'] = 'Public Keywords:'; $a->strings["Create a New Account"] = "";
$a->strings['Private Keywords:'] = 'Private Keywords:'; $a->strings["Nickname or Email address: "] = "";
$a->strings['Example: fishing photography software'] = 'Example: fishing photography software'; $a->strings["Password: "] = "";
$a->strings["\x28Used for suggesting potential friends, can be seen by others\x29"] = "\x28Used for suggesting potential friends, can be seen by others\x29"; $a->strings["Nickname/Email/OpenID: "] = "";
$a->strings["\x28Used for searching profiles, never shown to others\x29"] = "\x28Used for searching profiles, never shown to others\x29"; $a->strings["Password (if not OpenID): "] = "";
$a->strings['Tell us about yourself...'] = 'Tell us about yourself...'; $a->strings["Forgot your password?"] = "";
$a->strings['Hobbies/Interests'] = 'Hobbies/Interests'; $a->strings["Connect"] = "";
$a->strings['Contact information and Social Networks'] = 'Contact information and Social Networks'; $a->strings[", "] = "";
$a->strings['Musical interests'] = 'Musical interests'; $a->strings["Status:"] = "";
$a->strings['Books, literature'] = 'Books, literature'; $a->strings["g A l F d"] = "";
$a->strings['Television'] = 'Television'; $a->strings["Birthday Reminders"] = "";
$a->strings['Film/dance/culture/entertainment'] = 'Film/dance/culture/entertainment'; $a->strings["Birthdays this week:"] = "";
$a->strings['Love/romance'] = 'Love/romance'; $a->strings["(Adjusted for local time)"] = "";
$a->strings['Work/employment'] = 'Work/employment'; $a->strings["[today]"] = "";
$a->strings['School/education'] = 'School/education'; $a->strings["Not Found"] = "";
$a->strings['This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.'] = 'This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.'; $a->strings["Page not found."] = "";
$a->strings['Profiles'] = 'Profiles';
$a->strings['Change profile photo'] = 'Change profile photo';
$a->strings['Create New Profile'] = 'Create New Profile';
$a->strings['Profile Image'] = 'Profile Image';
$a->strings['Visible to everybody'] = 'Visible to everybody';
$a->strings['Edit visibility'] = 'Edit visibility';
$a->strings['Invalid profile identifier.'] = 'Invalid profile identifier.';
$a->strings['Profile Visibility Editor'] = 'Profile Visibility Editor';
$a->strings['Visible To'] = 'Visible To';
$a->strings["All Contacts \x28with secure profile access\x29"] = "All Contacts \x28with secure profile access\x29";
$a->strings['Invalid OpenID url'] = 'Invalid OpenID url';
$a->strings['Please enter the required information.'] = 'Please enter the required information.';
$a->strings['Please use a shorter name.'] = 'Please use a shorter name.';
$a->strings['Name too short.'] = 'Name too short.';
$a->strings["That doesn't appear to be your full \x28First Last\x29 name."] = "That doesn't appear to be your full \x28First Last\x29 name.";
$a->strings['Your email domain is not among those allowed on this site.'] = 'Your email domain is not among those allowed on this site.';
$a->strings['Not a valid email address.'] = 'Not a valid email address.';
$a->strings['Cannot use that email.'] = 'Cannot use that email.';
$a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.';
$a->strings['Nickname is already registered. Please choose another.'] = 'Nickname is already registered. Please choose another.';
$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'SERIOUS ERROR: Generation of security keys failed.';
$a->strings['An error occurred during registration. Please try again.'] = 'An error occurred during registration. Please try again.';
$a->strings['An error occurred creating your default profile. Please try again.'] = 'An error occurred creating your default profile. Please try again.';
$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registration successful. Please check your email for further instructions.';
$a->strings['Failed to send email message. Here is the message that failed.'] = 'Failed to send email message. Here is the message that failed.';
$a->strings['Your registration can not be processed.'] = 'Your registration can not be processed.';
$a->strings['Your registration is pending approval by the site owner.'] = 'Your registration is pending approval by the site owner.';
$a->strings["You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'.";
$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.';
$a->strings["Your OpenID \x28optional\x29: "] = "Your OpenID \x28optional\x29: ";
$a->strings['Members of this network prefer to communicate with real people who use their real names.'] = 'Members of this network prefer to communicate with real people who use their real names.';
$a->strings['Include your profile in member directory?'] = 'Include your profile in member directory?';
$a->strings['Registration'] = 'Registration';
$a->strings['Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '] = 'Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': ';
$a->strings['Your Email Address: '] = 'Your Email Address: ';
$a->strings['Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.'] = 'Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.';
$a->strings['Choose a nickname: '] = 'Choose a nickname: ';
$a->strings['Please login.'] = 'Please login.';
$a->strings['Account approved.'] = 'Account approved.';
$a->strings['Remove My Account'] = 'Remove My Account';
$a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'This will completely remove your account. Once this has been done it is not recoverable.';
$a->strings['Please enter your password for verification:'] = 'Please enter your password for verification:';
$a->strings['No results.'] = 'No results.';
$a->strings['Passwords do not match. Password unchanged.'] = 'Passwords do not match. Password unchanged.';
$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Empty passwords are not allowed. Password unchanged.';
$a->strings['Password changed.'] = 'Password changed.';
$a->strings['Password update failed. Please try again.'] = 'Password update failed. Please try again.';
$a->strings[' Please use a shorter name.'] = ' Please use a shorter name.';
$a->strings[' Name too short.'] = ' Name too short.';
$a->strings[' Not valid email.'] = ' Not valid email.';
$a->strings[' Cannot change to that email.'] = ' Cannot change to that email.';
$a->strings['Settings updated.'] = 'Settings updated.';
$a->strings['Plugin Settings'] = 'Plugin Settings';
$a->strings['Account Settings'] = 'Account Settings';
$a->strings['No Plugin settings configured'] = 'No Plugin settings configured';
$a->strings['Normal Account'] = 'Normal Account';
$a->strings['This account is a normal personal profile'] = 'This account is a normal personal profile';
$a->strings['Soapbox Account'] = 'Soapbox Account';
$a->strings['Automatically approve all connection/friend requests as read-only fans'] = 'Automatically approve all connection/friend requests as read-only fans';
$a->strings['Community/Celebrity Account'] = 'Community/Celebrity Account';
$a->strings['Automatically approve all connection/friend requests as read-write fans'] = 'Automatically approve all connection/friend requests as read-write fans';
$a->strings['Automatic Friend Account'] = 'Automatic Friend Account';
$a->strings['Automatically approve all connection/friend requests as friends'] = 'Automatically approve all connection/friend requests as friends';
$a->strings['OpenID: '] = 'OpenID: ';
$a->strings["&nbsp;\x28Optional\x29 Allow this OpenID to login to this account."] = "&nbsp;\x28Optional\x29 Allow this OpenID to login to this account.";
$a->strings['Publish your default profile in site directory?'] = 'Publish your default profile in site directory?';
$a->strings['Publish your default profile in global social directory?'] = 'Publish your default profile in global social directory?';
$a->strings['Profile is <strong>not published</strong>.'] = 'Profile is <strong>not published</strong>.';
$a->strings['Your Identity Address is'] = 'Your Identity Address is';
$a->strings['Export Personal Data'] = 'Export Personal Data';
$a->strings['Basic Settings'] = 'Basic Settings';
$a->strings['Full Name:'] = 'Full Name:';
$a->strings['Email Address:'] = 'Email Address:';
$a->strings['Your Timezone:'] = 'Your Timezone:';
$a->strings['Default Post Location:'] = 'Default Post Location:';
$a->strings['Use Browser Location:'] = 'Use Browser Location:';
$a->strings['Display Theme:'] = 'Display Theme:';
$a->strings['Security and Privacy Settings'] = 'Security and Privacy Settings';
$a->strings['Maximum Friend Requests/Day:'] = 'Maximum Friend Requests/Day:';
$a->strings["\x28to prevent spam abuse\x29"] = "\x28to prevent spam abuse\x29";
$a->strings['Allow friends to post to your profile page:'] = 'Allow friends to post to your profile page:';
$a->strings["Automatically expire \x28delete\x29 posts older than"] = "Automatically expire \x28delete\x29 posts older than";
$a->strings['days'] = 'days';
$a->strings['Notification Settings'] = 'Notification Settings';
$a->strings['Send a notification email when:'] = 'Send a notification email when:';
$a->strings['You receive an introduction'] = 'You receive an introduction';
$a->strings['Your introductions are confirmed'] = 'Your introductions are confirmed';
$a->strings['Someone writes on your profile wall'] = 'Someone writes on your profile wall';
$a->strings['Someone writes a followup comment'] = 'Someone writes a followup comment';
$a->strings['You receive a private message'] = 'You receive a private message';
$a->strings['Password Settings'] = 'Password Settings';
$a->strings['Leave password fields blank unless changing'] = 'Leave password fields blank unless changing';
$a->strings['New Password:'] = 'New Password:';
$a->strings['Confirm:'] = 'Confirm:';
$a->strings['Advanced Page Settings'] = 'Advanced Page Settings';
$a->strings['Default Post Permissions'] = 'Default Post Permissions';
$a->strings["\x28click to open/close\x29"] = "\x28click to open/close\x29";
$a->strings['Email/Mailbox Setup'] = 'Email/Mailbox Setup';
$a->strings["If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."] = "If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox.";
$a->strings['IMAP server name:'] = 'IMAP server name:';
$a->strings['IMAP port:'] = 'IMAP port:';
$a->strings["Security \x28TLS or SSL\x29:"] = "Security \x28TLS or SSL\x29:";
$a->strings['Email login name:'] = 'Email login name:';
$a->strings['Email password:'] = 'Email password:';
$a->strings["Reply-to address \x28Optional\x29:"] = "Reply-to address \x28Optional\x29:";
$a->strings['Send public posts to all email contacts:'] = 'Send public posts to all email contacts:';
$a->strings['Email access is disabled on this site.'] = 'Email access is disabled on this site.';
$a->strings['Tag removed'] = 'Tag removed';
$a->strings['Remove Item Tag'] = 'Remove Item Tag';
$a->strings['Select a tag to remove: '] = 'Select a tag to remove: ';
$a->strings['Remove'] = 'Remove';
$a->strings['[Embedded content - reload page to view]'] = '[Embedded content - reload page to view]';
$a->strings['No contacts.'] = 'No contacts.';
$a->strings['File upload failed.'] = 'File upload failed.';
$a->strings['Image exceeds size limit of %d'] = 'Image exceeds size limit of %d';
$a->strings['Visible To:'] = 'Visible To:';
$a->strings['everybody'] = 'everybody';
$a->strings['Groups'] = 'Groups';
$a->strings['Except For:'] = 'Except For:';
$a->strings['Logged out.'] = 'Logged out.';
$a->strings['Image/photo'] = 'Image/photo';
$a->strings['Unknown | Not categorised'] = 'Unknown | Not categorised';
$a->strings['Block immediately'] = 'Block immediately';
$a->strings['Shady, spammer, self-marketer'] = 'Shady, spammer, self-marketer';
$a->strings['Known to me, but no opinion'] = 'Known to me, but no opinion';
$a->strings['OK, probably harmless'] = 'OK, probably harmless';
$a->strings['Reputable, has my trust'] = 'Reputable, has my trust';
$a->strings['Frequently'] = 'Frequently';
$a->strings['Hourly'] = 'Hourly';
$a->strings['Twice daily'] = 'Twice daily';
$a->strings['Daily'] = 'Daily';
$a->strings['Weekly'] = 'Weekly';
$a->strings['Monthly'] = 'Monthly';
$a->strings['View %s\'s profile'] = 'View %s\'s profile';
$a->strings['View in context'] = 'View in context';
$a->strings['See more posts like this'] = 'See more posts like this';
$a->strings['See all %d comments'] = 'See all %d comments';
$a->strings['to'] = 'to';
$a->strings['Wall-to-Wall'] = 'Wall-to-Wall';
$a->strings['via Wall-To-Wall:'] = 'via Wall-To-Wall:';
$a->strings['%s likes this.'] = '%s likes this.';
$a->strings['%s doesn\'t like this.'] = '%s doesn\'t like this.';
$a->strings['<span %1$s>%2$d people</span> like this.'] = '<span %1$s>%2$d people</span> like this.';
$a->strings['<span %1$s>%2$d people</span> don\'t like this.'] = '<span %1$s>%2$d people</span> don\'t like this.';
$a->strings['and'] = 'and';
$a->strings[', and %d other people'] = ', and %d other people';
$a->strings['%s like this.'] = '%s like this.';
$a->strings['%s don\'t like this.'] = '%s don\'t like this.';
$a->strings['Please enter a YouTube link:'] = 'Please enter a YouTube link:';
$a->strings["Please enter a video\x28.ogg\x29 link/URL:"] = "Please enter a video\x28.ogg\x29 link/URL:";
$a->strings["Please enter an audio\x28.ogg\x29 link/URL:"] = "Please enter an audio\x28.ogg\x29 link/URL:";
$a->strings['Where are you right now?'] = 'Where are you right now?';
$a->strings['Enter a title for this item'] = 'Enter a title for this item';
$a->strings['Set title'] = 'Set title';
$a->strings['Miscellaneous'] = 'Miscellaneous';
$a->strings['less than a second ago'] = 'less than a second ago';
$a->strings['year'] = 'year';
$a->strings['years'] = 'years';
$a->strings['month'] = 'month';
$a->strings['months'] = 'months';
$a->strings['week'] = 'week';
$a->strings['weeks'] = 'weeks';
$a->strings['day'] = 'day';
$a->strings['hour'] = 'hour';
$a->strings['hours'] = 'hours';
$a->strings['minute'] = 'minute';
$a->strings['minutes'] = 'minutes';
$a->strings['second'] = 'second';
$a->strings['seconds'] = 'seconds';
$a->strings[' ago'] = ' ago';
$a->strings['Cannot locate DNS info for database server \'%s\''] = 'Cannot locate DNS info for database server \'%s\'';
$a->strings['Create a new group'] = 'Create a new group';
$a->strings['Everybody'] = 'Everybody';
$a->strings['Birthday:'] = 'Birthday:';
$a->strings['Home'] = 'Home';
$a->strings['Apps'] = 'Apps';
$a->strings['Directory'] = 'Directory';
$a->strings['Network'] = 'Network';
$a->strings['Manage'] = 'Manage';
$a->strings['Settings'] = 'Settings';
$a->strings["\x28no subject\x29"] = "\x28no subject\x29";
$a->strings['Embedding disabled'] = 'Embedding disabled';
$a->strings['From: '] = 'From: ';
$a->strings['j F, Y'] = 'j F, Y';
$a->strings['j F'] = 'j F';
$a->strings['Age:'] = 'Age:';
$a->strings['<span class="heart">&hearts;</span> Status:'] = '<span class="heart">&hearts;</span> Status:';
$a->strings['Religion:'] = 'Religion:';
$a->strings['About:'] = 'About:';
$a->strings['Hobbies/Interests:'] = 'Hobbies/Interests:';
$a->strings['Contact information and Social Networks:'] = 'Contact information and Social Networks:';
$a->strings['Musical interests:'] = 'Musical interests:';
$a->strings['Books, literature:'] = 'Books, literature:';
$a->strings['Television:'] = 'Television:';
$a->strings['Film/dance/culture/entertainment:'] = 'Film/dance/culture/entertainment:';
$a->strings['Love/Romance:'] = 'Love/Romance:';
$a->strings['Work/employment:'] = 'Work/employment:';
$a->strings['School/education:'] = 'School/education:';
$a->strings['Male'] = 'Male';
$a->strings['Female'] = 'Female';
$a->strings['Currently Male'] = 'Currently Male';
$a->strings['Currently Female'] = 'Currently Female';
$a->strings['Mostly Male'] = 'Mostly Male';
$a->strings['Mostly Female'] = 'Mostly Female';
$a->strings['Transgender'] = 'Transgender';
$a->strings['Intersex'] = 'Intersex';
$a->strings['Transsexual'] = 'Transsexual';
$a->strings['Hermaphrodite'] = 'Hermaphrodite';
$a->strings['Neuter'] = 'Neuter';
$a->strings['Non-specific'] = 'Non-specific';
$a->strings['Other'] = 'Other';
$a->strings['Undecided'] = 'Undecided';
$a->strings['Males'] = 'Males';
$a->strings['Females'] = 'Females';
$a->strings['Gay'] = 'Gay';
$a->strings['Lesbian'] = 'Lesbian';
$a->strings['No Preference'] = 'No Preference';
$a->strings['Bisexual'] = 'Bisexual';
$a->strings['Autosexual'] = 'Autosexual';
$a->strings['Abstinent'] = 'Abstinent';
$a->strings['Virgin'] = 'Virgin';
$a->strings['Deviant'] = 'Deviant';
$a->strings['Fetish'] = 'Fetish';
$a->strings['Oodles'] = 'Oodles';
$a->strings['Nonsexual'] = 'Nonsexual';
$a->strings['Single'] = 'Single';
$a->strings['Lonely'] = 'Lonely';
$a->strings['Available'] = 'Available';
$a->strings['Unavailable'] = 'Unavailable';
$a->strings['Dating'] = 'Dating';
$a->strings['Unfaithful'] = 'Unfaithful';
$a->strings['Sex Addict'] = 'Sex Addict';
$a->strings['Friends'] = 'Friends';
$a->strings['Friends/Benefits'] = 'Friends/Benefits';
$a->strings['Casual'] = 'Casual';
$a->strings['Engaged'] = 'Engaged';
$a->strings['Married'] = 'Married';
$a->strings['Partners'] = 'Partners';
$a->strings['Cohabiting'] = 'Cohabiting';
$a->strings['Happy'] = 'Happy';
$a->strings['Not Looking'] = 'Not Looking';
$a->strings['Swinger'] = 'Swinger';
$a->strings['Betrayed'] = 'Betrayed';
$a->strings['Separated'] = 'Separated';
$a->strings['Unstable'] = 'Unstable';
$a->strings['Divorced'] = 'Divorced';
$a->strings['Widowed'] = 'Widowed';
$a->strings['Uncertain'] = 'Uncertain';
$a->strings['Complicated'] = 'Complicated';
$a->strings['Don\'t care'] = 'Don\'t care';
$a->strings['Ask me'] = 'Ask me';
$a->strings['Facebook disabled'] = 'Facebook disabled';
$a->strings['Updating contacts'] = 'Updating contacts';
$a->strings['Facebook API key is missing.'] = 'Facebook API key is missing.';
$a->strings['Facebook Connect'] = 'Facebook Connect';
$a->strings['Install Facebook connector for this account.'] = 'Install Facebook connector for this account.';
$a->strings['Remove Facebook connector'] = 'Remove Facebook connector';
$a->strings['Post to Facebook by default'] = 'Post to Facebook by default';
$a->strings['Facebook'] = 'Facebook';
$a->strings['Facebook Connector Settings'] = 'Facebook Connector Settings';
$a->strings['Post to Facebook'] = 'Post to Facebook';
$a->strings['Post to Facebook cancelled because of multi-network access permission conflict.'] = 'Post to Facebook cancelled because of multi-network access permission conflict.';
$a->strings['Image: '] = 'Image: ';
$a->strings['View on Friendika'] = 'View on Friendika';
$a->strings['Select files to upload: '] = 'Select files to upload: ';
$a->strings['Use the following controls only if the Java uploader [above] fails to launch.'] = 'Use the following controls only if the Java uploader [above] fails to launch.';
$a->strings['Upload a file'] = 'Upload a file';
$a->strings['Drop files here to upload'] = 'Drop files here to upload';
$a->strings['Failed'] = 'Failed';
$a->strings['No files were uploaded.'] = 'No files were uploaded.';
$a->strings['Uploaded file is empty'] = 'Uploaded file is empty';
$a->strings['Uploaded file is too large'] = 'Uploaded file is too large';
$a->strings['File has an invalid extension, it should be one of '] = 'File has an invalid extension, it should be one of ';
$a->strings['Upload was cancelled, or server error encountered'] = 'Upload was cancelled, or server error encountered';
$a->strings['OEmbed settings updated'] = 'OEmbed settings updated';
$a->strings['URL to embed:'] = 'URL to embed:';
$a->strings['Randplace Settings'] = 'Randplace Settings';
$a->strings['Enable Randplace Plugin'] = 'Enable Randplace Plugin';
$a->strings['Post to StatusNet'] = 'Post to StatusNet';
$a->strings['Please contact your site administrator.<br />The provided API URL is not valid.'] = 'Please contact your site administrator.<br />The provided API URL is not valid.';
$a->strings['We could not contact the StatusNet API with the Path you entered.'] = 'We could not contact the StatusNet API with the Path you entered.';
$a->strings['StatusNet settings updated.'] = 'StatusNet settings updated.';
$a->strings['StatusNet Posting Settings'] = 'StatusNet Posting Settings';
$a->strings['Globally Available StatusNet OAuthKeys'] = 'Globally Available StatusNet OAuthKeys';
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance \x28see below\x29."] = "There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance \x28see below\x29.";
$a->strings['Provide your own OAuth Credentials'] = 'Provide your own OAuth Credentials';
$a->strings['No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation.'] = 'No consumer key pair for StatusNet found. Register your Friendika Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendika installation at your favorited StatusNet installation.';
$a->strings['OAuth Consumer Key'] = 'OAuth Consumer Key';
$a->strings['OAuth Consumer Secret'] = 'OAuth Consumer Secret';
$a->strings["Base API Path \x28remember the trailing /\x29"] = "Base API Path \x28remember the trailing /\x29";
$a->strings['To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet.'] = 'To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet.';
$a->strings['Log in with StatusNet'] = 'Log in with StatusNet';
$a->strings['Copy the security code from StatusNet here'] = 'Copy the security code from StatusNet here';
$a->strings['Cancel StatusNet Connection'] = 'Cancel StatusNet Connection';
$a->strings['Currently connected to: '] = 'Currently connected to: ';
$a->strings['If enabled all your <strong>public</strong> postings will be posted to the associated StatusNet account.'] = 'If enabled all your <strong>public</strong> postings will be posted to the associated StatusNet account.';
$a->strings['Allow posting to StatusNet'] = 'Allow posting to StatusNet';
$a->strings['Send public postings to StatusNet by default'] = 'Send public postings to StatusNet by default';
$a->strings['Clear OAuth configuration'] = 'Clear OAuth configuration';
$a->strings['Three Dimensional Tic-Tac-Toe'] = 'Three Dimensional Tic-Tac-Toe';
$a->strings['3D Tic-Tac-Toe'] = '3D Tic-Tac-Toe';
$a->strings['New game'] = 'New game';
$a->strings['New game with handicap'] = 'New game with handicap';
$a->strings['Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '] = 'Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. ';
$a->strings['In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.'] = 'In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.';
$a->strings['The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.'] = 'The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.';
$a->strings['You go first...'] = 'You go first...';
$a->strings['I\'m going first this time...'] = 'I\'m going first this time...';
$a->strings['You won!'] = 'You won!';
$a->strings['"Cat" game!'] = '"Cat" game!';
$a->strings['I won!'] = 'I won!';
$a->strings['Post to Twitter'] = 'Post to Twitter';
$a->strings['Twitter Posting Settings'] = 'Twitter Posting Settings';
$a->strings['No consumer key pair for Twitter found. Please contact your site administrator.'] = 'No consumer key pair for Twitter found. Please contact your site administrator.';
$a->strings['At this Friendika instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter.'] = 'At this Friendika instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter.';
$a->strings['Copy the PIN from Twitter here'] = 'Copy the PIN from Twitter here';
$a->strings['If enabled all your <strong>public</strong> postings will be posted to the associated Twitter account as well.'] = 'If enabled all your <strong>public</strong> postings will be posted to the associated Twitter account as well.';
$a->strings['Send public postings to Twitter'] = 'Send public postings to Twitter';
$a->strings['Connect on Friendika!'] = 'Connect on Friendika!';
$a->strings['Widgets key: '] = 'Widgets key: ';
$a->strings["Plugin Settings"] = "Plugin Settings";
$a->strings['Africa/Abidjan'] = 'Africa/Abidjan';
$a->strings['Africa/Accra'] = 'Africa/Accra';
$a->strings['Africa/Addis_Ababa'] = 'Africa/Addis_Ababa';
$a->strings['Africa/Algiers'] = 'Africa/Algiers';
$a->strings['Africa/Asmara'] = 'Africa/Asmara';
$a->strings['Africa/Asmera'] = 'Africa/Asmera';
$a->strings['Africa/Bamako'] = 'Africa/Bamako';
$a->strings['Africa/Bangui'] = 'Africa/Bangui';
$a->strings['Africa/Banjul'] = 'Africa/Banjul';
$a->strings['Africa/Bissau'] = 'Africa/Bissau';
$a->strings['Africa/Blantyre'] = 'Africa/Blantyre';
$a->strings['Africa/Brazzaville'] = 'Africa/Brazzaville';
$a->strings['Africa/Bujumbura'] = 'Africa/Bujumbura';
$a->strings['Africa/Cairo'] = 'Africa/Cairo';
$a->strings['Africa/Casablanca'] = 'Africa/Casablanca';
$a->strings['Africa/Ceuta'] = 'Africa/Ceuta';
$a->strings['Africa/Conakry'] = 'Africa/Conakry';
$a->strings['Africa/Dakar'] = 'Africa/Dakar';
$a->strings['Africa/Dar_es_Salaam'] = 'Africa/Dar_es_Salaam';
$a->strings['Africa/Djibouti'] = 'Africa/Djibouti';
$a->strings['Africa/Douala'] = 'Africa/Douala';
$a->strings['Africa/El_Aaiun'] = 'Africa/El_Aaiun';
$a->strings['Africa/Freetown'] = 'Africa/Freetown';
$a->strings['Africa/Gaborone'] = 'Africa/Gaborone';
$a->strings['Africa/Harare'] = 'Africa/Harare';
$a->strings['Africa/Johannesburg'] = 'Africa/Johannesburg';
$a->strings['Africa/Kampala'] = 'Africa/Kampala';
$a->strings['Africa/Khartoum'] = 'Africa/Khartoum';
$a->strings['Africa/Kigali'] = 'Africa/Kigali';
$a->strings['Africa/Kinshasa'] = 'Africa/Kinshasa';
$a->strings['Africa/Lagos'] = 'Africa/Lagos';
$a->strings['Africa/Libreville'] = 'Africa/Libreville';
$a->strings['Africa/Lome'] = 'Africa/Lome';
$a->strings['Africa/Luanda'] = 'Africa/Luanda';
$a->strings['Africa/Lubumbashi'] = 'Africa/Lubumbashi';
$a->strings['Africa/Lusaka'] = 'Africa/Lusaka';
$a->strings['Africa/Malabo'] = 'Africa/Malabo';
$a->strings['Africa/Maputo'] = 'Africa/Maputo';
$a->strings['Africa/Maseru'] = 'Africa/Maseru';
$a->strings['Africa/Mbabane'] = 'Africa/Mbabane';
$a->strings['Africa/Mogadishu'] = 'Africa/Mogadishu';
$a->strings['Africa/Monrovia'] = 'Africa/Monrovia';
$a->strings['Africa/Nairobi'] = 'Africa/Nairobi';
$a->strings['Africa/Ndjamena'] = 'Africa/Ndjamena';
$a->strings['Africa/Niamey'] = 'Africa/Niamey';
$a->strings['Africa/Nouakchott'] = 'Africa/Nouakchott';
$a->strings['Africa/Ouagadougou'] = 'Africa/Ouagadougou';
$a->strings['Africa/Porto-Novo'] = 'Africa/Porto-Novo';
$a->strings['Africa/Sao_Tome'] = 'Africa/Sao_Tome';
$a->strings['Africa/Timbuktu'] = 'Africa/Timbuktu';
$a->strings['Africa/Tripoli'] = 'Africa/Tripoli';
$a->strings['Africa/Tunis'] = 'Africa/Tunis';
$a->strings['Africa/Windhoek'] = 'Africa/Windhoek';
$a->strings['America/Adak'] = 'America/Adak';
$a->strings['America/Anchorage'] = 'America/Anchorage';
$a->strings['America/Anguilla'] = 'America/Anguilla';
$a->strings['America/Antigua'] = 'America/Antigua';
$a->strings['America/Araguaina'] = 'America/Araguaina';
$a->strings['America/Argentina/Buenos_Aires'] = 'America/Argentina/Buenos_Aires';
$a->strings['America/Argentina/Catamarca'] = 'America/Argentina/Catamarca';
$a->strings['America/Argentina/ComodRivadavia'] = 'America/Argentina/ComodRivadavia';
$a->strings['America/Argentina/Cordoba'] = 'America/Argentina/Cordoba';
$a->strings['America/Argentina/Jujuy'] = 'America/Argentina/Jujuy';
$a->strings['America/Argentina/La_Rioja'] = 'America/Argentina/La_Rioja';
$a->strings['America/Argentina/Mendoza'] = 'America/Argentina/Mendoza';
$a->strings['America/Argentina/Rio_Gallegos'] = 'America/Argentina/Rio_Gallegos';
$a->strings['America/Argentina/Salta'] = 'America/Argentina/Salta';
$a->strings['America/Argentina/San_Juan'] = 'America/Argentina/San_Juan';
$a->strings['America/Argentina/San_Luis'] = 'America/Argentina/San_Luis';
$a->strings['America/Argentina/Tucuman'] = 'America/Argentina/Tucuman';
$a->strings['America/Argentina/Ushuaia'] = 'America/Argentina/Ushuaia';
$a->strings['America/Aruba'] = 'America/Aruba';
$a->strings['America/Asuncion'] = 'America/Asuncion';
$a->strings['America/Atikokan'] = 'America/Atikokan';
$a->strings['America/Atka'] = 'America/Atka';
$a->strings['America/Bahia'] = 'America/Bahia';
$a->strings['America/Barbados'] = 'America/Barbados';
$a->strings['America/Belem'] = 'America/Belem';
$a->strings['America/Belize'] = 'America/Belize';
$a->strings['America/Blanc-Sablon'] = 'America/Blanc-Sablon';
$a->strings['America/Boa_Vista'] = 'America/Boa_Vista';
$a->strings['America/Bogota'] = 'America/Bogota';
$a->strings['America/Boise'] = 'America/Boise';
$a->strings['America/Buenos_Aires'] = 'America/Buenos_Aires';
$a->strings['America/Cambridge_Bay'] = 'America/Cambridge_Bay';
$a->strings['America/Campo_Grande'] = 'America/Campo_Grande';
$a->strings['America/Cancun'] = 'America/Cancun';
$a->strings['America/Caracas'] = 'America/Caracas';
$a->strings['America/Catamarca'] = 'America/Catamarca';
$a->strings['America/Cayenne'] = 'America/Cayenne';
$a->strings['America/Cayman'] = 'America/Cayman';
$a->strings['America/Chicago'] = 'America/Chicago';
$a->strings['America/Chihuahua'] = 'America/Chihuahua';
$a->strings['America/Coral_Harbour'] = 'America/Coral_Harbour';
$a->strings['America/Cordoba'] = 'America/Cordoba';
$a->strings['America/Costa_Rica'] = 'America/Costa_Rica';
$a->strings['America/Cuiaba'] = 'America/Cuiaba';
$a->strings['America/Curacao'] = 'America/Curacao';
$a->strings['America/Danmarkshavn'] = 'America/Danmarkshavn';
$a->strings['America/Dawson'] = 'America/Dawson';
$a->strings['America/Dawson_Creek'] = 'America/Dawson_Creek';
$a->strings['America/Denver'] = 'America/Denver';
$a->strings['America/Detroit'] = 'America/Detroit';
$a->strings['America/Dominica'] = 'America/Dominica';
$a->strings['America/Edmonton'] = 'America/Edmonton';
$a->strings['America/Eirunepe'] = 'America/Eirunepe';
$a->strings['America/El_Salvador'] = 'America/El_Salvador';
$a->strings['America/Ensenada'] = 'America/Ensenada';
$a->strings['America/Fort_Wayne'] = 'America/Fort_Wayne';
$a->strings['America/Fortaleza'] = 'America/Fortaleza';
$a->strings['America/Glace_Bay'] = 'America/Glace_Bay';
$a->strings['America/Godthab'] = 'America/Godthab';
$a->strings['America/Goose_Bay'] = 'America/Goose_Bay';
$a->strings['America/Grand_Turk'] = 'America/Grand_Turk';
$a->strings['America/Grenada'] = 'America/Grenada';
$a->strings['America/Guadeloupe'] = 'America/Guadeloupe';
$a->strings['America/Guatemala'] = 'America/Guatemala';
$a->strings['America/Guayaquil'] = 'America/Guayaquil';
$a->strings['America/Guyana'] = 'America/Guyana';
$a->strings['America/Halifax'] = 'America/Halifax';
$a->strings['America/Havana'] = 'America/Havana';
$a->strings['America/Hermosillo'] = 'America/Hermosillo';
$a->strings['America/Indiana/Indianapolis'] = 'America/Indiana/Indianapolis';
$a->strings['America/Indiana/Knox'] = 'America/Indiana/Knox';
$a->strings['America/Indiana/Marengo'] = 'America/Indiana/Marengo';
$a->strings['America/Indiana/Petersburg'] = 'America/Indiana/Petersburg';
$a->strings['America/Indiana/Tell_City'] = 'America/Indiana/Tell_City';
$a->strings['America/Indiana/Vevay'] = 'America/Indiana/Vevay';
$a->strings['America/Indiana/Vincennes'] = 'America/Indiana/Vincennes';
$a->strings['America/Indiana/Winamac'] = 'America/Indiana/Winamac';
$a->strings['America/Indianapolis'] = 'America/Indianapolis';
$a->strings['America/Inuvik'] = 'America/Inuvik';
$a->strings['America/Iqaluit'] = 'America/Iqaluit';
$a->strings['America/Jamaica'] = 'America/Jamaica';
$a->strings['America/Jujuy'] = 'America/Jujuy';
$a->strings['America/Juneau'] = 'America/Juneau';
$a->strings['America/Kentucky/Louisville'] = 'America/Kentucky/Louisville';
$a->strings['America/Kentucky/Monticello'] = 'America/Kentucky/Monticello';
$a->strings['America/Knox_IN'] = 'America/Knox_IN';
$a->strings['America/La_Paz'] = 'America/La_Paz';
$a->strings['America/Lima'] = 'America/Lima';
$a->strings['America/Los_Angeles'] = 'America/Los_Angeles';
$a->strings['America/Louisville'] = 'America/Louisville';
$a->strings['America/Maceio'] = 'America/Maceio';
$a->strings['America/Managua'] = 'America/Managua';
$a->strings['America/Manaus'] = 'America/Manaus';
$a->strings['America/Marigot'] = 'America/Marigot';
$a->strings['America/Martinique'] = 'America/Martinique';
$a->strings['America/Matamoros'] = 'America/Matamoros';
$a->strings['America/Mazatlan'] = 'America/Mazatlan';
$a->strings['America/Mendoza'] = 'America/Mendoza';
$a->strings['America/Menominee'] = 'America/Menominee';
$a->strings['America/Merida'] = 'America/Merida';
$a->strings['America/Mexico_City'] = 'America/Mexico_City';
$a->strings['America/Miquelon'] = 'America/Miquelon';
$a->strings['America/Moncton'] = 'America/Moncton';
$a->strings['America/Monterrey'] = 'America/Monterrey';
$a->strings['America/Montevideo'] = 'America/Montevideo';
$a->strings['America/Montreal'] = 'America/Montreal';
$a->strings['America/Montserrat'] = 'America/Montserrat';
$a->strings['America/Nassau'] = 'America/Nassau';
$a->strings['America/New_York'] = 'America/New_York';
$a->strings['America/Nipigon'] = 'America/Nipigon';
$a->strings['America/Nome'] = 'America/Nome';
$a->strings['America/Noronha'] = 'America/Noronha';
$a->strings['America/North_Dakota/Center'] = 'America/North_Dakota/Center';
$a->strings['America/North_Dakota/New_Salem'] = 'America/North_Dakota/New_Salem';
$a->strings['America/Ojinaga'] = 'America/Ojinaga';
$a->strings['America/Panama'] = 'America/Panama';
$a->strings['America/Pangnirtung'] = 'America/Pangnirtung';
$a->strings['America/Paramaribo'] = 'America/Paramaribo';
$a->strings['America/Phoenix'] = 'America/Phoenix';
$a->strings['America/Port-au-Prince'] = 'America/Port-au-Prince';
$a->strings['America/Port_of_Spain'] = 'America/Port_of_Spain';
$a->strings['America/Porto_Acre'] = 'America/Porto_Acre';
$a->strings['America/Porto_Velho'] = 'America/Porto_Velho';
$a->strings['America/Puerto_Rico'] = 'America/Puerto_Rico';
$a->strings['America/Rainy_River'] = 'America/Rainy_River';
$a->strings['America/Rankin_Inlet'] = 'America/Rankin_Inlet';
$a->strings['America/Recife'] = 'America/Recife';
$a->strings['America/Regina'] = 'America/Regina';
$a->strings['America/Resolute'] = 'America/Resolute';
$a->strings['America/Rio_Branco'] = 'America/Rio_Branco';
$a->strings['America/Rosario'] = 'America/Rosario';
$a->strings['America/Santa_Isabel'] = 'America/Santa_Isabel';
$a->strings['America/Santarem'] = 'America/Santarem';
$a->strings['America/Santiago'] = 'America/Santiago';
$a->strings['America/Santo_Domingo'] = 'America/Santo_Domingo';
$a->strings['America/Sao_Paulo'] = 'America/Sao_Paulo';
$a->strings['America/Scoresbysund'] = 'America/Scoresbysund';
$a->strings['America/Shiprock'] = 'America/Shiprock';
$a->strings['America/St_Barthelemy'] = 'America/St_Barthelemy';
$a->strings['America/St_Johns'] = 'America/St_Johns';
$a->strings['America/St_Kitts'] = 'America/St_Kitts';
$a->strings['America/St_Lucia'] = 'America/St_Lucia';
$a->strings['America/St_Thomas'] = 'America/St_Thomas';
$a->strings['America/St_Vincent'] = 'America/St_Vincent';
$a->strings['America/Swift_Current'] = 'America/Swift_Current';
$a->strings['America/Tegucigalpa'] = 'America/Tegucigalpa';
$a->strings['America/Thule'] = 'America/Thule';
$a->strings['America/Thunder_Bay'] = 'America/Thunder_Bay';
$a->strings['America/Tijuana'] = 'America/Tijuana';
$a->strings['America/Toronto'] = 'America/Toronto';
$a->strings['America/Tortola'] = 'America/Tortola';
$a->strings['America/Vancouver'] = 'America/Vancouver';
$a->strings['America/Virgin'] = 'America/Virgin';
$a->strings['America/Whitehorse'] = 'America/Whitehorse';
$a->strings['America/Winnipeg'] = 'America/Winnipeg';
$a->strings['America/Yakutat'] = 'America/Yakutat';
$a->strings['America/Yellowknife'] = 'America/Yellowknife';
$a->strings['Antarctica/Casey'] = 'Antarctica/Casey';
$a->strings['Antarctica/Davis'] = 'Antarctica/Davis';
$a->strings['Antarctica/DumontDUrville'] = 'Antarctica/DumontDUrville';
$a->strings['Antarctica/Macquarie'] = 'Antarctica/Macquarie';
$a->strings['Antarctica/Mawson'] = 'Antarctica/Mawson';
$a->strings['Antarctica/McMurdo'] = 'Antarctica/McMurdo';
$a->strings['Antarctica/Palmer'] = 'Antarctica/Palmer';
$a->strings['Antarctica/Rothera'] = 'Antarctica/Rothera';
$a->strings['Antarctica/South_Pole'] = 'Antarctica/South_Pole';
$a->strings['Antarctica/Syowa'] = 'Antarctica/Syowa';
$a->strings['Antarctica/Vostok'] = 'Antarctica/Vostok';
$a->strings['Arctic/Longyearbyen'] = 'Arctic/Longyearbyen';
$a->strings['Asia/Aden'] = 'Asia/Aden';
$a->strings['Asia/Almaty'] = 'Asia/Almaty';
$a->strings['Asia/Amman'] = 'Asia/Amman';
$a->strings['Asia/Anadyr'] = 'Asia/Anadyr';
$a->strings['Asia/Aqtau'] = 'Asia/Aqtau';
$a->strings['Asia/Aqtobe'] = 'Asia/Aqtobe';
$a->strings['Asia/Ashgabat'] = 'Asia/Ashgabat';
$a->strings['Asia/Ashkhabad'] = 'Asia/Ashkhabad';
$a->strings['Asia/Baghdad'] = 'Asia/Baghdad';
$a->strings['Asia/Bahrain'] = 'Asia/Bahrain';
$a->strings['Asia/Baku'] = 'Asia/Baku';
$a->strings['Asia/Bangkok'] = 'Asia/Bangkok';
$a->strings['Asia/Beirut'] = 'Asia/Beirut';
$a->strings['Asia/Bishkek'] = 'Asia/Bishkek';
$a->strings['Asia/Brunei'] = 'Asia/Brunei';
$a->strings['Asia/Calcutta'] = 'Asia/Calcutta';
$a->strings['Asia/Choibalsan'] = 'Asia/Choibalsan';
$a->strings['Asia/Chongqing'] = 'Asia/Chongqing';
$a->strings['Asia/Chungking'] = 'Asia/Chungking';
$a->strings['Asia/Colombo'] = 'Asia/Colombo';
$a->strings['Asia/Dacca'] = 'Asia/Dacca';
$a->strings['Asia/Damascus'] = 'Asia/Damascus';
$a->strings['Asia/Dhaka'] = 'Asia/Dhaka';
$a->strings['Asia/Dili'] = 'Asia/Dili';
$a->strings['Asia/Dubai'] = 'Asia/Dubai';
$a->strings['Asia/Dushanbe'] = 'Asia/Dushanbe';
$a->strings['Asia/Gaza'] = 'Asia/Gaza';
$a->strings['Asia/Harbin'] = 'Asia/Harbin';
$a->strings['Asia/Ho_Chi_Minh'] = 'Asia/Ho_Chi_Minh';
$a->strings['Asia/Hong_Kong'] = 'Asia/Hong_Kong';
$a->strings['Asia/Hovd'] = 'Asia/Hovd';
$a->strings['Asia/Irkutsk'] = 'Asia/Irkutsk';
$a->strings['Asia/Istanbul'] = 'Asia/Istanbul';
$a->strings['Asia/Jakarta'] = 'Asia/Jakarta';
$a->strings['Asia/Jayapura'] = 'Asia/Jayapura';
$a->strings['Asia/Jerusalem'] = 'Asia/Jerusalem';
$a->strings['Asia/Kabul'] = 'Asia/Kabul';
$a->strings['Asia/Kamchatka'] = 'Asia/Kamchatka';
$a->strings['Asia/Karachi'] = 'Asia/Karachi';
$a->strings['Asia/Kashgar'] = 'Asia/Kashgar';
$a->strings['Asia/Kathmandu'] = 'Asia/Kathmandu';
$a->strings['Asia/Katmandu'] = 'Asia/Katmandu';
$a->strings['Asia/Kolkata'] = 'Asia/Kolkata';
$a->strings['Asia/Krasnoyarsk'] = 'Asia/Krasnoyarsk';
$a->strings['Asia/Kuala_Lumpur'] = 'Asia/Kuala_Lumpur';
$a->strings['Asia/Kuching'] = 'Asia/Kuching';
$a->strings['Asia/Kuwait'] = 'Asia/Kuwait';
$a->strings['Asia/Macao'] = 'Asia/Macao';
$a->strings['Asia/Macau'] = 'Asia/Macau';
$a->strings['Asia/Magadan'] = 'Asia/Magadan';
$a->strings['Asia/Makassar'] = 'Asia/Makassar';
$a->strings['Asia/Manila'] = 'Asia/Manila';
$a->strings['Asia/Muscat'] = 'Asia/Muscat';
$a->strings['Asia/Nicosia'] = 'Asia/Nicosia';
$a->strings['Asia/Novokuznetsk'] = 'Asia/Novokuznetsk';
$a->strings['Asia/Novosibirsk'] = 'Asia/Novosibirsk';
$a->strings['Asia/Omsk'] = 'Asia/Omsk';
$a->strings['Asia/Oral'] = 'Asia/Oral';
$a->strings['Asia/Phnom_Penh'] = 'Asia/Phnom_Penh';
$a->strings['Asia/Pontianak'] = 'Asia/Pontianak';
$a->strings['Asia/Pyongyang'] = 'Asia/Pyongyang';
$a->strings['Asia/Qatar'] = 'Asia/Qatar';
$a->strings['Asia/Qyzylorda'] = 'Asia/Qyzylorda';
$a->strings['Asia/Rangoon'] = 'Asia/Rangoon';
$a->strings['Asia/Riyadh'] = 'Asia/Riyadh';
$a->strings['Asia/Saigon'] = 'Asia/Saigon';
$a->strings['Asia/Sakhalin'] = 'Asia/Sakhalin';
$a->strings['Asia/Samarkand'] = 'Asia/Samarkand';
$a->strings['Asia/Seoul'] = 'Asia/Seoul';
$a->strings['Asia/Shanghai'] = 'Asia/Shanghai';
$a->strings['Asia/Singapore'] = 'Asia/Singapore';
$a->strings['Asia/Taipei'] = 'Asia/Taipei';
$a->strings['Asia/Tashkent'] = 'Asia/Tashkent';
$a->strings['Asia/Tbilisi'] = 'Asia/Tbilisi';
$a->strings['Asia/Tehran'] = 'Asia/Tehran';
$a->strings['Asia/Tel_Aviv'] = 'Asia/Tel_Aviv';
$a->strings['Asia/Thimbu'] = 'Asia/Thimbu';
$a->strings['Asia/Thimphu'] = 'Asia/Thimphu';
$a->strings['Asia/Tokyo'] = 'Asia/Tokyo';
$a->strings['Asia/Ujung_Pandang'] = 'Asia/Ujung_Pandang';
$a->strings['Asia/Ulaanbaatar'] = 'Asia/Ulaanbaatar';
$a->strings['Asia/Ulan_Bator'] = 'Asia/Ulan_Bator';
$a->strings['Asia/Urumqi'] = 'Asia/Urumqi';
$a->strings['Asia/Vientiane'] = 'Asia/Vientiane';
$a->strings['Asia/Vladivostok'] = 'Asia/Vladivostok';
$a->strings['Asia/Yakutsk'] = 'Asia/Yakutsk';
$a->strings['Asia/Yekaterinburg'] = 'Asia/Yekaterinburg';
$a->strings['Asia/Yerevan'] = 'Asia/Yerevan';
$a->strings['Atlantic/Azores'] = 'Atlantic/Azores';
$a->strings['Atlantic/Bermuda'] = 'Atlantic/Bermuda';
$a->strings['Atlantic/Canary'] = 'Atlantic/Canary';
$a->strings['Atlantic/Cape_Verde'] = 'Atlantic/Cape_Verde';
$a->strings['Atlantic/Faeroe'] = 'Atlantic/Faeroe';
$a->strings['Atlantic/Faroe'] = 'Atlantic/Faroe';
$a->strings['Atlantic/Jan_Mayen'] = 'Atlantic/Jan_Mayen';
$a->strings['Atlantic/Madeira'] = 'Atlantic/Madeira';
$a->strings['Atlantic/Reykjavik'] = 'Atlantic/Reykjavik';
$a->strings['Atlantic/South_Georgia'] = 'Atlantic/South_Georgia';
$a->strings['Atlantic/St_Helena'] = 'Atlantic/St_Helena';
$a->strings['Atlantic/Stanley'] = 'Atlantic/Stanley';
$a->strings['Australia/ACT'] = 'Australia/ACT';
$a->strings['Australia/Adelaide'] = 'Australia/Adelaide';
$a->strings['Australia/Brisbane'] = 'Australia/Brisbane';
$a->strings['Australia/Broken_Hill'] = 'Australia/Broken_Hill';
$a->strings['Australia/Canberra'] = 'Australia/Canberra';
$a->strings['Australia/Currie'] = 'Australia/Currie';
$a->strings['Australia/Darwin'] = 'Australia/Darwin';
$a->strings['Australia/Eucla'] = 'Australia/Eucla';
$a->strings['Australia/Hobart'] = 'Australia/Hobart';
$a->strings['Australia/LHI'] = 'Australia/LHI';
$a->strings['Australia/Lindeman'] = 'Australia/Lindeman';
$a->strings['Australia/Lord_Howe'] = 'Australia/Lord_Howe';
$a->strings['Australia/Melbourne'] = 'Australia/Melbourne';
$a->strings['Australia/North'] = 'Australia/North';
$a->strings['Australia/NSW'] = 'Australia/NSW';
$a->strings['Australia/Perth'] = 'Australia/Perth';
$a->strings['Australia/Queensland'] = 'Australia/Queensland';
$a->strings['Australia/South'] = 'Australia/South';
$a->strings['Australia/Sydney'] = 'Australia/Sydney';
$a->strings['Australia/Tasmania'] = 'Australia/Tasmania';
$a->strings['Australia/Victoria'] = 'Australia/Victoria';
$a->strings['Australia/West'] = 'Australia/West';
$a->strings['Australia/Yancowinna'] = 'Australia/Yancowinna';
$a->strings['Brazil/Acre'] = 'Brazil/Acre';
$a->strings['Brazil/DeNoronha'] = 'Brazil/DeNoronha';
$a->strings['Brazil/East'] = 'Brazil/East';
$a->strings['Brazil/West'] = 'Brazil/West';
$a->strings['Canada/Atlantic'] = 'Canada/Atlantic';
$a->strings['Canada/Central'] = 'Canada/Central';
$a->strings['Canada/East-Saskatchewan'] = 'Canada/East-Saskatchewan';
$a->strings['Canada/Eastern'] = 'Canada/Eastern';
$a->strings['Canada/Mountain'] = 'Canada/Mountain';
$a->strings['Canada/Newfoundland'] = 'Canada/Newfoundland';
$a->strings['Canada/Pacific'] = 'Canada/Pacific';
$a->strings['Canada/Saskatchewan'] = 'Canada/Saskatchewan';
$a->strings['Canada/Yukon'] = 'Canada/Yukon';
$a->strings['CET'] = 'CET';
$a->strings['Chile/Continental'] = 'Chile/Continental';
$a->strings['Chile/EasterIsland'] = 'Chile/EasterIsland';
$a->strings['CST6CDT'] = 'CST6CDT';
$a->strings['Cuba'] = 'Cuba';
$a->strings['EET'] = 'EET';
$a->strings['Egypt'] = 'Egypt';
$a->strings['Eire'] = 'Eire';
$a->strings['EST'] = 'EST';
$a->strings['EST5EDT'] = 'EST5EDT';
$a->strings['Etc/GMT'] = 'Etc/GMT';
$a->strings['Etc/GMT+0'] = 'Etc/GMT+0';
$a->strings['Etc/GMT+1'] = 'Etc/GMT+1';
$a->strings['Etc/GMT+10'] = 'Etc/GMT+10';
$a->strings['Etc/GMT+11'] = 'Etc/GMT+11';
$a->strings['Etc/GMT+12'] = 'Etc/GMT+12';
$a->strings['Etc/GMT+2'] = 'Etc/GMT+2';
$a->strings['Etc/GMT+3'] = 'Etc/GMT+3';
$a->strings['Etc/GMT+4'] = 'Etc/GMT+4';
$a->strings['Etc/GMT+5'] = 'Etc/GMT+5';
$a->strings['Etc/GMT+6'] = 'Etc/GMT+6';
$a->strings['Etc/GMT+7'] = 'Etc/GMT+7';
$a->strings['Etc/GMT+8'] = 'Etc/GMT+8';
$a->strings['Etc/GMT+9'] = 'Etc/GMT+9';
$a->strings['Etc/GMT-0'] = 'Etc/GMT-0';
$a->strings['Etc/GMT-1'] = 'Etc/GMT-1';
$a->strings['Etc/GMT-10'] = 'Etc/GMT-10';
$a->strings['Etc/GMT-11'] = 'Etc/GMT-11';
$a->strings['Etc/GMT-12'] = 'Etc/GMT-12';
$a->strings['Etc/GMT-13'] = 'Etc/GMT-13';
$a->strings['Etc/GMT-14'] = 'Etc/GMT-14';
$a->strings['Etc/GMT-2'] = 'Etc/GMT-2';
$a->strings['Etc/GMT-3'] = 'Etc/GMT-3';
$a->strings['Etc/GMT-4'] = 'Etc/GMT-4';
$a->strings['Etc/GMT-5'] = 'Etc/GMT-5';
$a->strings['Etc/GMT-6'] = 'Etc/GMT-6';
$a->strings['Etc/GMT-7'] = 'Etc/GMT-7';
$a->strings['Etc/GMT-8'] = 'Etc/GMT-8';
$a->strings['Etc/GMT-9'] = 'Etc/GMT-9';
$a->strings['Etc/GMT0'] = 'Etc/GMT0';
$a->strings['Etc/Greenwich'] = 'Etc/Greenwich';
$a->strings['Etc/UCT'] = 'Etc/UCT';
$a->strings['Etc/Universal'] = 'Etc/Universal';
$a->strings['Etc/UTC'] = 'Etc/UTC';
$a->strings['Etc/Zulu'] = 'Etc/Zulu';
$a->strings['Europe/Amsterdam'] = 'Europe/Amsterdam';
$a->strings['Europe/Andorra'] = 'Europe/Andorra';
$a->strings['Europe/Athens'] = 'Europe/Athens';
$a->strings['Europe/Belfast'] = 'Europe/Belfast';
$a->strings['Europe/Belgrade'] = 'Europe/Belgrade';
$a->strings['Europe/Berlin'] = 'Europe/Berlin';
$a->strings['Europe/Bratislava'] = 'Europe/Bratislava';
$a->strings['Europe/Brussels'] = 'Europe/Brussels';
$a->strings['Europe/Bucharest'] = 'Europe/Bucharest';
$a->strings['Europe/Budapest'] = 'Europe/Budapest';
$a->strings['Europe/Chisinau'] = 'Europe/Chisinau';
$a->strings['Europe/Copenhagen'] = 'Europe/Copenhagen';
$a->strings['Europe/Dublin'] = 'Europe/Dublin';
$a->strings['Europe/Gibraltar'] = 'Europe/Gibraltar';
$a->strings['Europe/Guernsey'] = 'Europe/Guernsey';
$a->strings['Europe/Helsinki'] = 'Europe/Helsinki';
$a->strings['Europe/Isle_of_Man'] = 'Europe/Isle_of_Man';
$a->strings['Europe/Istanbul'] = 'Europe/Istanbul';
$a->strings['Europe/Jersey'] = 'Europe/Jersey';
$a->strings['Europe/Kaliningrad'] = 'Europe/Kaliningrad';
$a->strings['Europe/Kiev'] = 'Europe/Kiev';
$a->strings['Europe/Lisbon'] = 'Europe/Lisbon';
$a->strings['Europe/Ljubljana'] = 'Europe/Ljubljana';
$a->strings['Europe/London'] = 'Europe/London';
$a->strings['Europe/Luxembourg'] = 'Europe/Luxembourg';
$a->strings['Europe/Madrid'] = 'Europe/Madrid';
$a->strings['Europe/Malta'] = 'Europe/Malta';
$a->strings['Europe/Mariehamn'] = 'Europe/Mariehamn';
$a->strings['Europe/Minsk'] = 'Europe/Minsk';
$a->strings['Europe/Monaco'] = 'Europe/Monaco';
$a->strings['Europe/Moscow'] = 'Europe/Moscow';
$a->strings['Europe/Nicosia'] = 'Europe/Nicosia';
$a->strings['Europe/Oslo'] = 'Europe/Oslo';
$a->strings['Europe/Paris'] = 'Europe/Paris';
$a->strings['Europe/Podgorica'] = 'Europe/Podgorica';
$a->strings['Europe/Prague'] = 'Europe/Prague';
$a->strings['Europe/Riga'] = 'Europe/Riga';
$a->strings['Europe/Rome'] = 'Europe/Rome';
$a->strings['Europe/Samara'] = 'Europe/Samara';
$a->strings['Europe/San_Marino'] = 'Europe/San_Marino';
$a->strings['Europe/Sarajevo'] = 'Europe/Sarajevo';
$a->strings['Europe/Simferopol'] = 'Europe/Simferopol';
$a->strings['Europe/Skopje'] = 'Europe/Skopje';
$a->strings['Europe/Sofia'] = 'Europe/Sofia';
$a->strings['Europe/Stockholm'] = 'Europe/Stockholm';
$a->strings['Europe/Tallinn'] = 'Europe/Tallinn';
$a->strings['Europe/Tirane'] = 'Europe/Tirane';
$a->strings['Europe/Tiraspol'] = 'Europe/Tiraspol';
$a->strings['Europe/Uzhgorod'] = 'Europe/Uzhgorod';
$a->strings['Europe/Vaduz'] = 'Europe/Vaduz';
$a->strings['Europe/Vatican'] = 'Europe/Vatican';
$a->strings['Europe/Vienna'] = 'Europe/Vienna';
$a->strings['Europe/Vilnius'] = 'Europe/Vilnius';
$a->strings['Europe/Volgograd'] = 'Europe/Volgograd';
$a->strings['Europe/Warsaw'] = 'Europe/Warsaw';
$a->strings['Europe/Zagreb'] = 'Europe/Zagreb';
$a->strings['Europe/Zaporozhye'] = 'Europe/Zaporozhye';
$a->strings['Europe/Zurich'] = 'Europe/Zurich';
$a->strings['Factory'] = 'Factory';
$a->strings['GB'] = 'GB';
$a->strings['GB-Eire'] = 'GB-Eire';
$a->strings['GMT'] = 'GMT';
$a->strings['GMT+0'] = 'GMT+0';
$a->strings['GMT-0'] = 'GMT-0';
$a->strings['GMT0'] = 'GMT0';
$a->strings['Greenwich'] = 'Greenwich';
$a->strings['Hongkong'] = 'Hongkong';
$a->strings['HST'] = 'HST';
$a->strings['Iceland'] = 'Iceland';
$a->strings['Indian/Antananarivo'] = 'Indian/Antananarivo';
$a->strings['Indian/Chagos'] = 'Indian/Chagos';
$a->strings['Indian/Christmas'] = 'Indian/Christmas';
$a->strings['Indian/Cocos'] = 'Indian/Cocos';
$a->strings['Indian/Comoro'] = 'Indian/Comoro';
$a->strings['Indian/Kerguelen'] = 'Indian/Kerguelen';
$a->strings['Indian/Mahe'] = 'Indian/Mahe';
$a->strings['Indian/Maldives'] = 'Indian/Maldives';
$a->strings['Indian/Mauritius'] = 'Indian/Mauritius';
$a->strings['Indian/Mayotte'] = 'Indian/Mayotte';
$a->strings['Indian/Reunion'] = 'Indian/Reunion';
$a->strings['Iran'] = 'Iran';
$a->strings['Israel'] = 'Israel';
$a->strings['Jamaica'] = 'Jamaica';
$a->strings['Japan'] = 'Japan';
$a->strings['Kwajalein'] = 'Kwajalein';
$a->strings['Libya'] = 'Libya';
$a->strings['MET'] = 'MET';
$a->strings['Mexico/BajaNorte'] = 'Mexico/BajaNorte';
$a->strings['Mexico/BajaSur'] = 'Mexico/BajaSur';
$a->strings['Mexico/General'] = 'Mexico/General';
$a->strings['MST'] = 'MST';
$a->strings['MST7MDT'] = 'MST7MDT';
$a->strings['Navajo'] = 'Navajo';
$a->strings['NZ'] = 'NZ';
$a->strings['NZ-CHAT'] = 'NZ-CHAT';
$a->strings['Pacific/Apia'] = 'Pacific/Apia';
$a->strings['Pacific/Auckland'] = 'Pacific/Auckland';
$a->strings['Pacific/Chatham'] = 'Pacific/Chatham';
$a->strings['Pacific/Easter'] = 'Pacific/Easter';
$a->strings['Pacific/Efate'] = 'Pacific/Efate';
$a->strings['Pacific/Enderbury'] = 'Pacific/Enderbury';
$a->strings['Pacific/Fakaofo'] = 'Pacific/Fakaofo';
$a->strings['Pacific/Fiji'] = 'Pacific/Fiji';
$a->strings['Pacific/Funafuti'] = 'Pacific/Funafuti';
$a->strings['Pacific/Galapagos'] = 'Pacific/Galapagos';
$a->strings['Pacific/Gambier'] = 'Pacific/Gambier';
$a->strings['Pacific/Guadalcanal'] = 'Pacific/Guadalcanal';
$a->strings['Pacific/Guam'] = 'Pacific/Guam';
$a->strings['Pacific/Honolulu'] = 'Pacific/Honolulu';
$a->strings['Pacific/Johnston'] = 'Pacific/Johnston';
$a->strings['Pacific/Kiritimati'] = 'Pacific/Kiritimati';
$a->strings['Pacific/Kosrae'] = 'Pacific/Kosrae';
$a->strings['Pacific/Kwajalein'] = 'Pacific/Kwajalein';
$a->strings['Pacific/Majuro'] = 'Pacific/Majuro';
$a->strings['Pacific/Marquesas'] = 'Pacific/Marquesas';
$a->strings['Pacific/Midway'] = 'Pacific/Midway';
$a->strings['Pacific/Nauru'] = 'Pacific/Nauru';
$a->strings['Pacific/Niue'] = 'Pacific/Niue';
$a->strings['Pacific/Norfolk'] = 'Pacific/Norfolk';
$a->strings['Pacific/Noumea'] = 'Pacific/Noumea';
$a->strings['Pacific/Pago_Pago'] = 'Pacific/Pago_Pago';
$a->strings['Pacific/Palau'] = 'Pacific/Palau';
$a->strings['Pacific/Pitcairn'] = 'Pacific/Pitcairn';
$a->strings['Pacific/Ponape'] = 'Pacific/Ponape';
$a->strings['Pacific/Port_Moresby'] = 'Pacific/Port_Moresby';
$a->strings['Pacific/Rarotonga'] = 'Pacific/Rarotonga';
$a->strings['Pacific/Saipan'] = 'Pacific/Saipan';
$a->strings['Pacific/Samoa'] = 'Pacific/Samoa';
$a->strings['Pacific/Tahiti'] = 'Pacific/Tahiti';
$a->strings['Pacific/Tarawa'] = 'Pacific/Tarawa';
$a->strings['Pacific/Tongatapu'] = 'Pacific/Tongatapu';
$a->strings['Pacific/Truk'] = 'Pacific/Truk';
$a->strings['Pacific/Wake'] = 'Pacific/Wake';
$a->strings['Pacific/Wallis'] = 'Pacific/Wallis';
$a->strings['Pacific/Yap'] = 'Pacific/Yap';
$a->strings['Poland'] = 'Poland';
$a->strings['Portugal'] = 'Portugal';
$a->strings['PRC'] = 'PRC';
$a->strings['PST8PDT'] = 'PST8PDT';
$a->strings['ROC'] = 'ROC';
$a->strings['ROK'] = 'ROK';
$a->strings['Singapore'] = 'Singapore';
$a->strings['Turkey'] = 'Turkey';
$a->strings['UCT'] = 'UCT';
$a->strings['Universal'] = 'Universal';
$a->strings['US/Alaska'] = 'US/Alaska';
$a->strings['US/Aleutian'] = 'US/Aleutian';
$a->strings['US/Arizona'] = 'US/Arizona';
$a->strings['US/Central'] = 'US/Central';
$a->strings['US/East-Indiana'] = 'US/East-Indiana';
$a->strings['US/Eastern'] = 'US/Eastern';
$a->strings['US/Hawaii'] = 'US/Hawaii';
$a->strings['US/Indiana-Starke'] = 'US/Indiana-Starke';
$a->strings['US/Michigan'] = 'US/Michigan';
$a->strings['US/Mountain'] = 'US/Mountain';
$a->strings['US/Pacific'] = 'US/Pacific';
$a->strings['US/Pacific-New'] = 'US/Pacific-New';
$a->strings['US/Samoa'] = 'US/Samoa';
$a->strings['UTC'] = 'UTC';
$a->strings['W-SU'] = 'W-SU';
$a->strings['WET'] = 'WET';
$a->strings['Zulu'] = 'Zulu';