Merge https://github.com/friendica/friendica into pull
This commit is contained in:
commit
84199e6e71
35
boot.php
35
boot.php
|
@ -350,6 +350,8 @@ if(! class_exists('App')) {
|
|||
public $plugins;
|
||||
public $apps = array();
|
||||
public $identities;
|
||||
public $is_mobile;
|
||||
public $is_tablet;
|
||||
|
||||
public $nav_sel;
|
||||
|
||||
|
@ -491,6 +493,14 @@ if(! class_exists('App')) {
|
|||
if($this->pager['start'] < 0)
|
||||
$this->pager['start'] = 0;
|
||||
$this->pager['total'] = 0;
|
||||
|
||||
/**
|
||||
* Detect mobile devices
|
||||
*/
|
||||
|
||||
$mobile_detect = new Mobile_Detect();
|
||||
$this->is_mobile = $mobile_detect->isMobile();
|
||||
$this->is_tablet = $mobile_detect->isTablet();
|
||||
}
|
||||
|
||||
function get_baseurl($ssl = false) {
|
||||
|
@ -1288,14 +1298,14 @@ if(! function_exists('get_birthdays')) {
|
|||
$a = get_app();
|
||||
$o = '';
|
||||
|
||||
if(! local_user())
|
||||
if(! local_user() || $a->is_mobile || $a->is_tablet)
|
||||
return $o;
|
||||
|
||||
$mobile_detect = new Mobile_Detect();
|
||||
$is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
||||
// $mobile_detect = new Mobile_Detect();
|
||||
// $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
||||
|
||||
if($is_mobile)
|
||||
return $o;
|
||||
// if($is_mobile)
|
||||
// return $o;
|
||||
|
||||
$bd_format = t('g A l F d') ; // 8 AM Friday January 18
|
||||
$bd_short = t('F d');
|
||||
|
@ -1373,15 +1383,15 @@ if(! function_exists('get_events')) {
|
|||
|
||||
$a = get_app();
|
||||
|
||||
if(! local_user())
|
||||
if(! local_user() || $a->is_mobile || $a->is_tablet)
|
||||
return $o;
|
||||
|
||||
|
||||
$mobile_detect = new Mobile_Detect();
|
||||
$is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
||||
// $mobile_detect = new Mobile_Detect();
|
||||
// $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
||||
|
||||
if($is_mobile)
|
||||
return $o;
|
||||
// if($is_mobile)
|
||||
// return $o;
|
||||
|
||||
$bd_format = t('g A l F d') ; // 8 AM Friday January 18
|
||||
$bd_short = t('F d');
|
||||
|
@ -1507,8 +1517,9 @@ if(! function_exists('current_theme')) {
|
|||
|
||||
$a = get_app();
|
||||
|
||||
$mobile_detect = new Mobile_Detect();
|
||||
$is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
||||
// $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']) {
|
||||
|
|
|
@ -458,10 +458,10 @@ function probe_url($url, $mode = PROBE_NORMAL) {
|
|||
$poll = 'email ' . random_string();
|
||||
$priority = 0;
|
||||
$x = email_msg_meta($mbox,$msgs[0]);
|
||||
if(stristr($x->from,$orig_url))
|
||||
$adr = imap_rfc822_parse_adrlist($x->from,'');
|
||||
elseif(stristr($x->to,$orig_url))
|
||||
$adr = imap_rfc822_parse_adrlist($x->to,'');
|
||||
if(stristr($x[0]->from,$orig_url))
|
||||
$adr = imap_rfc822_parse_adrlist($x[0]->from,'');
|
||||
elseif(stristr($x[0]->to,$orig_url))
|
||||
$adr = imap_rfc822_parse_adrlist($x[0]->to,'');
|
||||
if(isset($adr)) {
|
||||
foreach($adr as $feadr) {
|
||||
if((strcasecmp($feadr->mailbox,$name) == 0)
|
||||
|
@ -554,6 +554,13 @@ function probe_url($url, $mode = PROBE_NORMAL) {
|
|||
logger('probe_url: scrape_vcard: ' . print_r($vcard,true), LOGGER_DATA);
|
||||
}
|
||||
|
||||
if($diaspora && $addr) {
|
||||
// Diaspora returns the name as the nick. As the nick will never be updated,
|
||||
// let's use the Diaspora nickname (the first part of the handle) as the nick instead
|
||||
$addr_parts = explode('@', $addr);
|
||||
$vcard['nick'] = $addr_parts[0];
|
||||
}
|
||||
|
||||
if($twitter) {
|
||||
logger('twitter: setup');
|
||||
$tid = basename($url);
|
||||
|
|
|
@ -141,6 +141,17 @@ function diaspora_get_contact_by_handle($uid,$handle) {
|
|||
);
|
||||
if($r && count($r))
|
||||
return $r[0];
|
||||
|
||||
$handle_parts = explode("@", $handle);
|
||||
$nurl_sql = '%%://' . $handle_parts[1] . '%%/profile/' . $handle_parts[0];
|
||||
$r = q("SELECT * FROM contact WHERE network = '%s' AND uid = %d AND nurl LIKE '%s' LIMIT 1",
|
||||
dbesc(NETWORK_DFRN),
|
||||
intval($uid),
|
||||
dbesc($nurl_sql)
|
||||
);
|
||||
if($r && count($r))
|
||||
return $r[0];
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -1949,7 +1960,7 @@ function diaspora_signed_retraction($importer,$xml,$msg) {
|
|||
|
||||
$contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle);
|
||||
if(! $contact) {
|
||||
logger('diaspora_signed_retraction: no contact');
|
||||
logger('diaspora_signed_retraction: no contact ' . $diaspora_handle . ' for ' . $importer['uid']);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -48,8 +48,8 @@ function construct_mailbox_name($mailacct) {
|
|||
|
||||
|
||||
function email_msg_meta($mbox,$uid) {
|
||||
$ret = (($mbox && $uid) ? @imap_fetch_overview($mbox,$uid,FT_UID) : array(array()));
|
||||
return ((count($ret)) ? $ret[0] : array());
|
||||
$ret = (($mbox && $uid) ? @imap_fetch_overview($mbox,$uid,FT_UID) : array(array())); // POSSIBLE CLEANUP --> array(array()) is probably redundant now
|
||||
return ((count($ret)) ? $ret : array());
|
||||
}
|
||||
|
||||
function email_msg_headers($mbox,$uid) {
|
||||
|
|
|
@ -40,7 +40,7 @@ function group_add($uid,$name) {
|
|||
function group_rmv($uid,$name) {
|
||||
$ret = false;
|
||||
if(x($uid) && x($name)) {
|
||||
$r = q("SELECT * FROM `group` WHERE `uid` = %d AND `name` = '%s' LIMIT 1",
|
||||
$r = q("SELECT id FROM `group` WHERE `uid` = %d AND `name` = '%s' LIMIT 1",
|
||||
intval($uid),
|
||||
dbesc($name)
|
||||
);
|
||||
|
@ -49,6 +49,37 @@ function group_rmv($uid,$name) {
|
|||
if(! $group_id)
|
||||
return false;
|
||||
|
||||
// remove group from default posting lists
|
||||
$r = q("SELECT def_gid, allow_gid, deny_gid FROM user WHERE uid = %d LIMIT 1",
|
||||
intval($uid)
|
||||
);
|
||||
if($r) {
|
||||
$user_info = $r[0];
|
||||
$change = false;
|
||||
|
||||
if($user_info['def_gid'] == $group_id) {
|
||||
$user_info['def_gid'] = 0;
|
||||
$change = true;
|
||||
}
|
||||
if(strpos($user_info['allow_gid'], '<' . $group_id . '>') !== false) {
|
||||
$user_info['allow_gid'] = str_replace('<' . $group_id . '>', '', $user_info['allow_gid']);
|
||||
$change = true;
|
||||
}
|
||||
if(strpos($user_info['deny_gid'], '<' . $group_id . '>') !== false) {
|
||||
$user_info['deny_gid'] = str_replace('<' . $group_id . '>', '', $user_info['deny_gid']);
|
||||
$change = true;
|
||||
}
|
||||
|
||||
if($change) {
|
||||
q("UPDATE user SET def_gid = %d, allow_gid = '%s', deny_gid = '%s' WHERE uid = %d",
|
||||
intval($user_info['def_gid']),
|
||||
dbesc($user_info['allow_gid']),
|
||||
dbesc($user_info['deny_gid']),
|
||||
intval($uid)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// remove all members
|
||||
$r = q("DELETE FROM `group_member` WHERE `uid` = %d AND `gid` = %d ",
|
||||
intval($uid),
|
||||
|
@ -103,7 +134,7 @@ function group_add_member($uid,$name,$member,$gid = 0) {
|
|||
if((! $gid) || (! $uid) || (! $member))
|
||||
return false;
|
||||
|
||||
$r = q("SELECT * FROM `group_member` WHERE `uid` = %d AND `id` = %d AND `contact-id` = %d LIMIT 1",
|
||||
$r = q("SELECT * FROM `group_member` WHERE `uid` = %d AND `gid` = %d AND `contact-id` = %d LIMIT 1",
|
||||
intval($uid),
|
||||
intval($gid),
|
||||
intval($member)
|
||||
|
|
|
@ -291,36 +291,17 @@ function onepoll_run($argv, $argc){
|
|||
if(count($msgs)) {
|
||||
logger("Mail: Parsing ".count($msgs)." mails for ".$mailconf[0]['user'], LOGGER_DEBUG);
|
||||
|
||||
foreach($msgs as $msg_uid) {
|
||||
$metas = email_msg_meta($mbox,implode(',',$msgs));
|
||||
$msgs = array_combine($msgs, $metas);
|
||||
foreach($msgs as $msg_uid => $meta) {
|
||||
logger("Mail: Parsing mail ".$msg_uid, LOGGER_DATA);
|
||||
|
||||
$datarray = array();
|
||||
$meta = email_msg_meta($mbox,$msg_uid);
|
||||
$headers = email_msg_headers($mbox,$msg_uid);
|
||||
// $meta = email_msg_meta($mbox,$msg_uid);
|
||||
// $headers = email_msg_headers($mbox,$msg_uid);
|
||||
|
||||
// look for a 'references' header and try and match with a parent item we have locally.
|
||||
|
||||
$raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
|
||||
$datarray['uri'] = msgid2iri(trim($meta->message_id,'<>'));
|
||||
|
||||
if($raw_refs) {
|
||||
$refs_arr = explode(' ', $raw_refs);
|
||||
if(count($refs_arr)) {
|
||||
for($x = 0; $x < count($refs_arr); $x ++)
|
||||
$refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
|
||||
}
|
||||
$qstr = implode(',',$refs_arr);
|
||||
$r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `uri` IN ( $qstr ) AND `uid` = %d LIMIT 1",
|
||||
intval($importer_uid)
|
||||
);
|
||||
if(count($r))
|
||||
$datarray['parent-uri'] = $r[0]['uri'];
|
||||
}
|
||||
|
||||
|
||||
if(! x($datarray,'parent-uri'))
|
||||
$datarray['parent-uri'] = $datarray['uri'];
|
||||
|
||||
// Have we seen it before?
|
||||
$r = q("SELECT * FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
|
||||
intval($importer_uid),
|
||||
|
@ -328,15 +309,16 @@ function onepoll_run($argv, $argc){
|
|||
);
|
||||
|
||||
if(count($r)) {
|
||||
// logger("Mail: Seen before ".$msg_uid);
|
||||
logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user']);
|
||||
if($meta->deleted && ! $r[0]['deleted']) {
|
||||
q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d LIMIT 1",
|
||||
dbesc(datetime_convert()),
|
||||
intval($r[0]['id'])
|
||||
);
|
||||
}
|
||||
switch ($mailconf[0]['action']) {
|
||||
/*switch ($mailconf[0]['action']) {
|
||||
case 0:
|
||||
logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);
|
||||
break;
|
||||
case 1:
|
||||
logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']);
|
||||
|
@ -352,10 +334,38 @@ function onepoll_run($argv, $argc){
|
|||
if ($mailconf[0]['movetofolder'] != "")
|
||||
imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID);
|
||||
break;
|
||||
}
|
||||
}*/
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
// look for a 'references' or an 'in-reply-to' header and try to match with a parent item we have locally.
|
||||
|
||||
// $raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
|
||||
$raw_refs = ((property_exists($meta,'references')) ? str_replace("\t",'',$meta->references) : '');
|
||||
if(! trim($raw_refs))
|
||||
$raw_refs = ((property_exists($meta,'in_reply_to')) ? str_replace("\t",'',$meta->in_reply_to) : '');
|
||||
$raw_refs = trim($raw_refs); // Don't allow a blank reference in $refs_arr
|
||||
|
||||
if($raw_refs) {
|
||||
$refs_arr = explode(' ', $raw_refs);
|
||||
if(count($refs_arr)) {
|
||||
for($x = 0; $x < count($refs_arr); $x ++)
|
||||
$refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
|
||||
}
|
||||
$qstr = implode(',',$refs_arr);
|
||||
$r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `uri` IN ( $qstr ) AND `uid` = %d LIMIT 1",
|
||||
intval($importer_uid)
|
||||
);
|
||||
if(count($r))
|
||||
$datarray['parent-uri'] = $r[0]['parent-uri']; // Set the parent as the top-level item
|
||||
// $datarray['parent-uri'] = $r[0]['uri'];
|
||||
}
|
||||
|
||||
|
||||
if(! x($datarray,'parent-uri'))
|
||||
$datarray['parent-uri'] = $datarray['uri'];
|
||||
|
||||
// Decoding the header
|
||||
$subject = imap_mime_header_decode($meta->subject);
|
||||
$datarray['title'] = "";
|
||||
|
@ -421,6 +431,7 @@ function onepoll_run($argv, $argc){
|
|||
);
|
||||
switch ($mailconf[0]['action']) {
|
||||
case 0:
|
||||
logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);
|
||||
break;
|
||||
case 1:
|
||||
logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']);
|
||||
|
|
|
@ -214,7 +214,7 @@ function permissions_sql($owner_id,$remote_verified = false,$groups = null) {
|
|||
$gs .= '|<' . intval($g) . '>';
|
||||
}
|
||||
|
||||
$sql = sprintf(
|
||||
/*$sql = sprintf(
|
||||
" AND ( allow_cid = '' OR allow_cid REGEXP '<%d>' )
|
||||
AND ( deny_cid = '' OR NOT deny_cid REGEXP '<%d>' )
|
||||
AND ( allow_gid = '' OR allow_gid REGEXP '%s' )
|
||||
|
@ -224,6 +224,16 @@ function permissions_sql($owner_id,$remote_verified = false,$groups = null) {
|
|||
intval($remote_user),
|
||||
dbesc($gs),
|
||||
dbesc($gs)
|
||||
);*/
|
||||
$sql = sprintf(
|
||||
" AND ( NOT (deny_cid REGEXP '<%d>' OR deny_gid REGEXP '%s')
|
||||
AND ( allow_cid REGEXP '<%d>' OR allow_gid REGEXP '%s' OR ( allow_cid = '' AND allow_gid = '') )
|
||||
)
|
||||
",
|
||||
intval($remote_user),
|
||||
dbesc($gs),
|
||||
intval($remote_user),
|
||||
dbesc($gs)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
13
index.php
13
index.php
|
@ -366,6 +366,19 @@ if($a->module != 'install') {
|
|||
|
||||
$a->page['htmlhead'] = replace_macros($a->page['htmlhead'], array('$stylesheet' => current_theme_url()));
|
||||
|
||||
if($a->is_mobile || $a->is_tablet) {
|
||||
if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
|
||||
$link = $a->get_baseurl() . '/toggle_mobile?address=' . curPageURL();
|
||||
}
|
||||
else {
|
||||
$link = $a->get_baseurl() . '/toggle_mobile?off=1&address=' . curPageURL();
|
||||
}
|
||||
$a->page['footer'] = replace_macros(get_markup_template("toggle_mobile_footer.tpl"), array(
|
||||
'$toggle_link' => $link,
|
||||
'$toggle_text' => t('toggle mobile')
|
||||
));
|
||||
}
|
||||
|
||||
$page = $a->page;
|
||||
$profile = $a->profile;
|
||||
|
||||
|
|
22
mod/item.php
22
mod/item.php
|
@ -994,7 +994,25 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
|
|||
intval($tagcid),
|
||||
intval($profile_uid)
|
||||
);
|
||||
} elseif(strstr($name,'_') || strstr($name,' ')) { //no id
|
||||
else {
|
||||
$newname = str_replace('_',' ',$name);
|
||||
|
||||
//select someone from this user's contacts by name
|
||||
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
|
||||
dbesc($newname),
|
||||
intval($profile_uid)
|
||||
);
|
||||
|
||||
if(! $r) {
|
||||
//select someone by attag or nick and the name passed in
|
||||
$r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
|
||||
dbesc($name),
|
||||
dbesc($name),
|
||||
intval($profile_uid)
|
||||
);
|
||||
}
|
||||
}
|
||||
/* } elseif(strstr($name,'_') || strstr($name,' ')) { //no id
|
||||
//get the real name
|
||||
$newname = str_replace('_',' ',$name);
|
||||
//select someone from this user's contacts by name
|
||||
|
@ -1009,7 +1027,7 @@ function handle_tag($a, &$body, &$inform, &$str_tags, $profile_uid, $tag) {
|
|||
dbesc($name),
|
||||
intval($profile_uid)
|
||||
);
|
||||
}
|
||||
}*/
|
||||
//$r is set, if someone could be selected
|
||||
if(count($r)) {
|
||||
$profile = $r[0]['url'];
|
||||
|
|
|
@ -28,11 +28,6 @@ function lockview_content(&$a) {
|
|||
killme();
|
||||
|
||||
|
||||
$allowed_users = expand_acl($item['allow_cid']);
|
||||
$allowed_groups = expand_acl($item['allow_gid']);
|
||||
$deny_users = expand_acl($item['deny_cid']);
|
||||
$deny_groups = expand_acl($item['deny_gid']);
|
||||
|
||||
if(($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid']))
|
||||
&& (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) {
|
||||
|
||||
|
@ -40,6 +35,11 @@ function lockview_content(&$a) {
|
|||
killme();
|
||||
}
|
||||
|
||||
$allowed_users = expand_acl($item['allow_cid']);
|
||||
$allowed_groups = expand_acl($item['allow_gid']);
|
||||
$deny_users = expand_acl($item['deny_cid']);
|
||||
$deny_groups = expand_acl($item['deny_gid']);
|
||||
|
||||
$o = t('Visible to:') . '<br />';
|
||||
$l = array();
|
||||
|
||||
|
|
127
mod/network.php
127
mod/network.php
|
@ -18,13 +18,92 @@ function network_init(&$a) {
|
|||
}
|
||||
}
|
||||
|
||||
// convert query string to array and remove first element (wich is friendica args)
|
||||
// convert query string to array and remove first element (which is friendica args)
|
||||
$query_array = array();
|
||||
parse_str($a->query_string, $query_array);
|
||||
array_shift($query_array);
|
||||
|
||||
// fetch last used tab and redirect if needed
|
||||
// fetch last used network view and redirect if needed
|
||||
if(! $is_a_date_query) {
|
||||
$sel_tabs = network_query_get_sel_tab($a);
|
||||
$sel_nets = network_query_get_sel_net();
|
||||
$sel_groups = network_query_get_sel_group($a);
|
||||
$last_sel_tabs = get_pconfig(local_user(), 'network.view','tab.selected');
|
||||
$last_sel_nets = get_pconfig(local_user(), 'network.view', 'net.selected');
|
||||
$last_sel_groups = get_pconfig(local_user(), 'network.view', 'group.selected');
|
||||
|
||||
$remember_tab = ($sel_tabs[0] === 'active' && is_array($last_sel_tabs) && $last_sel_tabs[0] !== 'active');
|
||||
$remember_net = ($sel_nets === false && $last_sel_nets && $last_sel_nets !== 'all');
|
||||
$remember_group = ($sel_groups === false && $last_sel_groups && $last_sel_groups != 0);
|
||||
|
||||
$net_baseurl = '/network';
|
||||
$net_args = array();
|
||||
|
||||
if($remember_group) {
|
||||
$net_baseurl .= '/' . $last_sel_groups; // Note that the group number must come before the "/new" tab selection
|
||||
}
|
||||
else if($sel_groups !== false) {
|
||||
$net_baseurl .= '/' . $sel_groups;
|
||||
}
|
||||
|
||||
if($remember_tab) {
|
||||
// redirect if current selected tab is '/network' and
|
||||
// last selected tab is _not_ '/network?f=&order=comment'.
|
||||
// and this isn't a date query
|
||||
|
||||
$tab_baseurls = array(
|
||||
'', //all
|
||||
'', //postord
|
||||
'', //conv
|
||||
'/new', //new
|
||||
'', //starred
|
||||
'', //bookmarked
|
||||
'', //spam
|
||||
);
|
||||
$tab_args = array(
|
||||
'f=&order=comment', //all
|
||||
'f=&order=post', //postord
|
||||
'f=&conv=1', //conv
|
||||
'', //new
|
||||
'f=&star=1', //starred
|
||||
'f=&bmark=1', //bookmarked
|
||||
'f=&spam=1', //spam
|
||||
);
|
||||
|
||||
$k = array_search('active', $last_sel_tabs);
|
||||
|
||||
$net_baseurl .= $tab_baseurls[$k];
|
||||
|
||||
// parse out tab queries
|
||||
$dest_qa = array();
|
||||
$dest_qs = $tab_args[$k];
|
||||
parse_str( $dest_qs, $dest_qa);
|
||||
$net_args = array_merge($net_args, $dest_qa);
|
||||
}
|
||||
else if($sel_tabs[4] === 'active') {
|
||||
// The '/new' tab is selected
|
||||
$net_baseurl .= '/new';
|
||||
}
|
||||
|
||||
if($remember_net) {
|
||||
$net_args['nets'] = $last_sel_nets;
|
||||
}
|
||||
|
||||
if($remember_tab || $remember_net || $remember_group) {
|
||||
$net_args = array_merge($query_array, $net_args);
|
||||
$net_queries = build_querystring($net_args);
|
||||
|
||||
// groups filter is in form of "network/nnn". Add it to $dest_url, if it's possible
|
||||
//if ($a->argc==2 && is_numeric($a->argv[1]) && strpos($net_baseurl, "/",1)===false){
|
||||
// $net_baseurl .= "/".$a->argv[1];
|
||||
//}
|
||||
|
||||
$redir_url = ($net_queries ? $net_baseurl."?".$net_queries : $net_baseurl);
|
||||
goaway($a->get_baseurl() . $redir_url);
|
||||
}
|
||||
}
|
||||
|
||||
/* $sel_tabs = network_query_get_sel_tab($a);
|
||||
$last_sel_tabs = get_pconfig(local_user(), 'network.view','tab.selected');
|
||||
if (is_array($last_sel_tabs)){
|
||||
$tab_urls = array(
|
||||
|
@ -58,10 +137,15 @@ function network_init(&$a) {
|
|||
|
||||
goaway($a->get_baseurl() . $dest_url."?".$dest_qs);
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
if(x($_GET['nets']) && $_GET['nets'] === 'all')
|
||||
unset($_GET['nets']);
|
||||
|
||||
$group_id = (($a->argc > 1 && intval($a->argv[1])) ? intval($a->argv[1]) : 0);
|
||||
|
||||
set_pconfig(local_user(), 'network.view', 'group.selected', $group_id);
|
||||
|
||||
require_once('include/group.php');
|
||||
require_once('include/contact_widgets.php');
|
||||
require_once('include/items.php');
|
||||
|
@ -97,7 +181,7 @@ function network_init(&$a) {
|
|||
$a->page['content'] .= '<h2>' . t('Search Results For:') . ' ' . $search . '</h2>';
|
||||
}
|
||||
|
||||
$a->page['aside'] .= group_side('network','network',true,$group_id);
|
||||
$a->page['aside'] .= group_side('network/0','network',true,$group_id);
|
||||
$a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false);
|
||||
$a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
|
||||
$a->page['aside'] .= saved_searches($search);
|
||||
|
@ -225,6 +309,29 @@ function network_query_get_sel_tab($a) {
|
|||
return array($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active, $spam_active);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return selected network from query
|
||||
*/
|
||||
function network_query_get_sel_net() {
|
||||
$network = false;
|
||||
|
||||
if(x($_GET,'nets')) {
|
||||
$network = $_GET['nets'];
|
||||
}
|
||||
|
||||
return $network;
|
||||
}
|
||||
|
||||
function network_query_get_sel_group($a) {
|
||||
$group = false;
|
||||
|
||||
if($a->argc >= 2 && is_numeric($a->argv[1])) {
|
||||
$group = $a->argv[1];
|
||||
}
|
||||
|
||||
return $group;
|
||||
}
|
||||
|
||||
|
||||
function network_content(&$a, $update = 0) {
|
||||
|
||||
|
@ -381,6 +488,7 @@ function network_content(&$a, $update = 0) {
|
|||
if(strlen($str))
|
||||
$def_acl = array('allow_cid' => $str);
|
||||
}
|
||||
set_pconfig(local_user(), 'network.view', 'net.selected', ($nets ? $nets : 'all'));
|
||||
|
||||
if(! $update) {
|
||||
if($group) {
|
||||
|
@ -607,6 +715,7 @@ function network_content(&$a, $update = 0) {
|
|||
intval($_SESSION['uid'])
|
||||
);
|
||||
|
||||
$update_unseen = ' WHERE uid = ' . intval($_SESSION['uid']) . " AND unseen = 1 $sql_extra $sql_nets";
|
||||
}
|
||||
else {
|
||||
|
||||
|
@ -673,6 +782,9 @@ function network_content(&$a, $update = 0) {
|
|||
} else {
|
||||
$items = array();
|
||||
}
|
||||
|
||||
if($parents_str)
|
||||
$update_unseen = ' WHERE uid = ' . intval(local_user()) . ' AND unseen = 1 AND parent IN ( ' . dbesc($parents_str) . ' )';
|
||||
}
|
||||
|
||||
|
||||
|
@ -680,12 +792,15 @@ function network_content(&$a, $update = 0) {
|
|||
// level which items you've seen and which you haven't. If you're looking
|
||||
// at the top level network page just mark everything seen.
|
||||
|
||||
if((! $group) && (! $cid) && (! $star)) {
|
||||
/* if((! $group) && (! $cid) && (! $star)) {
|
||||
$r = q("UPDATE `item` SET `unseen` = 0
|
||||
WHERE `unseen` = 1 AND `uid` = %d",
|
||||
intval(local_user())
|
||||
);
|
||||
}
|
||||
}*/
|
||||
|
||||
if($update_unseen)
|
||||
$r = q("UPDATE `item` SET `unseen` = 0 $update_unseen");
|
||||
|
||||
// Set this so that the conversation function can find out contact info for our wall-wall items
|
||||
$a->page_contact = $a->contact;
|
||||
|
|
|
@ -481,7 +481,25 @@ function photos_post(&$a) {
|
|||
intval($profile_uid)
|
||||
);
|
||||
}
|
||||
elseif(strstr($name,'_') || strstr($name,' ')) {
|
||||
else {
|
||||
$newname = str_replace('_',' ',$name);
|
||||
|
||||
//select someone from this user's contacts by name
|
||||
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
|
||||
dbesc($newname),
|
||||
intval($page_owner_uid)
|
||||
);
|
||||
|
||||
if(! $r) {
|
||||
//select someone by attag or nick and the name passed in
|
||||
$r = q("SELECT * FROM `contact` WHERE `attag` = '%s' OR `nick` = '%s' AND `uid` = %d ORDER BY `attag` DESC LIMIT 1",
|
||||
dbesc($name),
|
||||
dbesc($name),
|
||||
intval($page_owner_uid)
|
||||
);
|
||||
}
|
||||
}
|
||||
/* elseif(strstr($name,'_') || strstr($name,' ')) {
|
||||
$newname = str_replace('_',' ',$name);
|
||||
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
|
||||
dbesc($newname),
|
||||
|
@ -494,7 +512,7 @@ function photos_post(&$a) {
|
|||
dbesc($name),
|
||||
intval($page_owner_uid)
|
||||
);
|
||||
}
|
||||
}*/
|
||||
if(count($r)) {
|
||||
$newname = $r[0]['name'];
|
||||
$profile = $r[0]['url'];
|
||||
|
|
|
@ -101,7 +101,7 @@ function profiles_post(&$a) {
|
|||
}
|
||||
else {
|
||||
$newname = $lookup;
|
||||
if(strstr($lookup,' ')) {
|
||||
/* if(strstr($lookup,' ')) {
|
||||
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
|
||||
dbesc($newname),
|
||||
intval(local_user())
|
||||
|
@ -112,6 +112,17 @@ function profiles_post(&$a) {
|
|||
dbesc($lookup),
|
||||
intval(local_user())
|
||||
);
|
||||
}*/
|
||||
|
||||
$r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
|
||||
dbesc($newname),
|
||||
intval(local_user())
|
||||
);
|
||||
if(! $r) {
|
||||
$r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1",
|
||||
dbesc($lookup),
|
||||
intval(local_user())
|
||||
);
|
||||
}
|
||||
if(count($r)) {
|
||||
$prf = $r[0]['url'];
|
||||
|
|
|
@ -692,7 +692,7 @@ function settings_content(&$a) {
|
|||
'$mail_pass' => array('mail_pass', t('Email password:'), '', ''),
|
||||
'$mail_replyto' => array('mail_replyto', t('Reply-to address:'), '', 'Optional'),
|
||||
'$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
|
||||
'$mail_action' => array('mail_action', t('Action after import:'), $mail_action, '', array(0=>t('None'), 1=>t('Delete'), 2=>t('Mark as seen'), 3=>t('Move to folder'))),
|
||||
'$mail_action' => array('mail_action', t('Action after import:'), $mail_action, '', array(0=>t('None'), /*1=>t('Delete'),*/ 2=>t('Mark as seen'), 3=>t('Move to folder'))),
|
||||
'$mail_movetofolder' => array('mail_movetofolder', t('Move to folder:'), $mail_movetofolder, ''),
|
||||
'$submit' => t('Submit'),
|
||||
|
||||
|
|
|
@ -22,8 +22,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
||||
"POT-Creation-Date: 2012-09-25 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-09-27 04:19+0000\n"
|
||||
"POT-Creation-Date: 2012-09-27 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-09-30 06:05+0000\n"
|
||||
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -73,7 +73,7 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
|
|||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
|
||||
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
|
||||
#: ../../addon/fbpost/fbpost.php:165
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
|
||||
#: ../../index.php:317
|
||||
msgid "Permission denied."
|
||||
msgstr "Zugriff verweigert."
|
||||
|
@ -163,7 +163,7 @@ msgstr "Neues Foto von dieser URL"
|
|||
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
|
||||
#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
|
||||
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
|
||||
#: ../../addon/forumlist/forumlist.php:169
|
||||
#: ../../addon/forumlist/forumlist.php:163
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
|
||||
#: ../../addon/qcomment/qcomment.php:61
|
||||
|
@ -191,7 +191,7 @@ msgstr "Neues Foto von dieser URL"
|
|||
#: ../../view/theme/diabook/theme.php:757
|
||||
#: ../../view/theme/diabook/config.php:190
|
||||
#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70
|
||||
#: ../../include/conversation.php:607 ../../object/Item.php:559
|
||||
#: ../../object/Item.php:560
|
||||
msgid "Submit"
|
||||
msgstr "Senden"
|
||||
|
||||
|
@ -322,7 +322,7 @@ msgstr "Veranstaltung teilen"
|
|||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136
|
||||
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
|
||||
#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
|
||||
#: ../../include/conversation.php:1307
|
||||
#: ../../include/conversation.php:935
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
|
@ -552,7 +552,7 @@ msgid "Use as profile photo"
|
|||
msgstr "Als Profilbild verwenden"
|
||||
|
||||
#: ../../mod/photos.php:1224 ../../mod/content.php:603
|
||||
#: ../../include/conversation.php:436 ../../object/Item.php:103
|
||||
#: ../../object/Item.php:103
|
||||
msgid "Private Message"
|
||||
msgstr "Private Nachricht"
|
||||
|
||||
|
@ -594,52 +594,49 @@ msgid ""
|
|||
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
|
||||
#: ../../mod/photos.php:1356 ../../mod/content.php:667
|
||||
#: ../../include/conversation.php:581 ../../object/Item.php:195
|
||||
#: ../../object/Item.php:196
|
||||
msgid "I like this (toggle)"
|
||||
msgstr "Ich mag das (toggle)"
|
||||
|
||||
#: ../../mod/photos.php:1357 ../../mod/content.php:668
|
||||
#: ../../include/conversation.php:582 ../../object/Item.php:196
|
||||
#: ../../object/Item.php:197
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr "Ich mag das nicht (toggle)"
|
||||
|
||||
#: ../../mod/photos.php:1358 ../../include/conversation.php:1268
|
||||
#: ../../mod/photos.php:1358 ../../include/conversation.php:896
|
||||
msgid "Share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#: ../../mod/photos.php:1359 ../../mod/editpost.php:112
|
||||
#: ../../mod/content.php:482 ../../mod/content.php:845
|
||||
#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
|
||||
#: ../../mod/message.php:481 ../../include/conversation.php:686
|
||||
#: ../../include/conversation.php:944 ../../include/conversation.php:1287
|
||||
#: ../../object/Item.php:257
|
||||
#: ../../mod/message.php:481 ../../include/conversation.php:570
|
||||
#: ../../include/conversation.php:915 ../../object/Item.php:258
|
||||
msgid "Please wait"
|
||||
msgstr "Bitte warten"
|
||||
|
||||
#: ../../mod/photos.php:1375 ../../mod/photos.php:1416
|
||||
#: ../../mod/photos.php:1448 ../../mod/content.php:690
|
||||
#: ../../include/conversation.php:604 ../../object/Item.php:556
|
||||
#: ../../object/Item.php:557
|
||||
msgid "This is you"
|
||||
msgstr "Das bist du"
|
||||
|
||||
#: ../../mod/photos.php:1377 ../../mod/photos.php:1418
|
||||
#: ../../mod/photos.php:1450 ../../mod/content.php:692
|
||||
#: ../../include/conversation.php:606 ../../boot.php:574
|
||||
#: ../../object/Item.php:558
|
||||
#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574
|
||||
#: ../../object/Item.php:559
|
||||
msgid "Comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#: ../../mod/photos.php:1379 ../../mod/editpost.php:133
|
||||
#: ../../mod/content.php:702 ../../include/conversation.php:616
|
||||
#: ../../include/conversation.php:1305 ../../object/Item.php:568
|
||||
#: ../../mod/content.php:702 ../../include/conversation.php:933
|
||||
#: ../../object/Item.php:569
|
||||
msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#: ../../mod/photos.php:1479 ../../mod/content.php:439
|
||||
#: ../../mod/content.php:723 ../../mod/settings.php:606
|
||||
#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696
|
||||
#: ../../include/conversation.php:448 ../../include/conversation.php:889
|
||||
#: ../../object/Item.php:116
|
||||
#: ../../include/conversation.php:515 ../../object/Item.php:117
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
|
@ -705,29 +702,28 @@ msgstr "Beitrag nicht gefunden"
|
|||
msgid "Edit post"
|
||||
msgstr "Beitrag bearbeiten"
|
||||
|
||||
#: ../../mod/editpost.php:88 ../../include/conversation.php:1254
|
||||
#: ../../mod/editpost.php:88 ../../include/conversation.php:882
|
||||
msgid "Post to Email"
|
||||
msgstr "An E-Mail senden"
|
||||
|
||||
#: ../../mod/editpost.php:103 ../../mod/content.php:710
|
||||
#: ../../mod/settings.php:605 ../../include/conversation.php:441
|
||||
#: ../../object/Item.php:107
|
||||
#: ../../mod/settings.php:605 ../../object/Item.php:107
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
|
||||
#: ../../mod/message.php:291 ../../mod/message.php:478
|
||||
#: ../../include/conversation.php:1269
|
||||
#: ../../include/conversation.php:897
|
||||
msgid "Upload photo"
|
||||
msgstr "Foto hochladen"
|
||||
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:1271
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:899
|
||||
msgid "Attach file"
|
||||
msgstr "Datei anhängen"
|
||||
|
||||
#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151
|
||||
#: ../../mod/message.php:292 ../../mod/message.php:479
|
||||
#: ../../include/conversation.php:1273
|
||||
#: ../../include/conversation.php:901
|
||||
msgid "Insert web link"
|
||||
msgstr "einen Link einfügen"
|
||||
|
||||
|
@ -743,35 +739,35 @@ msgstr "Vorbis [.ogg] Video einfügen"
|
|||
msgid "Insert Vorbis [.ogg] audio"
|
||||
msgstr "Vorbis [.ogg] Audio einfügen"
|
||||
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:1279
|
||||
#: ../../mod/editpost.php:110 ../../include/conversation.php:907
|
||||
msgid "Set your location"
|
||||
msgstr "Deinen Standort festlegen"
|
||||
|
||||
#: ../../mod/editpost.php:111 ../../include/conversation.php:1281
|
||||
#: ../../mod/editpost.php:111 ../../include/conversation.php:909
|
||||
msgid "Clear browser location"
|
||||
msgstr "Browser-Standort leeren"
|
||||
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:1288
|
||||
#: ../../mod/editpost.php:113 ../../include/conversation.php:916
|
||||
msgid "Permission settings"
|
||||
msgstr "Berechtigungseinstellungen"
|
||||
|
||||
#: ../../mod/editpost.php:121 ../../include/conversation.php:1297
|
||||
#: ../../mod/editpost.php:121 ../../include/conversation.php:925
|
||||
msgid "CC: email addresses"
|
||||
msgstr "Cc:-E-Mail-Addressen"
|
||||
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:1298
|
||||
#: ../../mod/editpost.php:122 ../../include/conversation.php:926
|
||||
msgid "Public post"
|
||||
msgstr "Öffentlicher Beitrag"
|
||||
|
||||
#: ../../mod/editpost.php:125 ../../include/conversation.php:1284
|
||||
#: ../../mod/editpost.php:125 ../../include/conversation.php:912
|
||||
msgid "Set title"
|
||||
msgstr "Titel setzen"
|
||||
|
||||
#: ../../mod/editpost.php:127 ../../include/conversation.php:1286
|
||||
#: ../../mod/editpost.php:127 ../../include/conversation.php:914
|
||||
msgid "Categories (comma-separated list)"
|
||||
msgstr "Kategorien (kommasepariert)"
|
||||
|
||||
#: ../../mod/editpost.php:128 ../../include/conversation.php:1300
|
||||
#: ../../mod/editpost.php:128 ../../include/conversation.php:928
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr "Z.B.: bob@example.com, mary@example.com"
|
||||
|
||||
|
@ -892,7 +888,7 @@ msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
|
|||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287
|
||||
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
|
||||
msgid "[Name Withheld]"
|
||||
msgstr "[Name unterdrückt]"
|
||||
|
||||
|
@ -1314,32 +1310,28 @@ msgid "Group: "
|
|||
msgstr "Gruppe: "
|
||||
|
||||
#: ../../mod/content.php:438 ../../mod/content.php:722
|
||||
#: ../../include/conversation.php:447 ../../include/conversation.php:888
|
||||
#: ../../object/Item.php:115
|
||||
#: ../../include/conversation.php:514 ../../object/Item.php:116
|
||||
msgid "Select"
|
||||
msgstr "Auswählen"
|
||||
|
||||
#: ../../mod/content.php:455 ../../mod/content.php:815
|
||||
#: ../../mod/content.php:816 ../../include/conversation.php:654
|
||||
#: ../../include/conversation.php:655 ../../include/conversation.php:907
|
||||
#: ../../object/Item.php:226 ../../object/Item.php:227
|
||||
#: ../../mod/content.php:816 ../../include/conversation.php:533
|
||||
#: ../../object/Item.php:227 ../../object/Item.php:228
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Das Profil von %s auf %s betrachten."
|
||||
|
||||
#: ../../mod/content.php:465 ../../mod/content.php:827
|
||||
#: ../../include/conversation.php:668 ../../include/conversation.php:927
|
||||
#: ../../object/Item.php:239
|
||||
#: ../../include/conversation.php:553 ../../object/Item.php:240
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s von %s"
|
||||
|
||||
#: ../../mod/content.php:480 ../../include/conversation.php:942
|
||||
#: ../../mod/content.php:480 ../../include/conversation.php:568
|
||||
msgid "View in context"
|
||||
msgstr "Im Zusammenhang betrachten"
|
||||
|
||||
#: ../../mod/content.php:586 ../../include/conversation.php:695
|
||||
#: ../../object/Item.php:276
|
||||
#: ../../mod/content.php:586 ../../object/Item.php:277
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
|
@ -1347,8 +1339,7 @@ msgstr[0] "%d Kommentar"
|
|||
msgstr[1] "%d Kommentare"
|
||||
|
||||
#: ../../mod/content.php:588 ../../include/text.php:1443
|
||||
#: ../../include/conversation.php:697 ../../object/Item.php:278
|
||||
#: ../../object/Item.php:291
|
||||
#: ../../object/Item.php:279 ../../object/Item.php:292
|
||||
msgid "comment"
|
||||
msgid_plural "comments"
|
||||
msgstr[0] ""
|
||||
|
@ -1356,113 +1347,92 @@ msgstr[1] "Kommentar"
|
|||
|
||||
#: ../../mod/content.php:589 ../../addon/page/page.php:76
|
||||
#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119
|
||||
#: ../../include/contact_widgets.php:195 ../../include/conversation.php:698
|
||||
#: ../../boot.php:575 ../../object/Item.php:279
|
||||
#: ../../include/contact_widgets.php:195 ../../boot.php:575
|
||||
#: ../../object/Item.php:280
|
||||
msgid "show more"
|
||||
msgstr "mehr anzeigen"
|
||||
|
||||
#: ../../mod/content.php:667 ../../include/conversation.php:581
|
||||
#: ../../object/Item.php:195
|
||||
#: ../../mod/content.php:667 ../../object/Item.php:196
|
||||
msgid "like"
|
||||
msgstr "mag ich"
|
||||
|
||||
#: ../../mod/content.php:668 ../../include/conversation.php:582
|
||||
#: ../../object/Item.php:196
|
||||
#: ../../mod/content.php:668 ../../object/Item.php:197
|
||||
msgid "dislike"
|
||||
msgstr "mag ich nicht"
|
||||
|
||||
#: ../../mod/content.php:670 ../../include/conversation.php:584
|
||||
#: ../../object/Item.php:198
|
||||
#: ../../mod/content.php:670 ../../object/Item.php:199
|
||||
msgid "Share this"
|
||||
msgstr "Weitersagen"
|
||||
|
||||
#: ../../mod/content.php:670 ../../include/conversation.php:584
|
||||
#: ../../object/Item.php:198
|
||||
#: ../../mod/content.php:670 ../../object/Item.php:199
|
||||
msgid "share"
|
||||
msgstr "Teilen"
|
||||
|
||||
#: ../../mod/content.php:694 ../../include/conversation.php:608
|
||||
#: ../../object/Item.php:560
|
||||
#: ../../mod/content.php:694 ../../object/Item.php:561
|
||||
msgid "Bold"
|
||||
msgstr "Fett"
|
||||
|
||||
#: ../../mod/content.php:695 ../../include/conversation.php:609
|
||||
#: ../../object/Item.php:561
|
||||
#: ../../mod/content.php:695 ../../object/Item.php:562
|
||||
msgid "Italic"
|
||||
msgstr "Kursiv"
|
||||
|
||||
#: ../../mod/content.php:696 ../../include/conversation.php:610
|
||||
#: ../../object/Item.php:562
|
||||
#: ../../mod/content.php:696 ../../object/Item.php:563
|
||||
msgid "Underline"
|
||||
msgstr "Unterstrichen"
|
||||
|
||||
#: ../../mod/content.php:697 ../../include/conversation.php:611
|
||||
#: ../../object/Item.php:563
|
||||
#: ../../mod/content.php:697 ../../object/Item.php:564
|
||||
msgid "Quote"
|
||||
msgstr "Zitat"
|
||||
|
||||
#: ../../mod/content.php:698 ../../include/conversation.php:612
|
||||
#: ../../object/Item.php:564
|
||||
#: ../../mod/content.php:698 ../../object/Item.php:565
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: ../../mod/content.php:699 ../../include/conversation.php:613
|
||||
#: ../../object/Item.php:565
|
||||
#: ../../mod/content.php:699 ../../object/Item.php:566
|
||||
msgid "Image"
|
||||
msgstr "Bild"
|
||||
|
||||
#: ../../mod/content.php:700 ../../include/conversation.php:614
|
||||
#: ../../object/Item.php:566
|
||||
#: ../../mod/content.php:700 ../../object/Item.php:567
|
||||
msgid "Link"
|
||||
msgstr "Verweis"
|
||||
|
||||
#: ../../mod/content.php:701 ../../include/conversation.php:615
|
||||
#: ../../object/Item.php:567
|
||||
#: ../../mod/content.php:701 ../../object/Item.php:568
|
||||
msgid "Video"
|
||||
msgstr "Video"
|
||||
|
||||
#: ../../mod/content.php:735 ../../include/conversation.php:545
|
||||
#: ../../object/Item.php:179
|
||||
#: ../../mod/content.php:735 ../../object/Item.php:180
|
||||
msgid "add star"
|
||||
msgstr "markieren"
|
||||
|
||||
#: ../../mod/content.php:736 ../../include/conversation.php:546
|
||||
#: ../../object/Item.php:180
|
||||
#: ../../mod/content.php:736 ../../object/Item.php:181
|
||||
msgid "remove star"
|
||||
msgstr "Markierung entfernen"
|
||||
|
||||
#: ../../mod/content.php:737 ../../include/conversation.php:547
|
||||
#: ../../object/Item.php:181
|
||||
#: ../../mod/content.php:737 ../../object/Item.php:182
|
||||
msgid "toggle star status"
|
||||
msgstr "Markierung umschalten"
|
||||
|
||||
#: ../../mod/content.php:740 ../../include/conversation.php:550
|
||||
#: ../../object/Item.php:184
|
||||
#: ../../mod/content.php:740 ../../object/Item.php:185
|
||||
msgid "starred"
|
||||
msgstr "markiert"
|
||||
|
||||
#: ../../mod/content.php:741 ../../include/conversation.php:551
|
||||
#: ../../object/Item.php:185
|
||||
#: ../../mod/content.php:741 ../../object/Item.php:186
|
||||
msgid "add tag"
|
||||
msgstr "Tag hinzufügen"
|
||||
|
||||
#: ../../mod/content.php:745 ../../include/conversation.php:451
|
||||
#: ../../object/Item.php:119
|
||||
#: ../../mod/content.php:745 ../../object/Item.php:120
|
||||
msgid "save to folder"
|
||||
msgstr "In Ordner speichern"
|
||||
|
||||
#: ../../mod/content.php:817 ../../include/conversation.php:656
|
||||
#: ../../object/Item.php:228
|
||||
#: ../../mod/content.php:817 ../../object/Item.php:229
|
||||
msgid "to"
|
||||
msgstr "zu"
|
||||
|
||||
#: ../../mod/content.php:818 ../../include/conversation.php:657
|
||||
#: ../../object/Item.php:229
|
||||
#: ../../mod/content.php:818 ../../object/Item.php:230
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Wall-to-Wall"
|
||||
|
||||
#: ../../mod/content.php:819 ../../include/conversation.php:658
|
||||
#: ../../object/Item.php:230
|
||||
#: ../../mod/content.php:819 ../../object/Item.php:231
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via Wall-To-Wall:"
|
||||
|
||||
|
@ -1980,7 +1950,7 @@ msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
|
|||
#: ../../addon/facebook/facebook.php:702
|
||||
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
|
||||
#: ../../addon/public_server/public_server.php:62
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
|
||||
#: ../../boot.php:788
|
||||
msgid "Administrator"
|
||||
msgstr "Administrator"
|
||||
|
@ -2713,7 +2683,7 @@ msgstr "Kein Empfänger."
|
|||
|
||||
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
|
||||
#: ../../mod/message.php:242 ../../mod/message.php:250
|
||||
#: ../../include/conversation.php:1205 ../../include/conversation.php:1222
|
||||
#: ../../include/conversation.php:833 ../../include/conversation.php:850
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr "Bitte gib die URL des Links ein:"
|
||||
|
||||
|
@ -3139,7 +3109,7 @@ msgstr "%1$s mag %2$ss %3$s nicht"
|
|||
|
||||
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
|
||||
#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
|
||||
#: ../../mod/display.php:145 ../../include/items.php:3774
|
||||
#: ../../mod/display.php:145 ../../include/items.php:3779
|
||||
msgid "Item not found."
|
||||
msgstr "Beitrag nicht gefunden."
|
||||
|
||||
|
@ -4036,48 +4006,48 @@ msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
|
|||
msgid "Tips for New Members"
|
||||
msgstr "Tipps für neue Nutzer"
|
||||
|
||||
#: ../../mod/ping.php:235
|
||||
#: ../../mod/ping.php:238
|
||||
msgid "{0} wants to be your friend"
|
||||
msgstr "{0} möchte mit dir in Kontakt treten"
|
||||
|
||||
#: ../../mod/ping.php:240
|
||||
#: ../../mod/ping.php:243
|
||||
msgid "{0} sent you a message"
|
||||
msgstr "{0} hat dir eine Nachricht geschickt"
|
||||
|
||||
#: ../../mod/ping.php:245
|
||||
#: ../../mod/ping.php:248
|
||||
msgid "{0} requested registration"
|
||||
msgstr "{0} möchte sich registrieren"
|
||||
|
||||
#: ../../mod/ping.php:251
|
||||
#: ../../mod/ping.php:254
|
||||
#, php-format
|
||||
msgid "{0} commented %s's post"
|
||||
msgstr "{0} kommentierte einen Beitrag von %s"
|
||||
|
||||
#: ../../mod/ping.php:256
|
||||
#: ../../mod/ping.php:259
|
||||
#, php-format
|
||||
msgid "{0} liked %s's post"
|
||||
msgstr "{0} mag %ss Beitrag"
|
||||
|
||||
#: ../../mod/ping.php:261
|
||||
#: ../../mod/ping.php:264
|
||||
#, php-format
|
||||
msgid "{0} disliked %s's post"
|
||||
msgstr "{0} mag %ss Beitrag nicht"
|
||||
|
||||
#: ../../mod/ping.php:266
|
||||
#: ../../mod/ping.php:269
|
||||
#, php-format
|
||||
msgid "{0} is now friends with %s"
|
||||
msgstr "{0} ist jetzt mit %s befreundet"
|
||||
|
||||
#: ../../mod/ping.php:271
|
||||
#: ../../mod/ping.php:274
|
||||
msgid "{0} posted"
|
||||
msgstr "{0} hat etwas veröffentlicht"
|
||||
|
||||
#: ../../mod/ping.php:276
|
||||
#: ../../mod/ping.php:279
|
||||
#, php-format
|
||||
msgid "{0} tagged %s's post with #%s"
|
||||
msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
|
||||
|
||||
#: ../../mod/ping.php:282
|
||||
#: ../../mod/ping.php:285
|
||||
msgid "{0} mentioned you in a post"
|
||||
msgstr "{0} hat dich in einem Beitrag erwähnt"
|
||||
|
||||
|
@ -4439,8 +4409,8 @@ msgstr "sichtbar für jeden"
|
|||
msgid "Edit visibility"
|
||||
msgstr "Sichtbarkeit bearbeiten"
|
||||
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:1209
|
||||
#: ../../include/conversation.php:1226
|
||||
#: ../../mod/filer.php:29 ../../include/conversation.php:837
|
||||
#: ../../include/conversation.php:854
|
||||
msgid "Save to Folder:"
|
||||
msgstr "In diesen Ordner verschieben:"
|
||||
|
||||
|
@ -5303,11 +5273,11 @@ msgid "%s - Click to open/close"
|
|||
msgstr "%s – Zum Öffnen/Schließen klicken"
|
||||
|
||||
#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
|
||||
#: ../../addon/forumlist/forumlist.php:54
|
||||
#: ../../addon/forumlist/forumlist.php:55
|
||||
msgid "Forums"
|
||||
msgstr "Foren"
|
||||
|
||||
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88
|
||||
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89
|
||||
msgid "Forums:"
|
||||
msgstr "Foren:"
|
||||
|
||||
|
@ -5319,7 +5289,7 @@ msgstr "Seiteneinstellungen aktualisiert."
|
|||
msgid "Page Settings"
|
||||
msgstr "Seiteneinstellungen"
|
||||
|
||||
#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155
|
||||
#: ../../addon/page/page.php:196
|
||||
msgid "How many forums to display on sidebar without paging"
|
||||
msgstr "Wie viele Foren sollen in der Seitenleiste ohne Umblättern angezeigt werden"
|
||||
|
||||
|
@ -6152,7 +6122,7 @@ msgstr "OEmbed für Youtube Videos verwenden"
|
|||
msgid "URL to embed:"
|
||||
msgstr "URL zum Einbetten:"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:57
|
||||
#: ../../addon/forumlist/forumlist.php:58
|
||||
msgid "show/hide"
|
||||
msgstr "anzeigen/verbergen"
|
||||
|
||||
|
@ -6160,21 +6130,21 @@ msgstr "anzeigen/verbergen"
|
|||
msgid "No forum subscriptions"
|
||||
msgstr "Keine Foren-Mitgliedschaften."
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:124
|
||||
#: ../../addon/forumlist/forumlist.php:125
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr "Einstellungen zur Foren-Liste aktualisiert."
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:153
|
||||
#: ../../addon/forumlist/forumlist.php:150
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Foren-Liste Einstellungen"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:158
|
||||
msgid "Randomise Forumlist/Forum list"
|
||||
#: ../../addon/forumlist/forumlist.php:152
|
||||
msgid "Randomise forum list"
|
||||
msgstr "Zufällige Zusammenstellung der Foren-Liste"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:161
|
||||
msgid "Show forumlists/forums on profile forumlist"
|
||||
msgstr "Liste der Foren deren Abonnement du bist in deinem Profil anzeigen:"
|
||||
#: ../../addon/forumlist/forumlist.php:155
|
||||
msgid "Show forums on profile page"
|
||||
msgstr "Zeige die Liste der Foren auf der Profilseite"
|
||||
|
||||
#: ../../addon/impressum/impressum.php:37
|
||||
msgid "Impressum"
|
||||
|
@ -8156,12 +8126,12 @@ msgstr "Sekunden"
|
|||
msgid "%1$d %2$s ago"
|
||||
msgstr "%1$d %2$s her"
|
||||
|
||||
#: ../../include/datetime.php:472 ../../include/items.php:1683
|
||||
#: ../../include/datetime.php:472 ../../include/items.php:1688
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr "%ss Geburtstag"
|
||||
|
||||
#: ../../include/datetime.php:473 ../../include/items.php:1684
|
||||
#: ../../include/datetime.php:473 ../../include/items.php:1689
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr "Herzlichen Glückwunsch %s"
|
||||
|
@ -8436,15 +8406,15 @@ msgstr "Konnte die Kontaktinformationen nicht empfangen."
|
|||
msgid "following"
|
||||
msgstr "folgen"
|
||||
|
||||
#: ../../include/items.php:3294
|
||||
#: ../../include/items.php:3299
|
||||
msgid "A new person is sharing with you at "
|
||||
msgstr "Eine neue Person teilt mit dir auf "
|
||||
|
||||
#: ../../include/items.php:3294
|
||||
#: ../../include/items.php:3299
|
||||
msgid "You have a new follower at "
|
||||
msgstr "Du hast einen neuen Kontakt auf "
|
||||
|
||||
#: ../../include/items.php:3975
|
||||
#: ../../include/items.php:3980
|
||||
msgid "Archives"
|
||||
msgstr "Archiv"
|
||||
|
||||
|
@ -8538,34 +8508,34 @@ msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das
|
|||
msgid "stopped following"
|
||||
msgstr "wird nicht mehr gefolgt"
|
||||
|
||||
#: ../../include/Contact.php:220 ../../include/conversation.php:1106
|
||||
#: ../../include/Contact.php:220 ../../include/conversation.php:734
|
||||
msgid "Poke"
|
||||
msgstr "Anstupsen"
|
||||
|
||||
#: ../../include/Contact.php:221 ../../include/conversation.php:1100
|
||||
#: ../../include/Contact.php:221 ../../include/conversation.php:728
|
||||
msgid "View Status"
|
||||
msgstr "Pinnwand anschauen"
|
||||
|
||||
#: ../../include/Contact.php:222 ../../include/conversation.php:1101
|
||||
#: ../../include/Contact.php:222 ../../include/conversation.php:729
|
||||
msgid "View Profile"
|
||||
msgstr "Profil anschauen"
|
||||
|
||||
#: ../../include/Contact.php:223 ../../include/conversation.php:1102
|
||||
#: ../../include/Contact.php:223 ../../include/conversation.php:730
|
||||
msgid "View Photos"
|
||||
msgstr "Bilder anschauen"
|
||||
|
||||
#: ../../include/Contact.php:224 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:1103
|
||||
#: ../../include/conversation.php:731
|
||||
msgid "Network Posts"
|
||||
msgstr "Netzwerkbeiträge"
|
||||
|
||||
#: ../../include/Contact.php:225 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:1104
|
||||
#: ../../include/conversation.php:732
|
||||
msgid "Edit Contact"
|
||||
msgstr "Kontakt bearbeiten"
|
||||
|
||||
#: ../../include/Contact.php:226 ../../include/Contact.php:237
|
||||
#: ../../include/conversation.php:1105
|
||||
#: ../../include/conversation.php:733
|
||||
msgid "Send PM"
|
||||
msgstr "Private Nachricht senden"
|
||||
|
||||
|
@ -8583,120 +8553,118 @@ msgstr "Nachricht/Beitrag"
|
|||
msgid "%1$s marked %2$s's %3$s as favorite"
|
||||
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
|
||||
|
||||
#: ../../include/conversation.php:645 ../../include/conversation.php:919
|
||||
#: ../../object/Item.php:217
|
||||
#: ../../include/conversation.php:545 ../../object/Item.php:218
|
||||
msgid "Categories:"
|
||||
msgstr "Kategorien"
|
||||
|
||||
#: ../../include/conversation.php:646 ../../include/conversation.php:920
|
||||
#: ../../object/Item.php:218
|
||||
#: ../../include/conversation.php:546 ../../object/Item.php:219
|
||||
msgid "Filed under:"
|
||||
msgstr "Abgelegt unter:"
|
||||
|
||||
#: ../../include/conversation.php:1002
|
||||
#: ../../include/conversation.php:630
|
||||
msgid "remove"
|
||||
msgstr "löschen"
|
||||
|
||||
#: ../../include/conversation.php:1006
|
||||
#: ../../include/conversation.php:634
|
||||
msgid "Delete Selected Items"
|
||||
msgstr "Lösche die markierten Beiträge"
|
||||
|
||||
#: ../../include/conversation.php:1164
|
||||
#: ../../include/conversation.php:792
|
||||
#, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr "%s mag das."
|
||||
|
||||
#: ../../include/conversation.php:1164
|
||||
#: ../../include/conversation.php:792
|
||||
#, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr "%s mag das nicht."
|
||||
|
||||
#: ../../include/conversation.php:1168
|
||||
#: ../../include/conversation.php:796
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this."
|
||||
msgstr "<span %1$s>%2$d Leute</span> mögen das."
|
||||
|
||||
#: ../../include/conversation.php:1170
|
||||
#: ../../include/conversation.php:798
|
||||
#, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||
msgstr "<span %1$s>%2$d Leute</span> mögen das nicht."
|
||||
|
||||
#: ../../include/conversation.php:1176
|
||||
#: ../../include/conversation.php:804
|
||||
msgid "and"
|
||||
msgstr "und"
|
||||
|
||||
#: ../../include/conversation.php:1179
|
||||
#: ../../include/conversation.php:807
|
||||
#, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr " und %d andere"
|
||||
|
||||
#: ../../include/conversation.php:1180
|
||||
#: ../../include/conversation.php:808
|
||||
#, php-format
|
||||
msgid "%s like this."
|
||||
msgstr "%s mögen das."
|
||||
|
||||
#: ../../include/conversation.php:1180
|
||||
#: ../../include/conversation.php:808
|
||||
#, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr "%s mögen das nicht."
|
||||
|
||||
#: ../../include/conversation.php:1204 ../../include/conversation.php:1221
|
||||
#: ../../include/conversation.php:832 ../../include/conversation.php:849
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr "Für <strong>jedermann</strong> sichtbar"
|
||||
|
||||
#: ../../include/conversation.php:1206 ../../include/conversation.php:1223
|
||||
#: ../../include/conversation.php:834 ../../include/conversation.php:851
|
||||
msgid "Please enter a video link/URL:"
|
||||
msgstr "Bitte Link/URL zum Video einfügen:"
|
||||
|
||||
#: ../../include/conversation.php:1207 ../../include/conversation.php:1224
|
||||
#: ../../include/conversation.php:835 ../../include/conversation.php:852
|
||||
msgid "Please enter an audio link/URL:"
|
||||
msgstr "Bitte Link/URL zum Audio einfügen:"
|
||||
|
||||
#: ../../include/conversation.php:1208 ../../include/conversation.php:1225
|
||||
#: ../../include/conversation.php:836 ../../include/conversation.php:853
|
||||
msgid "Tag term:"
|
||||
msgstr "Tag:"
|
||||
|
||||
#: ../../include/conversation.php:1210 ../../include/conversation.php:1227
|
||||
#: ../../include/conversation.php:838 ../../include/conversation.php:855
|
||||
msgid "Where are you right now?"
|
||||
msgstr "Wo hältst du dich jetzt gerade auf?"
|
||||
|
||||
#: ../../include/conversation.php:1270
|
||||
#: ../../include/conversation.php:898
|
||||
msgid "upload photo"
|
||||
msgstr "Bild hochladen"
|
||||
|
||||
#: ../../include/conversation.php:1272
|
||||
#: ../../include/conversation.php:900
|
||||
msgid "attach file"
|
||||
msgstr "Datei anhängen"
|
||||
|
||||
#: ../../include/conversation.php:1274
|
||||
#: ../../include/conversation.php:902
|
||||
msgid "web link"
|
||||
msgstr "Weblink"
|
||||
|
||||
#: ../../include/conversation.php:1275
|
||||
#: ../../include/conversation.php:903
|
||||
msgid "Insert video link"
|
||||
msgstr "Video-Adresse einfügen"
|
||||
|
||||
#: ../../include/conversation.php:1276
|
||||
#: ../../include/conversation.php:904
|
||||
msgid "video link"
|
||||
msgstr "Video-Link"
|
||||
|
||||
#: ../../include/conversation.php:1277
|
||||
#: ../../include/conversation.php:905
|
||||
msgid "Insert audio link"
|
||||
msgstr "Audio-Adresse einfügen"
|
||||
|
||||
#: ../../include/conversation.php:1278
|
||||
#: ../../include/conversation.php:906
|
||||
msgid "audio link"
|
||||
msgstr "Audio-Link"
|
||||
|
||||
#: ../../include/conversation.php:1280
|
||||
#: ../../include/conversation.php:908
|
||||
msgid "set location"
|
||||
msgstr "Ort setzen"
|
||||
|
||||
#: ../../include/conversation.php:1282
|
||||
#: ../../include/conversation.php:910
|
||||
msgid "clear location"
|
||||
msgstr "Ort löschen"
|
||||
|
||||
#: ../../include/conversation.php:1289
|
||||
#: ../../include/conversation.php:917
|
||||
msgid "permissions"
|
||||
msgstr "Zugriffsrechte"
|
||||
|
||||
|
|
|
@ -1391,8 +1391,8 @@ $a->strings["show/hide"] = "anzeigen/verbergen";
|
|||
$a->strings["No forum subscriptions"] = "Keine Foren-Mitgliedschaften.";
|
||||
$a->strings["Forumlist settings updated."] = "Einstellungen zur Foren-Liste aktualisiert.";
|
||||
$a->strings["Forumlist Settings"] = "Foren-Liste Einstellungen";
|
||||
$a->strings["Randomise Forumlist/Forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
|
||||
$a->strings["Show forumlists/forums on profile forumlist"] = "Liste der Foren deren Abonnement du bist in deinem Profil anzeigen:";
|
||||
$a->strings["Randomise forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
|
||||
$a->strings["Show forums on profile page"] = "Zeige die Liste der Foren auf der Profilseite";
|
||||
$a->strings["Impressum"] = "Impressum";
|
||||
$a->strings["Site Owner"] = "Betreiber der Seite";
|
||||
$a->strings["Email Address"] = "Email Adresse";
|
||||
|
|
|
@ -9,8 +9,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
||||
"POT-Creation-Date: 2012-09-26 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-09-27 12:16+0000\n"
|
||||
"POT-Creation-Date: 2012-09-27 10:00-0700\n"
|
||||
"PO-Revision-Date: 2012-09-28 14:23+0000\n"
|
||||
"Last-Translator: Olivier <olivier+transifex@migeot.org>\n"
|
||||
"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -60,7 +60,7 @@ msgstr "Impossible d'appliquer les réglages."
|
|||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
|
||||
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
|
||||
#: ../../addon/fbpost/fbpost.php:165
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908
|
||||
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913
|
||||
#: ../../index.php:317
|
||||
msgid "Permission denied."
|
||||
msgstr "Permission refusée."
|
||||
|
@ -150,7 +150,7 @@ msgstr "Nouvelle photo depuis cette URL"
|
|||
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
|
||||
#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92
|
||||
#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41
|
||||
#: ../../addon/forumlist/forumlist.php:169
|
||||
#: ../../addon/forumlist/forumlist.php:163
|
||||
#: ../../addon/impressum/impressum.php:83
|
||||
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
|
||||
#: ../../addon/qcomment/qcomment.php:61
|
||||
|
@ -875,7 +875,7 @@ msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
|
|||
msgid "Confirm"
|
||||
msgstr "Confirmer"
|
||||
|
||||
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287
|
||||
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292
|
||||
msgid "[Name Withheld]"
|
||||
msgstr "[Nom non-publié]"
|
||||
|
||||
|
@ -937,7 +937,7 @@ msgstr "Diaspora"
|
|||
msgid ""
|
||||
" - please do not use this form. Instead, enter %s into your Diaspora search"
|
||||
" bar."
|
||||
msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de rechercher Diaspora."
|
||||
msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora."
|
||||
|
||||
#: ../../mod/dfrn_request.php:843
|
||||
msgid "Your Identity Address:"
|
||||
|
@ -1937,7 +1937,7 @@ msgstr "Requête de réinitialisation de mot de passe à %s"
|
|||
#: ../../addon/facebook/facebook.php:702
|
||||
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
|
||||
#: ../../addon/public_server/public_server.php:62
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296
|
||||
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301
|
||||
#: ../../boot.php:788
|
||||
msgid "Administrator"
|
||||
msgstr "Administrateur"
|
||||
|
@ -2552,7 +2552,7 @@ msgstr "Retirer le terme"
|
|||
|
||||
#: ../../mod/network.php:146 ../../mod/search.php:13
|
||||
msgid "Saved Searches"
|
||||
msgstr "Recherches sauvées"
|
||||
msgstr "Recherches"
|
||||
|
||||
#: ../../mod/network.php:147 ../../include/group.php:244
|
||||
msgid "add"
|
||||
|
@ -3096,7 +3096,7 @@ msgstr "%1$s n'aime pas %3$s de %2$s"
|
|||
|
||||
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
|
||||
#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29
|
||||
#: ../../mod/display.php:145 ../../include/items.php:3774
|
||||
#: ../../mod/display.php:145 ../../include/items.php:3779
|
||||
msgid "Item not found."
|
||||
msgstr "Élément introuvable."
|
||||
|
||||
|
@ -5260,11 +5260,11 @@ msgid "%s - Click to open/close"
|
|||
msgstr "%s - cliquer pour ouvrir/fermer"
|
||||
|
||||
#: ../../addon/page/page.php:61 ../../addon/page/page.php:91
|
||||
#: ../../addon/forumlist/forumlist.php:54
|
||||
#: ../../addon/forumlist/forumlist.php:55
|
||||
msgid "Forums"
|
||||
msgstr "Forums"
|
||||
|
||||
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88
|
||||
#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89
|
||||
msgid "Forums:"
|
||||
msgstr "Forums:"
|
||||
|
||||
|
@ -5276,7 +5276,7 @@ msgstr "Paramètres des pages mis à jour."
|
|||
msgid "Page Settings"
|
||||
msgstr "Paramètres des pages"
|
||||
|
||||
#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155
|
||||
#: ../../addon/page/page.php:196
|
||||
msgid "How many forums to display on sidebar without paging"
|
||||
msgstr "Nombre de forums à afficher sur la barre de côté sans changer de page"
|
||||
|
||||
|
@ -6109,7 +6109,7 @@ msgstr "Utiliser OEmbed pour les vidéos Youtube"
|
|||
msgid "URL to embed:"
|
||||
msgstr "URL à incorporer:"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:57
|
||||
#: ../../addon/forumlist/forumlist.php:58
|
||||
msgid "show/hide"
|
||||
msgstr "Montrer/cacher"
|
||||
|
||||
|
@ -6117,20 +6117,20 @@ msgstr "Montrer/cacher"
|
|||
msgid "No forum subscriptions"
|
||||
msgstr "Pas d'abonnement au forum"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:124
|
||||
#: ../../addon/forumlist/forumlist.php:125
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr "Paramètres de la liste des forums mis à jour."
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:153
|
||||
#: ../../addon/forumlist/forumlist.php:150
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Paramètres de la liste des forums"
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:158
|
||||
msgid "Randomise Forumlist/Forum list"
|
||||
#: ../../addon/forumlist/forumlist.php:152
|
||||
msgid "Randomise forum list"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/forumlist/forumlist.php:161
|
||||
msgid "Show forumlists/forums on profile forumlist"
|
||||
#: ../../addon/forumlist/forumlist.php:155
|
||||
msgid "Show forums on profile page"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/impressum/impressum.php:37
|
||||
|
@ -7607,7 +7607,7 @@ msgstr "Plus récent"
|
|||
|
||||
#: ../../include/text.php:299
|
||||
msgid "older"
|
||||
msgstr "Plus ancient"
|
||||
msgstr "Plus ancien"
|
||||
|
||||
#: ../../include/text.php:597
|
||||
msgid "No contacts"
|
||||
|
@ -8113,12 +8113,12 @@ msgstr "secondes"
|
|||
msgid "%1$d %2$s ago"
|
||||
msgstr "%1$d %2$s auparavant"
|
||||
|
||||
#: ../../include/datetime.php:472 ../../include/items.php:1683
|
||||
#: ../../include/datetime.php:472 ../../include/items.php:1688
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr "Anniversaire de %s's"
|
||||
|
||||
#: ../../include/datetime.php:473 ../../include/items.php:1684
|
||||
#: ../../include/datetime.php:473 ../../include/items.php:1689
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr "Joyeux anniversaire, %s !"
|
||||
|
@ -8393,15 +8393,15 @@ msgstr "Impossible de récupérer les informations du contact."
|
|||
msgid "following"
|
||||
msgstr "following"
|
||||
|
||||
#: ../../include/items.php:3294
|
||||
#: ../../include/items.php:3299
|
||||
msgid "A new person is sharing with you at "
|
||||
msgstr "Une nouvelle personne partage avec vous à "
|
||||
|
||||
#: ../../include/items.php:3294
|
||||
#: ../../include/items.php:3299
|
||||
msgid "You have a new follower at "
|
||||
msgstr "Vous avez un nouvel abonné à "
|
||||
|
||||
#: ../../include/items.php:3975
|
||||
#: ../../include/items.php:3980
|
||||
msgid "Archives"
|
||||
msgstr "Archives"
|
||||
|
||||
|
|
|
@ -190,7 +190,7 @@ $a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
|
|||
$a->strings["Friendica"] = "Friendica";
|
||||
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
|
||||
$a->strings["Diaspora"] = "Diaspora";
|
||||
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de rechercher Diaspora.";
|
||||
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de recherche Diaspora.";
|
||||
$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
|
||||
$a->strings["Submit Request"] = "Envoyer la requête";
|
||||
$a->strings["Friendica Social Communications Server - Setup"] = "Serveur de communications sociales Friendica - Installation";
|
||||
|
@ -571,7 +571,7 @@ $a->strings["Toggle between different identities or community/group pages which
|
|||
$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
|
||||
$a->strings["Search Results For:"] = "Résultats pour:";
|
||||
$a->strings["Remove term"] = "Retirer le terme";
|
||||
$a->strings["Saved Searches"] = "Recherches sauvées";
|
||||
$a->strings["Saved Searches"] = "Recherches";
|
||||
$a->strings["add"] = "ajouter";
|
||||
$a->strings["Commented Order"] = "Dans l'ordre des commentaires";
|
||||
$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
|
||||
|
@ -1391,8 +1391,8 @@ $a->strings["show/hide"] = "Montrer/cacher";
|
|||
$a->strings["No forum subscriptions"] = "Pas d'abonnement au forum";
|
||||
$a->strings["Forumlist settings updated."] = "Paramètres de la liste des forums mis à jour.";
|
||||
$a->strings["Forumlist Settings"] = "Paramètres de la liste des forums";
|
||||
$a->strings["Randomise Forumlist/Forum list"] = "";
|
||||
$a->strings["Show forumlists/forums on profile forumlist"] = "";
|
||||
$a->strings["Randomise forum list"] = "";
|
||||
$a->strings["Show forums on profile page"] = "";
|
||||
$a->strings["Impressum"] = "Impressum";
|
||||
$a->strings["Site Owner"] = "Propriétaire du site";
|
||||
$a->strings["Email Address"] = "Adresse courriel";
|
||||
|
@ -1727,7 +1727,7 @@ $a->strings["first"] = "premier";
|
|||
$a->strings["last"] = "dernier";
|
||||
$a->strings["next"] = "suivant";
|
||||
$a->strings["newer"] = "Plus récent";
|
||||
$a->strings["older"] = "Plus ancient";
|
||||
$a->strings["older"] = "Plus ancien";
|
||||
$a->strings["No contacts"] = "Aucun contact";
|
||||
$a->strings["%d Contact"] = array(
|
||||
0 => "%d contact",
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
|
||||
Caro/a $myname,
|
||||
Ciao $[myname],
|
||||
|
||||
Hai un nuovo seguace a $sitename - '$requestor'.
|
||||
Un nuovo utente ha iniziato a seguirti su $[sitename] - '$[requestor]'.
|
||||
|
||||
Puoi visitare il suo profilo a $url.
|
||||
Puoi vedere il suo profilo su $[url].
|
||||
|
||||
Accedi al tuo sito per approvare o ignorare/cancellare la richiesta.
|
||||
Accedi sul tuo sito per approvare o ignorare la richiesta.
|
||||
|
||||
$siteurl
|
||||
$[siteurl]
|
||||
|
||||
Saluti,
|
||||
|
||||
L'amministratore di $sitename
|
||||
L'amministratore di $[sitename]
|
|
@ -1,23 +1,22 @@
|
|||
|
||||
Caro/a $username,
|
||||
Ciao $[username],
|
||||
|
||||
Grandi notizie... '$fn' a '$dfrn_url' ha accettato la tua richiesta di
|
||||
di connessione a '$sitename'.
|
||||
Ottime notizie... '$[fn]' di '$[dfrn_url]' ha accettato
|
||||
la tua richiesta di connessione su '$[sitename]'.
|
||||
|
||||
Ora siete amici a vicenda e potete scambiarvi aggiornamenti di stato, foto e
|
||||
email senza restrizioni.
|
||||
Adesso siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto ed email
|
||||
senza restrizioni.
|
||||
|
||||
Visita la tua pagina 'Contatti' su $sitename se vuoi fare una qualsiasi modifica
|
||||
a questa relazione.
|
||||
Vai nella pagina 'Contatti' di $[sitename] se vuoi effettuare
|
||||
qualche modifica riguardo questa relazione
|
||||
|
||||
$siteurl
|
||||
$[siteurl]
|
||||
|
||||
[Per esempio, puoi voler creare un profilo separato con informazioni che non
|
||||
sono disponibili al pubblico generico, e assegnarne i diritti di lettura a
|
||||
'$fn'].
|
||||
[Ad esempio, potresti creare un profilo separato con le informazioni che non
|
||||
sono disponibili pubblicamente - ed permettere di vederlo a '$[fn]'].
|
||||
|
||||
Sinceramente tuo,
|
||||
Saluti,
|
||||
|
||||
L'amministratore di $sitename
|
||||
l'amministratore di $[sitename]
|
||||
|
||||
|
|
@ -1,22 +1,22 @@
|
|||
|
||||
Caro/a $username,
|
||||
Ciao $[username],
|
||||
|
||||
'$fn' a '$dfrn_url' ha accettato la tua richiesta di
|
||||
connessione a '$sitename'.
|
||||
'$[fn]' di '$[dfrn_url]' ha accettato
|
||||
la tua richiesta di connessione a '$[sitename]'.
|
||||
|
||||
'$fn' ha scelto di accertarti come "fan", che limita alcune forme di
|
||||
comunicazione, come i messaggi privati e alcune interazioni con il profilo.
|
||||
Se e' una celebrita' o una pagina di community, queste impostazioni
|
||||
sono applicate automaticamente.
|
||||
'$[fn]' ha deciso di accettarti come "fan", il che restringe
|
||||
alcune forme di comunicazione - come i messaggi privati e alcune
|
||||
interazioni. Se è la pagina di una persona famosa o di una comunità, queste impostazioni saranno
|
||||
applicate automaticamente.
|
||||
|
||||
'$fn' puo' decidere di estendere in una relazione piu' permissiva
|
||||
nel futuro.
|
||||
'$[fn]' potrebbe decidere di estendere questa relazione in una comunicazione bidirezionale o ancora più permissiva
|
||||
.
|
||||
|
||||
Comincerai a rivecere gli aggiornamenti pubblici da '$fn',
|
||||
che apparira' sulla tua pagina 'Rete' su
|
||||
Inizierai a ricevere gli aggiornamenti di stato pubblici da '$[fn]',
|
||||
che apparirà nella tua pagina 'Rete'
|
||||
|
||||
$siteurl
|
||||
$[siteurl]
|
||||
|
||||
Saluti,
|
||||
|
||||
L'amministratore di $sitename
|
||||
l'amministratore di $[sitename]
|
|
@ -1,34 +1,32 @@
|
|||
|
||||
Caro/a $username,
|
||||
Ciao $[username],
|
||||
Su $[sitename] è stata ricevuta una richiesta di azzeramento di password per un account.
|
||||
Per confermare la richiesta, clicca sul link di verifica
|
||||
qui in fondo oppure copialo nella barra degli indirizzi del tuo browser.
|
||||
|
||||
E' arrivata recentemente una richiesta di resettare la password del tuo
|
||||
account su $sitename. Per confermare questa richiesta, clicca sul link di
|
||||
verifica qui sotto o incollalo nella barra dell'indirizzo del tuo browser web.
|
||||
Se NON hai richiesto l'azzeramento, NON seguire il link
|
||||
e ignora e/o cancella questa email.
|
||||
|
||||
Se NON hai richiesto questa modifica, NON seguire il link e ignora e cancella
|
||||
questa mail.
|
||||
La tua password non sarà modificata finché non avremo verificato che
|
||||
hai fatto questa richiesta.
|
||||
|
||||
La tua password non verrà cambiata finchè non verifichiame che hai richiesto tu
|
||||
la modifica.
|
||||
Per verificare la tua identità clicca su:
|
||||
|
||||
Segui questo link per verificare la tua identità:
|
||||
$[reset_link]
|
||||
|
||||
$reset_link
|
||||
Dopo la verifica riceverai un messaggio di risposta con la nuova password.
|
||||
|
||||
Riceverai un messaggio contenente la nuova password.
|
||||
Potrai cambiare la password dalla pagina delle impostazioni dopo aver effettuato l'accesso.
|
||||
|
||||
Potrai cambiare questa password dalla pagina delle impostazioni del tuo account
|
||||
dopo aver effettuato l'accesso.
|
||||
I dati di accesso sono i seguenti:
|
||||
|
||||
I dettagli d'accesso sono i seguenti:
|
||||
|
||||
Sito: $siteurl
|
||||
Nome: $email
|
||||
Sito:»$[siteurl]
|
||||
Nome utente:»$[email]
|
||||
|
||||
|
||||
|
||||
|
||||
Saluti,
|
||||
L'amministratore di $sitename
|
||||
l'amministratore di $[sitename]
|
||||
|
||||
|
12471
view/it/messages.po
12471
view/it/messages.po
File diff suppressed because it is too large
Load diff
|
@ -1,20 +1,20 @@
|
|||
|
||||
Caro/a $username,
|
||||
La tua password è stata cambiata come richiesto. Segnati questa informazione
|
||||
(o cambia immediatamente la password con qualcosa che ti ricorderai).
|
||||
Ciao $[username],
|
||||
La tua password è cambiata come hai richiesto. Conserva queste
|
||||
informazioni (oppure cambia immediatamente la password con
|
||||
qualcosa che ti è più facile ricordare).
|
||||
|
||||
|
||||
I tui dati di accesso sono i seguenti:
|
||||
I tuoi dati di access sono i seguenti:
|
||||
|
||||
Sito: $siteurl
|
||||
Nome: $email
|
||||
Password: $new_password
|
||||
Sito:»$[siteurl]
|
||||
Nome utente:»$[email]
|
||||
Password:»$[new_password]
|
||||
|
||||
Puoi cambiare la password dalla pagina delle impostazioni del tuo profilo dopo
|
||||
aver effetuato l'accesso.
|
||||
Puoi cambiare la tua password dalla pagina delle impostazioni dopo aver effettuato l'accesso.
|
||||
|
||||
|
||||
Saluti,
|
||||
L'amministratore di $sitename
|
||||
l'amministratore di $[sitename]
|
||||
|
||||
|
|
@ -1,22 +1,34 @@
|
|||
|
||||
Caro/a $username,
|
||||
Grazie per la tua registrazione a $sitename. Il tuo account è stato creato.
|
||||
I dati di accesso sono i seguenti:
|
||||
Ciao $[username],
|
||||
Grazie per aver effettuato la registrazione a $[sitename]. Il tuo account è stato creato.
|
||||
I dettagli di accesso sono i seguenti
|
||||
|
||||
|
||||
Sito: $siteurl
|
||||
Nome: $email
|
||||
Password: $password
|
||||
Sito:»$[siteurl]
|
||||
Nome utente:»$[email]
|
||||
Password:»$[password]
|
||||
|
||||
Puoi cambiare la tua password dall pagina "Impostazioni" del tuo account dopo
|
||||
aver effettuato l'accesso.
|
||||
Puoi cambiare la tua password dalla pagina "Impostazioni" del tuo profilo dopo aver effettuato l'accesso
|
||||
.
|
||||
|
||||
Prenditi un momento per rivedere le altre impostazioni dell'account su quella
|
||||
pagina.
|
||||
Prenditi un momento per dare un'occhiata alle altre impostazioni del tuo profilo nella stessa pagina.
|
||||
|
||||
Grazie e benventuo su $sitename.
|
||||
Potrest voler aggiungere alcune informazioni di base a quelle predefinite del profilo
|
||||
(nella pagina "Profilo") per rendere agli altri più facile trovarti.
|
||||
|
||||
Sinceramente,
|
||||
L'amministratore di $sitename
|
||||
Noi raccomandiamo di impostare il tuo nome completo, di aggiungere una foto,
|
||||
di aggiungere alcune "parole chiavi" (molto utili per farsi nuovi amici) - e
|
||||
magari il paese dove vivi; se non vuoi essere più dettagliato
|
||||
di così.
|
||||
|
||||
Noi rispettiamo il tuo diritto alla privacy e nessuna di queste informazioni è indispensabile.
|
||||
Se ancora non conosci nessuno qui, potrebbe esserti di aiuto
|
||||
per farti nuovi e interessanti amici.
|
||||
|
||||
|
||||
Grazie. Siamo contenti di darti il benvenuto su $[sitename]
|
||||
|
||||
Saluti,
|
||||
l'amministratore di $[sitename]
|
||||
|
||||
|
|
@ -1,23 +1,25 @@
|
|||
|
||||
E' stata ricevuta la richiesta di registrazione di un nuovo utente su
|
||||
$sitename che richiede la tua approvazione.
|
||||
|
||||
I dettagli di login sono i seguenti:
|
||||
|
||||
Nome Completo: $username
|
||||
Sito: $siteurl
|
||||
Nome: $email
|
||||
Su $[sitename] è stata ricevuta una nuova richiesta di registrazione da parte di un utente che richiede
|
||||
la tua approvazione.
|
||||
|
||||
|
||||
Per approvare la richiesta, visita il link:
|
||||
I tuoi dati di accesso sono i seguenti:
|
||||
|
||||
$siteurl/regmod/allow/$hash
|
||||
Nome completo:»$[username]
|
||||
Sito:»$[siteurl]
|
||||
Nome utente:»$[email]
|
||||
|
||||
|
||||
Per rifiutare la richiesta e rimuovere l'account, visita:
|
||||
Per approvare questa richiesta clicca su:
|
||||
|
||||
$siteurl/regmod/deny/$hash
|
||||
|
||||
$[siteurl]/regmod/allow/$[hash]
|
||||
|
||||
|
||||
Per negare la richiesta e rimuove il profilo, clicca su:
|
||||
|
||||
|
||||
$[siteurl]/regmod/deny/$[hash]
|
||||
|
||||
|
||||
Grazie.
|
||||
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
|
||||
Caro/a $myname,
|
||||
Ciao $[myname],
|
||||
|
||||
Hai appena ricevuto una richiesta di connessione su $sitename
|
||||
da '$requestor'.
|
||||
Hai appena ricevuto una richiesta di connessione da $[sitename]
|
||||
|
||||
Puoi visitare il suo profilo a $url.
|
||||
da '$[requestor]'.
|
||||
|
||||
Accedi al tuo sito per vedere la completa presentazione e approvare o
|
||||
ignorare/cancellare la richiesta.
|
||||
Puoi visitare il suo profilo su $[url].
|
||||
|
||||
$siteurl
|
||||
Accedi al tuo sito per vedere la richiesta completa
|
||||
e approva o ignora/annulla la richiesta.
|
||||
|
||||
$[siteurl]
|
||||
|
||||
Saluti,
|
||||
|
||||
L'amministratore di $sitename
|
||||
l'amministratore di $[sitename]
|
2511
view/it/strings.php
2511
view/it/strings.php
File diff suppressed because it is too large
Load diff
14
view/nb-no/follow_notify_eml.tpl
Normal file
14
view/nb-no/follow_notify_eml.tpl
Normal file
|
@ -0,0 +1,14 @@
|
|||
|
||||
Kjære $[myname],
|
||||
|
||||
Du har en ny følgesvenn på $[sitename] - '$[requestor]'.
|
||||
|
||||
Du kan besøke profilen deres på $[url].
|
||||
|
||||
Vennligst logg inn på ditt sted for å godkjenne eller ignorere/avbryte forespørselen.
|
||||
|
||||
$[siteurl]
|
||||
|
||||
Med vennlig hilsen,
|
||||
|
||||
$[sitename] administrator
|
22
view/nb-no/friend_complete_eml.tpl
Normal file
22
view/nb-no/friend_complete_eml.tpl
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
Kjære $[username],
|
||||
|
||||
Gode nyheter... '$[fn]' ved '$[dfrn_url]' har godtatt
|
||||
din forespørsel om kobling hos '$[sitename]'.
|
||||
|
||||
Dere er nå gjensidige venner og kan utveksle statusoppdateringer, bilder og e-post
|
||||
uten hindringer.
|
||||
|
||||
Vennligst besøk din side "Kontakter" ved $[sitename] hvis du ønsker å gjøre
|
||||
noen endringer på denne forbindelsen.
|
||||
|
||||
$[siteurl]
|
||||
|
||||
[For eksempel, så kan du lage en egen profil med informasjon som ikke er
|
||||
tilgjengelig for alle - og angi visningsrettigheter til '$[fn]'].
|
||||
|
||||
Med vennlig hilsen,
|
||||
|
||||
$[sitename] administrator
|
||||
|
||||
|
22
view/nb-no/intro_complete_eml.tpl
Normal file
22
view/nb-no/intro_complete_eml.tpl
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
Kjære $[username],
|
||||
|
||||
'$[fn]' ved '$[dfrn_url]' har godtatt
|
||||
din forespørsel om kobling ved $[sitename]'.
|
||||
|
||||
'$[fn]' har valgt å godta deg som "fan", som begrenser
|
||||
noen typer kommunikasjon - slik som private meldinger og noen profilhandlinger.
|
||||
Hvis dette er en kjendis- eller forumside, så ble disse innstillingene
|
||||
angitt automatisk.
|
||||
|
||||
'$[fn]' kan velge å utvide dette til en to-veis eller mer åpen
|
||||
forbindelse i fremtiden.
|
||||
|
||||
Du vil nå motta offentlige statusoppdateringer fra '$[fn]',
|
||||
som vil vises på din "Nettverk"-side ved
|
||||
|
||||
$[siteurl]
|
||||
|
||||
Med vennlig hilsen,
|
||||
|
||||
$[sitename] administrator
|
32
view/nb-no/lostpass_eml.tpl
Normal file
32
view/nb-no/lostpass_eml.tpl
Normal file
|
@ -0,0 +1,32 @@
|
|||
|
||||
Kjære $[username],
|
||||
En forespørsel ble nylig mottatt hos $[sitename] om å tilbakestille din kontos
|
||||
passord. For å godkjenne denne forespørselen, vennligst velg bekreftelseslenken
|
||||
nedenfor eller lim den inn på adresselinjen i nettleseren din.
|
||||
|
||||
Hvis du IKKE har spurt om denne endringen, vennligst IKKE følg lenken
|
||||
som er oppgitt og ignorer og/eller slett denne e-posten.
|
||||
|
||||
Passordet ditt vil ikke bli endret med mindre vi kan forsikre oss om at du
|
||||
sendte denne forespørselen.
|
||||
|
||||
Følg denne lenken for å bekrefte din identitet:
|
||||
|
||||
$[reset_link]
|
||||
|
||||
Du vil da motta en oppfølgings melding med det nye passordet.
|
||||
|
||||
Du kan endre passordet på siden for dine kontoinnstillinger etter innlogging.
|
||||
|
||||
Innloggingsdetaljene er som følger:
|
||||
|
||||
Nettstedsadresse:»$[siteurl]
|
||||
Brukernavn:»$[email]
|
||||
|
||||
|
||||
|
||||
|
||||
Beste hilsen,
|
||||
$[sitename] administrator
|
||||
|
||||
|
8765
view/nb-no/messages.po
Normal file
8765
view/nb-no/messages.po
Normal file
File diff suppressed because it is too large
Load diff
20
view/nb-no/passchanged_eml.tpl
Normal file
20
view/nb-no/passchanged_eml.tpl
Normal file
|
@ -0,0 +1,20 @@
|
|||
|
||||
Kjære $[username],
|
||||
Ditt passord har blitt endret som forespurt. Vennligst ta vare på denne
|
||||
meldingen for sikkerhets skyld (eller bytt passordet ditt umiddelbart til
|
||||
noe du husker).
|
||||
|
||||
|
||||
Dine logg inn-detaljer er som følger:
|
||||
|
||||
Nettsted:»$[siteurl]
|
||||
Brukernavn:»$[email]
|
||||
Passord:»$[new_password]
|
||||
|
||||
Du kan endre dette passordet på din side for kontoinnstillinger etter innlogging.
|
||||
|
||||
|
||||
Med vennlig hilsen,
|
||||
$[sitename] administrator
|
||||
|
||||
|
34
view/nb-no/register_open_eml.tpl
Normal file
34
view/nb-no/register_open_eml.tpl
Normal file
|
@ -0,0 +1,34 @@
|
|||
|
||||
Kjære $[username],
|
||||
Takk for at du registrerte deg hos $[sitename]. Kontoen din er opprettet.
|
||||
Innloggingsdetaljene er som følger:
|
||||
|
||||
|
||||
Nettstedsadresse:»$[siteurl]
|
||||
Brukernavn:»$[email]
|
||||
Passord:»$[password]
|
||||
|
||||
Du kan endre passordet ditt på siden "Innstillinger" etter at du har logget
|
||||
inn.
|
||||
|
||||
Vennligst bruk litt tid til å se over de andre kontoinnstillingene på den siden.
|
||||
|
||||
Du vil antakelig ønske å legge til litt grunnleggende informasjon til standardprofilen din
|
||||
(på siden "Profiler") slik at folk lettere kan finne deg.
|
||||
|
||||
Vi anbefaler å oppgi fullt navn, legge til et profilbilde,
|
||||
legge til noen "nøkkelord" for profilen (svært nyttig for å få nye venner) - og
|
||||
kanskje hvilket land du bor i, hvis du ikke ønsker å være mer spesifikk
|
||||
enn det.
|
||||
|
||||
Vi respekterer ditt privatliv fullt ut, og ingen av disse elementene er nødvendige.
|
||||
Hvis du er ny og ikke kjenner noen her, så kan de hjelpe
|
||||
deg å få noen nye og interessante venner.
|
||||
|
||||
|
||||
Takk og velkommen til $[sitename].
|
||||
|
||||
Beste hilsen,
|
||||
$[sitename] administrator
|
||||
|
||||
|
25
view/nb-no/register_verify_eml.tpl
Normal file
25
view/nb-no/register_verify_eml.tpl
Normal file
|
@ -0,0 +1,25 @@
|
|||
|
||||
En ny forespørsel om brukerregistering ble mottatt hos $[sitename] og krever
|
||||
din godkjenning.
|
||||
|
||||
|
||||
Innloggingsdetaljene er som følger:
|
||||
|
||||
Fullt navn:»$[username]
|
||||
Nettstedsadresse:»$[siteurl]
|
||||
Brukernavn:»$[email]
|
||||
|
||||
|
||||
For å godkjenne denne forespørselen, vennligst besøk følgende lenke:
|
||||
|
||||
|
||||
$[siteurl]/regmod/allow/$[hash]
|
||||
|
||||
|
||||
For å avslå denne forespørselen og fjerne kontoen, vennligst besøk:
|
||||
|
||||
|
||||
$[siteurl]/regmod/deny/$[hash]
|
||||
|
||||
|
||||
Mange takk.
|
17
view/nb-no/request_notify_eml.tpl
Normal file
17
view/nb-no/request_notify_eml.tpl
Normal file
|
@ -0,0 +1,17 @@
|
|||
|
||||
Kjære $[myname],
|
||||
|
||||
Du har akkurat mottatt en kontaktforespørsel hos $[sitename]
|
||||
|
||||
fra '$[requestor]'.
|
||||
|
||||
Du kan besøke profilen på $[url].
|
||||
|
||||
Vennligst logg inn på ditt nettsted for å se hele introduksjonen
|
||||
og godkjenne eller ignorere/avbryte forespørselen.
|
||||
|
||||
$[siteurl]
|
||||
|
||||
Beste hilsen,
|
||||
|
||||
$[siteurl] administrator
|
2006
view/nb-no/strings.php
Normal file
2006
view/nb-no/strings.php
Normal file
File diff suppressed because it is too large
Load diff
11
view/nb-no/update_fail_eml.tpl
Normal file
11
view/nb-no/update_fail_eml.tpl
Normal file
|
@ -0,0 +1,11 @@
|
|||
Hei,
|
||||
jeg er $sitename.
|
||||
Friendica-utviklerne slapp nylig oppdateringen $update,
|
||||
men da jeg prøvde å installere den, gikk noe forferdelig galt.
|
||||
Dette trenger å bli fikset raskt og jeg kan ikke gjøre det alene. Vennligst kontakt en
|
||||
Friendica-utvikler hvis du ikke kan hjelpe meg på egenhånd. Databasen min er kanskje ugyldig.
|
||||
|
||||
Feilmeldingen er '$error'.
|
||||
|
||||
Jeg beklager,
|
||||
din Friendica-tjener hos $siteurl
|
|
@ -1,7 +1,7 @@
|
|||
<div id="nets-sidebar" class="widget">
|
||||
<h3>$title</h3>
|
||||
<div id="nets-desc">$desc</div>
|
||||
<a href="$base" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a>
|
||||
<a href="$base?nets=all" class="nets-link{{ if $sel_all }} nets-selected{{ endif }} nets-all">$all</a>
|
||||
<ul class="nets-ul">
|
||||
{{ for $nets as $net }}
|
||||
<li><a href="$base?nets=$net.ref" class="nets-link{{ if $net.selected }} nets-selected{{ endif }}">$net.name</a></li>
|
||||
|
|
8863
view/ru/messages.po
8863
view/ru/messages.po
File diff suppressed because it is too large
Load diff
1930
view/ru/strings.php
1930
view/ru/strings.php
File diff suppressed because it is too large
Load diff
|
@ -519,7 +519,7 @@ div[id$="wrapper"]{height:100%;}div[id$="wrapper"] br{clear:left;}
|
|||
.type-text{background-position:-60px 0px;}
|
||||
.type-unkn{background-position:-80px 0;}
|
||||
.cc-license{margin-top:100px;font-size:0.7em;}
|
||||
footer{display:block;clear:both;}
|
||||
footer{display:block;clear:both;text-align:center;}
|
||||
#sectionfooter{margin:1em 0 1em 0;}
|
||||
#profile-jot-text{height:20px;color:#eeeecc;background:#2e2f2e;border:1px solid #eeeecc;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;width:99.5%;}
|
||||
#photo-edit-perms-select,#photos-upload-permissions-wrapper,#profile-jot-acl-wrapper{display:block !important;background:#2e2f2e;color:#eeeecc;}
|
||||
|
|
|
@ -519,7 +519,7 @@ div[id$="wrapper"]{height:100%;}div[id$="wrapper"] br{clear:left;}
|
|||
.type-text{background-position:-60px 0px;}
|
||||
.type-unkn{background-position:-80px 0;}
|
||||
.cc-license{margin-top:100px;font-size:0.7em;}
|
||||
footer{display:block;clear:both;}
|
||||
footer{display:block;clear:both;text-align:center;}
|
||||
#sectionfooter{margin:1em 0 1em 0;}
|
||||
#profile-jot-text{height:20px;color:#666666;background:#cccccc;border:1px solid #111111;-o-border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;border-radius:5px;width:99.5%;}
|
||||
#photo-edit-perms-select,#photos-upload-permissions-wrapper,#profile-jot-acl-wrapper{display:block !important;background:#eeeeec;color:#111111;}
|
||||
|
|
|
@ -245,8 +245,9 @@ section {
|
|||
|
||||
/* footer */
|
||||
footer {
|
||||
display: none;
|
||||
|
||||
text-align: right;
|
||||
padding-bottom: 1em;
|
||||
padding-right: 3em;
|
||||
}
|
||||
|
||||
.birthday-today, .event-today {
|
||||
|
|
|
@ -10,6 +10,8 @@ Photo album display?
|
|||
|
||||
- Get "add contact" back on contacts page
|
||||
|
||||
- Allow creating a new private message
|
||||
|
||||
- Admin: access to more pages than summary?
|
||||
|
||||
- Find a way to show embedded videos at the normal size for tablets that can handle it
|
||||
|
|
|
@ -21,9 +21,7 @@
|
|||
<section><?php if(x($page,'content')) echo $page['content']; ?>
|
||||
</section>
|
||||
</div>
|
||||
<footer>
|
||||
<a href="<?php echo $a->get_baseurl() ?>/toggle_mobile?off=1&address=<?php echo curPageURL() ?>">toggle mobile</a>
|
||||
</footer>
|
||||
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
|
||||
|
||||
<?php } else { ?>
|
||||
<div class='main-container'>
|
||||
|
@ -36,10 +34,7 @@
|
|||
</div>
|
||||
<right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
|
||||
<?php if( ($a->module === 'contacts') && x($page,'aside')) echo $page['aside']; ?>
|
||||
<footer>
|
||||
<a href="<?php echo $a->get_baseurl() ?>/toggle_mobile?off=1&address=<?php echo curPageURL() ?>">toggle mobile</a>
|
||||
<?php if(x($page,'footer')) echo $page['footer']; ?>
|
||||
</footer>
|
||||
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
|
||||
<!-- </div>-->
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
|
|
@ -185,7 +185,7 @@
|
|||
var eSysmsg = $j(data).find('sysmsgs');
|
||||
eSysmsg.children("notice").each(function(){
|
||||
text = $j(this).text();
|
||||
$j.jGrowl(text, { sticky: false, theme: 'notice', life: 1500 });
|
||||
$j.jGrowl(text, { sticky: false, theme: 'notice', life: 1000 });
|
||||
});
|
||||
eSysmsg.children("info").each(function(){
|
||||
text = $j(this).text();
|
||||
|
|
2
view/theme/frost-mobile/js/main.min.js
vendored
2
view/theme/frost-mobile/js/main.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1402,6 +1402,13 @@ input#dfrn-url {
|
|||
line-height: 23px;
|
||||
}
|
||||
|
||||
.wall-item-body iframe {
|
||||
display: block;
|
||||
clear: both;
|
||||
margin-top: 1.5em;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.wall-item-body code {
|
||||
width: 260px;
|
||||
overflow: hidden;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* Name: Frost--mobile version
|
||||
* Description: Like frosted glass
|
||||
* Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
|
||||
* Version: Version 0.2.12
|
||||
* Version: Version 0.2.13
|
||||
* Author: Zach P <techcity@f.shmuz.in>
|
||||
* Maintainer: Zach P <techcity@f.shmuz.in>
|
||||
*/
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
<section><?php if(x($page,'content')) echo $page['content']; ?>
|
||||
</section>
|
||||
</div>
|
||||
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
|
||||
|
||||
<?php } else { ?>
|
||||
<div class='main-container'>
|
||||
|
|
|
@ -178,11 +178,11 @@
|
|||
var eSysmsg = $j(data).find('sysmsgs');
|
||||
eSysmsg.children("notice").each(function(){
|
||||
text = $j(this).text();
|
||||
$j.jGrowl(text, { sticky: false, theme: 'notice', life: 2000 }); // originally: sticky: true,
|
||||
$j.jGrowl(text, { sticky: false, theme: 'notice', life: 3000 }); // originally: sticky: true,
|
||||
});
|
||||
eSysmsg.children("info").each(function(){
|
||||
text = $j(this).text();
|
||||
$j.jGrowl(text, { sticky: false, theme: 'info', life: 1500 });
|
||||
$j.jGrowl(text, { sticky: false, theme: 'info', life: 1000 });
|
||||
});
|
||||
|
||||
});
|
||||
|
|
2
view/theme/frost/js/main.min.js
vendored
2
view/theme/frost/js/main.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -135,3 +135,9 @@ div.section-wrapper {
|
|||
text-align: left;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
padding-top: 3em;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
|
|
@ -354,8 +354,8 @@ section {
|
|||
|
||||
/* footer */
|
||||
footer {
|
||||
display: none;
|
||||
|
||||
text-align: center;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.birthday-today, .event-today {
|
||||
|
@ -620,6 +620,10 @@ input#dfrn-url {
|
|||
clear: both;
|
||||
}
|
||||
|
||||
#croppa {
|
||||
max-width: 510px;
|
||||
}
|
||||
|
||||
.intro-wrapper {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
@ -1351,6 +1355,13 @@ input#dfrn-url {
|
|||
line-height: 18px;
|
||||
}
|
||||
|
||||
.wall-item-body iframe {
|
||||
display: block;
|
||||
clear: both;
|
||||
margin-top: 1.5em;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.wall-item-tools {
|
||||
clear: both;
|
||||
/* background-image: url("head.jpg");
|
||||
|
@ -3193,7 +3204,7 @@ aside input[type='text'] {
|
|||
display: block;
|
||||
margin-left: 50px;
|
||||
color: #666666;
|
||||
|
||||
clear: left;
|
||||
}
|
||||
|
||||
.field .onoff {
|
||||
|
@ -3291,6 +3302,10 @@ aside input[type='text'] {
|
|||
#adminpage table tr:hover { background-color: #bbc7d7; }
|
||||
#adminpage .selectall { text-align: right; }
|
||||
|
||||
#adminpage .screenshot img {
|
||||
max-width: 550px;
|
||||
}
|
||||
|
||||
/*
|
||||
* UPDATE
|
||||
*/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* Name: Frost
|
||||
* Description: Like frosted glass
|
||||
* Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0).
|
||||
* Version: Version 0.2.10
|
||||
* Version: Version 0.2.11
|
||||
* Author: Zach P <techcity@f.shmuz.in>
|
||||
* Maintainer: Zach P <techcity@f.shmuz.in>
|
||||
*/
|
||||
|
|
2
view/toggle_mobile_footer.tpl
Normal file
2
view/toggle_mobile_footer.tpl
Normal file
|
@ -0,0 +1,2 @@
|
|||
<a id="toggle_mobile_link" href="$toggle_link">$toggle_text</a>
|
||||
|
Loading…
Reference in a new issue