mirror of
https://github.com/friendica/friendica
synced 2026-01-14 15:38:43 +01:00
Merge remote-tracking branch 'upstream/master'
Conflicts: boot.php include/items.php update.php
This commit is contained in:
commit
4e3d0018c6
739 changed files with 9949 additions and 5340 deletions
95
boot.php
95
boot.php
|
|
@ -12,10 +12,9 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
|
|||
require_once('include/features.php');
|
||||
|
||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||
define ( 'FRIENDICA_VERSION', '3.1.1572' );
|
||||
define ( 'FRIENDICA_VERSION', '3.1.1589' );
|
||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||
define ( 'DB_UPDATE_VERSION', 1159 );
|
||||
|
||||
define ( 'EOL', "<br />\r\n" );
|
||||
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
|
||||
|
||||
|
|
@ -385,8 +384,14 @@ if(! class_exists('App')) {
|
|||
'template_engine' => 'internal',
|
||||
);
|
||||
|
||||
public $smarty3_ldelim = '{{';
|
||||
public $smarty3_rdelim = '}}';
|
||||
private $ldelim = array(
|
||||
'internal' => '',
|
||||
'smarty3' => '{{'
|
||||
);
|
||||
private $rdelim = array(
|
||||
'internal' => '',
|
||||
'smarty3' => '}}'
|
||||
);
|
||||
|
||||
private $scheme;
|
||||
private $hostname;
|
||||
|
|
@ -617,17 +622,17 @@ if(! class_exists('App')) {
|
|||
*/
|
||||
if(!isset($this->page['htmlhead']))
|
||||
$this->page['htmlhead'] = '';
|
||||
$tpl = get_markup_template('head.tpl');
|
||||
|
||||
// If we're using Smarty, then doing replace_macros() will replace
|
||||
// any unrecognized variables with a blank string. Since we delay
|
||||
// replacing $stylesheet until later, we need to replace it now
|
||||
// with another variable name
|
||||
if($this->theme['template_engine'] === 'smarty3')
|
||||
$stylesheet = $this->smarty3_ldelim . '$stylesheet' . $this->smarty3_rdelim;
|
||||
$stylesheet = $this->get_template_ldelim('smarty3') . '$stylesheet' . $this->get_template_rdelim('smarty3');
|
||||
else
|
||||
$stylesheet = '$stylesheet';
|
||||
|
||||
$tpl = get_markup_template('head.tpl');
|
||||
$this->page['htmlhead'] = replace_macros($tpl,array(
|
||||
'$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
|
||||
'$local_user' => local_user(),
|
||||
|
|
@ -688,6 +693,31 @@ if(! class_exists('App')) {
|
|||
return $this->cached_profile_image[$avatar_image];
|
||||
}
|
||||
|
||||
function get_template_engine() {
|
||||
return $this->theme['template_engine'];
|
||||
}
|
||||
|
||||
function set_template_engine($engine = 'internal') {
|
||||
|
||||
$this->theme['template_engine'] = 'internal';
|
||||
|
||||
switch($engine) {
|
||||
case 'smarty3':
|
||||
if(is_writable('view/smarty3/'))
|
||||
$this->theme['template_engine'] = 'smarty3';
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
function get_template_ldelim($engine = 'internal') {
|
||||
return $this->ldelim[$engine];
|
||||
}
|
||||
|
||||
function get_template_rdelim($engine = 'internal') {
|
||||
return $this->rdelim[$engine];
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -776,16 +806,12 @@ function is_ajax() {
|
|||
|
||||
// Primarily involved with database upgrade, but also sets the
|
||||
// base url for use in cmdline programs which don't have
|
||||
// $_SERVER variables, and synchronising the state of installed plugins.
|
||||
// $_SERVER variables
|
||||
|
||||
|
||||
if(! function_exists('check_config')) {
|
||||
function check_config(&$a) {
|
||||
|
||||
$build = get_config('system','build');
|
||||
if(! x($build))
|
||||
$build = set_config('system','build',DB_UPDATE_VERSION);
|
||||
|
||||
$url = get_config('system','url');
|
||||
|
||||
// if the url isn't set or the stored url is radically different
|
||||
|
|
@ -800,6 +826,10 @@ if(! function_exists('check_config')) {
|
|||
$url = set_config('system','url',$a->get_baseurl());
|
||||
|
||||
|
||||
$build = get_config('system','build');
|
||||
if(! x($build))
|
||||
$build = set_config('system','build',DB_UPDATE_VERSION);
|
||||
|
||||
if($build != DB_UPDATE_VERSION) {
|
||||
$stored = intval($build);
|
||||
$current = intval(DB_UPDATE_VERSION);
|
||||
|
|
@ -848,9 +878,10 @@ if(! function_exists('check_config')) {
|
|||
'$error' => sprintf( t('Update %s failed. See error logs.'), $x)
|
||||
));
|
||||
$subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
|
||||
|
||||
require_once('include/email.php');
|
||||
$subject = email_header_encode($subject,'UTF-8');
|
||||
mail($a->config['admin_email'], $subject, $email_msg,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
. 'Content-transfer-encoding: 8bit' );
|
||||
//try the logger
|
||||
|
|
@ -867,6 +898,14 @@ if(! function_exists('check_config')) {
|
|||
}
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if(! function_exists('check_plugins')) {
|
||||
function check_plugins(&$a) {
|
||||
|
||||
/**
|
||||
*
|
||||
* Synchronise plugins:
|
||||
|
|
@ -1108,6 +1147,10 @@ if(! function_exists('get_max_import_size')) {
|
|||
* Profile information is placed in the App structure for later retrieval.
|
||||
* Honours the owner's chosen theme for display.
|
||||
*
|
||||
* IMPORTANT: Should only be run in the _init() functions of a module. That ensures that
|
||||
* the theme is chosen before the _init() function of a theme is run, which will usually
|
||||
* load a lot of theme-specific content
|
||||
*
|
||||
*/
|
||||
|
||||
if(! function_exists('profile_load')) {
|
||||
|
|
@ -1167,7 +1210,7 @@ if(! function_exists('profile_load')) {
|
|||
|
||||
if(! $r[0]['is-default']) {
|
||||
$x = q("select `pub_keywords` from `profile` where uid = %d and `is-default` = 1 limit 1",
|
||||
intval($profile_uid)
|
||||
intval($r[0]['profile_uid'])
|
||||
);
|
||||
if($x && count($x))
|
||||
$r[0]['pub_keywords'] = $x[0]['pub_keywords'];
|
||||
|
|
@ -1175,7 +1218,7 @@ if(! function_exists('profile_load')) {
|
|||
|
||||
$a->profile = $r[0];
|
||||
|
||||
$a->profile['mobile-theme'] = get_pconfig($profile_uid, 'system', 'mobile_theme');
|
||||
$a->profile['mobile-theme'] = get_pconfig($a->profile['profile_uid'], 'system', 'mobile_theme');
|
||||
|
||||
|
||||
$a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
|
||||
|
|
@ -1186,6 +1229,8 @@ if(! function_exists('profile_load')) {
|
|||
* load/reload current theme info
|
||||
*/
|
||||
|
||||
$a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one
|
||||
|
||||
$theme_info_file = "view/theme/".current_theme()."/theme.php";
|
||||
if (file_exists($theme_info_file)){
|
||||
require_once($theme_info_file);
|
||||
|
|
@ -1344,8 +1389,6 @@ if(! function_exists('profile_sidebar')) {
|
|||
}
|
||||
|
||||
|
||||
$tpl = get_markup_template('profile_vcard.tpl');
|
||||
|
||||
$p = array();
|
||||
foreach($profile as $k => $v) {
|
||||
$k = str_replace('-','_',$k);
|
||||
|
|
@ -1355,6 +1398,7 @@ if(! function_exists('profile_sidebar')) {
|
|||
if($a->theme['template_engine'] === 'internal')
|
||||
$location = template_escape($location);
|
||||
|
||||
$tpl = get_markup_template('profile_vcard.tpl');
|
||||
$o .= replace_macros($tpl, array(
|
||||
'$profile' => $p,
|
||||
'$connect' => $connect,
|
||||
|
|
@ -1612,7 +1656,7 @@ if(! function_exists('current_theme')) {
|
|||
// $mobile_detect = new Mobile_Detect();
|
||||
// $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
||||
$is_mobile = $a->is_mobile || $a->is_tablet;
|
||||
|
||||
|
||||
if($is_mobile) {
|
||||
if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
|
||||
$system_theme = '';
|
||||
|
|
@ -1947,16 +1991,9 @@ function clear_cache($basepath = "", $path = "") {
|
|||
}
|
||||
|
||||
function set_template_engine(&$a, $engine = 'internal') {
|
||||
// This function is no longer necessary, but keep it as a wrapper to the class method
|
||||
// to avoid breaking themes again unnecessarily
|
||||
|
||||
$a->theme['template_engine'] = 'internal';
|
||||
|
||||
if(is_writable('view/smarty3/')) {
|
||||
switch($engine) {
|
||||
case 'smarty3':
|
||||
$a->theme['template_engine'] = 'smarty3';
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
$a->set_template_engine($engine);
|
||||
}
|
||||
|
||||
|
|
|
|||
14
database.sql
14
database.sql
|
|
@ -241,6 +241,20 @@ CREATE TABLE IF NOT EXISTS `deliverq` (
|
|||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `dsprphotoq`
|
||||
--
|
||||
|
||||
CREATE TABLE `dsprphotoq` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`uid` int(11) NOT NULL,
|
||||
`msg` mediumtext NOT NULL,
|
||||
`attempt` tinyint(4) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `event`
|
||||
--
|
||||
|
|
|
|||
|
|
@ -42,6 +42,10 @@ function z_mime_content_type($filename) {
|
|||
'qt' => 'video/quicktime',
|
||||
'mov' => 'video/quicktime',
|
||||
'ogg' => 'application/ogg',
|
||||
'mp4' => 'video/mp4',
|
||||
'avi' => 'video/x-msvideo',
|
||||
'wmv' => 'video/x-ms-wmv',
|
||||
'wma' => 'audio/x-ms-wma',
|
||||
|
||||
// adobe
|
||||
'pdf' => 'application/pdf',
|
||||
|
|
|
|||
|
|
@ -254,12 +254,22 @@ function bb_ShareAttributes($match) {
|
|||
if ($matches[1] != "")
|
||||
$profile = $matches[1];
|
||||
|
||||
$posted = "";
|
||||
preg_match("/posted='(.*?)'/ism", $attributes, $matches);
|
||||
if ($matches[1] != "")
|
||||
$posted = $matches[1];
|
||||
|
||||
preg_match('/posted="(.*?)"/ism', $attributes, $matches);
|
||||
if ($matches[1] != "")
|
||||
$posted = $matches[1];
|
||||
$reldate = (($posted) ? " " . relative_date($posted) : '');
|
||||
|
||||
$headline = '<div class="shared_header">';
|
||||
|
||||
if ($avatar != "")
|
||||
$headline .= '<img src="'.$avatar.'" height="32" width="32" >';
|
||||
|
||||
$headline .= sprintf(t('<span><a href="%s" target="external-link">%s</a> wrote the following <a href="%s" target="external-link">post</a>:</span>'), $profile, $author, $link);
|
||||
$headline .= sprintf(t('<span><a href="%s" target="external-link">%s</a> wrote the following <a href="%s" target="external-link">post</a>'.$reldate.':</span>'), $profile, $author, $link);
|
||||
|
||||
$headline .= "</div>";
|
||||
|
||||
|
|
@ -312,6 +322,9 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
|
|||
$Text = preg_replace("/\s?\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","[share$1]$2[/share]",$Text);
|
||||
$Text = preg_replace("/\s?\[quote(.*?)\]\s?(.*?)\s?\[\/quote\]\s?/ism","[quote$1]$2[/quote]",$Text);
|
||||
|
||||
$Text = preg_replace("/\n\[code\]/ism", "[code]", $Text);
|
||||
$Text = preg_replace("/\[\/code\]\n/ism", "[/code]", $Text);
|
||||
|
||||
// when the content is meant exporting to other systems then remove the avatar picture since this doesn't really look good on these systems
|
||||
if (!$tryoembed)
|
||||
$Text = preg_replace("/\[share(.*?)avatar\s?=\s?'.*?'\s?(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","\n[share$1$2]$3[/share]",$Text);
|
||||
|
|
@ -327,12 +340,13 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
|
|||
$Text = str_replace("\r\n","\n", $Text);
|
||||
|
||||
// removing multiplicated newlines
|
||||
$search = array("\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]");
|
||||
$replace = array("\n\n", "\n", "\n", "[/quote]\n", "[/quote]");
|
||||
do {
|
||||
$oldtext = $Text;
|
||||
$Text = str_replace($search, $replace, $Text);
|
||||
} while ($oldtext != $Text);
|
||||
// $search = array("\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]");
|
||||
// $replace = array("\n\n", "\n", "\n", "[/quote]\n", "[/quote]");
|
||||
// do {
|
||||
// $oldtext = $Text;
|
||||
// $Text = str_replace($search, $replace, $Text);
|
||||
// } while ($oldtext != $Text);
|
||||
|
||||
|
||||
$Text = str_replace(array("\r","\n"), array('<br />','<br />'), $Text);
|
||||
|
||||
|
|
|
|||
|
|
@ -896,26 +896,21 @@ function format_like($cnt,$arr,$type,$id) {
|
|||
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 . '\');"';
|
||||
$spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\"";
|
||||
switch($type) {
|
||||
case 'like':
|
||||
// $phrase = sprintf( t('<span %1$s>%2$d people</span> like this.'), $spanatts, $cnt);
|
||||
$mood = t('like this');
|
||||
$phrase = sprintf( t('<span %1$s>%2$d people</span> like this'), $spanatts, $cnt);
|
||||
break;
|
||||
case 'dislike':
|
||||
// $phrase = sprintf( t('<span %1$s>%2$d people</span> don\'t like this.'), $spanatts, $cnt);
|
||||
$mood = t('don\'t like this');
|
||||
$phrase = sprintf( t('<span %1$s>%2$d people</span> don\'t like this'), $spanatts, $cnt);
|
||||
break;
|
||||
}
|
||||
$tpl = get_markup_template("voting_fakelink.tpl");
|
||||
$phrase = replace_macros($tpl, array(
|
||||
'$vote_id' => $type . 'list-' . $id,
|
||||
'$count' => $cnt,
|
||||
'$people' => t('people'),
|
||||
'$vote_mood' => $mood
|
||||
$phrase .= EOL ;
|
||||
$o .= replace_macros(get_markup_template('voting_fakelink.tpl'), array(
|
||||
'$phrase' => $phrase,
|
||||
'$type' => $type,
|
||||
'$id' => $id
|
||||
));
|
||||
$o .= $phrase;
|
||||
// $o .= EOL ;
|
||||
|
||||
$total = count($arr);
|
||||
if($total >= MAX_LIKERS)
|
||||
|
|
|
|||
29
include/dbupdate.php
Normal file
29
include/dbupdate.php
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
require_once("boot.php");
|
||||
|
||||
function dbupdate_run(&$argv, &$argc) {
|
||||
global $a, $db;
|
||||
|
||||
if(is_null($a)){
|
||||
$a = new App;
|
||||
}
|
||||
|
||||
if(is_null($db)) {
|
||||
@include(".htconfig.php");
|
||||
require_once("include/dba.php");
|
||||
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
||||
unset($db_host, $db_user, $db_pass, $db_data);
|
||||
}
|
||||
|
||||
load_config('config');
|
||||
load_config('system');
|
||||
|
||||
check_config($a);
|
||||
}
|
||||
|
||||
if (array_search(__file__,get_included_files())===0){
|
||||
dbupdate_run($argv,$argc);
|
||||
killme();
|
||||
}
|
||||
|
||||
|
|
@ -16,7 +16,9 @@ function diaspora_dispatch_public($msg) {
|
|||
return;
|
||||
}
|
||||
|
||||
$r = q("SELECT `user`.* FROM `user` WHERE `user`.`uid` IN ( SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s' ) AND `account_expired` = 0 AND `account_removed` = 0 ",
|
||||
$r = q("SELECT `user`.* FROM `user` WHERE `user`.`uid` IN
|
||||
( SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s' )
|
||||
AND `account_expired` = 0 AND `account_removed` = 0 ",
|
||||
dbesc(NETWORK_DIASPORA),
|
||||
dbesc($msg['author'])
|
||||
);
|
||||
|
|
@ -32,7 +34,7 @@ function diaspora_dispatch_public($msg) {
|
|||
|
||||
|
||||
|
||||
function diaspora_dispatch($importer,$msg) {
|
||||
function diaspora_dispatch($importer,$msg,$attempt=1) {
|
||||
|
||||
$ret = 0;
|
||||
|
||||
|
|
@ -88,7 +90,7 @@ function diaspora_dispatch($importer,$msg) {
|
|||
$ret = diaspora_signed_retraction($importer,$xmlbase->relayable_retraction,$msg);
|
||||
}
|
||||
elseif($xmlbase->photo) {
|
||||
$ret = diaspora_photo($importer,$xmlbase->photo,$msg);
|
||||
$ret = diaspora_photo($importer,$xmlbase->photo,$msg,$attempt);
|
||||
}
|
||||
elseif($xmlbase->conversation) {
|
||||
$ret = diaspora_conversation($importer,$xmlbase->conversation,$msg);
|
||||
|
|
@ -1655,7 +1657,7 @@ function diaspora_message($importer,$xml,$msg) {
|
|||
}
|
||||
|
||||
|
||||
function diaspora_photo($importer,$xml,$msg) {
|
||||
function diaspora_photo($importer,$xml,$msg,$attempt=1) {
|
||||
|
||||
$a = get_app();
|
||||
|
||||
|
|
@ -1693,7 +1695,14 @@ function diaspora_photo($importer,$xml,$msg) {
|
|||
dbesc($status_message_guid)
|
||||
);
|
||||
if(! count($r)) {
|
||||
logger('diaspora_photo: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
|
||||
if($attempt <= 3) {
|
||||
q("INSERT INTO dsprphotoq (uid, msg, attempt) VALUES (%d, '%s', %d)",
|
||||
intval($importer['uid']),
|
||||
dbesc(serialize($msg)),
|
||||
intval($attempt + 1)
|
||||
);
|
||||
}
|
||||
logger('diaspora_photo: attempt = ' . $attempt . '; status message not found: ' . $status_message_guid . ' for photo: ' . $guid);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -2319,13 +2328,15 @@ function diaspora_send_followup($item,$owner,$contact,$public_batch = false) {
|
|||
$myaddr = $owner['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
|
||||
// $theiraddr = $contact['addr'];
|
||||
|
||||
// Diaspora doesn't support threaded comments
|
||||
/*if($item['thr-parent']) {
|
||||
// Diaspora doesn't support threaded comments, but some
|
||||
// versions of Diaspora (i.e. Diaspora-pistos) support
|
||||
// likes on comments
|
||||
if($item['verb'] === ACTIVITY_LIKE && $item['thr-parent']) {
|
||||
$p = q("select guid, type, uri, `parent-uri` from item where uri = '%s' limit 1",
|
||||
dbesc($item['thr-parent'])
|
||||
);
|
||||
}
|
||||
else {*/
|
||||
else {
|
||||
// The first item in the `item` table with the parent id is the parent. However, MySQL doesn't always
|
||||
// return the items ordered by `item`.`id`, in which case the wrong item is chosen as the parent.
|
||||
// The only item with `parent` and `id` as the parent id is the parent item.
|
||||
|
|
@ -2333,7 +2344,7 @@ function diaspora_send_followup($item,$owner,$contact,$public_batch = false) {
|
|||
intval($item['parent']),
|
||||
intval($item['parent'])
|
||||
);
|
||||
//}
|
||||
}
|
||||
if(count($p))
|
||||
$parent = $p[0];
|
||||
else
|
||||
|
|
@ -2395,13 +2406,15 @@ function diaspora_send_relay($item,$owner,$contact,$public_batch = false) {
|
|||
$body = $item['body'];
|
||||
$text = html_entity_decode(bb2diaspora($body));
|
||||
|
||||
// Diaspora doesn't support threaded comments
|
||||
/*if($item['thr-parent']) {
|
||||
// Diaspora doesn't support threaded comments, but some
|
||||
// versions of Diaspora (i.e. Diaspora-pistos) support
|
||||
// likes on comments
|
||||
if($item['verb'] === ACTIVITY_LIKE && $item['thr-parent']) {
|
||||
$p = q("select guid, type, uri, `parent-uri` from item where uri = '%s' limit 1",
|
||||
dbesc($item['thr-parent'])
|
||||
);
|
||||
}
|
||||
else {*/
|
||||
else {
|
||||
// The first item in the `item` table with the parent id is the parent. However, MySQL doesn't always
|
||||
// return the items ordered by `item`.`id`, in which case the wrong item is chosen as the parent.
|
||||
// The only item with `parent` and `id` as the parent id is the parent item.
|
||||
|
|
@ -2409,7 +2422,7 @@ function diaspora_send_relay($item,$owner,$contact,$public_batch = false) {
|
|||
intval($item['parent']),
|
||||
intval($item['parent'])
|
||||
);
|
||||
//}
|
||||
}
|
||||
if(count($p))
|
||||
$parent = $p[0];
|
||||
else
|
||||
|
|
|
|||
50
include/dsprphotoq.php
Normal file
50
include/dsprphotoq.php
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
<?php
|
||||
require_once("boot.php");
|
||||
require_once('include/diaspora.php');
|
||||
|
||||
function dsprphotoq_run($argv, $argc){
|
||||
global $a, $db;
|
||||
|
||||
if(is_null($a)){
|
||||
$a = new App;
|
||||
}
|
||||
|
||||
if(is_null($db)){
|
||||
@include(".htconfig.php");
|
||||
require_once("include/dba.php");
|
||||
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
||||
unset($db_host, $db_user, $db_pass, $db_data);
|
||||
};
|
||||
|
||||
logger("diaspora photo queue: running", LOGGER_DEBUG);
|
||||
|
||||
$r = q("SELECT * FROM dsprphotoq");
|
||||
if(!$r)
|
||||
return;
|
||||
|
||||
$dphotos = $r;
|
||||
|
||||
logger("diaspora photo queue: processing " . count($dphotos) . " photos");
|
||||
|
||||
foreach($dphotos as $dphoto) {
|
||||
|
||||
$r = q("SELECT * FROM user WHERE uid = %d",
|
||||
intval($dphoto['uid'])
|
||||
);
|
||||
if(!$r) {
|
||||
logger("diaspora photo queue: user " . $dphoto['uid'] . " not found");
|
||||
return;
|
||||
}
|
||||
|
||||
$ret = diaspora_dispatch($r[0],unserialize($dphoto['msg']),$dphoto['attempt']);
|
||||
q("DELETE FROM dsprphotoq WHERE id = %d",
|
||||
intval($dphoto['id'])
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (array_search(__file__,get_included_files())===0){
|
||||
dsprphotoq_run($argv,$argc);
|
||||
killme();
|
||||
}
|
||||
|
|
@ -471,8 +471,8 @@ class enotify {
|
|||
// generate a multipart/alternative message header
|
||||
$messageHeader =
|
||||
$params['additionalMailHeader'] .
|
||||
"From: {$params['fromName']} <{$params['fromEmail']}>\n" .
|
||||
"Reply-To: {$params['fromName']} <{$params['replyTo']}>\n" .
|
||||
"From: $fromName <{$params['fromEmail']}>\n" .
|
||||
"Reply-To: $fromName <{$params['replyTo']}>\n" .
|
||||
"MIME-Version: 1.0\n" .
|
||||
"Content-Type: multipart/alternative; boundary=\"{$mimeBoundary}\"";
|
||||
|
||||
|
|
@ -493,7 +493,7 @@ class enotify {
|
|||
// send the message
|
||||
$res = mail(
|
||||
$params['toEmail'], // send to address
|
||||
$params['messageSubject'], // subject
|
||||
$messageSubject, // subject
|
||||
$multipartMessageBody, // message body
|
||||
$messageHeader // message headers
|
||||
);
|
||||
|
|
|
|||
|
|
@ -24,8 +24,11 @@ class FriendicaSmarty extends Smarty {
|
|||
$this->setConfigDir('view/smarty3/config/');
|
||||
$this->setCacheDir('view/smarty3/cache/');
|
||||
|
||||
$this->left_delimiter = $a->smarty3_ldelim;
|
||||
$this->right_delimiter = $a->smarty3_rdelim;
|
||||
$this->left_delimiter = $a->get_template_ldelim('smarty3');
|
||||
$this->right_delimiter = $a->get_template_rdelim('smarty3');
|
||||
|
||||
// Don't report errors so verbosely
|
||||
$this->error_reporting = E_ALL & ~E_NOTICE;
|
||||
}
|
||||
|
||||
function parsed($template = '') {
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ function html2plain($html, $wraplength = 75, $compact = false)
|
|||
if (!$compact) {
|
||||
$counter = 1;
|
||||
foreach ($urls as $id=>$url)
|
||||
if (strpos($message, $url) == false)
|
||||
if (strpos($message, $url) === false)
|
||||
$message .= "\n".$url." ";
|
||||
//$message .= "\n[".($counter++)."] ".$url;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ require_once('include/crypto.php');
|
|||
require_once('include/Photo.php');
|
||||
require_once('include/tags.php');
|
||||
require_once('include/text.php');
|
||||
require_once('include/email.php');
|
||||
|
||||
function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) {
|
||||
|
||||
|
|
@ -3410,9 +3411,9 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
|
|||
'$sitename' => $a->config['sitename']
|
||||
));
|
||||
$res = mail($r[0]['email'],
|
||||
(($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],
|
||||
email_header_encode((($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],'UTF-8'),
|
||||
$email,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
. 'Content-transfer-encoding: 8bit' );
|
||||
|
||||
|
|
@ -3772,11 +3773,11 @@ function item_getfeedtags($item) {
|
|||
|
||||
function item_getfeedattach($item) {
|
||||
$ret = '';
|
||||
$arr = explode(',',$item['attach']);
|
||||
$arr = explode('[/attach],',$item['attach']);
|
||||
if(count($arr)) {
|
||||
foreach($arr as $r) {
|
||||
$matches = false;
|
||||
$cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
|
||||
$cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
|
||||
if($cnt) {
|
||||
$ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
|
||||
if(intval($matches[2]))
|
||||
|
|
|
|||
|
|
@ -37,6 +37,7 @@ require_once('include/html2plain.php');
|
|||
* tag (in photos.php, poke.php, tagger.php)
|
||||
* tgroup (in items.php)
|
||||
* wall-new (in photos.php, item.php)
|
||||
* removeme (in Contact.php)
|
||||
*
|
||||
* and ITEM_ID is the id of the item in the database that needs to be sent to others.
|
||||
*/
|
||||
|
|
@ -138,14 +139,17 @@ function notifier_run(&$argv, &$argc){
|
|||
$r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($item_id));
|
||||
if (! $r)
|
||||
return;
|
||||
|
||||
$user = $r[0];
|
||||
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1", intval($item_id));
|
||||
if (! $r)
|
||||
return;
|
||||
|
||||
$self = $r[0];
|
||||
$r = q("SELECT * FROM `contact` WHERE `self` = 0 AND `uid` = %d", intval($item_id));
|
||||
if(! $r)
|
||||
return;
|
||||
|
||||
require_once('include/Contact.php');
|
||||
foreach($r as $contact) {
|
||||
terminate_friendship($user, $self, $contact);
|
||||
|
|
|
|||
|
|
@ -62,6 +62,10 @@ function poller_run(&$argv, &$argc){
|
|||
|
||||
proc_run('php',"include/queue.php");
|
||||
|
||||
// run diaspora photo queue process in the background
|
||||
|
||||
proc_run('php',"include/dsprphotoq.php");
|
||||
|
||||
// expire any expired accounts
|
||||
|
||||
q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
require_once('include/datetime.php');
|
||||
|
||||
|
||||
/*
|
||||
* poco_load
|
||||
*
|
||||
|
|
|
|||
|
|
@ -23,7 +23,6 @@ function replace_macros($s,$r) {
|
|||
if(gettype($s) === 'string') {
|
||||
$template = $s;
|
||||
$s = new FriendicaSmarty();
|
||||
$s->error_reporting = E_ALL & ~E_NOTICE;
|
||||
}
|
||||
foreach($r as $key=>$value) {
|
||||
if($key[0] === '$') {
|
||||
|
|
@ -490,12 +489,12 @@ function get_template_file($a, $filename, $root = '') {
|
|||
if($root !== '' && $root[strlen($root)-1] !== '/')
|
||||
$root = $root . '/';
|
||||
|
||||
if(file_exists($root . "view/theme/$theme/$filename"))
|
||||
$template_file = $root . "view/theme/$theme/$filename";
|
||||
elseif (x($a->theme_info,"extends") && file_exists($root . "view/theme/".$a->theme_info["extends"]."/$filename"))
|
||||
$template_file = $root . "view/theme/".$a->theme_info["extends"]."/$filename";
|
||||
if(file_exists("{$root}view/theme/$theme/$filename"))
|
||||
$template_file = "{$root}view/theme/$theme/$filename";
|
||||
elseif (x($a->theme_info,"extends") && file_exists("{$root}view/theme/{$a->theme_info["extends"]}/$filename"))
|
||||
$template_file = "{$root}view/theme/{$a->theme_info["extends"]}/$filename";
|
||||
else
|
||||
$template_file = $root . "view/$filename";
|
||||
$template_file = "{$root}view/$filename";
|
||||
|
||||
return $template_file;
|
||||
}}
|
||||
|
|
@ -1045,13 +1044,13 @@ function prepare_body($item,$attach = false) {
|
|||
return $s;
|
||||
}
|
||||
|
||||
$arr = explode(',',$item['attach']);
|
||||
$arr = explode('[/attach],',$item['attach']);
|
||||
if(count($arr)) {
|
||||
$s .= '<div class="body-attach">';
|
||||
foreach($arr as $r) {
|
||||
$matches = false;
|
||||
$icon = '';
|
||||
$cnt = preg_match_all('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches, PREG_SET_ORDER);
|
||||
$cnt = preg_match_all('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches, PREG_SET_ORDER);
|
||||
if($cnt) {
|
||||
foreach($matches as $mtch) {
|
||||
$icontype = strtolower(substr($mtch[3],0,strpos($mtch[3],'/')));
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ require_once('include/text.php');
|
|||
require_once('include/pgettext.php');
|
||||
require_once('include/datetime.php');
|
||||
|
||||
|
||||
function create_user($arr) {
|
||||
|
||||
// Required: { username, nickname, email } or { openid_url }
|
||||
|
|
|
|||
37
index.php
37
index.php
|
|
@ -1,5 +1,6 @@
|
|||
<?php
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* Friendica
|
||||
|
|
@ -43,7 +44,7 @@ load_translation_table($lang);
|
|||
|
||||
require_once("include/dba.php");
|
||||
|
||||
if(! $install) {
|
||||
if(!$install) {
|
||||
$db = new dba($db_host, $db_user, $db_pass, $db_data, $install);
|
||||
unset($db_host, $db_user, $db_pass, $db_data);
|
||||
|
||||
|
|
@ -59,6 +60,8 @@ if(! $install) {
|
|||
call_hooks('init_1');
|
||||
}
|
||||
|
||||
$maintenance = get_config('system', 'maintenance');
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -89,7 +92,7 @@ if((x($_SESSION,'language')) && ($_SESSION['language'] !== $lang)) {
|
|||
load_translation_table($lang);
|
||||
}
|
||||
|
||||
if((x($_GET,'zrl')) && (! $install)) {
|
||||
if((x($_GET,'zrl')) && (!$install && !$maintenance)) {
|
||||
$_SESSION['my_url'] = $_GET['zrl'];
|
||||
$a->query_string = preg_replace('/[\?&]zrl=(.*?)([\?&]|$)/is','',$a->query_string);
|
||||
zrl_init($a);
|
||||
|
|
@ -135,8 +138,12 @@ if(! x($_SESSION,'sysmsg_info'))
|
|||
|
||||
if($install)
|
||||
$a->module = 'install';
|
||||
else
|
||||
check_config($a);
|
||||
elseif($maintenance)
|
||||
$a->module = 'maintenance';
|
||||
else {
|
||||
proc_run('php', 'include/dbupdate.php');
|
||||
check_plugins($a);
|
||||
}
|
||||
|
||||
nav_set_selected('nothing');
|
||||
|
||||
|
|
@ -237,7 +244,7 @@ if (file_exists($theme_info_file)){
|
|||
if(! x($a->page,'content'))
|
||||
$a->page['content'] = '';
|
||||
|
||||
if(! $install)
|
||||
if(!$install && !$maintenance)
|
||||
call_hooks('page_content_top',$a->page['content']);
|
||||
|
||||
/**
|
||||
|
|
@ -372,20 +379,14 @@ $a->page['content'] .= '<div id="pause"></div>';
|
|||
*
|
||||
*/
|
||||
|
||||
if($a->module != 'install') {
|
||||
if($a->module != 'install' && $a->module != 'maintenance') {
|
||||
nav($a);
|
||||
}
|
||||
|
||||
/**
|
||||
* Build the page - now that we have all the components
|
||||
* Add a "toggle mobile" link if we're using a mobile device
|
||||
*/
|
||||
|
||||
if(!$a->theme['stylesheet'])
|
||||
$stylesheet = current_theme_url();
|
||||
else
|
||||
$stylesheet = $a->theme['stylesheet'];
|
||||
$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => $stylesheet));
|
||||
|
||||
if($a->is_mobile || $a->is_tablet) {
|
||||
if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
|
||||
$link = $a->get_baseurl() . '/toggle_mobile?address=' . curPageURL();
|
||||
|
|
@ -399,6 +400,16 @@ if($a->is_mobile || $a->is_tablet) {
|
|||
));
|
||||
}
|
||||
|
||||
/**
|
||||
* Build the page - now that we have all the components
|
||||
*/
|
||||
|
||||
if(!$a->theme['stylesheet'])
|
||||
$stylesheet = current_theme_url();
|
||||
else
|
||||
$stylesheet = $a->theme['stylesheet'];
|
||||
$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => $stylesheet));
|
||||
|
||||
$page = $a->page;
|
||||
$profile = $a->profile;
|
||||
|
||||
|
|
|
|||
|
|
@ -253,10 +253,9 @@ ACL.prototype.populate = function(data){
|
|||
//console.log(html);
|
||||
that.list_content.append(html);
|
||||
});
|
||||
$(".acl-list-item img[data-src]").each(function(i, el){
|
||||
// Replace data-src attribute with src attribute for every image
|
||||
$(".acl-list-item img[data-src]", that.list_content).each(function(i, el){
|
||||
// Add src attribute for images with a data-src attribute
|
||||
$(el).attr('src', $(el).data("src"));
|
||||
$(el).removeAttr("data-src");
|
||||
});
|
||||
that.update_view();
|
||||
}
|
||||
|
|
|
|||
2
js/acl.min.js
vendored
2
js/acl.min.js
vendored
File diff suppressed because one or more lines are too long
|
|
@ -183,9 +183,8 @@
|
|||
});
|
||||
|
||||
$("img[data-src]", nnm).each(function(i, el){
|
||||
// Replace data-src attribute with src attribute for every image
|
||||
// Add src attribute for images with a data-src attribute
|
||||
$(el).attr('src', $(el).data("src"));
|
||||
$(el).removeAttr("data-src");
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -34,9 +34,11 @@ function attach_init(&$a) {
|
|||
return;
|
||||
}
|
||||
|
||||
// Use quotes around the filename to prevent a "multiple Content-Disposition"
|
||||
// error in Chrome for filenames with commas in them
|
||||
header('Content-type: ' . $r[0]['filetype']);
|
||||
header('Content-disposition: attachment; filename=' . $r[0]['filename']);
|
||||
header('Content-disposition: attachment; filename="' . $r[0]['filename'] . '"');
|
||||
echo $r[0]['data'];
|
||||
killme();
|
||||
// NOTREACHED
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ function visible_lf($s) {
|
|||
|
||||
function babel_content(&$a) {
|
||||
|
||||
$o .= '<h3>Babel Diagnostic</h3>';
|
||||
$o .= '<h1>Babel Diagnostic</h1>';
|
||||
|
||||
$o .= '<form action="babel" method="post">';
|
||||
$o .= t('Source (bbcode) text:') . EOL . '<textarea name="text" >' . htmlspecialchars($_REQUEST['text']) .'</textarea>' . EOL;
|
||||
|
|
@ -28,31 +28,35 @@ function babel_content(&$a) {
|
|||
if(x($_REQUEST,'text')) {
|
||||
|
||||
$text = trim($_REQUEST['text']);
|
||||
$o .= t("Source input: ") . EOL. EOL;
|
||||
$o .= "<h2>" . t("Source input: ") . "</h2>" . EOL. EOL;
|
||||
$o .= visible_lf($text) . EOL. EOL;
|
||||
|
||||
$html = bbcode($text);
|
||||
$o .= t("bb2html: ") . EOL. EOL;
|
||||
$o .= "<h2>" . t("bb2html (raw HTML): ") . "</h2>" . EOL. EOL;
|
||||
$o .= htmlspecialchars($html). EOL. EOL;
|
||||
|
||||
//$html = bbcode($text);
|
||||
$o .= "<h2>" . t("bb2html: ") . "</h2>" . EOL. EOL;
|
||||
$o .= $html. EOL. EOL;
|
||||
|
||||
$bbcode = html2bbcode($html);
|
||||
$o .= t("bb2html2bb: ") . EOL. EOL;
|
||||
$o .= "<h2>" . t("bb2html2bb: ") . "</h2>" . EOL. EOL;
|
||||
$o .= visible_lf($bbcode) . EOL. EOL;
|
||||
|
||||
$diaspora = bb2diaspora($text);
|
||||
$o .= t("bb2md: ") . EOL. EOL;
|
||||
$o .= "<h2>" . t("bb2md: ") . "</h2>" . EOL. EOL;
|
||||
$o .= visible_lf($diaspora) . EOL. EOL;
|
||||
|
||||
$html = Markdown($diaspora);
|
||||
$o .= t("bb2md2html: ") . EOL. EOL;
|
||||
$o .= "<h2>" . t("bb2md2html: ") . "</h2>" . EOL. EOL;
|
||||
$o .= $html. EOL. EOL;
|
||||
|
||||
$bbcode = diaspora2bb($diaspora);
|
||||
$o .= t("bb2dia2bb: ") . EOL. EOL;
|
||||
$o .= "<h2>" . t("bb2dia2bb: ") . "</h2>" . EOL. EOL;
|
||||
$o .= visible_lf($bbcode) . EOL. EOL;
|
||||
|
||||
$bbcode = html2bbcode($html);
|
||||
$o .= t("bb2md2html2bb: ") . EOL. EOL;
|
||||
$o .= "<h2>" . t("bb2md2html2bb: ") . "</h2>" . EOL. EOL;
|
||||
$o .= visible_lf($bbcode) . EOL. EOL;
|
||||
|
||||
|
||||
|
|
@ -62,12 +66,12 @@ function babel_content(&$a) {
|
|||
if(x($_REQUEST,'d2bbtext')) {
|
||||
|
||||
$d2bbtext = trim($_REQUEST['d2bbtext']);
|
||||
$o .= t("Source input (Diaspora format): ") . EOL. EOL;
|
||||
$o .= "<h2>" . t("Source input (Diaspora format): ") . "</h2>" . EOL. EOL;
|
||||
$o .= visible_lf($d2bbtext) . EOL. EOL;
|
||||
|
||||
|
||||
$bb = diaspora2bb($d2bbtext);
|
||||
$o .= t("diaspora2bb: ") . EOL. EOL;
|
||||
$o .= "<h2>" . t("diaspora2bb: ") . "</h2>" . EOL. EOL;
|
||||
$o .= visible_lf($bb) . EOL. EOL;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -746,10 +746,11 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
|
|||
'$dfrn_url' => $r[0]['url'],
|
||||
'$uid' => $newuid )
|
||||
);
|
||||
|
||||
$res = mail($r[0]['email'], sprintf( t("Connection accepted at %s") , $a->config['sitename']),
|
||||
require_once('include/email.php');
|
||||
|
||||
$res = mail($r[0]['email'], email_header_encode( sprintf( t("Connection accepted at %s") , $a->config['sitename']),'UTF-8'),
|
||||
$email_tpl,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
. 'Content-transfer-encoding: 8bit' );
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,18 @@
|
|||
<?php
|
||||
|
||||
|
||||
function display_init(&$a) {
|
||||
|
||||
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
|
||||
return;
|
||||
}
|
||||
|
||||
$nick = (($a->argc > 1) ? $a->argv[1] : '');
|
||||
profile_load($a,$nick);
|
||||
|
||||
}
|
||||
|
||||
|
||||
function display_content(&$a, $update = 0) {
|
||||
|
||||
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
|
||||
|
|
@ -25,10 +37,10 @@ function display_content(&$a, $update = 0) {
|
|||
else {
|
||||
$nick = (($a->argc > 1) ? $a->argv[1] : '');
|
||||
}
|
||||
profile_load($a,$nick);
|
||||
|
||||
if($update) {
|
||||
$item_id = $_REQUEST['item_id'];
|
||||
$a->profile = array('uid' => intval($update), 'profile_uid' => intval($update));
|
||||
}
|
||||
else {
|
||||
$item_id = (($a->argc > 2) ? intval($a->argv[2]) : 0);
|
||||
|
|
@ -108,6 +120,8 @@ function display_content(&$a, $update = 0) {
|
|||
$sql_extra = item_permissions_sql($a->profile['uid'],$remote_contact,$groups);
|
||||
|
||||
if($update) {
|
||||
|
||||
dbg(1);
|
||||
$r = q("SELECT id FROM item WHERE item.uid = %d
|
||||
AND `item`.`parent` = ( SELECT `parent` FROM `item` WHERE ( `id` = '%s' OR `uri` = '%s' ))
|
||||
$sql_extra AND unseen = 1",
|
||||
|
|
@ -115,6 +129,7 @@ function display_content(&$a, $update = 0) {
|
|||
dbesc($item_id),
|
||||
dbesc($item_id)
|
||||
);
|
||||
dbg(0);
|
||||
if(!$r)
|
||||
return '';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -250,8 +250,8 @@ function events_content(&$a) {
|
|||
$r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`,
|
||||
`item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event` LEFT JOIN `item` ON `item`.`event-id` = `event`.`id`
|
||||
WHERE `event`.`uid` = %d and event.ignore = %d
|
||||
AND (( `adjust` = 0 AND `finish` >= '%s' AND `start` <= '%s' )
|
||||
OR ( `adjust` = 1 AND `finish` >= '%s' AND `start` <= '%s' )) ",
|
||||
AND (( `adjust` = 0 AND ( `finish` >= '%s' or nofinish ) AND `start` <= '%s' )
|
||||
OR ( `adjust` = 1 AND ( `finish` >= '%s' or nofinish ) AND `start` <= '%s' )) ",
|
||||
intval(local_user()),
|
||||
intval($ignored),
|
||||
dbesc($start),
|
||||
|
|
|
|||
|
|
@ -220,16 +220,15 @@ function group_content(&$a) {
|
|||
}
|
||||
}
|
||||
|
||||
$context['$groupeditor'] = $groupeditor;
|
||||
$context['$desc'] = t('Click on a contact to add or remove.');
|
||||
|
||||
if($change) {
|
||||
$context['$groupeditor'] = $groupeditor;
|
||||
$tpl = get_markup_template('groupeditor.tpl');
|
||||
echo replace_macros($tpl, $context);
|
||||
killme();
|
||||
}
|
||||
|
||||
$context['$groupedit_info'] = $groupeditor;
|
||||
return replace_macros($tpl, $context);
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,8 +25,12 @@ function home_content(&$a) {
|
|||
if(x($_SESSION,'mobile-theme'))
|
||||
unset($_SESSION['mobile-theme']);
|
||||
|
||||
if(file_exists('home.html'))
|
||||
$o .= file_get_contents('home.html');
|
||||
if(file_exists('home.html')){
|
||||
if(file_exists('home.css')){
|
||||
$a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/home.css' . '" media="all" />';}
|
||||
|
||||
$o .= file_get_contents('home.html');}
|
||||
|
||||
else $o .= '<h1>' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '</h1>';
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
require_once('include/email.php');
|
||||
|
||||
function invite_post(&$a) {
|
||||
|
||||
if(! local_user()) {
|
||||
|
|
@ -56,7 +58,7 @@ function invite_post(&$a) {
|
|||
else
|
||||
$nmessage = $message;
|
||||
|
||||
$res = mail($recip, sprintf( t('Please join us on Friendica'), $a->config['sitename']),
|
||||
$res = mail($recip, email_header_encode( t('Please join us on Friendica'),'UTF-8'),
|
||||
$nmessage,
|
||||
"From: " . $a->user['email'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
<?php
|
||||
|
||||
require_once('include/email.php');
|
||||
|
||||
function lostpass_post(&$a) {
|
||||
|
||||
|
|
@ -40,9 +41,9 @@ function lostpass_post(&$a) {
|
|||
'$reset_link' => $a->get_baseurl() . '/lostpass?verify=' . $new_password
|
||||
));
|
||||
|
||||
$res = mail($email, sprintf( t('Password reset requested at %s'),$a->config['sitename']),
|
||||
$res = mail($email, email_header_encode(sprintf( t('Password reset requested at %s'),$a->config['sitename']),'UTF-8'),
|
||||
$email_tpl,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
. 'Content-transfer-encoding: 8bit' );
|
||||
|
||||
|
|
@ -103,8 +104,10 @@ function lostpass_content(&$a) {
|
|||
'$new_password' => $new_password,
|
||||
'$uid' => $newuid ));
|
||||
|
||||
$res = mail($email,"Your password has changed at {$a->config['sitename']}",$email_tpl,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
$subject = sprintf( t('Your password has been changed at %s'), $a->config['sitename']);
|
||||
|
||||
$res = mail($email, email_header_encode( $subject, 'UTF-8'), $email_tpl,
|
||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
. 'Content-transfer-encoding: 8bit' );
|
||||
|
||||
|
|
|
|||
7
mod/maintenance.php
Normal file
7
mod/maintenance.php
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
|
||||
function maintenance_content(&$a) {
|
||||
return replace_macros(get_markup_template('maintenance.tpl'), array(
|
||||
'$sysdown' => t('System down for maintenance')
|
||||
));
|
||||
}
|
||||
|
|
@ -516,7 +516,7 @@ function message_content(&$a) {
|
|||
'$to' => t('To:'),
|
||||
'$showinputs' => '',
|
||||
'$subject' => t('Subject:'),
|
||||
'$subjtxt' => template_escape($message['title']),
|
||||
'$subjtxt' => $subjtxt_e,
|
||||
'$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ',
|
||||
'$yourmessage' => t('Your message:'),
|
||||
'$text' => '',
|
||||
|
|
|
|||
|
|
@ -236,8 +236,6 @@ function parse_url_content(&$a) {
|
|||
$str_tags = '';
|
||||
|
||||
$textmode = false;
|
||||
if(local_user() && intval(get_pconfig(local_user(),'system','plaintext')))
|
||||
$textmode = true;
|
||||
|
||||
if(local_user() && (! feature_enabled(local_user(),'richtext')))
|
||||
$textmode = true;
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@ function profile_init(&$a) {
|
|||
auto_redir($a, $which);
|
||||
}
|
||||
|
||||
set_template_engine($a); // reset the template engine to the default in case the user's theme doesn't specify one
|
||||
profile_load($a,$which,$profile);
|
||||
|
||||
$blocked = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
|
||||
|
|
|
|||
258
mod/profiles.php
258
mod/profiles.php
|
|
@ -1,6 +1,145 @@
|
|||
<?php
|
||||
|
||||
|
||||
function profiles_init(&$a) {
|
||||
|
||||
nav_set_selected('profiles');
|
||||
|
||||
if(! local_user()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(($a->argc > 2) && ($a->argv[1] === "drop") && intval($a->argv[2])) {
|
||||
$r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 LIMIT 1",
|
||||
intval($a->argv[2]),
|
||||
intval(local_user())
|
||||
);
|
||||
if(! count($r)) {
|
||||
notice( t('Profile not found.') . EOL);
|
||||
goaway($a->get_baseurl(true) . '/profiles');
|
||||
return; // NOTREACHED
|
||||
}
|
||||
|
||||
check_form_security_token_redirectOnErr('/profiles', 'profile_drop', 't');
|
||||
|
||||
// move every contact using this profile as their default to the user default
|
||||
|
||||
$r = q("UPDATE `contact` SET `profile-id` = (SELECT `profile`.`id` AS `profile-id` FROM `profile` WHERE `profile`.`is-default` = 1 AND `profile`.`uid` = %d LIMIT 1) WHERE `profile-id` = %d AND `uid` = %d ",
|
||||
intval(local_user()),
|
||||
intval($a->argv[2]),
|
||||
intval(local_user())
|
||||
);
|
||||
$r = q("DELETE FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
||||
intval($a->argv[2]),
|
||||
intval(local_user())
|
||||
);
|
||||
if($r)
|
||||
info( t('Profile deleted.') . EOL);
|
||||
|
||||
goaway($a->get_baseurl(true) . '/profiles');
|
||||
return; // NOTREACHED
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
if(($a->argc > 1) && ($a->argv[1] === 'new')) {
|
||||
|
||||
check_form_security_token_redirectOnErr('/profiles', 'profile_new', 't');
|
||||
|
||||
$r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
|
||||
intval(local_user()));
|
||||
$num_profiles = count($r0);
|
||||
|
||||
$name = t('Profile-') . ($num_profiles + 1);
|
||||
|
||||
$r1 = q("SELECT `name`, `photo`, `thumb` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
|
||||
intval(local_user()));
|
||||
|
||||
$r2 = q("INSERT INTO `profile` (`uid` , `profile-name` , `name`, `photo`, `thumb`)
|
||||
VALUES ( %d, '%s', '%s', '%s', '%s' )",
|
||||
intval(local_user()),
|
||||
dbesc($name),
|
||||
dbesc($r1[0]['name']),
|
||||
dbesc($r1[0]['photo']),
|
||||
dbesc($r1[0]['thumb'])
|
||||
);
|
||||
|
||||
$r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
|
||||
intval(local_user()),
|
||||
dbesc($name)
|
||||
);
|
||||
|
||||
info( t('New profile created.') . EOL);
|
||||
if(count($r3) == 1)
|
||||
goaway($a->get_baseurl(true) . '/profiles/' . $r3[0]['id']);
|
||||
|
||||
goaway($a->get_baseurl(true) . '/profiles');
|
||||
}
|
||||
|
||||
if(($a->argc > 2) && ($a->argv[1] === 'clone')) {
|
||||
|
||||
check_form_security_token_redirectOnErr('/profiles', 'profile_clone', 't');
|
||||
|
||||
$r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
|
||||
intval(local_user()));
|
||||
$num_profiles = count($r0);
|
||||
|
||||
$name = t('Profile-') . ($num_profiles + 1);
|
||||
$r1 = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d LIMIT 1",
|
||||
intval(local_user()),
|
||||
intval($a->argv[2])
|
||||
);
|
||||
if(! count($r1)) {
|
||||
notice( t('Profile unavailable to clone.') . EOL);
|
||||
killme();
|
||||
return;
|
||||
}
|
||||
unset($r1[0]['id']);
|
||||
$r1[0]['is-default'] = 0;
|
||||
$r1[0]['publish'] = 0;
|
||||
$r1[0]['net-publish'] = 0;
|
||||
$r1[0]['profile-name'] = dbesc($name);
|
||||
|
||||
dbesc_array($r1[0]);
|
||||
|
||||
$r2 = dbq("INSERT INTO `profile` (`"
|
||||
. implode("`, `", array_keys($r1[0]))
|
||||
. "`) VALUES ('"
|
||||
. implode("', '", array_values($r1[0]))
|
||||
. "')" );
|
||||
|
||||
$r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
|
||||
intval(local_user()),
|
||||
dbesc($name)
|
||||
);
|
||||
info( t('New profile created.') . EOL);
|
||||
if(count($r3) == 1)
|
||||
goaway($a->get_baseurl(true) . '/profiles/' . $r3[0]['id']);
|
||||
|
||||
goaway($a->get_baseurl(true) . '/profiles');
|
||||
|
||||
return; // NOTREACHED
|
||||
}
|
||||
|
||||
|
||||
if(($a->argc > 1) && (intval($a->argv[1]))) {
|
||||
$r = q("SELECT id FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
||||
intval($a->argv[1]),
|
||||
intval(local_user())
|
||||
);
|
||||
if(! count($r)) {
|
||||
notice( t('Profile not found.') . EOL);
|
||||
killme();
|
||||
return;
|
||||
}
|
||||
|
||||
profile_load($a,$a->user['nickname'],$r[0]['id']);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function profiles_post(&$a) {
|
||||
|
||||
if(! local_user()) {
|
||||
|
|
@ -424,127 +563,12 @@ function profile_activity($changed, $value) {
|
|||
|
||||
function profiles_content(&$a) {
|
||||
|
||||
$o = '';
|
||||
nav_set_selected('profiles');
|
||||
|
||||
if(! local_user()) {
|
||||
notice( t('Permission denied.') . EOL);
|
||||
return;
|
||||
}
|
||||
|
||||
if(($a->argc > 2) && ($a->argv[1] === "drop") && intval($a->argv[2])) {
|
||||
$r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 LIMIT 1",
|
||||
intval($a->argv[2]),
|
||||
intval(local_user())
|
||||
);
|
||||
if(! count($r)) {
|
||||
notice( t('Profile not found.') . EOL);
|
||||
goaway($a->get_baseurl(true) . '/profiles');
|
||||
return; // NOTREACHED
|
||||
}
|
||||
|
||||
check_form_security_token_redirectOnErr('/profiles', 'profile_drop', 't');
|
||||
|
||||
// move every contact using this profile as their default to the user default
|
||||
|
||||
$r = q("UPDATE `contact` SET `profile-id` = (SELECT `profile`.`id` AS `profile-id` FROM `profile` WHERE `profile`.`is-default` = 1 AND `profile`.`uid` = %d LIMIT 1) WHERE `profile-id` = %d AND `uid` = %d ",
|
||||
intval(local_user()),
|
||||
intval($a->argv[2]),
|
||||
intval(local_user())
|
||||
);
|
||||
$r = q("DELETE FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
||||
intval($a->argv[2]),
|
||||
intval(local_user())
|
||||
);
|
||||
if($r)
|
||||
info( t('Profile deleted.') . EOL);
|
||||
|
||||
goaway($a->get_baseurl(true) . '/profiles');
|
||||
return; // NOTREACHED
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
if(($a->argc > 1) && ($a->argv[1] === 'new')) {
|
||||
|
||||
check_form_security_token_redirectOnErr('/profiles', 'profile_new', 't');
|
||||
|
||||
$r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
|
||||
intval(local_user()));
|
||||
$num_profiles = count($r0);
|
||||
|
||||
$name = t('Profile-') . ($num_profiles + 1);
|
||||
|
||||
$r1 = q("SELECT `name`, `photo`, `thumb` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
|
||||
intval(local_user()));
|
||||
|
||||
$r2 = q("INSERT INTO `profile` (`uid` , `profile-name` , `name`, `photo`, `thumb`)
|
||||
VALUES ( %d, '%s', '%s', '%s', '%s' )",
|
||||
intval(local_user()),
|
||||
dbesc($name),
|
||||
dbesc($r1[0]['name']),
|
||||
dbesc($r1[0]['photo']),
|
||||
dbesc($r1[0]['thumb'])
|
||||
);
|
||||
|
||||
$r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
|
||||
intval(local_user()),
|
||||
dbesc($name)
|
||||
);
|
||||
|
||||
info( t('New profile created.') . EOL);
|
||||
if(count($r3) == 1)
|
||||
goaway($a->get_baseurl(true) . '/profiles/' . $r3[0]['id']);
|
||||
|
||||
goaway($a->get_baseurl(true) . '/profiles');
|
||||
}
|
||||
|
||||
if(($a->argc > 2) && ($a->argv[1] === 'clone')) {
|
||||
|
||||
check_form_security_token_redirectOnErr('/profiles', 'profile_clone', 't');
|
||||
|
||||
$r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
|
||||
intval(local_user()));
|
||||
$num_profiles = count($r0);
|
||||
|
||||
$name = t('Profile-') . ($num_profiles + 1);
|
||||
$r1 = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d LIMIT 1",
|
||||
intval(local_user()),
|
||||
intval($a->argv[2])
|
||||
);
|
||||
if(! count($r1)) {
|
||||
notice( t('Profile unavailable to clone.') . EOL);
|
||||
return;
|
||||
}
|
||||
unset($r1[0]['id']);
|
||||
$r1[0]['is-default'] = 0;
|
||||
$r1[0]['publish'] = 0;
|
||||
$r1[0]['net-publish'] = 0;
|
||||
$r1[0]['profile-name'] = dbesc($name);
|
||||
|
||||
dbesc_array($r1[0]);
|
||||
|
||||
$r2 = dbq("INSERT INTO `profile` (`"
|
||||
. implode("`, `", array_keys($r1[0]))
|
||||
. "`) VALUES ('"
|
||||
. implode("', '", array_values($r1[0]))
|
||||
. "')" );
|
||||
|
||||
$r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
|
||||
intval(local_user()),
|
||||
dbesc($name)
|
||||
);
|
||||
info( t('New profile created.') . EOL);
|
||||
if(count($r3) == 1)
|
||||
goaway($a->get_baseurl(true) . '/profiles/' . $r3[0]['id']);
|
||||
|
||||
goaway($a->get_baseurl(true) . '/profiles');
|
||||
|
||||
return; // NOTREACHED
|
||||
}
|
||||
|
||||
$o = '';
|
||||
|
||||
if(($a->argc > 1) && (intval($a->argv[1]))) {
|
||||
$r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
||||
|
|
@ -556,8 +580,6 @@ function profiles_content(&$a) {
|
|||
return;
|
||||
}
|
||||
|
||||
profile_load($a,$a->user['nickname'],$r[0]['id']);
|
||||
|
||||
require_once('include/profile_selectors.php');
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once('include/email.php');
|
||||
|
||||
if(! function_exists('register_post')) {
|
||||
function register_post(&$a) {
|
||||
|
||||
|
|
@ -86,9 +88,9 @@ function register_post(&$a) {
|
|||
'$password' => $result['password'],
|
||||
'$uid' => $user['uid'] ));
|
||||
|
||||
$res = mail($user['email'], sprintf(t('Registration details for %s'), $a->config['sitename']),
|
||||
$res = mail($user['email'], email_header_encode( sprintf( t('Registration details for %s'), $a->config['sitename']),'UTF-8'),
|
||||
$email_tpl,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
. 'Content-transfer-encoding: 8bit' );
|
||||
|
||||
|
|
@ -140,9 +142,9 @@ function register_post(&$a) {
|
|||
'$hash' => $hash
|
||||
));
|
||||
|
||||
$res = mail($a->config['admin_email'], sprintf(t('Registration request at %s'), $a->config['sitename']),
|
||||
$res = mail($a->config['admin_email'], email_header_encode( sprintf(t('Registration request at %s'), $a->config['sitename']),'UTF-8'),
|
||||
$email_tpl,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
. 'Content-transfer-encoding: 8bit' );
|
||||
|
||||
|
|
@ -239,7 +241,6 @@ function register_content(&$a) {
|
|||
));
|
||||
}
|
||||
|
||||
|
||||
$license = '';
|
||||
|
||||
$o = get_markup_template("register.tpl");
|
||||
|
|
@ -267,7 +268,7 @@ function register_content(&$a) {
|
|||
'$openid' => $openid_url,
|
||||
'$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '),
|
||||
'$addrlabel' => t('Your Email Address: '),
|
||||
'$nickdesc' => t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.'),
|
||||
'$nickdesc' => str_replace('$sitename',$a->get_hostname(),t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.')),
|
||||
'$nicklabel' => t('Choose a nickname: '),
|
||||
'$photo' => $photo,
|
||||
'$publish' => $profile_publish,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
require_once('include/email.php');
|
||||
|
||||
function user_allow($hash) {
|
||||
|
||||
$a = get_app();
|
||||
|
|
@ -49,9 +51,9 @@ function user_allow($hash) {
|
|||
'$uid' => $user[0]['uid']
|
||||
));
|
||||
|
||||
$res = mail($user[0]['email'], sprintf(t('Registration details for %s'), $a->config['sitename']),
|
||||
$res = mail($user[0]['email'], email_header_encode( sprintf(t('Registration details for %s'), $a->config['sitename']), 'UTF-8'),
|
||||
$email_tpl,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
. 'Content-transfer-encoding: 8bit' );
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,8 @@ function share_init(&$a) {
|
|||
$o = "[share author='".str_replace("'", "'",$r[0]['author-name']).
|
||||
"' profile='".$r[0]['author-link'].
|
||||
"' avatar='".$r[0]['author-avatar'].
|
||||
"' link='".$r[0]['plink']."']\n";
|
||||
"' link='".$r[0]['plink'].
|
||||
"' posted='".$r[0]['created']."']\n";
|
||||
if($r[0]['title'])
|
||||
$o .= '[b]'.$r[0]['title'].'[/b]'."\n";
|
||||
$o .= $r[0]['body'];
|
||||
|
|
|
|||
|
|
@ -160,7 +160,12 @@ function wall_upload_post(&$a) {
|
|||
|
||||
//if we get the signal then return the image url info in BBCODE, otherwise this outputs the info and bails (for the ajax image uploader on wall post)
|
||||
if ($_REQUEST['hush']!='yeah') {
|
||||
echo "\n\n" . '[url=' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.".$ph->getExt()."[/img][/url]\n\n";
|
||||
if(local_user() && (! feature_enabled(local_user(),'richtext') || x($_REQUEST['nomce'])) ) {
|
||||
echo "\n\n" . '[url=' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.".$ph->getExt()."[/img][/url]\n\n";
|
||||
}
|
||||
else {
|
||||
echo '<br /><br /><a href="' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '" ><img src="' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.".$ph->getExt()."\" alt=\"$basename\" /></a><br /><br />";
|
||||
}
|
||||
}
|
||||
else {
|
||||
$m = '[url=' . $a->get_baseurl() . '/photos/' . $page_owner_nick . '/image/' . $hash . '][img]' . $a->get_baseurl() . "/photo/{$hash}-{$smallest}.".$ph->getExt()."[/img][/url]";
|
||||
|
|
|
|||
|
|
@ -1,14 +1,17 @@
|
|||
#!/usr/bin/python
|
||||
#
|
||||
# Script to convert Friendica internal template files into Smarty template files
|
||||
# Copyright 2012 Zach Prezkuta
|
||||
# Copyright 2013 Zach Prezkuta
|
||||
# Licensed under GPL v3
|
||||
|
||||
import os, re, string
|
||||
import sys, getopt
|
||||
|
||||
ldelim = '{{'
|
||||
rdelim = '}}'
|
||||
|
||||
addheader = True
|
||||
|
||||
def fToSmarty(matches):
|
||||
match = matches.group(0)
|
||||
if match == '$j':
|
||||
|
|
@ -77,7 +80,7 @@ def fix_element(element):
|
|||
|
||||
if parts[first+1][0] == '$':
|
||||
# This takes care of elements where the filename is a variable, e.g. {{ inc $file }}
|
||||
element += 'file:' + ldelim + parts[first+1].rstrip('}') + rdelim
|
||||
element += ldelim + parts[first+1].rstrip('}') + rdelim
|
||||
else:
|
||||
# This takes care of elements where the filename is a path, e.g. {{ inc file.tpl }}
|
||||
element += parts[first+1].rstrip('}')
|
||||
|
|
@ -93,6 +96,10 @@ def fix_element(element):
|
|||
|
||||
|
||||
def convert(filename, tofilename, php_tpl):
|
||||
if addheader:
|
||||
header = ldelim + "*\n *\tAUTOMATICALLY GENERATED TEMPLATE\n *\tDO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN\n *\n *" + rdelim + "\n"
|
||||
tofilename.write(header)
|
||||
|
||||
for line in filename:
|
||||
newline = ''
|
||||
st_pos = 0
|
||||
|
|
@ -170,7 +177,39 @@ def convert(filename, tofilename, php_tpl):
|
|||
tofilename.write(newline)
|
||||
|
||||
|
||||
path = raw_input('Path to template folder to convert: ')
|
||||
def help(pname):
|
||||
print "\nUsage:"
|
||||
print "\t" + pname + " -h\n\n\t\t\tShow this help screen\n"
|
||||
print "\t" + pname + " -p directory\n\n\t\t\tConvert all .tpl files in directory to\n\t\t\tSmarty templates in directory/smarty3/\n"
|
||||
print "\t" + pname + "\n\n\t\t\tInteractive mode\n"
|
||||
|
||||
|
||||
|
||||
|
||||
#
|
||||
# Main script
|
||||
#
|
||||
|
||||
path = ''
|
||||
|
||||
try:
|
||||
opts, args = getopt.getopt(sys.argv[1:], "hp:", ['no-header'])
|
||||
for opt, arg in opts:
|
||||
if opt == '-h':
|
||||
help(sys.argv[0])
|
||||
sys.exit()
|
||||
elif opt == '-p':
|
||||
path = arg
|
||||
elif opt == '--no-header':
|
||||
addheader = False
|
||||
except getopt.GetoptError:
|
||||
help(sys.argv[0])
|
||||
sys.exit(2)
|
||||
|
||||
|
||||
if path == '':
|
||||
path = raw_input('Path to template folder to convert: ')
|
||||
|
||||
if path[-1:] != '/':
|
||||
path = path + '/'
|
||||
|
||||
|
|
@ -189,10 +228,14 @@ for a_file in files:
|
|||
filename = os.path.join(path,a_file)
|
||||
ext = a_file.split('.')[-1]
|
||||
if os.path.isfile(filename) and ext == 'tpl':
|
||||
with open(filename, 'r') as f:
|
||||
newfilename = os.path.join(outpath,a_file)
|
||||
with open(newfilename, 'w') as outf:
|
||||
print "Converting " + filename + " to " + newfilename
|
||||
convert(f, outf, php_tpl)
|
||||
f = open(filename, 'r')
|
||||
|
||||
newfilename = os.path.join(outpath,a_file)
|
||||
outf = open(newfilename, 'w')
|
||||
|
||||
print "Converting " + filename + " to " + newfilename
|
||||
convert(f, outf, php_tpl)
|
||||
|
||||
outf.close()
|
||||
f.close()
|
||||
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ server {
|
|||
# otherwise fall back to front controller
|
||||
# allow browser to cache them
|
||||
# added .htm for advanced source code editor library
|
||||
location ~* \.(jpg|jpeg|gif|png|css|js|htm|html)$ {
|
||||
location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|ttf|svg)$ {
|
||||
expires 30d;
|
||||
try_files $uri /index.php?q=$uri&$args;
|
||||
}
|
||||
|
|
|
|||
64
mods/updatetpl.py
Executable file
64
mods/updatetpl.py
Executable file
|
|
@ -0,0 +1,64 @@
|
|||
#!/usr/bin/python
|
||||
#
|
||||
# Script to update Smarty template files from all internal templates
|
||||
# Copyright 2013 Zach Prezkuta
|
||||
# Licensed under GPL v3
|
||||
|
||||
|
||||
import os
|
||||
import sys, getopt
|
||||
import subprocess
|
||||
|
||||
|
||||
def help(pname):
|
||||
print "\nUsage:"
|
||||
print "\t" + pname + " -h\n\n\t\t\tShow this help screen\n"
|
||||
print "\t" + pname + " -p directory\n\n\t\t\tConvert all .tpl files in top-level\n\t\t\tFriendica directory to Smarty templates\n"
|
||||
print "\t" + pname + "\n\n\t\t\tInteractive mode\n"
|
||||
|
||||
|
||||
|
||||
#
|
||||
# Main script
|
||||
#
|
||||
|
||||
path = ''
|
||||
|
||||
try:
|
||||
opts, args = getopt.getopt(sys.argv[1:], "hp:")
|
||||
for opt, arg in opts:
|
||||
if opt == '-h':
|
||||
help(sys.argv[0])
|
||||
sys.exit()
|
||||
elif opt == '-p':
|
||||
path = arg
|
||||
except getopt.GetoptError:
|
||||
help(sys.argv[0])
|
||||
sys.exit(2)
|
||||
|
||||
if path == '':
|
||||
path = raw_input('Path to top-level Friendica directory: ')
|
||||
|
||||
if path[-1:] != '/':
|
||||
path = path + '/'
|
||||
|
||||
tplpaths = ['view/']
|
||||
names = os.listdir(path + 'view/')
|
||||
for name in names:
|
||||
if os.path.isdir(path + 'view/' + name):
|
||||
if name != 'smarty3' and name != 'theme':
|
||||
tplpaths.append('view/' + name + '/')
|
||||
|
||||
names = os.listdir(path + 'view/theme/')
|
||||
for name in names:
|
||||
if os.path.isdir(path + 'view/theme/' + name):
|
||||
tplpaths.append('view/theme/' + name + '/')
|
||||
|
||||
fnull = open(os.devnull, "w")
|
||||
|
||||
for tplpath in tplpaths:
|
||||
print "Converting " + path + tplpath
|
||||
subprocess.call(['python', path + 'mods/friendica-to-smarty-tpl.py', '-p', path + tplpath], stdout = fnull)
|
||||
|
||||
fnull.close()
|
||||
|
||||
|
|
@ -66,6 +66,7 @@ class Item extends BaseObject {
|
|||
if(! visible_activity($item)) {
|
||||
continue;
|
||||
}
|
||||
$item['pagedrop'] = $data['pagedrop'];
|
||||
$child = new Item($item);
|
||||
$this->add_child($child);
|
||||
}
|
||||
|
|
@ -536,13 +537,7 @@ class Item extends BaseObject {
|
|||
return false;
|
||||
}
|
||||
|
||||
if($a->theme['template_engine'] === 'smarty3') {
|
||||
$template_file = get_template_file($a, 'smarty3/' . $this->available_templates[$name]);
|
||||
}
|
||||
else {
|
||||
$template_file = $this->available_templates[$name];
|
||||
}
|
||||
$this->template = $template_file;
|
||||
$this->template = $this->available_templates[$name];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
27
update.php
27
update.php
|
|
@ -1371,6 +1371,7 @@ ADD INDEX ( `datasize` ) ");
|
|||
}
|
||||
|
||||
function update_1157() {
|
||||
<<<<<<< HEAD
|
||||
$r = q("ALTER TABLE `term` ADD `aid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
ADD `uid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
ADD INDEX (`uid`),
|
||||
|
|
@ -1380,6 +1381,32 @@ function update_1157() {
|
|||
return UPDATE_SUCCESS;
|
||||
}
|
||||
function update_1158() {
|
||||
$r = q("CREATE TABLE IF NOT EXISTS `dsprphotoq` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`uid` int(11) NOT NULL,
|
||||
`msg` mediumtext NOT NULL,
|
||||
`attempt` tinyint(4) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8"
|
||||
);
|
||||
|
||||
if($r)
|
||||
return UPDATE_SUCCESS;
|
||||
|
||||
return UPDATE_FAILED;
|
||||
}
|
||||
|
||||
function update_1159() {
|
||||
$r = q("ALTER TABLE `term` ADD `aid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
ADD `uid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
ADD INDEX (`uid`),
|
||||
ADD INDEX (`aid`)");
|
||||
|
||||
if(!$r) return UPDATE_FAILED;
|
||||
return UPDATE_SUCCESS;
|
||||
}
|
||||
|
||||
function update_1160() {
|
||||
$r = q("ALTER TABLE `item` ADD `mention` TINYINT(1) NOT NULL DEFAULT '0', ADD INDEX (`mention`)");
|
||||
// KEY `mention` (`mention`)
|
||||
if(!$r) return UPDATE_FAILED;
|
||||
|
|
|
|||
34
util/config
Normal file
34
util/config
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
// Red config utility
|
||||
|
||||
require_once('include/cli_startup.php');
|
||||
|
||||
cli_startup();
|
||||
|
||||
if($argc > 3) {
|
||||
set_config($argv[1],$argv[2],$argv[3]);
|
||||
echo "config[{$argv[1]}][{$argv[2]}] = " . get_config($argv[1],$argv[2]) . "\n";
|
||||
}
|
||||
|
||||
if($argc == 3) {
|
||||
echo "config[{$argv[1]}][{$argv[2]}] = " . get_config($argv[1],$argv[2]) . "\n";
|
||||
}
|
||||
|
||||
if($argc == 2) {
|
||||
load_config($argv[1]);
|
||||
foreach($a->config[$argv[1]] as $k => $x) {
|
||||
echo "config[{$argv[1]}][{$k}] = " . $x . "\n";
|
||||
}
|
||||
}
|
||||
|
||||
if($argc == 1) {
|
||||
$r = q("select * from config where 1");
|
||||
if($r) {
|
||||
foreach($r as $rr) {
|
||||
echo "config[{$rr['cat']}][{$rr['k']}] = " . $rr['v'] . "\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
26
util/config.md
Normal file
26
util/config.md
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
CLI config utility
|
||||
==================
|
||||
|
||||
Usage:
|
||||
|
||||
|
||||
config
|
||||
displays all config entries
|
||||
|
||||
|
||||
config family
|
||||
displays all config entries for family (system, database, etc)
|
||||
|
||||
|
||||
config family key
|
||||
displays single config entry for specified family and key
|
||||
|
||||
config family key value
|
||||
set config entry for specified family and key to value and display result
|
||||
|
||||
|
||||
|
||||
Notes:
|
||||
Setting config entries which are manually set in .htconfig.php may result in
|
||||
conflict between database settings and the manual startup settings.
|
||||
|
||||
31
util/maintenance.php
Normal file
31
util/maintenance.php
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
require_once("boot.php");
|
||||
|
||||
$a = new App;
|
||||
@include(".htconfig.php");
|
||||
|
||||
$lang = get_browser_language();
|
||||
load_translation_table($lang);
|
||||
|
||||
require_once("include/dba.php");
|
||||
$db = new dba($db_host, $db_user, $db_pass, $db_data, false);
|
||||
unset($db_host, $db_user, $db_pass, $db_data);
|
||||
load_config('config');
|
||||
load_config('system');
|
||||
|
||||
$maint_mode = 1;
|
||||
if($argc > 1)
|
||||
$maint_mode = intval($argv[1]);
|
||||
set_config('system', 'maintenance', $maint_mode);
|
||||
|
||||
if($maint_mode)
|
||||
$mode_str = "maintenance mode";
|
||||
else
|
||||
$mode_str = "normal mode";
|
||||
|
||||
echo "\n\tSystem set in $mode_str\n\n";
|
||||
echo "Usage:\n\n";
|
||||
echo "\tphp {$argv[0]} [1]\tSet the system in maintenance mode\n";
|
||||
echo "\tphp {$argv[0]} 0 \tSet the system in normal mode\n\n";
|
||||
|
||||
1130
util/messages.po
1130
util/messages.po
|
|
@ -6,9 +6,9 @@
|
|||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3.1.1572\n"
|
||||
"Project-Id-Version: 3.1.1589\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-12-29 10:00-0800\n"
|
||||
"POT-Creation-Date: 2013-01-15 10:00-0800\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"
|
||||
|
|
@ -46,22 +46,22 @@ msgstr ""
|
|||
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
|
||||
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
|
||||
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
|
||||
#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139
|
||||
#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/item.php:139
|
||||
#: ../../mod/item.php:155 ../../mod/mood.php:114
|
||||
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
|
||||
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
|
||||
#: ../../mod/message.php:38 ../../mod/message.php:172
|
||||
#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
|
||||
#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
|
||||
#: ../../mod/display.php:165 ../../mod/profiles.php:7
|
||||
#: ../../mod/profiles.php:431 ../../mod/delegate.php:6
|
||||
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
|
||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
|
||||
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:166
|
||||
#: ../../addon/fbpost/fbpost.php:172
|
||||
#: ../../mod/display.php:180 ../../mod/profiles.php:146
|
||||
#: ../../mod/profiles.php:567 ../../mod/delegate.php:6
|
||||
#: ../../mod/suggest.php:28 ../../mod/invite.php:15 ../../mod/invite.php:83
|
||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:512
|
||||
#: ../../addon/facebook/facebook.php:518 ../../addon/fbpost/fbpost.php:170
|
||||
#: ../../addon/fbpost/fbpost.php:176
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:354
|
||||
#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:3987
|
||||
#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
|
||||
#: ../../index.php:340 ../../addon.old/facebook/facebook.php:510
|
||||
#: ../../addon.old/facebook/facebook.php:516
|
||||
#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:354
|
||||
|
|
@ -142,11 +142,11 @@ msgstr ""
|
|||
#: ../../mod/settings.php:1018 ../../mod/group.php:87 ../../mod/mood.php:137
|
||||
#: ../../mod/message.php:301 ../../mod/message.php:527 ../../mod/admin.php:461
|
||||
#: ../../mod/admin.php:728 ../../mod/admin.php:865 ../../mod/admin.php:1064
|
||||
#: ../../mod/admin.php:1151 ../../mod/profiles.php:604
|
||||
#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:44
|
||||
#: ../../addon/facebook/facebook.php:619
|
||||
#: ../../mod/admin.php:1151 ../../mod/profiles.php:626
|
||||
#: ../../mod/invite.php:121 ../../addon/fromgplus/fromgplus.php:44
|
||||
#: ../../addon/facebook/facebook.php:621
|
||||
#: ../../addon/snautofollow/snautofollow.php:64
|
||||
#: ../../addon/fbpost/fbpost.php:272 ../../addon/yourls/yourls.php:76
|
||||
#: ../../addon/fbpost/fbpost.php:280 ../../addon/yourls/yourls.php:76
|
||||
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
|
||||
#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:89
|
||||
|
|
@ -159,7 +159,7 @@ msgstr ""
|
|||
#: ../../addon/impressum/impressum.php:83
|
||||
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
|
||||
#: ../../addon/qcomment/qcomment.php:61
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:70
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:94
|
||||
#: ../../addon/group_text/group_text.php:84
|
||||
#: ../../addon/libravatar/libravatar.php:99
|
||||
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:91
|
||||
|
|
@ -168,23 +168,23 @@ msgstr ""
|
|||
#: ../../addon/gravatar/gravatar.php:95
|
||||
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
|
||||
#: ../../addon/jappixmini/jappixmini.php:307
|
||||
#: ../../addon/statusnet/statusnet.php:278
|
||||
#: ../../addon/statusnet/statusnet.php:292
|
||||
#: ../../addon/statusnet/statusnet.php:318
|
||||
#: ../../addon/statusnet/statusnet.php:325
|
||||
#: ../../addon/statusnet/statusnet.php:353
|
||||
#: ../../addon/statusnet/statusnet.php:703 ../../addon/tumblr/tumblr.php:233
|
||||
#: ../../addon/statusnet/statusnet.php:290
|
||||
#: ../../addon/statusnet/statusnet.php:304
|
||||
#: ../../addon/statusnet/statusnet.php:330
|
||||
#: ../../addon/statusnet/statusnet.php:337
|
||||
#: ../../addon/statusnet/statusnet.php:374
|
||||
#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
|
||||
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
|
||||
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
|
||||
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
|
||||
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:515
|
||||
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:191
|
||||
#: ../../addon/twitter/twitter.php:229 ../../addon/twitter/twitter.php:554
|
||||
#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
|
||||
#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
|
||||
#: ../../view/theme/cleanzero/config.php:80
|
||||
#: ../../view/theme/diabook/theme.php:643
|
||||
#: ../../view/theme/diabook/theme.php:642
|
||||
#: ../../view/theme/diabook/config.php:152
|
||||
#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
|
||||
#: ../../object/Item.php:603 ../../addon.old/fromgplus/fromgplus.php:40
|
||||
#: ../../object/Item.php:604 ../../addon.old/fromgplus/fromgplus.php:40
|
||||
#: ../../addon.old/facebook/facebook.php:619
|
||||
#: ../../addon.old/snautofollow/snautofollow.php:64
|
||||
#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
|
||||
|
|
@ -242,11 +242,11 @@ msgstr ""
|
|||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/help.php:90 ../../index.php:218
|
||||
#: ../../mod/help.php:90 ../../index.php:225
|
||||
msgid "Not Found"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/help.php:93 ../../index.php:221
|
||||
#: ../../mod/help.php:93 ../../index.php:228
|
||||
msgid "Page not found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -288,8 +288,8 @@ msgstr ""
|
|||
msgid "link to source"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/events.php:358 ../../view/theme/diabook/theme.php:92
|
||||
#: ../../include/nav.php:52 ../../boot.php:1791
|
||||
#: ../../mod/events.php:358 ../../view/theme/diabook/theme.php:91
|
||||
#: ../../include/nav.php:52 ../../boot.php:1836
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -348,7 +348,7 @@ msgstr ""
|
|||
#: ../../mod/events.php:459 ../../mod/directory.php:134
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:156
|
||||
#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
|
||||
#: ../../boot.php:1312
|
||||
#: ../../boot.php:1358
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -360,11 +360,15 @@ msgstr ""
|
|||
msgid "Share this event"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/maintenance.php:5
|
||||
msgid "System down for maintenance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
|
||||
#: ../../mod/dfrn_request.php:848 ../../mod/settings.php:561
|
||||
#: ../../mod/settings.php:587 ../../mod/fbrowser.php:81
|
||||
#: ../../mod/fbrowser.php:116 ../../addon/js_upload/js_upload.php:45
|
||||
#: ../../include/conversation.php:1045
|
||||
#: ../../include/conversation.php:1040
|
||||
#: ../../addon.old/js_upload/js_upload.php:45
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
|
@ -417,8 +421,8 @@ msgstr ""
|
|||
#: ../../mod/settings.php:969 ../../mod/settings.php:975
|
||||
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
|
||||
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
|
||||
#: ../../mod/settings.php:1009 ../../mod/register.php:237
|
||||
#: ../../mod/profiles.php:584
|
||||
#: ../../mod/settings.php:1009 ../../mod/register.php:239
|
||||
#: ../../mod/profiles.php:606
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -429,20 +433,20 @@ msgstr ""
|
|||
#: ../../mod/settings.php:969 ../../mod/settings.php:975
|
||||
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
|
||||
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
|
||||
#: ../../mod/settings.php:1009 ../../mod/register.php:238
|
||||
#: ../../mod/profiles.php:585
|
||||
#: ../../mod/settings.php:1009 ../../mod/register.php:240
|
||||
#: ../../mod/profiles.php:607
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:51 ../../boot.php:1784
|
||||
#: ../../mod/photos.php:51 ../../boot.php:1829
|
||||
msgid "Photo Albums"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
|
||||
#: ../../mod/photos.php:1102 ../../mod/photos.php:1125
|
||||
#: ../../mod/photos.php:1626 ../../mod/photos.php:1638
|
||||
#: ../../addon/communityhome/communityhome.php:112
|
||||
#: ../../view/theme/diabook/theme.php:493
|
||||
#: ../../addon/communityhome/communityhome.php:115
|
||||
#: ../../view/theme/diabook/theme.php:492
|
||||
#: ../../addon.old/communityhome/communityhome.php:110
|
||||
msgid "Contact Photos"
|
||||
msgstr ""
|
||||
|
|
@ -464,9 +468,9 @@ msgstr ""
|
|||
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
|
||||
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
|
||||
#: ../../mod/profile_photo.php:305
|
||||
#: ../../addon/communityhome/communityhome.php:113
|
||||
#: ../../view/theme/diabook/theme.php:494 ../../include/user.php:324
|
||||
#: ../../include/user.php:331 ../../include/user.php:338
|
||||
#: ../../addon/communityhome/communityhome.php:116
|
||||
#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:325
|
||||
#: ../../include/user.php:332 ../../include/user.php:339
|
||||
#: ../../addon.old/communityhome/communityhome.php:111
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
|
@ -513,7 +517,7 @@ msgstr ""
|
|||
|
||||
#: ../../mod/photos.php:865 ../../mod/community.php:18
|
||||
#: ../../mod/dfrn_request.php:761 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31
|
||||
#: ../../mod/display.php:19 ../../mod/search.php:89 ../../mod/directory.php:31
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:53
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
|
@ -588,7 +592,7 @@ msgid "Use as profile photo"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1270 ../../mod/content.php:620
|
||||
#: ../../object/Item.php:105
|
||||
#: ../../object/Item.php:106
|
||||
msgid "Private Message"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -629,16 +633,16 @@ msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1420 ../../mod/content.php:684
|
||||
#: ../../object/Item.php:203
|
||||
#: ../../object/Item.php:204
|
||||
msgid "I like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1421 ../../mod/content.php:685
|
||||
#: ../../object/Item.php:204
|
||||
#: ../../object/Item.php:205
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1422 ../../include/conversation.php:1005
|
||||
#: ../../mod/photos.php:1422 ../../include/conversation.php:1000
|
||||
msgid "Share"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -646,33 +650,33 @@ msgstr ""
|
|||
#: ../../mod/content.php:499 ../../mod/content.php:883
|
||||
#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
|
||||
#: ../../mod/message.php:528 ../../include/conversation.php:645
|
||||
#: ../../include/conversation.php:1024 ../../object/Item.php:287
|
||||
#: ../../include/conversation.php:1019 ../../object/Item.php:293
|
||||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1439 ../../mod/photos.php:1483
|
||||
#: ../../mod/photos.php:1566 ../../mod/content.php:707
|
||||
#: ../../object/Item.php:600
|
||||
#: ../../object/Item.php:601
|
||||
msgid "This is you"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1441 ../../mod/photos.php:1485
|
||||
#: ../../mod/photos.php:1568 ../../mod/content.php:709 ../../boot.php:635
|
||||
#: ../../object/Item.php:284 ../../object/Item.php:602
|
||||
#: ../../mod/photos.php:1568 ../../mod/content.php:709 ../../boot.php:641
|
||||
#: ../../object/Item.php:290 ../../object/Item.php:603
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1443 ../../mod/photos.php:1487
|
||||
#: ../../mod/photos.php:1570 ../../mod/editpost.php:142
|
||||
#: ../../mod/content.php:719 ../../include/conversation.php:1042
|
||||
#: ../../object/Item.php:612
|
||||
#: ../../mod/content.php:719 ../../include/conversation.php:1037
|
||||
#: ../../object/Item.php:613
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/photos.php:1527 ../../mod/content.php:439
|
||||
#: ../../mod/content.php:741 ../../mod/settings.php:623
|
||||
#: ../../mod/group.php:171 ../../mod/admin.php:735
|
||||
#: ../../include/conversation.php:569 ../../object/Item.php:119
|
||||
#: ../../include/conversation.php:569 ../../object/Item.php:120
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -688,7 +692,7 @@ msgstr ""
|
|||
msgid "Not available."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:94
|
||||
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
|
||||
#: ../../include/nav.php:101
|
||||
msgid "Community"
|
||||
msgstr ""
|
||||
|
|
@ -738,96 +742,96 @@ msgstr ""
|
|||
msgid "Edit post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:91 ../../include/conversation.php:991
|
||||
#: ../../mod/editpost.php:91 ../../include/conversation.php:986
|
||||
msgid "Post to Email"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:106 ../../mod/content.php:728
|
||||
#: ../../mod/settings.php:622 ../../object/Item.php:109
|
||||
#: ../../mod/settings.php:622 ../../object/Item.php:110
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
|
||||
#: ../../mod/message.php:298 ../../mod/message.php:525
|
||||
#: ../../include/conversation.php:1006
|
||||
#: ../../include/conversation.php:1001
|
||||
msgid "Upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:108 ../../include/conversation.php:1007
|
||||
#: ../../mod/editpost.php:108 ../../include/conversation.php:1002
|
||||
msgid "upload photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:109 ../../include/conversation.php:1008
|
||||
#: ../../mod/editpost.php:109 ../../include/conversation.php:1003
|
||||
msgid "Attach file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:1009
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:1004
|
||||
msgid "attach file"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
|
||||
#: ../../mod/message.php:299 ../../mod/message.php:526
|
||||
#: ../../include/conversation.php:1010
|
||||
#: ../../include/conversation.php:1005
|
||||
msgid "Insert web link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:112 ../../include/conversation.php:1011
|
||||
#: ../../mod/editpost.php:112 ../../include/conversation.php:1006
|
||||
msgid "web link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1012
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1007
|
||||
msgid "Insert video link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:1013
|
||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:1008
|
||||
msgid "video link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:115 ../../include/conversation.php:1014
|
||||
#: ../../mod/editpost.php:115 ../../include/conversation.php:1009
|
||||
msgid "Insert audio link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:116 ../../include/conversation.php:1015
|
||||
#: ../../mod/editpost.php:116 ../../include/conversation.php:1010
|
||||
msgid "audio link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:1016
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:1011
|
||||
msgid "Set your location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:118 ../../include/conversation.php:1017
|
||||
#: ../../mod/editpost.php:118 ../../include/conversation.php:1012
|
||||
msgid "set location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:1018
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:1013
|
||||
msgid "Clear browser location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:1019
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:1014
|
||||
msgid "clear location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1025
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1020
|
||||
msgid "Permission settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:130 ../../include/conversation.php:1034
|
||||
#: ../../mod/editpost.php:130 ../../include/conversation.php:1029
|
||||
msgid "CC: email addresses"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:131 ../../include/conversation.php:1035
|
||||
#: ../../mod/editpost.php:131 ../../include/conversation.php:1030
|
||||
msgid "Public post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:134 ../../include/conversation.php:1021
|
||||
#: ../../mod/editpost.php:134 ../../include/conversation.php:1016
|
||||
msgid "Set title"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:136 ../../include/conversation.php:1023
|
||||
#: ../../mod/editpost.php:136 ../../include/conversation.php:1018
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/editpost.php:137 ../../include/conversation.php:1037
|
||||
#: ../../mod/editpost.php:137 ../../include/conversation.php:1032
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1051,8 +1055,8 @@ msgstr ""
|
|||
#: ../../mod/uexport.php:48 ../../mod/settings.php:74
|
||||
#: ../../mod/newmember.php:22 ../../mod/admin.php:824 ../../mod/admin.php:1029
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:225
|
||||
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:538
|
||||
#: ../../view/theme/diabook/theme.php:659 ../../include/nav.php:140
|
||||
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
|
||||
#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:140
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:225
|
||||
#: ../../addon.old/mathjax/mathjax.php:36
|
||||
msgid "Settings"
|
||||
|
|
@ -1428,7 +1432,7 @@ msgid "is interested in:"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/match.php:58 ../../mod/suggest.php:59
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1250
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1296
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1458,19 +1462,19 @@ msgid "Group: "
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:438 ../../mod/content.php:740
|
||||
#: ../../include/conversation.php:568 ../../object/Item.php:118
|
||||
#: ../../include/conversation.php:568 ../../object/Item.php:119
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:472 ../../mod/content.php:852
|
||||
#: ../../mod/content.php:853 ../../include/conversation.php:608
|
||||
#: ../../object/Item.php:252 ../../object/Item.php:253
|
||||
#: ../../object/Item.php:258 ../../object/Item.php:259
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:482 ../../mod/content.php:864
|
||||
#: ../../include/conversation.php:628 ../../object/Item.php:266
|
||||
#: ../../include/conversation.php:628 ../../object/Item.php:272
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr ""
|
||||
|
|
@ -1479,7 +1483,7 @@ msgstr ""
|
|||
msgid "View in context"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:603 ../../object/Item.php:306
|
||||
#: ../../mod/content.php:603 ../../object/Item.php:313
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
|
|
@ -1487,7 +1491,7 @@ msgstr[0] ""
|
|||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/content.php:605 ../../include/text.php:1502
|
||||
#: ../../object/Item.php:308 ../../object/Item.php:321
|
||||
#: ../../object/Item.php:315 ../../object/Item.php:328
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
msgstr[0] ""
|
||||
|
|
@ -1495,97 +1499,97 @@ msgstr[1] ""
|
|||
|
||||
#: ../../mod/content.php:606 ../../addon/page/page.php:77
|
||||
#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
|
||||
#: ../../include/contact_widgets.php:204 ../../boot.php:636
|
||||
#: ../../object/Item.php:309 ../../addon.old/page/page.php:77
|
||||
#: ../../include/contact_widgets.php:204 ../../boot.php:642
|
||||
#: ../../object/Item.php:316 ../../addon.old/page/page.php:77
|
||||
#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
|
||||
msgid "show more"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:684 ../../object/Item.php:203
|
||||
#: ../../mod/content.php:684 ../../object/Item.php:204
|
||||
msgid "like"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:685 ../../object/Item.php:204
|
||||
#: ../../mod/content.php:685 ../../object/Item.php:205
|
||||
msgid "dislike"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:687 ../../object/Item.php:206
|
||||
#: ../../mod/content.php:687 ../../object/Item.php:207
|
||||
msgid "Share this"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:687 ../../object/Item.php:206
|
||||
#: ../../mod/content.php:687 ../../object/Item.php:207
|
||||
msgid "share"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:711 ../../object/Item.php:604
|
||||
#: ../../mod/content.php:711 ../../object/Item.php:605
|
||||
msgid "Bold"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:712 ../../object/Item.php:605
|
||||
#: ../../mod/content.php:712 ../../object/Item.php:606
|
||||
msgid "Italic"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:713 ../../object/Item.php:606
|
||||
#: ../../mod/content.php:713 ../../object/Item.php:607
|
||||
msgid "Underline"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:714 ../../object/Item.php:607
|
||||
#: ../../mod/content.php:714 ../../object/Item.php:608
|
||||
msgid "Quote"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:715 ../../object/Item.php:608
|
||||
#: ../../mod/content.php:715 ../../object/Item.php:609
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:716 ../../object/Item.php:609
|
||||
#: ../../mod/content.php:716 ../../object/Item.php:610
|
||||
msgid "Image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:717 ../../object/Item.php:610
|
||||
#: ../../mod/content.php:717 ../../object/Item.php:611
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:718 ../../object/Item.php:611
|
||||
#: ../../mod/content.php:718 ../../object/Item.php:612
|
||||
msgid "Video"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:753 ../../object/Item.php:182
|
||||
#: ../../mod/content.php:753 ../../object/Item.php:183
|
||||
msgid "add star"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:754 ../../object/Item.php:183
|
||||
#: ../../mod/content.php:754 ../../object/Item.php:184
|
||||
msgid "remove star"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:755 ../../object/Item.php:184
|
||||
#: ../../mod/content.php:755 ../../object/Item.php:185
|
||||
msgid "toggle star status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:758 ../../object/Item.php:187
|
||||
#: ../../mod/content.php:758 ../../object/Item.php:188
|
||||
msgid "starred"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:759 ../../object/Item.php:192
|
||||
#: ../../mod/content.php:759 ../../object/Item.php:193
|
||||
msgid "add tag"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:763 ../../object/Item.php:122
|
||||
#: ../../mod/content.php:763 ../../object/Item.php:123
|
||||
msgid "save to folder"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:854 ../../object/Item.php:254
|
||||
#: ../../mod/content.php:854 ../../object/Item.php:260
|
||||
msgid "to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:855 ../../object/Item.php:256
|
||||
#: ../../mod/content.php:855 ../../object/Item.php:262
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/content.php:856 ../../object/Item.php:257
|
||||
#: ../../mod/content.php:856 ../../object/Item.php:263
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:183
|
||||
#: ../../mod/home.php:34 ../../addon/communityhome/communityhome.php:189
|
||||
#: ../../addon.old/communityhome/communityhome.php:179
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
|
|
@ -1618,7 +1622,7 @@ msgstr ""
|
|||
msgid "Personal"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:88
|
||||
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
|
||||
#: ../../include/nav.php:77 ../../include/nav.php:116
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
|
@ -2063,7 +2067,7 @@ msgstr ""
|
|||
msgid "Edit contact"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:90
|
||||
#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89
|
||||
#: ../../include/nav.php:144
|
||||
msgid "Contacts"
|
||||
msgstr ""
|
||||
|
|
@ -2083,81 +2087,71 @@ msgstr ""
|
|||
msgid "Find"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:16
|
||||
#: ../../mod/lostpass.php:17
|
||||
msgid "No valid account found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:32
|
||||
#: ../../mod/lostpass.php:33
|
||||
msgid "Password reset request issued. Check your email."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:43
|
||||
#: ../../mod/lostpass.php:44
|
||||
#, php-format
|
||||
msgid "Password reset requested at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
|
||||
#: ../../mod/register.php:91 ../../mod/register.php:145
|
||||
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
|
||||
#: ../../addon/facebook/facebook.php:702
|
||||
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:805
|
||||
#: ../../addon/public_server/public_server.php:62
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3375
|
||||
#: ../../boot.php:852 ../../addon.old/facebook/facebook.php:702
|
||||
#: ../../addon.old/facebook/facebook.php:1200
|
||||
#: ../../addon.old/fbpost/fbpost.php:661
|
||||
#: ../../addon.old/public_server/public_server.php:62
|
||||
#: ../../addon.old/testdrive/testdrive.php:67
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:65
|
||||
#: ../../mod/lostpass.php:66
|
||||
msgid ""
|
||||
"Request could not be verified. (You may have previously submitted it.) "
|
||||
"Password reset failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:83 ../../boot.php:990
|
||||
#: ../../mod/lostpass.php:84 ../../boot.php:1030
|
||||
msgid "Password Reset"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:84
|
||||
#: ../../mod/lostpass.php:85
|
||||
msgid "Your password has been reset as requested."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:85
|
||||
#: ../../mod/lostpass.php:86
|
||||
msgid "Your new password is"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:86
|
||||
#: ../../mod/lostpass.php:87
|
||||
msgid "Save or copy your new password - and then"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:87
|
||||
#: ../../mod/lostpass.php:88
|
||||
msgid "click here to login"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:88
|
||||
#: ../../mod/lostpass.php:89
|
||||
msgid ""
|
||||
"Your password may be changed from the <em>Settings</em> page after "
|
||||
"successful login."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:119
|
||||
#: ../../mod/lostpass.php:107
|
||||
#, php-format
|
||||
msgid "Your password has been changed at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:122
|
||||
msgid "Forgot your Password?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:120
|
||||
#: ../../mod/lostpass.php:123
|
||||
msgid ""
|
||||
"Enter your email address and submit to have your password reset. Then check "
|
||||
"your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:121
|
||||
#: ../../mod/lostpass.php:124
|
||||
msgid "Nickname or Email: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/lostpass.php:122
|
||||
#: ../../mod/lostpass.php:125
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2225,13 +2219,13 @@ msgstr ""
|
|||
msgid "Private forum has no privacy permissions and no default privacy group."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:488 ../../addon/facebook/facebook.php:495
|
||||
#: ../../addon/fbpost/fbpost.php:151
|
||||
#: ../../mod/settings.php:488 ../../addon/facebook/facebook.php:497
|
||||
#: ../../addon/fbpost/fbpost.php:155
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:205
|
||||
#: ../../addon/impressum/impressum.php:78
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:80
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:104
|
||||
#: ../../addon/altpager/altpager.php:107 ../../addon/mathjax/mathjax.php:66
|
||||
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:504
|
||||
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:548
|
||||
#: ../../addon.old/facebook/facebook.php:495
|
||||
#: ../../addon.old/fbpost/fbpost.php:144
|
||||
#: ../../addon.old/impressum/impressum.php:78
|
||||
|
|
@ -2247,13 +2241,13 @@ msgid "Add application"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:563 ../../mod/settings.php:589
|
||||
#: ../../addon/statusnet/statusnet.php:697
|
||||
#: ../../addon/statusnet/statusnet.php:747
|
||||
#: ../../addon.old/statusnet/statusnet.php:570
|
||||
msgid "Consumer Key"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:564 ../../mod/settings.php:590
|
||||
#: ../../addon/statusnet/statusnet.php:696
|
||||
#: ../../addon/statusnet/statusnet.php:746
|
||||
#: ../../addon.old/statusnet/statusnet.php:569
|
||||
msgid "Consumer Secret"
|
||||
msgstr ""
|
||||
|
|
@ -2359,7 +2353,7 @@ msgid "Security:"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/settings.php:732 ../../mod/settings.php:737
|
||||
#: ../../addon/fbpost/fbpost.php:247 ../../addon/fbpost/fbpost.php:249
|
||||
#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:191
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
|
||||
msgid "None"
|
||||
|
|
@ -2792,14 +2786,14 @@ msgstr ""
|
|||
msgid "Invalid contact."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1798
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1843
|
||||
msgid "Personal Notes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/notes.php:63 ../../mod/filer.php:31
|
||||
#: ../../addon/facebook/facebook.php:770
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:346
|
||||
#: ../../addon/fbpost/fbpost.php:314
|
||||
#: ../../addon/facebook/facebook.php:772
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
|
||||
#: ../../addon/fbpost/fbpost.php:322
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:441
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:741
|
||||
#: ../../addon.old/facebook/facebook.php:770
|
||||
|
|
@ -2810,7 +2804,7 @@ msgstr ""
|
|||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/uimport.php:50 ../../mod/register.php:190
|
||||
#: ../../mod/uimport.php:50 ../../mod/register.php:192
|
||||
msgid ""
|
||||
"This site has exceeded the number of allowed daily account registrations. "
|
||||
"Please try again tomorrow."
|
||||
|
|
@ -2883,7 +2877,7 @@ msgstr ""
|
|||
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
|
||||
#: ../../mod/message.php:249 ../../mod/message.php:257
|
||||
#: ../../mod/message.php:429 ../../mod/message.php:437
|
||||
#: ../../include/conversation.php:941 ../../include/conversation.php:959
|
||||
#: ../../include/conversation.php:936 ../../include/conversation.php:954
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2909,7 +2903,7 @@ msgid "Subject:"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
|
||||
#: ../../mod/message.php:521 ../../mod/invite.php:113
|
||||
#: ../../mod/message.php:521 ../../mod/invite.php:115
|
||||
msgid "Your message:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2964,9 +2958,9 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
|
||||
#: ../../view/theme/diabook/theme.php:89 ../../include/profile_advanced.php:7
|
||||
#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
|
||||
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
|
||||
#: ../../boot.php:1774
|
||||
#: ../../boot.php:1819
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3008,7 +3002,7 @@ msgid "Connecting"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
|
||||
#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:286
|
||||
#: ../../addon/facebook/facebook.php:730 ../../addon/fbpost/fbpost.php:294
|
||||
#: ../../include/contact_selectors.php:81
|
||||
#: ../../addon.old/facebook/facebook.php:728
|
||||
#: ../../addon.old/fbpost/fbpost.php:239
|
||||
|
|
@ -3137,7 +3131,7 @@ msgstr ""
|
|||
msgid "Group name changed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332
|
||||
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:339
|
||||
msgid "Permission denied"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3165,7 +3159,7 @@ msgstr ""
|
|||
msgid "Members"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/group.php:223 ../../mod/profperm.php:105
|
||||
#: ../../mod/group.php:224 ../../mod/profperm.php:105
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3193,85 +3187,85 @@ msgstr ""
|
|||
msgid "View Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:89 ../../mod/regmod.php:52
|
||||
#: ../../mod/register.php:91 ../../mod/regmod.php:54
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:97
|
||||
#: ../../mod/register.php:99
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:101
|
||||
#: ../../mod/register.php:103
|
||||
msgid "Failed to send email message. Here is the message that failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:106
|
||||
#: ../../mod/register.php:108
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:143
|
||||
#: ../../mod/register.php:145
|
||||
#, php-format
|
||||
msgid "Registration request at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:152
|
||||
#: ../../mod/register.php:154
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:218
|
||||
#: ../../mod/register.php:220
|
||||
msgid ""
|
||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||
"and clicking 'Register'."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:219
|
||||
#: ../../mod/register.php:221
|
||||
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:220
|
||||
#: ../../mod/register.php:222
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:234
|
||||
#: ../../mod/register.php:236
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:256
|
||||
#: ../../mod/register.php:257
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:257
|
||||
#: ../../mod/register.php:258
|
||||
msgid "Your invitation ID: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:260 ../../mod/admin.php:462
|
||||
#: ../../mod/register.php:261 ../../mod/admin.php:462
|
||||
msgid "Registration"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:268
|
||||
#: ../../mod/register.php:269
|
||||
msgid "Your Full Name (e.g. Joe Smith): "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:269
|
||||
#: ../../mod/register.php:270
|
||||
msgid "Your Email Address: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:270
|
||||
#: ../../mod/register.php:271
|
||||
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:271
|
||||
#: ../../mod/register.php:272
|
||||
msgid "Choose a nickname: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:951
|
||||
#: ../../mod/register.php:275 ../../include/nav.php:81 ../../boot.php:991
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3280,20 +3274,20 @@ msgid "People Search"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
|
||||
#: ../../addon/communityhome/communityhome.php:166
|
||||
#: ../../view/theme/diabook/theme.php:465 ../../include/text.php:1498
|
||||
#: ../../include/diaspora.php:1851 ../../include/conversation.php:125
|
||||
#: ../../addon/communityhome/communityhome.php:171
|
||||
#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1498
|
||||
#: ../../include/diaspora.php:1860 ../../include/conversation.php:125
|
||||
#: ../../include/conversation.php:253
|
||||
#: ../../addon.old/communityhome/communityhome.php:163
|
||||
msgid "photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
|
||||
#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
|
||||
#: ../../addon/communityhome/communityhome.php:161
|
||||
#: ../../addon/communityhome/communityhome.php:170
|
||||
#: ../../view/theme/diabook/theme.php:460
|
||||
#: ../../view/theme/diabook/theme.php:469 ../../include/diaspora.php:1851
|
||||
#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1600
|
||||
#: ../../addon/communityhome/communityhome.php:166
|
||||
#: ../../addon/communityhome/communityhome.php:175
|
||||
#: ../../view/theme/diabook/theme.php:459
|
||||
#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1860
|
||||
#: ../../include/conversation.php:120 ../../include/conversation.php:129
|
||||
#: ../../include/conversation.php:248 ../../include/conversation.php:257
|
||||
#: ../../addon.old/facebook/facebook.php:1598
|
||||
|
|
@ -3302,9 +3296,9 @@ msgstr ""
|
|||
msgid "status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
|
||||
#: ../../addon/communityhome/communityhome.php:175
|
||||
#: ../../view/theme/diabook/theme.php:474 ../../include/diaspora.php:1867
|
||||
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1604
|
||||
#: ../../addon/communityhome/communityhome.php:180
|
||||
#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1876
|
||||
#: ../../include/conversation.php:136
|
||||
#: ../../addon.old/facebook/facebook.php:1602
|
||||
#: ../../addon.old/communityhome/communityhome.php:172
|
||||
|
|
@ -3318,8 +3312,8 @@ msgid "%1$s doesn't like %2$s's %3$s"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
|
||||
#: ../../mod/admin.php:773 ../../mod/admin.php:972 ../../mod/display.php:39
|
||||
#: ../../mod/display.php:169 ../../include/items.php:3853
|
||||
#: ../../mod/admin.php:773 ../../mod/admin.php:972 ../../mod/display.php:51
|
||||
#: ../../mod/display.php:184 ../../include/items.php:3853
|
||||
msgid "Item not found."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3327,8 +3321,8 @@ msgstr ""
|
|||
msgid "Access denied."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:91
|
||||
#: ../../include/nav.php:51 ../../boot.php:1781
|
||||
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
|
||||
#: ../../include/nav.php:51 ../../boot.php:1826
|
||||
msgid "Photos"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3336,16 +3330,16 @@ msgstr ""
|
|||
msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/regmod.php:61
|
||||
#: ../../mod/regmod.php:63
|
||||
msgid "Account approved."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/regmod.php:98
|
||||
#: ../../mod/regmod.php:100
|
||||
#, php-format
|
||||
msgid "Registration revoked for %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/regmod.php:110
|
||||
#: ../../mod/regmod.php:112
|
||||
msgid "Please login."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3698,7 +3692,7 @@ msgstr ""
|
|||
msgid "Performance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/admin.php:470 ../../addon/statusnet/statusnet.php:694
|
||||
#: ../../mod/admin.php:470 ../../addon/statusnet/statusnet.php:744
|
||||
#: ../../addon.old/statusnet/statusnet.php:567
|
||||
msgid "Site name"
|
||||
msgstr ""
|
||||
|
|
@ -4265,15 +4259,15 @@ msgstr ""
|
|||
msgid "FTP Password"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:21 ../../boot.php:1160
|
||||
#: ../../mod/profile.php:21 ../../boot.php:1204
|
||||
msgid "Requested profile is not available."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:156 ../../mod/display.php:87
|
||||
#: ../../mod/profile.php:155 ../../mod/display.php:99
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profile.php:181
|
||||
#: ../../mod/profile.php:180
|
||||
msgid "Tips for New Members"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4361,7 +4355,7 @@ msgstr ""
|
|||
msgid "link"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/display.php:162
|
||||
#: ../../mod/display.php:177
|
||||
msgid "Item has been removed."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4378,321 +4372,322 @@ msgstr ""
|
|||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:21 ../../mod/profiles.php:441
|
||||
#: ../../mod/profiles.php:555 ../../mod/dfrn_confirm.php:62
|
||||
#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
|
||||
#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
|
||||
#: ../../mod/dfrn_confirm.php:62
|
||||
msgid "Profile not found."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:31
|
||||
#: ../../mod/profiles.php:37
|
||||
msgid "Profile deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
|
||||
msgid "Profile-"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
|
||||
msgid "New profile created."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:95
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:170
|
||||
msgid "Profile Name is required."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:178
|
||||
#: ../../mod/profiles.php:317
|
||||
msgid "Marital Status"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:182
|
||||
#: ../../mod/profiles.php:321
|
||||
msgid "Romantic Partner"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:186
|
||||
#: ../../mod/profiles.php:325
|
||||
msgid "Likes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:190
|
||||
#: ../../mod/profiles.php:329
|
||||
msgid "Dislikes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:194
|
||||
#: ../../mod/profiles.php:333
|
||||
msgid "Work/Employment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:197
|
||||
#: ../../mod/profiles.php:336
|
||||
msgid "Religion"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:201
|
||||
#: ../../mod/profiles.php:340
|
||||
msgid "Political Views"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:205
|
||||
#: ../../mod/profiles.php:344
|
||||
msgid "Gender"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:209
|
||||
#: ../../mod/profiles.php:348
|
||||
msgid "Sexual Preference"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:213
|
||||
#: ../../mod/profiles.php:352
|
||||
msgid "Homepage"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:217
|
||||
#: ../../mod/profiles.php:356
|
||||
msgid "Interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:221
|
||||
#: ../../mod/profiles.php:360
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:228 ../../addon/dav/common/wdcal_edit.inc.php:183
|
||||
#: ../../mod/profiles.php:367 ../../addon/dav/common/wdcal_edit.inc.php:183
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:311
|
||||
#: ../../mod/profiles.php:450
|
||||
msgid "Profile updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:378
|
||||
#: ../../mod/profiles.php:517
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:386
|
||||
#: ../../mod/profiles.php:525
|
||||
msgid "public profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:389
|
||||
#: ../../mod/profiles.php:528
|
||||
#, php-format
|
||||
msgid "%1$s changed %2$s to “%3$s”"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:390
|
||||
#: ../../mod/profiles.php:529
|
||||
#, php-format
|
||||
msgid " - Visit %1$s's %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:393
|
||||
#: ../../mod/profiles.php:532
|
||||
#, php-format
|
||||
msgid "%1$s has an updated %2$s, changing %3$s."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:460
|
||||
msgid "Profile deleted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:478 ../../mod/profiles.php:512
|
||||
msgid "Profile-"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:497 ../../mod/profiles.php:539
|
||||
msgid "New profile created."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:518
|
||||
msgid "Profile unavailable to clone."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:583
|
||||
#: ../../mod/profiles.php:605
|
||||
msgid "Hide your contact/friend list from viewers of this profile?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:603
|
||||
#: ../../mod/profiles.php:625
|
||||
msgid "Edit Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:605
|
||||
#: ../../mod/profiles.php:627
|
||||
msgid "Change Profile Photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:606
|
||||
#: ../../mod/profiles.php:628
|
||||
msgid "View this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:607
|
||||
#: ../../mod/profiles.php:629
|
||||
msgid "Create a new profile using these settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:608
|
||||
#: ../../mod/profiles.php:630
|
||||
msgid "Clone this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:609
|
||||
#: ../../mod/profiles.php:631
|
||||
msgid "Delete this profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:610
|
||||
#: ../../mod/profiles.php:632
|
||||
msgid "Profile Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:611
|
||||
#: ../../mod/profiles.php:633
|
||||
msgid "Your Full Name:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:612
|
||||
#: ../../mod/profiles.php:634
|
||||
msgid "Title/Description:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:613
|
||||
#: ../../mod/profiles.php:635
|
||||
msgid "Your Gender:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:614
|
||||
#: ../../mod/profiles.php:636
|
||||
#, php-format
|
||||
msgid "Birthday (%s):"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:615
|
||||
#: ../../mod/profiles.php:637
|
||||
msgid "Street Address:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:616
|
||||
#: ../../mod/profiles.php:638
|
||||
msgid "Locality/City:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:617
|
||||
#: ../../mod/profiles.php:639
|
||||
msgid "Postal/Zip Code:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:618
|
||||
#: ../../mod/profiles.php:640
|
||||
msgid "Country:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:619
|
||||
#: ../../mod/profiles.php:641
|
||||
msgid "Region/State:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:620
|
||||
#: ../../mod/profiles.php:642
|
||||
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:621
|
||||
#: ../../mod/profiles.php:643
|
||||
msgid "Who: (if applicable)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:622
|
||||
#: ../../mod/profiles.php:644
|
||||
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:623
|
||||
#: ../../mod/profiles.php:645
|
||||
msgid "Since [date]:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:624 ../../include/profile_advanced.php:46
|
||||
#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46
|
||||
msgid "Sexual Preference:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:625
|
||||
#: ../../mod/profiles.php:647
|
||||
msgid "Homepage URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:626 ../../include/profile_advanced.php:50
|
||||
#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50
|
||||
msgid "Hometown:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:627 ../../include/profile_advanced.php:54
|
||||
#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54
|
||||
msgid "Political Views:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:628
|
||||
#: ../../mod/profiles.php:650
|
||||
msgid "Religious Views:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:629
|
||||
#: ../../mod/profiles.php:651
|
||||
msgid "Public Keywords:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:630
|
||||
#: ../../mod/profiles.php:652
|
||||
msgid "Private Keywords:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:631 ../../include/profile_advanced.php:62
|
||||
#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62
|
||||
msgid "Likes:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:632 ../../include/profile_advanced.php:64
|
||||
#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64
|
||||
msgid "Dislikes:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:633
|
||||
#: ../../mod/profiles.php:655
|
||||
msgid "Example: fishing photography software"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:634
|
||||
#: ../../mod/profiles.php:656
|
||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:635
|
||||
#: ../../mod/profiles.php:657
|
||||
msgid "(Used for searching profiles, never shown to others)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:636
|
||||
#: ../../mod/profiles.php:658
|
||||
msgid "Tell us about yourself..."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:637
|
||||
#: ../../mod/profiles.php:659
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:638
|
||||
#: ../../mod/profiles.php:660
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:639
|
||||
#: ../../mod/profiles.php:661
|
||||
msgid "Musical interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:640
|
||||
#: ../../mod/profiles.php:662
|
||||
msgid "Books, literature"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:641
|
||||
#: ../../mod/profiles.php:663
|
||||
msgid "Television"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:642
|
||||
#: ../../mod/profiles.php:664
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:643
|
||||
#: ../../mod/profiles.php:665
|
||||
msgid "Love/romance"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:644
|
||||
#: ../../mod/profiles.php:666
|
||||
msgid "Work/employment"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:645
|
||||
#: ../../mod/profiles.php:667
|
||||
msgid "School/education"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:650
|
||||
#: ../../mod/profiles.php:672
|
||||
msgid ""
|
||||
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
||||
"be visible to anybody using the internet."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:660 ../../mod/directory.php:111
|
||||
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:133
|
||||
msgid "Age: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:699
|
||||
#: ../../mod/profiles.php:721
|
||||
msgid "Edit/Manage Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:700 ../../boot.php:1278
|
||||
#: ../../mod/profiles.php:722 ../../boot.php:1324
|
||||
msgid "Change profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:701 ../../boot.php:1279
|
||||
#: ../../mod/profiles.php:723 ../../boot.php:1325
|
||||
msgid "Create New Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:712 ../../boot.php:1289
|
||||
#: ../../mod/profiles.php:734 ../../boot.php:1335
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:714 ../../boot.php:1292
|
||||
#: ../../mod/profiles.php:736 ../../boot.php:1338
|
||||
msgid "visible to everybody"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/profiles.php:715 ../../boot.php:1293
|
||||
#: ../../mod/profiles.php:737 ../../boot.php:1339
|
||||
msgid "Edit visibility"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/filer.php:30 ../../include/conversation.php:945
|
||||
#: ../../include/conversation.php:963
|
||||
#: ../../mod/filer.php:30 ../../include/conversation.php:940
|
||||
#: ../../include/conversation.php:958
|
||||
msgid "Save to Folder:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4753,38 +4748,42 @@ msgid "Source input: "
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:35
|
||||
msgid "bb2html: "
|
||||
msgid "bb2html (raw HTML): "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:39
|
||||
msgid "bb2html2bb: "
|
||||
msgid "bb2html: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:43
|
||||
msgid "bb2md: "
|
||||
msgid "bb2html2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:47
|
||||
msgid "bb2md2html: "
|
||||
msgid "bb2md: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:51
|
||||
msgid "bb2dia2bb: "
|
||||
msgid "bb2md2html: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:55
|
||||
msgid "bb2dia2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:59
|
||||
msgid "bb2md2html2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:65
|
||||
#: ../../mod/babel.php:69
|
||||
msgid "Source input (Diaspora format): "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/babel.php:70
|
||||
#: ../../mod/babel.php:74
|
||||
msgid "diaspora2bb: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:521
|
||||
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:520
|
||||
#: ../../include/contact_widgets.php:34
|
||||
msgid "Friend Suggestions"
|
||||
msgstr ""
|
||||
|
|
@ -4800,7 +4799,7 @@ msgid "Ignore/Hide"
|
|||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
|
||||
#: ../../view/theme/diabook/theme.php:519
|
||||
#: ../../view/theme/diabook/theme.php:518
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4819,19 +4818,19 @@ msgstr ""
|
|||
|
||||
#: ../../mod/directory.php:136
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:158
|
||||
#: ../../include/profile_advanced.php:17 ../../boot.php:1314
|
||||
#: ../../include/profile_advanced.php:17 ../../boot.php:1360
|
||||
msgid "Gender:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:138
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:160
|
||||
#: ../../include/profile_advanced.php:37 ../../boot.php:1317
|
||||
#: ../../include/profile_advanced.php:37 ../../boot.php:1363
|
||||
msgid "Status:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/directory.php:140
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:162
|
||||
#: ../../include/profile_advanced.php:48 ../../boot.php:1319
|
||||
#: ../../include/profile_advanced.php:48 ../../boot.php:1365
|
||||
msgid "Homepage:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4846,32 +4845,32 @@ msgstr ""
|
|||
msgid "No entries (some entries may be hidden)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:35
|
||||
#: ../../mod/invite.php:37
|
||||
#, php-format
|
||||
msgid "%s : Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:59
|
||||
#: ../../mod/invite.php:61
|
||||
msgid "Please join us on Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:69
|
||||
#: ../../mod/invite.php:71
|
||||
#, php-format
|
||||
msgid "%s : Message delivery failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:73
|
||||
#: ../../mod/invite.php:75
|
||||
#, php-format
|
||||
msgid "%d message sent."
|
||||
msgid_plural "%d messages sent."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: ../../mod/invite.php:92
|
||||
#: ../../mod/invite.php:94
|
||||
msgid "You have no more invitations available"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:100
|
||||
#: ../../mod/invite.php:102
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Visit %s for a list of public sites that you can join. Friendica members on "
|
||||
|
|
@ -4879,14 +4878,14 @@ msgid ""
|
|||
"other social networks."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:102
|
||||
#: ../../mod/invite.php:104
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To accept this invitation, please visit and register at %s or any other "
|
||||
"public Friendica website."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:103
|
||||
#: ../../mod/invite.php:105
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
|
||||
|
|
@ -4895,36 +4894,36 @@ msgid ""
|
|||
"sites you can join."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:106
|
||||
#: ../../mod/invite.php:108
|
||||
msgid ""
|
||||
"Our apologies. This system is not currently configured to connect with other "
|
||||
"public sites or invite members."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:111
|
||||
#: ../../mod/invite.php:113
|
||||
msgid "Send invitations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:112
|
||||
#: ../../mod/invite.php:114
|
||||
msgid "Enter email addresses, one per line:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:114
|
||||
#: ../../mod/invite.php:116
|
||||
msgid ""
|
||||
"You are cordially invited to join me and other close friends on Friendica - "
|
||||
"and help us to create a better social web."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:116
|
||||
#: ../../mod/invite.php:118
|
||||
msgid "You will need to supply this invitation code: $invite_code"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:116
|
||||
#: ../../mod/invite.php:118
|
||||
msgid ""
|
||||
"Once you have registered, please connect with me via my profile page at:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/invite.php:118
|
||||
#: ../../mod/invite.php:120
|
||||
msgid ""
|
||||
"For more information about the Friendica project and why we feel it is "
|
||||
"important, please visit http://friendica.com"
|
||||
|
|
@ -4965,7 +4964,7 @@ msgstr ""
|
|||
msgid "Unable to set contact photo."
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:619
|
||||
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
|
||||
#: ../../include/conversation.php:171
|
||||
#, php-format
|
||||
msgid "%1$s is now friends with %2$s"
|
||||
|
|
@ -5007,12 +5006,12 @@ msgstr ""
|
|||
msgid "Unable to update your contact profile details on our system"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:750
|
||||
#: ../../mod/dfrn_confirm.php:751
|
||||
#, php-format
|
||||
msgid "Connection accepted at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:799
|
||||
#: ../../mod/dfrn_confirm.php:800
|
||||
#, php-format
|
||||
msgid "%1$s has joined %2$s"
|
||||
msgstr ""
|
||||
|
|
@ -5037,38 +5036,38 @@ msgstr ""
|
|||
msgid "Google+ Import Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:523
|
||||
#: ../../addon/facebook/facebook.php:525
|
||||
#: ../../addon.old/facebook/facebook.php:523
|
||||
msgid "Facebook disabled"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:528
|
||||
#: ../../addon/facebook/facebook.php:530
|
||||
#: ../../addon.old/facebook/facebook.php:528
|
||||
msgid "Updating contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:199
|
||||
#: ../../addon/facebook/facebook.php:553 ../../addon/fbpost/fbpost.php:203
|
||||
#: ../../addon.old/facebook/facebook.php:551
|
||||
#: ../../addon.old/fbpost/fbpost.php:192
|
||||
msgid "Facebook API key is missing."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:558
|
||||
#: ../../addon/facebook/facebook.php:560
|
||||
#: ../../addon.old/facebook/facebook.php:558
|
||||
msgid "Facebook Connect"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:564
|
||||
#: ../../addon/facebook/facebook.php:566
|
||||
#: ../../addon.old/facebook/facebook.php:564
|
||||
msgid "Install Facebook connector for this account."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:571
|
||||
#: ../../addon/facebook/facebook.php:573
|
||||
#: ../../addon.old/facebook/facebook.php:571
|
||||
msgid "Remove Facebook connector"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:224
|
||||
#: ../../addon/facebook/facebook.php:578 ../../addon/fbpost/fbpost.php:228
|
||||
#: ../../addon.old/facebook/facebook.php:576
|
||||
#: ../../addon.old/fbpost/fbpost.php:217
|
||||
msgid ""
|
||||
|
|
@ -5076,63 +5075,63 @@ msgid ""
|
|||
"changed.]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:231
|
||||
#: ../../addon/facebook/facebook.php:585 ../../addon/fbpost/fbpost.php:235
|
||||
#: ../../addon.old/facebook/facebook.php:583
|
||||
#: ../../addon.old/fbpost/fbpost.php:224
|
||||
msgid "Post to Facebook by default"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:589
|
||||
#: ../../addon/facebook/facebook.php:591
|
||||
#: ../../addon.old/facebook/facebook.php:589
|
||||
msgid ""
|
||||
"Facebook friend linking has been disabled on this site. The following "
|
||||
"settings will have no effect."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:593
|
||||
#: ../../addon/facebook/facebook.php:595
|
||||
#: ../../addon.old/facebook/facebook.php:593
|
||||
msgid ""
|
||||
"Facebook friend linking has been disabled on this site. If you disable it, "
|
||||
"you will be unable to re-enable it."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:596
|
||||
#: ../../addon/facebook/facebook.php:598
|
||||
#: ../../addon.old/facebook/facebook.php:596
|
||||
msgid "Link all your Facebook friends and conversations on this website"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:598
|
||||
#: ../../addon/facebook/facebook.php:600
|
||||
#: ../../addon.old/facebook/facebook.php:598
|
||||
msgid ""
|
||||
"Facebook conversations consist of your <em>profile wall</em> and your friend "
|
||||
"<em>stream</em>."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:599
|
||||
#: ../../addon/facebook/facebook.php:601
|
||||
#: ../../addon.old/facebook/facebook.php:599
|
||||
msgid "On this website, your Facebook friend stream is only visible to you."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:600
|
||||
#: ../../addon/facebook/facebook.php:602
|
||||
#: ../../addon.old/facebook/facebook.php:600
|
||||
msgid ""
|
||||
"The following settings determine the privacy of your Facebook profile wall "
|
||||
"on this website."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:604
|
||||
#: ../../addon/facebook/facebook.php:606
|
||||
#: ../../addon.old/facebook/facebook.php:604
|
||||
msgid ""
|
||||
"On this website your Facebook profile wall conversations will only be "
|
||||
"visible to you"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:609
|
||||
#: ../../addon/facebook/facebook.php:611
|
||||
#: ../../addon.old/facebook/facebook.php:609
|
||||
msgid "Do not import your Facebook profile wall conversations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:611
|
||||
#: ../../addon/facebook/facebook.php:613
|
||||
#: ../../addon.old/facebook/facebook.php:611
|
||||
msgid ""
|
||||
"If you choose to link conversations and leave both of these boxes unchecked, "
|
||||
|
|
@ -5141,28 +5140,40 @@ msgid ""
|
|||
"who may see the conversations."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:616
|
||||
#: ../../addon/facebook/facebook.php:618
|
||||
#: ../../addon.old/facebook/facebook.php:616
|
||||
msgid "Comma separated applications to ignore"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:700
|
||||
#: ../../addon/facebook/facebook.php:702
|
||||
#: ../../addon.old/facebook/facebook.php:700
|
||||
msgid "Problems with Facebook Real-Time Updates"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:729
|
||||
#: ../../addon/facebook/facebook.php:704
|
||||
#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
|
||||
#: ../../addon/public_server/public_server.php:62
|
||||
#: ../../addon/testdrive/testdrive.php:67
|
||||
#: ../../addon.old/facebook/facebook.php:702
|
||||
#: ../../addon.old/facebook/facebook.php:1200
|
||||
#: ../../addon.old/fbpost/fbpost.php:661
|
||||
#: ../../addon.old/public_server/public_server.php:62
|
||||
#: ../../addon.old/testdrive/testdrive.php:67
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:731
|
||||
#: ../../addon.old/facebook/facebook.php:729
|
||||
msgid "Facebook Connector Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:302
|
||||
#: ../../addon/facebook/facebook.php:746 ../../addon/fbpost/fbpost.php:310
|
||||
#: ../../addon.old/facebook/facebook.php:744
|
||||
#: ../../addon.old/fbpost/fbpost.php:255
|
||||
msgid "Facebook API Key"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:309
|
||||
#: ../../addon/facebook/facebook.php:756 ../../addon/fbpost/fbpost.php:317
|
||||
#: ../../addon.old/facebook/facebook.php:754
|
||||
#: ../../addon.old/fbpost/fbpost.php:262
|
||||
msgid ""
|
||||
|
|
@ -5171,76 +5182,76 @@ msgid ""
|
|||
"using this form.<br><br>"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:759
|
||||
#: ../../addon/facebook/facebook.php:761
|
||||
#: ../../addon.old/facebook/facebook.php:759
|
||||
msgid ""
|
||||
"Error: the given API Key seems to be incorrect (the application access token "
|
||||
"could not be retrieved)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:761
|
||||
#: ../../addon/facebook/facebook.php:763
|
||||
#: ../../addon.old/facebook/facebook.php:761
|
||||
msgid "The given API Key seems to work correctly."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:763
|
||||
#: ../../addon/facebook/facebook.php:765
|
||||
#: ../../addon.old/facebook/facebook.php:763
|
||||
msgid ""
|
||||
"The correctness of the API Key could not be detected. Something strange's "
|
||||
"going on."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:311
|
||||
#: ../../addon/facebook/facebook.php:768 ../../addon/fbpost/fbpost.php:319
|
||||
#: ../../addon.old/facebook/facebook.php:766
|
||||
#: ../../addon.old/fbpost/fbpost.php:264
|
||||
msgid "App-ID / API-Key"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:312
|
||||
#: ../../addon/facebook/facebook.php:769 ../../addon/fbpost/fbpost.php:320
|
||||
#: ../../addon.old/facebook/facebook.php:767
|
||||
#: ../../addon.old/fbpost/fbpost.php:265
|
||||
msgid "Application secret"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:768
|
||||
#: ../../addon/facebook/facebook.php:770
|
||||
#: ../../addon.old/facebook/facebook.php:768
|
||||
#, php-format
|
||||
msgid "Polling Interval in minutes (minimum %1$s minutes)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:769
|
||||
#: ../../addon/facebook/facebook.php:771
|
||||
#: ../../addon.old/facebook/facebook.php:769
|
||||
msgid ""
|
||||
"Synchronize comments (no comments on Facebook are missed, at the cost of "
|
||||
"increased system load)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:773
|
||||
#: ../../addon/facebook/facebook.php:775
|
||||
#: ../../addon.old/facebook/facebook.php:773
|
||||
msgid "Real-Time Updates"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:777
|
||||
#: ../../addon/facebook/facebook.php:779
|
||||
#: ../../addon.old/facebook/facebook.php:777
|
||||
msgid "Real-Time Updates are activated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:778
|
||||
#: ../../addon/facebook/facebook.php:780
|
||||
#: ../../addon.old/facebook/facebook.php:778
|
||||
msgid "Deactivate Real-Time Updates"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:780
|
||||
#: ../../addon/facebook/facebook.php:782
|
||||
#: ../../addon.old/facebook/facebook.php:780
|
||||
msgid "Real-Time Updates not activated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:780
|
||||
#: ../../addon/facebook/facebook.php:782
|
||||
#: ../../addon.old/facebook/facebook.php:780
|
||||
msgid "Activate Real-Time Updates"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:329
|
||||
#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:361
|
||||
#: ../../addon.old/facebook/facebook.php:799
|
||||
#: ../../addon.old/fbpost/fbpost.php:282
|
||||
|
|
@ -5248,13 +5259,13 @@ msgstr ""
|
|||
msgid "The new values have been saved."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:348
|
||||
#: ../../addon/facebook/facebook.php:825 ../../addon/fbpost/fbpost.php:356
|
||||
#: ../../addon.old/facebook/facebook.php:823
|
||||
#: ../../addon.old/fbpost/fbpost.php:301
|
||||
msgid "Post to Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:471
|
||||
#: ../../addon/facebook/facebook.php:923 ../../addon/fbpost/fbpost.php:487
|
||||
#: ../../addon.old/facebook/facebook.php:921
|
||||
#: ../../addon.old/fbpost/fbpost.php:399
|
||||
msgid ""
|
||||
|
|
@ -5262,31 +5273,31 @@ msgid ""
|
|||
"conflict."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:750
|
||||
#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
|
||||
#: ../../addon.old/facebook/facebook.php:1149
|
||||
#: ../../addon.old/fbpost/fbpost.php:610
|
||||
msgid "View on Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:787
|
||||
#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
|
||||
#: ../../addon.old/facebook/facebook.php:1182
|
||||
#: ../../addon.old/fbpost/fbpost.php:643
|
||||
msgid "Facebook post failed. Queued for retry."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:827
|
||||
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
|
||||
#: ../../addon.old/facebook/facebook.php:1222
|
||||
#: ../../addon.old/fbpost/fbpost.php:683
|
||||
msgid "Your Facebook connection became invalid. Please Re-authenticate."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:828
|
||||
#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
|
||||
#: ../../addon.old/facebook/facebook.php:1223
|
||||
#: ../../addon.old/fbpost/fbpost.php:684
|
||||
msgid "Facebook connection became invalid"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:829
|
||||
#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
|
||||
#: ../../addon.old/facebook/facebook.php:1224
|
||||
#: ../../addon.old/fbpost/fbpost.php:685
|
||||
#, php-format
|
||||
|
|
@ -5313,60 +5324,64 @@ msgstr ""
|
|||
msgid "Automatically follow any StatusNet followers/mentioners"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:343
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
|
||||
msgid "Lifetime of the cache (in hours)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:348
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
|
||||
msgid "Cache Statistics"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
|
||||
msgid "Number of items"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:353
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
|
||||
msgid "Size of the cache"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:355
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
|
||||
msgid "Delete the whole cache"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:179 ../../addon.old/fbpost/fbpost.php:172
|
||||
#: ../../addon/fbpost/fbpost.php:183 ../../addon.old/fbpost/fbpost.php:172
|
||||
msgid "Facebook Post disabled"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:206 ../../addon.old/fbpost/fbpost.php:199
|
||||
#: ../../addon/fbpost/fbpost.php:210 ../../addon.old/fbpost/fbpost.php:199
|
||||
msgid "Facebook Post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:205
|
||||
#: ../../addon/fbpost/fbpost.php:216 ../../addon.old/fbpost/fbpost.php:205
|
||||
msgid "Install Facebook Post connector for this account."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:219 ../../addon.old/fbpost/fbpost.php:212
|
||||
#: ../../addon/fbpost/fbpost.php:223 ../../addon.old/fbpost/fbpost.php:212
|
||||
msgid "Remove Facebook Post connector"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:235
|
||||
#: ../../addon/fbpost/fbpost.php:239
|
||||
msgid "Suppress \"View on friendica\""
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:245
|
||||
#: ../../addon/fbpost/fbpost.php:243
|
||||
msgid "Mirror wall posts from facebook to friendica."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:253
|
||||
msgid "Post to page/group:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:287 ../../addon.old/fbpost/fbpost.php:240
|
||||
#: ../../addon/fbpost/fbpost.php:295 ../../addon.old/fbpost/fbpost.php:240
|
||||
msgid "Facebook Post Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fbpost/fbpost.php:367
|
||||
#: ../../addon/fbpost/fbpost.php:375
|
||||
#, php-format
|
||||
msgid "%s:"
|
||||
msgstr ""
|
||||
|
|
@ -5719,11 +5734,8 @@ msgid "Forum Directory"
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:28
|
||||
#: ../../addon/communityhome/communityhome.php:34
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:28
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:34
|
||||
#: ../../include/nav.php:64 ../../boot.php:976
|
||||
#: ../../addon.old/communityhome/communityhome.php:28
|
||||
#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:64
|
||||
#: ../../boot.php:1016 ../../addon.old/communityhome/communityhome.php:28
|
||||
#: ../../addon.old/communityhome/communityhome.php:34
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:28
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:34
|
||||
|
|
@ -5731,38 +5743,35 @@ msgid "Login"
|
|||
msgstr ""
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:29
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:29
|
||||
#: ../../addon.old/communityhome/communityhome.php:29
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:29
|
||||
msgid "OpenID"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:38
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:38
|
||||
#: ../../addon/communityhome/communityhome.php:39
|
||||
#: ../../addon.old/communityhome/communityhome.php:38
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:38
|
||||
msgid "Latest users"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:82
|
||||
#: ../../addon/communityhome/twillingham/communityhome.php:81
|
||||
#: ../../addon/communityhome/communityhome.php:84
|
||||
#: ../../addon.old/communityhome/communityhome.php:81
|
||||
#: ../../addon.old/communityhome/twillingham/communityhome.php:81
|
||||
msgid "Most active users"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:99
|
||||
#: ../../addon/communityhome/communityhome.php:102
|
||||
#: ../../addon.old/communityhome/communityhome.php:98
|
||||
msgid "Latest photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:136
|
||||
#: ../../addon/communityhome/communityhome.php:141
|
||||
#: ../../addon.old/communityhome/communityhome.php:133
|
||||
msgid "Latest likes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/communityhome/communityhome.php:158
|
||||
#: ../../view/theme/diabook/theme.php:457 ../../include/text.php:1496
|
||||
#: ../../addon/communityhome/communityhome.php:163
|
||||
#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1496
|
||||
#: ../../include/conversation.php:117 ../../include/conversation.php:245
|
||||
#: ../../addon.old/communityhome/communityhome.php:155
|
||||
msgid "event"
|
||||
|
|
@ -6331,7 +6340,7 @@ msgstr ""
|
|||
|
||||
#: ../../addon/dav/friendica/main.php:279
|
||||
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
|
||||
#: ../../include/enotify.php:28 ../../include/notifier.php:781
|
||||
#: ../../include/enotify.php:28 ../../include/notifier.php:785
|
||||
#: ../../addon.old/dav/friendica/main.php:279
|
||||
#: ../../addon.old/dav/friendica/main.php:280
|
||||
msgid "noreply"
|
||||
|
|
@ -6910,24 +6919,24 @@ msgstr ""
|
|||
msgid "Quick Comment settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:71
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:95
|
||||
#: ../../addon.old/openstreetmap/openstreetmap.php:71
|
||||
msgid "Tile Server URL"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:71
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:95
|
||||
#: ../../addon.old/openstreetmap/openstreetmap.php:71
|
||||
msgid ""
|
||||
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank"
|
||||
"\">public tile servers</a>"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:72
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:96
|
||||
#: ../../addon.old/openstreetmap/openstreetmap.php:72
|
||||
msgid "Default zoom"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:72
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:96
|
||||
#: ../../addon.old/openstreetmap/openstreetmap.php:72
|
||||
msgid "The default zoom level. (1:world, 18:highest)"
|
||||
msgstr ""
|
||||
|
|
@ -7269,39 +7278,39 @@ msgstr ""
|
|||
msgid "View Source"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:134
|
||||
#: ../../addon/statusnet/statusnet.php:138
|
||||
#: ../../addon.old/statusnet/statusnet.php:134
|
||||
msgid "Post to StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:176
|
||||
#: ../../addon/statusnet/statusnet.php:180
|
||||
#: ../../addon.old/statusnet/statusnet.php:176
|
||||
msgid ""
|
||||
"Please contact your site administrator.<br />The provided API URL is not "
|
||||
"valid."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:204
|
||||
#: ../../addon/statusnet/statusnet.php:208
|
||||
#: ../../addon.old/statusnet/statusnet.php:204
|
||||
msgid "We could not contact the StatusNet API with the Path you entered."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:232
|
||||
#: ../../addon/statusnet/statusnet.php:238
|
||||
#: ../../addon.old/statusnet/statusnet.php:232
|
||||
msgid "StatusNet settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:257
|
||||
#: ../../addon/statusnet/statusnet.php:269
|
||||
#: ../../addon.old/statusnet/statusnet.php:257
|
||||
msgid "StatusNet Posting Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:271
|
||||
#: ../../addon/statusnet/statusnet.php:283
|
||||
#: ../../addon.old/statusnet/statusnet.php:271
|
||||
msgid "Globally Available StatusNet OAuthKeys"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:272
|
||||
#: ../../addon/statusnet/statusnet.php:284
|
||||
#: ../../addon.old/statusnet/statusnet.php:272
|
||||
msgid ""
|
||||
"There are preconfigured OAuth key pairs for some StatusNet servers "
|
||||
|
|
@ -7309,12 +7318,12 @@ msgid ""
|
|||
"not feel free to connect to any other StatusNet instance (see below)."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:280
|
||||
#: ../../addon/statusnet/statusnet.php:292
|
||||
#: ../../addon.old/statusnet/statusnet.php:280
|
||||
msgid "Provide your own OAuth Credentials"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:281
|
||||
#: ../../addon/statusnet/statusnet.php:293
|
||||
#: ../../addon.old/statusnet/statusnet.php:281
|
||||
msgid ""
|
||||
"No consumer key pair for StatusNet found. Register your Friendica Account as "
|
||||
|
|
@ -7324,22 +7333,22 @@ msgid ""
|
|||
"installation at your favorited StatusNet installation."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:283
|
||||
#: ../../addon/statusnet/statusnet.php:295
|
||||
#: ../../addon.old/statusnet/statusnet.php:283
|
||||
msgid "OAuth Consumer Key"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:286
|
||||
#: ../../addon/statusnet/statusnet.php:298
|
||||
#: ../../addon.old/statusnet/statusnet.php:286
|
||||
msgid "OAuth Consumer Secret"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:289
|
||||
#: ../../addon/statusnet/statusnet.php:301
|
||||
#: ../../addon.old/statusnet/statusnet.php:289
|
||||
msgid "Base API Path (remember the trailing /)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:310
|
||||
#: ../../addon/statusnet/statusnet.php:322
|
||||
#: ../../addon.old/statusnet/statusnet.php:310
|
||||
msgid ""
|
||||
"To connect to your StatusNet account click the button below to get a "
|
||||
|
|
@ -7348,38 +7357,38 @@ msgid ""
|
|||
"to StatusNet."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:311
|
||||
#: ../../addon/statusnet/statusnet.php:323
|
||||
#: ../../addon.old/statusnet/statusnet.php:311
|
||||
msgid "Log in with StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:313
|
||||
#: ../../addon/statusnet/statusnet.php:325
|
||||
#: ../../addon.old/statusnet/statusnet.php:313
|
||||
msgid "Copy the security code from StatusNet here"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:319
|
||||
#: ../../addon/statusnet/statusnet.php:331
|
||||
#: ../../addon.old/statusnet/statusnet.php:319
|
||||
msgid "Cancel Connection Process"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:321
|
||||
#: ../../addon/statusnet/statusnet.php:333
|
||||
#: ../../addon.old/statusnet/statusnet.php:321
|
||||
msgid "Current StatusNet API is"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:322
|
||||
#: ../../addon/statusnet/statusnet.php:334
|
||||
#: ../../addon.old/statusnet/statusnet.php:322
|
||||
msgid "Cancel StatusNet Connection"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
|
||||
#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
|
||||
#: ../../addon.old/statusnet/statusnet.php:333
|
||||
#: ../../addon.old/twitter/twitter.php:189
|
||||
msgid "Currently connected to: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:334
|
||||
#: ../../addon/statusnet/statusnet.php:346
|
||||
#: ../../addon.old/statusnet/statusnet.php:334
|
||||
msgid ""
|
||||
"If enabled all your <strong>public</strong> postings can be posted to the "
|
||||
|
|
@ -7387,7 +7396,7 @@ msgid ""
|
|||
"for every posting separately in the posting options when writing the entry."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:336
|
||||
#: ../../addon/statusnet/statusnet.php:348
|
||||
#: ../../addon.old/statusnet/statusnet.php:336
|
||||
msgid ""
|
||||
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
|
||||
|
|
@ -7396,28 +7405,37 @@ msgid ""
|
|||
"informing the visitor that the access to your profile has been restricted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:339
|
||||
#: ../../addon/statusnet/statusnet.php:351
|
||||
#: ../../addon.old/statusnet/statusnet.php:339
|
||||
msgid "Allow posting to StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:342
|
||||
#: ../../addon/statusnet/statusnet.php:354
|
||||
#: ../../addon.old/statusnet/statusnet.php:342
|
||||
msgid "Send public postings to StatusNet by default"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:345
|
||||
#: ../../addon/statusnet/statusnet.php:358
|
||||
msgid ""
|
||||
"Mirror all posts from statusnet that are no replies or repeated messages"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:362
|
||||
msgid "Shortening method that optimizes the post"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:366
|
||||
#: ../../addon.old/statusnet/statusnet.php:345
|
||||
msgid "Send linked #-tags and @-names to StatusNet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
|
||||
#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
|
||||
#: ../../addon.old/statusnet/statusnet.php:350
|
||||
#: ../../addon.old/twitter/twitter.php:206
|
||||
msgid "Clear OAuth configuration"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:695
|
||||
#: ../../addon/statusnet/statusnet.php:745
|
||||
#: ../../addon.old/statusnet/statusnet.php:568
|
||||
msgid "API URL"
|
||||
msgstr ""
|
||||
|
|
@ -7601,25 +7619,25 @@ msgstr ""
|
|||
msgid "Asynchronous tracking"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73
|
||||
#: ../../addon/twitter/twitter.php:77 ../../addon.old/twitter/twitter.php:73
|
||||
msgid "Post to Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122
|
||||
#: ../../addon/twitter/twitter.php:129 ../../addon.old/twitter/twitter.php:122
|
||||
msgid "Twitter settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146
|
||||
#: ../../addon/twitter/twitter.php:157 ../../addon.old/twitter/twitter.php:146
|
||||
msgid "Twitter Posting Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153
|
||||
#: ../../addon/twitter/twitter.php:164 ../../addon.old/twitter/twitter.php:153
|
||||
msgid ""
|
||||
"No consumer key pair for Twitter found. Please contact your site "
|
||||
"administrator."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172
|
||||
#: ../../addon/twitter/twitter.php:183 ../../addon.old/twitter/twitter.php:172
|
||||
msgid ""
|
||||
"At this Friendica instance the Twitter plugin was enabled but you have not "
|
||||
"yet connected your account to your Twitter account. To do so click the "
|
||||
|
|
@ -7628,22 +7646,22 @@ msgid ""
|
|||
"be posted to Twitter."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173
|
||||
#: ../../addon/twitter/twitter.php:184 ../../addon.old/twitter/twitter.php:173
|
||||
msgid "Log in with Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175
|
||||
#: ../../addon/twitter/twitter.php:186 ../../addon.old/twitter/twitter.php:175
|
||||
msgid "Copy the PIN from Twitter here"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190
|
||||
#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:190
|
||||
msgid ""
|
||||
"If enabled all your <strong>public</strong> postings can be posted to the "
|
||||
"associated Twitter account. You can choose to do so by default (here) or for "
|
||||
"every posting separately in the posting options when writing the entry."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192
|
||||
#: ../../addon/twitter/twitter.php:203 ../../addon.old/twitter/twitter.php:192
|
||||
msgid ""
|
||||
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
|
||||
"details from unknown viewers?</em>) the link potentially included in public "
|
||||
|
|
@ -7651,23 +7669,31 @@ msgid ""
|
|||
"the visitor that the access to your profile has been restricted."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195
|
||||
#: ../../addon/twitter/twitter.php:206 ../../addon.old/twitter/twitter.php:195
|
||||
msgid "Allow posting to Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198
|
||||
#: ../../addon/twitter/twitter.php:209 ../../addon.old/twitter/twitter.php:198
|
||||
msgid "Send public postings to Twitter by default"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201
|
||||
#: ../../addon/twitter/twitter.php:213
|
||||
msgid "Mirror all posts from twitter that are no replies or retweets"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:217
|
||||
msgid "Shortening method that optimizes the tweet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:221 ../../addon.old/twitter/twitter.php:201
|
||||
msgid "Send linked #-tags and @-names to Twitter"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:517 ../../addon.old/twitter/twitter.php:396
|
||||
#: ../../addon/twitter/twitter.php:556 ../../addon.old/twitter/twitter.php:396
|
||||
msgid "Consumer key"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/twitter/twitter.php:518 ../../addon.old/twitter/twitter.php:397
|
||||
#: ../../addon/twitter/twitter.php:557 ../../addon.old/twitter/twitter.php:397
|
||||
msgid "Consumer secret"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7805,137 +7831,137 @@ msgstr ""
|
|||
msgid "Color scheme"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:49
|
||||
#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:49
|
||||
#: ../../include/nav.php:116
|
||||
msgid "Your posts and conversations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:89 ../../include/nav.php:50
|
||||
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:50
|
||||
msgid "Your profile page"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:90
|
||||
#: ../../view/theme/diabook/theme.php:89
|
||||
msgid "Your contacts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:51
|
||||
#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:51
|
||||
msgid "Your photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:52
|
||||
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:52
|
||||
msgid "Your events"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:93 ../../include/nav.php:53
|
||||
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
|
||||
msgid "Personal notes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:93 ../../include/nav.php:53
|
||||
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
|
||||
msgid "Your personal photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:95
|
||||
#: ../../view/theme/diabook/theme.php:538
|
||||
#: ../../view/theme/diabook/theme.php:633
|
||||
#: ../../view/theme/diabook/theme.php:94
|
||||
#: ../../view/theme/diabook/theme.php:537
|
||||
#: ../../view/theme/diabook/theme.php:632
|
||||
#: ../../view/theme/diabook/config.php:163
|
||||
msgid "Community Pages"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:385
|
||||
#: ../../view/theme/diabook/theme.php:635
|
||||
#: ../../view/theme/diabook/theme.php:384
|
||||
#: ../../view/theme/diabook/theme.php:634
|
||||
#: ../../view/theme/diabook/config.php:165
|
||||
msgid "Community Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:406
|
||||
#: ../../view/theme/diabook/theme.php:640
|
||||
#: ../../view/theme/diabook/theme.php:405
|
||||
#: ../../view/theme/diabook/theme.php:639
|
||||
#: ../../view/theme/diabook/config.php:170
|
||||
msgid "Last users"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:435
|
||||
#: ../../view/theme/diabook/theme.php:642
|
||||
#: ../../view/theme/diabook/theme.php:434
|
||||
#: ../../view/theme/diabook/theme.php:641
|
||||
#: ../../view/theme/diabook/config.php:172
|
||||
msgid "Last likes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:480
|
||||
#: ../../view/theme/diabook/theme.php:641
|
||||
#: ../../view/theme/diabook/theme.php:479
|
||||
#: ../../view/theme/diabook/theme.php:640
|
||||
#: ../../view/theme/diabook/config.php:171
|
||||
msgid "Last photos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:517
|
||||
#: ../../view/theme/diabook/theme.php:638
|
||||
#: ../../view/theme/diabook/theme.php:516
|
||||
#: ../../view/theme/diabook/theme.php:637
|
||||
#: ../../view/theme/diabook/config.php:168
|
||||
msgid "Find Friends"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:518
|
||||
#: ../../view/theme/diabook/theme.php:517
|
||||
msgid "Local Directory"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:520 ../../include/contact_widgets.php:35
|
||||
#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
|
||||
msgid "Similar Interests"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:522 ../../include/contact_widgets.php:37
|
||||
#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
|
||||
msgid "Invite Friends"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:573
|
||||
#: ../../view/theme/diabook/theme.php:634
|
||||
#: ../../view/theme/diabook/theme.php:572
|
||||
#: ../../view/theme/diabook/theme.php:633
|
||||
#: ../../view/theme/diabook/config.php:164
|
||||
msgid "Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:578
|
||||
#: ../../view/theme/diabook/theme.php:577
|
||||
msgid "Set zoomfactor for Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:579
|
||||
#: ../../view/theme/diabook/theme.php:578
|
||||
#: ../../view/theme/diabook/config.php:161
|
||||
msgid "Set longitude (X) for Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:580
|
||||
#: ../../view/theme/diabook/theme.php:579
|
||||
#: ../../view/theme/diabook/config.php:162
|
||||
msgid "Set latitude (Y) for Earth Layers"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:593
|
||||
#: ../../view/theme/diabook/theme.php:636
|
||||
#: ../../view/theme/diabook/theme.php:592
|
||||
#: ../../view/theme/diabook/theme.php:635
|
||||
#: ../../view/theme/diabook/config.php:166
|
||||
msgid "Help or @NewHere ?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:600
|
||||
#: ../../view/theme/diabook/theme.php:637
|
||||
#: ../../view/theme/diabook/theme.php:599
|
||||
#: ../../view/theme/diabook/theme.php:636
|
||||
#: ../../view/theme/diabook/config.php:167
|
||||
msgid "Connect Services"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:607
|
||||
#: ../../view/theme/diabook/theme.php:639
|
||||
#: ../../view/theme/diabook/theme.php:606
|
||||
#: ../../view/theme/diabook/theme.php:638
|
||||
msgid "Last Tweets"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:610
|
||||
#: ../../view/theme/diabook/theme.php:609
|
||||
#: ../../view/theme/diabook/config.php:159
|
||||
msgid "Set twitter search term"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:630
|
||||
#: ../../view/theme/diabook/theme.php:629
|
||||
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:313
|
||||
msgid "don't show"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:630
|
||||
#: ../../view/theme/diabook/theme.php:629
|
||||
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:312
|
||||
msgid "show"
|
||||
msgstr ""
|
||||
|
||||
#: ../../view/theme/diabook/theme.php:631
|
||||
#: ../../view/theme/diabook/theme.php:630
|
||||
msgid "Show/hide boxes at right-hand column:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8257,8 +8283,8 @@ msgstr ""
|
|||
msgid "Sex Addict"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_selectors.php:42 ../../include/user.php:278
|
||||
#: ../../include/user.php:282
|
||||
#: ../../include/profile_selectors.php:42 ../../include/user.php:279
|
||||
#: ../../include/user.php:283
|
||||
msgid "Friends"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8354,7 +8380,7 @@ msgstr ""
|
|||
msgid "Finishes:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/delivery.php:457 ../../include/notifier.php:771
|
||||
#: ../../include/delivery.php:457 ../../include/notifier.php:775
|
||||
msgid "(no subject)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8581,7 +8607,7 @@ msgstr ""
|
|||
msgid "Click to open/close"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/text.php:1278 ../../include/user.php:236
|
||||
#: ../../include/text.php:1278 ../../include/user.php:237
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8601,11 +8627,11 @@ msgstr ""
|
|||
msgid "Item filed"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/diaspora.php:702
|
||||
#: ../../include/diaspora.php:704
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/diaspora.php:2239
|
||||
#: ../../include/diaspora.php:2248
|
||||
msgid "Attachments:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8692,7 +8718,7 @@ msgstr ""
|
|||
msgid "Contacts not in any group"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:46 ../../boot.php:975
|
||||
#: ../../include/nav.php:46 ../../boot.php:1015
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8700,7 +8726,7 @@ msgstr ""
|
|||
msgid "End this session"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:49 ../../boot.php:1767
|
||||
#: ../../include/nav.php:49 ../../boot.php:1812
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8792,7 +8818,7 @@ msgstr ""
|
|||
msgid "Delegations"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/nav.php:142 ../../boot.php:1272
|
||||
#: ../../include/nav.php:142 ../../boot.php:1318
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8952,7 +8978,7 @@ msgstr ""
|
|||
msgid "Happy Birthday %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/bbcode.php:210 ../../include/bbcode.php:491
|
||||
#: ../../include/bbcode.php:210 ../../include/bbcode.php:505
|
||||
msgid "Image/photo"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8963,11 +8989,11 @@ msgid ""
|
|||
"href=\"%s\" target=\"external-link\">post</a>:</span>"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/bbcode.php:456 ../../include/bbcode.php:476
|
||||
#: ../../include/bbcode.php:470 ../../include/bbcode.php:490
|
||||
msgid "$1 wrote:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/bbcode.php:496 ../../include/bbcode.php:497
|
||||
#: ../../include/bbcode.php:510 ../../include/bbcode.php:511
|
||||
msgid "Encrypted content"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9384,71 +9410,71 @@ msgstr ""
|
|||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:38
|
||||
#: ../../include/user.php:39
|
||||
msgid "An invitation is required."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:43
|
||||
#: ../../include/user.php:44
|
||||
msgid "Invitation could not be verified."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:51
|
||||
#: ../../include/user.php:52
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:66
|
||||
#: ../../include/user.php:67
|
||||
msgid "Please enter the required information."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:80
|
||||
#: ../../include/user.php:81
|
||||
msgid "Please use a shorter name."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:82
|
||||
#: ../../include/user.php:83
|
||||
msgid "Name too short."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:97
|
||||
#: ../../include/user.php:98
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:102
|
||||
#: ../../include/user.php:103
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:105
|
||||
#: ../../include/user.php:106
|
||||
msgid "Not a valid email address."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:115
|
||||
#: ../../include/user.php:116
|
||||
msgid "Cannot use that email."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:121
|
||||
#: ../../include/user.php:122
|
||||
msgid ""
|
||||
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
|
||||
"must also begin with a letter."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:127 ../../include/user.php:225
|
||||
#: ../../include/user.php:128 ../../include/user.php:226
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:137
|
||||
#: ../../include/user.php:138
|
||||
msgid ""
|
||||
"Nickname was once registered here and may not be re-used. Please choose "
|
||||
"another."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:153
|
||||
#: ../../include/user.php:154
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:211
|
||||
#: ../../include/user.php:212
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/user.php:246
|
||||
#: ../../include/user.php:247
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9519,11 +9545,11 @@ msgstr ""
|
|||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:620 ../../object/Item.php:243
|
||||
#: ../../include/conversation.php:620 ../../object/Item.php:249
|
||||
msgid "Categories:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:621 ../../object/Item.php:244
|
||||
#: ../../include/conversation.php:621 ../../object/Item.php:250
|
||||
msgid "Filed under:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9549,62 +9575,60 @@ msgstr ""
|
|||
msgid "%s doesn't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:884
|
||||
msgid "like this"
|
||||
#: ../../include/conversation.php:883
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:888
|
||||
msgid "don't like this"
|
||||
#: ../../include/conversation.php:886
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:895
|
||||
msgid "people"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:905
|
||||
#: ../../include/conversation.php:900
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:911
|
||||
#: ../../include/conversation.php:906
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:913
|
||||
#: ../../include/conversation.php:908
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:913
|
||||
#: ../../include/conversation.php:908
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:940 ../../include/conversation.php:958
|
||||
#: ../../include/conversation.php:935 ../../include/conversation.php:953
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:942 ../../include/conversation.php:960
|
||||
#: ../../include/conversation.php:937 ../../include/conversation.php:955
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:943 ../../include/conversation.php:961
|
||||
#: ../../include/conversation.php:938 ../../include/conversation.php:956
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:944 ../../include/conversation.php:962
|
||||
#: ../../include/conversation.php:939 ../../include/conversation.php:957
|
||||
msgid "Tag term:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:946 ../../include/conversation.php:964
|
||||
#: ../../include/conversation.php:941 ../../include/conversation.php:959
|
||||
msgid "Where are you right now?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:947
|
||||
#: ../../include/conversation.php:942
|
||||
msgid "Delete item(s)?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1026
|
||||
#: ../../include/conversation.php:1021
|
||||
msgid "permissions"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -9620,133 +9644,133 @@ msgstr ""
|
|||
msgid "This action is not available under your subscription plan."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:634
|
||||
#: ../../boot.php:640
|
||||
msgid "Delete this item?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:637
|
||||
#: ../../boot.php:643
|
||||
msgid "show fewer"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:847
|
||||
#: ../../boot.php:878
|
||||
#, php-format
|
||||
msgid "Update %s failed. See error logs."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:849
|
||||
#: ../../boot.php:880
|
||||
#, php-format
|
||||
msgid "Update Error at %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:950
|
||||
#: ../../boot.php:990
|
||||
msgid "Create a New Account"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:978
|
||||
#: ../../boot.php:1018
|
||||
msgid "Nickname or Email address: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:979
|
||||
#: ../../boot.php:1019
|
||||
msgid "Password: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:980
|
||||
#: ../../boot.php:1020
|
||||
msgid "Remember me"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:983
|
||||
#: ../../boot.php:1023
|
||||
msgid "Or login using OpenID: "
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:989
|
||||
#: ../../boot.php:1029
|
||||
msgid "Forgot your password?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:992
|
||||
#: ../../boot.php:1032
|
||||
msgid "Website Terms of Service"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:993
|
||||
#: ../../boot.php:1033
|
||||
msgid "terms of service"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:995
|
||||
#: ../../boot.php:1035
|
||||
msgid "Website Privacy Policy"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:996
|
||||
#: ../../boot.php:1036
|
||||
msgid "privacy policy"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1121
|
||||
#: ../../boot.php:1165
|
||||
msgid "Requested account is not available."
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1198
|
||||
#: ../../boot.php:1244
|
||||
msgid "Edit profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1264
|
||||
#: ../../boot.php:1310
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1272
|
||||
#: ../../boot.php:1318
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1395 ../../boot.php:1481
|
||||
#: ../../boot.php:1440 ../../boot.php:1526
|
||||
msgid "g A l F d"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1396 ../../boot.php:1482
|
||||
#: ../../boot.php:1441 ../../boot.php:1527
|
||||
msgid "F d"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1441 ../../boot.php:1522
|
||||
#: ../../boot.php:1486 ../../boot.php:1567
|
||||
msgid "[today]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1453
|
||||
#: ../../boot.php:1498
|
||||
msgid "Birthday Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1454
|
||||
#: ../../boot.php:1499
|
||||
msgid "Birthdays this week:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1515
|
||||
#: ../../boot.php:1560
|
||||
msgid "[No description]"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1533
|
||||
#: ../../boot.php:1578
|
||||
msgid "Event Reminders"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1534
|
||||
#: ../../boot.php:1579
|
||||
msgid "Events this week:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1770
|
||||
#: ../../boot.php:1815
|
||||
msgid "Status Messages and Posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1777
|
||||
#: ../../boot.php:1822
|
||||
msgid "Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1794
|
||||
#: ../../boot.php:1839
|
||||
msgid "Events and Calendar"
|
||||
msgstr ""
|
||||
|
||||
#: ../../boot.php:1801
|
||||
#: ../../boot.php:1846
|
||||
msgid "Only You Can See This"
|
||||
msgstr ""
|
||||
|
||||
#: ../../object/Item.php:255
|
||||
#: ../../object/Item.php:261
|
||||
msgid "via"
|
||||
msgstr ""
|
||||
|
||||
#: ../../index.php:398
|
||||
#: ../../index.php:399
|
||||
msgid "toggle mobile"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
|
||||
Apreciat/da {{$myname}},
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
<?php
|
||||
|
||||
// Set the following for your MySQL installation
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||
<html>
|
||||
<head>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
Has rebut un nou missatge privat de '{{$from}}' en {{$siteName}}.
|
||||
|
||||
{{$title}}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
|
||||
S'ha rebut la sol·licitud de registre d'un nou usuari en
|
||||
{{$sitename}} que requereix la teva aprovació.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
|
||||
Apreciat/da {{$myname}},
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
{{*
|
||||
* AUTOMATICALLY GENERATED TEMPLATE
|
||||
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
|
||||
*
|
||||
*}}
|
||||
|
||||
Apreciat/da {{$username}},
|
||||
|
||||
|
|
|
|||
|
|
@ -14,8 +14,8 @@
|
|||
$tabs
|
||||
|
||||
|
||||
{{ for $contacts as $c }}
|
||||
{{ inc contact_template.tpl with $contact=$c }}{{ endinc }}
|
||||
{{ for $contacts as $contact }}
|
||||
{{ inc contact_template.tpl }}{{ endinc }}
|
||||
{{ endfor }}
|
||||
<div id="contact-edit-end"></div>
|
||||
|
||||
|
|
|
|||
1905
view/cs/messages.po
1905
view/cs/messages.po
|
|
@ -3,13 +3,13 @@
|
|||
# This file is distributed under the same license as the Friendica package.
|
||||
#
|
||||
# Translators:
|
||||
# Michal Šupler <msupler@gmail.com>, 2011-2012.
|
||||
# Michal Šupler <msupler@gmail.com>, 2011-2013.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
||||
"POT-Creation-Date: 2012-12-18 10:00-0800\n"
|
||||
"PO-Revision-Date: 2012-12-20 18:23+0000\n"
|
||||
"POT-Creation-Date: 2013-01-02 10:00-0800\n"
|
||||
"PO-Revision-Date: 2013-01-04 19:23+0000\n"
|
||||
"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -41,8 +41,8 @@ msgstr "Aktualizace kontaktu selhala."
|
|||
#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
|
||||
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
|
||||
#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
|
||||
#: ../../mod/settings.php:91 ../../mod/settings.php:541
|
||||
#: ../../mod/settings.php:546 ../../mod/manage.php:90 ../../mod/network.php:6
|
||||
#: ../../mod/settings.php:91 ../../mod/settings.php:542
|
||||
#: ../../mod/settings.php:547 ../../mod/manage.php:90 ../../mod/network.php:6
|
||||
#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
|
||||
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
|
||||
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
|
||||
|
|
@ -61,7 +61,7 @@ msgstr "Aktualizace kontaktu selhala."
|
|||
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:166
|
||||
#: ../../addon/fbpost/fbpost.php:172
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:354
|
||||
#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:3977
|
||||
#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:3987
|
||||
#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
|
||||
#: ../../addon.old/facebook/facebook.php:516
|
||||
#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
|
||||
|
|
@ -94,8 +94,8 @@ msgstr "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zp
|
|||
msgid "Return to contact editor"
|
||||
msgstr "Návrat k editoru kontaktu"
|
||||
|
||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:561
|
||||
#: ../../mod/settings.php:587 ../../mod/admin.php:695 ../../mod/admin.php:705
|
||||
#: ../../mod/crepair.php:148 ../../mod/settings.php:562
|
||||
#: ../../mod/settings.php:588 ../../mod/admin.php:731 ../../mod/admin.php:741
|
||||
msgid "Name"
|
||||
msgstr "Jméno"
|
||||
|
||||
|
|
@ -132,18 +132,18 @@ msgid "New photo from this URL"
|
|||
msgstr "Nové foto z této URL adresy"
|
||||
|
||||
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
|
||||
#: ../../mod/events.php:455 ../../mod/photos.php:1028
|
||||
#: ../../mod/photos.php:1100 ../../mod/photos.php:1363
|
||||
#: ../../mod/photos.php:1403 ../../mod/photos.php:1447
|
||||
#: ../../mod/photos.php:1519 ../../mod/install.php:246
|
||||
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
|
||||
#: ../../mod/content.php:693 ../../mod/contacts.php:352
|
||||
#: ../../mod/settings.php:559 ../../mod/settings.php:669
|
||||
#: ../../mod/settings.php:738 ../../mod/settings.php:810
|
||||
#: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137
|
||||
#: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:445
|
||||
#: ../../mod/admin.php:692 ../../mod/admin.php:829 ../../mod/admin.php:1028
|
||||
#: ../../mod/admin.php:1115 ../../mod/profiles.php:604
|
||||
#: ../../mod/events.php:466 ../../mod/photos.php:1028
|
||||
#: ../../mod/photos.php:1118 ../../mod/photos.php:1402
|
||||
#: ../../mod/photos.php:1442 ../../mod/photos.php:1486
|
||||
#: ../../mod/photos.php:1569 ../../mod/install.php:248
|
||||
#: ../../mod/install.php:286 ../../mod/localtime.php:45 ../../mod/poke.php:199
|
||||
#: ../../mod/content.php:710 ../../mod/contacts.php:352
|
||||
#: ../../mod/settings.php:560 ../../mod/settings.php:670
|
||||
#: ../../mod/settings.php:739 ../../mod/settings.php:811
|
||||
#: ../../mod/settings.php:1018 ../../mod/group.php:87 ../../mod/mood.php:137
|
||||
#: ../../mod/message.php:301 ../../mod/message.php:527 ../../mod/admin.php:461
|
||||
#: ../../mod/admin.php:728 ../../mod/admin.php:865 ../../mod/admin.php:1064
|
||||
#: ../../mod/admin.php:1151 ../../mod/profiles.php:604
|
||||
#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:44
|
||||
#: ../../addon/facebook/facebook.php:619
|
||||
#: ../../addon/snautofollow/snautofollow.php:64
|
||||
|
|
@ -152,8 +152,8 @@ msgstr "Nové foto z této URL adresy"
|
|||
#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
|
||||
#: ../../addon/uhremotestorage/uhremotestorage.php:89
|
||||
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:47
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:195
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:48
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:196
|
||||
#: ../../addon/startpage/startpage.php:92
|
||||
#: ../../addon/geonames/geonames.php:187
|
||||
#: ../../addon/forumlist/forumlist.php:178
|
||||
|
|
@ -165,7 +165,7 @@ msgstr "Nové foto z této URL adresy"
|
|||
#: ../../addon/libravatar/libravatar.php:99
|
||||
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:91
|
||||
#: ../../addon/altpager/altpager.php:98 ../../addon/mathjax/mathjax.php:42
|
||||
#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:98
|
||||
#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:99
|
||||
#: ../../addon/gravatar/gravatar.php:95
|
||||
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
|
||||
#: ../../addon/jappixmini/jappixmini.php:307
|
||||
|
|
@ -174,18 +174,18 @@ msgstr "Nové foto z této URL adresy"
|
|||
#: ../../addon/statusnet/statusnet.php:318
|
||||
#: ../../addon/statusnet/statusnet.php:325
|
||||
#: ../../addon/statusnet/statusnet.php:353
|
||||
#: ../../addon/statusnet/statusnet.php:700 ../../addon/tumblr/tumblr.php:233
|
||||
#: ../../addon/statusnet/statusnet.php:703 ../../addon/tumblr/tumblr.php:233
|
||||
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
|
||||
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
|
||||
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
|
||||
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:506
|
||||
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:515
|
||||
#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
|
||||
#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
|
||||
#: ../../view/theme/cleanzero/config.php:80
|
||||
#: ../../view/theme/diabook/theme.php:642
|
||||
#: ../../view/theme/diabook/theme.php:643
|
||||
#: ../../view/theme/diabook/config.php:152
|
||||
#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
|
||||
#: ../../object/Item.php:577 ../../addon.old/fromgplus/fromgplus.php:40
|
||||
#: ../../object/Item.php:603 ../../addon.old/fromgplus/fromgplus.php:40
|
||||
#: ../../addon.old/facebook/facebook.php:619
|
||||
#: ../../addon.old/snautofollow/snautofollow.php:64
|
||||
#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
|
||||
|
|
@ -285,86 +285,87 @@ msgstr "l, F j"
|
|||
msgid "Edit event"
|
||||
msgstr "Editovat událost"
|
||||
|
||||
#: ../../mod/events.php:323 ../../include/text.php:1190
|
||||
#: ../../mod/events.php:323 ../../include/text.php:1247
|
||||
msgid "link to source"
|
||||
msgstr "odkaz na zdroj"
|
||||
|
||||
#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:91
|
||||
#: ../../include/nav.php:52 ../../boot.php:1748
|
||||
#: ../../mod/events.php:358 ../../view/theme/diabook/theme.php:92
|
||||
#: ../../include/nav.php:52 ../../boot.php:1791
|
||||
msgid "Events"
|
||||
msgstr "Události"
|
||||
|
||||
#: ../../mod/events.php:348
|
||||
#: ../../mod/events.php:359
|
||||
msgid "Create New Event"
|
||||
msgstr "Vytvořit novou událost"
|
||||
|
||||
#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
|
||||
#: ../../mod/events.php:360 ../../addon/dav/friendica/layout.fnk.php:263
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:263
|
||||
msgid "Previous"
|
||||
msgstr "Předchozí"
|
||||
|
||||
#: ../../mod/events.php:350 ../../mod/install.php:205
|
||||
#: ../../mod/events.php:361 ../../mod/install.php:207
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:266
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:266
|
||||
msgid "Next"
|
||||
msgstr "Dále"
|
||||
|
||||
#: ../../mod/events.php:423
|
||||
#: ../../mod/events.php:434
|
||||
msgid "hour:minute"
|
||||
msgstr "hodina:minuta"
|
||||
|
||||
#: ../../mod/events.php:433
|
||||
#: ../../mod/events.php:444
|
||||
msgid "Event details"
|
||||
msgstr "Detaily události"
|
||||
|
||||
#: ../../mod/events.php:434
|
||||
#: ../../mod/events.php:445
|
||||
#, php-format
|
||||
msgid "Format is %s %s. Starting date and Title are required."
|
||||
msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány."
|
||||
|
||||
#: ../../mod/events.php:436
|
||||
#: ../../mod/events.php:447
|
||||
msgid "Event Starts:"
|
||||
msgstr "Událost začíná:"
|
||||
|
||||
#: ../../mod/events.php:436 ../../mod/events.php:450
|
||||
#: ../../mod/events.php:447 ../../mod/events.php:461
|
||||
msgid "Required"
|
||||
msgstr "Vyžadováno"
|
||||
|
||||
#: ../../mod/events.php:439
|
||||
#: ../../mod/events.php:450
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr "Datum/čas konce není zadán nebo není relevantní"
|
||||
|
||||
#: ../../mod/events.php:441
|
||||
#: ../../mod/events.php:452
|
||||
msgid "Event Finishes:"
|
||||
msgstr "Akce končí:"
|
||||
|
||||
#: ../../mod/events.php:444
|
||||
#: ../../mod/events.php:455
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
|
||||
|
||||
#: ../../mod/events.php:446
|
||||
#: ../../mod/events.php:457
|
||||
msgid "Description:"
|
||||
msgstr "Popis:"
|
||||
|
||||
#: ../../mod/events.php:448 ../../mod/directory.php:134
|
||||
#: ../../mod/events.php:459 ../../mod/directory.php:134
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:156
|
||||
#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
|
||||
#: ../../boot.php:1278
|
||||
#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
|
||||
#: ../../boot.php:1312
|
||||
msgid "Location:"
|
||||
msgstr "Místo:"
|
||||
|
||||
#: ../../mod/events.php:450
|
||||
#: ../../mod/events.php:461
|
||||
msgid "Title:"
|
||||
msgstr "Název:"
|
||||
|
||||
#: ../../mod/events.php:452
|
||||
#: ../../mod/events.php:463
|
||||
msgid "Share this event"
|
||||
msgstr "Sdílet tuto událost"
|
||||
|
||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
|
||||
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:560
|
||||
#: ../../mod/settings.php:586 ../../addon/js_upload/js_upload.php:45
|
||||
#: ../../include/conversation.php:1009
|
||||
#: ../../mod/dfrn_request.php:848 ../../mod/settings.php:561
|
||||
#: ../../mod/settings.php:587 ../../mod/fbrowser.php:81
|
||||
#: ../../mod/fbrowser.php:116 ../../addon/js_upload/js_upload.php:45
|
||||
#: ../../include/conversation.php:1045
|
||||
#: ../../addon.old/js_upload/js_upload.php:45
|
||||
msgid "Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
|
@ -410,44 +411,44 @@ msgid ""
|
|||
" and/or create new posts for you?"
|
||||
msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"
|
||||
|
||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
|
||||
#: ../../mod/settings.php:933 ../../mod/settings.php:939
|
||||
#: ../../mod/settings.php:947 ../../mod/settings.php:951
|
||||
#: ../../mod/settings.php:956 ../../mod/settings.php:962
|
||||
#: ../../mod/settings.php:968 ../../mod/settings.php:974
|
||||
#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
|
||||
#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
|
||||
#: ../../mod/settings.php:1008 ../../mod/register.php:237
|
||||
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:836
|
||||
#: ../../mod/settings.php:934 ../../mod/settings.php:940
|
||||
#: ../../mod/settings.php:948 ../../mod/settings.php:952
|
||||
#: ../../mod/settings.php:957 ../../mod/settings.php:963
|
||||
#: ../../mod/settings.php:969 ../../mod/settings.php:975
|
||||
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
|
||||
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
|
||||
#: ../../mod/settings.php:1009 ../../mod/register.php:237
|
||||
#: ../../mod/profiles.php:584
|
||||
msgid "Yes"
|
||||
msgstr "Ano"
|
||||
|
||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
|
||||
#: ../../mod/settings.php:933 ../../mod/settings.php:939
|
||||
#: ../../mod/settings.php:947 ../../mod/settings.php:951
|
||||
#: ../../mod/settings.php:956 ../../mod/settings.php:962
|
||||
#: ../../mod/settings.php:968 ../../mod/settings.php:974
|
||||
#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
|
||||
#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
|
||||
#: ../../mod/settings.php:1008 ../../mod/register.php:238
|
||||
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:837
|
||||
#: ../../mod/settings.php:934 ../../mod/settings.php:940
|
||||
#: ../../mod/settings.php:948 ../../mod/settings.php:952
|
||||
#: ../../mod/settings.php:957 ../../mod/settings.php:963
|
||||
#: ../../mod/settings.php:969 ../../mod/settings.php:975
|
||||
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
|
||||
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
|
||||
#: ../../mod/settings.php:1009 ../../mod/register.php:238
|
||||
#: ../../mod/profiles.php:585
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
|
||||
#: ../../mod/photos.php:51 ../../boot.php:1741
|
||||
#: ../../mod/photos.php:51 ../../boot.php:1784
|
||||
msgid "Photo Albums"
|
||||
msgstr "Fotoalba"
|
||||
|
||||
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
|
||||
#: ../../mod/photos.php:1092 ../../mod/photos.php:1107
|
||||
#: ../../mod/photos.php:1562 ../../mod/photos.php:1574
|
||||
#: ../../addon/communityhome/communityhome.php:111
|
||||
#: ../../view/theme/diabook/theme.php:492
|
||||
#: ../../mod/photos.php:1102 ../../mod/photos.php:1125
|
||||
#: ../../mod/photos.php:1626 ../../mod/photos.php:1638
|
||||
#: ../../addon/communityhome/communityhome.php:112
|
||||
#: ../../view/theme/diabook/theme.php:493
|
||||
#: ../../addon.old/communityhome/communityhome.php:110
|
||||
msgid "Contact Photos"
|
||||
msgstr "Fotogalerie kontaktu"
|
||||
|
||||
#: ../../mod/photos.php:66 ../../mod/photos.php:1123 ../../mod/photos.php:1612
|
||||
#: ../../mod/photos.php:66 ../../mod/photos.php:1141 ../../mod/photos.php:1685
|
||||
msgid "Upload New Photos"
|
||||
msgstr "Nahrát nové fotografie"
|
||||
|
||||
|
|
@ -459,13 +460,13 @@ msgstr "Žádost o připojení selhala nebo byla zrušena."
|
|||
msgid "Contact information unavailable"
|
||||
msgstr "Kontakt byl zablokován"
|
||||
|
||||
#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1092
|
||||
#: ../../mod/photos.php:1107 ../../mod/profile_photo.php:74
|
||||
#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1102
|
||||
#: ../../mod/photos.php:1125 ../../mod/profile_photo.php:74
|
||||
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
|
||||
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
|
||||
#: ../../mod/profile_photo.php:305
|
||||
#: ../../addon/communityhome/communityhome.php:112
|
||||
#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:324
|
||||
#: ../../addon/communityhome/communityhome.php:113
|
||||
#: ../../view/theme/diabook/theme.php:494 ../../include/user.php:324
|
||||
#: ../../include/user.php:331 ../../include/user.php:338
|
||||
#: ../../addon.old/communityhome/communityhome.php:111
|
||||
msgid "Profile Photos"
|
||||
|
|
@ -475,11 +476,11 @@ msgstr "Profilové fotografie"
|
|||
msgid "Album not found."
|
||||
msgstr "Album nenalezeno."
|
||||
|
||||
#: ../../mod/photos.php:182 ../../mod/photos.php:1101
|
||||
#: ../../mod/photos.php:182 ../../mod/photos.php:1119
|
||||
msgid "Delete Album"
|
||||
msgstr "Smazat album"
|
||||
|
||||
#: ../../mod/photos.php:245 ../../mod/photos.php:1364
|
||||
#: ../../mod/photos.php:245 ../../mod/photos.php:1403
|
||||
msgid "Delete Photo"
|
||||
msgstr "Smazat fotografii"
|
||||
|
||||
|
|
@ -512,7 +513,7 @@ msgid "Image upload failed."
|
|||
msgstr "Nahrání obrázku selhalo."
|
||||
|
||||
#: ../../mod/photos.php:865 ../../mod/community.php:18
|
||||
#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/dfrn_request.php:761 ../../mod/viewcontacts.php:17
|
||||
#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31
|
||||
#: ../../addon/forumdirectory/forumdirectory.php:53
|
||||
msgid "Public access denied."
|
||||
|
|
@ -531,157 +532,157 @@ msgstr "Přístup k této položce je omezen."
|
|||
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
|
||||
msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."
|
||||
|
||||
#: ../../mod/photos.php:1043
|
||||
#: ../../mod/photos.php:1053
|
||||
msgid "Upload Photos"
|
||||
msgstr "Nahrání fotografií "
|
||||
|
||||
#: ../../mod/photos.php:1047 ../../mod/photos.php:1096
|
||||
#: ../../mod/photos.php:1057 ../../mod/photos.php:1114
|
||||
msgid "New album name: "
|
||||
msgstr "Název nového alba: "
|
||||
|
||||
#: ../../mod/photos.php:1048
|
||||
#: ../../mod/photos.php:1058
|
||||
msgid "or existing album name: "
|
||||
msgstr "nebo stávající název alba: "
|
||||
|
||||
#: ../../mod/photos.php:1049
|
||||
#: ../../mod/photos.php:1059
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr "Nezobrazovat stav pro tento upload"
|
||||
|
||||
#: ../../mod/photos.php:1051 ../../mod/photos.php:1359
|
||||
#: ../../mod/photos.php:1061 ../../mod/photos.php:1398
|
||||
msgid "Permissions"
|
||||
msgstr "Oprávnění:"
|
||||
|
||||
#: ../../mod/photos.php:1111
|
||||
#: ../../mod/photos.php:1129
|
||||
msgid "Edit Album"
|
||||
msgstr "Edituj album"
|
||||
|
||||
#: ../../mod/photos.php:1117
|
||||
#: ../../mod/photos.php:1135
|
||||
msgid "Show Newest First"
|
||||
msgstr "Zobrazit nejprve nejnovější:"
|
||||
|
||||
#: ../../mod/photos.php:1119
|
||||
#: ../../mod/photos.php:1137
|
||||
msgid "Show Oldest First"
|
||||
msgstr "Zobrazit nejprve nejstarší:"
|
||||
|
||||
#: ../../mod/photos.php:1143 ../../mod/photos.php:1595
|
||||
#: ../../mod/photos.php:1170 ../../mod/photos.php:1668
|
||||
msgid "View Photo"
|
||||
msgstr "Zobraz fotografii"
|
||||
|
||||
#: ../../mod/photos.php:1178
|
||||
#: ../../mod/photos.php:1205
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."
|
||||
|
||||
#: ../../mod/photos.php:1180
|
||||
#: ../../mod/photos.php:1207
|
||||
msgid "Photo not available"
|
||||
msgstr "Fotografie není k dispozici"
|
||||
|
||||
#: ../../mod/photos.php:1236
|
||||
#: ../../mod/photos.php:1263
|
||||
msgid "View photo"
|
||||
msgstr "Zobrazit obrázek"
|
||||
|
||||
#: ../../mod/photos.php:1236
|
||||
#: ../../mod/photos.php:1263
|
||||
msgid "Edit photo"
|
||||
msgstr "Editovat fotografii"
|
||||
|
||||
#: ../../mod/photos.php:1237
|
||||
#: ../../mod/photos.php:1264
|
||||
msgid "Use as profile photo"
|
||||
msgstr "Použít jako profilovou fotografii"
|
||||
|
||||
#: ../../mod/photos.php:1243 ../../mod/content.php:603
|
||||
#: ../../mod/photos.php:1270 ../../mod/content.php:620
|
||||
#: ../../object/Item.php:105
|
||||
msgid "Private Message"
|
||||
msgstr "Soukromá zpráva"
|
||||
|
||||
#: ../../mod/photos.php:1262
|
||||
#: ../../mod/photos.php:1289
|
||||
msgid "View Full Size"
|
||||
msgstr "Zobrazit v plné velikosti"
|
||||
|
||||
#: ../../mod/photos.php:1336
|
||||
#: ../../mod/photos.php:1363
|
||||
msgid "Tags: "
|
||||
msgstr "Štítky: "
|
||||
|
||||
#: ../../mod/photos.php:1339
|
||||
#: ../../mod/photos.php:1366
|
||||
msgid "[Remove any tag]"
|
||||
msgstr "[Odstranit všechny štítky]"
|
||||
|
||||
#: ../../mod/photos.php:1349
|
||||
#: ../../mod/photos.php:1388
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr "Rotovat po směru hodinových ručiček (doprava)"
|
||||
|
||||
#: ../../mod/photos.php:1350
|
||||
#: ../../mod/photos.php:1389
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr "Rotovat proti směru hodinových ručiček (doleva)"
|
||||
|
||||
#: ../../mod/photos.php:1352
|
||||
#: ../../mod/photos.php:1391
|
||||
msgid "New album name"
|
||||
msgstr "Nové jméno alba"
|
||||
|
||||
#: ../../mod/photos.php:1355
|
||||
#: ../../mod/photos.php:1394
|
||||
msgid "Caption"
|
||||
msgstr "Titulek"
|
||||
|
||||
#: ../../mod/photos.php:1357
|
||||
#: ../../mod/photos.php:1396
|
||||
msgid "Add a Tag"
|
||||
msgstr "Přidat štítek"
|
||||
|
||||
#: ../../mod/photos.php:1361
|
||||
#: ../../mod/photos.php:1400
|
||||
msgid ""
|
||||
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
|
||||
#: ../../mod/photos.php:1381 ../../mod/content.php:667
|
||||
#: ../../mod/photos.php:1420 ../../mod/content.php:684
|
||||
#: ../../object/Item.php:203
|
||||
msgid "I like this (toggle)"
|
||||
msgstr "Líbí se mi to (přepínač)"
|
||||
|
||||
#: ../../mod/photos.php:1382 ../../mod/content.php:668
|
||||
#: ../../mod/photos.php:1421 ../../mod/content.php:685
|
||||
#: ../../object/Item.php:204
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr "Nelíbí se mi to (přepínač)"
|
||||
|
||||
#: ../../mod/photos.php:1383 ../../include/conversation.php:969
|
||||
#: ../../mod/photos.php:1422 ../../include/conversation.php:1005
|
||||
msgid "Share"
|
||||
msgstr "Sdílet"
|
||||
|
||||
#: ../../mod/photos.php:1384 ../../mod/editpost.php:121
|
||||
#: ../../mod/content.php:482 ../../mod/content.php:848
|
||||
#: ../../mod/photos.php:1423 ../../mod/editpost.php:121
|
||||
#: ../../mod/content.php:499 ../../mod/content.php:883
|
||||
#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
|
||||
#: ../../mod/message.php:488 ../../include/conversation.php:624
|
||||
#: ../../include/conversation.php:988 ../../object/Item.php:270
|
||||
#: ../../mod/message.php:528 ../../include/conversation.php:645
|
||||
#: ../../include/conversation.php:1024 ../../object/Item.php:287
|
||||
msgid "Please wait"
|
||||
msgstr "Čekejte prosím"
|
||||
|
||||
#: ../../mod/photos.php:1400 ../../mod/photos.php:1444
|
||||
#: ../../mod/photos.php:1516 ../../mod/content.php:690
|
||||
#: ../../object/Item.php:574
|
||||
#: ../../mod/photos.php:1439 ../../mod/photos.php:1483
|
||||
#: ../../mod/photos.php:1566 ../../mod/content.php:707
|
||||
#: ../../object/Item.php:600
|
||||
msgid "This is you"
|
||||
msgstr "Nastavte Vaši polohu"
|
||||
|
||||
#: ../../mod/photos.php:1402 ../../mod/photos.php:1446
|
||||
#: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608
|
||||
#: ../../object/Item.php:267 ../../object/Item.php:576
|
||||
#: ../../mod/photos.php:1441 ../../mod/photos.php:1485
|
||||
#: ../../mod/photos.php:1568 ../../mod/content.php:709 ../../boot.php:635
|
||||
#: ../../object/Item.php:284 ../../object/Item.php:602
|
||||
msgid "Comment"
|
||||
msgstr "Okomentovat"
|
||||
|
||||
#: ../../mod/photos.php:1404 ../../mod/photos.php:1448
|
||||
#: ../../mod/photos.php:1520 ../../mod/editpost.php:142
|
||||
#: ../../mod/content.php:702 ../../include/conversation.php:1006
|
||||
#: ../../object/Item.php:586
|
||||
#: ../../mod/photos.php:1443 ../../mod/photos.php:1487
|
||||
#: ../../mod/photos.php:1570 ../../mod/editpost.php:142
|
||||
#: ../../mod/content.php:719 ../../include/conversation.php:1042
|
||||
#: ../../object/Item.php:612
|
||||
msgid "Preview"
|
||||
msgstr "Náhled"
|
||||
|
||||
#: ../../mod/photos.php:1488 ../../mod/content.php:439
|
||||
#: ../../mod/content.php:724 ../../mod/settings.php:622
|
||||
#: ../../mod/group.php:168 ../../mod/admin.php:699
|
||||
#: ../../mod/photos.php:1527 ../../mod/content.php:439
|
||||
#: ../../mod/content.php:741 ../../mod/settings.php:623
|
||||
#: ../../mod/group.php:171 ../../mod/admin.php:735
|
||||
#: ../../include/conversation.php:569 ../../object/Item.php:119
|
||||
msgid "Delete"
|
||||
msgstr "Odstranit"
|
||||
|
||||
#: ../../mod/photos.php:1601
|
||||
#: ../../mod/photos.php:1674
|
||||
msgid "View Album"
|
||||
msgstr "Zobrazit album"
|
||||
|
||||
#: ../../mod/photos.php:1610
|
||||
#: ../../mod/photos.php:1683
|
||||
msgid "Recent Photos"
|
||||
msgstr "Aktuální fotografie"
|
||||
|
||||
|
|
@ -689,7 +690,7 @@ msgstr "Aktuální fotografie"
|
|||
msgid "Not available."
|
||||
msgstr "Není k dispozici."
|
||||
|
||||
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
|
||||
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:94
|
||||
#: ../../include/nav.php:101
|
||||
msgid "Community"
|
||||
msgstr "Komunita"
|
||||
|
|
@ -739,96 +740,96 @@ msgstr "Položka nenalezena"
|
|||
msgid "Edit post"
|
||||
msgstr "Upravit příspěvek"
|
||||
|
||||
#: ../../mod/editpost.php:91 ../../include/conversation.php:955
|
||||
#: ../../mod/editpost.php:91 ../../include/conversation.php:991
|
||||
msgid "Post to Email"
|
||||
msgstr "Poslat příspěvek na e-mail"
|
||||
|
||||
#: ../../mod/editpost.php:106 ../../mod/content.php:711
|
||||
#: ../../mod/settings.php:621 ../../object/Item.php:109
|
||||
#: ../../mod/editpost.php:106 ../../mod/content.php:728
|
||||
#: ../../mod/settings.php:622 ../../object/Item.php:109
|
||||
msgid "Edit"
|
||||
msgstr "Upravit"
|
||||
|
||||
#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
|
||||
#: ../../mod/message.php:298 ../../mod/message.php:485
|
||||
#: ../../include/conversation.php:970
|
||||
#: ../../mod/message.php:298 ../../mod/message.php:525
|
||||
#: ../../include/conversation.php:1006
|
||||
msgid "Upload photo"
|
||||
msgstr "Nahrát fotografii"
|
||||
|
||||
#: ../../mod/editpost.php:108 ../../include/conversation.php:971
|
||||
#: ../../mod/editpost.php:108 ../../include/conversation.php:1007
|
||||
msgid "upload photo"
|
||||
msgstr "nahrát fotky"
|
||||
|
||||
#: ../../mod/editpost.php:109 ../../include/conversation.php:972
|
||||
#: ../../mod/editpost.php:109 ../../include/conversation.php:1008
|
||||
msgid "Attach file"
|
||||
msgstr "Přiložit soubor"
|
||||
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:973
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:1009
|
||||
msgid "attach file"
|
||||
msgstr "přidat soubor"
|
||||
|
||||
#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
|
||||
#: ../../mod/message.php:299 ../../mod/message.php:486
|
||||
#: ../../include/conversation.php:974
|
||||
#: ../../mod/message.php:299 ../../mod/message.php:526
|
||||
#: ../../include/conversation.php:1010
|
||||
msgid "Insert web link"
|
||||
msgstr "Vložit webový odkaz"
|
||||
|
||||
#: ../../mod/editpost.php:112 ../../include/conversation.php:975
|
||||
#: ../../mod/editpost.php:112 ../../include/conversation.php:1011
|
||||
msgid "web link"
|
||||
msgstr "webový odkaz"
|
||||
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:976
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1012
|
||||
msgid "Insert video link"
|
||||
msgstr "Zadejte odkaz na video"
|
||||
|
||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:977
|
||||
#: ../../mod/editpost.php:114 ../../include/conversation.php:1013
|
||||
msgid "video link"
|
||||
msgstr "odkaz na video"
|
||||
|
||||
#: ../../mod/editpost.php:115 ../../include/conversation.php:978
|
||||
#: ../../mod/editpost.php:115 ../../include/conversation.php:1014
|
||||
msgid "Insert audio link"
|
||||
msgstr "Zadejte odkaz na zvukový záznam"
|
||||
|
||||
#: ../../mod/editpost.php:116 ../../include/conversation.php:979
|
||||
#: ../../mod/editpost.php:116 ../../include/conversation.php:1015
|
||||
msgid "audio link"
|
||||
msgstr "odkaz na audio"
|
||||
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:980
|
||||
#: ../../mod/editpost.php:117 ../../include/conversation.php:1016
|
||||
msgid "Set your location"
|
||||
msgstr "Nastavte vaši polohu"
|
||||
|
||||
#: ../../mod/editpost.php:118 ../../include/conversation.php:981
|
||||
#: ../../mod/editpost.php:118 ../../include/conversation.php:1017
|
||||
msgid "set location"
|
||||
msgstr "nastavit místo"
|
||||
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:982
|
||||
#: ../../mod/editpost.php:119 ../../include/conversation.php:1018
|
||||
msgid "Clear browser location"
|
||||
msgstr "Odstranit adresu v prohlížeči"
|
||||
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:983
|
||||
#: ../../mod/editpost.php:120 ../../include/conversation.php:1019
|
||||
msgid "clear location"
|
||||
msgstr "vymazat místo"
|
||||
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:989
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1025
|
||||
msgid "Permission settings"
|
||||
msgstr "Nastavení oprávnění"
|
||||
|
||||
#: ../../mod/editpost.php:130 ../../include/conversation.php:998
|
||||
#: ../../mod/editpost.php:130 ../../include/conversation.php:1034
|
||||
msgid "CC: email addresses"
|
||||
msgstr "skrytá kopie: e-mailové adresy"
|
||||
|
||||
#: ../../mod/editpost.php:131 ../../include/conversation.php:999
|
||||
#: ../../mod/editpost.php:131 ../../include/conversation.php:1035
|
||||
msgid "Public post"
|
||||
msgstr "Veřejný příspěvek"
|
||||
|
||||
#: ../../mod/editpost.php:134 ../../include/conversation.php:985
|
||||
#: ../../mod/editpost.php:134 ../../include/conversation.php:1021
|
||||
msgid "Set title"
|
||||
msgstr "Nastavit titulek"
|
||||
|
||||
#: ../../mod/editpost.php:136 ../../include/conversation.php:987
|
||||
#: ../../mod/editpost.php:136 ../../include/conversation.php:1023
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr "Kategorie (čárkou oddělený seznam)"
|
||||
|
||||
#: ../../mod/editpost.php:137 ../../include/conversation.php:1001
|
||||
#: ../../mod/editpost.php:137 ../../include/conversation.php:1037
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr "Příklad: bob@example.com, mary@example.com"
|
||||
|
||||
|
|
@ -836,19 +837,19 @@ msgstr "Příklad: bob@example.com, mary@example.com"
|
|||
msgid "This introduction has already been accepted."
|
||||
msgstr "Toto pozvání již bylo přijato."
|
||||
|
||||
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
|
||||
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr "Adresa profilu není platná nebo neobsahuje profilové informace"
|
||||
|
||||
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
|
||||
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"
|
||||
|
||||
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
|
||||
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii."
|
||||
|
||||
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
|
||||
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
|
||||
#, 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"
|
||||
|
|
@ -889,140 +890,140 @@ msgstr "Neplatný odkaz"
|
|||
msgid "Invalid email address."
|
||||
msgstr "Neplatná emailová adresa"
|
||||
|
||||
#: ../../mod/dfrn_request.php:361
|
||||
#: ../../mod/dfrn_request.php:362
|
||||
msgid "This account has not been configured for email. Request failed."
|
||||
msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn."
|
||||
|
||||
#: ../../mod/dfrn_request.php:457
|
||||
#: ../../mod/dfrn_request.php:458
|
||||
msgid "Unable to resolve your name at the provided location."
|
||||
msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese."
|
||||
|
||||
#: ../../mod/dfrn_request.php:470
|
||||
#: ../../mod/dfrn_request.php:471
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr "Již jste se zde zavedli."
|
||||
|
||||
#: ../../mod/dfrn_request.php:474
|
||||
#: ../../mod/dfrn_request.php:475
|
||||
#, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr "Zřejmě jste již přátelé se %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:495
|
||||
#: ../../mod/dfrn_request.php:496
|
||||
msgid "Invalid profile URL."
|
||||
msgstr "Neplatné URL profilu."
|
||||
|
||||
#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
|
||||
#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr "Nepovolené URL profilu."
|
||||
|
||||
#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:124
|
||||
#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
|
||||
msgid "Failed to update contact record."
|
||||
msgstr "Nepodařilo se aktualizovat kontakt."
|
||||
|
||||
#: ../../mod/dfrn_request.php:591
|
||||
#: ../../mod/dfrn_request.php:592
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr "Vaše žádost o propojení byla odeslána."
|
||||
|
||||
#: ../../mod/dfrn_request.php:644
|
||||
#: ../../mod/dfrn_request.php:645
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr "Prosím přihlašte se k potvrzení žádosti o propojení."
|
||||
|
||||
#: ../../mod/dfrn_request.php:658
|
||||
#: ../../mod/dfrn_request.php:659
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to "
|
||||
"<strong>this</strong> profile."
|
||||
msgstr "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do <strong>tohoto</strong> profilu."
|
||||
|
||||
#: ../../mod/dfrn_request.php:669
|
||||
#: ../../mod/dfrn_request.php:670
|
||||
msgid "Hide this contact"
|
||||
msgstr "Skrýt tento kontakt"
|
||||
|
||||
#: ../../mod/dfrn_request.php:672
|
||||
#: ../../mod/dfrn_request.php:673
|
||||
#, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr "Vítejte doma %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:673
|
||||
#: ../../mod/dfrn_request.php:674
|
||||
#, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr "Prosím potvrďte Vaši žádost o propojení %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:674
|
||||
#: ../../mod/dfrn_request.php:675
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdit"
|
||||
|
||||
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3356
|
||||
#: ../../mod/dfrn_request.php:716 ../../include/items.php:3366
|
||||
msgid "[Name Withheld]"
|
||||
msgstr "[Jméno odepřeno]"
|
||||
|
||||
#: ../../mod/dfrn_request.php:810
|
||||
#: ../../mod/dfrn_request.php:811
|
||||
msgid ""
|
||||
"Please enter your 'Identity Address' from one of the following supported "
|
||||
"communications networks:"
|
||||
msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:826
|
||||
#: ../../mod/dfrn_request.php:827
|
||||
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
|
||||
msgstr "<strike>Připojte se jako emailový následovník</strike> (Již brzy)"
|
||||
|
||||
#: ../../mod/dfrn_request.php:828
|
||||
#: ../../mod/dfrn_request.php:829
|
||||
msgid ""
|
||||
"If you are not yet a member of the free social web, <a "
|
||||
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
|
||||
" Friendica site and join us today</a>."
|
||||
msgstr "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>."
|
||||
|
||||
#: ../../mod/dfrn_request.php:831
|
||||
#: ../../mod/dfrn_request.php:832
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr "Požadavek o přátelství / kontaktování"
|
||||
|
||||
#: ../../mod/dfrn_request.php:832
|
||||
#: ../../mod/dfrn_request.php:833
|
||||
msgid ""
|
||||
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
|
||||
"testuser@identi.ca"
|
||||
msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
|
||||
|
||||
#: ../../mod/dfrn_request.php:833
|
||||
#: ../../mod/dfrn_request.php:834
|
||||
msgid "Please answer the following:"
|
||||
msgstr "Odpovězte, prosím, následující:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:834
|
||||
#: ../../mod/dfrn_request.php:835
|
||||
#, php-format
|
||||
msgid "Does %s know you?"
|
||||
msgstr "Zná Vás uživatel %s ?"
|
||||
|
||||
#: ../../mod/dfrn_request.php:837
|
||||
#: ../../mod/dfrn_request.php:838
|
||||
msgid "Add a personal note:"
|
||||
msgstr "Přidat osobní poznámku:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
|
||||
#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
|
||||
msgid "Friendica"
|
||||
msgstr "Friendica"
|
||||
|
||||
#: ../../mod/dfrn_request.php:840
|
||||
#: ../../mod/dfrn_request.php:841
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr "StatusNet / Federativní Sociální Web"
|
||||
|
||||
#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:681
|
||||
#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
|
||||
#: ../../include/contact_selectors.php:80
|
||||
msgid "Diaspora"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: ../../mod/dfrn_request.php:842
|
||||
#: ../../mod/dfrn_request.php:843
|
||||
#, php-format
|
||||
msgid ""
|
||||
" - please do not use this form. Instead, enter %s into your Diaspora search"
|
||||
" bar."
|
||||
msgstr " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."
|
||||
|
||||
#: ../../mod/dfrn_request.php:843
|
||||
#: ../../mod/dfrn_request.php:844
|
||||
msgid "Your Identity Address:"
|
||||
msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."
|
||||
|
||||
#: ../../mod/dfrn_request.php:846
|
||||
#: ../../mod/dfrn_request.php:847
|
||||
msgid "Submit Request"
|
||||
msgstr "Odeslat žádost"
|
||||
|
||||
#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:138
|
||||
#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:140
|
||||
msgid "Account settings"
|
||||
msgstr "Nastavení účtu"
|
||||
|
||||
|
|
@ -1051,10 +1052,10 @@ msgid "Remove account"
|
|||
msgstr "Odstranit účet"
|
||||
|
||||
#: ../../mod/uexport.php:48 ../../mod/settings.php:74
|
||||
#: ../../mod/newmember.php:22 ../../mod/admin.php:788 ../../mod/admin.php:993
|
||||
#: ../../mod/newmember.php:22 ../../mod/admin.php:824 ../../mod/admin.php:1029
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:225
|
||||
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
|
||||
#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:138
|
||||
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:538
|
||||
#: ../../view/theme/diabook/theme.php:659 ../../include/nav.php:140
|
||||
#: ../../addon.old/dav/friendica/layout.fnk.php:225
|
||||
#: ../../addon.old/mathjax/mathjax.php:36
|
||||
msgid "Settings"
|
||||
|
|
@ -1103,240 +1104,269 @@ msgid ""
|
|||
"or mysql."
|
||||
msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."
|
||||
|
||||
#: ../../mod/install.php:139 ../../mod/install.php:204
|
||||
#: ../../mod/install.php:488
|
||||
#: ../../mod/install.php:139 ../../mod/install.php:206
|
||||
#: ../../mod/install.php:506
|
||||
msgid "Please see the file \"INSTALL.txt\"."
|
||||
msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."
|
||||
|
||||
#: ../../mod/install.php:201
|
||||
#: ../../mod/install.php:203
|
||||
msgid "System check"
|
||||
msgstr "Testování systému"
|
||||
|
||||
#: ../../mod/install.php:206
|
||||
#: ../../mod/install.php:208
|
||||
msgid "Check again"
|
||||
msgstr "Otestovat znovu"
|
||||
|
||||
#: ../../mod/install.php:225
|
||||
#: ../../mod/install.php:227
|
||||
msgid "Database connection"
|
||||
msgstr "Databázové spojení"
|
||||
|
||||
#: ../../mod/install.php:226
|
||||
#: ../../mod/install.php:228
|
||||
msgid ""
|
||||
"In order to install Friendica we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."
|
||||
|
||||
#: ../../mod/install.php:227
|
||||
#: ../../mod/install.php:229
|
||||
msgid ""
|
||||
"Please contact your hosting provider or site administrator if you have "
|
||||
"questions about these settings."
|
||||
msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "
|
||||
|
||||
#: ../../mod/install.php:228
|
||||
#: ../../mod/install.php:230
|
||||
msgid ""
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."
|
||||
|
||||
#: ../../mod/install.php:232
|
||||
#: ../../mod/install.php:234
|
||||
msgid "Database Server Name"
|
||||
msgstr "Jméno databázového serveru"
|
||||
|
||||
#: ../../mod/install.php:233
|
||||
#: ../../mod/install.php:235
|
||||
msgid "Database Login Name"
|
||||
msgstr "Přihlašovací jméno k databázi"
|
||||
|
||||
#: ../../mod/install.php:234
|
||||
#: ../../mod/install.php:236
|
||||
msgid "Database Login Password"
|
||||
msgstr "Heslo k databázovému účtu "
|
||||
|
||||
#: ../../mod/install.php:235
|
||||
#: ../../mod/install.php:237
|
||||
msgid "Database Name"
|
||||
msgstr "Jméno databáze"
|
||||
|
||||
#: ../../mod/install.php:236 ../../mod/install.php:275
|
||||
#: ../../mod/install.php:238 ../../mod/install.php:277
|
||||
msgid "Site administrator email address"
|
||||
msgstr "Emailová adresa administrátora webu"
|
||||
|
||||
#: ../../mod/install.php:236 ../../mod/install.php:275
|
||||
#: ../../mod/install.php:238 ../../mod/install.php:277
|
||||
msgid ""
|
||||
"Your account email address must match this in order to use the web admin "
|
||||
"panel."
|
||||
msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."
|
||||
|
||||
#: ../../mod/install.php:240 ../../mod/install.php:278
|
||||
#: ../../mod/install.php:242 ../../mod/install.php:280
|
||||
msgid "Please select a default timezone for your website"
|
||||
msgstr "Prosím, vyberte výchozí časové pásmo pro váš server"
|
||||
|
||||
#: ../../mod/install.php:265
|
||||
#: ../../mod/install.php:267
|
||||
msgid "Site settings"
|
||||
msgstr "Nastavení webu"
|
||||
|
||||
#: ../../mod/install.php:318
|
||||
#: ../../mod/install.php:320
|
||||
msgid "Could not find a command line version of PHP in the web server PATH."
|
||||
msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."
|
||||
|
||||
#: ../../mod/install.php:319
|
||||
#: ../../mod/install.php:321
|
||||
msgid ""
|
||||
"If you don't have a command line version of PHP installed on server, you "
|
||||
"will not be able to run background polling via cron. See <a "
|
||||
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
|
||||
msgstr "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n podrobnosti\n návrhy\n historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
|
||||
|
||||
#: ../../mod/install.php:323
|
||||
#: ../../mod/install.php:325
|
||||
msgid "PHP executable path"
|
||||
msgstr "Cesta k \"PHP executable\""
|
||||
|
||||
#: ../../mod/install.php:323
|
||||
#: ../../mod/install.php:325
|
||||
msgid ""
|
||||
"Enter full path to php executable. You can leave this blank to continue the "
|
||||
"installation."
|
||||
msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."
|
||||
|
||||
#: ../../mod/install.php:328
|
||||
#: ../../mod/install.php:330
|
||||
msgid "Command line PHP"
|
||||
msgstr "Příkazový řádek PHP"
|
||||
|
||||
#: ../../mod/install.php:337
|
||||
#: ../../mod/install.php:339
|
||||
msgid ""
|
||||
"The command line version of PHP on your system does not have "
|
||||
"\"register_argc_argv\" enabled."
|
||||
msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."
|
||||
|
||||
#: ../../mod/install.php:338
|
||||
#: ../../mod/install.php:340
|
||||
msgid "This is required for message delivery to work."
|
||||
msgstr "Toto je nutné pro fungování doručování zpráv."
|
||||
|
||||
#: ../../mod/install.php:340
|
||||
#: ../../mod/install.php:342
|
||||
msgid "PHP register_argc_argv"
|
||||
msgstr "PHP register_argc_argv"
|
||||
|
||||
#: ../../mod/install.php:361
|
||||
#: ../../mod/install.php:363
|
||||
msgid ""
|
||||
"Error: the \"openssl_pkey_new\" function on this system is not able to "
|
||||
"generate encryption keys"
|
||||
msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"
|
||||
|
||||
#: ../../mod/install.php:362
|
||||
#: ../../mod/install.php:364
|
||||
msgid ""
|
||||
"If running under Windows, please see "
|
||||
"\"http://www.php.net/manual/en/openssl.installation.php\"."
|
||||
msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."
|
||||
|
||||
#: ../../mod/install.php:364
|
||||
#: ../../mod/install.php:366
|
||||
msgid "Generate encryption keys"
|
||||
msgstr "Generovat kriptovací klíče"
|
||||
|
||||
#: ../../mod/install.php:371
|
||||
#: ../../mod/install.php:373
|
||||
msgid "libCurl PHP module"
|
||||
msgstr "libCurl PHP modul"
|
||||
|
||||
#: ../../mod/install.php:372
|
||||
#: ../../mod/install.php:374
|
||||
msgid "GD graphics PHP module"
|
||||
msgstr "GD graphics PHP modul"
|
||||
|
||||
#: ../../mod/install.php:373
|
||||
#: ../../mod/install.php:375
|
||||
msgid "OpenSSL PHP module"
|
||||
msgstr "OpenSSL PHP modul"
|
||||
|
||||
#: ../../mod/install.php:374
|
||||
#: ../../mod/install.php:376
|
||||
msgid "mysqli PHP module"
|
||||
msgstr "mysqli PHP modul"
|
||||
|
||||
#: ../../mod/install.php:375
|
||||
#: ../../mod/install.php:377
|
||||
msgid "mb_string PHP module"
|
||||
msgstr "mb_string PHP modul"
|
||||
|
||||
#: ../../mod/install.php:380 ../../mod/install.php:382
|
||||
#: ../../mod/install.php:382 ../../mod/install.php:384
|
||||
msgid "Apache mod_rewrite module"
|
||||
msgstr "Apache mod_rewrite modul"
|
||||
|
||||
#: ../../mod/install.php:380
|
||||
#: ../../mod/install.php:382
|
||||
msgid ""
|
||||
"Error: Apache webserver mod-rewrite module is required but not installed."
|
||||
msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."
|
||||
|
||||
#: ../../mod/install.php:388
|
||||
#: ../../mod/install.php:390
|
||||
msgid "Error: libCURL PHP module required but not installed."
|
||||
msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován."
|
||||
|
||||
#: ../../mod/install.php:392
|
||||
#: ../../mod/install.php:394
|
||||
msgid ""
|
||||
"Error: GD graphics PHP module with JPEG support required but not installed."
|
||||
msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován."
|
||||
|
||||
#: ../../mod/install.php:396
|
||||
#: ../../mod/install.php:398
|
||||
msgid "Error: openssl PHP module required but not installed."
|
||||
msgstr "Chyba: požadovaný openssl PHP modul není nainstalován."
|
||||
|
||||
#: ../../mod/install.php:400
|
||||
#: ../../mod/install.php:402
|
||||
msgid "Error: mysqli PHP module required but not installed."
|
||||
msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován."
|
||||
|
||||
#: ../../mod/install.php:404
|
||||
#: ../../mod/install.php:406
|
||||
msgid "Error: mb_string PHP module required but not installed."
|
||||
msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován."
|
||||
|
||||
#: ../../mod/install.php:421
|
||||
#: ../../mod/install.php:423
|
||||
msgid ""
|
||||
"The web installer needs to be able to create a file called \".htconfig.php\""
|
||||
" in the top folder of your web server and it is unable to do so."
|
||||
msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno."
|
||||
|
||||
#: ../../mod/install.php:422
|
||||
#: ../../mod/install.php:424
|
||||
msgid ""
|
||||
"This is most often a permission setting, as the web server may not be able "
|
||||
"to write files in your folder - even if you can."
|
||||
msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."
|
||||
|
||||
#: ../../mod/install.php:423
|
||||
#: ../../mod/install.php:425
|
||||
msgid ""
|
||||
"At the end of this procedure, we will give you a text to save in a file "
|
||||
"named .htconfig.php in your Friendica top folder."
|
||||
msgstr "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."
|
||||
|
||||
#: ../../mod/install.php:424
|
||||
#: ../../mod/install.php:426
|
||||
msgid ""
|
||||
"You can alternatively skip this procedure and perform a manual installation."
|
||||
" Please see the file \"INSTALL.txt\" for instructions."
|
||||
msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."
|
||||
|
||||
#: ../../mod/install.php:427
|
||||
#: ../../mod/install.php:429
|
||||
msgid ".htconfig.php is writable"
|
||||
msgstr ".htconfig.php je editovatelné"
|
||||
|
||||
#: ../../mod/install.php:439
|
||||
msgid ""
|
||||
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
|
||||
"compiles templates to PHP to speed up rendering."
|
||||
msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."
|
||||
|
||||
#: ../../mod/install.php:440
|
||||
msgid ""
|
||||
"In order to store these compiled templates, the web server needs to have "
|
||||
"write access to the directory view/smarty3/ under the Friendica top level "
|
||||
"folder."
|
||||
msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"
|
||||
|
||||
#: ../../mod/install.php:441
|
||||
msgid ""
|
||||
"Please ensure that the user that your web server runs as (e.g. www-data) has"
|
||||
" write access to this folder."
|
||||
msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"
|
||||
|
||||
#: ../../mod/install.php:442
|
||||
msgid ""
|
||||
"Note: as a security measure, you should give the web server write access to "
|
||||
"view/smarty3/ only--not the template files (.tpl) that it contains."
|
||||
msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."
|
||||
|
||||
#: ../../mod/install.php:445
|
||||
msgid "view/smarty3 is writable"
|
||||
msgstr "view/smarty3 je nastaven pro zápis"
|
||||
|
||||
#: ../../mod/install.php:457
|
||||
msgid ""
|
||||
"Url rewrite in .htaccess is not working. Check your server configuration."
|
||||
msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."
|
||||
|
||||
#: ../../mod/install.php:441
|
||||
#: ../../mod/install.php:459
|
||||
msgid "Url rewrite is working"
|
||||
msgstr "Url rewrite je funkční."
|
||||
|
||||
#: ../../mod/install.php:451
|
||||
#: ../../mod/install.php:469
|
||||
msgid ""
|
||||
"The database configuration file \".htconfig.php\" could not be written. "
|
||||
"Please use the enclosed text to create a configuration file in your web "
|
||||
"server root."
|
||||
msgstr "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."
|
||||
|
||||
#: ../../mod/install.php:475
|
||||
#: ../../mod/install.php:493
|
||||
msgid "Errors encountered creating database tables."
|
||||
msgstr "Při vytváření databázových tabulek došlo k chybám."
|
||||
|
||||
#: ../../mod/install.php:486
|
||||
#: ../../mod/install.php:504
|
||||
msgid "<h1>What next</h1>"
|
||||
msgstr "<h1>Co dál<h1>"
|
||||
|
||||
#: ../../mod/install.php:487
|
||||
#: ../../mod/install.php:505
|
||||
msgid ""
|
||||
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
|
||||
"poller."
|
||||
msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."
|
||||
|
||||
#: ../../mod/localtime.php:12 ../../include/event.php:11
|
||||
#: ../../include/bb2diaspora.php:390
|
||||
#: ../../include/bb2diaspora.php:393
|
||||
msgid "l F d, Y \\@ g:i A"
|
||||
msgstr "l F d, Y \\@ g:i A"
|
||||
|
||||
|
|
@ -1402,7 +1432,7 @@ msgid "is interested in:"
|
|||
msgstr "zajímá se o:"
|
||||
|
||||
#: ../../mod/match.php:58 ../../mod/suggest.php:59
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1216
|
||||
#: ../../include/contact_widgets.php:9 ../../boot.php:1250
|
||||
msgid "Connect"
|
||||
msgstr "Spojit"
|
||||
|
||||
|
|
@ -1415,7 +1445,7 @@ msgid "Remote privacy information not available."
|
|||
msgstr "Vzdálené soukromé informace nejsou k dispozici."
|
||||
|
||||
#: ../../mod/lockview.php:48
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:123
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:124
|
||||
msgid "Visible to:"
|
||||
msgstr "Viditelné pro:"
|
||||
|
||||
|
|
@ -1431,29 +1461,29 @@ msgstr "Skupina je prázdná"
|
|||
msgid "Group: "
|
||||
msgstr "Skupina: "
|
||||
|
||||
#: ../../mod/content.php:438 ../../mod/content.php:723
|
||||
#: ../../mod/content.php:438 ../../mod/content.php:740
|
||||
#: ../../include/conversation.php:568 ../../object/Item.php:118
|
||||
msgid "Select"
|
||||
msgstr "Vybrat"
|
||||
|
||||
#: ../../mod/content.php:455 ../../mod/content.php:817
|
||||
#: ../../mod/content.php:818 ../../include/conversation.php:587
|
||||
#: ../../object/Item.php:235 ../../object/Item.php:236
|
||||
#: ../../mod/content.php:472 ../../mod/content.php:852
|
||||
#: ../../mod/content.php:853 ../../include/conversation.php:608
|
||||
#: ../../object/Item.php:252 ../../object/Item.php:253
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Zobrazit profil uživatele %s na %s"
|
||||
|
||||
#: ../../mod/content.php:465 ../../mod/content.php:829
|
||||
#: ../../include/conversation.php:607 ../../object/Item.php:249
|
||||
#: ../../mod/content.php:482 ../../mod/content.php:864
|
||||
#: ../../include/conversation.php:628 ../../object/Item.php:266
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s od %s"
|
||||
|
||||
#: ../../mod/content.php:480 ../../include/conversation.php:622
|
||||
#: ../../mod/content.php:497 ../../include/conversation.php:643
|
||||
msgid "View in context"
|
||||
msgstr "Pohled v kontextu"
|
||||
|
||||
#: ../../mod/content.php:586 ../../object/Item.php:289
|
||||
#: ../../mod/content.php:603 ../../object/Item.php:306
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
|
|
@ -1461,107 +1491,107 @@ msgstr[0] "%d komentář"
|
|||
msgstr[1] "%d komentářů"
|
||||
msgstr[2] "%d komentářů"
|
||||
|
||||
#: ../../mod/content.php:588 ../../include/text.php:1446
|
||||
#: ../../object/Item.php:291 ../../object/Item.php:304
|
||||
#: ../../mod/content.php:605 ../../include/text.php:1503
|
||||
#: ../../object/Item.php:308 ../../object/Item.php:321
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] "komentář"
|
||||
|
||||
#: ../../mod/content.php:589 ../../addon/page/page.php:77
|
||||
#: ../../mod/content.php:606 ../../addon/page/page.php:77
|
||||
#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
|
||||
#: ../../include/contact_widgets.php:204 ../../boot.php:609
|
||||
#: ../../object/Item.php:292 ../../addon.old/page/page.php:77
|
||||
#: ../../include/contact_widgets.php:204 ../../boot.php:636
|
||||
#: ../../object/Item.php:309 ../../addon.old/page/page.php:77
|
||||
#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
|
||||
msgid "show more"
|
||||
msgstr "zobrazit více"
|
||||
|
||||
#: ../../mod/content.php:667 ../../object/Item.php:203
|
||||
#: ../../mod/content.php:684 ../../object/Item.php:203
|
||||
msgid "like"
|
||||
msgstr "má rád"
|
||||
|
||||
#: ../../mod/content.php:668 ../../object/Item.php:204
|
||||
#: ../../mod/content.php:685 ../../object/Item.php:204
|
||||
msgid "dislike"
|
||||
msgstr "nemá rád"
|
||||
|
||||
#: ../../mod/content.php:670 ../../object/Item.php:206
|
||||
#: ../../mod/content.php:687 ../../object/Item.php:206
|
||||
msgid "Share this"
|
||||
msgstr "Sdílet toto"
|
||||
|
||||
#: ../../mod/content.php:670 ../../object/Item.php:206
|
||||
#: ../../mod/content.php:687 ../../object/Item.php:206
|
||||
msgid "share"
|
||||
msgstr "sdílí"
|
||||
|
||||
#: ../../mod/content.php:694 ../../object/Item.php:578
|
||||
#: ../../mod/content.php:711 ../../object/Item.php:604
|
||||
msgid "Bold"
|
||||
msgstr "Tučné"
|
||||
|
||||
#: ../../mod/content.php:695 ../../object/Item.php:579
|
||||
#: ../../mod/content.php:712 ../../object/Item.php:605
|
||||
msgid "Italic"
|
||||
msgstr "Kurzíva"
|
||||
|
||||
#: ../../mod/content.php:696 ../../object/Item.php:580
|
||||
#: ../../mod/content.php:713 ../../object/Item.php:606
|
||||
msgid "Underline"
|
||||
msgstr "Podrtžené"
|
||||
|
||||
#: ../../mod/content.php:697 ../../object/Item.php:581
|
||||
#: ../../mod/content.php:714 ../../object/Item.php:607
|
||||
msgid "Quote"
|
||||
msgstr "Citovat"
|
||||
|
||||
#: ../../mod/content.php:698 ../../object/Item.php:582
|
||||
#: ../../mod/content.php:715 ../../object/Item.php:608
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#: ../../mod/content.php:699 ../../object/Item.php:583
|
||||
#: ../../mod/content.php:716 ../../object/Item.php:609
|
||||
msgid "Image"
|
||||
msgstr "Obrázek"
|
||||
|
||||
#: ../../mod/content.php:700 ../../object/Item.php:584
|
||||
#: ../../mod/content.php:717 ../../object/Item.php:610
|
||||
msgid "Link"
|
||||
msgstr "Odkaz"
|
||||
|
||||
#: ../../mod/content.php:701 ../../object/Item.php:585
|
||||
#: ../../mod/content.php:718 ../../object/Item.php:611
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: ../../mod/content.php:736 ../../object/Item.php:182
|
||||
#: ../../mod/content.php:753 ../../object/Item.php:182
|
||||
msgid "add star"
|
||||
msgstr "přidat hvězdu"
|
||||
|
||||
#: ../../mod/content.php:737 ../../object/Item.php:183
|
||||
#: ../../mod/content.php:754 ../../object/Item.php:183
|
||||
msgid "remove star"
|
||||
msgstr "odebrat hvězdu"
|
||||
|
||||
#: ../../mod/content.php:738 ../../object/Item.php:184
|
||||
#: ../../mod/content.php:755 ../../object/Item.php:184
|
||||
msgid "toggle star status"
|
||||
msgstr "přepnout hvězdu"
|
||||
|
||||
#: ../../mod/content.php:741 ../../object/Item.php:187
|
||||
#: ../../mod/content.php:758 ../../object/Item.php:187
|
||||
msgid "starred"
|
||||
msgstr "označeno hvězdou"
|
||||
|
||||
#: ../../mod/content.php:742 ../../object/Item.php:192
|
||||
#: ../../mod/content.php:759 ../../object/Item.php:192
|
||||
msgid "add tag"
|
||||
msgstr "přidat štítek"
|
||||
|
||||
#: ../../mod/content.php:746 ../../object/Item.php:122
|
||||
#: ../../mod/content.php:763 ../../object/Item.php:122
|
||||
msgid "save to folder"
|
||||
msgstr "uložit do složky"
|
||||
|
||||
#: ../../mod/content.php:819 ../../object/Item.php:237
|
||||
#: ../../mod/content.php:854 ../../object/Item.php:254
|
||||
msgid "to"
|
||||
msgstr "pro"
|
||||
|
||||
#: ../../mod/content.php:820 ../../object/Item.php:239
|
||||
#: ../../mod/content.php:855 ../../object/Item.php:256
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Zeď-na-Zeď"
|
||||
|
||||
#: ../../mod/content.php:821 ../../object/Item.php:240
|
||||
#: ../../mod/content.php:856 ../../object/Item.php:257
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "přes Zeď-na-Zeď "
|
||||
|
||||
#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:180
|
||||
#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:183
|
||||
#: ../../addon.old/communityhome/communityhome.php:179
|
||||
#, php-format
|
||||
msgid "Welcome to %s"
|
||||
|
|
@ -1571,13 +1601,13 @@ msgstr "Vítá Vás %s"
|
|||
msgid "Invalid request identifier."
|
||||
msgstr "Neplatný identifikátor požadavku."
|
||||
|
||||
#: ../../mod/notifications.php:35 ../../mod/notifications.php:164
|
||||
#: ../../mod/notifications.php:210
|
||||
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
|
||||
#: ../../mod/notifications.php:211
|
||||
msgid "Discard"
|
||||
msgstr "Odstranit"
|
||||
|
||||
#: ../../mod/notifications.php:51 ../../mod/notifications.php:163
|
||||
#: ../../mod/notifications.php:209 ../../mod/contacts.php:325
|
||||
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
|
||||
#: ../../mod/notifications.php:210 ../../mod/contacts.php:325
|
||||
#: ../../mod/contacts.php:379
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorovat"
|
||||
|
|
@ -1594,7 +1624,7 @@ msgstr "Síť"
|
|||
msgid "Personal"
|
||||
msgstr "Osobní"
|
||||
|
||||
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
|
||||
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:88
|
||||
#: ../../include/nav.php:77 ../../include/nav.php:116
|
||||
msgid "Home"
|
||||
msgstr "Domů"
|
||||
|
|
@ -1616,139 +1646,139 @@ msgstr "Zobrazit ignorované žádosti"
|
|||
msgid "Hide Ignored Requests"
|
||||
msgstr "Skrýt ignorované žádosti"
|
||||
|
||||
#: ../../mod/notifications.php:148 ../../mod/notifications.php:194
|
||||
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
|
||||
msgid "Notification type: "
|
||||
msgstr "Typ oznámení: "
|
||||
|
||||
#: ../../mod/notifications.php:149
|
||||
#: ../../mod/notifications.php:150
|
||||
msgid "Friend Suggestion"
|
||||
msgstr "Návrh přátelství"
|
||||
|
||||
#: ../../mod/notifications.php:151
|
||||
#: ../../mod/notifications.php:152
|
||||
#, php-format
|
||||
msgid "suggested by %s"
|
||||
msgstr "navrhl %s"
|
||||
|
||||
#: ../../mod/notifications.php:156 ../../mod/notifications.php:203
|
||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||
#: ../../mod/contacts.php:385
|
||||
msgid "Hide this contact from others"
|
||||
msgstr "Skrýt tento kontakt před ostatními"
|
||||
|
||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
|
||||
msgid "Post a new friend activity"
|
||||
msgstr "Zveřejnit aktivitu nového přítele."
|
||||
|
||||
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
|
||||
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
|
||||
msgid "if applicable"
|
||||
msgstr "je-li použitelné"
|
||||
|
||||
#: ../../mod/notifications.php:160 ../../mod/notifications.php:207
|
||||
#: ../../mod/admin.php:697
|
||||
#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
|
||||
#: ../../mod/admin.php:733
|
||||
msgid "Approve"
|
||||
msgstr "Schválit"
|
||||
|
||||
#: ../../mod/notifications.php:180
|
||||
#: ../../mod/notifications.php:181
|
||||
msgid "Claims to be known to you: "
|
||||
msgstr "Vaši údajní známí: "
|
||||
|
||||
#: ../../mod/notifications.php:180
|
||||
#: ../../mod/notifications.php:181
|
||||
msgid "yes"
|
||||
msgstr "ano"
|
||||
|
||||
#: ../../mod/notifications.php:180
|
||||
#: ../../mod/notifications.php:181
|
||||
msgid "no"
|
||||
msgstr "ne"
|
||||
|
||||
#: ../../mod/notifications.php:187
|
||||
#: ../../mod/notifications.php:188
|
||||
msgid "Approve as: "
|
||||
msgstr "Schválit jako: "
|
||||
|
||||
#: ../../mod/notifications.php:188
|
||||
#: ../../mod/notifications.php:189
|
||||
msgid "Friend"
|
||||
msgstr "Přítel"
|
||||
|
||||
#: ../../mod/notifications.php:189
|
||||
#: ../../mod/notifications.php:190
|
||||
msgid "Sharer"
|
||||
msgstr "Sdílené"
|
||||
|
||||
#: ../../mod/notifications.php:189
|
||||
#: ../../mod/notifications.php:190
|
||||
msgid "Fan/Admirer"
|
||||
msgstr "Fanoušek / obdivovatel"
|
||||
|
||||
#: ../../mod/notifications.php:195
|
||||
#: ../../mod/notifications.php:196
|
||||
msgid "Friend/Connect Request"
|
||||
msgstr "Přítel / žádost o připojení"
|
||||
|
||||
#: ../../mod/notifications.php:195
|
||||
#: ../../mod/notifications.php:196
|
||||
msgid "New Follower"
|
||||
msgstr "Nový následovník"
|
||||
|
||||
#: ../../mod/notifications.php:216
|
||||
#: ../../mod/notifications.php:217
|
||||
msgid "No introductions."
|
||||
msgstr "Žádné představení."
|
||||
|
||||
#: ../../mod/notifications.php:219 ../../include/nav.php:123
|
||||
#: ../../mod/notifications.php:220 ../../include/nav.php:123
|
||||
msgid "Notifications"
|
||||
msgstr "Upozornění"
|
||||
|
||||
#: ../../mod/notifications.php:256 ../../mod/notifications.php:381
|
||||
#: ../../mod/notifications.php:468
|
||||
#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
|
||||
#: ../../mod/notifications.php:469
|
||||
#, php-format
|
||||
msgid "%s liked %s's post"
|
||||
msgstr "Uživateli %s se líbí příspěvek uživatele %s"
|
||||
|
||||
#: ../../mod/notifications.php:265 ../../mod/notifications.php:390
|
||||
#: ../../mod/notifications.php:477
|
||||
#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
|
||||
#: ../../mod/notifications.php:478
|
||||
#, php-format
|
||||
msgid "%s disliked %s's post"
|
||||
msgstr "Uživateli %s se nelíbí příspěvek uživatele %s"
|
||||
|
||||
#: ../../mod/notifications.php:279 ../../mod/notifications.php:404
|
||||
#: ../../mod/notifications.php:491
|
||||
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
|
||||
#: ../../mod/notifications.php:492
|
||||
#, php-format
|
||||
msgid "%s is now friends with %s"
|
||||
msgstr "%s se nyní přátelí s %s"
|
||||
|
||||
#: ../../mod/notifications.php:286 ../../mod/notifications.php:411
|
||||
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
|
||||
#, php-format
|
||||
msgid "%s created a new post"
|
||||
msgstr "%s vytvořil nový příspěvek"
|
||||
|
||||
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
|
||||
#: ../../mod/notifications.php:500
|
||||
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
|
||||
#: ../../mod/notifications.php:501
|
||||
#, php-format
|
||||
msgid "%s commented on %s's post"
|
||||
msgstr "%s okomentoval příspěvek uživatele %s'"
|
||||
|
||||
#: ../../mod/notifications.php:301
|
||||
#: ../../mod/notifications.php:302
|
||||
msgid "No more network notifications."
|
||||
msgstr "Žádné další síťové upozornění."
|
||||
|
||||
#: ../../mod/notifications.php:305
|
||||
#: ../../mod/notifications.php:306
|
||||
msgid "Network Notifications"
|
||||
msgstr "Upozornění Sítě"
|
||||
|
||||
#: ../../mod/notifications.php:331 ../../mod/notify.php:61
|
||||
#: ../../mod/notifications.php:332 ../../mod/notify.php:61
|
||||
msgid "No more system notifications."
|
||||
msgstr "Žádné další systémová upozornění."
|
||||
|
||||
#: ../../mod/notifications.php:335 ../../mod/notify.php:65
|
||||
#: ../../mod/notifications.php:336 ../../mod/notify.php:65
|
||||
msgid "System Notifications"
|
||||
msgstr "Systémová upozornění"
|
||||
|
||||
#: ../../mod/notifications.php:426
|
||||
#: ../../mod/notifications.php:427
|
||||
msgid "No more personal notifications."
|
||||
msgstr "Žádné další osobní upozornění."
|
||||
|
||||
#: ../../mod/notifications.php:430
|
||||
#: ../../mod/notifications.php:431
|
||||
msgid "Personal Notifications"
|
||||
msgstr "Osobní upozornění"
|
||||
|
||||
#: ../../mod/notifications.php:507
|
||||
#: ../../mod/notifications.php:508
|
||||
msgid "No more home notifications."
|
||||
msgstr "Žádné další domácí upozornění."
|
||||
|
||||
#: ../../mod/notifications.php:511
|
||||
#: ../../mod/notifications.php:512
|
||||
msgid "Home Notifications"
|
||||
msgstr "Domácí upozornění"
|
||||
|
||||
|
|
@ -1845,12 +1875,12 @@ msgid "View all contacts"
|
|||
msgstr "Zobrazit všechny kontakty"
|
||||
|
||||
#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
|
||||
#: ../../mod/admin.php:701
|
||||
#: ../../mod/admin.php:737
|
||||
msgid "Unblock"
|
||||
msgstr "Odblokovat"
|
||||
|
||||
#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
|
||||
#: ../../mod/admin.php:700
|
||||
#: ../../mod/admin.php:736
|
||||
msgid "Block"
|
||||
msgstr "Blokovat"
|
||||
|
||||
|
|
@ -1947,7 +1977,7 @@ msgstr "Poslední aktualizace:"
|
|||
msgid "Update public posts"
|
||||
msgstr "Aktualizovat veřejné příspěvky"
|
||||
|
||||
#: ../../mod/contacts.php:375 ../../mod/admin.php:1173
|
||||
#: ../../mod/contacts.php:375 ../../mod/admin.php:1209
|
||||
msgid "Update now"
|
||||
msgstr "Aktualizovat"
|
||||
|
||||
|
|
@ -1976,7 +2006,7 @@ msgstr "Doporučení"
|
|||
msgid "Suggest potential friends"
|
||||
msgstr "Navrhnout potenciální přátele"
|
||||
|
||||
#: ../../mod/contacts.php:444 ../../mod/group.php:191
|
||||
#: ../../mod/contacts.php:444 ../../mod/group.php:194
|
||||
msgid "All Contacts"
|
||||
msgstr "Všechny kontakty"
|
||||
|
||||
|
|
@ -2040,8 +2070,8 @@ msgstr "jste fanouškem"
|
|||
msgid "Edit contact"
|
||||
msgstr "Editovat kontakt"
|
||||
|
||||
#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89
|
||||
#: ../../include/nav.php:142
|
||||
#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:90
|
||||
#: ../../include/nav.php:144
|
||||
msgid "Contacts"
|
||||
msgstr "Kontakty"
|
||||
|
||||
|
|
@ -2077,10 +2107,10 @@ msgstr "Na %s bylo zažádáno o resetování hesla"
|
|||
#: ../../mod/register.php:91 ../../mod/register.php:145
|
||||
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
|
||||
#: ../../addon/facebook/facebook.php:702
|
||||
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:777
|
||||
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:805
|
||||
#: ../../addon/public_server/public_server.php:62
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365
|
||||
#: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3375
|
||||
#: ../../boot.php:852 ../../addon.old/facebook/facebook.php:702
|
||||
#: ../../addon.old/facebook/facebook.php:1200
|
||||
#: ../../addon.old/fbpost/fbpost.php:661
|
||||
#: ../../addon.old/public_server/public_server.php:62
|
||||
|
|
@ -2094,7 +2124,7 @@ msgid ""
|
|||
"Password reset failed."
|
||||
msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."
|
||||
|
||||
#: ../../mod/lostpass.php:83 ../../boot.php:963
|
||||
#: ../../mod/lostpass.php:83 ../../boot.php:990
|
||||
msgid "Password Reset"
|
||||
msgstr "Obnovení hesla"
|
||||
|
||||
|
|
@ -2146,69 +2176,69 @@ msgstr "Další funkčnosti"
|
|||
msgid "Missing some important data!"
|
||||
msgstr "Chybí některé důležité údaje!"
|
||||
|
||||
#: ../../mod/settings.php:121 ../../mod/settings.php:585
|
||||
#: ../../mod/settings.php:121 ../../mod/settings.php:586
|
||||
msgid "Update"
|
||||
msgstr "Aktualizace"
|
||||
|
||||
#: ../../mod/settings.php:226
|
||||
#: ../../mod/settings.php:227
|
||||
msgid "Failed to connect with email account using the settings provided."
|
||||
msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."
|
||||
|
||||
#: ../../mod/settings.php:231
|
||||
#: ../../mod/settings.php:232
|
||||
msgid "Email settings updated."
|
||||
msgstr "Nastavení e-mailu aktualizována."
|
||||
|
||||
#: ../../mod/settings.php:246
|
||||
#: ../../mod/settings.php:247
|
||||
msgid "Features updated"
|
||||
msgstr "Aktualizované funkčnosti"
|
||||
|
||||
#: ../../mod/settings.php:306
|
||||
#: ../../mod/settings.php:307
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr "Hesla se neshodují. Heslo nebylo změněno."
|
||||
|
||||
#: ../../mod/settings.php:311
|
||||
#: ../../mod/settings.php:312
|
||||
msgid "Empty passwords are not allowed. Password unchanged."
|
||||
msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno."
|
||||
|
||||
#: ../../mod/settings.php:322
|
||||
#: ../../mod/settings.php:323
|
||||
msgid "Password changed."
|
||||
msgstr "Heslo bylo změněno."
|
||||
|
||||
#: ../../mod/settings.php:324
|
||||
#: ../../mod/settings.php:325
|
||||
msgid "Password update failed. Please try again."
|
||||
msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."
|
||||
|
||||
#: ../../mod/settings.php:389
|
||||
#: ../../mod/settings.php:390
|
||||
msgid " Please use a shorter name."
|
||||
msgstr "Prosím použijte kratší jméno."
|
||||
|
||||
#: ../../mod/settings.php:391
|
||||
#: ../../mod/settings.php:392
|
||||
msgid " Name too short."
|
||||
msgstr "Jméno je příliš krátké."
|
||||
|
||||
#: ../../mod/settings.php:397
|
||||
#: ../../mod/settings.php:398
|
||||
msgid " Not valid email."
|
||||
msgstr "Neplatný e-mail."
|
||||
|
||||
#: ../../mod/settings.php:399
|
||||
#: ../../mod/settings.php:400
|
||||
msgid " Cannot change to that email."
|
||||
msgstr "Nelze provést změnu na tento e-mail."
|
||||
|
||||
#: ../../mod/settings.php:453
|
||||
#: ../../mod/settings.php:454
|
||||
msgid "Private forum has no privacy permissions. Using default privacy group."
|
||||
msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina."
|
||||
|
||||
#: ../../mod/settings.php:457
|
||||
#: ../../mod/settings.php:458
|
||||
msgid "Private forum has no privacy permissions and no default privacy group."
|
||||
msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu."
|
||||
|
||||
#: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495
|
||||
#: ../../mod/settings.php:488 ../../addon/facebook/facebook.php:495
|
||||
#: ../../addon/fbpost/fbpost.php:151
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:204
|
||||
#: ../../addon/remote_permissions/remote_permissions.php:205
|
||||
#: ../../addon/impressum/impressum.php:78
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:80
|
||||
#: ../../addon/altpager/altpager.php:107 ../../addon/mathjax/mathjax.php:66
|
||||
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:501
|
||||
#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:504
|
||||
#: ../../addon.old/facebook/facebook.php:495
|
||||
#: ../../addon.old/fbpost/fbpost.php:144
|
||||
#: ../../addon.old/impressum/impressum.php:78
|
||||
|
|
@ -2218,69 +2248,69 @@ msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní
|
|||
msgid "Settings updated."
|
||||
msgstr "Nastavení aktualizováno."
|
||||
|
||||
#: ../../mod/settings.php:558 ../../mod/settings.php:584
|
||||
#: ../../mod/settings.php:620
|
||||
#: ../../mod/settings.php:559 ../../mod/settings.php:585
|
||||
#: ../../mod/settings.php:621
|
||||
msgid "Add application"
|
||||
msgstr "Přidat aplikaci"
|
||||
|
||||
#: ../../mod/settings.php:562 ../../mod/settings.php:588
|
||||
#: ../../addon/statusnet/statusnet.php:694
|
||||
#: ../../mod/settings.php:563 ../../mod/settings.php:589
|
||||
#: ../../addon/statusnet/statusnet.php:697
|
||||
#: ../../addon.old/statusnet/statusnet.php:570
|
||||
msgid "Consumer Key"
|
||||
msgstr "Consumer Key"
|
||||
|
||||
#: ../../mod/settings.php:563 ../../mod/settings.php:589
|
||||
#: ../../addon/statusnet/statusnet.php:693
|
||||
#: ../../mod/settings.php:564 ../../mod/settings.php:590
|
||||
#: ../../addon/statusnet/statusnet.php:696
|
||||
#: ../../addon.old/statusnet/statusnet.php:569
|
||||
msgid "Consumer Secret"
|
||||
msgstr "Consumer Secret"
|
||||
|
||||
#: ../../mod/settings.php:564 ../../mod/settings.php:590
|
||||
#: ../../mod/settings.php:565 ../../mod/settings.php:591
|
||||
msgid "Redirect"
|
||||
msgstr "Přesměrování"
|
||||
|
||||
#: ../../mod/settings.php:565 ../../mod/settings.php:591
|
||||
#: ../../mod/settings.php:566 ../../mod/settings.php:592
|
||||
msgid "Icon url"
|
||||
msgstr "URL ikony"
|
||||
|
||||
#: ../../mod/settings.php:576
|
||||
#: ../../mod/settings.php:577
|
||||
msgid "You can't edit this application."
|
||||
msgstr "Nemůžete editovat tuto aplikaci."
|
||||
|
||||
#: ../../mod/settings.php:619
|
||||
#: ../../mod/settings.php:620
|
||||
msgid "Connected Apps"
|
||||
msgstr "Připojené aplikace"
|
||||
|
||||
#: ../../mod/settings.php:623
|
||||
#: ../../mod/settings.php:624
|
||||
msgid "Client key starts with"
|
||||
msgstr "Klienský klíč začíná"
|
||||
|
||||
#: ../../mod/settings.php:624
|
||||
#: ../../mod/settings.php:625
|
||||
msgid "No name"
|
||||
msgstr "Bez názvu"
|
||||
|
||||
#: ../../mod/settings.php:625
|
||||
#: ../../mod/settings.php:626
|
||||
msgid "Remove authorization"
|
||||
msgstr "Odstranit oprávnění"
|
||||
|
||||
#: ../../mod/settings.php:637
|
||||
#: ../../mod/settings.php:638
|
||||
msgid "No Plugin settings configured"
|
||||
msgstr "Žádný doplněk není nastaven"
|
||||
|
||||
#: ../../mod/settings.php:645 ../../addon/widgets/widgets.php:123
|
||||
#: ../../mod/settings.php:646 ../../addon/widgets/widgets.php:124
|
||||
#: ../../addon.old/widgets/widgets.php:123
|
||||
msgid "Plugin Settings"
|
||||
msgstr "Nastavení doplňku"
|
||||
|
||||
#: ../../mod/settings.php:659
|
||||
#: ../../mod/settings.php:660
|
||||
msgid "Off"
|
||||
msgstr "Vypnuto"
|
||||
|
||||
#: ../../mod/settings.php:659
|
||||
#: ../../mod/settings.php:660
|
||||
msgid "On"
|
||||
msgstr "Zapnuto"
|
||||
|
||||
#: ../../mod/settings.php:667
|
||||
#: ../../mod/settings.php:668
|
||||
msgid "Additional Features"
|
||||
msgstr "Další Funkčnosti"
|
||||
|
||||
|
|
@ -2305,369 +2335,369 @@ msgstr "StatusNet"
|
|||
msgid "Email access is disabled on this site."
|
||||
msgstr "Přístup k elektronické poště je na tomto serveru zakázán."
|
||||
|
||||
#: ../../mod/settings.php:720
|
||||
#: ../../mod/settings.php:721
|
||||
msgid "Connector Settings"
|
||||
msgstr "Nastavení konektoru"
|
||||
|
||||
#: ../../mod/settings.php:725
|
||||
#: ../../mod/settings.php:726
|
||||
msgid "Email/Mailbox Setup"
|
||||
msgstr "Nastavení e-mailu"
|
||||
|
||||
#: ../../mod/settings.php:726
|
||||
#: ../../mod/settings.php:727
|
||||
msgid ""
|
||||
"If you wish to communicate with email contacts using this service "
|
||||
"(optional), please specify how to connect to your mailbox."
|
||||
msgstr "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."
|
||||
|
||||
#: ../../mod/settings.php:727
|
||||
#: ../../mod/settings.php:728
|
||||
msgid "Last successful email check:"
|
||||
msgstr "Poslední úspěšná kontrola e-mailu:"
|
||||
|
||||
#: ../../mod/settings.php:729
|
||||
#: ../../mod/settings.php:730
|
||||
msgid "IMAP server name:"
|
||||
msgstr "jméno IMAP serveru:"
|
||||
|
||||
#: ../../mod/settings.php:730
|
||||
#: ../../mod/settings.php:731
|
||||
msgid "IMAP port:"
|
||||
msgstr "IMAP port:"
|
||||
|
||||
#: ../../mod/settings.php:731
|
||||
#: ../../mod/settings.php:732
|
||||
msgid "Security:"
|
||||
msgstr "Zabezpečení:"
|
||||
|
||||
#: ../../mod/settings.php:731 ../../mod/settings.php:736
|
||||
#: ../../mod/settings.php:732 ../../mod/settings.php:737
|
||||
#: ../../addon/fbpost/fbpost.php:247 ../../addon/fbpost/fbpost.php:249
|
||||
#: ../../addon/dav/common/wdcal_edit.inc.php:191
|
||||
#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
|
||||
msgid "None"
|
||||
msgstr "Žádný"
|
||||
|
||||
#: ../../mod/settings.php:732
|
||||
#: ../../mod/settings.php:733
|
||||
msgid "Email login name:"
|
||||
msgstr "přihlašovací jméno k e-mailu:"
|
||||
|
||||
#: ../../mod/settings.php:733
|
||||
#: ../../mod/settings.php:734
|
||||
msgid "Email password:"
|
||||
msgstr "heslo k Vašemu e-mailu:"
|
||||
|
||||
#: ../../mod/settings.php:734
|
||||
#: ../../mod/settings.php:735
|
||||
msgid "Reply-to address:"
|
||||
msgstr "Odpovědět na adresu:"
|
||||
|
||||
#: ../../mod/settings.php:735
|
||||
#: ../../mod/settings.php:736
|
||||
msgid "Send public posts to all email contacts:"
|
||||
msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:"
|
||||
|
||||
#: ../../mod/settings.php:736
|
||||
#: ../../mod/settings.php:737
|
||||
msgid "Action after import:"
|
||||
msgstr "Akce po importu:"
|
||||
|
||||
#: ../../mod/settings.php:736
|
||||
#: ../../mod/settings.php:737
|
||||
msgid "Mark as seen"
|
||||
msgstr "Označit jako přečtené"
|
||||
|
||||
#: ../../mod/settings.php:736
|
||||
#: ../../mod/settings.php:737
|
||||
msgid "Move to folder"
|
||||
msgstr "Přesunout do složky"
|
||||
|
||||
#: ../../mod/settings.php:737
|
||||
#: ../../mod/settings.php:738
|
||||
msgid "Move to folder:"
|
||||
msgstr "Přesunout do složky:"
|
||||
|
||||
#: ../../mod/settings.php:768 ../../mod/admin.php:404
|
||||
#: ../../mod/settings.php:769 ../../mod/admin.php:420
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "žádné speciální téma pro mobilní zařízení"
|
||||
|
||||
#: ../../mod/settings.php:808
|
||||
#: ../../mod/settings.php:809
|
||||
msgid "Display Settings"
|
||||
msgstr "Nastavení Zobrazení"
|
||||
|
||||
#: ../../mod/settings.php:814 ../../mod/settings.php:825
|
||||
#: ../../mod/settings.php:815 ../../mod/settings.php:826
|
||||
msgid "Display Theme:"
|
||||
msgstr "Vybrat grafickou šablonu:"
|
||||
|
||||
#: ../../mod/settings.php:815
|
||||
#: ../../mod/settings.php:816
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Téma pro mobilní zařízení:"
|
||||
|
||||
#: ../../mod/settings.php:816
|
||||
#: ../../mod/settings.php:817
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Aktualizovat prohlížeč každých xx sekund"
|
||||
|
||||
#: ../../mod/settings.php:816
|
||||
#: ../../mod/settings.php:817
|
||||
msgid "Minimum of 10 seconds, no maximum"
|
||||
msgstr "Minimum 10 sekund, žádné maximum."
|
||||
|
||||
#: ../../mod/settings.php:817
|
||||
#: ../../mod/settings.php:818
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Počet položek zobrazených na stránce:"
|
||||
|
||||
#: ../../mod/settings.php:817
|
||||
#: ../../mod/settings.php:818
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximum 100 položek"
|
||||
|
||||
#: ../../mod/settings.php:818
|
||||
#: ../../mod/settings.php:819
|
||||
msgid "Don't show emoticons"
|
||||
msgstr "Nezobrazovat emotikony"
|
||||
|
||||
#: ../../mod/settings.php:894
|
||||
#: ../../mod/settings.php:895
|
||||
msgid "Normal Account Page"
|
||||
msgstr "Normální stránka účtu"
|
||||
|
||||
#: ../../mod/settings.php:895
|
||||
#: ../../mod/settings.php:896
|
||||
msgid "This account is a normal personal profile"
|
||||
msgstr "Tento účet je běžný osobní profil"
|
||||
|
||||
#: ../../mod/settings.php:898
|
||||
#: ../../mod/settings.php:899
|
||||
msgid "Soapbox Page"
|
||||
msgstr "Stránka \"Soapbox\""
|
||||
|
||||
#: ../../mod/settings.php:899
|
||||
#: ../../mod/settings.php:900
|
||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||
msgstr "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení"
|
||||
|
||||
#: ../../mod/settings.php:902
|
||||
#: ../../mod/settings.php:903
|
||||
msgid "Community Forum/Celebrity Account"
|
||||
msgstr "Komunitní fórum/ účet celebrity"
|
||||
|
||||
#: ../../mod/settings.php:903
|
||||
#: ../../mod/settings.php:904
|
||||
msgid ""
|
||||
"Automatically approve all connection/friend requests as read-write fans"
|
||||
msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení."
|
||||
|
||||
#: ../../mod/settings.php:906
|
||||
#: ../../mod/settings.php:907
|
||||
msgid "Automatic Friend Page"
|
||||
msgstr "Automatická stránka přítele"
|
||||
|
||||
#: ../../mod/settings.php:907
|
||||
#: ../../mod/settings.php:908
|
||||
msgid "Automatically approve all connection/friend requests as friends"
|
||||
msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele"
|
||||
|
||||
#: ../../mod/settings.php:910
|
||||
#: ../../mod/settings.php:911
|
||||
msgid "Private Forum [Experimental]"
|
||||
msgstr "Soukromé fórum [Experimentální]"
|
||||
|
||||
#: ../../mod/settings.php:911
|
||||
#: ../../mod/settings.php:912
|
||||
msgid "Private forum - approved members only"
|
||||
msgstr "Soukromé fórum - pouze pro schválené členy"
|
||||
|
||||
#: ../../mod/settings.php:923
|
||||
#: ../../mod/settings.php:924
|
||||
msgid "OpenID:"
|
||||
msgstr "OpenID:"
|
||||
|
||||
#: ../../mod/settings.php:923
|
||||
#: ../../mod/settings.php:924
|
||||
msgid "(Optional) Allow this OpenID to login to this account."
|
||||
msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."
|
||||
|
||||
#: ../../mod/settings.php:933
|
||||
#: ../../mod/settings.php:934
|
||||
msgid "Publish your default profile in your local site directory?"
|
||||
msgstr "Publikovat Váš výchozí profil v místním adresáři webu?"
|
||||
|
||||
#: ../../mod/settings.php:939
|
||||
#: ../../mod/settings.php:940
|
||||
msgid "Publish your default profile in the global social directory?"
|
||||
msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?"
|
||||
|
||||
#: ../../mod/settings.php:947
|
||||
#: ../../mod/settings.php:948
|
||||
msgid "Hide your contact/friend list from viewers of your default profile?"
|
||||
msgstr "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?"
|
||||
|
||||
#: ../../mod/settings.php:951
|
||||
#: ../../mod/settings.php:952
|
||||
msgid "Hide your profile details from unknown viewers?"
|
||||
msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?"
|
||||
|
||||
#: ../../mod/settings.php:956
|
||||
#: ../../mod/settings.php:957
|
||||
msgid "Allow friends to post to your profile page?"
|
||||
msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?"
|
||||
|
||||
#: ../../mod/settings.php:962
|
||||
#: ../../mod/settings.php:963
|
||||
msgid "Allow friends to tag your posts?"
|
||||
msgstr "Povolit přátelům označovat Vaše příspěvky?"
|
||||
|
||||
#: ../../mod/settings.php:968
|
||||
#: ../../mod/settings.php:969
|
||||
msgid "Allow us to suggest you as a potential friend to new members?"
|
||||
msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?"
|
||||
|
||||
#: ../../mod/settings.php:974
|
||||
#: ../../mod/settings.php:975
|
||||
msgid "Permit unknown people to send you private mail?"
|
||||
msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?"
|
||||
|
||||
#: ../../mod/settings.php:982
|
||||
#: ../../mod/settings.php:983
|
||||
msgid "Profile is <strong>not published</strong>."
|
||||
msgstr "Profil <strong>není zveřejněn</strong>."
|
||||
|
||||
#: ../../mod/settings.php:985 ../../mod/profile_photo.php:248
|
||||
#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
|
||||
msgid "or"
|
||||
msgstr "nebo"
|
||||
|
||||
#: ../../mod/settings.php:990
|
||||
#: ../../mod/settings.php:991
|
||||
msgid "Your Identity Address is"
|
||||
msgstr "Vaše adresa identity je"
|
||||
|
||||
#: ../../mod/settings.php:1001
|
||||
#: ../../mod/settings.php:1002
|
||||
msgid "Automatically expire posts after this many days:"
|
||||
msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:"
|
||||
|
||||
#: ../../mod/settings.php:1001
|
||||
#: ../../mod/settings.php:1002
|
||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||
msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"
|
||||
|
||||
#: ../../mod/settings.php:1002
|
||||
#: ../../mod/settings.php:1003
|
||||
msgid "Advanced expiration settings"
|
||||
msgstr "Pokročilé nastavení expirací"
|
||||
|
||||
#: ../../mod/settings.php:1003
|
||||
#: ../../mod/settings.php:1004
|
||||
msgid "Advanced Expiration"
|
||||
msgstr "Nastavení expirací"
|
||||
|
||||
#: ../../mod/settings.php:1004
|
||||
#: ../../mod/settings.php:1005
|
||||
msgid "Expire posts:"
|
||||
msgstr "Expirovat příspěvky:"
|
||||
|
||||
#: ../../mod/settings.php:1005
|
||||
#: ../../mod/settings.php:1006
|
||||
msgid "Expire personal notes:"
|
||||
msgstr "Expirovat osobní poznámky:"
|
||||
|
||||
#: ../../mod/settings.php:1006
|
||||
#: ../../mod/settings.php:1007
|
||||
msgid "Expire starred posts:"
|
||||
msgstr "Expirovat příspěvky s hvězdou:"
|
||||
|
||||
#: ../../mod/settings.php:1007
|
||||
#: ../../mod/settings.php:1008
|
||||
msgid "Expire photos:"
|
||||
msgstr "Expirovat fotografie:"
|
||||
|
||||
#: ../../mod/settings.php:1008
|
||||
#: ../../mod/settings.php:1009
|
||||
msgid "Only expire posts by others:"
|
||||
msgstr "Přízpěvky expirovat pouze ostatními:"
|
||||
|
||||
#: ../../mod/settings.php:1015
|
||||
#: ../../mod/settings.php:1016
|
||||
msgid "Account Settings"
|
||||
msgstr "Nastavení účtu"
|
||||
|
||||
#: ../../mod/settings.php:1023
|
||||
#: ../../mod/settings.php:1024
|
||||
msgid "Password Settings"
|
||||
msgstr "Nastavení hesla"
|
||||
|
||||
#: ../../mod/settings.php:1024
|
||||
#: ../../mod/settings.php:1025
|
||||
msgid "New Password:"
|
||||
msgstr "Nové heslo:"
|
||||
|
||||
#: ../../mod/settings.php:1025
|
||||
#: ../../mod/settings.php:1026
|
||||
msgid "Confirm:"
|
||||
msgstr "Potvrďte:"
|
||||
|
||||
#: ../../mod/settings.php:1025
|
||||
#: ../../mod/settings.php:1026
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte"
|
||||
|
||||
#: ../../mod/settings.php:1029
|
||||
#: ../../mod/settings.php:1030
|
||||
msgid "Basic Settings"
|
||||
msgstr "Základní nastavení"
|
||||
|
||||
#: ../../mod/settings.php:1030 ../../include/profile_advanced.php:15
|
||||
#: ../../mod/settings.php:1031 ../../include/profile_advanced.php:15
|
||||
msgid "Full Name:"
|
||||
msgstr "Celé jméno:"
|
||||
|
||||
#: ../../mod/settings.php:1031
|
||||
#: ../../mod/settings.php:1032
|
||||
msgid "Email Address:"
|
||||
msgstr "E-mailová adresa:"
|
||||
|
||||
#: ../../mod/settings.php:1032
|
||||
#: ../../mod/settings.php:1033
|
||||
msgid "Your Timezone:"
|
||||
msgstr "Vaše časové pásmo:"
|
||||
|
||||
#: ../../mod/settings.php:1033
|
||||
#: ../../mod/settings.php:1034
|
||||
msgid "Default Post Location:"
|
||||
msgstr "Výchozí umístění příspěvků:"
|
||||
|
||||
#: ../../mod/settings.php:1034
|
||||
#: ../../mod/settings.php:1035
|
||||
msgid "Use Browser Location:"
|
||||
msgstr "Používat umístění dle prohlížeče:"
|
||||
|
||||
#: ../../mod/settings.php:1037
|
||||
#: ../../mod/settings.php:1038
|
||||
msgid "Security and Privacy Settings"
|
||||
msgstr "Nastavení zabezpečení a soukromí"
|
||||
|
||||
#: ../../mod/settings.php:1039
|
||||
#: ../../mod/settings.php:1040
|
||||
msgid "Maximum Friend Requests/Day:"
|
||||
msgstr "Maximální počet žádostí o přátelství za den:"
|
||||
|
||||
#: ../../mod/settings.php:1039 ../../mod/settings.php:1058
|
||||
#: ../../mod/settings.php:1040 ../../mod/settings.php:1059
|
||||
msgid "(to prevent spam abuse)"
|
||||
msgstr "(Aby se zabránilo spamu)"
|
||||
|
||||
#: ../../mod/settings.php:1040
|
||||
#: ../../mod/settings.php:1041
|
||||
msgid "Default Post Permissions"
|
||||
msgstr "Výchozí oprávnění pro příspěvek"
|
||||
|
||||
#: ../../mod/settings.php:1041
|
||||
#: ../../mod/settings.php:1042
|
||||
msgid "(click to open/close)"
|
||||
msgstr "(Klikněte pro otevření/zavření)"
|
||||
|
||||
#: ../../mod/settings.php:1058
|
||||
#: ../../mod/settings.php:1059
|
||||
msgid "Maximum private messages per day from unknown people:"
|
||||
msgstr "Maximum soukromých zpráv od neznámých lidí:"
|
||||
|
||||
#: ../../mod/settings.php:1061
|
||||
#: ../../mod/settings.php:1062
|
||||
msgid "Notification Settings"
|
||||
msgstr "Nastavení notifikací"
|
||||
|
||||
#: ../../mod/settings.php:1062
|
||||
#: ../../mod/settings.php:1063
|
||||
msgid "By default post a status message when:"
|
||||
msgstr "Defaultně posílat statusové zprávy když:"
|
||||
|
||||
#: ../../mod/settings.php:1063
|
||||
#: ../../mod/settings.php:1064
|
||||
msgid "accepting a friend request"
|
||||
msgstr "akceptuji požadavek na přátelství"
|
||||
|
||||
#: ../../mod/settings.php:1064
|
||||
#: ../../mod/settings.php:1065
|
||||
msgid "joining a forum/community"
|
||||
msgstr "připojující se k fóru/komunitě"
|
||||
|
||||
#: ../../mod/settings.php:1065
|
||||
#: ../../mod/settings.php:1066
|
||||
msgid "making an <em>interesting</em> profile change"
|
||||
msgstr "provedení <em>zajímavé</em> profilové změny"
|
||||
|
||||
#: ../../mod/settings.php:1066
|
||||
#: ../../mod/settings.php:1067
|
||||
msgid "Send a notification email when:"
|
||||
msgstr "Poslat notifikaci e-mailem, když"
|
||||
|
||||
#: ../../mod/settings.php:1067
|
||||
#: ../../mod/settings.php:1068
|
||||
msgid "You receive an introduction"
|
||||
msgstr "obdržíte žádost o propojení"
|
||||
|
||||
#: ../../mod/settings.php:1068
|
||||
#: ../../mod/settings.php:1069
|
||||
msgid "Your introductions are confirmed"
|
||||
msgstr "Vaše žádosti jsou potvrzeny"
|
||||
|
||||
#: ../../mod/settings.php:1069
|
||||
#: ../../mod/settings.php:1070
|
||||
msgid "Someone writes on your profile wall"
|
||||
msgstr "někdo Vám napíše na Vaši profilovou stránku"
|
||||
|
||||
#: ../../mod/settings.php:1070
|
||||
#: ../../mod/settings.php:1071
|
||||
msgid "Someone writes a followup comment"
|
||||
msgstr "někdo Vám napíše následný komentář"
|
||||
|
||||
#: ../../mod/settings.php:1071
|
||||
#: ../../mod/settings.php:1072
|
||||
msgid "You receive a private message"
|
||||
msgstr "obdržíte soukromou zprávu"
|
||||
|
||||
#: ../../mod/settings.php:1072
|
||||
#: ../../mod/settings.php:1073
|
||||
msgid "You receive a friend suggestion"
|
||||
msgstr "Obdržel jste návrh přátelství"
|
||||
|
||||
#: ../../mod/settings.php:1073
|
||||
#: ../../mod/settings.php:1074
|
||||
msgid "You are tagged in a post"
|
||||
msgstr "Jste označen v příspěvku"
|
||||
|
||||
#: ../../mod/settings.php:1074
|
||||
#: ../../mod/settings.php:1075
|
||||
msgid "You are poked/prodded/etc. in a post"
|
||||
msgstr "Byl Jste šťouchnout v příspěvku"
|
||||
|
||||
#: ../../mod/settings.php:1077
|
||||
#: ../../mod/settings.php:1078
|
||||
msgid "Advanced Account/Page Type Settings"
|
||||
msgstr "Pokročilé nastavení účtu/stránky"
|
||||
|
||||
#: ../../mod/settings.php:1078
|
||||
#: ../../mod/settings.php:1079
|
||||
msgid "Change the behaviour of this account for special situations"
|
||||
msgstr "Změnit chování tohoto účtu ve speciálních situacích"
|
||||
|
||||
|
|
@ -2771,16 +2801,16 @@ msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."
|
|||
msgid "Invalid contact."
|
||||
msgstr "Neplatný kontakt."
|
||||
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1755
|
||||
#: ../../mod/notes.php:44 ../../boot.php:1798
|
||||
msgid "Personal Notes"
|
||||
msgstr "Osobní poznámky"
|
||||
|
||||
#: ../../mod/notes.php:63 ../../mod/filer.php:30
|
||||
#: ../../mod/notes.php:63 ../../mod/filer.php:31
|
||||
#: ../../addon/facebook/facebook.php:770
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:281
|
||||
#: ../../addon/privacy_image_cache/privacy_image_cache.php:346
|
||||
#: ../../addon/fbpost/fbpost.php:314
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:441
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:742
|
||||
#: ../../addon.old/facebook/facebook.php:770
|
||||
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
|
||||
#: ../../addon.old/fbpost/fbpost.php:267
|
||||
|
|
@ -2804,11 +2834,21 @@ msgid "Move account"
|
|||
msgstr "Přesunout účet"
|
||||
|
||||
#: ../../mod/uimport.php:67
|
||||
msgid "You can import an account from another Friendica server."
|
||||
msgstr "Můžete importovat účet z jiného Friendica serveru."
|
||||
|
||||
#: ../../mod/uimport.php:68
|
||||
msgid ""
|
||||
"You can import an account from another Friendica server. <br>\r\n"
|
||||
" You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.<br>\r\n"
|
||||
" <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"
|
||||
msgstr "Je možné importovat účet z jiného Friendica serveru. <br>\nPotřebujete exportovat Váš účet ze starého serveru a importovat ho zde. My následně znovu vytvoříme Váš účet zde se všemi Vašimi kontakty. Také se pokusíme informovat všechny Vaše přátele o tom, že jste se sem přesunuli.<br>\n<b>Tato funkčnost je experimentální. Nemůžeme importovat kontakty ze sítě OStatus (statusnet/identi.ca) nebo z diaspory."
|
||||
"You need to export your account from the old server and upload it here. We "
|
||||
"will recreate your old account here with all your contacts. We will try also"
|
||||
" to inform your friends that you moved here."
|
||||
msgstr "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."
|
||||
|
||||
#: ../../mod/uimport.php:69
|
||||
msgid ""
|
||||
"This feature is experimental. We can't import contacts from the OStatus "
|
||||
"network (statusnet/identi.ca) or from Diaspora"
|
||||
msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"
|
||||
|
||||
#: ../../mod/uimport.php:70
|
||||
msgid "Account file"
|
||||
|
|
@ -2851,7 +2891,8 @@ msgstr "Žádný příjemce."
|
|||
|
||||
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
|
||||
#: ../../mod/message.php:249 ../../mod/message.php:257
|
||||
#: ../../include/conversation.php:905 ../../include/conversation.php:923
|
||||
#: ../../mod/message.php:429 ../../mod/message.php:437
|
||||
#: ../../include/conversation.php:941 ../../include/conversation.php:959
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr "Zadejte prosím URL odkaz:"
|
||||
|
||||
|
|
@ -2867,17 +2908,17 @@ msgid ""
|
|||
msgstr "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."
|
||||
|
||||
#: ../../mod/wallmessage.php:140 ../../mod/message.php:286
|
||||
#: ../../mod/message.php:476
|
||||
#: ../../mod/message.php:516
|
||||
msgid "To:"
|
||||
msgstr "Adresát:"
|
||||
|
||||
#: ../../mod/wallmessage.php:141 ../../mod/message.php:291
|
||||
#: ../../mod/message.php:478
|
||||
#: ../../mod/message.php:518
|
||||
msgid "Subject:"
|
||||
msgstr "Předmět:"
|
||||
|
||||
#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
|
||||
#: ../../mod/message.php:481 ../../mod/invite.php:113
|
||||
#: ../../mod/message.php:521 ../../mod/invite.php:113
|
||||
msgid "Your message:"
|
||||
msgstr "Vaše zpráva:"
|
||||
|
||||
|
|
@ -2932,9 +2973,9 @@ msgid ""
|
|||
msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."
|
||||
|
||||
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
|
||||
#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
|
||||
#: ../../view/theme/diabook/theme.php:89 ../../include/profile_advanced.php:7
|
||||
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
|
||||
#: ../../boot.php:1731
|
||||
#: ../../boot.php:1774
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
|
|
@ -3097,7 +3138,7 @@ msgstr "Skupina vytvořena."
|
|||
msgid "Could not create group."
|
||||
msgstr "Nelze vytvořit skupinu."
|
||||
|
||||
#: ../../mod/group.php:47 ../../mod/group.php:137
|
||||
#: ../../mod/group.php:47 ../../mod/group.php:140
|
||||
msgid "Group not found."
|
||||
msgstr "Skupina nenalezena."
|
||||
|
||||
|
|
@ -3109,31 +3150,31 @@ msgstr "Název skupiny byl změněn."
|
|||
msgid "Permission denied"
|
||||
msgstr "Nedostatečné oprávnění"
|
||||
|
||||
#: ../../mod/group.php:90
|
||||
#: ../../mod/group.php:93
|
||||
msgid "Create a group of contacts/friends."
|
||||
msgstr "Vytvořit skupinu kontaktů / přátel."
|
||||
|
||||
#: ../../mod/group.php:91 ../../mod/group.php:177
|
||||
#: ../../mod/group.php:94 ../../mod/group.php:180
|
||||
msgid "Group Name: "
|
||||
msgstr "Název skupiny: "
|
||||
|
||||
#: ../../mod/group.php:110
|
||||
#: ../../mod/group.php:113
|
||||
msgid "Group removed."
|
||||
msgstr "Skupina odstraněna. "
|
||||
|
||||
#: ../../mod/group.php:112
|
||||
#: ../../mod/group.php:115
|
||||
msgid "Unable to remove group."
|
||||
msgstr "Nelze odstranit skupinu."
|
||||
|
||||
#: ../../mod/group.php:176
|
||||
#: ../../mod/group.php:179
|
||||
msgid "Group Editor"
|
||||
msgstr "Editor skupin"
|
||||
|
||||
#: ../../mod/group.php:189
|
||||
#: ../../mod/group.php:192
|
||||
msgid "Members"
|
||||
msgstr "Členové"
|
||||
|
||||
#: ../../mod/group.php:221 ../../mod/profperm.php:105
|
||||
#: ../../mod/group.php:223 ../../mod/profperm.php:105
|
||||
msgid "Click on a contact to add or remove."
|
||||
msgstr "Klikněte na kontakt pro přidání nebo odebrání"
|
||||
|
||||
|
|
@ -3157,7 +3198,7 @@ msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
|
|||
msgid "No contacts."
|
||||
msgstr "Žádné kontakty."
|
||||
|
||||
#: ../../mod/viewcontacts.php:76 ../../include/text.php:625
|
||||
#: ../../mod/viewcontacts.php:76 ../../include/text.php:679
|
||||
msgid "View Contacts"
|
||||
msgstr "Zobrazit kontakty"
|
||||
|
||||
|
|
@ -3208,38 +3249,38 @@ msgstr "Vaše OpenID (nepovinné): "
|
|||
msgid "Include your profile in member directory?"
|
||||
msgstr "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
|
||||
|
||||
#: ../../mod/register.php:256
|
||||
#: ../../mod/register.php:255
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr "Členství na tomto webu je pouze na pozvání."
|
||||
|
||||
#: ../../mod/register.php:257
|
||||
#: ../../mod/register.php:256
|
||||
msgid "Your invitation ID: "
|
||||
msgstr "Vaše pozvání ID:"
|
||||
|
||||
#: ../../mod/register.php:260 ../../mod/admin.php:446
|
||||
#: ../../mod/register.php:259 ../../mod/admin.php:462
|
||||
msgid "Registration"
|
||||
msgstr "Registrace"
|
||||
|
||||
#: ../../mod/register.php:268
|
||||
#: ../../mod/register.php:267
|
||||
msgid "Your Full Name (e.g. Joe Smith): "
|
||||
msgstr "Vaše celé jméno (např. Jan Novák):"
|
||||
|
||||
#: ../../mod/register.php:269
|
||||
#: ../../mod/register.php:268
|
||||
msgid "Your Email Address: "
|
||||
msgstr "Vaše e-mailová adresa:"
|
||||
|
||||
#: ../../mod/register.php:270
|
||||
#: ../../mod/register.php:269
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be "
|
||||
"'<strong>nickname@$sitename</str | ||||