mirror of
https://github.com/friendica/friendica
synced 2026-01-14 17:48:43 +01:00
move all message display sub-functions from boot.php into conversation.php
This commit is contained in:
parent
38014e9b4d
commit
5654ce926c
9 changed files with 2277 additions and 2166 deletions
155
boot.php
155
boot.php
|
|
@ -1847,38 +1847,6 @@ function allowed_email($email) {
|
|||
return $found;
|
||||
}}
|
||||
|
||||
// Format the like/dislike text for a profile item
|
||||
// $cnt = number of people who like/dislike the item
|
||||
// $arr = array of pre-linked names of likers/dislikers
|
||||
// $type = one of 'like, 'dislike'
|
||||
// $id = item id
|
||||
// returns formatted text
|
||||
|
||||
if(! function_exists('format_like')) {
|
||||
function format_like($cnt,$arr,$type,$id) {
|
||||
$o = '';
|
||||
if($cnt == 1)
|
||||
$o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ;
|
||||
else {
|
||||
$spanatts = 'class="fakelink" onclick="openClose(\'' . $type . 'list-' . $id . '\');"';
|
||||
$o .= (($type === 'like') ?
|
||||
sprintf( t('<span %1$s>%2$d people</span> like this.'), $spanatts, $cnt)
|
||||
:
|
||||
sprintf( t('<span %1$s>%2$d people</span> don\'t like this.'), $spanatts, $cnt) );
|
||||
$o .= EOL ;
|
||||
$total = count($arr);
|
||||
if($total >= MAX_LIKERS)
|
||||
$arr = array_slice($arr, 0, MAX_LIKERS - 1);
|
||||
if($total < MAX_LIKERS)
|
||||
$arr[count($arr)-1] = t('and') . ' ' . $arr[count($arr)-1];
|
||||
$str = implode(', ', $arr);
|
||||
if($total >= MAX_LIKERS)
|
||||
$str .= sprintf( t(', and %d other people'), $total - MAX_LIKERS );
|
||||
$str = (($type === 'like') ? sprintf( t('%s like this.'), $str) : sprintf( t('%s don\'t like this.'), $str));
|
||||
$o .= "\t" . '<div id="' . $type . 'list-' . $id . '" style="display: none;" >' . $str . '</div>';
|
||||
}
|
||||
return $o;
|
||||
}}
|
||||
|
||||
|
||||
// wrapper to load a view template, checking for alternate
|
||||
|
|
@ -1976,29 +1944,6 @@ return str_replace ("%","=",rawurlencode($s));
|
|||
}}
|
||||
|
||||
|
||||
if(! function_exists('like_puller')) {
|
||||
function like_puller($a,$item,&$arr,$mode) {
|
||||
|
||||
$url = '';
|
||||
$sparkle = '';
|
||||
$verb = (($mode === 'like') ? ACTIVITY_LIKE : ACTIVITY_DISLIKE);
|
||||
|
||||
if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) {
|
||||
$url = $item['author-link'];
|
||||
if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === 'dfrn') && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
|
||||
$url = $a->get_baseurl() . '/redir/' . $item['contact-id'];
|
||||
$sparkle = ' class="sparkle" ';
|
||||
}
|
||||
if(! ((isset($arr[$item['parent'] . '-l'])) && (is_array($arr[$item['parent'] . '-l']))))
|
||||
$arr[$item['parent'] . '-l'] = array();
|
||||
if(! isset($arr[$item['parent']]))
|
||||
$arr[$item['parent']] = 1;
|
||||
else
|
||||
$arr[$item['parent']] ++;
|
||||
$arr[$item['parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['author-name'] . '</a>';
|
||||
}
|
||||
return;
|
||||
}}
|
||||
|
||||
if(! function_exists('get_mentions')) {
|
||||
function get_mentions($item) {
|
||||
|
|
@ -2680,106 +2625,6 @@ function unamp($s) {
|
|||
return str_replace('&', '&', $s);
|
||||
}}
|
||||
|
||||
if(! function_exists('extract_item_authors')) {
|
||||
function extract_item_authors($arr,$uid) {
|
||||
|
||||
if((! $uid) || (! is_array($arr)) || (! count($arr)))
|
||||
return array();
|
||||
$urls = array();
|
||||
foreach($arr as $rr) {
|
||||
if(! in_array("'" . dbesc($rr['author-link']) . "'",$urls))
|
||||
$urls[] = "'" . dbesc($rr['author-link']) . "'";
|
||||
}
|
||||
|
||||
// pre-quoted, don't put quotes on %s
|
||||
if(count($urls)) {
|
||||
$r = q("SELECT `id`,`network`,`url` FROM `contact` WHERE `uid` = %d AND `url` IN ( %s ) AND `self` = 0 AND `blocked` = 0 ",
|
||||
intval($uid),
|
||||
implode(',',$urls)
|
||||
);
|
||||
if(count($r)) {
|
||||
$ret = array();
|
||||
$authors = array();
|
||||
foreach($r as $rr){
|
||||
if ($rr['network']=='dfrn')
|
||||
$ret[$rr['url']] = $rr['id'];
|
||||
$authors[$r['url']]= $rr;
|
||||
}
|
||||
$a->authors = $authors;
|
||||
return $ret;
|
||||
}
|
||||
}
|
||||
return array();
|
||||
}}
|
||||
|
||||
if(! function_exists('item_photo_menu')){
|
||||
function item_photo_menu($item){
|
||||
$a = get_app();
|
||||
|
||||
if (!isset($a->authors)){
|
||||
$rr = q("SELECT `id`, `network`, `url` FROM `contact` WHERE `uid`=%d AND `self`=0 AND `blocked`=0 ", intval(local_user()));
|
||||
$authors = array();
|
||||
foreach($rr as $r) $authors[$r['url']]= $r;
|
||||
$a->authors = $authors;
|
||||
}
|
||||
|
||||
$contact_url="";
|
||||
$pm_url="";
|
||||
|
||||
$status_link="";
|
||||
$photo_link="";
|
||||
$profile_link = ((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
|
||||
$redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
|
||||
|
||||
// $item['contact-uid'] is only set on profile page and indicates the uid of the user who owns the profile.
|
||||
|
||||
$profile_owner = ((x($item,'contact-uid')) && intval($item['contact-uid']) ? intval($item['contact-uid']) : 0);
|
||||
|
||||
// So we are checking that this is a logged in user on some page that *isn't* a profile page
|
||||
// OR a profile page where the viewer owns the profile.
|
||||
// Then check if we can use a sparkle (redirect) link to the profile by virtue of it being our contact
|
||||
// or a friend's contact that we both have a connection to.
|
||||
|
||||
if((local_user() && ($profile_owner == 0))
|
||||
|| ($profile_owner && $profile_owner == local_user())) {
|
||||
|
||||
if(strlen($item['author-link']) && link_compare($item['author-link'],$item['url']))
|
||||
$redir = $redirect_url;
|
||||
elseif(isset($a->authors[$item['author-link']])) {
|
||||
$redir = $a->get_baseurl() . '/redir/' . $a->authors[$item['author-link']]['id'];
|
||||
$cid = $a->authors[$item['author-link']]['id'];
|
||||
}
|
||||
|
||||
if($item['network'] === 'dfrn' && (! $item['self'])) {
|
||||
$status_link = $redir . "?url=status";
|
||||
$profile_link = $redir . "?url=profile";
|
||||
$photos_link = $redir . "?url=photos";
|
||||
$pm_url = $a->get_baseurl() . '/message/new/' . $cid;
|
||||
}
|
||||
|
||||
$contact_url = $item['self']?"":$a->get_baseurl() . '/contacts/' . (($item['cid']) ? $item['cid'] : $cid);
|
||||
}
|
||||
|
||||
|
||||
$menu = Array(
|
||||
t("View status") => $status_link,
|
||||
t("View profile") => $profile_link,
|
||||
t("View photos") => $photos_link,
|
||||
t("Edit contact") => $contact_url,
|
||||
t("Send PM") => $pm_url,
|
||||
);
|
||||
|
||||
|
||||
$args = array($item, &$menu);
|
||||
|
||||
call_hooks('item_photo_menu', $args);
|
||||
|
||||
$o = "";
|
||||
foreach($menu as $k=>$v){
|
||||
if ($v!="") $o .= "<li><a href='$v'>$k</a></li>\n";
|
||||
}
|
||||
return $o;
|
||||
}}
|
||||
|
||||
if(! function_exists('lang_selector')) {
|
||||
function lang_selector() {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* "Render" a conversation or list of items for HTML display.
|
||||
* There are two major forms of display:
|
||||
* - Sequential or unthreaded ("New Item View" or search results)
|
||||
* - conversation view
|
||||
* The $mode parameter decides between the various renderings and also
|
||||
* figures out how to determine page owner and other contextual items
|
||||
* that are based on unique features of the calling module.
|
||||
*
|
||||
*/
|
||||
|
||||
function conversation(&$a, $items, $mode, $update) {
|
||||
|
||||
|
|
@ -417,4 +427,165 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
$o .= '</div>';
|
||||
|
||||
return $o;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
if(! function_exists('extract_item_authors')) {
|
||||
function extract_item_authors($arr,$uid) {
|
||||
|
||||
if((! $uid) || (! is_array($arr)) || (! count($arr)))
|
||||
return array();
|
||||
$urls = array();
|
||||
foreach($arr as $rr) {
|
||||
if(! in_array("'" . dbesc($rr['author-link']) . "'",$urls))
|
||||
$urls[] = "'" . dbesc($rr['author-link']) . "'";
|
||||
}
|
||||
|
||||
// pre-quoted, don't put quotes on %s
|
||||
if(count($urls)) {
|
||||
$r = q("SELECT `id`,`network`,`url` FROM `contact` WHERE `uid` = %d AND `url` IN ( %s ) AND `self` = 0 AND `blocked` = 0 ",
|
||||
intval($uid),
|
||||
implode(',',$urls)
|
||||
);
|
||||
if(count($r)) {
|
||||
$ret = array();
|
||||
$authors = array();
|
||||
foreach($r as $rr){
|
||||
if ($rr['network']=='dfrn')
|
||||
$ret[$rr['url']] = $rr['id'];
|
||||
$authors[$r['url']]= $rr;
|
||||
}
|
||||
$a->authors = $authors;
|
||||
return $ret;
|
||||
}
|
||||
}
|
||||
return array();
|
||||
}}
|
||||
|
||||
if(! function_exists('item_photo_menu')){
|
||||
function item_photo_menu($item){
|
||||
$a = get_app();
|
||||
|
||||
if (!isset($a->authors)){
|
||||
$rr = q("SELECT `id`, `network`, `url` FROM `contact` WHERE `uid`=%d AND `self`=0 AND `blocked`=0 ", intval(local_user()));
|
||||
$authors = array();
|
||||
foreach($rr as $r) $authors[$r['url']]= $r;
|
||||
$a->authors = $authors;
|
||||
}
|
||||
|
||||
$contact_url="";
|
||||
$pm_url="";
|
||||
|
||||
$status_link="";
|
||||
$photo_link="";
|
||||
$profile_link = ((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
|
||||
$redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
|
||||
|
||||
// $item['contact-uid'] is only set on profile page and indicates the uid of the user who owns the profile.
|
||||
|
||||
$profile_owner = ((x($item,'contact-uid')) && intval($item['contact-uid']) ? intval($item['contact-uid']) : 0);
|
||||
|
||||
// So we are checking that this is a logged in user on some page that *isn't* a profile page
|
||||
// OR a profile page where the viewer owns the profile.
|
||||
// Then check if we can use a sparkle (redirect) link to the profile by virtue of it being our contact
|
||||
// or a friend's contact that we both have a connection to.
|
||||
|
||||
if((local_user() && ($profile_owner == 0))
|
||||
|| ($profile_owner && $profile_owner == local_user())) {
|
||||
|
||||
if(strlen($item['author-link']) && link_compare($item['author-link'],$item['url']))
|
||||
$redir = $redirect_url;
|
||||
elseif(isset($a->authors[$item['author-link']])) {
|
||||
$redir = $a->get_baseurl() . '/redir/' . $a->authors[$item['author-link']]['id'];
|
||||
$cid = $a->authors[$item['author-link']]['id'];
|
||||
}
|
||||
|
||||
if($item['network'] === 'dfrn' && (! $item['self'])) {
|
||||
$status_link = $redir . "?url=status";
|
||||
$profile_link = $redir . "?url=profile";
|
||||
$photos_link = $redir . "?url=photos";
|
||||
$pm_url = $a->get_baseurl() . '/message/new/' . $cid;
|
||||
}
|
||||
|
||||
$contact_url = $item['self']?"":$a->get_baseurl() . '/contacts/' . (($item['cid']) ? $item['cid'] : $cid);
|
||||
}
|
||||
|
||||
|
||||
$menu = Array(
|
||||
t("View status") => $status_link,
|
||||
t("View profile") => $profile_link,
|
||||
t("View photos") => $photos_link,
|
||||
t("Edit contact") => $contact_url,
|
||||
t("Send PM") => $pm_url,
|
||||
);
|
||||
|
||||
|
||||
$args = array($item, &$menu);
|
||||
|
||||
call_hooks('item_photo_menu', $args);
|
||||
|
||||
$o = "";
|
||||
foreach($menu as $k=>$v){
|
||||
if ($v!="") $o .= "<li><a href='$v'>$k</a></li>\n";
|
||||
}
|
||||
return $o;
|
||||
}}
|
||||
|
||||
if(! function_exists('like_puller')) {
|
||||
function like_puller($a,$item,&$arr,$mode) {
|
||||
|
||||
$url = '';
|
||||
$sparkle = '';
|
||||
$verb = (($mode === 'like') ? ACTIVITY_LIKE : ACTIVITY_DISLIKE);
|
||||
|
||||
if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) {
|
||||
$url = $item['author-link'];
|
||||
if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === 'dfrn') && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
|
||||
$url = $a->get_baseurl() . '/redir/' . $item['contact-id'];
|
||||
$sparkle = ' class="sparkle" ';
|
||||
}
|
||||
if(! ((isset($arr[$item['parent'] . '-l'])) && (is_array($arr[$item['parent'] . '-l']))))
|
||||
$arr[$item['parent'] . '-l'] = array();
|
||||
if(! isset($arr[$item['parent']]))
|
||||
$arr[$item['parent']] = 1;
|
||||
else
|
||||
$arr[$item['parent']] ++;
|
||||
$arr[$item['parent'] . '-l'][] = '<a href="'. $url . '"'. $sparkle .'>' . $item['author-name'] . '</a>';
|
||||
}
|
||||
return;
|
||||
}}
|
||||
|
||||
// Format the like/dislike text for a profile item
|
||||
// $cnt = number of people who like/dislike the item
|
||||
// $arr = array of pre-linked names of likers/dislikers
|
||||
// $type = one of 'like, 'dislike'
|
||||
// $id = item id
|
||||
// returns formatted text
|
||||
|
||||
if(! function_exists('format_like')) {
|
||||
function format_like($cnt,$arr,$type,$id) {
|
||||
$o = '';
|
||||
if($cnt == 1)
|
||||
$o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ;
|
||||
else {
|
||||
$spanatts = 'class="fakelink" onclick="openClose(\'' . $type . 'list-' . $id . '\');"';
|
||||
$o .= (($type === 'like') ?
|
||||
sprintf( t('<span %1$s>%2$d people</span> like this.'), $spanatts, $cnt)
|
||||
:
|
||||
sprintf( t('<span %1$s>%2$d people</span> don\'t like this.'), $spanatts, $cnt) );
|
||||
$o .= EOL ;
|
||||
$total = count($arr);
|
||||
if($total >= MAX_LIKERS)
|
||||
$arr = array_slice($arr, 0, MAX_LIKERS - 1);
|
||||
if($total < MAX_LIKERS)
|
||||
$arr[count($arr)-1] = t('and') . ' ' . $arr[count($arr)-1];
|
||||
$str = implode(', ', $arr);
|
||||
if($total >= MAX_LIKERS)
|
||||
$str .= sprintf( t(', and %d other people'), $total - MAX_LIKERS );
|
||||
$str = (($type === 'like') ? sprintf( t('%s like this.'), $str) : sprintf( t('%s don\'t like this.'), $str));
|
||||
$o .= "\t" . '<div id="' . $type . 'list-' . $id . '" style="display: none;" >' . $str . '</div>';
|
||||
}
|
||||
return $o;
|
||||
}}
|
||||
|
|
|
|||
|
|
@ -3,6 +3,11 @@
|
|||
|
||||
function display_content(&$a) {
|
||||
|
||||
require_once("include/bbcode.php");
|
||||
require_once('include/security.php');
|
||||
require_once('include/conversation.php');
|
||||
|
||||
|
||||
$o = '<div id="live-display"></div>' . "\r\n";
|
||||
|
||||
$nick = (($a->argc > 1) ? $a->argv[1] : '');
|
||||
|
|
@ -16,8 +21,6 @@ function display_content(&$a) {
|
|||
return;
|
||||
}
|
||||
|
||||
require_once("include/bbcode.php");
|
||||
require_once('include/security.php');
|
||||
|
||||
|
||||
$groups = array();
|
||||
|
|
@ -113,7 +116,6 @@ function display_content(&$a) {
|
|||
);
|
||||
}
|
||||
|
||||
require_once('include/conversation.php');
|
||||
|
||||
$o .= conversation($a,$r,'display', false);
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,8 @@ function network_init(&$a) {
|
|||
|
||||
function network_content(&$a, $update = 0) {
|
||||
|
||||
require_once('include/conversation.php');
|
||||
|
||||
if(! local_user())
|
||||
return login(false);
|
||||
|
||||
|
|
@ -267,8 +269,6 @@ function network_content(&$a, $update = 0) {
|
|||
|
||||
$mode = (($nouveau) ? 'network-new' : 'network');
|
||||
|
||||
require_once('include/conversation.php');
|
||||
|
||||
$o .= conversation($a,$r,$mode,$update);
|
||||
|
||||
if(! $update) {
|
||||
|
|
|
|||
|
|
@ -657,6 +657,10 @@ function photos_content(&$a) {
|
|||
// photos/name/image/xxxxx/edit
|
||||
|
||||
|
||||
require_once('include/bbcode.php');
|
||||
require_once('include/security.php');
|
||||
require_once('include/conversation.php');
|
||||
|
||||
if(! x($a->data,'user')) {
|
||||
notice( t('No photos selected') . EOL );
|
||||
return;
|
||||
|
|
@ -893,8 +897,7 @@ function photos_content(&$a) {
|
|||
|
||||
if($datatype === 'image') {
|
||||
|
||||
require_once('security.php');
|
||||
require_once('bbcode.php');
|
||||
|
||||
|
||||
$o = '<div id="live-display"></div>' . "\r\n";
|
||||
// fetch image, item containing image, then comments
|
||||
|
|
|
|||
|
|
@ -50,6 +50,7 @@ function profile_content(&$a, $update = 0) {
|
|||
|
||||
require_once("include/bbcode.php");
|
||||
require_once('include/security.php');
|
||||
require_once('include/conversation.php');
|
||||
|
||||
$groups = array();
|
||||
|
||||
|
|
@ -289,7 +290,6 @@ function profile_content(&$a, $update = 0) {
|
|||
$o .= get_birthdays();
|
||||
|
||||
|
||||
require_once('include/conversation.php');
|
||||
|
||||
$o .= conversation($a,$r,'profile',$update);
|
||||
|
||||
|
|
|
|||
|
|
@ -9,6 +9,10 @@ function search_post(&$a) {
|
|||
|
||||
function search_content(&$a) {
|
||||
|
||||
require_once("include/bbcode.php");
|
||||
require_once('include/security.php');
|
||||
require_once('include/conversation.php');
|
||||
|
||||
if(x($_SESSION,'theme'))
|
||||
unset($_SESSION['theme']);
|
||||
|
||||
|
|
@ -26,8 +30,6 @@ function search_content(&$a) {
|
|||
if(! $search)
|
||||
return $o;
|
||||
|
||||
require_once("include/bbcode.php");
|
||||
require_once('include/security.php');
|
||||
|
||||
$sql_extra = "
|
||||
AND `item`.`allow_cid` = ''
|
||||
|
|
@ -81,7 +83,6 @@ function search_content(&$a) {
|
|||
);
|
||||
|
||||
|
||||
require_once('include/conversation.php');
|
||||
|
||||
$o .= conversation($a,$r,'search',false);
|
||||
|
||||
|
|
|
|||
3987
util/messages.po
3987
util/messages.po
|
|
@ -6,1091 +6,49 @@
|
|||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.1.942\n"
|
||||
"Project-Id-Version: 2.1.947\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-04-08 12:29+0200\n"
|
||||
"POT-Creation-Date: 2011-04-12 15:47-0700\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
|
||||
#: ../../index.php:208
|
||||
msgid "Not Found"
|
||||
#: ../../mod/oexchange.php:27
|
||||
msgid "Post successful."
|
||||
msgstr ""
|
||||
|
||||
#: ../../index.php:209
|
||||
msgid "Page not found."
|
||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
|
||||
#: ../../mod/dfrn_request.php:630 ../../addon/js_upload/js_upload.php:41
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: ../../index.php:264 ../../mod/group.php:88
|
||||
msgid "Permission denied"
|
||||
#: ../../mod/tagrm.php:41
|
||||
msgid "Tag removed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../index.php:265 ../../mod/manage.php:75 ../../mod/wall_upload.php:42
|
||||
#: ../../mod/follow.php:8 ../../mod/profile_photo.php:19
|
||||
#: ../../mod/profile_photo.php:133 ../../mod/profile_photo.php:139
|
||||
#: ../../mod/profile_photo.php:150 ../../mod/regmod.php:16
|
||||
#: ../../mod/profiles.php:7 ../../mod/profiles.php:227
|
||||
#: ../../mod/settings.php:15 ../../mod/settings.php:20
|
||||
#: ../../mod/settings.php:211 ../../mod/photos.php:85 ../../mod/photos.php:773
|
||||
#: ../../mod/display.php:311 ../../mod/editpost.php:10 ../../mod/invite.php:13
|
||||
#: ../../mod/invite.php:50 ../../mod/contacts.php:106
|
||||
#: ../../mod/register.php:25 ../../mod/install.php:93 ../../mod/network.php:6
|
||||
#: ../../mod/notifications.php:56 ../../mod/item.php:57 ../../mod/item.php:668
|
||||
#: ../../mod/message.php:8 ../../mod/message.php:116
|
||||
#: ../../mod/dfrn_confirm.php:53 ../../mod/viewcontacts.php:13
|
||||
#: ../../mod/group.php:19 ../../addon/facebook/facebook.php:110
|
||||
msgid "Permission denied."
|
||||
#: ../../mod/tagrm.php:79
|
||||
msgid "Remove Item Tag"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:359
|
||||
msgid "Delete this item?"
|
||||
#: ../../mod/tagrm.php:81
|
||||
msgid "Select a tag to remove: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:360 ../../mod/profile.php:387 ../../mod/photos.php:1108
|
||||
#: ../../mod/display.php:173 ../../mod/network.php:505
|
||||
msgid "Comment"
|
||||
#: ../../mod/tagrm.php:93
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:813
|
||||
msgid "Create a New Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:814 ../../mod/register.php:463 ../../include/nav.php:62
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:820
|
||||
msgid "Nickname or Email address: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:821
|
||||
msgid "Password: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:822 ../../boot.php:828 ../../include/nav.php:45
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:826
|
||||
msgid "Nickname/Email/OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:827
|
||||
msgid "Password (if not OpenID): "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:830
|
||||
msgid "Forgot your password?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:831 ../../mod/lostpass.php:74
|
||||
msgid "Password Reset"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:842 ../../include/nav.php:39
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1083
|
||||
msgid "prev"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1085
|
||||
msgid "first"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1114
|
||||
msgid "last"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1117
|
||||
msgid "next"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1848
|
||||
#: ../../mod/dfrn_poll.php:79 ../../mod/dfrn_poll.php:504
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgid "%s welcomes %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1848
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1852
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1854
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1860
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1863
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1864
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1864
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2025
|
||||
msgid "No contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2033
|
||||
#, php-format
|
||||
msgid "%d Contact"
|
||||
msgid_plural "%d Contacts"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../boot.php:2049 ../../mod/viewcontacts.php:17
|
||||
msgid "View Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2066 ../../mod/search.php:17 ../../include/nav.php:68
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2221 ../../mod/profile.php:8
|
||||
msgid "No profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2278
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2288
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2292
|
||||
msgid ", "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2300 ../../include/profile_advanced.php:23
|
||||
msgid "Gender:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2304
|
||||
msgid "Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2306 ../../include/profile_advanced.php:103
|
||||
msgid "Homepage:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2397
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2397
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2397
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2397
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2397
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2397
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2397
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "January"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "February"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "March"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "April"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "May"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "June"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "July"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "August"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "September"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "October"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "November"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2401
|
||||
msgid "December"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2416
|
||||
msgid "g A l F d"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2433
|
||||
msgid "Birthday Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2434
|
||||
msgid "Birthdays this week:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2435
|
||||
msgid "(Adjusted for local time)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2446
|
||||
msgid "[today]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2643
|
||||
msgid "link to source"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2729
|
||||
msgid "View status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2730
|
||||
msgid "View profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2731
|
||||
msgid "View photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2732 ../../mod/contacts.php:385
|
||||
msgid "Edit contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2733
|
||||
msgid "Send PM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:37
|
||||
#, php-format
|
||||
msgid "Welcome back %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:87
|
||||
msgid "Manage Identities and/or Pages"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:90
|
||||
msgid ""
|
||||
"(Toggle between different identities or community/group pages which share "
|
||||
"your account details.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:92
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:106 ../../mod/profile.php:388
|
||||
#: ../../mod/profiles.php:370 ../../mod/settings.php:364
|
||||
#: ../../mod/photos.php:801 ../../mod/photos.php:858 ../../mod/photos.php:1066
|
||||
#: ../../mod/photos.php:1109 ../../mod/display.php:174 ../../mod/invite.php:64
|
||||
#: ../../mod/contacts.php:264 ../../mod/install.php:133
|
||||
#: ../../mod/network.php:506 ../../mod/group.php:97 ../../mod/group.php:155
|
||||
#: ../../addon/twitter/twitter.php:156 ../../addon/twitter/twitter.php:175
|
||||
#: ../../addon/statusnet/statusnet.php:163
|
||||
#: ../../addon/statusnet/statusnet.php:189
|
||||
#: ../../addon/statusnet/statusnet.php:207
|
||||
#: ../../addon/facebook/facebook.php:151
|
||||
#: ../../addon/randplace/randplace.php:179
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:109
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %d"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:118
|
||||
#: ../../mod/photos.php:571
|
||||
msgid "Unable to process image."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wall_upload.php:79 ../../mod/wall_upload.php:88
|
||||
#: ../../mod/wall_upload.php:95 ../../mod/item.php:212
|
||||
#: ../../mod/message.php:93
|
||||
msgid "Wall Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/wall_upload.php:82 ../../mod/profile_photo.php:236
|
||||
#: ../../mod/photos.php:589
|
||||
msgid "Image upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_notify.php:177 ../../mod/dfrn_notify.php:392
|
||||
#: ../../mod/dfrn_notify.php:478 ../../mod/regmod.php:93
|
||||
#: ../../mod/register.php:329 ../../mod/register.php:366
|
||||
#: ../../mod/dfrn_request.php:547 ../../mod/lostpass.php:39
|
||||
#: ../../mod/item.php:475 ../../mod/item.php:498
|
||||
#: ../../mod/dfrn_confirm.php:649 ../../include/items.php:1420
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_notify.php:179
|
||||
msgid "noreply"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_notify.php:237
|
||||
msgid "New mail received at "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_notify.php:391 ../../mod/dfrn_notify.php:477
|
||||
#, php-format
|
||||
msgid "%s commented on an item at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:102
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:103 ../../include/profile_advanced.php:7
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:104
|
||||
msgid "Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:130 ../../mod/network.php:77
|
||||
#: ../../mod/message.php:172
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:131 ../../mod/network.php:78
|
||||
msgid "Please enter a YouTube link:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:132 ../../mod/network.php:79
|
||||
msgid "Please enter a video(.ogg) link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:133 ../../mod/network.php:80
|
||||
msgid "Please enter an audio(.ogg) link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:134 ../../mod/network.php:81
|
||||
msgid "Where are you right now?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:135 ../../mod/network.php:82
|
||||
msgid "Enter a title for this item"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:158 ../../mod/profile.php:372
|
||||
#: ../../mod/photos.php:1086 ../../mod/display.php:158
|
||||
#: ../../mod/network.php:105 ../../mod/network.php:489
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:159 ../../mod/editpost.php:63
|
||||
#: ../../mod/network.php:106 ../../mod/message.php:188
|
||||
#: ../../mod/message.php:322
|
||||
msgid "Upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:160 ../../mod/editpost.php:64
|
||||
#: ../../mod/network.php:107 ../../mod/message.php:189
|
||||
#: ../../mod/message.php:323
|
||||
msgid "Insert web link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:161 ../../mod/editpost.php:65
|
||||
#: ../../mod/network.php:108
|
||||
msgid "Insert YouTube video"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:162 ../../mod/editpost.php:66
|
||||
#: ../../mod/network.php:109
|
||||
msgid "Insert Vorbis [.ogg] video"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:163 ../../mod/editpost.php:67
|
||||
#: ../../mod/network.php:110
|
||||
msgid "Insert Vorbis [.ogg] audio"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:164 ../../mod/editpost.php:68
|
||||
#: ../../mod/network.php:111
|
||||
msgid "Set your location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:165 ../../mod/editpost.php:69
|
||||
#: ../../mod/network.php:112
|
||||
msgid "Clear browser location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:166 ../../mod/network.php:113
|
||||
msgid "Set title"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:167 ../../mod/profile.php:373
|
||||
#: ../../mod/photos.php:1087 ../../mod/display.php:159
|
||||
#: ../../mod/editpost.php:70 ../../mod/network.php:114
|
||||
#: ../../mod/network.php:490 ../../mod/message.php:190
|
||||
#: ../../mod/message.php:324
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:168 ../../mod/editpost.php:71
|
||||
#: ../../mod/network.php:115
|
||||
msgid "Permission settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:175 ../../mod/editpost.php:77
|
||||
#: ../../mod/network.php:121
|
||||
msgid "CC: email addresses"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:177 ../../mod/editpost.php:79
|
||||
#: ../../mod/network.php:123
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:352 ../../mod/network.php:428
|
||||
#, php-format
|
||||
msgid "See all %d comments"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:363 ../../mod/photos.php:962
|
||||
#: ../../mod/display.php:149 ../../mod/network.php:443
|
||||
msgid "Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:370 ../../mod/photos.php:1084
|
||||
#: ../../mod/display.php:156 ../../mod/network.php:487
|
||||
msgid "I like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:371 ../../mod/photos.php:1085
|
||||
#: ../../mod/display.php:157 ../../mod/network.php:488
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:385 ../../mod/photos.php:1106
|
||||
#: ../../mod/photos.php:1148 ../../mod/photos.php:1177
|
||||
#: ../../mod/display.php:171 ../../mod/network.php:503
|
||||
msgid "This is you"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:411 ../../mod/display.php:224
|
||||
#: ../../mod/editpost.php:62 ../../mod/network.php:513
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:433 ../../mod/photos.php:1205
|
||||
#: ../../mod/display.php:240 ../../mod/network.php:514 ../../mod/group.php:141
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:455 ../../mod/search.php:124
|
||||
#: ../../mod/display.php:264 ../../mod/network.php:330
|
||||
#: ../../mod/network.php:563
|
||||
msgid "View $name's profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:489 ../../mod/display.php:320
|
||||
#: ../../mod/register.php:442 ../../mod/network.php:609
|
||||
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/follow.php:186
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/follow.php:192
|
||||
msgid ""
|
||||
"Limited profile. This person will be unable to receive direct/personal "
|
||||
"notifications from you."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/follow.php:243
|
||||
msgid "Unable to retrieve contact information."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/follow.php:289
|
||||
msgid "following"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:28
|
||||
msgid "Image uploaded but image cropping failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65
|
||||
#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:155
|
||||
#: ../../mod/profile_photo.php:231 ../../mod/profile_photo.php:240
|
||||
#: ../../mod/photos.php:106 ../../mod/photos.php:531 ../../mod/photos.php:850
|
||||
#: ../../mod/photos.php:865 ../../mod/register.php:285
|
||||
#: ../../mod/register.php:292 ../../mod/register.php:299
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68
|
||||
#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:243
|
||||
#, php-format
|
||||
msgid "Image size reduction [%s] failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:95
|
||||
msgid "Unable to process image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:188
|
||||
msgid "Upload File:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:189
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:190
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:191 ../../mod/settings.php:336
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:191
|
||||
msgid "select a photo from your photo albums"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:204
|
||||
msgid "Crop Image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:205
|
||||
msgid "Please adjust the image cropping for optimum viewing."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:206
|
||||
msgid "Done Editing"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:234
|
||||
msgid "Image uploaded successfully."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/home.php:23
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/regmod.php:10
|
||||
msgid "Please login."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/regmod.php:54
|
||||
#, php-format
|
||||
msgid "Registration revoked for %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/regmod.php:92 ../../mod/register.php:328
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/regmod.php:96
|
||||
msgid "Account approved."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:21 ../../mod/profiles.php:237
|
||||
#: ../../mod/profiles.php:342 ../../mod/dfrn_confirm.php:62
|
||||
msgid "Profile not found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:28
|
||||
msgid "Profile Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:199
|
||||
msgid "Profile updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:254
|
||||
msgid "Profile deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:270 ../../mod/profiles.php:301
|
||||
msgid "Profile-"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:289 ../../mod/profiles.php:328
|
||||
msgid "New profile created."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:307
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:354
|
||||
msgid "Hide my contact/friend list from viewers of this profile?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:355 ../../mod/settings.php:289
|
||||
#: ../../mod/settings.php:301 ../../mod/register.php:436
|
||||
#: ../../mod/dfrn_request.php:620
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:356 ../../mod/settings.php:290
|
||||
#: ../../mod/settings.php:302 ../../mod/register.php:437
|
||||
#: ../../mod/dfrn_request.php:621
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:369
|
||||
msgid "Edit Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:371
|
||||
msgid "View this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:372
|
||||
msgid "Create a new profile using these settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:373
|
||||
msgid "Clone this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:374
|
||||
msgid "Delete this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:375
|
||||
msgid "Profile Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:376
|
||||
msgid "Your Full Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:377
|
||||
msgid "Title/Description:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:378
|
||||
msgid "Your Gender:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:379
|
||||
msgid "Birthday (y/m/d):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:380
|
||||
msgid "Street Address:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:381
|
||||
msgid "Locality/City:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:382
|
||||
msgid "Postal/Zip Code:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:383
|
||||
msgid "Country:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:384
|
||||
msgid "Region/State:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:385
|
||||
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:386
|
||||
msgid "Who: (if applicable)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:387
|
||||
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:388 ../../include/profile_advanced.php:90
|
||||
msgid "Sexual Preference:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:389
|
||||
msgid "Homepage URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:390 ../../include/profile_advanced.php:115
|
||||
msgid "Political Views:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:391
|
||||
msgid "Religious Views:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:392
|
||||
msgid "Public Keywords:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:393
|
||||
msgid "Private Keywords:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:394
|
||||
msgid "Example: fishing photography software"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:395
|
||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:396
|
||||
msgid "(Used for searching profiles, never shown to others)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:397
|
||||
msgid "Tell us about yourself..."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:398
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:399
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:400
|
||||
msgid "Musical interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:401
|
||||
msgid "Books, literature"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:402
|
||||
msgid "Television"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:403
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:404
|
||||
msgid "Love/romance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:405
|
||||
msgid "Work/employment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:406
|
||||
msgid "School/education"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:411
|
||||
msgid ""
|
||||
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
||||
"be visible to anybody using the internet."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:421 ../../mod/directory.php:91
|
||||
msgid "Age: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:456 ../../include/nav.php:110
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:457
|
||||
msgid "Change profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:458
|
||||
msgid "Create New Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:470
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:38
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:43
|
||||
msgid "Empty passwords are not allowed. Password unchanged."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:54
|
||||
msgid "Password changed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:56
|
||||
msgid "Password update failed. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:98
|
||||
msgid " Please use a shorter name."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:100
|
||||
msgid " Name too short."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:106
|
||||
msgid " Not valid email."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:108
|
||||
msgid " Cannot change to that email."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:166
|
||||
msgid "Settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:216 ../../mod/settings.php:356
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:217 ../../mod/settings.php:355
|
||||
msgid "Account Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:223
|
||||
msgid "No Plugin settings configured"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:262
|
||||
msgid "Normal Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:263
|
||||
msgid "This account is a normal personal profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:264
|
||||
msgid "Soapbox Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:265
|
||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:266
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:267
|
||||
msgid "Automatically approve all connection/friend requests as read-write fans"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:268
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:269
|
||||
msgid "Automatically approve all connection/friend requests as friends"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:278
|
||||
msgid "OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:278
|
||||
msgid " (Optional) Allow this OpenID to login to this account."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:288
|
||||
msgid "Publish your default profile in site directory?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:300
|
||||
msgid "Publish your default profile in global social directory?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:316
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:341
|
||||
msgid "Your profile address is"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:351
|
||||
msgid "Export Personal Data"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:357
|
||||
msgid "Basic Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:358 ../../include/profile_advanced.php:10
|
||||
msgid "Full Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:359
|
||||
msgid "Email Address:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:360
|
||||
msgid "Your Timezone:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:361
|
||||
msgid "Default Post Location:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:362
|
||||
msgid "Use Browser Location:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:363
|
||||
msgid "Display Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:365
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:366
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:367
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:368
|
||||
msgid "Allow friends to post to your profile page:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:369
|
||||
msgid "Automatically expire (delete) posts older than"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:370 ../../include/datetime.php:154
|
||||
msgid "days"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:371
|
||||
msgid "Notification Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:372
|
||||
msgid "Send a notification email when:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:373
|
||||
msgid "You receive an introduction"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:374
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:375
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:376
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:377
|
||||
msgid "You receive a private message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:378
|
||||
msgid "Password Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:379
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:380
|
||||
msgid "New Password:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:381
|
||||
msgid "Confirm:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:382
|
||||
msgid "Advanced Page Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:397
|
||||
msgid "Default Post Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/search.php:62
|
||||
msgid "No results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/search.php:140 ../../mod/network.php:346
|
||||
msgid "View in context"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:30
|
||||
#: ../../mod/photos.php:30 ../../wip/photos.php:31
|
||||
#: ../../wip/photos-chris.php:41
|
||||
msgid "Photo Albums"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1098,76 +56,166 @@ msgstr ""
|
|||
#: ../../mod/photos.php:850 ../../mod/photos.php:865 ../../mod/photos.php:1235
|
||||
#: ../../mod/photos.php:1246 ../../include/Photo.php:225
|
||||
#: ../../include/Photo.php:232 ../../include/Photo.php:239
|
||||
#: ../../include/items.php:1028 ../../include/items.php:1031
|
||||
#: ../../include/items.php:1034
|
||||
#: ../../include/items.php:1026 ../../include/items.php:1029
|
||||
#: ../../include/items.php:1032 ../../wip/photos.php:35
|
||||
#: ../../wip/photos.php:98 ../../wip/photos.php:731 ../../wip/photos.php:785
|
||||
#: ../../wip/photos.php:800 ../../wip/photos.php:1111
|
||||
#: ../../wip/photos.php:1122 ../../wip/photos-chris.php:45
|
||||
#: ../../wip/photos-chris.php:118 ../../wip/photos-chris.php:778
|
||||
#: ../../wip/photos-chris.php:832 ../../wip/photos-chris.php:847
|
||||
#: ../../wip/photos-chris.php:1158 ../../wip/photos-chris.php:1169
|
||||
msgid "Contact Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:95
|
||||
#: ../../mod/photos.php:85 ../../mod/photos.php:773 ../../mod/editpost.php:10
|
||||
#: ../../mod/install.php:93 ../../mod/notifications.php:56
|
||||
#: ../../mod/contacts.php:106 ../../mod/settings.php:15
|
||||
#: ../../mod/settings.php:20 ../../mod/settings.php:211
|
||||
#: ../../mod/manage.php:75 ../../mod/network.php:6 ../../mod/group.php:19
|
||||
#: ../../mod/viewcontacts.php:13 ../../mod/register.php:25
|
||||
#: ../../mod/regmod.php:16 ../../mod/item.php:57 ../../mod/item.php:668
|
||||
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133
|
||||
#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150
|
||||
#: ../../mod/message.php:8 ../../mod/message.php:116
|
||||
#: ../../mod/wall_upload.php:42 ../../mod/follow.php:8
|
||||
#: ../../mod/display.php:131 ../../mod/profiles.php:7
|
||||
#: ../../mod/profiles.php:227 ../../mod/invite.php:13 ../../mod/invite.php:50
|
||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:110
|
||||
#: ../../wip/photos.php:77 ../../wip/photos.php:723 ../../wip/group.php:19
|
||||
#: ../../wip/photos-chris.php:97 ../../wip/photos-chris.php:770
|
||||
#: ../../index.php:265
|
||||
msgid "Permission denied."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:95 ../../wip/photos.php:87
|
||||
#: ../../wip/photos-chris.php:107
|
||||
msgid "Contact information unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:116
|
||||
#: ../../mod/photos.php:106 ../../mod/photos.php:531 ../../mod/photos.php:850
|
||||
#: ../../mod/photos.php:865 ../../mod/register.php:285
|
||||
#: ../../mod/register.php:292 ../../mod/register.php:299
|
||||
#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65
|
||||
#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:155
|
||||
#: ../../mod/profile_photo.php:231 ../../mod/profile_photo.php:240
|
||||
#: ../../wip/photos.php:98 ../../wip/photos.php:493 ../../wip/photos.php:785
|
||||
#: ../../wip/photos.php:800 ../../wip/photos-chris.php:118
|
||||
#: ../../wip/photos-chris.php:525 ../../wip/photos-chris.php:832
|
||||
#: ../../wip/photos-chris.php:847
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:116 ../../wip/photos.php:108
|
||||
#: ../../wip/photos-chris.php:128
|
||||
msgid "Album not found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:134 ../../mod/photos.php:859
|
||||
#: ../../mod/photos.php:134 ../../mod/photos.php:859 ../../wip/photos.php:126
|
||||
#: ../../wip/photos.php:794 ../../wip/photos-chris.php:146
|
||||
#: ../../wip/photos-chris.php:841
|
||||
msgid "Delete Album"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:197 ../../mod/photos.php:1067
|
||||
#: ../../mod/photos.php:197 ../../mod/photos.php:1067 ../../wip/photos.php:192
|
||||
#: ../../wip/photos.php:955 ../../wip/photos-chris.php:212
|
||||
#: ../../wip/photos-chris.php:1002
|
||||
msgid "Delete Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:469
|
||||
#: ../../mod/photos.php:469 ../../wip/photos.php:442
|
||||
#: ../../wip/photos-chris.php:462
|
||||
msgid "was tagged in a"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:469 ../../mod/like.php:110
|
||||
#: ../../mod/photos.php:469 ../../mod/like.php:110 ../../wip/photos.php:442
|
||||
#: ../../wip/photos-chris.php:462
|
||||
msgid "photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:469
|
||||
#: ../../mod/photos.php:469 ../../wip/photos.php:442
|
||||
#: ../../wip/photos-chris.php:462
|
||||
msgid "by"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:559 ../../addon/js_upload/js_upload.php:306
|
||||
#: ../../wip/photos.php:511 ../../wip/photos-chris.php:555
|
||||
msgid "Image exceeds size limit of "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:661
|
||||
#: ../../mod/photos.php:571 ../../mod/profile_photo.php:118
|
||||
#: ../../mod/wall_upload.php:65 ../../wip/photos.php:520
|
||||
#: ../../wip/photos-chris.php:567
|
||||
msgid "Unable to process image."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:589 ../../mod/profile_photo.php:236
|
||||
#: ../../mod/wall_upload.php:82 ../../wip/photos.php:537
|
||||
#: ../../wip/photos-chris.php:585
|
||||
msgid "Image upload failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:661 ../../wip/photos.php:611
|
||||
#: ../../wip/photos-chris.php:658
|
||||
msgid "No photos selected"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:808
|
||||
#: ../../mod/photos.php:801 ../../mod/photos.php:858 ../../mod/photos.php:1066
|
||||
#: ../../mod/photos.php:1109 ../../mod/install.php:133
|
||||
#: ../../mod/contacts.php:264 ../../mod/settings.php:364
|
||||
#: ../../mod/manage.php:106 ../../mod/group.php:76 ../../mod/group.php:159
|
||||
#: ../../mod/profiles.php:370 ../../mod/invite.php:64
|
||||
#: ../../addon/facebook/facebook.php:151
|
||||
#: ../../addon/randplace/randplace.php:179
|
||||
#: ../../addon/statusnet/statusnet.php:163
|
||||
#: ../../addon/statusnet/statusnet.php:189
|
||||
#: ../../addon/statusnet/statusnet.php:207 ../../addon/twitter/twitter.php:156
|
||||
#: ../../addon/twitter/twitter.php:175 ../../include/conversation.php:307
|
||||
#: ../../wip/photos.php:754 ../../wip/photos.php:793 ../../wip/photos.php:954
|
||||
#: ../../wip/addon/randplace/randplace.php:178 ../../wip/group.php:99
|
||||
#: ../../wip/group.php:176 ../../wip/photos-chris.php:801
|
||||
#: ../../wip/photos-chris.php:840 ../../wip/photos-chris.php:1001
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:808 ../../wip/photos.php:742
|
||||
#: ../../wip/photos-chris.php:789
|
||||
msgid "Upload Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:811 ../../mod/photos.php:854
|
||||
#: ../../mod/photos.php:811 ../../mod/photos.php:854 ../../wip/photos.php:745
|
||||
#: ../../wip/photos.php:789 ../../wip/photos-chris.php:792
|
||||
#: ../../wip/photos-chris.php:836
|
||||
msgid "New album name: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:812
|
||||
#: ../../mod/photos.php:812 ../../wip/photos.php:746
|
||||
#: ../../wip/photos-chris.php:793
|
||||
msgid "or existing album name: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:814 ../../mod/photos.php:1062
|
||||
#: ../../mod/photos.php:814 ../../mod/photos.php:1062 ../../wip/photos.php:749
|
||||
#: ../../wip/photos-chris.php:796
|
||||
msgid "Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:869
|
||||
#: ../../mod/photos.php:869 ../../wip/photos.php:804
|
||||
#: ../../wip/photos-chris.php:851
|
||||
msgid "Edit Album"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:879 ../../mod/photos.php:1265
|
||||
#: ../../mod/photos.php:879 ../../mod/photos.php:1264 ../../wip/photos.php:814
|
||||
#: ../../wip/photos.php:1141 ../../wip/photos-chris.php:861
|
||||
#: ../../wip/photos-chris.php:1188
|
||||
msgid "View Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:909
|
||||
#: ../../mod/photos.php:909 ../../wip/photos.php:843
|
||||
#: ../../wip/photos-chris.php:890
|
||||
msgid "Photo not available"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:956
|
||||
#: ../../mod/photos.php:956 ../../wip/photos.php:864
|
||||
#: ../../wip/photos-chris.php:911
|
||||
msgid "Edit photo"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1175,11 +223,16 @@ msgstr ""
|
|||
msgid "Use as profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:962 ../../include/conversation.php:240
|
||||
msgid "Private Message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:969
|
||||
msgid "<< Prev"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:973
|
||||
#: ../../mod/photos.php:973 ../../wip/photos.php:870
|
||||
#: ../../wip/photos-chris.php:917
|
||||
msgid "View Full Size"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1187,11 +240,13 @@ msgstr ""
|
|||
msgid "Next >>"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1036
|
||||
#: ../../mod/photos.php:1036 ../../wip/photos.php:928
|
||||
#: ../../wip/photos-chris.php:975
|
||||
msgid "Tags: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1046
|
||||
#: ../../mod/photos.php:1046 ../../wip/photos.php:938
|
||||
#: ../../wip/photos-chris.php:985
|
||||
msgid "[Remove any tag]"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1199,54 +254,75 @@ msgstr ""
|
|||
msgid "New album name"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1058
|
||||
#: ../../mod/photos.php:1058 ../../wip/photos.php:948
|
||||
#: ../../wip/photos-chris.php:995
|
||||
msgid "Caption"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1060
|
||||
#: ../../mod/photos.php:1060 ../../wip/photos.php:950
|
||||
#: ../../wip/photos-chris.php:997
|
||||
msgid "Add a Tag"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1064
|
||||
#: ../../mod/photos.php:1064 ../../wip/photos.php:952
|
||||
#: ../../wip/photos-chris.php:999
|
||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1251
|
||||
#: ../../mod/photos.php:1084 ../../include/conversation.php:288
|
||||
msgid "I like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1085 ../../include/conversation.php:289
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1086 ../../mod/network.php:103
|
||||
#: ../../mod/profile.php:158 ../../include/conversation.php:290
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1087 ../../mod/editpost.php:70
|
||||
#: ../../mod/network.php:112 ../../mod/message.php:190
|
||||
#: ../../mod/message.php:324 ../../mod/profile.php:167
|
||||
#: ../../include/conversation.php:291
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1106 ../../mod/photos.php:1148
|
||||
#: ../../mod/photos.php:1177 ../../include/conversation.php:304
|
||||
#: ../../wip/photos.php:986 ../../wip/photos.php:1025
|
||||
#: ../../wip/photos.php:1053 ../../wip/photos-chris.php:1033
|
||||
#: ../../wip/photos-chris.php:1072 ../../wip/photos-chris.php:1100
|
||||
msgid "This is you"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1108 ../../include/conversation.php:306
|
||||
#: ../../boot.php:373
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1205 ../../mod/group.php:146
|
||||
#: ../../include/conversation.php:107 ../../include/conversation.php:317
|
||||
#: ../../wip/group.php:162
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1251 ../../wip/photos.php:1127
|
||||
#: ../../wip/photos-chris.php:1174
|
||||
msgid "Recent Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1255
|
||||
#: ../../mod/photos.php:1255 ../../wip/photos.php:1131
|
||||
#: ../../wip/photos-chris.php:1178
|
||||
msgid "Upload New Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1271
|
||||
#: ../../mod/photos.php:1268 ../../wip/photos.php:1147
|
||||
#: ../../wip/photos-chris.php:1194
|
||||
msgid "View Album"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/display.php:15 ../../mod/display.php:315 ../../mod/item.php:598
|
||||
msgid "Item not found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/display.php:265 ../../mod/network.php:564
|
||||
msgid "View $owner_name's profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/display.php:266 ../../mod/network.php:565
|
||||
msgid "to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/display.php:267 ../../mod/network.php:566
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/display.php:268 ../../mod/network.php:567
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/display.php:308
|
||||
msgid "Item has been removed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
|
||||
msgid "Item not found"
|
||||
msgstr ""
|
||||
|
|
@ -1255,397 +331,240 @@ msgstr ""
|
|||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:28
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
#: ../../mod/editpost.php:62 ../../include/conversation.php:315
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:32
|
||||
#, php-format
|
||||
msgid "Please join my network on %s"
|
||||
#: ../../mod/editpost.php:63 ../../mod/network.php:104
|
||||
#: ../../mod/message.php:188 ../../mod/message.php:322
|
||||
#: ../../mod/profile.php:159
|
||||
msgid "Upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:38
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
#: ../../mod/editpost.php:64 ../../mod/network.php:105
|
||||
#: ../../mod/message.php:189 ../../mod/message.php:323
|
||||
#: ../../mod/profile.php:160
|
||||
msgid "Insert web link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:42
|
||||
#: ../../mod/editpost.php:65 ../../mod/network.php:106
|
||||
#: ../../mod/profile.php:161
|
||||
msgid "Insert YouTube video"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:66 ../../mod/network.php:107
|
||||
#: ../../mod/profile.php:162
|
||||
msgid "Insert Vorbis [.ogg] video"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:67 ../../mod/network.php:108
|
||||
#: ../../mod/profile.php:163
|
||||
msgid "Insert Vorbis [.ogg] audio"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:68 ../../mod/network.php:109
|
||||
#: ../../mod/profile.php:164
|
||||
msgid "Set your location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:69 ../../mod/network.php:110
|
||||
#: ../../mod/profile.php:165
|
||||
msgid "Clear browser location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:71 ../../mod/network.php:113
|
||||
#: ../../mod/profile.php:168
|
||||
msgid "Permission settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:77 ../../mod/network.php:119
|
||||
#: ../../mod/profile.php:175
|
||||
msgid "CC: email addresses"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:79 ../../mod/network.php:121
|
||||
#: ../../mod/profile.php:177
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:92
|
||||
msgid "This introduction has already been accepted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:347
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:352
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:354
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/invite.php:57
|
||||
msgid "Send invitations"
|
||||
#: ../../mod/dfrn_request.php:164
|
||||
msgid "Introduction complete."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:58
|
||||
msgid "Enter email addresses, one per line:"
|
||||
#: ../../mod/dfrn_request.php:188
|
||||
msgid "Unrecoverable protocol error."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:59 ../../mod/message.php:185 ../../mod/message.php:319
|
||||
msgid "Your message:"
|
||||
#: ../../mod/dfrn_request.php:216
|
||||
msgid "Profile unavailable."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:60
|
||||
#: ../../mod/dfrn_request.php:241
|
||||
#, php-format
|
||||
msgid "Please join my social network on %s"
|
||||
msgid "%s has received too many connection requests today."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:61
|
||||
msgid "To accept this invitation, please visit:"
|
||||
#: ../../mod/dfrn_request.php:242
|
||||
msgid "Spam protection measures have been invoked."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:62
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
#: ../../mod/dfrn_request.php:243
|
||||
msgid "Friends are advised to please try again in 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:12
|
||||
msgid "Invite Friends"
|
||||
#: ../../mod/dfrn_request.php:273
|
||||
msgid "Invalid locator"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:15
|
||||
msgid "Find People With Shared Interests"
|
||||
#: ../../mod/dfrn_request.php:292
|
||||
msgid "Unable to resolve your name at the provided location."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:19
|
||||
msgid "Connect/Follow"
|
||||
#: ../../mod/dfrn_request.php:305
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:20
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
#: ../../mod/dfrn_request.php:309
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:21
|
||||
msgid "Follow"
|
||||
#: ../../mod/dfrn_request.php:330
|
||||
msgid "Invalid profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:43 ../../mod/contacts.php:124
|
||||
msgid "Could not access contact record."
|
||||
#: ../../mod/dfrn_request.php:336
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:57
|
||||
msgid "Could not locate selected profile."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:88
|
||||
msgid "Contact updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:90 ../../mod/dfrn_request.php:402
|
||||
#: ../../mod/dfrn_request.php:402 ../../mod/contacts.php:90
|
||||
msgid "Failed to update contact record."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:146
|
||||
msgid "Contact has been blocked"
|
||||
#: ../../mod/dfrn_request.php:423
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:146
|
||||
msgid "Contact has been unblocked"
|
||||
#: ../../mod/dfrn_request.php:477
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:160
|
||||
msgid "Contact has been ignored"
|
||||
#: ../../mod/dfrn_request.php:491
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to <strong>this</"
|
||||
"strong> profile."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:160
|
||||
msgid "Contact has been unignored"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:181
|
||||
msgid "stopped following"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:200
|
||||
msgid "Contact has been removed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:214 ../../mod/dfrn_confirm.php:114
|
||||
msgid "Contact not found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:228 ../../mod/contacts.php:360
|
||||
msgid "Mutual Friendship"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:232 ../../mod/contacts.php:364
|
||||
msgid "is a fan of yours"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:237 ../../mod/contacts.php:368
|
||||
msgid "you are a fan of"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:252
|
||||
msgid "Privacy Unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:253
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:256
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:260
|
||||
msgid "(Update was successful)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:260
|
||||
msgid "(Update was not successful)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:263
|
||||
msgid "Contact Editor"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:265
|
||||
msgid "Profile Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:266
|
||||
#: ../../mod/dfrn_request.php:503
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please choose the profile you would like to display to %s when viewing your "
|
||||
"profile securely."
|
||||
msgid "Welcome home %s."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:267
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:268
|
||||
msgid "Online Reputation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:269
|
||||
msgid ""
|
||||
"Occasionally your friends may wish to inquire about this person's online "
|
||||
"legitimacy."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:270
|
||||
msgid ""
|
||||
"You may help them choose whether or not to interact with this person by "
|
||||
"providing a <em>reputation</em> to guide them."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:271
|
||||
msgid ""
|
||||
"Please take a moment to elaborate on this selection if you feel it could be "
|
||||
"helpful to others."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:272
|
||||
msgid "Visit $name's profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:273
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:274
|
||||
msgid "Ignore contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:275
|
||||
msgid "Delete contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:277
|
||||
msgid "Last updated: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:278
|
||||
msgid "Update public posts: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:280
|
||||
msgid "Update now"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:283
|
||||
msgid "Unblock this contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:283
|
||||
msgid "Block this contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:284
|
||||
msgid "Unignore this contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:284
|
||||
msgid "Ignore this contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:287
|
||||
msgid "Currently blocked"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:288
|
||||
msgid "Currently ignored"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:319 ../../include/acl_selectors.php:140
|
||||
#: ../../include/acl_selectors.php:155 ../../include/nav.php:112
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:321
|
||||
msgid "Show Blocked Connections"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:321
|
||||
msgid "Hide Blocked Connections"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:323 ../../mod/directory.php:38
|
||||
msgid "Finding: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:324 ../../mod/directory.php:40
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:384 ../../mod/viewcontacts.php:44
|
||||
msgid "Visit $username's profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lockview.php:39
|
||||
msgid "Remote privacy information not available."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lockview.php:43
|
||||
msgid "Visible to:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:47
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:62
|
||||
msgid "Please enter the required information."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:74
|
||||
msgid "Please use a shorter name."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:76
|
||||
msgid "Name too short."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:89
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:92
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:95
|
||||
msgid "Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:101
|
||||
msgid "Cannot use that email."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:106
|
||||
msgid ""
|
||||
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
|
||||
"must also begin with a letter."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:112 ../../mod/register.php:212
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:131
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:198
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:234
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:333
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:337
|
||||
msgid "Failed to send email message. Here is the message that failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:342
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:365
|
||||
#: ../../mod/dfrn_request.php:504
|
||||
#, php-format
|
||||
msgid "Registration request at %s"
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:369
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
#: ../../mod/dfrn_request.php:505
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:417
|
||||
#: ../../mod/dfrn_request.php:538 ../../include/items.php:1409
|
||||
msgid "[Name Withheld]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:545
|
||||
msgid "Introduction received at "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:547 ../../mod/lostpass.php:39
|
||||
#: ../../mod/register.php:329 ../../mod/register.php:366
|
||||
#: ../../mod/regmod.php:93 ../../mod/item.php:475 ../../mod/item.php:498
|
||||
#: ../../mod/dfrn_notify.php:189 ../../mod/dfrn_notify.php:404
|
||||
#: ../../mod/dfrn_notify.php:490 ../../mod/dfrn_confirm.php:654
|
||||
#: ../../include/items.php:1418
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:617
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:618
|
||||
msgid "Please answer the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:619
|
||||
msgid "Does $name know you?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:620 ../../mod/settings.php:289
|
||||
#: ../../mod/settings.php:301 ../../mod/register.php:436
|
||||
#: ../../mod/profiles.php:355
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:621 ../../mod/settings.php:290
|
||||
#: ../../mod/settings.php:302 ../../mod/register.php:437
|
||||
#: ../../mod/profiles.php:356
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:622
|
||||
msgid "Add a personal note:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:623
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking 'Register'."
|
||||
"Please enter your profile address from one of the following supported social "
|
||||
"networks:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:418
|
||||
msgid ""
|
||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||
"in the rest of the items."
|
||||
#: ../../mod/dfrn_request.php:624
|
||||
msgid "Friendika"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:419
|
||||
msgid "Your OpenID (optional): "
|
||||
#: ../../mod/dfrn_request.php:625
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:433
|
||||
msgid "Include your profile in member directory?"
|
||||
#: ../../mod/dfrn_request.php:626
|
||||
msgid "Private (secure) network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:449
|
||||
msgid "Registration"
|
||||
#: ../../mod/dfrn_request.php:627
|
||||
msgid "Public (insecure) network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:457
|
||||
msgid "Your Full Name (e.g. Joe Smith): "
|
||||
#: ../../mod/dfrn_request.php:628
|
||||
msgid "Your profile address:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:458
|
||||
msgid "Your Email Address: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:459
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be '<strong>nickname@$sitename</"
|
||||
"strong>'."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:460
|
||||
msgid "Choose a nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/oexchange.php:27
|
||||
msgid "Post successful."
|
||||
#: ../../mod/dfrn_request.php:629
|
||||
msgid "Submit Request"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/install.php:33
|
||||
|
|
@ -1825,44 +744,25 @@ msgstr ""
|
|||
msgid "Errors encountered creating database tables."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:18
|
||||
msgid "Normal View"
|
||||
#: ../../mod/match.php:10
|
||||
msgid "Profile Match"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:20
|
||||
msgid "New Item View"
|
||||
#: ../../mod/match.php:50
|
||||
msgid "No matches"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:59
|
||||
#: ../../mod/lockview.php:39
|
||||
msgid "Remote privacy information not available."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lockview.php:43
|
||||
msgid "Visible to:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/home.php:23
|
||||
#, php-format
|
||||
msgid "%d member"
|
||||
msgid_plural "%d members"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/network.php:60
|
||||
#, php-format
|
||||
msgid "Warning: This group contains %s from an insecure network."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:61
|
||||
msgid "Private messages to this group are at risk of public disclosure."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:166
|
||||
msgid "No such group"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:177
|
||||
msgid "Group is empty"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:181
|
||||
msgid "Group: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:409
|
||||
msgid "See more posts like this"
|
||||
msgid "Welcome to %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notifications.php:28
|
||||
|
|
@ -1945,178 +845,218 @@ msgstr ""
|
|||
msgid "No registrations."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:92
|
||||
msgid "This introduction has already been accepted."
|
||||
#: ../../mod/contacts.php:12
|
||||
msgid "Invite Friends"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:347
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
#: ../../mod/contacts.php:15
|
||||
msgid "Find People With Shared Interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:352
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
#: ../../mod/contacts.php:19
|
||||
msgid "Connect/Follow"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:354
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
#: ../../mod/contacts.php:20
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357
|
||||
#: ../../mod/contacts.php:21
|
||||
msgid "Follow"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:43 ../../mod/contacts.php:124
|
||||
msgid "Could not access contact record."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:57
|
||||
msgid "Could not locate selected profile."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:88
|
||||
msgid "Contact updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:146
|
||||
msgid "Contact has been blocked"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:146
|
||||
msgid "Contact has been unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:160
|
||||
msgid "Contact has been ignored"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:160
|
||||
msgid "Contact has been unignored"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:181
|
||||
msgid "stopped following"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:200
|
||||
msgid "Contact has been removed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:214 ../../mod/dfrn_confirm.php:114
|
||||
msgid "Contact not found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:228 ../../mod/contacts.php:360
|
||||
msgid "Mutual Friendship"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:232 ../../mod/contacts.php:364
|
||||
msgid "is a fan of yours"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:237 ../../mod/contacts.php:368
|
||||
msgid "you are a fan of"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:252
|
||||
msgid "Privacy Unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:253
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:256
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:260
|
||||
msgid "(Update was successful)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:260
|
||||
msgid "(Update was not successful)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:263
|
||||
msgid "Contact Editor"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:265
|
||||
msgid "Profile Visibility"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:266
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:164
|
||||
msgid "Introduction complete."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:188
|
||||
msgid "Unrecoverable protocol error."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:216
|
||||
msgid "Profile unavailable."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:241
|
||||
#, php-format
|
||||
msgid "%s has received too many connection requests today."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:242
|
||||
msgid "Spam protection measures have been invoked."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:243
|
||||
msgid "Friends are advised to please try again in 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:273
|
||||
msgid "Invalid locator"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:292
|
||||
msgid "Unable to resolve your name at the provided location."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:305
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:309
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:330
|
||||
msgid "Invalid profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:336
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:423
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:477
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:491
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to <strong>this</"
|
||||
"strong> profile."
|
||||
"Please choose the profile you would like to display to %s when viewing your "
|
||||
"profile securely."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:503
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
#: ../../mod/contacts.php:267
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:504
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
#: ../../mod/contacts.php:268
|
||||
msgid "Online Reputation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:505
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:538 ../../include/items.php:1411
|
||||
msgid "[Name Withheld]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:545
|
||||
msgid "Introduction received at "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:617
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:618
|
||||
msgid "Please answer the following:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:619
|
||||
msgid "Does $name know you?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:622
|
||||
msgid "Add a personal note:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:623
|
||||
#: ../../mod/contacts.php:269
|
||||
msgid ""
|
||||
"Please enter your profile address from one of the following supported social "
|
||||
"networks:"
|
||||
"Occasionally your friends may wish to inquire about this person's online "
|
||||
"legitimacy."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:624
|
||||
msgid "Friendika"
|
||||
#: ../../mod/contacts.php:270
|
||||
msgid ""
|
||||
"You may help them choose whether or not to interact with this person by "
|
||||
"providing a <em>reputation</em> to guide them."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:625
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
#: ../../mod/contacts.php:271
|
||||
msgid ""
|
||||
"Please take a moment to elaborate on this selection if you feel it could be "
|
||||
"helpful to others."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:626
|
||||
msgid "Private (secure) network"
|
||||
#: ../../mod/contacts.php:272
|
||||
msgid "Visit $name's profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:627
|
||||
msgid "Public (insecure) network"
|
||||
#: ../../mod/contacts.php:273
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:628
|
||||
msgid "Your profile address:"
|
||||
#: ../../mod/contacts.php:274
|
||||
msgid "Ignore contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:629
|
||||
msgid "Submit Request"
|
||||
#: ../../mod/contacts.php:275
|
||||
msgid "Delete contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_request.php:630 ../../mod/tagrm.php:11
|
||||
#: ../../mod/tagrm.php:94 ../../addon/js_upload/js_upload.php:41
|
||||
msgid "Cancel"
|
||||
#: ../../mod/contacts.php:277
|
||||
msgid "Last updated: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:110
|
||||
msgid "status"
|
||||
#: ../../mod/contacts.php:278
|
||||
msgid "Update public posts: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:127
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
#: ../../mod/contacts.php:280
|
||||
msgid "Update now"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:129
|
||||
#, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
#: ../../mod/contacts.php:283
|
||||
msgid "Unblock this contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:283
|
||||
msgid "Block this contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:284
|
||||
msgid "Unignore this contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:284
|
||||
msgid "Ignore this contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:287
|
||||
msgid "Currently blocked"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:288
|
||||
msgid "Currently ignored"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:319 ../../include/nav.php:118
|
||||
#: ../../include/acl_selectors.php:140 ../../include/acl_selectors.php:155
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:321
|
||||
msgid "Show Blocked Connections"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:321
|
||||
msgid "Hide Blocked Connections"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:323 ../../mod/directory.php:38
|
||||
msgid "Finding: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:324 ../../mod/directory.php:40
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:384 ../../mod/viewcontacts.php:44
|
||||
msgid "Visit $username's profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:385 ../../boot.php:2768
|
||||
msgid "Edit contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:27
|
||||
|
|
@ -2134,6 +1074,10 @@ msgid ""
|
|||
"Password reset failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:74 ../../boot.php:844
|
||||
msgid "Password Reset"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:75
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr ""
|
||||
|
|
@ -2174,45 +1118,522 @@ msgstr ""
|
|||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/removeme.php:42 ../../mod/removeme.php:45
|
||||
msgid "Remove My Account"
|
||||
#: ../../mod/settings.php:38
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/removeme.php:43
|
||||
#: ../../mod/settings.php:43
|
||||
msgid "Empty passwords are not allowed. Password unchanged."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:54
|
||||
msgid "Password changed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:56
|
||||
msgid "Password update failed. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:98
|
||||
msgid " Please use a shorter name."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:100
|
||||
msgid " Name too short."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:106
|
||||
msgid " Not valid email."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:108
|
||||
msgid " Cannot change to that email."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:166
|
||||
msgid "Settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:216 ../../mod/settings.php:356
|
||||
msgid "Plugin Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:217 ../../mod/settings.php:355
|
||||
msgid "Account Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:223
|
||||
msgid "No Plugin settings configured"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:262
|
||||
msgid "Normal Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:263
|
||||
msgid "This account is a normal personal profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:264
|
||||
msgid "Soapbox Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:265
|
||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:266
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:267
|
||||
msgid "Automatically approve all connection/friend requests as read-write fans"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:268
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:269
|
||||
msgid "Automatically approve all connection/friend requests as friends"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:278
|
||||
msgid "OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:278
|
||||
msgid " (Optional) Allow this OpenID to login to this account."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:288
|
||||
msgid "Publish your default profile in site directory?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:300
|
||||
msgid "Publish your default profile in global social directory?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:316
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:336 ../../mod/profile_photo.php:191
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:341
|
||||
msgid "Your profile address is"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:351
|
||||
msgid "Export Personal Data"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:357
|
||||
msgid "Basic Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:358 ../../include/profile_advanced.php:10
|
||||
msgid "Full Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:359
|
||||
msgid "Email Address:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:360
|
||||
msgid "Your Timezone:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:361
|
||||
msgid "Default Post Location:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:362
|
||||
msgid "Use Browser Location:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:363
|
||||
msgid "Display Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:365
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:366
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:367
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:368
|
||||
msgid "Allow friends to post to your profile page:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:369
|
||||
msgid "Automatically expire (delete) posts older than"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:370 ../../include/datetime.php:154
|
||||
msgid "days"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:371
|
||||
msgid "Notification Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:372
|
||||
msgid "Send a notification email when:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:373
|
||||
msgid "You receive an introduction"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:374
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:375
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:376
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:377
|
||||
msgid "You receive a private message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:378
|
||||
msgid "Password Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:379
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:380
|
||||
msgid "New Password:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:381
|
||||
msgid "Confirm:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:382
|
||||
msgid "Advanced Page Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:397
|
||||
msgid "Default Post Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:37
|
||||
#, php-format
|
||||
msgid "Welcome back %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:87
|
||||
msgid "Manage Identities and/or Pages"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/manage.php:90
|
||||
msgid ""
|
||||
"This will completely remove your account. Once this has been done it is not "
|
||||
"recoverable."
|
||||
"(Toggle between different identities or community/group pages which share "
|
||||
"your account details.)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/removeme.php:44
|
||||
msgid "Please enter your password for verification:"
|
||||
#: ../../mod/manage.php:92
|
||||
msgid "Select an identity to manage: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/apps.php:6
|
||||
msgid "Applications"
|
||||
#: ../../mod/network.php:18
|
||||
msgid "Normal View"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:32
|
||||
msgid "Global Directory"
|
||||
#: ../../mod/network.php:20
|
||||
msgid "New Item View"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:39
|
||||
msgid "Site Directory"
|
||||
#: ../../mod/network.php:57
|
||||
#, php-format
|
||||
msgid "%d member"
|
||||
msgid_plural "%d members"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/network.php:58
|
||||
#, php-format
|
||||
msgid "Warning: This group contains %s from an insecure network."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:94
|
||||
msgid "Gender: "
|
||||
#: ../../mod/network.php:59
|
||||
msgid "Private messages to this group are at risk of public disclosure."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:120
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
#: ../../mod/network.php:75 ../../mod/message.php:172
|
||||
#: ../../mod/profile.php:130
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/friendika.php:12
|
||||
#: ../../mod/network.php:76 ../../mod/profile.php:131
|
||||
msgid "Please enter a YouTube link:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:77 ../../mod/profile.php:132
|
||||
msgid "Please enter a video(.ogg) link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:78 ../../mod/profile.php:133
|
||||
msgid "Please enter an audio(.ogg) link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:79 ../../mod/profile.php:134
|
||||
msgid "Where are you right now?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:80 ../../mod/profile.php:135
|
||||
msgid "Enter a title for this item"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:111 ../../mod/profile.php:166
|
||||
msgid "Set title"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:164
|
||||
msgid "No such group"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:175
|
||||
msgid "Group is empty"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:179
|
||||
msgid "Group: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:277 ../../mod/register.php:442
|
||||
#: ../../mod/profile.php:300 ../../mod/display.php:140
|
||||
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/group.php:27 ../../wip/group.php:29
|
||||
msgid "Group created."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:33 ../../wip/group.php:35
|
||||
msgid "Could not create group."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:43 ../../mod/group.php:115 ../../wip/group.php:45
|
||||
#: ../../wip/group.php:137
|
||||
msgid "Group not found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:56 ../../wip/group.php:58
|
||||
msgid "Group name changed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:67 ../../wip/group.php:90 ../../index.php:264
|
||||
msgid "Permission denied"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:74 ../../wip/group.php:97
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:75 ../../mod/group.php:158 ../../wip/group.php:98
|
||||
#: ../../wip/group.php:174
|
||||
msgid "Group Name: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:90 ../../wip/group.php:113
|
||||
msgid "Group removed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:92 ../../wip/group.php:115
|
||||
msgid "Unable to remove group."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:156
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:157 ../../wip/group.php:173
|
||||
msgid "Group Editor"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:169
|
||||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:183
|
||||
msgid "All Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/viewcontacts.php:17 ../../boot.php:2051
|
||||
msgid "View Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/viewcontacts.php:32
|
||||
msgid "No contacts."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:47
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:62
|
||||
msgid "Please enter the required information."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:74
|
||||
msgid "Please use a shorter name."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:76
|
||||
msgid "Name too short."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:89
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:92
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:95
|
||||
msgid "Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:101
|
||||
msgid "Cannot use that email."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:106
|
||||
msgid ""
|
||||
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
|
||||
"must also begin with a letter."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:112 ../../mod/register.php:212
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:131
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:198
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:234
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:328 ../../mod/regmod.php:92
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:333
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:337
|
||||
msgid "Failed to send email message. Here is the message that failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:342
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:365
|
||||
#, php-format
|
||||
msgid "Registration request at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:369
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:417
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking 'Register'."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:418
|
||||
msgid ""
|
||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||
"in the rest of the items."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:419
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:433
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:449
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:457
|
||||
msgid "Your Full Name (e.g. Joe Smith): "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:458
|
||||
msgid "Your Email Address: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:459
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be '<strong>nickname@$sitename</"
|
||||
"strong>'."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:460
|
||||
msgid "Choose a nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:463 ../../include/nav.php:62 ../../boot.php:827
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:110
|
||||
msgid "status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:127
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:129
|
||||
#, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/friendika.php:12 ../../wip/friendika.php:12
|
||||
msgid "This is Friendika version"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/friendika.php:13
|
||||
#: ../../mod/friendika.php:13 ../../wip/friendika.php:13
|
||||
msgid "running at web location"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2229,11 +1650,11 @@ msgid ""
|
|||
"a> to learn more about the Friendika project."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/friendika.php:19
|
||||
#: ../../mod/friendika.php:19 ../../wip/friendika.php:15
|
||||
msgid "Bug reports and issues: please visit"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/friendika.php:20
|
||||
#: ../../mod/friendika.php:20 ../../wip/friendika.php:16
|
||||
msgid ""
|
||||
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - "
|
||||
"dot com"
|
||||
|
|
@ -2247,6 +1668,19 @@ msgstr ""
|
|||
msgid "No installed plugins/addons/apps"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/regmod.php:10
|
||||
msgid "Please login."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/regmod.php:54
|
||||
#, php-format
|
||||
msgid "Registration revoked for %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/regmod.php:96
|
||||
msgid "Account approved."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/item.php:37
|
||||
msgid "Unable to locate original post."
|
||||
msgstr ""
|
||||
|
|
@ -2255,6 +1689,12 @@ msgstr ""
|
|||
msgid "Empty post discarded."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/item.php:212 ../../mod/message.php:93
|
||||
#: ../../mod/wall_upload.php:79 ../../mod/wall_upload.php:88
|
||||
#: ../../mod/wall_upload.php:95
|
||||
msgid "Wall Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/item.php:474
|
||||
#, php-format
|
||||
msgid "%s commented on your item at %s"
|
||||
|
|
@ -2290,20 +1730,73 @@ msgstr ""
|
|||
msgid "%s posted an update."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/tagrm.php:41
|
||||
msgid "Tag removed"
|
||||
#: ../../mod/item.php:598 ../../mod/display.php:15 ../../mod/display.php:135
|
||||
msgid "Item not found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/tagrm.php:79
|
||||
msgid "Remove Item Tag"
|
||||
#: ../../mod/profile_photo.php:28
|
||||
msgid "Image uploaded but image cropping failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/tagrm.php:81
|
||||
msgid "Select a tag to remove: "
|
||||
#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68
|
||||
#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:243
|
||||
#, php-format
|
||||
msgid "Image size reduction [%s] failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/tagrm.php:93
|
||||
msgid "Remove"
|
||||
#: ../../mod/profile_photo.php:95
|
||||
msgid "Unable to process image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:109 ../../mod/wall_upload.php:56
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %d"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:188
|
||||
msgid "Upload File:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:189
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:190
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:191
|
||||
msgid "select a photo from your photo albums"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:204
|
||||
msgid "Crop Image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:205
|
||||
msgid "Please adjust the image cropping for optimum viewing."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:206
|
||||
msgid "Done Editing"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile_photo.php:234
|
||||
msgid "Image uploaded successfully."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/removeme.php:42 ../../mod/removeme.php:45
|
||||
msgid "Remove My Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/removeme.php:43
|
||||
msgid ""
|
||||
"This will completely remove your account. Once this has been done it is not "
|
||||
"recoverable."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/removeme.php:44
|
||||
msgid "Please enter your password for verification:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:18
|
||||
|
|
@ -2326,7 +1819,7 @@ msgstr ""
|
|||
msgid "Message could not be sent."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:125 ../../include/nav.php:101
|
||||
#: ../../mod/message.php:125 ../../include/nav.php:107
|
||||
msgid "Messages"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2362,6 +1855,10 @@ msgstr ""
|
|||
msgid "Subject:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:185 ../../mod/message.php:319 ../../mod/invite.php:59
|
||||
msgid "Your message:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/message.php:224
|
||||
msgid "No messages."
|
||||
msgstr ""
|
||||
|
|
@ -2386,6 +1883,345 @@ msgstr ""
|
|||
msgid "Send Reply"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:8 ../../boot.php:2252
|
||||
msgid "No profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:102
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:103 ../../include/profile_advanced.php:7
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:104
|
||||
msgid "Photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../../include/auth.php:105
|
||||
#: ../../include/auth.php:130 ../../include/auth.php:183
|
||||
msgid "Login failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/openid.php:73 ../../include/auth.php:194
|
||||
msgid "Welcome back "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/follow.php:186
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/follow.php:192
|
||||
msgid ""
|
||||
"Limited profile. This person will be unable to receive direct/personal "
|
||||
"notifications from you."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/follow.php:247
|
||||
msgid "Unable to retrieve contact information."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/follow.php:293
|
||||
msgid "following"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/display.php:128
|
||||
msgid "Item has been removed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_notify.php:191
|
||||
msgid "noreply"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_notify.php:249
|
||||
msgid "New mail received at "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_notify.php:403 ../../mod/dfrn_notify.php:489
|
||||
#, php-format
|
||||
msgid "%s commented on an item at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/apps.php:6
|
||||
msgid "Applications"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/search.php:17 ../../include/nav.php:74 ../../boot.php:2097
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/search.php:62
|
||||
msgid "No results."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:21 ../../mod/profiles.php:237
|
||||
#: ../../mod/profiles.php:342 ../../mod/dfrn_confirm.php:62
|
||||
msgid "Profile not found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:28
|
||||
msgid "Profile Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:199
|
||||
msgid "Profile updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:254
|
||||
msgid "Profile deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:270 ../../mod/profiles.php:301
|
||||
msgid "Profile-"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:289 ../../mod/profiles.php:328
|
||||
msgid "New profile created."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:307
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:354
|
||||
msgid "Hide my contact/friend list from viewers of this profile?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:369
|
||||
msgid "Edit Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:371
|
||||
msgid "View this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:372
|
||||
msgid "Create a new profile using these settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:373
|
||||
msgid "Clone this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:374
|
||||
msgid "Delete this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:375
|
||||
msgid "Profile Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:376
|
||||
msgid "Your Full Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:377
|
||||
msgid "Title/Description:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:378
|
||||
msgid "Your Gender:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:379
|
||||
msgid "Birthday (y/m/d):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:380
|
||||
msgid "Street Address:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:381
|
||||
msgid "Locality/City:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:382
|
||||
msgid "Postal/Zip Code:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:383
|
||||
msgid "Country:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:384
|
||||
msgid "Region/State:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:385
|
||||
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:386
|
||||
msgid "Who: (if applicable)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:387
|
||||
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:388 ../../include/profile_advanced.php:90
|
||||
msgid "Sexual Preference:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:389
|
||||
msgid "Homepage URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:390 ../../include/profile_advanced.php:115
|
||||
msgid "Political Views:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:391
|
||||
msgid "Religious Views:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:392
|
||||
msgid "Public Keywords:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:393
|
||||
msgid "Private Keywords:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:394
|
||||
msgid "Example: fishing photography software"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:395
|
||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:396
|
||||
msgid "(Used for searching profiles, never shown to others)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:397
|
||||
msgid "Tell us about yourself..."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:398
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:399
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:400
|
||||
msgid "Musical interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:401
|
||||
msgid "Books, literature"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:402
|
||||
msgid "Television"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:403
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:404
|
||||
msgid "Love/romance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:405
|
||||
msgid "Work/employment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:406
|
||||
msgid "School/education"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:411
|
||||
msgid ""
|
||||
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
||||
"be visible to anybody using the internet."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:421 ../../mod/directory.php:91
|
||||
msgid "Age: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:456 ../../include/nav.php:116
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:457
|
||||
msgid "Change profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:458
|
||||
msgid "Create New Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:470
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:32
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:39
|
||||
msgid "Site Directory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:94
|
||||
msgid "Gender: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:120
|
||||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:28
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:32
|
||||
#, php-format
|
||||
msgid "Please join my network on %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:38
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:42
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/invite.php:57
|
||||
msgid "Send invitations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:58
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:60
|
||||
#, php-format
|
||||
msgid "Please join my social network on %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:61
|
||||
msgid "To accept this invitation, please visit:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:62
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:231
|
||||
msgid "Response from remote site was not understood."
|
||||
msgstr ""
|
||||
|
|
@ -2419,214 +2255,80 @@ msgstr ""
|
|||
msgid "is now friends with"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:494
|
||||
#: ../../mod/dfrn_confirm.php:499
|
||||
#, php-format
|
||||
msgid "No user record found for '%s' "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:504
|
||||
#: ../../mod/dfrn_confirm.php:509
|
||||
msgid "Our site encryption key is apparently messed up."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:515
|
||||
#: ../../mod/dfrn_confirm.php:520
|
||||
msgid "Empty site URL was provided or URL could not be decrypted by us."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:527
|
||||
#: ../../mod/dfrn_confirm.php:532
|
||||
msgid "Contact record was not found for you on our site."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:555
|
||||
#: ../../mod/dfrn_confirm.php:560
|
||||
msgid ""
|
||||
"The ID provided by your system is a duplicate on our system. It should work "
|
||||
"if you try again."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:566
|
||||
#: ../../mod/dfrn_confirm.php:571
|
||||
msgid "Unable to set your contact credentials on our system."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:619
|
||||
#: ../../mod/dfrn_confirm.php:624
|
||||
msgid "Unable to update your contact profile details on our system"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:648
|
||||
#: ../../mod/dfrn_confirm.php:653
|
||||
#, php-format
|
||||
msgid "Connection accepted at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/openid.php:62 ../../mod/openid.php:109 ../../include/auth.php:105
|
||||
#: ../../include/auth.php:130 ../../include/auth.php:183
|
||||
msgid "Login failed."
|
||||
#: ../../addon/facebook/facebook.php:116
|
||||
msgid "Facebook disabled"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/openid.php:73 ../../include/auth.php:194
|
||||
msgid "Welcome back "
|
||||
#: ../../addon/facebook/facebook.php:124
|
||||
msgid "Facebook API key is missing."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_poll.php:78 ../../mod/dfrn_poll.php:483
|
||||
#, php-format
|
||||
msgid "%s welcomes %s"
|
||||
#: ../../addon/facebook/facebook.php:131
|
||||
msgid "Facebook Connect"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/viewcontacts.php:32
|
||||
msgid "No contacts."
|
||||
#: ../../addon/facebook/facebook.php:137
|
||||
msgid "Install Facebook post connector"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:27
|
||||
msgid "Group created."
|
||||
#: ../../addon/facebook/facebook.php:144
|
||||
msgid "Remove Facebook post connector"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:33
|
||||
msgid "Could not create group."
|
||||
#: ../../addon/facebook/facebook.php:150
|
||||
msgid "Post to Facebook by default"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:43 ../../mod/group.php:127
|
||||
msgid "Group not found."
|
||||
#: ../../addon/facebook/facebook.php:174
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:56
|
||||
msgid "Group name changed."
|
||||
#: ../../addon/facebook/facebook.php:175
|
||||
msgid "Facebook Connector Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:79
|
||||
msgid "Membership list updated."
|
||||
#: ../../addon/facebook/facebook.php:189
|
||||
msgid "Post to Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:95
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:96 ../../mod/group.php:153
|
||||
msgid "Group Name: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:111
|
||||
msgid "Group removed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:113
|
||||
msgid "Unable to remove group."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:152
|
||||
msgid "Group Editor"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:154
|
||||
msgid "Members:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/match.php:10
|
||||
msgid "Profile Match"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/match.php:50
|
||||
msgid "No matches"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:64
|
||||
msgid "Post to Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:122
|
||||
msgid "Twitter Posting Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:129
|
||||
msgid ""
|
||||
"No consumer key pair for Twitter found. Please contact your site "
|
||||
"administrator."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:148
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:149
|
||||
msgid "Log in with Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:151
|
||||
msgid "Copy the PIN from Twitter here"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:165 ../../addon/statusnet/statusnet.php:197
|
||||
msgid "Currently connected to: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:166
|
||||
msgid ""
|
||||
"If enabled all your <strong>public</strong> postings will be posted to the "
|
||||
"associated Twitter account as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:168
|
||||
msgid "Send public postings to Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:172 ../../addon/statusnet/statusnet.php:204
|
||||
msgid "Clear OAuth configuration"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:78
|
||||
msgid "Post to StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:146
|
||||
msgid "StatusNet Posting Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:152
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:154
|
||||
msgid "OAuth Consumer Key"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:157
|
||||
msgid "OAuth Consumer Secret"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:160
|
||||
msgid "Base API Path (remember the trailing /)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:181
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:182
|
||||
msgid "Log in with StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:184
|
||||
msgid "Copy the security code from StatusNet here"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:198
|
||||
msgid ""
|
||||
"If enabled all your <strong>public</strong> postings will be posted to the "
|
||||
"associated StatusNet account as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:200
|
||||
msgid "Send public postings to StatusNet"
|
||||
#: ../../addon/facebook/facebook.php:230
|
||||
msgid "Image: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/tictac/tictac.php:14
|
||||
|
|
@ -2683,63 +2385,27 @@ msgstr ""
|
|||
msgid "I won!"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/java_upload/java_upload.php:33
|
||||
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/facebook/facebook.php:116
|
||||
msgid "Facebook disabled"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:124
|
||||
msgid "Facebook API key is missing."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:131
|
||||
msgid "Facebook Connect"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:137
|
||||
msgid "Install Facebook post connector"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:144
|
||||
msgid "Remove Facebook post connector"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:150
|
||||
msgid "Post to Facebook by default"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:174
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:175
|
||||
msgid "Facebook Connector Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:189
|
||||
msgid "Post to Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:230
|
||||
msgid "Image: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/randplace/randplace.php:171
|
||||
#: ../../wip/addon/randplace/randplace.php:170
|
||||
msgid "Randplace Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/randplace/randplace.php:173
|
||||
#: ../../wip/addon/randplace/randplace.php:172
|
||||
msgid "Enable Randplace Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/java_upload/java_upload.php:33 ../../wip/photos.php:747
|
||||
#: ../../wip/photos-chris.php:794
|
||||
msgid "Select files to upload: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/java_upload/java_upload.php:35 ../../wip/photos.php:752
|
||||
#: ../../wip/photos-chris.php:799
|
||||
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"
|
||||
msgstr ""
|
||||
|
|
@ -2772,6 +2438,182 @@ msgstr ""
|
|||
msgid "Upload was cancelled, or server error encountered"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:78
|
||||
msgid "Post to StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:146
|
||||
msgid "StatusNet Posting Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:152
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:154
|
||||
msgid "OAuth Consumer Key"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:157
|
||||
msgid "OAuth Consumer Secret"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:160
|
||||
msgid "Base API Path (remember the trailing /)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:181
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:182
|
||||
msgid "Log in with StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:184
|
||||
msgid "Copy the security code from StatusNet here"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:197 ../../addon/twitter/twitter.php:165
|
||||
msgid "Currently connected to: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:198
|
||||
msgid ""
|
||||
"If enabled all your <strong>public</strong> postings will be posted to the "
|
||||
"associated StatusNet account as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:200
|
||||
msgid "Send public postings to StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:204 ../../addon/twitter/twitter.php:172
|
||||
msgid "Clear OAuth configuration"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:64
|
||||
msgid "Post to Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:122
|
||||
msgid "Twitter Posting Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:129
|
||||
msgid ""
|
||||
"No consumer key pair for Twitter found. Please contact your site "
|
||||
"administrator."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:148
|
||||
msgid ""
|
||||
"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."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:149
|
||||
msgid "Log in with Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:151
|
||||
msgid "Copy the PIN from Twitter here"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:166
|
||||
msgid ""
|
||||
"If enabled all your <strong>public</strong> postings will be posted to the "
|
||||
"associated Twitter account as well."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:168
|
||||
msgid "Send public postings to Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:23 ../../boot.php:2331
|
||||
msgid "Gender:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:36 ../../include/items.php:1071
|
||||
msgid "Birthday:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:45
|
||||
msgid "j F, Y"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:46
|
||||
msgid "j F"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:59
|
||||
msgid "Age:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:70
|
||||
msgid "<span class=\"heart\">♥</span> Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:103 ../../boot.php:2337
|
||||
msgid "Homepage:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:127
|
||||
msgid "Religion:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:138
|
||||
msgid "About:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:150
|
||||
msgid "Hobbies/Interests:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:162
|
||||
msgid "Contact information and Social Networks:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:174
|
||||
msgid "Musical interests:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:186
|
||||
msgid "Books, literature:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:198
|
||||
msgid "Television:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:210
|
||||
msgid "Film/dance/culture/entertainment:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:222
|
||||
msgid "Love/Romance:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:234
|
||||
msgid "Work/employment:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:246
|
||||
msgid "School/education:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/contact_selectors.php:32
|
||||
msgid "Unknown | Not categorised"
|
||||
msgstr ""
|
||||
|
|
@ -3032,16 +2874,56 @@ msgstr ""
|
|||
msgid "Ask me"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/acl_selectors.php:132
|
||||
msgid "Visible To:"
|
||||
#: ../../include/oembed.php:57
|
||||
msgid "Embedding disabled"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/acl_selectors.php:136 ../../include/acl_selectors.php:151
|
||||
msgid "Groups"
|
||||
#: ../../include/group.php:145
|
||||
msgid "Create a new group"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/acl_selectors.php:147
|
||||
msgid "Except For:"
|
||||
#: ../../include/group.php:146
|
||||
msgid "Everybody"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:39 ../../boot.php:855
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:45 ../../boot.php:835 ../../boot.php:841
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:57 ../../include/nav.php:98
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:68
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:71
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:84
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:94
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:103
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:111
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:114
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/auth.php:27
|
||||
|
|
@ -3112,115 +2994,316 @@ msgstr ""
|
|||
msgid " ago"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:36 ../../include/items.php:1073
|
||||
msgid "Birthday:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:45
|
||||
msgid "j F, Y"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:46
|
||||
msgid "j F"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:59
|
||||
msgid "Age:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:70
|
||||
msgid "<span class=\"heart\">♥</span> Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:127
|
||||
msgid "Religion:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:138
|
||||
msgid "About:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:150
|
||||
msgid "Hobbies/Interests:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:162
|
||||
msgid "Contact information and Social Networks:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:174
|
||||
msgid "Musical interests:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:186
|
||||
msgid "Books, literature:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:198
|
||||
msgid "Television:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:210
|
||||
msgid "Film/dance/culture/entertainment:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:222
|
||||
msgid "Love/Romance:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:234
|
||||
msgid "Work/employment:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_advanced.php:246
|
||||
msgid "School/education:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:57 ../../include/nav.php:92
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:65
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:78
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:88
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:97
|
||||
msgid "Notifications"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:105
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:108
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/dba.php:31
|
||||
#, php-format
|
||||
msgid "Cannot locate DNS info for database server '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/items.php:1418
|
||||
#: ../../include/acl_selectors.php:132
|
||||
msgid "Visible To:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/acl_selectors.php:136 ../../include/acl_selectors.php:151
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/acl_selectors.php:147
|
||||
msgid "Except For:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/items.php:1416
|
||||
msgid "You have a new follower at "
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/group.php:145
|
||||
msgid "Create a new group"
|
||||
#: ../../include/conversation.php:116 ../../include/conversation.php:376
|
||||
#: ../../include/conversation.php:377
|
||||
#, php-format
|
||||
msgid "View %s's profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/group.php:146
|
||||
msgid "Everybody"
|
||||
#: ../../include/conversation.php:132
|
||||
msgid "View in context"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/oembed.php:57
|
||||
msgid "Embedding disabled"
|
||||
#: ../../include/conversation.php:203
|
||||
msgid "See more posts like this"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:227
|
||||
#, php-format
|
||||
msgid "See all %d comments"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:378
|
||||
msgid "to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:379
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:380
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:372
|
||||
msgid "Delete this item?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:826
|
||||
msgid "Create a New Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:833
|
||||
msgid "Nickname or Email address: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:834
|
||||
msgid "Password: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:839
|
||||
msgid "Nickname/Email/OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:840
|
||||
msgid "Password (if not OpenID): "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:843
|
||||
msgid "Forgot your password?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1096
|
||||
msgid "prev"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1098
|
||||
msgid "first"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1127
|
||||
msgid "last"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1130
|
||||
msgid "next"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1861
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1861
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1865
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1867
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1873
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1876
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1877
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1877
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2038
|
||||
msgid "No contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2046
|
||||
#, php-format
|
||||
msgid "%d Contact"
|
||||
msgid_plural "%d Contacts"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../boot.php:2309
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2319
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2323
|
||||
msgid ", "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2335
|
||||
msgid "Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2428
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2428
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2428
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2428
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2428
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2428
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2428
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "January"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "February"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "March"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "April"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "May"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "June"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "July"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "August"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "September"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "October"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "November"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2432
|
||||
msgid "December"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2447
|
||||
msgid "g A l F d"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2464
|
||||
msgid "Birthday Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2465
|
||||
msgid "Birthdays this week:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2466
|
||||
msgid "(Adjusted for local time)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2477
|
||||
msgid "[today]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2674
|
||||
msgid "link to source"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2765
|
||||
msgid "View status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2766
|
||||
msgid "View profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2767
|
||||
msgid "View photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:2769
|
||||
msgid "Send PM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../wip/dfrn_poll2.php:72 ../../wip/dfrn_poll2.php:376
|
||||
msgid " welcomes "
|
||||
msgstr ""
|
||||
|
||||
#: ../../wip/addon/facebook/facebook.php:54
|
||||
msgid "Facebook status update failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../wip/addon/js_upload/js_upload.php:213
|
||||
msgid "Could not save uploaded file."
|
||||
msgstr ""
|
||||
|
||||
#: ../../wip/addon/js_upload/js_upload.php:214
|
||||
msgid "The upload was cancelled, or server error encountered"
|
||||
msgstr ""
|
||||
|
||||
#: ../../wip/addon/js_upload/js_upload.php:167
|
||||
msgid "Server error. Upload directory isn"
|
||||
msgstr ""
|
||||
|
||||
#: ../../wip/group.php:81
|
||||
msgid "Membership list updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../wip/group.php:175
|
||||
msgid "Members:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../index.php:208
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: ../../index.php:209
|
||||
msgid "Page not found."
|
||||
msgstr ""
|
||||
|
|
|
|||
100
util/strings.php
100
util/strings.php
|
|
@ -71,6 +71,37 @@ $a->strings['%d Contact'] = array(
|
|||
0 => '%d Contact',
|
||||
1 => '%d Contacts',
|
||||
);
|
||||
$a->strings['Normal View'] = 'Normal View';
|
||||
$a->strings['New Item View'] = 'New Item View';
|
||||
$a->strings['Warning: This group contains %s from an insecure network.'] = 'Warning: This group contains %s from an insecure network.';
|
||||
$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['Please enter a link URL:'] = 'Please enter a link URL:';
|
||||
$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['Share'] = 'Share';
|
||||
$a->strings['Upload photo'] = 'Upload photo';
|
||||
$a->strings['Insert web link'] = 'Insert web link';
|
||||
$a->strings['Insert YouTube video'] = 'Insert YouTube video';
|
||||
$a->strings['Insert Vorbis [.ogg] video'] = 'Insert Vorbis [.ogg] video';
|
||||
$a->strings['Insert Vorbis [.ogg] audio'] = 'Insert Vorbis [.ogg] audio';
|
||||
$a->strings['Set your location'] = 'Set your location';
|
||||
$a->strings['Clear browser location'] = 'Clear browser location';
|
||||
$a->strings['Set title'] = 'Set title';
|
||||
$a->strings['Please wait'] = 'Please wait';
|
||||
$a->strings['Permission settings'] = 'Permission settings';
|
||||
$a->strings['CC: email addresses'] = 'CC: email addresses';
|
||||
$a->strings['Example: bob@example.com, mary@example.com'] = 'Example: bob@example.com, mary@example.com';
|
||||
$a->strings['No such group'] = 'No such group';
|
||||
$a->strings['Group is empty'] = 'Group is empty';
|
||||
$a->strings['Group: '] = 'Group: ';
|
||||
$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['%d member'] = array(
|
||||
0 => '%d member',
|
||||
1 => '%d members',
|
||||
);
|
||||
$a->strings['Applications'] = 'Applications';
|
||||
$a->strings["Invite Friends"] = "Invite Friends";
|
||||
$a->strings['Find People With Shared Interests'] = 'Find People With Shared Interests';
|
||||
|
|
@ -195,33 +226,10 @@ $a->strings['Age: '] = 'Age: ';
|
|||
$a->strings['Gender: '] = 'Gender: ';
|
||||
$a->strings["No entries \x28some entries may be hidden\x29."] = "No entries \x28some entries may be hidden\x29.";
|
||||
$a->strings['Item not found.'] = 'Item not found.';
|
||||
$a->strings['Private Message'] = 'Private Message';
|
||||
$a->strings["I like this \x28toggle\x29"] = "I like this \x28toggle\x29";
|
||||
$a->strings["I don't like this \x28toggle\x29"] = "I don't like this \x28toggle\x29";
|
||||
$a->strings['Share'] = 'Share';
|
||||
$a->strings['Please wait'] = 'Please wait';
|
||||
$a->strings['This is you'] = 'This is you';
|
||||
$a->strings['Edit'] = 'Edit';
|
||||
$a->strings['Delete'] = 'Delete';
|
||||
$a->strings['View $name\'s profile'] = 'View $name\'s profile';
|
||||
$a->strings['View $owner_name\'s profile'] = 'View $owner_name\'s profile';
|
||||
$a->strings['to'] = 'to';
|
||||
$a->strings['Wall-to-Wall'] = 'Wall-to-Wall';
|
||||
$a->strings['via Wall-To-Wall:'] = 'via Wall-To-Wall:';
|
||||
$a->strings['Item has been removed.'] = 'Item has been removed.';
|
||||
$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['Item not found'] = 'Item not found';
|
||||
$a->strings['Edit post'] = 'Edit post';
|
||||
$a->strings['Upload photo'] = 'Upload photo';
|
||||
$a->strings['Insert web link'] = 'Insert web link';
|
||||
$a->strings['Insert YouTube video'] = 'Insert YouTube video';
|
||||
$a->strings['Insert Vorbis [.ogg] video'] = 'Insert Vorbis [.ogg] video';
|
||||
$a->strings['Insert Vorbis [.ogg] audio'] = 'Insert Vorbis [.ogg] audio';
|
||||
$a->strings['Set your location'] = 'Set your location';
|
||||
$a->strings['Clear browser location'] = 'Clear browser location';
|
||||
$a->strings['Permission settings'] = 'Permission settings';
|
||||
$a->strings['CC: email addresses'] = 'CC: email addresses';
|
||||
$a->strings['Example: bob@example.com, mary@example.com'] = 'Example: bob@example.com, mary@example.com';
|
||||
$a->strings['Edit'] = 'Edit';
|
||||
$a->strings['The profile address specified does not provide adequate information.'] = 'The profile address specified does not provide adequate information.';
|
||||
$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['Unable to retrieve contact information.'] = 'Unable to retrieve contact information.';
|
||||
|
|
@ -238,13 +246,15 @@ $a->strings['Group created.'] = 'Group created.';
|
|||
$a->strings['Could not create group.'] = 'Could not create group.';
|
||||
$a->strings['Group not found.'] = 'Group not found.';
|
||||
$a->strings['Group name changed.'] = 'Group name changed.';
|
||||
$a->strings['Membership list updated.'] = 'Membership list updated.';
|
||||
$a->strings['Create a group of contacts/friends.'] = 'Create a group of contacts/friends.';
|
||||
$a->strings['Group Name: '] = 'Group Name: ';
|
||||
$a->strings['Group removed.'] = 'Group removed.';
|
||||
$a->strings['Unable to remove group.'] = 'Unable to remove group.';
|
||||
$a->strings['Delete'] = 'Delete';
|
||||
$a->strings['Click on a contact to add or remove.'] = 'Click on a contact to add or remove.';
|
||||
$a->strings['Group Editor'] = 'Group Editor';
|
||||
$a->strings['Members:'] = 'Members:';
|
||||
$a->strings['Members'] = 'Members';
|
||||
$a->strings['All Contacts'] = 'All Contacts';
|
||||
$a->strings["Welcome to %s"] = "Welcome to %s";
|
||||
$a->strings['Could not create/connect to database.'] = 'Could not create/connect to database.';
|
||||
$a->strings['Connected to database.'] = 'Connected to database.';
|
||||
|
|
@ -339,7 +349,6 @@ $a->strings['Outbox'] = 'Outbox';
|
|||
$a->strings['New Message'] = 'New Message';
|
||||
$a->strings['Message deleted.'] = 'Message deleted.';
|
||||
$a->strings['Conversation removed.'] = 'Conversation removed.';
|
||||
$a->strings['Please enter a link URL:'] = 'Please enter a link URL:';
|
||||
$a->strings['Send Private Message'] = 'Send Private Message';
|
||||
$a->strings['To:'] = 'To:';
|
||||
$a->strings['Subject:'] = 'Subject:';
|
||||
|
|
@ -349,26 +358,6 @@ $a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A';
|
|||
$a->strings['Message not available.'] = 'Message not available.';
|
||||
$a->strings['Delete message'] = 'Delete message';
|
||||
$a->strings['Send Reply'] = 'Send Reply';
|
||||
$a->strings['Normal View'] = 'Normal View';
|
||||
$a->strings['New Item View'] = 'New Item View';
|
||||
$a->strings['Warning: This group contains %s from an insecure network.'] = 'Warning: This group contains %s from an insecure network.';
|
||||
$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['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['No such group'] = 'No such group';
|
||||
$a->strings['Group is empty'] = 'Group is empty';
|
||||
$a->strings['Group: '] = 'Group: ';
|
||||
$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['%d member'] = array(
|
||||
0 => '%d member',
|
||||
1 => '%d members',
|
||||
);
|
||||
$a->strings['Invalid request identifier.'] = 'Invalid request identifier.';
|
||||
$a->strings['Discard'] = 'Discard';
|
||||
$a->strings['Ignore'] = 'Ignore';
|
||||
|
|
@ -413,6 +402,7 @@ $a->strings['Edit Album'] = 'Edit Album';
|
|||
$a->strings['View Photo'] = 'View Photo';
|
||||
$a->strings['Photo not available'] = 'Photo not available';
|
||||
$a->strings['Edit photo'] = 'Edit photo';
|
||||
$a->strings['Private Message'] = 'Private Message';
|
||||
$a->strings['<< Prev'] = '<< Prev';
|
||||
$a->strings['View Full Size'] = 'View Full Size';
|
||||
$a->strings['Next >>'] = 'Next >>';
|
||||
|
|
@ -422,6 +412,9 @@ $a->strings['New album name'] = 'New album name';
|
|||
$a->strings['Caption'] = 'Caption';
|
||||
$a->strings['Add a Tag'] = 'Add a Tag';
|
||||
$a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'] = 'Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping';
|
||||
$a->strings["I like this \x28toggle\x29"] = "I like this \x28toggle\x29";
|
||||
$a->strings["I don't like this \x28toggle\x29"] = "I don't like this \x28toggle\x29";
|
||||
$a->strings['This is you'] = 'This is you';
|
||||
$a->strings['Recent Photos'] = 'Recent Photos';
|
||||
$a->strings['Upload New Photos'] = 'Upload New Photos';
|
||||
$a->strings['View Album'] = 'View Album';
|
||||
|
|
@ -595,6 +588,13 @@ $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['Miscellaneous'] = 'Miscellaneous';
|
||||
$a->strings['less than a second ago'] = 'less than a second ago';
|
||||
$a->strings['year'] = 'year';
|
||||
|
|
@ -616,6 +616,7 @@ $a->strings['Create a new group'] = 'Create a new group';
|
|||
$a->strings['Everybody'] = 'Everybody';
|
||||
$a->strings['Birthday:'] = 'Birthday:';
|
||||
$a->strings['Home'] = 'Home';
|
||||
$a->strings['Help'] = 'Help';
|
||||
$a->strings['Apps'] = 'Apps';
|
||||
$a->strings['Directory'] = 'Directory';
|
||||
$a->strings['Network'] = 'Network';
|
||||
|
|
@ -893,6 +894,7 @@ $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';
|
||||
|
|
@ -911,6 +913,7 @@ $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';
|
||||
|
|
@ -927,6 +930,7 @@ $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';
|
||||
|
|
@ -955,6 +959,7 @@ $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';
|
||||
|
|
@ -1017,6 +1022,7 @@ $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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue