Merge branch 'master' of git://github.com/friendika/Free-Friendika
6
boot.php
|
|
@ -8,9 +8,9 @@ require_once("include/pgettext.php");
|
|||
require_once('include/nav.php');
|
||||
|
||||
define ( 'FRIENDIKA_PLATFORM', 'Free Friendika');
|
||||
define ( 'FRIENDIKA_VERSION', '2.3.1118' );
|
||||
define ( 'FRIENDIKA_VERSION', '2.3.1124' );
|
||||
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
||||
define ( 'DB_UPDATE_VERSION', 1092 );
|
||||
define ( 'DB_UPDATE_VERSION', 1094 );
|
||||
|
||||
define ( 'EOL', "<br />\r\n" );
|
||||
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
|
||||
|
|
@ -152,6 +152,8 @@ define ( 'ACTIVITY_DISLIKE', NAMESPACE_DFRN . '/dislike' );
|
|||
define ( 'ACTIVITY_OBJ_HEART', NAMESPACE_DFRN . '/heart' );
|
||||
|
||||
define ( 'ACTIVITY_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'make-friend' );
|
||||
define ( 'ACTIVITY_REQ_FRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'request-friend' );
|
||||
define ( 'ACTIVITY_UNFRIEND', NAMESPACE_ACTIVITY_SCHEMA . 'remove-friend' );
|
||||
define ( 'ACTIVITY_FOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'follow' );
|
||||
define ( 'ACTIVITY_UNFOLLOW', NAMESPACE_ACTIVITY_SCHEMA . 'stop-following' );
|
||||
define ( 'ACTIVITY_POST', NAMESPACE_ACTIVITY_SCHEMA . 'post' );
|
||||
|
|
|
|||
14
database.sql
|
|
@ -114,6 +114,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
|
|||
CREATE TABLE IF NOT EXISTS `group` (
|
||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`uid` int(10) unsigned NOT NULL,
|
||||
`visible` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`deleted` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`name` char(255) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
|
|
@ -424,7 +425,9 @@ CREATE TABLE IF NOT EXISTS `user` (
|
|||
`deny_gid` mediumtext NOT NULL,
|
||||
`openidserver` text NOT NULL,
|
||||
PRIMARY KEY (`uid`),
|
||||
KEY `nickname` (`nickname`)
|
||||
KEY `nickname` (`nickname`),
|
||||
KEY `account_expired` (`account_expired`),
|
||||
KEY `login_date` (`login_date`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
|
|
@ -630,3 +633,12 @@ CREATE TABLE IF NOT EXISTS `search` (
|
|||
INDEX ( `uid` ),
|
||||
INDEX ( `term` )
|
||||
) ENGINE = MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `fserver` (
|
||||
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
||||
`server` CHAR( 255 ) NOT NULL ,
|
||||
`posturl` CHAR( 255 ) NOT NULL ,
|
||||
`key` TEXT NOT NULL,
|
||||
INDEX ( `server` )
|
||||
) ENGINE = MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
|
|
|
|||
|
|
@ -142,8 +142,8 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
|
||||
|
||||
// array with html for each thread (parent+comments)
|
||||
$treads = array();
|
||||
$treadsid = -1;
|
||||
$threads = array();
|
||||
$threadsid = -1;
|
||||
|
||||
if(count($items)) {
|
||||
|
||||
|
|
@ -155,7 +155,7 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
$tpl = get_markup_template('search_item.tpl');
|
||||
|
||||
foreach($items as $item) {
|
||||
$treadsid++;
|
||||
$threadsid++;
|
||||
|
||||
$comment = '';
|
||||
$owner_url = '';
|
||||
|
|
@ -220,7 +220,7 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
|
||||
$body = prepare_body($item,true);
|
||||
|
||||
$treads[$treadsid] .= replace_macros($tpl,array(
|
||||
$tmp_item = replace_macros($tpl,array(
|
||||
'$id' => $item['item_id'],
|
||||
'$linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
|
||||
'$profile_url' => $profile_link,
|
||||
|
|
@ -251,6 +251,11 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
'$wait' => t('Please wait'),
|
||||
));
|
||||
|
||||
$arr = array('item' => $item, 'output' => $tmp_item);
|
||||
call_hooks('display_item', $arr);
|
||||
|
||||
$threads[$threadsid] .= $arr['output'];
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -331,8 +336,8 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
$comments_seen = 0;
|
||||
$comments_collapsed = false;
|
||||
|
||||
$treadsid++;
|
||||
$treads[$treadsid] = "";
|
||||
$threadsid++;
|
||||
$threads[$threadsid] = "";
|
||||
}
|
||||
else {
|
||||
// prevent private email from leaking into public conversation
|
||||
|
|
@ -346,7 +351,7 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
|
||||
if(($comments[$item['parent']] > 2) && ($comments_seen <= ($comments[$item['parent']] - 2)) && ($item['gravity'] == 6)) {
|
||||
if(! $comments_collapsed) {
|
||||
$treads[$treadsid] .= '<div class="ccollapse-wrapper fakelink" id="ccollapse-wrapper-' . $item['parent']
|
||||
$threads[$threadsid] .= '<div class="ccollapse-wrapper fakelink" id="ccollapse-wrapper-' . $item['parent']
|
||||
. '" onclick="openClose(' . '\'ccollapse-' . $item['parent'] . '\'); $(\'#ccollapse-wrapper-' . $item['parent'] . '\').hide();" >'
|
||||
. sprintf( t('See all %d comments'), $comments[$item['parent']]) . '</div>'
|
||||
. '<div class="ccollapse" id="ccollapse-' . $item['parent'] . '" style="display: none;" >';
|
||||
|
|
@ -354,7 +359,7 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
}
|
||||
}
|
||||
if(($comments[$item['parent']] > 2) && ($comments_seen == ($comments[$item['parent']] - 1))) {
|
||||
$treads[$treadsid] .= '</div>';
|
||||
$threads[$threadsid] .= '</div>';
|
||||
}
|
||||
|
||||
$redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
|
||||
|
|
@ -450,7 +455,7 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
);
|
||||
|
||||
$star = false;
|
||||
$starred = "unstarred";
|
||||
$isstarred = "unstarred";
|
||||
if ($profile_owner == local_user() && $toplevelpost) {
|
||||
$isstarred = (($item['starred']) ? "starred" : "unstarred");
|
||||
|
||||
|
|
@ -559,7 +564,7 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
$arr = array('item' => $item, 'output' => $tmp_item);
|
||||
call_hooks('display_item', $arr);
|
||||
|
||||
$treads[$treadsid] .= $arr['output'];
|
||||
$threads[$threadsid] .= $arr['output'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -568,11 +573,11 @@ function conversation(&$a, $items, $mode, $update) {
|
|||
// if author collapsing is in force but didn't get closed, close it off now.
|
||||
|
||||
/*if($blowhard_count >= 3)
|
||||
$treads[$treadsid] .= '</div>';*/
|
||||
$threads[$threadsid] .= '</div>';*/
|
||||
|
||||
$page_template = get_markup_template("conversation.tpl");
|
||||
$o .= replace_macros($page_template, array(
|
||||
'$treads' => $treads,
|
||||
'$threads' => $threads,
|
||||
'$dropping' => ($dropping?t('Delete Selected Items'):False),
|
||||
));
|
||||
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ function delivery_run($argv, $argc){
|
|||
$normal_mode = false;
|
||||
$expire = true;
|
||||
$items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
|
||||
AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP - INTERVAL 30 MINUTE",
|
||||
AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 30 MINUTE",
|
||||
intval($item_id)
|
||||
);
|
||||
$uid = $item_id;
|
||||
|
|
@ -96,6 +96,8 @@ function delivery_run($argv, $argc){
|
|||
$uid = $r[0]['uid'];
|
||||
$updated = $r[0]['edited'];
|
||||
|
||||
if(! $parent_id)
|
||||
return;
|
||||
|
||||
|
||||
$items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
|
||||
|
|
@ -121,7 +123,6 @@ function delivery_run($argv, $argc){
|
|||
if( ! ($icontacts && count($icontacts)))
|
||||
return;
|
||||
|
||||
|
||||
// avoid race condition with deleting entries
|
||||
|
||||
if($items[0]['deleted']) {
|
||||
|
|
@ -267,7 +268,12 @@ function delivery_run($argv, $argc){
|
|||
if(! $item_contact)
|
||||
continue;
|
||||
|
||||
$atom .= atom_entry($item,'text',$item_contact,$owner,true);
|
||||
if($normal_mode) {
|
||||
if($item_id == $item['id'] || $item['id'] == $item['parent'])
|
||||
$atom .= atom_entry($item,'text',$item_contact,$owner,true);
|
||||
}
|
||||
else
|
||||
$atom .= atom_entry($item,'text',$item_contact,$owner,true);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -807,6 +807,14 @@ function item_store($arr,$force_parent = false) {
|
|||
}
|
||||
}
|
||||
|
||||
$r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
|
||||
dbesc($arr['uri']),
|
||||
dbesc($arr['uid'])
|
||||
);
|
||||
if($r && count($r)) {
|
||||
logger('item-store: duplicate item ignored. ' . print_r($arr,true));
|
||||
return 0;
|
||||
}
|
||||
|
||||
call_hooks('post_remote',$arr);
|
||||
|
||||
|
|
@ -1070,10 +1078,21 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
|
|||
* have a contact record.
|
||||
* $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or
|
||||
* might not) try and subscribe to it.
|
||||
* $datedir sorts in reverse order
|
||||
* $pass - by default ($pass = 0) we cannot guarantee that a parent item has been
|
||||
* imported prior to its children being seen in the stream unless we are certain
|
||||
* of how the feed is arranged/ordered.
|
||||
* With $pass = 1, we only pull parent items out of the stream.
|
||||
* With $pass = 2, we only pull children (comments/likes).
|
||||
*
|
||||
* So running this twice, first with pass 1 and then with pass 2 will do the right
|
||||
* thing regardless of feed ordering. This won't be adequate in a fully-threaded
|
||||
* model where comments can have sub-threads. That would require some massive sorting
|
||||
* to get all the feed items into a mostly linear ordering, and might still require
|
||||
* recursion.
|
||||
*/
|
||||
|
||||
function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_feed = false) {
|
||||
function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) {
|
||||
|
||||
require_once('library/simplepie/simplepie.inc');
|
||||
|
||||
|
|
@ -1241,7 +1260,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee
|
|||
// process any deleted entries
|
||||
|
||||
$del_entries = $feed->get_feed_tags(NAMESPACE_TOMB, 'deleted-entry');
|
||||
if(is_array($del_entries) && count($del_entries)) {
|
||||
if(is_array($del_entries) && count($del_entries) && $pass != 2) {
|
||||
foreach($del_entries as $dentry) {
|
||||
$deleted = false;
|
||||
if(isset($dentry['attribs']['']['ref'])) {
|
||||
|
|
@ -1333,7 +1352,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee
|
|||
$parent_uri = $rawthread[0]['attribs']['']['ref'];
|
||||
}
|
||||
|
||||
if(($is_reply) && is_array($contact)) {
|
||||
if(($is_reply) && is_array($contact) && $pass != 1) {
|
||||
|
||||
// Have we seen it? If not, import it.
|
||||
|
||||
|
|
@ -1385,7 +1404,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee
|
|||
}
|
||||
|
||||
$force_parent = false;
|
||||
if($contact['network'] === 'stat') {
|
||||
if($contact['network'] === NETWORK_OSTATUS) {
|
||||
$force_parent = true;
|
||||
if(strlen($datarray['title']))
|
||||
unset($datarray['title']);
|
||||
|
|
@ -1397,7 +1416,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee
|
|||
$datarray['last-child'] = 1;
|
||||
}
|
||||
|
||||
if(($contact['network'] === 'feed') || (! strlen($contact['notify']))) {
|
||||
if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
|
||||
// one way feed - no remote comment ability
|
||||
$datarray['last-child'] = 0;
|
||||
}
|
||||
|
|
@ -1430,6 +1449,8 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee
|
|||
$datarray['author-avatar'] = $contact['thumb'];
|
||||
}
|
||||
|
||||
// special handling for events
|
||||
|
||||
if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) {
|
||||
$ev = bbtoevent($datarray['body']);
|
||||
if(x($ev,'desc') && x($ev,'start')) {
|
||||
|
|
@ -1491,16 +1512,28 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee
|
|||
lose_follower($importer,$contact,$datarray,$item);
|
||||
return;
|
||||
}
|
||||
|
||||
if(activity_match($datarray['verb'],ACTIVITY_REQ_FRIEND)) {
|
||||
logger('consume-feed: New friend request');
|
||||
new_follower($importer,$contact,$datarray,$item,true);
|
||||
return;
|
||||
}
|
||||
if(activity_match($datarray['verb'],ACTIVITY_UNFRIEND)) {
|
||||
lose_sharer($importer,$contact,$datarray,$item);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
if(! is_array($contact))
|
||||
return;
|
||||
|
||||
if($contact['network'] === 'stat' || stristr($permalink,'twitter.com')) {
|
||||
if($contact['network'] === NETWORK_OSTATUS || stristr($permalink,'twitter.com')) {
|
||||
if(strlen($datarray['title']))
|
||||
unset($datarray['title']);
|
||||
$datarray['last-child'] = 1;
|
||||
}
|
||||
|
||||
if(($contact['network'] === 'feed') || (! strlen($contact['notify']))) {
|
||||
if(($contact['network'] === NETWORK_FEED) || (! strlen($contact['notify']))) {
|
||||
// one way feed - no remote comment ability
|
||||
$datarray['last-child'] = 0;
|
||||
}
|
||||
|
|
@ -1522,7 +1555,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $secure_fee
|
|||
}
|
||||
}
|
||||
|
||||
function new_follower($importer,$contact,$datarray,$item) {
|
||||
function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
|
||||
$url = notags(trim($datarray['author-link']));
|
||||
$name = notags(trim($datarray['author-name']));
|
||||
$photo = notags(trim($datarray['author-avatar']));
|
||||
|
|
@ -1532,14 +1565,14 @@ function new_follower($importer,$contact,$datarray,$item) {
|
|||
$nick = $rawtag[0]['child'][NAMESPACE_POCO]['preferredUsername'][0]['data'];
|
||||
|
||||
if(is_array($contact)) {
|
||||
if($contact['network'] == 'stat' && $contact['rel'] == CONTACT_IS_SHARING) {
|
||||
if(($contact['network'] == NETWORK_OSTATUS && $contact['rel'] == CONTACT_IS_SHARING)
|
||||
|| ($sharing && $contact['rel'] == CONTACT_IS_FOLLOWER)) {
|
||||
$r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
||||
intval(CONTACT_IS_FRIEND),
|
||||
intval($contact['id']),
|
||||
intval($importer['uid'])
|
||||
);
|
||||
}
|
||||
|
||||
// send email notification to owner?
|
||||
}
|
||||
else {
|
||||
|
|
@ -1555,13 +1588,12 @@ function new_follower($importer,$contact,$datarray,$item) {
|
|||
dbesc($name),
|
||||
dbesc($nick),
|
||||
dbesc($photo),
|
||||
dbesc('stat'),
|
||||
intval(CONTACT_IS_FOLLOWER)
|
||||
dbesc(($sharing) ? NETWORK_ZOT : NETWORK_OSTATUS),
|
||||
intval(($sharing) ? CONTACT_IS_SHARING : CONTACT_IS_FOLLOWER)
|
||||
);
|
||||
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 AND `rel` = %d LIMIT 1",
|
||||
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `pending` = 1 LIMIT 1",
|
||||
intval($importer['uid']),
|
||||
dbesc($url),
|
||||
intval(CONTACT_IS_FOLLOWER)
|
||||
dbesc($url)
|
||||
);
|
||||
if(count($r))
|
||||
$contact_record = $r[0];
|
||||
|
|
@ -1593,7 +1625,7 @@ function new_follower($importer,$contact,$datarray,$item) {
|
|||
'$sitename' => $a->config['sitename']
|
||||
));
|
||||
$res = mail($r[0]['email'],
|
||||
t("You have a new follower at ") . $a->config['sitename'],
|
||||
(($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],
|
||||
$email,
|
||||
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
|
||||
. 'Content-type: text/plain; charset=UTF-8' . "\n"
|
||||
|
|
@ -1617,8 +1649,21 @@ function lose_follower($importer,$contact,$datarray,$item) {
|
|||
}
|
||||
}
|
||||
|
||||
function lose_sharer($importer,$contact,$datarray,$item) {
|
||||
|
||||
function subscribe_to_hub($url,$importer,$contact,$submode = 'subscribe') {
|
||||
if(($contact['rel'] == CONTACT_IS_FRIEND) || ($contact['rel'] == CONTACT_IS_FOLLOWER)) {
|
||||
q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1",
|
||||
intval(CONTACT_IS_FOLLOWER),
|
||||
intval($contact['id'])
|
||||
);
|
||||
}
|
||||
else {
|
||||
contact_remove($contact['id']);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') {
|
||||
|
||||
if(is_array($importer)) {
|
||||
$r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1",
|
||||
|
|
@ -1641,7 +1686,7 @@ function subscribe_to_hub($url,$importer,$contact,$submode = 'subscribe') {
|
|||
|
||||
$params= 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
|
||||
|
||||
logger('subscribe_to_hub: subscribing ' . $contact['name'] . ' to hub ' . $url . ' with verifier ' . $verify_token);
|
||||
logger('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: ' . $push_url . ' with verifier ' . $verify_token);
|
||||
|
||||
if(! strlen($contact['hub-verify'])) {
|
||||
$r = q("UPDATE `contact` SET `hub-verify` = '%s' WHERE `id` = %d LIMIT 1",
|
||||
|
|
|
|||
|
|
@ -86,7 +86,7 @@ function notifier_run($argv, $argc){
|
|||
$normal_mode = false;
|
||||
$expire = true;
|
||||
$items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
|
||||
AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP - INTERVAL 10 MINUTE",
|
||||
AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE",
|
||||
intval($item_id)
|
||||
);
|
||||
$uid = $item_id;
|
||||
|
|
@ -123,6 +123,9 @@ function notifier_run($argv, $argc){
|
|||
$uid = $r[0]['uid'];
|
||||
$updated = $r[0]['edited'];
|
||||
|
||||
if(! $parent_id)
|
||||
return;
|
||||
|
||||
$items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
|
||||
FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d ORDER BY `id` ASC",
|
||||
intval($parent_id)
|
||||
|
|
@ -357,7 +360,16 @@ function notifier_run($argv, $argc){
|
|||
if(! $contact)
|
||||
continue;
|
||||
|
||||
$atom .= atom_entry($item,'text',$contact,$owner,true);
|
||||
if($normal_mode) {
|
||||
|
||||
// we only need the current item, but include the parent because without it
|
||||
// older sites without a corresponding dfrn_notify change may do the wrong thing.
|
||||
|
||||
if($item_id == $item['id'] || $item['id'] == $item['parent'])
|
||||
$atom .= atom_entry($item,'text',$contact,$owner,true);
|
||||
}
|
||||
else
|
||||
$atom .= atom_entry($item,'text',$contact,$owner,true);
|
||||
|
||||
if(($top_level) && ($public_message) && ($item['author-link'] === $item['owner-link']) && (! $expire))
|
||||
$slaps[] = atom_entry($item,'html',$contact,$owner,true);
|
||||
|
|
|
|||
|
|
@ -44,6 +44,12 @@ function poller_run($argv, $argc){
|
|||
AND `account_expires_on` != '0000-00-00 00:00:00'
|
||||
AND `account_expires_on` < UTC_TIMESTAMP() ");
|
||||
|
||||
$abandon_days = intval(get_config('system','account_abandon_days'));
|
||||
if($abandon_days < 1)
|
||||
$abandon_days = 0;
|
||||
|
||||
|
||||
|
||||
// once daily run expire in background
|
||||
|
||||
$d1 = get_config('system','last_expire_day');
|
||||
|
|
@ -92,12 +98,17 @@ function poller_run($argv, $argc){
|
|||
// and which have a polling address and ignore Diaspora since
|
||||
// we are unable to match those posts with a Diaspora GUID and prevent duplicates.
|
||||
|
||||
$abandon_sql = (($abandon_days)
|
||||
? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
|
||||
: ''
|
||||
);
|
||||
|
||||
$contacts = q("SELECT `contact`.`id` FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
|
||||
WHERE ( `rel` = %d OR `rel` = %d ) AND `poll` != ''
|
||||
AND `network` != '%s'
|
||||
$sql_extra
|
||||
AND `self` = 0 AND `contact`.`blocked` = 0 AND `contact`.`readonly` = 0
|
||||
AND `user`.`account_expired` = 0 ORDER BY RAND()",
|
||||
AND `user`.`account_expired` = 0 $abandon_sql ORDER BY RAND()",
|
||||
intval(CONTACT_IS_SHARING),
|
||||
intval(CONTACT_IS_FRIEND),
|
||||
dbesc(NETWORK_DIASPORA)
|
||||
|
|
@ -475,11 +486,11 @@ function poller_run($argv, $argc){
|
|||
}
|
||||
|
||||
|
||||
consume_feed($xml,$importer,$contact,$hub,1, true);
|
||||
consume_feed($xml,$importer,$contact,$hub,1,1);
|
||||
|
||||
// do it twice. Ensures that children of parents which may be later in the stream aren't tossed
|
||||
|
||||
consume_feed($xml,$importer,$contact,$hub,1);
|
||||
consume_feed($xml,$importer,$contact,$hub,1,2);
|
||||
|
||||
$hubmode = 'subscribe';
|
||||
if($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
|
||||
|
|
|
|||
|
|
@ -744,7 +744,12 @@ function link_compare($a,$b) {
|
|||
if(! function_exists('prepare_body')) {
|
||||
function prepare_body($item,$attach = false) {
|
||||
|
||||
call_hooks('prepare_body_init', $item);
|
||||
|
||||
$s = prepare_text($item['body']);
|
||||
|
||||
call_hooks('prepare_body', $s);
|
||||
|
||||
if(! $attach)
|
||||
return $s;
|
||||
|
||||
|
|
@ -776,6 +781,7 @@ function prepare_body($item,$attach = false) {
|
|||
}
|
||||
$s .= '<div class="clear"></div></div>';
|
||||
}
|
||||
call_hooks('prepare_body_final', $s);
|
||||
return $s;
|
||||
}}
|
||||
|
||||
|
|
|
|||
27
js/main.js
|
|
@ -95,6 +95,16 @@
|
|||
if(home == 0) { home = ''; $('#home-update').removeClass('show') } else { $('#home-update').addClass('show') }
|
||||
$('#home-update').html(home);
|
||||
|
||||
var intro = $(data).find('intro').text();
|
||||
if(intro == 0) { intro = ''; $('#intro-update').removeClass('show') } else { $('#intro-update').addClass('show') }
|
||||
$('#intro-update').html(intro);
|
||||
|
||||
var mail = $(data).find('mail').text();
|
||||
if(mail == 0) { mail = ''; $('#mail-update').removeClass('show') } else { $('#mail-update').addClass('show') }
|
||||
$('#mail-update').html(mail);
|
||||
|
||||
|
||||
|
||||
var eNotif = $(data).find('notif')
|
||||
notif = eNotif.attr('count');
|
||||
if (notif>0){
|
||||
|
|
@ -154,6 +164,15 @@
|
|||
});
|
||||
|
||||
function NavUpdate() {
|
||||
if(! stopped) {
|
||||
$.get("ping",function(data) {
|
||||
$(data).find('result').each(function() {
|
||||
// send nav-update event
|
||||
$('nav').trigger('nav-update', this);
|
||||
});
|
||||
}) ;
|
||||
}
|
||||
|
||||
|
||||
if($('#live-network').length) { src = 'network'; liveUpdate(); }
|
||||
if($('#live-profile').length) { src = 'profile'; liveUpdate(); }
|
||||
|
|
@ -172,14 +191,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
if(! stopped) {
|
||||
$.get("ping",function(data) {
|
||||
$(data).find('result').each(function() {
|
||||
// send nav-update event
|
||||
$('nav').trigger('nav-update', this);
|
||||
});
|
||||
}) ;
|
||||
}
|
||||
timer = setTimeout(NavUpdate,30000);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -177,6 +177,8 @@ function admin_page_site_post(&$a){
|
|||
|
||||
|
||||
$register_policy = ((x($_POST,'register_policy')) ? intval(trim($_POST['register_policy'])) : 0);
|
||||
$abandon_days = ((x($_POST,'abandon_days')) ? intval(trim($_POST['abandon_days'])) : 0);
|
||||
|
||||
$register_text = ((x($_POST,'register_text')) ? notags(trim($_POST['register_text'])) : '');
|
||||
|
||||
$allowed_sites = ((x($_POST,'allowed_sites')) ? notags(trim($_POST['allowed_sites'])) : '');
|
||||
|
|
@ -215,6 +217,7 @@ function admin_page_site_post(&$a){
|
|||
set_config('system','maximagesize', $maximagesize);
|
||||
|
||||
set_config('config','register_policy', $register_policy);
|
||||
set_config('system','account_abandon_days', $abandon_days);
|
||||
set_config('config','register_text', $register_text);
|
||||
set_config('system','allowed_sites', $allowed_sites);
|
||||
set_config('system','allowed_email', $allowed_email);
|
||||
|
|
@ -314,6 +317,7 @@ function admin_page_site(&$a) {
|
|||
|
||||
'$register_policy' => array('register_policy', t("Register policy"), $a->config['register_policy'], "", $register_choices),
|
||||
'$register_text' => array('register_text', t("Register text"), htmlentities($a->config['register_text'], ENT_QUOTES), "Will be displayed prominently on the registration page."),
|
||||
'$abandon_days' => array('abandon_days', t('Accounts abandoned after x days'), get_config('system','account_abandon_days'), t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')),
|
||||
'$allowed_sites' => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"),
|
||||
'$allowed_email' => array('allowed_email', t("Allowed email domains"), get_config('system','allowed_email'), "Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"),
|
||||
'$block_public' => array('block_public', t("Block public"), get_config('system','block_public'), "Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."),
|
||||
|
|
|
|||
|
|
@ -450,7 +450,15 @@ function dfrn_notify_post(&$a) {
|
|||
}
|
||||
|
||||
if($is_reply) {
|
||||
if($feed->get_item_quantity() == 1) {
|
||||
|
||||
// was the top-level post for this reply written by somebody on this site? Specifically, the recipient?
|
||||
|
||||
$r = q("select `id` from `item` where `uri` = '%s' AND `uid` = %d LIMIT 1",
|
||||
dbesc($parent_uri),
|
||||
intval($importer['importer_uid'])
|
||||
);
|
||||
if($r && count($r)) {
|
||||
|
||||
logger('dfrn_notify: received remote comment');
|
||||
$is_like = false;
|
||||
// remote reply to our post. Import and then notify everybody else.
|
||||
|
|
|
|||
|
|
@ -779,6 +779,11 @@ function item_post(&$a) {
|
|||
}
|
||||
}
|
||||
|
||||
// fallback so that parent always gets set to non-zero.
|
||||
|
||||
if(! $parent)
|
||||
$parent = $post_id;
|
||||
|
||||
$r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `plink` = '%s', `changed` = '%s', `last-child` = 1, `visible` = 1
|
||||
WHERE `id` = %d LIMIT 1",
|
||||
intval($parent),
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ function match_content(&$a) {
|
|||
|
||||
$params = array();
|
||||
$tags = trim($r[0]['pub_keywords'] . ' ' . $r[0]['prv_keywords']);
|
||||
|
||||
if($tags) {
|
||||
$params['s'] = $tags;
|
||||
if($a->pager['page'] != 1)
|
||||
|
|
@ -40,15 +41,17 @@ function match_content(&$a) {
|
|||
}
|
||||
|
||||
if(count($j->results)) {
|
||||
|
||||
$tpl = get_markup_template('match.tpl');
|
||||
foreach($j->results as $jj) {
|
||||
|
||||
$o .= '<div class="profile-match-wrapper"><div class="profile-match-photo">';
|
||||
$o .= '<a href="' . $jj->url . '">' . '<img src="' . $jj->photo . '" alt="' . $jj->name . '" title="' . $jj->name . '[' . $jj->tags . ']' . '" /></a></div>';
|
||||
$o .= '<div class="profile-match-break"></div>';
|
||||
$o .= '<div class="profile-match-name"><a href="' . $jj->url . '" title="' . $jj->name . '[' . $jj->url .']' . '">' . $jj->name . '</a></div>';
|
||||
$o .= '<div class="profile-match-end"></div></div>';
|
||||
|
||||
$o .= replace_macros($tpl,array(
|
||||
'$url' => $jj->url,
|
||||
'$name' => $jj->name,
|
||||
'$photo' => $jj->photo,
|
||||
'$tags' => $jj->tags
|
||||
));
|
||||
}
|
||||
$o .= '<div id="profile-match-wrapper-end"></div>';
|
||||
}
|
||||
else {
|
||||
info( t('No matches') . EOL);
|
||||
|
|
|
|||
|
|
@ -45,13 +45,21 @@ function message_content(&$a) {
|
|||
|
||||
$myprofile = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
|
||||
|
||||
|
||||
if (($a->argc > 1) && ($a->argv[1] === 'new')) {
|
||||
$tab = 'new';
|
||||
} else if ($a->argc == 2 && $a->argv[1] === 'sent') {
|
||||
$tab = 'sent';
|
||||
} else {
|
||||
$tab = 'inbox';
|
||||
}
|
||||
|
||||
$tpl = get_markup_template('mail_head.tpl');
|
||||
$header = replace_macros($tpl, array(
|
||||
'$messages' => t('Messages'),
|
||||
'$inbox' => t('Inbox'),
|
||||
'$outbox' => t('Outbox'),
|
||||
'$new' => t('New Message')
|
||||
'$new' => t('New Message'),
|
||||
'$activetab' => $tab
|
||||
));
|
||||
|
||||
|
||||
|
|
@ -90,6 +98,8 @@ function message_content(&$a) {
|
|||
|
||||
if(($a->argc > 1) && ($a->argv[1] === 'new')) {
|
||||
|
||||
$o .= $header;
|
||||
|
||||
$tpl = get_markup_template('msg-header.tpl');
|
||||
|
||||
$a->page['htmlhead'] .= replace_macros($tpl, array(
|
||||
|
|
@ -114,7 +124,6 @@ function message_content(&$a) {
|
|||
'$upload' => t('Upload photo'),
|
||||
'$insert' => t('Insert web link'),
|
||||
'$wait' => t('Please wait')
|
||||
|
||||
));
|
||||
|
||||
return $o;
|
||||
|
|
@ -248,7 +257,6 @@ function message_content(&$a) {
|
|||
'$upload' => t('Upload photo'),
|
||||
'$insert' => t('Insert web link'),
|
||||
'$wait' => t('Please wait')
|
||||
|
||||
));
|
||||
|
||||
return $o;
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ function saved_searches($search) {
|
|||
if(count($r)) {
|
||||
$o .= '<ul id="saved-search-ul">' . "\r\n";
|
||||
foreach($r as $rr) {
|
||||
$o .= '<li class="saved-search-li clear"><a href="network/?f=&remove=1&search=' . $rr['term'] . '" class="icon drophide savedsearchdrop" title="' . t('Remove term') . '" onclick="return confirmDelete();" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a> <a href="network/?f&search=' . $rr['term'] . '" class="savedsearchterm" >' . $rr['term'] . '</a></li>' . "\r\n";
|
||||
$o .= '<li class="saved-search-li clear"><a href="network/?f=&remove=1&search=' . $rr['term'] . '" class="icon drophide savedsearchdrop" title="' . t('Remove term') . '" onclick="return confirmDelete();" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a> <a href="network/?f&search=' . urlencode($rr['term']) . '" class="savedsearchterm" >' . $rr['term'] . '</a></li>' . "\r\n";
|
||||
}
|
||||
$o .= '</ul>';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -128,7 +128,14 @@ function photo_init(&$a) {
|
|||
}
|
||||
}
|
||||
|
||||
if(function_exists('header_remove')) {
|
||||
header_remove('Pragma');
|
||||
header_remove('pragma');
|
||||
}
|
||||
|
||||
header("Content-type: image/jpeg");
|
||||
header("Expires: " . gmdate("D, d M Y H:i:s", time() + (3600*24)) . " GMT");
|
||||
header("Cache-Control: max-age=" . (3600*24));
|
||||
echo $data;
|
||||
killme();
|
||||
// NOTREACHED
|
||||
|
|
|
|||
|
|
@ -92,15 +92,11 @@ EOT;
|
|||
|
||||
function photos_post(&$a) {
|
||||
|
||||
logger('mod/photos.php: photos_post(): begin' , 'LOGGER_DEBUG');
|
||||
logger('mod-photos: photos_post(): begin' , 'LOGGER_DEBUG');
|
||||
|
||||
foreach($_REQUEST AS $key => $val) {
|
||||
logger('mod/photos.php: photos_post(): $_REQUEST key: ' . $key . ' val: ' . $val , 'LOGGER_DEBUG');
|
||||
}
|
||||
|
||||
foreach($_FILES AS $key => $val) {
|
||||
logger('mod/photos.php: photos_post(): $_FILES key: ' . $key . ' val: ' . $val , 'LOGGER_DEBUG');
|
||||
}
|
||||
logger('mod_photos: REQUEST ' . print_r($_REQUEST,true), LOGGER_DATA);
|
||||
logger('mod_photos: FILES ' . print_r($_FILES,true), LOGGER_DATA);
|
||||
|
||||
$can_post = false;
|
||||
$visitor = 0;
|
||||
|
|
@ -585,6 +581,9 @@ function photos_post(&$a) {
|
|||
else
|
||||
$visible = 0;
|
||||
|
||||
if(intval($_REQUEST['not_visible']))
|
||||
$visible = 0;
|
||||
|
||||
$str_group_allow = perms2str(((is_array($_REQUEST['group_allow'])) ? $_REQUEST['group_allow'] : explode(',',$_REQUEST['group_allow'])));
|
||||
$str_contact_allow = perms2str(((is_array($_REQUEST['contact_allow'])) ? $_REQUEST['contact_allow'] : explode(',',$_REQUEST['contact_allow'])));
|
||||
$str_group_deny = perms2str(((is_array($_REQUEST['group_deny'])) ? $_REQUEST['group_deny'] : explode(',',$_REQUEST['group_deny'])));
|
||||
|
|
@ -892,6 +891,7 @@ function photos_content(&$a) {
|
|||
'$nickname' => $a->data['user']['nickname'],
|
||||
'$newalbum' => t('New album name: '),
|
||||
'$existalbumtext' => t('or existing album name: '),
|
||||
'$nosharetext' => t('Do not show a status post for this upload'),
|
||||
'$albumselect' => template_escape($albumselect),
|
||||
'$permissions' => t('Permissions'),
|
||||
'$aclselect' => (($visitor) ? '' : template_escape(populate_acl($a->user, $celeb))),
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ function ping_init(&$a) {
|
|||
function xmlize($href, $name, $url, $photo, $date, $message){
|
||||
$notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s">%s</note>';
|
||||
return sprintf ( $notsxml,
|
||||
$href, $name, $url, $photo, $date, $message
|
||||
xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($message)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -109,9 +109,11 @@ function profperm_content(&$a) {
|
|||
$o .= '<div id="prof-update-wrapper">';
|
||||
if($change)
|
||||
$o = '';
|
||||
|
||||
$o .= '<div id="prof-members">';
|
||||
|
||||
$o .= '<div id="prof-members-title">';
|
||||
$o .= '<h3>' . t('Visible To') . '</h3>';
|
||||
$o .= '</div>';
|
||||
$o .= '<div id="prof-members">';
|
||||
|
||||
$textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false);
|
||||
|
||||
|
|
@ -123,9 +125,12 @@ function profperm_content(&$a) {
|
|||
}
|
||||
$o .= '</div><div id="prof-members-end"></div>';
|
||||
$o .= '<hr id="prof-separator" />';
|
||||
$o .= '<div id="prof-all-contacts">';
|
||||
|
||||
$o .= '<h3>' . t("All Contacts \x28with secure profile access\x29") . '</h3>';
|
||||
$o .= '<div id="prof-all-contcts-title">';
|
||||
$o .= '<h3>' . t("All Contacts \x28with secure profile access\x29") . '</h3>';
|
||||
$o .= '</div>';
|
||||
$o .= '<div id="prof-all-contacts">';
|
||||
|
||||
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0
|
||||
AND `network` = 'dfrn' ORDER BY `name` ASC",
|
||||
intval(local_user())
|
||||
|
|
|
|||
|
|
@ -69,8 +69,13 @@ function pubsub_init(&$a) {
|
|||
// We must initiate an unsubscribe request with a verify_token.
|
||||
// Don't allow outsiders to unsubscribe us.
|
||||
|
||||
if(($hub_mode === 'unsubscribe') && (! strlen($hub_verify)))
|
||||
hub_return(false, '');
|
||||
if($hub_mode === 'unsubscribe') {
|
||||
if(! strlen($hub_verify)) {
|
||||
logger('pubsub: bogus unsubscribe');
|
||||
hub_return(false, '');
|
||||
}
|
||||
logger('pubsub: unsubscribe success');
|
||||
}
|
||||
|
||||
$r = q("UPDATE `contact` SET `subhub` = %d WHERE `id` = %d LIMIT 1",
|
||||
intval($subscribe),
|
||||
|
|
@ -132,11 +137,11 @@ function pubsub_post(&$a) {
|
|||
|
||||
require_once('include/items.php');
|
||||
|
||||
consume_feed($xml,$importer,$contact,$feedhub,1);
|
||||
consume_feed($xml,$importer,$contact,$feedhub,1,1);
|
||||
|
||||
// do it a second time so that any children find their parents.
|
||||
|
||||
consume_feed($xml,$importer,$contact,$feedhub,1);
|
||||
consume_feed($xml,$importer,$contact,$feedhub,1,2);
|
||||
|
||||
hub_post_return();
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ function search_saved_searches() {
|
|||
$o .= '<h3>' . t('Saved Searches') . '</h3>' . "\r\n";
|
||||
$o .= '<ul id="saved-search-ul">' . "\r\n";
|
||||
foreach($r as $rr) {
|
||||
$o .= '<li class="saved-search-li clear"><a href="search/?f=&remove=1&search=' . $rr['term'] . '" class="icon drophide savedsearchdrop" title="' . t('Remove term') . '" onclick="return confirmDelete();" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a> <a href="search/?f&search=' . $rr['term'] . '" class="savedsearchterm" >' . $rr['term'] . '</a></li>' . "\r\n";
|
||||
$o .= '<li class="saved-search-li clear"><a href="search/?f=&remove=1&search=' . $rr['term'] . '" class="icon drophide savedsearchdrop" title="' . t('Remove term') . '" onclick="return confirmDelete();" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a> <a href="search/?f=&search=' . $rr['term'] . '" class="savedsearchterm" >' . $rr['term'] . '</a></li>' . "\r\n";
|
||||
}
|
||||
$o .= '</ul></div>' . "\r\n";
|
||||
}
|
||||
|
|
|
|||
52
mod/tagmatch.php
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
|
||||
|
||||
function tagmatch_content(&$a) {
|
||||
|
||||
$search = notags(trim($_REQUEST['search']));
|
||||
|
||||
$o = '';
|
||||
|
||||
$o .= '<h2>' . t('Tag Match') . ' - ' . $search . '</h2>';
|
||||
|
||||
if($search) {
|
||||
|
||||
$p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
|
||||
|
||||
if(strlen(get_config('system','directory_submit_url')))
|
||||
$x = fetch_url('http://dir.friendika.com/lsearch?f=' . $p . '&search=' . urlencode($search));
|
||||
|
||||
//TODO fallback local search if global dir not available.
|
||||
// else
|
||||
// $x = post_url($a->get_baseurl() . '/lsearch', $params);
|
||||
|
||||
$j = json_decode($x);
|
||||
|
||||
if($j->total) {
|
||||
$a->set_pager_total($j->total);
|
||||
$a->set_pager_itemspage($j->items_page);
|
||||
}
|
||||
|
||||
if(count($j->results)) {
|
||||
|
||||
$tpl = get_markup_template('match.tpl');
|
||||
foreach($j->results as $jj) {
|
||||
|
||||
$o .= replace_macros($tpl,array(
|
||||
'$url' => $jj->url,
|
||||
'$name' => $jj->name,
|
||||
'$photo' => $jj->photo,
|
||||
'$tags' => $jj->tags
|
||||
));
|
||||
}
|
||||
}
|
||||
else {
|
||||
info( t('No matches') . EOL);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$o .= '<div class="clear"></div>';
|
||||
$o .= paginate($a);
|
||||
return $o;
|
||||
}
|
||||
19
update.php
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
define( 'UPDATE_VERSION' , 1092 );
|
||||
define( 'UPDATE_VERSION' , 1094 );
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -770,3 +770,20 @@ function update_1091() {
|
|||
|
||||
}
|
||||
|
||||
function update_1092() {
|
||||
q("ALTER TABLE `user` ADD INDEX ( `login_date` ) ");
|
||||
q("ALTER TABLE `user` ADD INDEX ( `account_expired` ) ");
|
||||
}
|
||||
|
||||
function update_1093() {
|
||||
q("CREATE TABLE IF NOT EXISTS `fserver` (
|
||||
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
||||
`server` CHAR( 255 ) NOT NULL ,
|
||||
`posturl` CHAR( 255 ) NOT NULL ,
|
||||
`key` TEXT NOT NULL,
|
||||
INDEX ( `server` )
|
||||
) ENGINE = MYISAM ");
|
||||
|
||||
q("ALTER TABLE `group` ADD `visible` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `uid` ");
|
||||
|
||||
}
|
||||
|
|
@ -12,26 +12,26 @@
|
|||
</script>
|
||||
<h4><a href="$admurl">Admin</a></h4>
|
||||
<ul class='admin linklist'>
|
||||
<li class='admin link $admin.site.2'><a href='$admin.site.0'>$admin.site.1</a></li>
|
||||
<li class='admin link $admin.users.2'><a href='$admin.users.0'>$admin.users.1</a><span id='pending-update' title='$h_pending'></span></li>
|
||||
<li class='admin link $admin.plugins.2'><a href='$admin.plugins.0'>$admin.plugins.1</a></li>
|
||||
<li class='admin link button $admin.site.2'><a href='$admin.site.0'>$admin.site.1</a></li>
|
||||
<li class='admin link button $admin.users.2'><a href='$admin.users.0'>$admin.users.1</a><span id='pending-update' title='$h_pending'></span></li>
|
||||
<li class='admin link button $admin.plugins.2'><a href='$admin.plugins.0'>$admin.plugins.1</a></li>
|
||||
</ul>
|
||||
|
||||
<ul class='admin linklist'>
|
||||
<li class='admin link $admin.update.2'><a href='$admin.update.0'>$admin.update.1</a></li>
|
||||
<li class='admin link button $admin.update.2'><a href='$admin.update.0'>$admin.update.1</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
{{ if $admin.plugins_admin }}<h4>Plugins</h4>{{ endif }}
|
||||
<ul class='admin linklist'>
|
||||
{{ for $admin.plugins_admin as $l }}
|
||||
<li class='admin link $l.2'><a href='$l.0'>$l.1</a></li>
|
||||
<li class='admin link button $l.2'><a href='$l.0'>$l.1</a></li>
|
||||
{{ endfor }}
|
||||
</ul>
|
||||
|
||||
|
||||
<h4>Logs</h4>
|
||||
<ul class='admin linklist'>
|
||||
<li class='admin link $admin.logs.2'><a href='$admin.logs.0'>$admin.logs.1</a></li>
|
||||
<li class='admin link button $admin.logs.2'><a href='$admin.logs.0'>$admin.logs.1</a></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@
|
|||
{{ inc field_input.tpl with $field=$proxy }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$proxyuser }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$timeout }}{{ endinc }}
|
||||
{{ inc field_input.tpl with $field=$abandon_days }}{{ endinc }}
|
||||
|
||||
<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
{{ for $treads as $tread }}
|
||||
{{ for $threads as $thread }}
|
||||
<div class="tread-wrapper">
|
||||
$tread
|
||||
$thread
|
||||
</div>
|
||||
{{ endfor }}
|
||||
|
||||
{{ if $dropping }}
|
||||
<div id="item-delete-selected" class="fakelink" onclick="deleteCheckedItems();">
|
||||
<div id="item-delete-selected-icon" class="icon drophide" title="$dropping" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></div>
|
||||
|
|
|
|||
1290
view/fr/messages.po
|
|
@ -6,19 +6,18 @@
|
|||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 2.2.1081\n"
|
||||
"Project-Id-Version: 2.3.1123\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-08-24 15:28+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-10-04 11:11+0200\n"
|
||||
"PO-Revision-Date: 2011-10-04 12:05:+0200\n"
|
||||
"Last-Translator: Olivier Migeot <olivier@migeot.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
|
||||
|
||||
# "Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||
#: ../../include/auth.php:27
|
||||
msgid "Logged out."
|
||||
msgstr "Déconnecté."
|
||||
|
|
@ -29,12 +28,15 @@ msgstr "Déconnecté."
|
|||
#: ../../include/auth.php:192 ../../mod/openid.php:118
|
||||
#: ../../include/auth.php:120 ../../include/auth.php:145
|
||||
#: ../../include/auth.php:198 ../../mod/openid.php:122
|
||||
#: ../../include/auth.php:121 ../../include/auth.php:146
|
||||
#: ../../include/auth.php:200 ../../mod/openid.php:63 ../../mod/openid.php:123
|
||||
msgid "Login failed."
|
||||
msgstr "Échec de connexion."
|
||||
|
||||
#: ../../include/auth.php:194 ../../mod/openid.php:73
|
||||
#: ../../include/auth.php:212 ../../mod/openid.php:82
|
||||
#: ../../include/auth.php:218
|
||||
#: ../../include/auth.php:218 ../../include/auth.php:220
|
||||
#: ../../mod/openid.php:83
|
||||
msgid "Welcome back "
|
||||
msgstr "Bienvenue à nouveau, "
|
||||
|
||||
|
|
@ -57,7 +59,10 @@ msgstr "Bienvenue à nouveau, "
|
|||
#: ../../mod/photos.php:890 ../../mod/photos.php:1278
|
||||
#: ../../mod/photos.php:1289 ../../mod/photos.php:45 ../../mod/photos.php:143
|
||||
#: ../../mod/photos.php:857 ../../mod/photos.php:926 ../../mod/photos.php:941
|
||||
#: ../../mod/photos.php:1332 ../../mod/photos.php:1344
|
||||
#: ../../mod/photos.php:1332 ../../mod/photos.php:1344 ../../mod/photos.php:50
|
||||
#: ../../mod/photos.php:144 ../../mod/photos.php:862 ../../mod/photos.php:932
|
||||
#: ../../mod/photos.php:947 ../../mod/photos.php:1347
|
||||
#: ../../mod/photos.php:1359
|
||||
msgid "Contact Photos"
|
||||
msgstr "Photos du contact"
|
||||
|
||||
|
|
@ -77,7 +82,8 @@ msgstr "Groupes"
|
|||
#: ../../include/nav.php:117 ../../mod/contacts.php:321
|
||||
#: ../../include/acl_selectors.php:141 ../../include/acl_selectors.php:156
|
||||
#: ../../include/nav.php:110 ../../mod/contacts.php:322
|
||||
#: ../../mod/contacts.php:358
|
||||
#: ../../mod/contacts.php:358 ../../include/nav.php:128
|
||||
#: ../../mod/contacts.php:350
|
||||
msgid "Contacts"
|
||||
msgstr "Contacts"
|
||||
|
||||
|
|
@ -187,7 +193,7 @@ msgstr "Fétichiste"
|
|||
|
||||
#: ../../include/profile_selectors.php:19
|
||||
msgid "Oodles"
|
||||
msgstr "Oodles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/profile_selectors.php:19
|
||||
msgid "Nonsexual"
|
||||
|
|
@ -231,7 +237,7 @@ msgstr "Amis par intérêt"
|
|||
|
||||
#: ../../include/profile_selectors.php:33
|
||||
msgid "Casual"
|
||||
msgstr "Casual"
|
||||
msgstr "Relation informelle"
|
||||
|
||||
#: ../../include/profile_selectors.php:33
|
||||
msgid "Engaged"
|
||||
|
|
@ -243,7 +249,7 @@ msgstr "Marié"
|
|||
|
||||
#: ../../include/profile_selectors.php:33
|
||||
msgid "Partners"
|
||||
msgstr "Partenaire"
|
||||
msgstr "Avec partenaire"
|
||||
|
||||
#: ../../include/profile_selectors.php:33
|
||||
msgid "Cohabiting"
|
||||
|
|
@ -322,36 +328,44 @@ msgid "Reputable, has my trust"
|
|||
msgstr "Réputé, a toute ma confiance"
|
||||
|
||||
#: ../../include/contact_selectors.php:55
|
||||
#: ../../include/contact_selectors.php:56
|
||||
msgid "Frequently"
|
||||
msgstr "Fréquemment"
|
||||
|
||||
#: ../../include/contact_selectors.php:56
|
||||
#: ../../include/contact_selectors.php:57
|
||||
msgid "Hourly"
|
||||
msgstr "Toutes les heures"
|
||||
|
||||
#: ../../include/contact_selectors.php:57
|
||||
#: ../../include/contact_selectors.php:58
|
||||
msgid "Twice daily"
|
||||
msgstr "Deux fois par jour"
|
||||
|
||||
#: ../../include/contact_selectors.php:58
|
||||
#: ../../include/contact_selectors.php:59
|
||||
msgid "Daily"
|
||||
msgstr "Chaque jour"
|
||||
|
||||
#: ../../include/contact_selectors.php:59
|
||||
#: ../../include/contact_selectors.php:60
|
||||
msgid "Weekly"
|
||||
msgstr "Chaque semaine"
|
||||
|
||||
#: ../../include/contact_selectors.php:60
|
||||
#: ../../include/contact_selectors.php:61
|
||||
msgid "Monthly"
|
||||
msgstr "Chaque mois"
|
||||
|
||||
#: ../../include/group.php:130 ../../include/group.php:145
|
||||
#: ../../include/group.php:146 ../../include/group.php:147
|
||||
#: ../../include/group.php:165
|
||||
msgid "Create a new group"
|
||||
msgstr "Créer un nouveau groupe"
|
||||
|
||||
#: ../../include/group.php:131 ../../include/group.php:146
|
||||
#: ../../include/group.php:147 ../../include/group.php:148
|
||||
#: ../../include/group.php:166
|
||||
msgid "Everybody"
|
||||
msgstr "Tout le monde"
|
||||
|
||||
|
|
@ -435,6 +449,7 @@ msgstr " auparavant"
|
|||
#: ../../include/items.php:1027 ../../include/items.php:1073
|
||||
#: ../../include/profile_advanced.php:36 ../../include/items.php:1071
|
||||
#: ../../include/items.php:1072 ../../include/items.php:1155
|
||||
#: ../../include/items.php:1215
|
||||
msgid "Birthday:"
|
||||
msgstr "Anniversaire:"
|
||||
|
||||
|
|
@ -442,14 +457,15 @@ msgstr "Anniversaire:"
|
|||
#: ../../include/items.php:1411 ../../mod/dfrn_request.php:538
|
||||
#: ../../include/items.php:1409 ../../include/items.php:1426
|
||||
#: ../../mod/dfrn_request.php:542 ../../include/items.php:1537
|
||||
#: ../../mod/dfrn_request.php:539
|
||||
#: ../../mod/dfrn_request.php:539 ../../include/items.php:1610
|
||||
#: ../../mod/dfrn_request.php:540
|
||||
#, fuzzy
|
||||
msgid "[Name Withheld]"
|
||||
msgstr "[Nom non-publié]"
|
||||
|
||||
#: ../../include/items.php:1371 ../../include/items.php:1418
|
||||
#: ../../include/items.php:1416 ../../include/items.php:1433
|
||||
#: ../../include/items.php:1544
|
||||
#: ../../include/items.php:1544 ../../include/items.php:1617
|
||||
#, fuzzy
|
||||
msgid "You have a new follower at "
|
||||
msgstr "Vous avez un nouvel abonné à "
|
||||
|
|
@ -476,18 +492,22 @@ msgstr "Vous avez un nouvel abonné à "
|
|||
#: ../../mod/lostpass.php:44 ../../mod/lostpass.php:106
|
||||
#: ../../mod/regmod.php:54 ../../mod/dfrn_notify.php:294
|
||||
#: ../../mod/dfrn_notify.php:552 ../../mod/dfrn_request.php:548
|
||||
#: ../../include/items.php:1619 ../../mod/dfrn_confirm.php:702
|
||||
#: ../../mod/dfrn_request.php:549
|
||||
msgid "Administrator"
|
||||
msgstr "Administrateur"
|
||||
|
||||
#: ../../include/dba.php:31
|
||||
#, fuzzy, php-format
|
||||
msgid "Cannot locate DNS info for database server '%s'"
|
||||
msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
|
||||
msgstr ""
|
||||
"Impossible de localiser les informations DNS pour le serveur de base de "
|
||||
"données '%s'"
|
||||
|
||||
#: ../../include/nav.php:38 ../../boot.php:837 ../../boot.php:839
|
||||
#: ../../include/nav.php:39 ../../boot.php:842 ../../boot.php:854
|
||||
#: ../../boot.php:855 ../../include/nav.php:41 ../../boot.php:865
|
||||
#: ../../boot.php:667
|
||||
#: ../../boot.php:667 ../../include/nav.php:44 ../../boot.php:673
|
||||
msgid "Logout"
|
||||
msgstr "Se déconnecter"
|
||||
|
||||
|
|
@ -495,13 +515,15 @@ msgstr "Se déconnecter"
|
|||
#: ../../boot.php:819 ../../boot.php:825 ../../include/nav.php:45
|
||||
#: ../../boot.php:822 ../../boot.php:828 ../../boot.php:834 ../../boot.php:840
|
||||
#: ../../boot.php:835 ../../boot.php:841 ../../boot.php:843 ../../boot.php:849
|
||||
#: ../../boot.php:645 ../../boot.php:651
|
||||
#: ../../boot.php:645 ../../boot.php:651 ../../include/nav.php:62
|
||||
#: ../../boot.php:657
|
||||
msgid "Login"
|
||||
msgstr "Connexion"
|
||||
|
||||
#: ../../include/nav.php:56 ../../include/nav.php:91 ../../include/nav.php:57
|
||||
#: ../../include/nav.php:92 ../../include/nav.php:98 ../../include/nav.php:97
|
||||
#: ../../include/nav.php:55 ../../include/nav.php:93
|
||||
#: ../../include/nav.php:55 ../../include/nav.php:93 ../../include/nav.php:73
|
||||
#: ../../include/nav.php:111
|
||||
msgid "Home"
|
||||
msgstr "Accueil"
|
||||
|
||||
|
|
@ -510,12 +532,14 @@ msgstr "Accueil"
|
|||
#: ../../boot.php:814 ../../boot.php:826 ../../boot.php:827
|
||||
#: ../../mod/register.php:466 ../../include/nav.php:59
|
||||
#: ../../mod/register.php:471 ../../boot.php:835 ../../mod/register.php:529
|
||||
#: ../../boot.php:637
|
||||
#: ../../boot.php:637 ../../include/nav.php:77 ../../mod/register.php:528
|
||||
#: ../../boot.php:643
|
||||
msgid "Register"
|
||||
msgstr "S'inscrire"
|
||||
|
||||
#: ../../include/nav.php:64 ../../include/nav.php:65 ../../include/nav.php:71
|
||||
#: ../../include/nav.php:70 ../../include/nav.php:68 ../../include/nav.php:67
|
||||
#: ../../include/nav.php:85
|
||||
#, fuzzy
|
||||
msgid "Apps"
|
||||
msgstr "Applications"
|
||||
|
|
@ -526,45 +550,50 @@ msgstr "Applications"
|
|||
#: ../../boot.php:2093 ../../mod/search.php:21 ../../boot.php:2042
|
||||
#: ../../include/nav.php:73 ../../include/nav.php:71 ../../mod/search.php:26
|
||||
#: ../../boot.php:2060 ../../include/text.php:610 ../../include/nav.php:69
|
||||
#: ../../include/text.php:623 ../../include/nav.php:87 ../../mod/search.php:83
|
||||
msgid "Search"
|
||||
msgstr "Recherche"
|
||||
|
||||
#: ../../include/nav.php:77 ../../include/nav.php:78 ../../include/nav.php:84
|
||||
#: ../../include/nav.php:83 ../../include/nav.php:81
|
||||
#: ../../include/nav.php:83 ../../include/nav.php:81 ../../include/nav.php:99
|
||||
msgid "Directory"
|
||||
msgstr "Annuaire"
|
||||
|
||||
#: ../../include/nav.php:87 ../../include/nav.php:88 ../../include/nav.php:94
|
||||
#: ../../include/nav.php:93 ../../include/nav.php:91
|
||||
#: ../../include/nav.php:93 ../../include/nav.php:91 ../../include/nav.php:109
|
||||
msgid "Network"
|
||||
msgstr "Réseau"
|
||||
|
||||
#: ../../include/nav.php:96 ../../include/nav.php:97 ../../include/nav.php:103
|
||||
#: ../../include/nav.php:102 ../../include/nav.php:99
|
||||
#: ../../include/nav.php:117
|
||||
msgid "Notifications"
|
||||
msgstr "Notifications"
|
||||
|
||||
#: ../../include/nav.php:100 ../../mod/message.php:125
|
||||
#: ../../include/nav.php:101 ../../include/nav.php:107
|
||||
#: ../../include/nav.php:106 ../../include/nav.php:102
|
||||
#: ../../mod/message.php:51
|
||||
#: ../../mod/message.php:51 ../../include/nav.php:120 ../../mod/message.php:58
|
||||
msgid "Messages"
|
||||
msgstr "Messages"
|
||||
|
||||
#: ../../include/nav.php:104 ../../include/nav.php:105
|
||||
#: ../../include/nav.php:111 ../../include/nav.php:110
|
||||
#: ../../include/nav.php:123
|
||||
#, fuzzy
|
||||
msgid "Manage"
|
||||
msgstr "Gérer"
|
||||
|
||||
#: ../../include/nav.php:107 ../../include/nav.php:108
|
||||
#: ../../include/nav.php:114 ../../include/nav.php:113 ../../mod/admin.php:554
|
||||
#: ../../include/nav.php:126 ../../mod/admin.php:558
|
||||
msgid "Settings"
|
||||
msgstr "Réglages"
|
||||
|
||||
#: ../../include/nav.php:109 ../../include/nav.php:110
|
||||
#: ../../mod/profiles.php:456 ../../include/nav.php:116
|
||||
#: ../../include/nav.php:115 ../../mod/profiles.php:458
|
||||
#: ../../include/nav.php:127 ../../boot.php:870
|
||||
msgid "Profiles"
|
||||
msgstr "Profils"
|
||||
|
||||
|
|
@ -613,7 +642,9 @@ msgstr ""
|
|||
#: ../../mod/invite.php:81 ../../mod/fsuggest.php:78 ../../mod/attach.php:33
|
||||
#: ../../mod/photos.php:122 ../../mod/photos.php:849
|
||||
#: ../../mod/notifications.php:62 ../../mod/contacts.php:132
|
||||
#: ../../index.php:266
|
||||
#: ../../index.php:266 ../../include/items.php:2050 ../../mod/events.php:109
|
||||
#: ../../mod/item.php:113 ../../mod/crepair.php:56 ../../mod/photos.php:123
|
||||
#: ../../mod/photos.php:854 ../../mod/contacts.php:125 ../../index.php:279
|
||||
msgid "Permission denied."
|
||||
msgstr "Permission refusée."
|
||||
|
||||
|
|
@ -689,11 +720,18 @@ msgstr "Poster sur Facebook par défaut"
|
|||
#: ../../mod/photos.php:877 ../../mod/photos.php:934 ../../mod/photos.php:1144
|
||||
#: ../../mod/photos.php:1184 ../../mod/photos.php:1223
|
||||
#: ../../mod/photos.php:1254 ../../mod/contacts.php:298
|
||||
#: ../../include/conversation.php:434 ../../mod/localtime.php:45
|
||||
#: ../../mod/admin.php:303 ../../mod/admin.php:468 ../../mod/admin.php:594
|
||||
#: ../../mod/admin.php:659 ../../mod/events.php:340 ../../mod/crepair.php:104
|
||||
#: ../../mod/photos.php:882 ../../mod/photos.php:940 ../../mod/photos.php:1159
|
||||
#: ../../mod/photos.php:1199 ../../mod/photos.php:1238
|
||||
#: ../../mod/photos.php:1269 ../../mod/contacts.php:292
|
||||
msgid "Submit"
|
||||
msgstr "Envoyer"
|
||||
|
||||
#: ../../addon/facebook/facebook.php:174 ../../addon/facebook/facebook.php:354
|
||||
#: ../../addon/facebook/facebook.php:423
|
||||
#: ../../include/contact_selectors.php:78
|
||||
#, fuzzy
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
|
@ -975,6 +1013,7 @@ msgstr "Déposer des fichiers ici pour les téléverser"
|
|||
#: ../../mod/tagrm.php:94 ../../mod/dfrn_request.php:628
|
||||
#: ../../mod/dfrn_request.php:630 ../../mod/dfrn_request.php:644
|
||||
#: ../../addon/js_upload/js_upload.php:45 ../../mod/dfrn_request.php:642
|
||||
#: ../../mod/dfrn_request.php:651
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
|
|
@ -1003,7 +1042,7 @@ msgstr "Le fichier téléversé est trop volumineux"
|
|||
|
||||
#: ../../addon/js_upload/js_upload.php:306 ../../mod/photos.php:559
|
||||
#: ../../mod/photos.php:563 ../../addon/js_upload/js_upload.php:310
|
||||
#: ../../mod/photos.php:608
|
||||
#: ../../mod/photos.php:608 ../../mod/photos.php:613
|
||||
msgid "Image exceeds size limit of "
|
||||
msgstr "L'image dépasse la taille maximale de "
|
||||
|
||||
|
|
@ -1068,7 +1107,7 @@ msgid "Age: "
|
|||
msgstr "Age: "
|
||||
|
||||
#: ../../mod/profiles.php:422 ../../mod/profiles.php:470
|
||||
#: ../../mod/profiles.php:468
|
||||
#: ../../mod/profiles.php:468 ../../boot.php:887
|
||||
msgid "Profile Image"
|
||||
msgstr "Image du profil"
|
||||
|
||||
|
|
@ -1079,6 +1118,7 @@ msgstr "L'image excède la taille limite de %d"
|
|||
|
||||
#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:118
|
||||
#: ../../mod/photos.php:571 ../../mod/photos.php:575 ../../mod/photos.php:630
|
||||
#: ../../mod/photos.php:635
|
||||
msgid "Unable to process image."
|
||||
msgstr "Impossible de traiter l'image."
|
||||
|
||||
|
|
@ -1086,7 +1126,7 @@ msgstr "Impossible de traiter l'image."
|
|||
#: ../../mod/wall_upload.php:95 ../../mod/message.php:93
|
||||
#: ../../mod/item.php:212 ../../mod/item.php:214 ../../include/message.php:82
|
||||
#: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90
|
||||
#: ../../mod/wall_upload.php:97 ../../mod/item.php:296
|
||||
#: ../../mod/wall_upload.php:97 ../../mod/item.php:296 ../../mod/item.php:299
|
||||
msgid "Wall Photos"
|
||||
msgstr "Photos du mur"
|
||||
|
||||
|
|
@ -1094,7 +1134,8 @@ msgstr "Photos du mur"
|
|||
#: ../../mod/photos.php:589 ../../mod/profile_photo.php:232
|
||||
#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:241
|
||||
#: ../../mod/photos.php:593 ../../mod/wall_upload.php:84
|
||||
#: ../../mod/photos.php:650
|
||||
#: ../../mod/photos.php:650 ../../mod/profile_photo.php:247
|
||||
#: ../../mod/photos.php:655
|
||||
#, fuzzy
|
||||
msgid "Image upload failed."
|
||||
msgstr "Le téléversement de l'image a échoué."
|
||||
|
|
@ -1167,7 +1208,9 @@ msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
|
|||
#: ../../mod/register.php:216 ../../mod/register.php:234
|
||||
#: ../../mod/register.php:237 ../../mod/register.php:265
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
|
||||
msgstr ""
|
||||
"Une erreur est survenue lors de la création de votre profil par défaut. "
|
||||
"Merci de recommencer."
|
||||
|
||||
#: ../../mod/register.php:267 ../../mod/register.php:274
|
||||
#: ../../mod/register.php:281 ../../mod/profile_photo.php:58
|
||||
|
|
@ -1186,7 +1229,10 @@ msgstr "Une erreur est survenue lors de la création de votre profil par défaut
|
|||
#: ../../mod/photos.php:890 ../../mod/register.php:316
|
||||
#: ../../mod/register.php:323 ../../mod/register.php:330
|
||||
#: ../../mod/photos.php:143 ../../mod/photos.php:577 ../../mod/photos.php:926
|
||||
#: ../../mod/photos.php:941
|
||||
#: ../../mod/photos.php:941 ../../mod/profile_photo.php:166
|
||||
#: ../../mod/profile_photo.php:242 ../../mod/profile_photo.php:251
|
||||
#: ../../mod/photos.php:144 ../../mod/photos.php:579 ../../mod/photos.php:932
|
||||
#: ../../mod/photos.php:947
|
||||
msgid "Profile Photos"
|
||||
msgstr "Photos du profil"
|
||||
|
||||
|
|
@ -1273,7 +1319,7 @@ msgstr "Inclure votre profil dans l'annuaire des membres?"
|
|||
#: ../../mod/profiles.php:354 ../../mod/register.php:498
|
||||
#: ../../mod/settings.php:415 ../../mod/settings.php:421
|
||||
#: ../../mod/settings.php:429 ../../mod/settings.php:433
|
||||
#: ../../mod/dfrn_request.php:632
|
||||
#: ../../mod/dfrn_request.php:632 ../../mod/dfrn_request.php:641
|
||||
msgid "Yes"
|
||||
msgstr "Oui"
|
||||
|
||||
|
|
@ -1286,7 +1332,7 @@ msgstr "Oui"
|
|||
#: ../../mod/profiles.php:355 ../../mod/register.php:499
|
||||
#: ../../mod/settings.php:415 ../../mod/settings.php:421
|
||||
#: ../../mod/settings.php:429 ../../mod/settings.php:433
|
||||
#: ../../mod/dfrn_request.php:633
|
||||
#: ../../mod/dfrn_request.php:633 ../../mod/dfrn_request.php:642
|
||||
msgid "No"
|
||||
msgstr "Non"
|
||||
|
||||
|
|
@ -1313,26 +1359,27 @@ msgstr ""
|
|||
#: ../../mod/register.php:431 ../../mod/register.php:449
|
||||
#: ../../mod/register.php:452 ../../mod/register.php:457
|
||||
#: ../../mod/register.php:515 ../../mod/admin.php:301
|
||||
#: ../../mod/register.php:514 ../../mod/admin.php:304
|
||||
msgid "Registration"
|
||||
msgstr "Inscription"
|
||||
|
||||
#: ../../mod/register.php:439 ../../mod/register.php:457
|
||||
#: ../../mod/register.php:460 ../../mod/register.php:465
|
||||
#: ../../mod/register.php:523
|
||||
#: ../../mod/register.php:523 ../../mod/register.php:522
|
||||
#, fuzzy
|
||||
msgid "Your Full Name (e.g. Joe Smith): "
|
||||
msgstr "Votre nom complet (p.ex. Michel Dupont): "
|
||||
|
||||
#: ../../mod/register.php:440 ../../mod/register.php:458
|
||||
#: ../../mod/register.php:461 ../../mod/register.php:466
|
||||
#: ../../mod/register.php:524
|
||||
#: ../../mod/register.php:524 ../../mod/register.php:523
|
||||
#, fuzzy
|
||||
msgid "Your Email Address: "
|
||||
msgstr "Votre adresse courriel: "
|
||||
|
||||
#: ../../mod/register.php:441 ../../mod/register.php:459
|
||||
#: ../../mod/register.php:462 ../../mod/register.php:467
|
||||
#: ../../mod/register.php:525
|
||||
#: ../../mod/register.php:525 ../../mod/register.php:524
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
|
|
@ -1344,11 +1391,11 @@ msgstr ""
|
|||
|
||||
#: ../../mod/register.php:442 ../../mod/register.php:460
|
||||
#: ../../mod/register.php:463 ../../mod/register.php:468
|
||||
#: ../../mod/register.php:526
|
||||
#: ../../mod/register.php:526 ../../mod/register.php:525
|
||||
msgid "Choose a nickname: "
|
||||
msgstr "Choisir un pseudo: "
|
||||
|
||||
#: ../../mod/apps.php:6
|
||||
#: ../../mod/apps.php:6 ../../mod/apps.php:4
|
||||
#, fuzzy
|
||||
msgid "Applications"
|
||||
msgstr "Applications"
|
||||
|
|
@ -1367,6 +1414,7 @@ msgstr "Vue des nouveautés"
|
|||
#: ../../mod/profile.php:130 ../../mod/network.php:75
|
||||
#: ../../mod/profile.php:131 ../../include/conversation.php:674
|
||||
#: ../../include/conversation.php:699 ../../mod/message.php:98
|
||||
#: ../../include/conversation.php:747 ../../mod/message.php:108
|
||||
#, fuzzy
|
||||
msgid "Please enter a link URL:"
|
||||
msgstr "Entrez un lien web:"
|
||||
|
|
@ -1375,7 +1423,7 @@ msgstr "Entrez un lien web:"
|
|||
#: ../../mod/profile.php:138 ../../mod/mprofile.php:137
|
||||
#: ../../mod/network.php:78 ../../mod/profile.php:131 ../../mod/network.php:76
|
||||
#: ../../mod/profile.php:132 ../../include/conversation.php:675
|
||||
#: ../../include/conversation.php:700
|
||||
#: ../../include/conversation.php:700 ../../include/conversation.php:748
|
||||
#, fuzzy
|
||||
msgid "Please enter a YouTube link:"
|
||||
msgstr "Entrez un lien Youtube:"
|
||||
|
|
@ -1384,7 +1432,7 @@ msgstr "Entrez un lien Youtube:"
|
|||
#: ../../mod/profile.php:139 ../../mod/mprofile.php:138
|
||||
#: ../../mod/network.php:79 ../../mod/profile.php:132 ../../mod/network.php:77
|
||||
#: ../../mod/profile.php:133 ../../include/conversation.php:676
|
||||
#: ../../include/conversation.php:701
|
||||
#: ../../include/conversation.php:701 ../../include/conversation.php:749
|
||||
#, fuzzy
|
||||
msgid "Please enter a video(.ogg) link/URL:"
|
||||
msgstr "Entrez un lien vidéo (.ogg):"
|
||||
|
|
@ -1393,7 +1441,7 @@ msgstr "Entrez un lien vidéo (.ogg):"
|
|||
#: ../../mod/profile.php:140 ../../mod/mprofile.php:139
|
||||
#: ../../mod/network.php:80 ../../mod/profile.php:133 ../../mod/network.php:78
|
||||
#: ../../mod/profile.php:134 ../../include/conversation.php:677
|
||||
#: ../../include/conversation.php:702
|
||||
#: ../../include/conversation.php:702 ../../include/conversation.php:750
|
||||
#, fuzzy
|
||||
msgid "Please enter an audio(.ogg) link/URL:"
|
||||
msgstr "Entrez un lien audio (.ogg):"
|
||||
|
|
@ -1402,7 +1450,7 @@ msgstr "Entrez un lien audio (.ogg):"
|
|||
#: ../../mod/profile.php:141 ../../mod/mprofile.php:140
|
||||
#: ../../mod/network.php:81 ../../mod/profile.php:134 ../../mod/network.php:79
|
||||
#: ../../mod/profile.php:135 ../../include/conversation.php:678
|
||||
#: ../../include/conversation.php:703
|
||||
#: ../../include/conversation.php:703 ../../include/conversation.php:751
|
||||
#, fuzzy
|
||||
msgid "Where are you right now?"
|
||||
msgstr "Où êtes-vous présentemment?"
|
||||
|
|
@ -1422,6 +1470,7 @@ msgstr "Où êtes-vous présentemment?"
|
|||
#: ../../include/conversation.php:359 ../../include/conversation.php:718
|
||||
#: ../../mod/photos.php:1111 ../../include/conversation.php:392
|
||||
#: ../../include/conversation.php:746 ../../mod/photos.php:1164
|
||||
#: ../../include/conversation.php:794 ../../mod/photos.php:1179
|
||||
#, fuzzy
|
||||
msgid "Share"
|
||||
msgstr "Partager"
|
||||
|
|
@ -1436,7 +1485,8 @@ msgstr "Partager"
|
|||
#: ../../mod/profile.php:160 ../../include/conversation.php:719
|
||||
#: ../../mod/editpost.php:89 ../../include/conversation.php:747
|
||||
#: ../../mod/message.php:114 ../../mod/message.php:248
|
||||
#: ../../mod/editpost.php:91
|
||||
#: ../../mod/editpost.php:91 ../../include/conversation.php:795
|
||||
#: ../../mod/message.php:124 ../../mod/message.php:257
|
||||
msgid "Upload photo"
|
||||
msgstr "Joindre photo"
|
||||
|
||||
|
|
@ -1450,7 +1500,8 @@ msgstr "Joindre photo"
|
|||
#: ../../mod/profile.php:161 ../../include/conversation.php:720
|
||||
#: ../../mod/editpost.php:90 ../../include/conversation.php:749
|
||||
#: ../../mod/message.php:115 ../../mod/message.php:249
|
||||
#: ../../mod/editpost.php:93
|
||||
#: ../../mod/editpost.php:93 ../../include/conversation.php:797
|
||||
#: ../../mod/message.php:125 ../../mod/message.php:258
|
||||
msgid "Insert web link"
|
||||
msgstr "Insérer lien web"
|
||||
|
||||
|
|
@ -1461,7 +1512,7 @@ msgstr "Insérer lien web"
|
|||
#: ../../mod/profile.php:161 ../../mod/network.php:106
|
||||
#: ../../mod/profile.php:162 ../../include/conversation.php:721
|
||||
#: ../../mod/editpost.php:91 ../../include/conversation.php:750
|
||||
#: ../../mod/editpost.php:94
|
||||
#: ../../mod/editpost.php:94 ../../include/conversation.php:798
|
||||
#, fuzzy
|
||||
msgid "Insert YouTube video"
|
||||
msgstr "Insérer une vidéo Youtube"
|
||||
|
|
@ -1473,7 +1524,7 @@ msgstr "Insérer une vidéo Youtube"
|
|||
#: ../../mod/profile.php:162 ../../mod/network.php:107
|
||||
#: ../../mod/profile.php:163 ../../include/conversation.php:722
|
||||
#: ../../mod/editpost.php:92 ../../include/conversation.php:751
|
||||
#: ../../mod/editpost.php:95
|
||||
#: ../../mod/editpost.php:95 ../../include/conversation.php:799
|
||||
#, fuzzy
|
||||
msgid "Insert Vorbis [.ogg] video"
|
||||
msgstr "Insérer un lien vidéo Vorbis [.ogg]"
|
||||
|
|
@ -1485,7 +1536,7 @@ msgstr "Insérer un lien vidéo Vorbis [.ogg]"
|
|||
#: ../../mod/profile.php:163 ../../mod/network.php:108
|
||||
#: ../../mod/profile.php:164 ../../include/conversation.php:723
|
||||
#: ../../mod/editpost.php:93 ../../include/conversation.php:752
|
||||
#: ../../mod/editpost.php:96
|
||||
#: ../../mod/editpost.php:96 ../../include/conversation.php:800
|
||||
#, fuzzy
|
||||
msgid "Insert Vorbis [.ogg] audio"
|
||||
msgstr "Insérer un lien audio Vorbis [.ogg]"
|
||||
|
|
@ -1497,7 +1548,7 @@ msgstr "Insérer un lien audio Vorbis [.ogg]"
|
|||
#: ../../mod/profile.php:164 ../../mod/network.php:109
|
||||
#: ../../mod/profile.php:165 ../../include/conversation.php:724
|
||||
#: ../../mod/editpost.php:94 ../../include/conversation.php:753
|
||||
#: ../../mod/editpost.php:97
|
||||
#: ../../mod/editpost.php:97 ../../include/conversation.php:801
|
||||
#, fuzzy
|
||||
msgid "Set your location"
|
||||
msgstr "Définir votre localisation"
|
||||
|
|
@ -1509,7 +1560,7 @@ msgstr "Définir votre localisation"
|
|||
#: ../../mod/profile.php:165 ../../mod/network.php:110
|
||||
#: ../../mod/profile.php:166 ../../include/conversation.php:725
|
||||
#: ../../mod/editpost.php:95 ../../include/conversation.php:754
|
||||
#: ../../mod/editpost.php:98
|
||||
#: ../../mod/editpost.php:98 ../../include/conversation.php:802
|
||||
#, fuzzy
|
||||
msgid "Clear browser location"
|
||||
msgstr "Effacer la localisation du navigateur"
|
||||
|
|
@ -1533,7 +1584,10 @@ msgstr "Effacer la localisation du navigateur"
|
|||
#: ../../mod/editpost.php:96 ../../include/conversation.php:393
|
||||
#: ../../include/conversation.php:756 ../../mod/message.php:116
|
||||
#: ../../mod/message.php:250 ../../mod/photos.php:1165
|
||||
#: ../../mod/editpost.php:99
|
||||
#: ../../mod/editpost.php:99 ../../include/conversation.php:251
|
||||
#: ../../include/conversation.php:559 ../../include/conversation.php:804
|
||||
#: ../../mod/message.php:126 ../../mod/message.php:259
|
||||
#: ../../mod/photos.php:1180
|
||||
msgid "Please wait"
|
||||
msgstr "Patientez"
|
||||
|
||||
|
|
@ -1544,7 +1598,7 @@ msgstr "Patientez"
|
|||
#: ../../mod/profile.php:168 ../../mod/network.php:113
|
||||
#: ../../mod/profile.php:169 ../../include/conversation.php:728
|
||||
#: ../../mod/editpost.php:97 ../../include/conversation.php:757
|
||||
#: ../../mod/editpost.php:100
|
||||
#: ../../mod/editpost.php:100 ../../include/conversation.php:805
|
||||
#, fuzzy
|
||||
msgid "Permission settings"
|
||||
msgstr "Réglages des permissions"
|
||||
|
|
@ -1556,7 +1610,7 @@ msgstr "Réglages des permissions"
|
|||
#: ../../mod/profile.php:175 ../../mod/network.php:119
|
||||
#: ../../mod/profile.php:176 ../../include/conversation.php:734
|
||||
#: ../../mod/editpost.php:103 ../../include/conversation.php:765
|
||||
#: ../../mod/editpost.php:108
|
||||
#: ../../mod/editpost.php:108 ../../include/conversation.php:813
|
||||
#, fuzzy
|
||||
msgid "CC: email addresses"
|
||||
msgstr "CC: adresse de courriel"
|
||||
|
|
@ -1568,26 +1622,27 @@ msgstr "CC: adresse de courriel"
|
|||
#: ../../mod/profile.php:177 ../../mod/network.php:121
|
||||
#: ../../mod/profile.php:178 ../../include/conversation.php:736
|
||||
#: ../../mod/editpost.php:105 ../../include/conversation.php:768
|
||||
#: ../../mod/editpost.php:111
|
||||
#: ../../mod/editpost.php:111 ../../include/conversation.php:816
|
||||
#, fuzzy
|
||||
msgid "Example: bob@example.com, mary@example.com"
|
||||
msgstr "Exemple: bob@exemple.com, mary@exemple.com"
|
||||
|
||||
#: ../../mod/network.php:156 ../../mod/network.php:158
|
||||
#: ../../mod/network.php:166 ../../mod/network.php:164
|
||||
#: ../../mod/network.php:126
|
||||
#: ../../mod/network.php:126 ../../mod/network.php:270
|
||||
msgid "No such group"
|
||||
msgstr "Groupe inexistant"
|
||||
|
||||
#: ../../mod/network.php:167 ../../mod/network.php:169
|
||||
#: ../../mod/network.php:177 ../../mod/network.php:175
|
||||
#: ../../mod/network.php:137
|
||||
#: ../../mod/network.php:137 ../../mod/network.php:281
|
||||
msgid "Group is empty"
|
||||
msgstr "Groupe vide"
|
||||
|
||||
#: ../../mod/network.php:171 ../../mod/network.php:173
|
||||
#: ../../mod/network.php:181 ../../mod/network.php:179
|
||||
#: ../../mod/network.php:141 ../../mod/network.php:180
|
||||
#: ../../mod/network.php:286
|
||||
msgid "Group: "
|
||||
msgstr "Groupe: "
|
||||
|
||||
|
|
@ -1607,7 +1662,7 @@ msgstr "Voir le profil de $name"
|
|||
#: ../../mod/network.php:346 ../../mod/search.php:140
|
||||
#: ../../include/conversation.php:134 ../../include/conversation.php:132
|
||||
#: ../../include/conversation.php:142 ../../include/conversation.php:200
|
||||
#: ../../include/conversation.php:230
|
||||
#: ../../include/conversation.php:230 ../../include/conversation.php:250
|
||||
msgid "View in context"
|
||||
msgstr "Voir dans le contexte"
|
||||
|
||||
|
|
@ -1620,6 +1675,7 @@ msgstr "Voir dans le contexte"
|
|||
#: ../../include/conversation.php:250 ../../mod/photos.php:965
|
||||
#: ../../include/conversation.php:309 ../../mod/photos.php:989
|
||||
#: ../../include/conversation.php:342 ../../mod/photos.php:1040
|
||||
#: ../../include/conversation.php:369 ../../mod/photos.php:1055
|
||||
msgid "Private Message"
|
||||
msgstr "Message privé"
|
||||
|
||||
|
|
@ -1632,6 +1688,7 @@ msgstr "Message privé"
|
|||
#: ../../include/conversation.php:298 ../../mod/photos.php:1087
|
||||
#: ../../include/conversation.php:357 ../../mod/photos.php:1109
|
||||
#: ../../include/conversation.php:390 ../../mod/photos.php:1162
|
||||
#: ../../include/conversation.php:416 ../../mod/photos.php:1177
|
||||
#, fuzzy
|
||||
msgid "I like this (toggle)"
|
||||
msgstr "I like this (bascule)"
|
||||
|
|
@ -1645,6 +1702,7 @@ msgstr "I like this (bascule)"
|
|||
#: ../../include/conversation.php:299 ../../mod/photos.php:1088
|
||||
#: ../../include/conversation.php:358 ../../mod/photos.php:1110
|
||||
#: ../../include/conversation.php:391 ../../mod/photos.php:1163
|
||||
#: ../../include/conversation.php:417 ../../mod/photos.php:1178
|
||||
#, fuzzy
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr "I don't like this (bascule)"
|
||||
|
|
@ -1663,6 +1721,8 @@ msgstr "I don't like this (bascule)"
|
|||
#: ../../mod/photos.php:1167 ../../mod/photos.php:1198
|
||||
#: ../../include/conversation.php:406 ../../mod/photos.php:1181
|
||||
#: ../../mod/photos.php:1220 ../../mod/photos.php:1251
|
||||
#: ../../include/conversation.php:431 ../../mod/photos.php:1196
|
||||
#: ../../mod/photos.php:1235 ../../mod/photos.php:1266
|
||||
msgid "This is you"
|
||||
msgstr "C'est vous"
|
||||
|
||||
|
|
@ -1677,6 +1737,8 @@ msgstr "C'est vous"
|
|||
#: ../../include/group.php:169 ../../mod/editpost.php:88
|
||||
#: ../../include/conversation.php:417 ../../include/group.php:172
|
||||
#: ../../include/group.php:173 ../../mod/editpost.php:90
|
||||
#: ../../include/conversation.php:441 ../../include/group.php:190
|
||||
#: ../../include/group.php:191
|
||||
#, fuzzy
|
||||
msgid "Edit"
|
||||
msgstr "Éditer"
|
||||
|
|
@ -1694,6 +1756,8 @@ msgstr "Éditer"
|
|||
#: ../../include/conversation.php:174 ../../include/conversation.php:386
|
||||
#: ../../mod/photos.php:1228 ../../include/conversation.php:427
|
||||
#: ../../mod/admin.php:471 ../../mod/group.php:154 ../../mod/photos.php:1281
|
||||
#: ../../include/conversation.php:211 ../../include/conversation.php:454
|
||||
#: ../../mod/admin.php:475 ../../mod/photos.php:1296
|
||||
#, fuzzy
|
||||
msgid "Delete"
|
||||
msgstr "Supprimer"
|
||||
|
|
@ -1710,7 +1774,7 @@ msgstr "Voir le profil de $owner_name"
|
|||
#: ../../mod/network.php:565 ../../mod/display.php:266
|
||||
#: ../../include/conversation.php:363 ../../include/conversation.php:378
|
||||
#: ../../include/conversation.php:388 ../../include/conversation.php:443
|
||||
#: ../../include/conversation.php:490
|
||||
#: ../../include/conversation.php:490 ../../include/conversation.php:533
|
||||
#, fuzzy
|
||||
msgid "to"
|
||||
msgstr "à"
|
||||
|
|
@ -1720,7 +1784,7 @@ msgstr "à"
|
|||
#: ../../mod/network.php:566 ../../mod/display.php:267
|
||||
#: ../../include/conversation.php:364 ../../include/conversation.php:379
|
||||
#: ../../include/conversation.php:389 ../../include/conversation.php:444
|
||||
#: ../../include/conversation.php:491
|
||||
#: ../../include/conversation.php:491 ../../include/conversation.php:534
|
||||
#, fuzzy
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "Inter-mur"
|
||||
|
|
@ -1730,7 +1794,7 @@ msgstr "Inter-mur"
|
|||
#: ../../mod/network.php:567 ../../mod/display.php:268
|
||||
#: ../../include/conversation.php:365 ../../include/conversation.php:380
|
||||
#: ../../include/conversation.php:390 ../../include/conversation.php:445
|
||||
#: ../../include/conversation.php:492
|
||||
#: ../../include/conversation.php:492 ../../include/conversation.php:535
|
||||
#, fuzzy
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "en Inter-mur:"
|
||||
|
|
@ -1739,6 +1803,8 @@ msgstr "en Inter-mur:"
|
|||
#: ../../include/conversation.php:20 ../../mod/photos.php:473
|
||||
#: ../../include/conversation.php:31 ../../include/diaspora.php:786
|
||||
#: ../../mod/like.php:106 ../../mod/photos.php:508
|
||||
#: ../../include/diaspora.php:841 ../../mod/like.php:127
|
||||
#: ../../mod/photos.php:510
|
||||
#, fuzzy
|
||||
msgid "photo"
|
||||
msgstr "la photo"
|
||||
|
|
@ -1747,6 +1813,7 @@ msgstr "la photo"
|
|||
#: ../../addon/facebook/facebook.php:745 ../../include/conversation.php:26
|
||||
#: ../../include/conversation.php:35 ../../include/diaspora.php:786
|
||||
#: ../../addon/facebook/facebook.php:958 ../../mod/like.php:106
|
||||
#: ../../include/diaspora.php:841 ../../mod/like.php:127
|
||||
#, fuzzy
|
||||
msgid "status"
|
||||
msgstr "le statut"
|
||||
|
|
@ -1754,13 +1821,15 @@ msgstr "le statut"
|
|||
#: ../../mod/like.php:127 ../../include/conversation.php:25
|
||||
#: ../../addon/facebook/facebook.php:749 ../../include/conversation.php:43
|
||||
#: ../../include/diaspora.php:802 ../../addon/facebook/facebook.php:962
|
||||
#: ../../mod/like.php:123
|
||||
#: ../../mod/like.php:123 ../../include/diaspora.php:857
|
||||
#: ../../mod/like.php:144
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr "%1$s aime %3$s de %2$s"
|
||||
|
||||
#: ../../mod/like.php:129 ../../include/conversation.php:28
|
||||
#: ../../include/conversation.php:46 ../../mod/like.php:125
|
||||
#: ../../mod/like.php:146
|
||||
#, fuzzy, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
msgstr "%1$s n'aime pas %3$s de %2$s"
|
||||
|
|
@ -1768,7 +1837,8 @@ msgstr "%1$s n'aime pas %3$s de %2$s"
|
|||
#: ../../mod/dfrn_confirm.php:114 ../../mod/contacts.php:209
|
||||
#: ../../mod/contacts.php:214 ../../mod/crepair.php:68
|
||||
#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
|
||||
#: ../../mod/contacts.php:242
|
||||
#: ../../mod/contacts.php:242 ../../mod/crepair.php:70
|
||||
#: ../../mod/contacts.php:235
|
||||
msgid "Contact not found."
|
||||
msgstr "Contact introuvable."
|
||||
|
||||
|
|
@ -1829,6 +1899,7 @@ msgstr "Pas d'entrée pour ce contact sur notre site."
|
|||
|
||||
#: ../../mod/dfrn_confirm.php:555 ../../mod/dfrn_confirm.php:560
|
||||
#: ../../mod/dfrn_confirm.php:562 ../../mod/dfrn_confirm.php:600
|
||||
#: ../../mod/dfrn_confirm.php:605
|
||||
msgid ""
|
||||
"The ID provided by your system is a duplicate on our system. It should work "
|
||||
"if you try again."
|
||||
|
|
@ -1838,16 +1909,20 @@ msgstr ""
|
|||
|
||||
#: ../../mod/dfrn_confirm.php:566 ../../mod/dfrn_confirm.php:571
|
||||
#: ../../mod/dfrn_confirm.php:573 ../../mod/dfrn_confirm.php:611
|
||||
#: ../../mod/dfrn_confirm.php:616
|
||||
msgid "Unable to set your contact credentials on our system."
|
||||
msgstr "Impossible de vous définir des permissions sur notre système."
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:619 ../../mod/dfrn_confirm.php:624
|
||||
#: ../../mod/dfrn_confirm.php:626 ../../mod/dfrn_confirm.php:665
|
||||
#: ../../mod/dfrn_confirm.php:670
|
||||
msgid "Unable to update your contact profile details on our system"
|
||||
msgstr "Impossible de mettre les détails de votre profil à jour sur notre système"
|
||||
msgstr ""
|
||||
"Impossible de mettre les détails de votre profil à jour sur notre système"
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:648 ../../mod/dfrn_confirm.php:653
|
||||
#: ../../mod/dfrn_confirm.php:655 ../../mod/dfrn_confirm.php:695
|
||||
#: ../../mod/dfrn_confirm.php:700
|
||||
#, fuzzy, php-format
|
||||
msgid "Connection accepted at %s"
|
||||
msgstr "Connexion acceptée avec %s"
|
||||
|
|
@ -1859,6 +1934,7 @@ msgstr "Connexion acceptée avec %s"
|
|||
#: ../../mod/display.php:142 ../../mod/item.php:609
|
||||
#: ../../include/items.php:1860 ../../mod/display.php:112
|
||||
#: ../../mod/admin.php:118 ../../mod/admin.php:505
|
||||
#: ../../include/items.php:1962 ../../mod/admin.php:509
|
||||
msgid "Item not found."
|
||||
msgstr "Élément introuvable."
|
||||
|
||||
|
|
@ -1889,72 +1965,75 @@ msgstr "Message envoyé."
|
|||
msgid "Message could not be sent."
|
||||
msgstr "Impossible d'envoyer le message."
|
||||
|
||||
#: ../../mod/message.php:126 ../../mod/message.php:52
|
||||
#: ../../mod/message.php:126 ../../mod/message.php:52 ../../mod/message.php:59
|
||||
msgid "Inbox"
|
||||
msgstr "Messages entrants"
|
||||
|
||||
#: ../../mod/message.php:127 ../../mod/message.php:53
|
||||
#: ../../mod/message.php:127 ../../mod/message.php:53 ../../mod/message.php:60
|
||||
msgid "Outbox"
|
||||
msgstr "Messages sortants"
|
||||
|
||||
#: ../../mod/message.php:128 ../../mod/message.php:54
|
||||
#: ../../mod/message.php:128 ../../mod/message.php:54 ../../mod/message.php:61
|
||||
msgid "New Message"
|
||||
msgstr "Nouveau message"
|
||||
|
||||
#: ../../mod/message.php:142 ../../mod/message.php:68
|
||||
#: ../../mod/message.php:142 ../../mod/message.php:68 ../../mod/message.php:76
|
||||
msgid "Message deleted."
|
||||
msgstr "Message supprimé."
|
||||
|
||||
#: ../../mod/message.php:158 ../../mod/message.php:84
|
||||
#: ../../mod/message.php:158 ../../mod/message.php:84 ../../mod/message.php:92
|
||||
msgid "Conversation removed."
|
||||
msgstr "Conversation supprimée."
|
||||
|
||||
#: ../../mod/message.php:178 ../../mod/message.php:180
|
||||
#: ../../mod/message.php:106
|
||||
#: ../../mod/message.php:106 ../../mod/message.php:116
|
||||
msgid "Send Private Message"
|
||||
msgstr "Envoyer un message privé"
|
||||
|
||||
#: ../../mod/message.php:179 ../../mod/message.php:313
|
||||
#: ../../mod/message.php:181 ../../mod/message.php:315
|
||||
#: ../../mod/message.php:107 ../../mod/message.php:241
|
||||
#: ../../mod/message.php:117 ../../mod/message.php:250
|
||||
msgid "To:"
|
||||
msgstr "À:"
|
||||
|
||||
#: ../../mod/message.php:180 ../../mod/message.php:314
|
||||
#: ../../mod/message.php:182 ../../mod/message.php:316
|
||||
#: ../../mod/message.php:108 ../../mod/message.php:242
|
||||
#: ../../mod/message.php:118 ../../mod/message.php:251
|
||||
msgid "Subject:"
|
||||
msgstr "Sujet:"
|
||||
|
||||
#: ../../mod/message.php:183 ../../mod/message.php:317 ../../mod/invite.php:59
|
||||
#: ../../mod/message.php:185 ../../mod/message.php:319 ../../mod/invite.php:63
|
||||
#: ../../mod/message.php:111 ../../mod/message.php:245
|
||||
#: ../../mod/invite.php:101
|
||||
#: ../../mod/invite.php:101 ../../mod/message.php:121
|
||||
#: ../../mod/message.php:254
|
||||
msgid "Your message:"
|
||||
msgstr "Votre message:"
|
||||
|
||||
#: ../../mod/message.php:222 ../../mod/message.php:224
|
||||
#: ../../mod/message.php:150
|
||||
#: ../../mod/message.php:150 ../../mod/message.php:159
|
||||
msgid "No messages."
|
||||
msgstr "Aucun message."
|
||||
|
||||
#: ../../mod/message.php:235 ../../mod/message.php:237
|
||||
#: ../../mod/message.php:163
|
||||
#: ../../mod/message.php:163 ../../mod/message.php:172
|
||||
msgid "Delete conversation"
|
||||
msgstr "Effacer conversation"
|
||||
|
||||
#: ../../mod/message.php:265 ../../mod/message.php:267
|
||||
#: ../../mod/message.php:193
|
||||
#: ../../mod/message.php:193 ../../mod/message.php:202
|
||||
msgid "Message not available."
|
||||
msgstr "Message indisponible."
|
||||
|
||||
#: ../../mod/message.php:302 ../../mod/message.php:304
|
||||
#: ../../mod/message.php:230
|
||||
#: ../../mod/message.php:230 ../../mod/message.php:239
|
||||
msgid "Delete message"
|
||||
msgstr "Effacer message"
|
||||
|
||||
#: ../../mod/message.php:312 ../../mod/message.php:314
|
||||
#: ../../mod/message.php:240
|
||||
#: ../../mod/message.php:240 ../../mod/message.php:249
|
||||
msgid "Send Reply"
|
||||
msgstr "Répondre"
|
||||
|
||||
|
|
@ -2003,7 +2082,9 @@ msgstr "Bienvenue sur Friendika."
|
|||
#: ../../mod/install.php:124 ../../mod/install.php:138
|
||||
#: ../../mod/install.php:148 ../../mod/install.php:153
|
||||
msgid "Could not find a command line version of PHP in the web server PATH."
|
||||
msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
|
||||
msgstr ""
|
||||
"Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH "
|
||||
"du serveur web."
|
||||
|
||||
#: ../../mod/install.php:125 ../../mod/install.php:139
|
||||
#: ../../mod/install.php:149 ../../mod/install.php:154
|
||||
|
|
@ -2235,11 +2316,12 @@ msgstr "Visible par:"
|
|||
msgid "Welcome to %s"
|
||||
msgstr "Bienvenue sur %s"
|
||||
|
||||
#: ../../mod/item.php:37 ../../mod/item.php:81
|
||||
#: ../../mod/item.php:37 ../../mod/item.php:81 ../../mod/item.php:84
|
||||
msgid "Unable to locate original post."
|
||||
msgstr "Impossible de localiser l'article original."
|
||||
|
||||
#: ../../mod/item.php:126 ../../mod/item.php:128 ../../mod/item.php:196
|
||||
#: ../../mod/item.php:199
|
||||
msgid "Empty post discarded."
|
||||
msgstr "Article vide défaussé."
|
||||
|
||||
|
|
@ -2254,11 +2336,13 @@ msgid "%s posted on your profile wall at %s"
|
|||
msgstr "%s a posté sur votre mur : %s"
|
||||
|
||||
#: ../../mod/item.php:523 ../../mod/item.php:534 ../../mod/item.php:765
|
||||
#: ../../mod/item.php:808
|
||||
#, fuzzy
|
||||
msgid "System error. Post not saved."
|
||||
msgstr "Erreur système.Publication non sauvée."
|
||||
|
||||
#: ../../mod/item.php:541 ../../mod/item.php:553 ../../mod/item.php:784
|
||||
#: ../../mod/item.php:833
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"This message was sent to you by %s, a member of the Friendika social network."
|
||||
|
|
@ -2271,6 +2355,7 @@ msgid "You may visit them online at"
|
|||
msgstr "Vous pouvez leur faire une visite sur"
|
||||
|
||||
#: ../../mod/item.php:545 ../../mod/item.php:556 ../../mod/item.php:787
|
||||
#: ../../mod/item.php:836
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please contact the sender by replying to this post if you do not wish to "
|
||||
|
|
@ -2280,6 +2365,7 @@ msgstr ""
|
|||
"souhaitez pas recevoir ces messages."
|
||||
|
||||
#: ../../mod/item.php:547 ../../mod/item.php:558 ../../mod/item.php:789
|
||||
#: ../../mod/item.php:838
|
||||
#, fuzzy, php-format
|
||||
msgid "%s posted an update."
|
||||
msgstr "%s a publié une mise à jour."
|
||||
|
|
@ -2307,7 +2393,7 @@ msgstr "Liste des membres mise à jour."
|
|||
|
||||
#: ../../mod/group.php:88 ../../index.php:250 ../../index.php:264
|
||||
#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:266
|
||||
#: ../../index.php:265
|
||||
#: ../../index.php:265 ../../index.php:278
|
||||
msgid "Permission denied"
|
||||
msgstr "Permission refusée"
|
||||
|
||||
|
|
@ -2329,7 +2415,7 @@ msgstr "Image envoyée, mais impossible de la retailler."
|
|||
#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68
|
||||
#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:237
|
||||
#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:243
|
||||
#: ../../mod/profile_photo.php:248
|
||||
#: ../../mod/profile_photo.php:248 ../../mod/profile_photo.php:254
|
||||
#, fuzzy, php-format
|
||||
msgid "Image size reduction [%s] failed."
|
||||
msgstr "Réduction de la taille de l'image [%s] échouée."
|
||||
|
|
@ -2340,6 +2426,7 @@ msgstr "Impossible de traiter l'image"
|
|||
|
||||
#: ../../mod/profile_photo.php:228 ../../mod/profile_photo.php:230
|
||||
#: ../../mod/profile_photo.php:234 ../../mod/profile_photo.php:239
|
||||
#: ../../mod/profile_photo.php:245
|
||||
#, fuzzy
|
||||
msgid "Image uploaded successfully."
|
||||
msgstr "Image téléversée avec succès."
|
||||
|
|
@ -2353,14 +2440,14 @@ msgstr "Annuaire global"
|
|||
#: ../../mod/contacts.php:315 ../../mod/contacts.php:323
|
||||
#: ../../mod/contacts.php:325 ../../mod/directory.php:44
|
||||
#: ../../mod/contacts.php:326 ../../mod/directory.php:55
|
||||
#: ../../mod/contacts.php:362
|
||||
#: ../../mod/contacts.php:362 ../../mod/contacts.php:354
|
||||
msgid "Finding: "
|
||||
msgstr "Trouvé: "
|
||||
|
||||
#: ../../mod/viewcontacts.php:17 ../../boot.php:2038 ../../boot.php:2039
|
||||
#: ../../boot.php:2041 ../../boot.php:2049 ../../boot.php:2061
|
||||
#: ../../boot.php:2051 ../../boot.php:1996 ../../mod/viewcontacts.php:25
|
||||
#: ../../boot.php:2014 ../../include/text.php:555
|
||||
#: ../../boot.php:2014 ../../include/text.php:555 ../../include/text.php:564
|
||||
msgid "View Contacts"
|
||||
msgstr "Voir les contacts"
|
||||
|
||||
|
|
@ -2380,7 +2467,7 @@ msgstr "Visiter le profil de $username"
|
|||
#: ../../mod/mprofile.php:8 ../../boot.php:2213 ../../boot.php:2221
|
||||
#: ../../boot.php:2233 ../../boot.php:2248 ../../boot.php:2197
|
||||
#: ../../mod/profile.php:11 ../../boot.php:2216 ../../mod/hcard.php:10
|
||||
#: ../../mod/profile.php:10 ../../boot.php:792
|
||||
#: ../../mod/profile.php:10 ../../boot.php:792 ../../boot.php:802
|
||||
msgid "No profile"
|
||||
msgstr "Aucun profil"
|
||||
|
||||
|
|
@ -2486,6 +2573,8 @@ msgstr "Choisir une identité à gérer: "
|
|||
#: ../../mod/item.php:734 ../../mod/dfrn_notify.php:296
|
||||
#: ../../mod/dfrn_notify.php:506 ../../mod/dfrn_notify.php:553
|
||||
#: ../../mod/dfrn_notify.php:639 ../../mod/dfrn_notify.php:685
|
||||
#: ../../mod/item.php:640 ../../mod/item.php:685 ../../mod/item.php:729
|
||||
#: ../../mod/item.php:772
|
||||
#, fuzzy
|
||||
msgid "noreply"
|
||||
msgstr "noreply"
|
||||
|
|
@ -2500,6 +2589,7 @@ msgstr "Nouvel email reçu à "
|
|||
#: ../../mod/dfrn_notify.php:403 ../../mod/dfrn_notify.php:489
|
||||
#: ../../mod/dfrn_notify.php:493 ../../mod/item.php:670
|
||||
#: ../../mod/dfrn_notify.php:555 ../../mod/dfrn_notify.php:687
|
||||
#: ../../mod/item.php:687
|
||||
#, fuzzy, php-format
|
||||
msgid "%s commented on an item at %s"
|
||||
msgstr "%s a commenté sur une publication : %s"
|
||||
|
|
@ -2520,25 +2610,26 @@ msgstr "Cette introduction a déjà été acceptée."
|
|||
|
||||
#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:347
|
||||
#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:351
|
||||
#: ../../mod/dfrn_request.php:348
|
||||
#: ../../mod/dfrn_request.php:348 ../../mod/dfrn_request.php:349
|
||||
msgid "Profile location is not valid or does not contain profile information."
|
||||
msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide."
|
||||
msgstr ""
|
||||
"L'emplacement du profil est invalide ou ne contient pas de profil valide."
|
||||
|
||||
#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:352
|
||||
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:356
|
||||
#: ../../mod/dfrn_request.php:353
|
||||
#: ../../mod/dfrn_request.php:353 ../../mod/dfrn_request.php:354
|
||||
msgid "Warning: profile location has no identifiable owner name."
|
||||
msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
|
||||
|
||||
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:354
|
||||
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:358
|
||||
#: ../../mod/dfrn_request.php:355
|
||||
#: ../../mod/dfrn_request.php:355 ../../mod/dfrn_request.php:356
|
||||
msgid "Warning: profile location has no profile photo."
|
||||
msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
|
||||
|
||||
#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:357
|
||||
#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:361
|
||||
#: ../../mod/dfrn_request.php:358
|
||||
#: ../../mod/dfrn_request.php:358 ../../mod/dfrn_request.php:359
|
||||
#, php-format
|
||||
msgid "%d required parameter was not found at the given location"
|
||||
msgid_plural "%d required parameters were not found at the given location"
|
||||
|
|
@ -2582,50 +2673,51 @@ msgid "Invalid locator"
|
|||
msgstr "Localisateur invalide"
|
||||
|
||||
#: ../../mod/dfrn_request.php:292 ../../mod/dfrn_request.php:296
|
||||
#: ../../mod/dfrn_request.php:293
|
||||
#: ../../mod/dfrn_request.php:293 ../../mod/dfrn_request.php:294
|
||||
msgid "Unable to resolve your name at the provided location."
|
||||
msgstr "Impossible de résoudre votre nom à l'emplacement fourni."
|
||||
|
||||
#: ../../mod/dfrn_request.php:305 ../../mod/dfrn_request.php:309
|
||||
#: ../../mod/dfrn_request.php:306
|
||||
#: ../../mod/dfrn_request.php:306 ../../mod/dfrn_request.php:307
|
||||
msgid "You have already introduced yourself here."
|
||||
msgstr "Vous vous êtes déjà présenté ici."
|
||||
|
||||
#: ../../mod/dfrn_request.php:309 ../../mod/dfrn_request.php:313
|
||||
#: ../../mod/dfrn_request.php:310
|
||||
#: ../../mod/dfrn_request.php:310 ../../mod/dfrn_request.php:311
|
||||
#, fuzzy, php-format
|
||||
msgid "Apparently you are already friends with %s."
|
||||
msgstr "Il semblerait que vous soyez déjà ami avec %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:330 ../../mod/dfrn_request.php:334
|
||||
#: ../../mod/dfrn_request.php:331
|
||||
#: ../../mod/dfrn_request.php:331 ../../mod/dfrn_request.php:332
|
||||
msgid "Invalid profile URL."
|
||||
msgstr "URL de profil invalide."
|
||||
|
||||
#: ../../mod/dfrn_request.php:336 ../../mod/dfrn_request.php:340
|
||||
#: ../../mod/follow.php:16 ../../mod/dfrn_request.php:337
|
||||
#: ../../mod/follow.php:20
|
||||
#: ../../mod/follow.php:20 ../../mod/dfrn_request.php:338
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr "URL de profil interdite."
|
||||
|
||||
#: ../../mod/dfrn_request.php:402 ../../mod/contacts.php:85
|
||||
#: ../../mod/contacts.php:90 ../../mod/dfrn_request.php:406
|
||||
#: ../../mod/dfrn_request.php:404 ../../mod/contacts.php:116
|
||||
#: ../../mod/dfrn_request.php:405 ../../mod/contacts.php:109
|
||||
msgid "Failed to update contact record."
|
||||
msgstr "Échec de mise-à-jour du contact."
|
||||
|
||||
#: ../../mod/dfrn_request.php:423 ../../mod/dfrn_request.php:427
|
||||
#: ../../mod/dfrn_request.php:425
|
||||
#: ../../mod/dfrn_request.php:425 ../../mod/dfrn_request.php:426
|
||||
msgid "Your introduction has been sent."
|
||||
msgstr "Votre présentation a été envoyée."
|
||||
|
||||
#: ../../mod/dfrn_request.php:477 ../../mod/dfrn_request.php:481
|
||||
#: ../../mod/dfrn_request.php:478
|
||||
#: ../../mod/dfrn_request.php:478 ../../mod/dfrn_request.php:479
|
||||
msgid "Please login to confirm introduction."
|
||||
msgstr "Connectez-vous pour confirmer l'introduction."
|
||||
|
||||
#: ../../mod/dfrn_request.php:491 ../../mod/dfrn_request.php:495
|
||||
#: ../../mod/dfrn_request.php:492
|
||||
#: ../../mod/dfrn_request.php:492 ../../mod/dfrn_request.php:493
|
||||
msgid ""
|
||||
"Incorrect identity currently logged in. Please login to <strong>this</"
|
||||
"strong> profile."
|
||||
|
|
@ -2635,17 +2727,20 @@ msgstr ""
|
|||
|
||||
#: ../../mod/dfrn_request.php:543 ../../mod/dfrn_request.php:545
|
||||
#: ../../mod/dfrn_request.php:549 ../../mod/dfrn_request.php:546
|
||||
#: ../../mod/dfrn_request.php:547
|
||||
#, fuzzy
|
||||
msgid "Introduction received at "
|
||||
msgstr "Introduction reçue sur "
|
||||
|
||||
#: ../../mod/dfrn_request.php:615 ../../mod/dfrn_request.php:617
|
||||
#: ../../mod/dfrn_request.php:630 ../../mod/dfrn_request.php:628
|
||||
#: ../../mod/dfrn_request.php:637
|
||||
msgid "Friend/Connection Request"
|
||||
msgstr "Requête de relation/amitié"
|
||||
|
||||
#: ../../mod/dfrn_request.php:616 ../../mod/dfrn_request.php:618
|
||||
#: ../../mod/dfrn_request.php:632 ../../mod/dfrn_request.php:630
|
||||
#: ../../mod/dfrn_request.php:639
|
||||
msgid "Please answer the following:"
|
||||
msgstr "Merci de répondre à ce qui suit:"
|
||||
|
||||
|
|
@ -2656,6 +2751,7 @@ msgstr "Est-ce que $name vous connaît?"
|
|||
|
||||
#: ../../mod/dfrn_request.php:620 ../../mod/dfrn_request.php:622
|
||||
#: ../../mod/dfrn_request.php:636 ../../mod/dfrn_request.php:634
|
||||
#: ../../mod/dfrn_request.php:643
|
||||
msgid "Add a personal note:"
|
||||
msgstr "Ajouter une note personnelle:"
|
||||
|
||||
|
|
@ -2668,11 +2764,13 @@ msgstr ""
|
|||
|
||||
#: ../../mod/dfrn_request.php:622 ../../mod/dfrn_request.php:624
|
||||
#: ../../mod/dfrn_request.php:638 ../../mod/dfrn_request.php:636
|
||||
#: ../../include/contact_selectors.php:78 ../../mod/dfrn_request.php:645
|
||||
msgid "Friendika"
|
||||
msgstr "Friendika"
|
||||
|
||||
#: ../../mod/dfrn_request.php:623 ../../mod/dfrn_request.php:625
|
||||
#: ../../mod/dfrn_request.php:639 ../../mod/dfrn_request.php:637
|
||||
#: ../../mod/dfrn_request.php:646
|
||||
msgid "StatusNet/Federated Social Web"
|
||||
msgstr "StatusNet/Federated Social Web"
|
||||
|
||||
|
|
@ -2692,13 +2790,15 @@ msgstr "Votre adresse de profil:"
|
|||
|
||||
#: ../../mod/dfrn_request.php:627 ../../mod/dfrn_request.php:629
|
||||
#: ../../mod/dfrn_request.php:643 ../../mod/dfrn_request.php:641
|
||||
#: ../../mod/dfrn_request.php:650
|
||||
msgid "Submit Request"
|
||||
msgstr "Envoyer la requête"
|
||||
|
||||
#: ../../mod/follow.php:173 ../../mod/follow.php:186 ../../mod/follow.php:39
|
||||
#: ../../mod/follow.php:48
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
|
||||
msgstr ""
|
||||
"L'adresse de profil indiquée ne fournit par les informations adéquates."
|
||||
|
||||
#: ../../mod/follow.php:179 ../../mod/follow.php:192 ../../mod/follow.php:45
|
||||
#: ../../mod/follow.php:66
|
||||
|
|
@ -2710,79 +2810,87 @@ msgstr ""
|
|||
"notifications directes/personnelles de votre part."
|
||||
|
||||
#: ../../mod/follow.php:230 ../../mod/follow.php:243 ../../mod/follow.php:247
|
||||
#: ../../mod/follow.php:100 ../../mod/follow.php:130
|
||||
#: ../../mod/follow.php:100 ../../mod/follow.php:130 ../../mod/follow.php:131
|
||||
msgid "Unable to retrieve contact information."
|
||||
msgstr "Impossible de récupérer les informations du contact."
|
||||
|
||||
#: ../../mod/follow.php:276 ../../mod/follow.php:289 ../../mod/follow.php:293
|
||||
#: ../../mod/follow.php:146 ../../mod/follow.php:176
|
||||
#: ../../mod/follow.php:146 ../../mod/follow.php:176 ../../mod/follow.php:177
|
||||
msgid "following"
|
||||
msgstr "following"
|
||||
|
||||
#: ../../mod/photos.php:30 ../../mod/photos.php:34 ../../mod/photos.php:37
|
||||
#: ../../mod/photos.php:42
|
||||
msgid "Photo Albums"
|
||||
msgstr "Albums photo"
|
||||
|
||||
#: ../../mod/photos.php:95 ../../mod/photos.php:99 ../../mod/photos.php:132
|
||||
#: ../../mod/photos.php:133
|
||||
msgid "Contact information unavailable"
|
||||
msgstr "Informations de contact indisponibles"
|
||||
|
||||
#: ../../mod/photos.php:116 ../../mod/photos.php:120 ../../mod/photos.php:153
|
||||
#: ../../mod/photos.php:154
|
||||
msgid "Album not found."
|
||||
msgstr "Album introuvable."
|
||||
|
||||
#: ../../mod/photos.php:134 ../../mod/photos.php:859 ../../mod/photos.php:863
|
||||
#: ../../mod/photos.php:138 ../../mod/photos.php:884 ../../mod/photos.php:171
|
||||
#: ../../mod/photos.php:935
|
||||
#: ../../mod/photos.php:935 ../../mod/photos.php:172 ../../mod/photos.php:941
|
||||
msgid "Delete Album"
|
||||
msgstr "Effacer l'album"
|
||||
|
||||
#: ../../mod/photos.php:197 ../../mod/photos.php:1067
|
||||
#: ../../mod/photos.php:1070 ../../mod/photos.php:201
|
||||
#: ../../mod/photos.php:1092 ../../mod/photos.php:234
|
||||
#: ../../mod/photos.php:1145
|
||||
#: ../../mod/photos.php:1145 ../../mod/photos.php:235
|
||||
#: ../../mod/photos.php:1160
|
||||
msgid "Delete Photo"
|
||||
msgstr "Effacer la photo"
|
||||
|
||||
#: ../../mod/photos.php:469 ../../mod/photos.php:473 ../../mod/photos.php:508
|
||||
#: ../../mod/photos.php:510
|
||||
msgid "was tagged in a"
|
||||
msgstr "a été identifié dans"
|
||||
|
||||
#: ../../mod/photos.php:469 ../../mod/photos.php:473 ../../mod/photos.php:508
|
||||
#: ../../mod/photos.php:510
|
||||
msgid "by"
|
||||
msgstr "par"
|
||||
|
||||
#: ../../mod/photos.php:661 ../../mod/photos.php:665 ../../mod/photos.php:686
|
||||
#: ../../mod/photos.php:743
|
||||
#: ../../mod/photos.php:743 ../../mod/photos.php:748
|
||||
msgid "No photos selected"
|
||||
msgstr "Aucune photo sélectionnée"
|
||||
|
||||
#: ../../mod/photos.php:808 ../../mod/photos.php:812 ../../mod/photos.php:833
|
||||
#: ../../mod/photos.php:884
|
||||
#: ../../mod/photos.php:884 ../../mod/photos.php:889
|
||||
#, fuzzy
|
||||
msgid "Upload Photos"
|
||||
msgstr "Téléverser des photos"
|
||||
|
||||
#: ../../mod/photos.php:811 ../../mod/photos.php:854 ../../mod/photos.php:815
|
||||
#: ../../mod/photos.php:858 ../../mod/photos.php:836 ../../mod/photos.php:879
|
||||
#: ../../mod/photos.php:887 ../../mod/photos.php:930
|
||||
#: ../../mod/photos.php:887 ../../mod/photos.php:930 ../../mod/photos.php:892
|
||||
#: ../../mod/photos.php:936
|
||||
msgid "New album name: "
|
||||
msgstr "Nom du nouvel album: "
|
||||
|
||||
#: ../../mod/photos.php:812 ../../mod/photos.php:816 ../../mod/photos.php:837
|
||||
#: ../../mod/photos.php:888
|
||||
#: ../../mod/photos.php:888 ../../mod/photos.php:893
|
||||
msgid "or existing album name: "
|
||||
msgstr "ou nom d'un album existant: "
|
||||
|
||||
#: ../../mod/photos.php:814 ../../mod/photos.php:1062 ../../mod/photos.php:818
|
||||
#: ../../mod/photos.php:1065 ../../mod/photos.php:839
|
||||
#: ../../mod/photos.php:1087 ../../mod/photos.php:890
|
||||
#: ../../mod/photos.php:1140
|
||||
#: ../../mod/photos.php:1140 ../../mod/photos.php:896
|
||||
#: ../../mod/photos.php:1155
|
||||
msgid "Permissions"
|
||||
msgstr "Permissions"
|
||||
|
||||
#: ../../mod/photos.php:869 ../../mod/photos.php:873 ../../mod/photos.php:894
|
||||
#: ../../mod/photos.php:945
|
||||
#: ../../mod/photos.php:945 ../../mod/photos.php:951
|
||||
msgid "Edit Album"
|
||||
msgstr "Éditer l'album"
|
||||
|
||||
|
|
@ -2790,22 +2898,23 @@ msgstr "Éditer l'album"
|
|||
#: ../../mod/photos.php:1265 ../../mod/photos.php:1264
|
||||
#: ../../mod/photos.php:883 ../../mod/photos.php:1267 ../../mod/photos.php:904
|
||||
#: ../../mod/photos.php:1307 ../../mod/photos.php:955
|
||||
#: ../../mod/photos.php:1362
|
||||
#: ../../mod/photos.php:1362 ../../mod/photos.php:961
|
||||
#: ../../mod/photos.php:1377
|
||||
msgid "View Photo"
|
||||
msgstr "Voir la photo"
|
||||
|
||||
#: ../../mod/photos.php:909 ../../mod/photos.php:912 ../../mod/photos.php:933
|
||||
#: ../../mod/photos.php:984
|
||||
#: ../../mod/photos.php:984 ../../mod/photos.php:998
|
||||
msgid "Photo not available"
|
||||
msgstr "Photo indisponible"
|
||||
|
||||
#: ../../mod/photos.php:956 ../../mod/photos.php:959 ../../mod/photos.php:982
|
||||
#: ../../mod/photos.php:1033
|
||||
#: ../../mod/photos.php:1033 ../../mod/photos.php:1048
|
||||
msgid "Edit photo"
|
||||
msgstr "Éditer la photo"
|
||||
|
||||
#: ../../mod/photos.php:958 ../../mod/photos.php:961 ../../mod/photos.php:983
|
||||
#: ../../mod/photos.php:1034
|
||||
#: ../../mod/photos.php:1034 ../../mod/photos.php:1049
|
||||
#, fuzzy
|
||||
msgid "Use as profile photo"
|
||||
msgstr "Utiliser comme photo de profil"
|
||||
|
|
@ -2816,7 +2925,7 @@ msgid "<< Prev"
|
|||
msgstr "<< Précédent"
|
||||
|
||||
#: ../../mod/photos.php:973 ../../mod/photos.php:976 ../../mod/photos.php:1000
|
||||
#: ../../mod/photos.php:1051
|
||||
#: ../../mod/photos.php:1051 ../../mod/photos.php:1066
|
||||
msgid "View Full Size"
|
||||
msgstr "Voir en taille réelle"
|
||||
|
||||
|
|
@ -2827,50 +2936,57 @@ msgstr "Suivant >>"
|
|||
|
||||
#: ../../mod/photos.php:1036 ../../mod/photos.php:1039
|
||||
#: ../../mod/photos.php:1067 ../../mod/photos.php:1119
|
||||
#: ../../mod/photos.php:1134
|
||||
msgid "Tags: "
|
||||
msgstr "Étiquettes: "
|
||||
|
||||
#: ../../mod/photos.php:1046 ../../mod/photos.php:1049
|
||||
#: ../../mod/photos.php:1070 ../../mod/photos.php:1122
|
||||
#: ../../mod/photos.php:1137
|
||||
msgid "[Remove any tag]"
|
||||
msgstr "[Retirer toutes les étiquettes]"
|
||||
|
||||
#: ../../mod/photos.php:1055 ../../mod/photos.php:1058
|
||||
#: ../../mod/photos.php:1080 ../../mod/photos.php:1133
|
||||
#: ../../mod/photos.php:1148
|
||||
msgid "New album name"
|
||||
msgstr "Nom du nouvel album"
|
||||
|
||||
#: ../../mod/photos.php:1058 ../../mod/photos.php:1061
|
||||
#: ../../mod/photos.php:1083 ../../mod/photos.php:1136
|
||||
#: ../../mod/photos.php:1151
|
||||
msgid "Caption"
|
||||
msgstr "Titre"
|
||||
|
||||
#: ../../mod/photos.php:1060 ../../mod/photos.php:1063
|
||||
#: ../../mod/photos.php:1085 ../../mod/photos.php:1138
|
||||
#: ../../mod/photos.php:1153
|
||||
msgid "Add a Tag"
|
||||
msgstr "Ajouter une étiquette"
|
||||
|
||||
#: ../../mod/photos.php:1064 ../../mod/photos.php:1067
|
||||
#: ../../mod/photos.php:1089 ../../mod/photos.php:1142
|
||||
#: ../../mod/photos.php:1157
|
||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
|
||||
msgstr ""
|
||||
"Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
|
||||
|
||||
#: ../../mod/photos.php:1249 ../../mod/photos.php:1251
|
||||
#: ../../mod/photos.php:1254 ../../mod/photos.php:1294
|
||||
#: ../../mod/photos.php:1349
|
||||
#: ../../mod/photos.php:1349 ../../mod/photos.php:1364
|
||||
msgid "Recent Photos"
|
||||
msgstr "Photos récentes"
|
||||
|
||||
#: ../../mod/photos.php:1253 ../../mod/photos.php:1255
|
||||
#: ../../mod/photos.php:1258 ../../mod/photos.php:1298
|
||||
#: ../../mod/photos.php:1353
|
||||
#: ../../mod/photos.php:1353 ../../mod/photos.php:1368
|
||||
#, fuzzy
|
||||
msgid "Upload New Photos"
|
||||
msgstr "Téléverser de nouvelles photos"
|
||||
|
||||
#: ../../mod/photos.php:1269 ../../mod/photos.php:1271
|
||||
#: ../../mod/photos.php:1268 ../../mod/photos.php:1311
|
||||
#: ../../mod/photos.php:1366
|
||||
#: ../../mod/photos.php:1366 ../../mod/photos.php:1381
|
||||
msgid "View Album"
|
||||
msgstr "Voir l'album"
|
||||
|
||||
|
|
@ -2946,6 +3062,7 @@ msgstr "Nouvel abonné"
|
|||
#: ../../mod/notifications.php:131 ../../mod/notifications.php:130
|
||||
#: ../../mod/notifications.php:153 ../../mod/admin.php:469
|
||||
#: ../../mod/notifications.php:114 ../../mod/notifications.php:161
|
||||
#: ../../mod/admin.php:473
|
||||
msgid "Approve"
|
||||
msgstr "Approuver"
|
||||
|
||||
|
|
@ -2956,74 +3073,77 @@ msgstr "Pas de notification."
|
|||
|
||||
#: ../../mod/notifications.php:164 ../../mod/notifications.php:163
|
||||
#: ../../mod/notifications.php:159 ../../mod/admin.php:468
|
||||
#: ../../mod/admin.php:472
|
||||
msgid "No registrations."
|
||||
msgstr "Pas d'inscriptions."
|
||||
|
||||
#: ../../mod/contacts.php:12 ../../mod/contacts.php:26
|
||||
#: ../../mod/contacts.php:42
|
||||
msgid "Invite Friends"
|
||||
msgstr "Inviter des amis"
|
||||
|
||||
#: ../../mod/contacts.php:16 ../../mod/contacts.php:19
|
||||
#: ../../mod/contacts.php:45
|
||||
#: ../../mod/contacts.php:45 ../../mod/contacts.php:46
|
||||
#, fuzzy
|
||||
msgid "Connect/Follow"
|
||||
msgstr "Connecter/Suivre"
|
||||
|
||||
#: ../../mod/contacts.php:17 ../../mod/contacts.php:20
|
||||
#: ../../mod/contacts.php:46
|
||||
#: ../../mod/contacts.php:46 ../../mod/contacts.php:47
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
msgstr "Exemple: bob@example.com, http://example.com/barbara"
|
||||
|
||||
#: ../../mod/contacts.php:18 ../../mod/contacts.php:21
|
||||
#: ../../mod/contacts.php:47
|
||||
#: ../../mod/contacts.php:47 ../../mod/contacts.php:48
|
||||
msgid "Follow"
|
||||
msgstr "Suivre"
|
||||
|
||||
#: ../../mod/contacts.php:38 ../../mod/contacts.php:119
|
||||
#: ../../mod/contacts.php:43 ../../mod/contacts.php:124
|
||||
#: ../../mod/contacts.php:69 ../../mod/contacts.php:150
|
||||
#: ../../mod/contacts.php:72 ../../mod/contacts.php:143
|
||||
msgid "Could not access contact record."
|
||||
msgstr "Impossible d'accéder à l'enregistrement du contact."
|
||||
|
||||
#: ../../mod/contacts.php:52 ../../mod/contacts.php:57
|
||||
#: ../../mod/contacts.php:83
|
||||
#: ../../mod/contacts.php:83 ../../mod/contacts.php:86
|
||||
msgid "Could not locate selected profile."
|
||||
msgstr "Impossible de localiser le profil séléctionné."
|
||||
|
||||
#: ../../mod/contacts.php:83 ../../mod/contacts.php:88
|
||||
#: ../../mod/contacts.php:114
|
||||
#: ../../mod/contacts.php:114 ../../mod/contacts.php:107
|
||||
msgid "Contact updated."
|
||||
msgstr "Contact mis-à-jour."
|
||||
|
||||
#: ../../mod/contacts.php:141 ../../mod/contacts.php:146
|
||||
#: ../../mod/contacts.php:172
|
||||
#: ../../mod/contacts.php:172 ../../mod/contacts.php:165
|
||||
msgid "Contact has been blocked"
|
||||
msgstr "Le contact a été bloqué"
|
||||
|
||||
#: ../../mod/contacts.php:141 ../../mod/contacts.php:146
|
||||
#: ../../mod/contacts.php:172
|
||||
#: ../../mod/contacts.php:172 ../../mod/contacts.php:165
|
||||
msgid "Contact has been unblocked"
|
||||
msgstr "Le contact n'est plus bloqué"
|
||||
|
||||
#: ../../mod/contacts.php:155 ../../mod/contacts.php:160
|
||||
#: ../../mod/contacts.php:186
|
||||
#: ../../mod/contacts.php:186 ../../mod/contacts.php:179
|
||||
#, fuzzy
|
||||
msgid "Contact has been ignored"
|
||||
msgstr "Le contact a été ignoré"
|
||||
|
||||
#: ../../mod/contacts.php:155 ../../mod/contacts.php:160
|
||||
#: ../../mod/contacts.php:186
|
||||
#: ../../mod/contacts.php:186 ../../mod/contacts.php:179
|
||||
#, fuzzy
|
||||
msgid "Contact has been unignored"
|
||||
msgstr "Le contact n'est plus ignoré"
|
||||
|
||||
#: ../../mod/contacts.php:176 ../../mod/contacts.php:181
|
||||
#: ../../mod/contacts.php:207
|
||||
#: ../../mod/contacts.php:207 ../../mod/contacts.php:200
|
||||
msgid "stopped following"
|
||||
msgstr "retiré de la liste de suivi"
|
||||
|
||||
#: ../../mod/contacts.php:195 ../../mod/contacts.php:200
|
||||
#: ../../mod/contacts.php:228
|
||||
#: ../../mod/contacts.php:228 ../../mod/contacts.php:221
|
||||
msgid "Contact has been removed."
|
||||
msgstr "Ce contact a été retiré."
|
||||
|
||||
|
|
@ -3031,7 +3151,8 @@ msgstr "Ce contact a été retiré."
|
|||
#: ../../mod/contacts.php:228 ../../mod/contacts.php:352
|
||||
#: ../../mod/contacts.php:360 ../../mod/contacts.php:362
|
||||
#: ../../mod/contacts.php:363 ../../mod/contacts.php:256
|
||||
#: ../../mod/contacts.php:399
|
||||
#: ../../mod/contacts.php:399 ../../mod/contacts.php:249
|
||||
#: ../../mod/contacts.php:391
|
||||
msgid "Mutual Friendship"
|
||||
msgstr "Relation réciproque"
|
||||
|
||||
|
|
@ -3039,7 +3160,8 @@ msgstr "Relation réciproque"
|
|||
#: ../../mod/contacts.php:232 ../../mod/contacts.php:356
|
||||
#: ../../mod/contacts.php:364 ../../mod/contacts.php:366
|
||||
#: ../../mod/contacts.php:367 ../../mod/contacts.php:260
|
||||
#: ../../mod/contacts.php:403
|
||||
#: ../../mod/contacts.php:403 ../../mod/contacts.php:253
|
||||
#: ../../mod/contacts.php:395
|
||||
msgid "is a fan of yours"
|
||||
msgstr "est un fan de vous"
|
||||
|
||||
|
|
@ -3047,41 +3169,42 @@ msgstr "est un fan de vous"
|
|||
#: ../../mod/contacts.php:237 ../../mod/contacts.php:360
|
||||
#: ../../mod/contacts.php:368 ../../mod/contacts.php:370
|
||||
#: ../../mod/contacts.php:371 ../../mod/contacts.php:265
|
||||
#: ../../mod/contacts.php:407
|
||||
#: ../../mod/contacts.php:407 ../../mod/contacts.php:258
|
||||
#: ../../mod/contacts.php:399
|
||||
msgid "you are a fan of"
|
||||
msgstr "vous êtes un fan de"
|
||||
|
||||
#: ../../mod/contacts.php:247 ../../mod/contacts.php:252
|
||||
#: ../../mod/contacts.php:282
|
||||
#: ../../mod/contacts.php:282 ../../mod/contacts.php:273
|
||||
#, fuzzy
|
||||
msgid "Privacy Unavailable"
|
||||
msgstr "Protection de la vie privée indisponible"
|
||||
|
||||
#: ../../mod/contacts.php:248 ../../mod/contacts.php:253
|
||||
#: ../../mod/contacts.php:283
|
||||
#: ../../mod/contacts.php:283 ../../mod/contacts.php:274
|
||||
#, fuzzy
|
||||
msgid "Private communications are not available for this contact."
|
||||
msgstr "Les communications privées ne sont pas disponibles pour ce contact."
|
||||
|
||||
#: ../../mod/contacts.php:251 ../../mod/contacts.php:256
|
||||
#: ../../mod/contacts.php:286
|
||||
#: ../../mod/contacts.php:286 ../../mod/contacts.php:277
|
||||
msgid "Never"
|
||||
msgstr "Jamais"
|
||||
|
||||
#: ../../mod/contacts.php:255 ../../mod/contacts.php:260
|
||||
#: ../../mod/contacts.php:290
|
||||
#: ../../mod/contacts.php:290 ../../mod/contacts.php:281
|
||||
#, fuzzy
|
||||
msgid "(Update was successful)"
|
||||
msgstr "(Mise à jour effectuée avec succès)"
|
||||
|
||||
#: ../../mod/contacts.php:255 ../../mod/contacts.php:260
|
||||
#: ../../mod/contacts.php:290
|
||||
#: ../../mod/contacts.php:290 ../../mod/contacts.php:281
|
||||
#, fuzzy
|
||||
msgid "(Update was not successful)"
|
||||
msgstr "(Mise à jour échouée)"
|
||||
|
||||
#: ../../mod/contacts.php:258 ../../mod/contacts.php:263
|
||||
#: ../../mod/contacts.php:297
|
||||
#: ../../mod/contacts.php:297 ../../mod/contacts.php:291
|
||||
msgid "Contact Editor"
|
||||
msgstr "Éditeur de contact"
|
||||
|
||||
|
|
@ -3092,36 +3215,42 @@ msgstr "Visiter le profil de $name"
|
|||
|
||||
#: ../../mod/contacts.php:260 ../../mod/contacts.php:265
|
||||
#: ../../mod/contacts.php:273 ../../mod/contacts.php:307
|
||||
#: ../../mod/contacts.php:301
|
||||
msgid "Block/Unblock contact"
|
||||
msgstr "Bloquer/débloquer ce contact"
|
||||
|
||||
#: ../../mod/contacts.php:261 ../../mod/contacts.php:266
|
||||
#: ../../mod/contacts.php:274 ../../mod/contacts.php:308
|
||||
#: ../../mod/contacts.php:302
|
||||
msgid "Ignore contact"
|
||||
msgstr "Ignorer ce contact"
|
||||
|
||||
#: ../../mod/contacts.php:262 ../../mod/contacts.php:267
|
||||
#: ../../mod/contacts.php:275 ../../mod/contacts.php:277
|
||||
#: ../../mod/contacts.php:278 ../../mod/contacts.php:314
|
||||
#: ../../mod/contacts.php:307
|
||||
msgid "Delete contact"
|
||||
msgstr "Effacer ce contact"
|
||||
|
||||
#: ../../mod/contacts.php:264 ../../mod/contacts.php:269
|
||||
#: ../../mod/contacts.php:277 ../../mod/contacts.php:279
|
||||
#: ../../mod/contacts.php:280 ../../mod/contacts.php:316
|
||||
#: ../../mod/contacts.php:311
|
||||
msgid "Last updated: "
|
||||
msgstr "Dernière mise-à-jour: "
|
||||
|
||||
#: ../../mod/contacts.php:265 ../../mod/contacts.php:270
|
||||
#: ../../mod/contacts.php:278 ../../mod/contacts.php:280
|
||||
#: ../../mod/contacts.php:281 ../../mod/contacts.php:317
|
||||
#: ../../mod/contacts.php:312
|
||||
msgid "Update public posts: "
|
||||
msgstr "Met ses entrées publiques à jour: "
|
||||
|
||||
#: ../../mod/contacts.php:267 ../../mod/contacts.php:272
|
||||
#: ../../mod/contacts.php:280 ../../mod/contacts.php:282
|
||||
#: ../../mod/contacts.php:283 ../../mod/admin.php:704
|
||||
#: ../../mod/contacts.php:319
|
||||
#: ../../mod/contacts.php:319 ../../mod/admin.php:708
|
||||
#: ../../mod/contacts.php:314
|
||||
#, fuzzy
|
||||
msgid "Update now"
|
||||
msgstr "Mettre-à-jour immédiatement"
|
||||
|
|
@ -3129,48 +3258,56 @@ msgstr "Mettre-à-jour immédiatement"
|
|||
#: ../../mod/contacts.php:270 ../../mod/contacts.php:275
|
||||
#: ../../mod/contacts.php:283 ../../mod/contacts.php:285
|
||||
#: ../../mod/contacts.php:286 ../../mod/contacts.php:322
|
||||
#: ../../mod/contacts.php:317
|
||||
msgid "Unblock this contact"
|
||||
msgstr "Débloquer ce contact"
|
||||
|
||||
#: ../../mod/contacts.php:270 ../../mod/contacts.php:275
|
||||
#: ../../mod/contacts.php:283 ../../mod/contacts.php:285
|
||||
#: ../../mod/contacts.php:286 ../../mod/contacts.php:322
|
||||
#: ../../mod/contacts.php:317
|
||||
msgid "Block this contact"
|
||||
msgstr "Bloquer ce contact"
|
||||
|
||||
#: ../../mod/contacts.php:271 ../../mod/contacts.php:276
|
||||
#: ../../mod/contacts.php:284 ../../mod/contacts.php:286
|
||||
#: ../../mod/contacts.php:287 ../../mod/contacts.php:323
|
||||
#: ../../mod/contacts.php:318
|
||||
msgid "Unignore this contact"
|
||||
msgstr "Cesser d'ignorer ce contact"
|
||||
|
||||
#: ../../mod/contacts.php:271 ../../mod/contacts.php:276
|
||||
#: ../../mod/contacts.php:284 ../../mod/contacts.php:286
|
||||
#: ../../mod/contacts.php:287 ../../mod/contacts.php:323
|
||||
#: ../../mod/contacts.php:318
|
||||
msgid "Ignore this contact"
|
||||
msgstr "Ignorer ce contact"
|
||||
|
||||
#: ../../mod/contacts.php:274 ../../mod/contacts.php:279
|
||||
#: ../../mod/contacts.php:287 ../../mod/contacts.php:289
|
||||
#: ../../mod/contacts.php:290 ../../mod/contacts.php:326
|
||||
#: ../../mod/contacts.php:321
|
||||
msgid "Currently blocked"
|
||||
msgstr "Actuellement bloqué"
|
||||
|
||||
#: ../../mod/contacts.php:275 ../../mod/contacts.php:280
|
||||
#: ../../mod/contacts.php:288 ../../mod/contacts.php:290
|
||||
#: ../../mod/contacts.php:291 ../../mod/contacts.php:327
|
||||
#: ../../mod/contacts.php:322
|
||||
msgid "Currently ignored"
|
||||
msgstr "Actuellement ignoré"
|
||||
|
||||
#: ../../mod/contacts.php:308 ../../mod/contacts.php:313
|
||||
#: ../../mod/contacts.php:321 ../../mod/contacts.php:323
|
||||
#: ../../mod/contacts.php:324 ../../mod/contacts.php:360
|
||||
#: ../../mod/contacts.php:352
|
||||
msgid "Show Blocked Connections"
|
||||
msgstr "Montrer les connexions bloquées"
|
||||
|
||||
#: ../../mod/contacts.php:308 ../../mod/contacts.php:313
|
||||
#: ../../mod/contacts.php:321 ../../mod/contacts.php:323
|
||||
#: ../../mod/contacts.php:324 ../../mod/contacts.php:360
|
||||
#: ../../mod/contacts.php:352
|
||||
msgid "Hide Blocked Connections"
|
||||
msgstr "Cacher les connexion bloquées"
|
||||
|
||||
|
|
@ -3178,7 +3315,7 @@ msgstr "Cacher les connexion bloquées"
|
|||
#: ../../mod/directory.php:40 ../../mod/contacts.php:324
|
||||
#: ../../mod/contacts.php:326 ../../mod/directory.php:46
|
||||
#: ../../mod/contacts.php:327 ../../mod/directory.php:57
|
||||
#: ../../mod/contacts.php:363
|
||||
#: ../../mod/contacts.php:363 ../../mod/contacts.php:355
|
||||
msgid "Find"
|
||||
msgstr "Trouver"
|
||||
|
||||
|
|
@ -3187,12 +3324,14 @@ msgstr "Trouver"
|
|||
#: ../../boot.php:2764 ../../include/conversation.php:520
|
||||
#: ../../mod/contacts.php:387 ../../include/conversation.php:587
|
||||
#: ../../mod/contacts.php:388 ../../include/conversation.php:612
|
||||
#: ../../mod/contacts.php:424
|
||||
#: ../../mod/contacts.php:424 ../../include/Contact.php:125
|
||||
#: ../../include/conversation.php:660 ../../mod/contacts.php:416
|
||||
msgid "Edit contact"
|
||||
msgstr "Éditer le contact"
|
||||
|
||||
#: ../../mod/search.php:54 ../../mod/search.php:62 ../../mod/search.php:64
|
||||
#: ../../mod/search.php:69 ../../mod/community.php:56 ../../mod/search.php:65
|
||||
#: ../../mod/search.php:122
|
||||
#, fuzzy
|
||||
msgid "No results."
|
||||
msgstr "Aucun résultat."
|
||||
|
|
@ -3226,42 +3365,42 @@ msgid "Please enter your password for verification:"
|
|||
msgstr "Merci de saisir votre mot de passe pour vérification:"
|
||||
|
||||
#: ../../boot.php:808 ../../boot.php:810 ../../boot.php:813 ../../boot.php:825
|
||||
#: ../../boot.php:826 ../../boot.php:834 ../../boot.php:636
|
||||
#: ../../boot.php:826 ../../boot.php:834 ../../boot.php:636 ../../boot.php:642
|
||||
#, fuzzy
|
||||
msgid "Create a New Account"
|
||||
msgstr "Créer un nouveau compte"
|
||||
|
||||
#: ../../boot.php:815 ../../boot.php:817 ../../boot.php:820 ../../boot.php:832
|
||||
#: ../../boot.php:833 ../../boot.php:841 ../../boot.php:643
|
||||
#: ../../boot.php:833 ../../boot.php:841 ../../boot.php:643 ../../boot.php:649
|
||||
#, fuzzy
|
||||
msgid "Nickname or Email address: "
|
||||
msgstr "Pseudo ou courriel: "
|
||||
|
||||
#: ../../boot.php:816 ../../boot.php:818 ../../boot.php:821 ../../boot.php:833
|
||||
#: ../../boot.php:834 ../../boot.php:842 ../../boot.php:644
|
||||
#: ../../boot.php:834 ../../boot.php:842 ../../boot.php:644 ../../boot.php:650
|
||||
msgid "Password: "
|
||||
msgstr "Mot de passe: "
|
||||
|
||||
#: ../../boot.php:821 ../../boot.php:823 ../../boot.php:826 ../../boot.php:838
|
||||
#: ../../boot.php:839 ../../boot.php:847 ../../boot.php:649
|
||||
#: ../../boot.php:839 ../../boot.php:847 ../../boot.php:649 ../../boot.php:655
|
||||
#, fuzzy
|
||||
msgid "Nickname/Email/OpenID: "
|
||||
msgstr "Pseudo/Courriel/OpenID: "
|
||||
|
||||
#: ../../boot.php:822 ../../boot.php:824 ../../boot.php:827 ../../boot.php:839
|
||||
#: ../../boot.php:840 ../../boot.php:848 ../../boot.php:650
|
||||
#: ../../boot.php:840 ../../boot.php:848 ../../boot.php:650 ../../boot.php:656
|
||||
msgid "Password (if not OpenID): "
|
||||
msgstr "Mot de passe (sauf pour OpenID): "
|
||||
|
||||
#: ../../boot.php:825 ../../boot.php:827 ../../boot.php:830 ../../boot.php:842
|
||||
#: ../../boot.php:843 ../../boot.php:851 ../../boot.php:653
|
||||
#: ../../boot.php:843 ../../boot.php:851 ../../boot.php:653 ../../boot.php:659
|
||||
msgid "Forgot your password?"
|
||||
msgstr "Mot de passe oublié?"
|
||||
|
||||
#: ../../boot.php:826 ../../boot.php:828 ../../mod/lostpass.php:74
|
||||
#: ../../boot.php:831 ../../boot.php:843 ../../boot.php:844
|
||||
#: ../../mod/lostpass.php:78 ../../boot.php:852 ../../mod/lostpass.php:82
|
||||
#: ../../boot.php:654
|
||||
#: ../../boot.php:654 ../../boot.php:660
|
||||
msgid "Password Reset"
|
||||
msgstr "Réinitialiser le mot de passe"
|
||||
|
||||
|
|
@ -3296,7 +3435,7 @@ msgstr "suivant"
|
|||
#: ../../boot.php:1837 ../../boot.php:1838 ../../boot.php:1840
|
||||
#: ../../boot.php:1848 ../../boot.php:1860 ../../boot.php:1861
|
||||
#: ../../include/conversation.php:571 ../../include/conversation.php:638
|
||||
#: ../../include/conversation.php:663
|
||||
#: ../../include/conversation.php:663 ../../include/conversation.php:711
|
||||
#, fuzzy, php-format
|
||||
msgid "%s likes this."
|
||||
msgstr "%s aime ça."
|
||||
|
|
@ -3304,7 +3443,7 @@ msgstr "%s aime ça."
|
|||
#: ../../boot.php:1837 ../../boot.php:1838 ../../boot.php:1840
|
||||
#: ../../boot.php:1848 ../../boot.php:1860 ../../boot.php:1861
|
||||
#: ../../include/conversation.php:571 ../../include/conversation.php:638
|
||||
#: ../../include/conversation.php:663
|
||||
#: ../../include/conversation.php:663 ../../include/conversation.php:711
|
||||
#, fuzzy, php-format
|
||||
msgid "%s doesn't like this."
|
||||
msgstr "%s n'aime pas ça."
|
||||
|
|
@ -3312,7 +3451,7 @@ msgstr "%s n'aime pas ça."
|
|||
#: ../../boot.php:1841 ../../boot.php:1842 ../../boot.php:1844
|
||||
#: ../../boot.php:1852 ../../boot.php:1864 ../../boot.php:1865
|
||||
#: ../../include/conversation.php:575 ../../include/conversation.php:642
|
||||
#: ../../include/conversation.php:667
|
||||
#: ../../include/conversation.php:667 ../../include/conversation.php:715
|
||||
#, fuzzy, php-format
|
||||
msgid "<span %1$s>%2$d people</span> like this."
|
||||
msgstr "<span %1$s>%2$d personnes</span> aiment ça."
|
||||
|
|
@ -3320,7 +3459,7 @@ msgstr "<span %1$s>%2$d personnes</span> aiment ça."
|
|||
#: ../../boot.php:1843 ../../boot.php:1844 ../../boot.php:1846
|
||||
#: ../../boot.php:1854 ../../boot.php:1866 ../../boot.php:1867
|
||||
#: ../../include/conversation.php:577 ../../include/conversation.php:644
|
||||
#: ../../include/conversation.php:669
|
||||
#: ../../include/conversation.php:669 ../../include/conversation.php:717
|
||||
#, fuzzy, php-format
|
||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||
msgstr "<span %1$s>%2$d personnes</span> ,n'aiment pas ça."
|
||||
|
|
@ -3328,14 +3467,14 @@ msgstr "<span %1$s>%2$d personnes</span> ,n'aiment pas ça."
|
|||
#: ../../boot.php:1849 ../../boot.php:1850 ../../boot.php:1852
|
||||
#: ../../boot.php:1860 ../../boot.php:1872 ../../boot.php:1873
|
||||
#: ../../include/conversation.php:583 ../../include/conversation.php:650
|
||||
#: ../../include/conversation.php:675
|
||||
#: ../../include/conversation.php:675 ../../include/conversation.php:723
|
||||
msgid "and"
|
||||
msgstr "et"
|
||||
|
||||
#: ../../boot.php:1852 ../../boot.php:1853 ../../boot.php:1855
|
||||
#: ../../boot.php:1863 ../../boot.php:1875 ../../boot.php:1876
|
||||
#: ../../include/conversation.php:586 ../../include/conversation.php:653
|
||||
#: ../../include/conversation.php:678
|
||||
#: ../../include/conversation.php:678 ../../include/conversation.php:726
|
||||
#, fuzzy, php-format
|
||||
msgid ", and %d other people"
|
||||
msgstr ", et %d autres personnes"
|
||||
|
|
@ -3343,7 +3482,7 @@ msgstr ", et %d autres personnes"
|
|||
#: ../../boot.php:1853 ../../boot.php:1854 ../../boot.php:1856
|
||||
#: ../../boot.php:1864 ../../boot.php:1876 ../../boot.php:1877
|
||||
#: ../../include/conversation.php:587 ../../include/conversation.php:654
|
||||
#: ../../include/conversation.php:679
|
||||
#: ../../include/conversation.php:679 ../../include/conversation.php:727
|
||||
#, fuzzy, php-format
|
||||
msgid "%s like this."
|
||||
msgstr "%s aiment ça."
|
||||
|
|
@ -3351,7 +3490,7 @@ msgstr "%s aiment ça."
|
|||
#: ../../boot.php:1853 ../../boot.php:1854 ../../boot.php:1856
|
||||
#: ../../boot.php:1864 ../../boot.php:1876 ../../boot.php:1877
|
||||
#: ../../include/conversation.php:587 ../../include/conversation.php:654
|
||||
#: ../../include/conversation.php:679
|
||||
#: ../../include/conversation.php:679 ../../include/conversation.php:727
|
||||
#, fuzzy, php-format
|
||||
msgid "%s don't like this."
|
||||
msgstr "%s n'aiment pas ça."
|
||||
|
|
@ -3359,12 +3498,14 @@ msgstr "%s n'aiment pas ça."
|
|||
#: ../../boot.php:2014 ../../boot.php:2015 ../../boot.php:2017
|
||||
#: ../../boot.php:2025 ../../boot.php:2037 ../../boot.php:2038
|
||||
#: ../../boot.php:1983 ../../boot.php:2001 ../../include/text.php:542
|
||||
#: ../../include/text.php:543
|
||||
msgid "No contacts"
|
||||
msgstr "Aucun contact"
|
||||
|
||||
#: ../../boot.php:2267 ../../boot.php:2268 ../../boot.php:2270
|
||||
#: ../../boot.php:2278 ../../boot.php:2290 ../../boot.php:2305
|
||||
#: ../../boot.php:2254 ../../boot.php:2275 ../../boot.php:856
|
||||
#: ../../boot.php:860
|
||||
msgid "Connect"
|
||||
msgstr "Relier"
|
||||
|
||||
|
|
@ -3372,6 +3513,8 @@ msgstr "Relier"
|
|||
#: ../../boot.php:2288 ../../boot.php:2300 ../../boot.php:2315
|
||||
#: ../../boot.php:2264 ../../boot.php:2290 ../../include/event.php:37
|
||||
#: ../../mod/events.php:328 ../../boot.php:871
|
||||
#: ../../include/bb2diaspora.php:213 ../../mod/events.php:335
|
||||
#: ../../boot.php:910
|
||||
msgid "Location:"
|
||||
msgstr "Localisation:"
|
||||
|
||||
|
|
@ -3384,140 +3527,161 @@ msgstr ", "
|
|||
#: ../../boot.php:2289 ../../boot.php:2290 ../../boot.php:2292
|
||||
#: ../../include/profile_advanced.php:23 ../../boot.php:2300
|
||||
#: ../../boot.php:2312 ../../boot.php:2327 ../../boot.php:2276
|
||||
#: ../../boot.php:2302 ../../boot.php:884
|
||||
#: ../../boot.php:2302 ../../boot.php:884 ../../boot.php:912
|
||||
msgid "Gender:"
|
||||
msgstr "Genre:"
|
||||
|
||||
#: ../../boot.php:2293 ../../boot.php:2294 ../../boot.php:2296
|
||||
#: ../../boot.php:2304 ../../boot.php:2316 ../../boot.php:2331
|
||||
#: ../../boot.php:2280 ../../boot.php:2306 ../../boot.php:888
|
||||
#: ../../boot.php:915
|
||||
msgid "Status:"
|
||||
msgstr "Statut:"
|
||||
|
||||
#: ../../boot.php:2295 ../../boot.php:2296 ../../boot.php:2298
|
||||
#: ../../include/profile_advanced.php:103 ../../boot.php:2306
|
||||
#: ../../boot.php:2318 ../../boot.php:2333 ../../boot.php:2282
|
||||
#: ../../boot.php:2308 ../../boot.php:890
|
||||
#: ../../boot.php:2308 ../../boot.php:890 ../../boot.php:917
|
||||
msgid "Homepage:"
|
||||
msgstr "Page personnelle:"
|
||||
|
||||
#: ../../boot.php:2386 ../../boot.php:2387 ../../boot.php:2389
|
||||
#: ../../boot.php:2397 ../../boot.php:2409 ../../boot.php:2424
|
||||
#: ../../boot.php:2373 ../../boot.php:2399 ../../include/text.php:685
|
||||
#: ../../include/text.php:705
|
||||
msgid "Monday"
|
||||
msgstr "Lundi"
|
||||
|
||||
#: ../../boot.php:2386 ../../boot.php:2387 ../../boot.php:2389
|
||||
#: ../../boot.php:2397 ../../boot.php:2409 ../../boot.php:2424
|
||||
#: ../../boot.php:2373 ../../boot.php:2399 ../../include/text.php:685
|
||||
#: ../../include/text.php:705
|
||||
msgid "Tuesday"
|
||||
msgstr "Mardi"
|
||||
|
||||
#: ../../boot.php:2386 ../../boot.php:2387 ../../boot.php:2389
|
||||
#: ../../boot.php:2397 ../../boot.php:2409 ../../boot.php:2424
|
||||
#: ../../boot.php:2373 ../../boot.php:2399 ../../include/text.php:685
|
||||
#: ../../include/text.php:705
|
||||
msgid "Wednesday"
|
||||
msgstr "Mercredi"
|
||||
|
||||
#: ../../boot.php:2386 ../../boot.php:2387 ../../boot.php:2389
|
||||
#: ../../boot.php:2397 ../../boot.php:2409 ../../boot.php:2424
|
||||
#: ../../boot.php:2373 ../../boot.php:2399 ../../include/text.php:685
|
||||
#: ../../include/text.php:705
|
||||
msgid "Thursday"
|
||||
msgstr "Jeudi"
|
||||
|
||||
#: ../../boot.php:2386 ../../boot.php:2387 ../../boot.php:2389
|
||||
#: ../../boot.php:2397 ../../boot.php:2409 ../../boot.php:2424
|
||||
#: ../../boot.php:2373 ../../boot.php:2399 ../../include/text.php:685
|
||||
#: ../../include/text.php:705
|
||||
msgid "Friday"
|
||||
msgstr "Vendredi"
|
||||
|
||||
#: ../../boot.php:2386 ../../boot.php:2387 ../../boot.php:2389
|
||||
#: ../../boot.php:2397 ../../boot.php:2409 ../../boot.php:2424
|
||||
#: ../../boot.php:2373 ../../boot.php:2399 ../../include/text.php:685
|
||||
#: ../../include/text.php:705
|
||||
msgid "Saturday"
|
||||
msgstr "Samedi"
|
||||
|
||||
#: ../../boot.php:2386 ../../boot.php:2387 ../../boot.php:2389
|
||||
#: ../../boot.php:2397 ../../boot.php:2409 ../../boot.php:2424
|
||||
#: ../../boot.php:2373 ../../boot.php:2399 ../../include/text.php:685
|
||||
#: ../../include/text.php:705
|
||||
msgid "Sunday"
|
||||
msgstr "Dimanche"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "January"
|
||||
msgstr "Janvier"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "February"
|
||||
msgstr "Février"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "March"
|
||||
msgstr "Mars"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "April"
|
||||
msgstr "Avril"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "May"
|
||||
msgstr "Mai"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "June"
|
||||
msgstr "Juin"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "July"
|
||||
msgstr "Juillet"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "August"
|
||||
msgstr "Août"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "September"
|
||||
msgstr "Septembre"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "October"
|
||||
msgstr "Octobre"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "November"
|
||||
msgstr "Novembre"
|
||||
|
||||
#: ../../boot.php:2390 ../../boot.php:2391 ../../boot.php:2393
|
||||
#: ../../boot.php:2401 ../../boot.php:2413 ../../boot.php:2428
|
||||
#: ../../boot.php:2377 ../../boot.php:2403 ../../include/text.php:689
|
||||
#: ../../include/text.php:709
|
||||
msgid "December"
|
||||
msgstr "Décembre"
|
||||
|
||||
#: ../../boot.php:2424 ../../boot.php:2425 ../../boot.php:2427
|
||||
#: ../../boot.php:2433 ../../boot.php:2445 ../../boot.php:2460
|
||||
#: ../../boot.php:2409 ../../boot.php:2436 ../../boot.php:1003
|
||||
#: ../../boot.php:988
|
||||
#, fuzzy
|
||||
msgid "Birthday Reminders"
|
||||
msgstr "Rappels d'anniversaires"
|
||||
|
|
@ -3525,44 +3689,52 @@ msgstr "Rappels d'anniversaires"
|
|||
#: ../../boot.php:2425 ../../boot.php:2426 ../../boot.php:2428
|
||||
#: ../../boot.php:2434 ../../boot.php:2446 ../../boot.php:2461
|
||||
#: ../../boot.php:2410 ../../boot.php:2437 ../../boot.php:1004
|
||||
#: ../../boot.php:989
|
||||
msgid "Birthdays this week:"
|
||||
msgstr "Anniversaires cette semaine:"
|
||||
|
||||
#: ../../boot.php:2426 ../../boot.php:2427 ../../boot.php:2429
|
||||
#: ../../boot.php:2435 ../../boot.php:2447 ../../boot.php:2462
|
||||
#: ../../boot.php:2411 ../../boot.php:2438 ../../boot.php:1005
|
||||
#: ../../boot.php:990
|
||||
msgid "(Adjusted for local time)"
|
||||
msgstr "(Ajustés pour le fuseau horaire local)"
|
||||
|
||||
#: ../../boot.php:2437 ../../boot.php:2438 ../../boot.php:2440
|
||||
#: ../../boot.php:2446 ../../boot.php:2458 ../../boot.php:2473
|
||||
#: ../../boot.php:2422 ../../boot.php:2449 ../../boot.php:1016
|
||||
#: ../../boot.php:1001
|
||||
msgid "[today]"
|
||||
msgstr "[aujourd'hui]"
|
||||
|
||||
#: ../../boot.php:2634 ../../boot.php:2635 ../../boot.php:2637
|
||||
#: ../../boot.php:2643 ../../boot.php:2655 ../../boot.php:2670
|
||||
#: ../../boot.php:2619 ../../boot.php:2653 ../../include/text.php:820
|
||||
#: ../../mod/events.php:237
|
||||
#: ../../mod/events.php:237 ../../include/text.php:842
|
||||
#: ../../mod/events.php:244
|
||||
#, fuzzy
|
||||
msgid "link to source"
|
||||
msgstr "lien original"
|
||||
|
||||
#: ../../index.php:194 ../../index.php:208 ../../index.php:210
|
||||
#: ../../mod/help.php:37 ../../index.php:209
|
||||
#: ../../mod/help.php:37 ../../index.php:209 ../../mod/help.php:38
|
||||
#: ../../index.php:212
|
||||
msgid "Not Found"
|
||||
msgstr "Non trouvé"
|
||||
|
||||
#: ../../index.php:195 ../../index.php:209 ../../index.php:211
|
||||
#: ../../mod/help.php:38 ../../index.php:210
|
||||
#: ../../mod/help.php:38 ../../index.php:210 ../../mod/help.php:41
|
||||
#: ../../index.php:215
|
||||
msgid "Page not found."
|
||||
msgstr "Page introuvable."
|
||||
|
||||
#: ../../mod/friendika.php:12 ../../mod/friendika.php:42
|
||||
#: ../../mod/friendika.php:43
|
||||
msgid "This is Friendika version"
|
||||
msgstr "Motorisé par Friendika version"
|
||||
|
||||
#: ../../mod/friendika.php:13 ../../mod/friendika.php:43
|
||||
#: ../../mod/friendika.php:44
|
||||
msgid "running at web location"
|
||||
msgstr "hébergé sur"
|
||||
|
||||
|
|
@ -3577,6 +3749,7 @@ msgstr ""
|
|||
"Attribution 3.0</a>"
|
||||
|
||||
#: ../../mod/friendika.php:17 ../../mod/friendika.php:47
|
||||
#: ../../mod/friendika.php:46
|
||||
msgid ""
|
||||
"Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</"
|
||||
"a> to learn more about the Friendika project."
|
||||
|
|
@ -3585,10 +3758,12 @@ msgstr ""
|
|||
"project.friendika.com\">Project.Friendika.com</a>"
|
||||
|
||||
#: ../../mod/friendika.php:19 ../../mod/friendika.php:49
|
||||
#: ../../mod/friendika.php:48
|
||||
msgid "Bug reports and issues: please visit"
|
||||
msgstr "Pour les rapports de bugs: rendez vous sur"
|
||||
|
||||
#: ../../mod/friendika.php:20 ../../mod/friendika.php:50
|
||||
#: ../../mod/friendika.php:49
|
||||
msgid ""
|
||||
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - "
|
||||
"dot com"
|
||||
|
|
@ -3597,10 +3772,12 @@ msgstr ""
|
|||
"Friendika - point com"
|
||||
|
||||
#: ../../mod/friendika.php:25 ../../mod/friendika.php:55
|
||||
#: ../../mod/friendika.php:54
|
||||
msgid "Installed plugins/addons/apps"
|
||||
msgstr "Extensions/greffons/applications installées"
|
||||
|
||||
#: ../../mod/friendika.php:33 ../../mod/friendika.php:63
|
||||
#: ../../mod/friendika.php:62
|
||||
msgid "No installed plugins/addons/apps"
|
||||
msgstr "Aucune extension/greffon/application installée"
|
||||
|
||||
|
|
@ -3608,7 +3785,8 @@ msgstr "Aucune extension/greffon/application installée"
|
|||
msgid "Profile Match"
|
||||
msgstr "Correpondance de profils"
|
||||
|
||||
#: ../../mod/match.php:50 ../../mod/match.php:54
|
||||
#: ../../mod/match.php:50 ../../mod/match.php:54 ../../mod/tagmatch.php:44
|
||||
#: ../../mod/match.php:57
|
||||
msgid "No matches"
|
||||
msgstr "Aucune correspondance"
|
||||
|
||||
|
|
@ -3624,7 +3802,7 @@ msgstr "Davantage de publications similaires"
|
|||
#: ../../mod/network.php:428 ../../mod/profile.php:352
|
||||
#: ../../include/conversation.php:217 ../../include/conversation.php:227
|
||||
#: ../../include/conversation.php:237 ../../include/conversation.php:296
|
||||
#: ../../include/conversation.php:329
|
||||
#: ../../include/conversation.php:329 ../../include/conversation.php:356
|
||||
#, php-format
|
||||
msgid "See all %d comments"
|
||||
msgstr "Voir les %d commentaires"
|
||||
|
|
@ -3659,6 +3837,8 @@ msgstr "Aucune entrée (certaines peuvent être cachées)."
|
|||
#: ../../mod/profile.php:102 ../../mod/mprofile.php:101
|
||||
#: ../../mod/profile.php:103 ../../mod/profile.php:112 ../../mod/notes.php:46
|
||||
#: ../../mod/events.php:112 ../../mod/profile.php:117 ../../mod/photos.php:834
|
||||
#: ../../include/nav.php:47 ../../mod/events.php:119 ../../mod/profile.php:118
|
||||
#: ../../mod/photos.php:839
|
||||
msgid "Status"
|
||||
msgstr "Statut"
|
||||
|
||||
|
|
@ -3667,12 +3847,16 @@ msgstr "Statut"
|
|||
#: ../../mod/profperm.php:94 ../../mod/profile.php:113 ../../mod/notes.php:47
|
||||
#: ../../mod/events.php:113 ../../mod/profile.php:118
|
||||
#: ../../mod/profperm.php:103 ../../mod/photos.php:835
|
||||
#: ../../include/nav.php:48 ../../mod/events.php:120 ../../mod/profile.php:119
|
||||
#: ../../mod/photos.php:840
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
#: ../../mod/profile.php:104 ../../mod/mprofile.php:103
|
||||
#: ../../mod/profile.php:105 ../../mod/profile.php:114 ../../mod/notes.php:48
|
||||
#: ../../mod/events.php:114 ../../mod/profile.php:119 ../../mod/photos.php:836
|
||||
#: ../../include/nav.php:49 ../../mod/events.php:121 ../../mod/profile.php:120
|
||||
#: ../../mod/photos.php:841
|
||||
msgid "Photos"
|
||||
msgstr "Photos"
|
||||
|
||||
|
|
@ -3682,7 +3866,7 @@ msgstr "Trouver des gens d'intérêts communs"
|
|||
|
||||
#: ../../boot.php:2023 ../../boot.php:2025 ../../boot.php:2033
|
||||
#: ../../boot.php:2045 ../../boot.php:2046 ../../boot.php:1991
|
||||
#: ../../boot.php:2009 ../../include/text.php:550
|
||||
#: ../../boot.php:2009 ../../include/text.php:550 ../../include/text.php:552
|
||||
#, php-format
|
||||
msgid "%d Contact"
|
||||
msgid_plural "%d Contacts"
|
||||
|
|
@ -3696,7 +3880,7 @@ msgstr "Publication réussie."
|
|||
#: ../../mod/network.php:74 ../../mod/profile.php:142 ../../mod/network.php:82
|
||||
#: ../../mod/profile.php:135 ../../mod/network.php:80
|
||||
#: ../../mod/profile.php:136 ../../include/conversation.php:679
|
||||
#: ../../include/conversation.php:704
|
||||
#: ../../include/conversation.php:704 ../../include/conversation.php:752
|
||||
msgid "Enter a title for this item"
|
||||
msgstr "Saisissez un titre pour cet élément"
|
||||
|
||||
|
|
@ -3704,21 +3888,22 @@ msgstr "Saisissez un titre pour cet élément"
|
|||
#: ../../mod/network.php:113 ../../mod/profile.php:166
|
||||
#: ../../mod/network.php:111 ../../mod/profile.php:167
|
||||
#: ../../include/conversation.php:726 ../../include/conversation.php:755
|
||||
#: ../../include/conversation.php:803
|
||||
msgid "Set title"
|
||||
msgstr "Définir un titre"
|
||||
|
||||
#: ../../mod/profile_photo.php:200 ../../mod/profile_photo.php:204
|
||||
#: ../../mod/profile_photo.php:209
|
||||
#: ../../mod/profile_photo.php:209 ../../mod/profile_photo.php:215
|
||||
msgid "Crop Image"
|
||||
msgstr "(Re)cadrer l'image"
|
||||
|
||||
#: ../../mod/profile_photo.php:201 ../../mod/profile_photo.php:205
|
||||
#: ../../mod/profile_photo.php:210
|
||||
#: ../../mod/profile_photo.php:210 ../../mod/profile_photo.php:216
|
||||
msgid "Please adjust the image cropping for optimum viewing."
|
||||
msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
|
||||
|
||||
#: ../../mod/profile_photo.php:202 ../../mod/profile_photo.php:206
|
||||
#: ../../mod/profile_photo.php:211
|
||||
#: ../../mod/profile_photo.php:211 ../../mod/profile_photo.php:217
|
||||
msgid "Done Editing"
|
||||
msgstr "Édition terminée"
|
||||
|
||||
|
|
@ -3727,11 +3912,12 @@ msgid "Pending Friend/Connect Notifications"
|
|||
msgstr "Notifications de relation/amitié enattente"
|
||||
|
||||
#: ../../mod/notifications.php:143 ../../mod/admin.php:466
|
||||
#: ../../mod/admin.php:470
|
||||
msgid "User registrations waiting for confirm"
|
||||
msgstr "Inscriptions d'utilisateurs en attente de confirmation"
|
||||
|
||||
#: ../../boot.php:359 ../../boot.php:371 ../../boot.php:372 ../../boot.php:385
|
||||
#: ../../boot.php:410
|
||||
#: ../../boot.php:410 ../../boot.php:416
|
||||
msgid "Delete this item?"
|
||||
msgstr "Effacer cet élément?"
|
||||
|
||||
|
|
@ -3744,6 +3930,8 @@ msgstr "Effacer cet élément?"
|
|||
#: ../../mod/photos.php:1169 ../../mod/photos.php:1200 ../../boot.php:386
|
||||
#: ../../include/conversation.php:408 ../../mod/photos.php:1183
|
||||
#: ../../mod/photos.php:1222 ../../mod/photos.php:1253 ../../boot.php:411
|
||||
#: ../../include/conversation.php:433 ../../mod/photos.php:1198
|
||||
#: ../../mod/photos.php:1237 ../../mod/photos.php:1268 ../../boot.php:417
|
||||
msgid "Comment"
|
||||
msgstr "Commenter"
|
||||
|
||||
|
|
@ -3927,12 +4115,16 @@ msgstr "Exemple: football dessin programmation"
|
|||
#: ../../mod/profiles.php:395 ../../mod/profiles.php:397
|
||||
#, fuzzy
|
||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||
msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"
|
||||
msgstr ""
|
||||
"(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par "
|
||||
"autrui)"
|
||||
|
||||
#: ../../mod/profiles.php:396 ../../mod/profiles.php:398
|
||||
#, fuzzy
|
||||
msgid "(Used for searching profiles, never shown to others)"
|
||||
msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"
|
||||
msgstr ""
|
||||
"(Utilisés pour rechercher dans les profils, ne seront jamais montrés à "
|
||||
"autrui)"
|
||||
|
||||
#: ../../mod/profiles.php:397 ../../mod/profiles.php:399
|
||||
#, fuzzy
|
||||
|
|
@ -3984,12 +4176,12 @@ msgstr "Activité professionnelle/Occupation"
|
|||
msgid "School/education"
|
||||
msgstr "Études/Formation"
|
||||
|
||||
#: ../../mod/profiles.php:457 ../../mod/profiles.php:459
|
||||
#: ../../mod/profiles.php:457 ../../mod/profiles.php:459 ../../boot.php:876
|
||||
#, fuzzy
|
||||
msgid "Change profile photo"
|
||||
msgstr "Changer de photo de profil"
|
||||
|
||||
#: ../../mod/profiles.php:458 ../../mod/profiles.php:460
|
||||
#: ../../mod/profiles.php:458 ../../mod/profiles.php:460 ../../boot.php:877
|
||||
#, fuzzy
|
||||
msgid "Create New Profile"
|
||||
msgstr "Créer un nouveau profil"
|
||||
|
|
@ -4004,15 +4196,20 @@ msgstr[1] "%d membres"
|
|||
#: ../../mod/network.php:60 ../../mod/network.php:58 ../../mod/network.php:65
|
||||
#, fuzzy, php-format
|
||||
msgid "Warning: This group contains %s from an insecure network."
|
||||
msgstr "Attention : ce groupe contient %s, qui se connecte depuis un réseau non-sécurisé."
|
||||
msgstr ""
|
||||
"Attention : ce groupe contient %s, qui se connecte depuis un réseau non-"
|
||||
"sécurisé."
|
||||
|
||||
#: ../../mod/network.php:61 ../../mod/network.php:59 ../../mod/network.php:66
|
||||
#: ../../mod/network.php:97
|
||||
#: ../../mod/network.php:97 ../../mod/network.php:197
|
||||
#, fuzzy
|
||||
msgid "Private messages to this group are at risk of public disclosure."
|
||||
msgstr Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."
|
||||
msgstr ""
|
||||
"Les messages privés envoyés à ce groupe s'exposent à une diffusion "
|
||||
"incontrôlée."
|
||||
|
||||
#: ../../mod/message.php:240 ../../mod/message.php:166
|
||||
#: ../../mod/message.php:175
|
||||
#, fuzzy
|
||||
msgid "D, d M Y - g:i A"
|
||||
msgstr "D, d M Y - g:i A"
|
||||
|
|
@ -4080,6 +4277,7 @@ msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
|
|||
|
||||
#: ../../mod/settings.php:262 ../../mod/settings.php:323
|
||||
#: ../../mod/admin.php:133 ../../mod/admin.php:446 ../../mod/settings.php:382
|
||||
#: ../../mod/admin.php:450
|
||||
#, fuzzy
|
||||
msgid "Normal Account"
|
||||
msgstr "Compte normal"
|
||||
|
|
@ -4088,10 +4286,13 @@ msgstr "Compte normal"
|
|||
#: ../../mod/settings.php:383
|
||||
#, fuzzy
|
||||
msgid "This account is a normal personal profile"
|
||||
msgstr Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"
|
||||
msgstr ""
|
||||
"Ce compte correspond à un profil normal, pour une seule personne (physique, "
|
||||
"généralement)"
|
||||
|
||||
#: ../../mod/settings.php:264 ../../mod/settings.php:325
|
||||
#: ../../mod/admin.php:134 ../../mod/admin.php:447 ../../mod/settings.php:386
|
||||
#: ../../mod/admin.php:451
|
||||
#, fuzzy
|
||||
msgid "Soapbox Account"
|
||||
msgstr "Compte \"boîte à savon\""
|
||||
|
|
@ -4100,10 +4301,13 @@ msgstr "Compte \"boîte à savon\""
|
|||
#: ../../mod/settings.php:387
|
||||
#, fuzzy
|
||||
msgid "Automatically approve all connection/friend requests as read-only fans"
|
||||
msgstr Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'"
|
||||
msgstr ""
|
||||
"Accepter automatiquement toutes les demandes d'amitié/connexion comme étant "
|
||||
"des fans 'en lecture seule'"
|
||||
|
||||
#: ../../mod/settings.php:266 ../../mod/settings.php:327
|
||||
#: ../../mod/admin.php:135 ../../mod/admin.php:448 ../../mod/settings.php:390
|
||||
#: ../../mod/admin.php:452
|
||||
#, fuzzy
|
||||
msgid "Community/Celebrity Account"
|
||||
msgstr "Compte de communauté/célébrité"
|
||||
|
|
@ -4112,10 +4316,13 @@ msgstr "Compte de communauté/célébrité"
|
|||
#: ../../mod/settings.php:391
|
||||
#, fuzzy
|
||||
msgid "Automatically approve all connection/friend requests as read-write fans"
|
||||
msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'"
|
||||
msgstr ""
|
||||
"Accepter automatiquement toutes les demandes d'amitié/connexion comme étant "
|
||||
"des fans en 'lecture/écriture'"
|
||||
|
||||
#: ../../mod/settings.php:268 ../../mod/settings.php:329
|
||||
#: ../../mod/admin.php:136 ../../mod/admin.php:449 ../../mod/settings.php:394
|
||||
#: ../../mod/admin.php:453
|
||||
#, fuzzy
|
||||
msgid "Automatic Friend Account"
|
||||
msgstr "Compte auto-amical"
|
||||
|
|
@ -4124,7 +4331,9 @@ msgstr "Compte auto-amical"
|
|||
#: ../../mod/settings.php:395
|
||||
#, fuzzy
|
||||
msgid "Automatically approve all connection/friend requests as friends"
|
||||
msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"
|
||||
msgstr ""
|
||||
"Accepter automatiquement toutes les demandes d'amitié/connexion comme étant "
|
||||
"des amis"
|
||||
|
||||
#: ../../mod/settings.php:288 ../../mod/settings.php:349
|
||||
#, fuzzy
|
||||
|
|
@ -4138,7 +4347,7 @@ msgstr "Publier votre profil par défaut sur l'annuaire global?"
|
|||
|
||||
#: ../../mod/settings.php:336 ../../mod/profile_photo.php:191
|
||||
#: ../../mod/settings.php:398 ../../mod/profile_photo.php:196
|
||||
#: ../../mod/settings.php:461
|
||||
#: ../../mod/settings.php:461 ../../mod/profile_photo.php:202
|
||||
#, fuzzy
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
|
|
@ -4265,7 +4474,8 @@ msgstr "Réglages de mot de passe"
|
|||
#: ../../mod/settings.php:492
|
||||
#, fuzzy
|
||||
msgid "Leave password fields blank unless changing"
|
||||
msgstr "Laissez les champs de mot de passe vierge, sauf si vous désirez les changer"
|
||||
msgstr ""
|
||||
"Laissez les champs de mot de passe vierge, sauf si vous désirez les changer"
|
||||
|
||||
#: ../../mod/settings.php:380 ../../mod/settings.php:442
|
||||
#: ../../mod/settings.php:491
|
||||
|
|
@ -4384,21 +4594,25 @@ msgid "Members:"
|
|||
msgstr "Membres:"
|
||||
|
||||
#: ../../mod/profile_photo.php:188 ../../mod/profile_photo.php:193
|
||||
#: ../../mod/profile_photo.php:199
|
||||
#, fuzzy
|
||||
msgid "Upload File:"
|
||||
msgstr "Fichier à téléverser:"
|
||||
|
||||
#: ../../mod/profile_photo.php:189 ../../mod/profile_photo.php:194
|
||||
#: ../../mod/profile_photo.php:200
|
||||
#, fuzzy
|
||||
msgid "Upload Profile Photo"
|
||||
msgstr "Téléverser une photo de profil"
|
||||
|
||||
#: ../../mod/profile_photo.php:190 ../../mod/profile_photo.php:195
|
||||
#: ../../mod/profile_photo.php:201
|
||||
#, fuzzy
|
||||
msgid "Upload"
|
||||
msgstr "Téléverser"
|
||||
|
||||
#: ../../mod/profile_photo.php:191 ../../mod/profile_photo.php:196
|
||||
#: ../../mod/profile_photo.php:202
|
||||
#, fuzzy
|
||||
msgid "select a photo from your photo albums"
|
||||
msgstr "choisissez une photo depuis vos albums"
|
||||
|
|
@ -4410,34 +4624,37 @@ msgid "Site Directory"
|
|||
msgstr "Annuaire local"
|
||||
|
||||
#: ../../mod/dfrn_request.php:503 ../../mod/dfrn_request.php:507
|
||||
#: ../../mod/dfrn_request.php:504
|
||||
#: ../../mod/dfrn_request.php:504 ../../mod/dfrn_request.php:505
|
||||
#, fuzzy, php-format
|
||||
msgid "Welcome home %s."
|
||||
msgstr "Bienvenue chez vous, %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:504 ../../mod/dfrn_request.php:508
|
||||
#: ../../mod/dfrn_request.php:505
|
||||
#: ../../mod/dfrn_request.php:505 ../../mod/dfrn_request.php:506
|
||||
#, fuzzy, php-format
|
||||
msgid "Please confirm your introduction/connection request to %s."
|
||||
msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
|
||||
|
||||
#: ../../mod/dfrn_request.php:505 ../../mod/dfrn_request.php:509
|
||||
#: ../../mod/dfrn_request.php:506
|
||||
#: ../../mod/dfrn_request.php:506 ../../mod/dfrn_request.php:507
|
||||
#, fuzzy
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmer"
|
||||
|
||||
#: ../../mod/notifications.php:154 ../../mod/admin.php:470
|
||||
#: ../../mod/admin.php:474
|
||||
#, fuzzy
|
||||
msgid "Deny"
|
||||
msgstr "Rejetter"
|
||||
|
||||
#: ../../mod/contacts.php:265 ../../mod/contacts.php:299
|
||||
#: ../../mod/contacts.php:293
|
||||
#, fuzzy
|
||||
msgid "Profile Visibility"
|
||||
msgstr "Visibilité du profil"
|
||||
|
||||
#: ../../mod/contacts.php:266 ../../mod/contacts.php:300
|
||||
#: ../../mod/contacts.php:294
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"Please choose the profile you would like to display to %s when viewing your "
|
||||
|
|
@ -4447,16 +4664,19 @@ msgstr ""
|
|||
"rend visite de manière nominative."
|
||||
|
||||
#: ../../mod/contacts.php:267 ../../mod/contacts.php:301
|
||||
#: ../../mod/contacts.php:295
|
||||
#, fuzzy
|
||||
msgid "Contact Information / Notes"
|
||||
msgstr "Informations de contact / Notes"
|
||||
|
||||
#: ../../mod/contacts.php:268 ../../mod/contacts.php:302
|
||||
#: ../../mod/contacts.php:296
|
||||
#, fuzzy
|
||||
msgid "Online Reputation"
|
||||
msgstr "Réputation en ligne"
|
||||
|
||||
#: ../../mod/contacts.php:269 ../../mod/contacts.php:303
|
||||
#: ../../mod/contacts.php:297
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Occasionally your friends may wish to inquire about this person's online "
|
||||
|
|
@ -4466,6 +4686,7 @@ msgstr ""
|
|||
"de cette personne."
|
||||
|
||||
#: ../../mod/contacts.php:270 ../../mod/contacts.php:304
|
||||
#: ../../mod/contacts.php:298
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"You may help them choose whether or not to interact with this person by "
|
||||
|
|
@ -4475,6 +4696,7 @@ msgstr ""
|
|||
"cette personne en leur fournissant une mesure de <em>réputation</em>."
|
||||
|
||||
#: ../../mod/contacts.php:271 ../../mod/contacts.php:305
|
||||
#: ../../mod/contacts.php:299
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Please take a moment to elaborate on this selection if you feel it could be "
|
||||
|
|
@ -4485,34 +4707,39 @@ msgstr ""
|
|||
|
||||
#: ../../boot.php:2416 ../../boot.php:2428 ../../boot.php:2443
|
||||
#: ../../boot.php:2392 ../../boot.php:2418 ../../boot.php:985
|
||||
#: ../../boot.php:970
|
||||
#, fuzzy
|
||||
msgid "g A l F d"
|
||||
msgstr "g A | F d"
|
||||
|
||||
#: ../../boot.php:2734 ../../boot.php:2746 ../../boot.php:2761
|
||||
#: ../../include/conversation.php:517 ../../include/conversation.php:583
|
||||
#: ../../include/conversation.php:608
|
||||
#: ../../include/conversation.php:608 ../../include/Contact.php:121
|
||||
#: ../../include/conversation.php:656
|
||||
#, fuzzy
|
||||
msgid "View status"
|
||||
msgstr "Voir le statut"
|
||||
|
||||
#: ../../boot.php:2735 ../../boot.php:2747 ../../boot.php:2762
|
||||
#: ../../include/conversation.php:518 ../../include/conversation.php:584
|
||||
#: ../../include/conversation.php:609
|
||||
#: ../../include/conversation.php:609 ../../include/Contact.php:122
|
||||
#: ../../include/conversation.php:657
|
||||
#, fuzzy
|
||||
msgid "View profile"
|
||||
msgstr "Voir le profil"
|
||||
|
||||
#: ../../boot.php:2736 ../../boot.php:2748 ../../boot.php:2763
|
||||
#: ../../include/conversation.php:519 ../../include/conversation.php:585
|
||||
#: ../../include/conversation.php:610
|
||||
#: ../../include/conversation.php:610 ../../include/Contact.php:123
|
||||
#: ../../include/conversation.php:658
|
||||
#, fuzzy
|
||||
msgid "View photos"
|
||||
msgstr "Voir les photos"
|
||||
|
||||
#: ../../boot.php:2738 ../../boot.php:2750 ../../boot.php:2765
|
||||
#: ../../include/conversation.php:521 ../../include/conversation.php:588
|
||||
#: ../../include/conversation.php:613
|
||||
#: ../../include/conversation.php:613 ../../include/Contact.php:126
|
||||
#: ../../include/Contact.php:137 ../../include/conversation.php:661
|
||||
#, fuzzy
|
||||
msgid "Send PM"
|
||||
msgstr "Envoyer message"
|
||||
|
|
@ -4530,7 +4757,8 @@ msgid "View %s's profile"
|
|||
msgstr "Voir le profil de %s"
|
||||
|
||||
#: ../../include/nav.php:68 ../../include/nav.php:67 ../../include/nav.php:64
|
||||
#: ../../mod/help.php:31 ../../mod/help.php:33
|
||||
#: ../../mod/help.php:31 ../../mod/help.php:33 ../../include/nav.php:82
|
||||
#: ../../mod/help.php:34
|
||||
#, fuzzy
|
||||
msgid "Help"
|
||||
msgstr "Aide"
|
||||
|
|
@ -4539,7 +4767,7 @@ msgstr "Aide"
|
|||
msgid "Visible to everybody"
|
||||
msgstr "Visible par tout le monde"
|
||||
|
||||
#: ../../mod/profiles.php:471 ../../mod/profiles.php:473
|
||||
#: ../../mod/profiles.php:471 ../../mod/profiles.php:473 ../../boot.php:891
|
||||
msgid "Edit visibility"
|
||||
msgstr "Changer la visibilité"
|
||||
|
||||
|
|
@ -4548,11 +4776,11 @@ msgstr "Changer la visibilité"
|
|||
msgid "Click on a contact to add or remove."
|
||||
msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
|
||||
|
||||
#: ../../mod/group.php:169 ../../mod/group.php:180
|
||||
#: ../../mod/group.php:169 ../../mod/group.php:180 ../../mod/group.php:179
|
||||
msgid "Members"
|
||||
msgstr "Membres"
|
||||
|
||||
#: ../../mod/group.php:183 ../../mod/group.php:195
|
||||
#: ../../mod/group.php:183 ../../mod/group.php:195 ../../mod/group.php:194
|
||||
msgid "All Contacts"
|
||||
msgstr "Tout les contacts"
|
||||
|
||||
|
|
@ -4578,27 +4806,27 @@ msgstr "Tous les contacts (ayant un accès sécurisé)"
|
|||
msgid "(click to open/close)"
|
||||
msgstr "(cliquer pour ouvrir/fermer)"
|
||||
|
||||
#: ../../mod/crepair.php:42
|
||||
#: ../../mod/crepair.php:42 ../../mod/crepair.php:44
|
||||
msgid "Contact settings applied."
|
||||
msgstr "Réglages du contact appliqués."
|
||||
|
||||
#: ../../mod/crepair.php:44
|
||||
#: ../../mod/crepair.php:44 ../../mod/crepair.php:46
|
||||
msgid "Contact update failed."
|
||||
msgstr "Echec lors de la mise à jour du contact."
|
||||
|
||||
#: ../../mod/crepair.php:74
|
||||
#: ../../mod/crepair.php:74 ../../mod/crepair.php:76
|
||||
msgid "Repair Contact Settings"
|
||||
msgstr "Réparer les réglages du contact"
|
||||
|
||||
#: ../../mod/crepair.php:76
|
||||
#: ../../mod/crepair.php:76 ../../mod/crepair.php:78
|
||||
msgid ""
|
||||
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
|
||||
"information your communications with this contact will stop working."
|
||||
msgstr ""
|
||||
"<strong>ATTENTION: Ceci est à réserver aux utilisateurs avancés</strong> et pourrait "
|
||||
"bloquer vos communications avec ce contact en cas d'erreur."
|
||||
"<strong>ATTENTION: Ceci est à réserver aux utilisateurs avancés</strong> et "
|
||||
"pourrait bloquer vos communications avec ce contact en cas d'erreur."
|
||||
|
||||
#: ../../mod/crepair.php:77
|
||||
#: ../../mod/crepair.php:77 ../../mod/crepair.php:79
|
||||
msgid ""
|
||||
"Please use your browser 'Back' button <strong>now</strong> if you are "
|
||||
"uncertain what to do on this page."
|
||||
|
|
@ -4607,52 +4835,58 @@ msgstr ""
|
|||
"vous avez le moindre doute."
|
||||
|
||||
#: ../../mod/crepair.php:85 ../../mod/admin.php:467 ../../mod/admin.php:476
|
||||
#: ../../mod/admin.php:471 ../../mod/admin.php:480 ../../mod/crepair.php:87
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: ../../mod/crepair.php:86
|
||||
#: ../../mod/crepair.php:86 ../../mod/crepair.php:88
|
||||
msgid "Account Nickname"
|
||||
msgstr "Pseudo du compte"
|
||||
|
||||
#: ../../mod/crepair.php:87
|
||||
#: ../../mod/crepair.php:87 ../../mod/crepair.php:90
|
||||
msgid "Account URL"
|
||||
msgstr "URL du compte"
|
||||
|
||||
#: ../../mod/crepair.php:88
|
||||
#: ../../mod/crepair.php:88 ../../mod/crepair.php:91
|
||||
msgid "Friend Request URL"
|
||||
msgstr "URL de requête"
|
||||
|
||||
#: ../../mod/crepair.php:89
|
||||
#: ../../mod/crepair.php:89 ../../mod/crepair.php:92
|
||||
msgid "Friend Confirm URL"
|
||||
msgstr "URL de confirmation"
|
||||
|
||||
#: ../../mod/crepair.php:90
|
||||
#: ../../mod/crepair.php:90 ../../mod/crepair.php:93
|
||||
msgid "Notification Endpoint URL"
|
||||
msgstr "URL de notification"
|
||||
|
||||
#: ../../mod/crepair.php:91
|
||||
#: ../../mod/crepair.php:91 ../../mod/crepair.php:94
|
||||
msgid "Poll/Feed URL"
|
||||
msgstr "URL de poll/feed"
|
||||
|
||||
#: ../../mod/contacts.php:275 ../../mod/contacts.php:309
|
||||
#: ../../mod/contacts.php:303
|
||||
msgid "Repair contact URL settings"
|
||||
msgstr "Réparer les URLs du contact"
|
||||
|
||||
#: ../../mod/contacts.php:276 ../../mod/contacts.php:310
|
||||
#: ../../mod/contacts.php:304
|
||||
msgid "Repair contact URL settings (WARNING: Advanced)"
|
||||
msgstr "Réparer les URLs du contact (ATTENTION: procédure avancée)"
|
||||
|
||||
#: ../../include/notifier.php:414 ../../include/notifier.php:499
|
||||
#: ../../include/notifier.php:554 ../../include/delivery.php:387
|
||||
msgid "(no subject)"
|
||||
msgstr "(aucun sujet)"
|
||||
|
||||
#: ../../include/auth.php:208 ../../mod/openid.php:78
|
||||
#: ../../include/auth.php:214
|
||||
#: ../../include/auth.php:214 ../../include/auth.php:216
|
||||
#: ../../mod/openid.php:79
|
||||
msgid "Welcome "
|
||||
msgstr "Bienvenue "
|
||||
|
||||
#: ../../include/auth.php:209 ../../mod/openid.php:79
|
||||
#: ../../include/auth.php:215
|
||||
#: ../../include/auth.php:215 ../../include/auth.php:217
|
||||
#: ../../mod/openid.php:80
|
||||
msgid "Please upload a profile photo."
|
||||
msgstr "Merci de téléverser une photo pour votre profil."
|
||||
|
||||
|
|
@ -4663,20 +4897,23 @@ msgid "%1$s is now friends with %2$s"
|
|||
msgstr "%1$s est désormais relié à %2$s"
|
||||
|
||||
#: ../../include/conversation.php:586 ../../include/conversation.php:611
|
||||
#: ../../include/Contact.php:124 ../../include/Contact.php:137
|
||||
#: ../../include/conversation.php:659
|
||||
msgid "View recent"
|
||||
msgstr "Voir les nouveautés"
|
||||
|
||||
#: ../../include/conversation.php:673 ../../mod/editpost.php:38
|
||||
#: ../../include/conversation.php:698
|
||||
#: ../../include/conversation.php:698 ../../include/conversation.php:746
|
||||
msgid "Visible to <strong>everybody</strong>"
|
||||
msgstr "Visible par <strong>tout le monde</strong>"
|
||||
|
||||
#: ../../include/conversation.php:707 ../../mod/editpost.php:75
|
||||
#: ../../include/conversation.php:732
|
||||
#: ../../include/conversation.php:732 ../../include/conversation.php:780
|
||||
msgid "Post to Email"
|
||||
msgstr "Transmettre par courriel"
|
||||
|
||||
#: ../../include/bbcode.php:83 ../../include/bbcode.php:116
|
||||
#: ../../include/bbcode.php:121
|
||||
msgid "Image/photo"
|
||||
msgstr "Image/photo"
|
||||
|
||||
|
|
@ -4697,22 +4934,25 @@ msgid ""
|
|||
"Post to Facebook cancelled because of multi-network access permission "
|
||||
"conflict."
|
||||
msgstr ""
|
||||
"Envoi vers Facebook annulé à cause d'un conflit dans les permissions "
|
||||
"d'accès aux réseaux tiers."
|
||||
"Envoi vers Facebook annulé à cause d'un conflit dans les permissions d'accès "
|
||||
"aux réseaux tiers."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:551 ../../addon/facebook/facebook.php:660
|
||||
msgid "View on Friendika"
|
||||
msgstr "Voir sur Friendika"
|
||||
|
||||
#: ../../mod/network.php:151 ../../mod/network.php:190
|
||||
#: ../../mod/network.php:296
|
||||
msgid "Contact: "
|
||||
msgstr "Contact: "
|
||||
|
||||
#: ../../mod/network.php:153 ../../mod/network.php:192
|
||||
#: ../../mod/network.php:298
|
||||
msgid "Private messages to this person are at risk of public disclosure."
|
||||
msgstr "Les messages privés destinés à cette personne risquent des fuites."
|
||||
|
||||
#: ../../mod/network.php:158 ../../mod/network.php:197
|
||||
#: ../../mod/network.php:303
|
||||
msgid "Invalid contact."
|
||||
msgstr "Contact invalide."
|
||||
|
||||
|
|
@ -4720,7 +4960,8 @@ msgstr "Contact invalide."
|
|||
#: ../../mod/viewcontacts.php:16 ../../mod/dfrn_request.php:591
|
||||
#: ../../mod/photos.php:676 ../../mod/search.php:13 ../../mod/directory.php:20
|
||||
#: ../../mod/community.php:9 ../../mod/dfrn_request.php:589
|
||||
#: ../../mod/photos.php:733
|
||||
#: ../../mod/photos.php:733 ../../mod/dfrn_request.php:590
|
||||
#: ../../mod/photos.php:738 ../../mod/search.php:68
|
||||
msgid "Public access denied."
|
||||
msgstr "Accès public refusé."
|
||||
|
||||
|
|
@ -4737,8 +4978,8 @@ msgid ""
|
|||
"If you wish to communicate with email contacts using this service "
|
||||
"(optional), please specify how to connect to your mailbox."
|
||||
msgstr ""
|
||||
"Si vous souhaitez communiquer avec vos contacts 'courriel' via ce "
|
||||
"service (facultatif), indiquez comment vous connecter à votre boîte."
|
||||
"Si vous souhaitez communiquer avec vos contacts 'courriel' via ce service "
|
||||
"(facultatif), indiquez comment vous connecter à votre boîte."
|
||||
|
||||
#: ../../mod/settings.php:475 ../../mod/settings.php:538
|
||||
msgid "IMAP server name:"
|
||||
|
|
@ -4772,20 +5013,21 @@ msgstr "Envoyer les entrées publiques à tous les contacts courriel:"
|
|||
msgid "Email access is disabled on this site."
|
||||
msgstr "L'accès par courriel est désactivé sur ce site."
|
||||
|
||||
#: ../../mod/item.php:555 ../../mod/item.php:786
|
||||
#: ../../mod/item.php:555 ../../mod/item.php:786 ../../mod/item.php:835
|
||||
#, php-format
|
||||
msgid "You may visit them online at %s"
|
||||
msgstr "Vous pouvez leur rendre visite à %s"
|
||||
|
||||
#: ../../mod/profile_photo.php:196
|
||||
#: ../../mod/profile_photo.php:196 ../../mod/profile_photo.php:202
|
||||
msgid "skip this step"
|
||||
msgstr "ignorer cette étape"
|
||||
|
||||
#: ../../mod/help.php:27 ../../mod/help.php:29
|
||||
#: ../../mod/help.php:27 ../../mod/help.php:29 ../../mod/help.php:30
|
||||
msgid "Help:"
|
||||
msgstr "Aide:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:631 ../../mod/dfrn_request.php:629
|
||||
#: ../../mod/dfrn_request.php:638
|
||||
msgid ""
|
||||
"Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, "
|
||||
"testuser@identi.ca"
|
||||
|
|
@ -4794,6 +5036,7 @@ msgstr ""
|
|||
"utilisateur@identi.ca"
|
||||
|
||||
#: ../../mod/dfrn_request.php:637 ../../mod/dfrn_request.php:635
|
||||
#: ../../mod/dfrn_request.php:634
|
||||
msgid ""
|
||||
"Please enter your 'Identity Address' from one of the following supported "
|
||||
"social networks:"
|
||||
|
|
@ -4802,10 +5045,12 @@ msgstr ""
|
|||
"sociaux supportés:"
|
||||
|
||||
#: ../../mod/dfrn_request.php:642 ../../mod/dfrn_request.php:640
|
||||
#: ../../mod/dfrn_request.php:649
|
||||
msgid "Your Identity Address:"
|
||||
msgstr "Adresse de votre identité:"
|
||||
|
||||
#: ../../mod/contacts.php:277 ../../mod/contacts.php:311
|
||||
#: ../../mod/contacts.php:305
|
||||
msgid "View conversations"
|
||||
msgstr "Voir conversations"
|
||||
|
||||
|
|
@ -4814,35 +5059,39 @@ msgid "event"
|
|||
msgstr "[[event]]"
|
||||
|
||||
#: ../../include/conversation.php:222 ../../include/conversation.php:501
|
||||
#: ../../include/conversation.php:234 ../../include/conversation.php:543
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "[[%s from %s]]"
|
||||
|
||||
#: ../../include/conversation.php:427
|
||||
#: ../../include/conversation.php:427 ../../include/conversation.php:210
|
||||
#: ../../include/conversation.php:453
|
||||
msgid "Select"
|
||||
msgstr "Sélectionner"
|
||||
|
||||
#: ../../include/conversation.php:429
|
||||
#: ../../include/conversation.php:429 ../../include/conversation.php:465
|
||||
msgid "toggle star status"
|
||||
msgstr "(dé)marquer d'une étoile"
|
||||
|
||||
#: ../../include/conversation.php:534
|
||||
#: ../../include/conversation.php:534 ../../include/conversation.php:581
|
||||
msgid "Delete Selected Items"
|
||||
msgstr "Supprimer les éléments selectionnés"
|
||||
|
||||
#: ../../include/conversation.php:748 ../../mod/editpost.php:92
|
||||
#: ../../include/conversation.php:796
|
||||
msgid "Attach file"
|
||||
msgstr "Joindre un fichier"
|
||||
|
||||
#: ../../include/conversation.php:766 ../../mod/editpost.php:109
|
||||
#: ../../include/conversation.php:814
|
||||
msgid "Public post"
|
||||
msgstr "Entrée publique"
|
||||
|
||||
#: ../../include/text.php:752
|
||||
#: ../../include/text.php:752 ../../include/text.php:772
|
||||
msgid "bytes"
|
||||
msgstr "octets"
|
||||
|
||||
#: ../../include/text.php:835
|
||||
#: ../../include/text.php:835 ../../include/text.php:860
|
||||
msgid "Select an alternate language"
|
||||
msgstr "Choisir une langue complémentaire"
|
||||
|
||||
|
|
@ -4854,27 +5103,28 @@ msgstr "montrer"
|
|||
msgid "don't show"
|
||||
msgstr "ne pas montrer"
|
||||
|
||||
#: ../../include/event.php:11
|
||||
#: ../../include/event.php:11 ../../include/bb2diaspora.php:191
|
||||
#: ../../mod/localtime.php:12
|
||||
msgid "l F d, Y \\@ g:i A"
|
||||
msgstr "l F d, Y \\@ g:i A"
|
||||
|
||||
#: ../../include/event.php:17
|
||||
#: ../../include/event.php:17 ../../include/bb2diaspora.php:197
|
||||
msgid "Starts:"
|
||||
msgstr "Commence:"
|
||||
|
||||
#: ../../include/event.php:27
|
||||
#: ../../include/event.php:27 ../../include/bb2diaspora.php:205
|
||||
msgid "Finishes:"
|
||||
msgstr "Termine:"
|
||||
|
||||
#: ../../include/diaspora.php:390
|
||||
#: ../../include/diaspora.php:390 ../../include/diaspora.php:465
|
||||
msgid "Sharing notification from Diaspora network"
|
||||
msgstr "Partager les notifications du réseau Diaspora"
|
||||
|
||||
#: ../../include/diaspora.php:946
|
||||
#: ../../include/diaspora.php:946 ../../include/diaspora.php:1011
|
||||
msgid "link"
|
||||
msgstr "lien"
|
||||
|
||||
#: ../../include/poller.php:423
|
||||
#: ../../include/poller.php:423 ../../include/poller.php:443
|
||||
msgid "From: "
|
||||
msgstr "De:"
|
||||
|
||||
|
|
@ -4882,83 +5132,85 @@ msgstr "De:"
|
|||
msgid "never"
|
||||
msgstr "jamais"
|
||||
|
||||
#: ../../include/nav.php:41
|
||||
#: ../../include/nav.php:41 ../../include/nav.php:44
|
||||
msgid "End this session"
|
||||
msgstr "Terminer cette session"
|
||||
|
||||
#: ../../include/nav.php:44
|
||||
#: ../../include/nav.php:44 ../../include/nav.php:62
|
||||
msgid "Sign in"
|
||||
msgstr "Se connecter"
|
||||
|
||||
#: ../../include/nav.php:55
|
||||
#: ../../include/nav.php:55 ../../include/nav.php:73
|
||||
msgid "Home Page"
|
||||
msgstr "Page d'accueil"
|
||||
|
||||
#: ../../include/nav.php:59
|
||||
#: ../../include/nav.php:59 ../../include/nav.php:77
|
||||
msgid "Create an account"
|
||||
msgstr "Créer un compte"
|
||||
|
||||
#: ../../include/nav.php:64
|
||||
#: ../../include/nav.php:64 ../../include/nav.php:82
|
||||
msgid "Help and documentation"
|
||||
msgstr "Aide et documentation"
|
||||
|
||||
#: ../../include/nav.php:67
|
||||
#: ../../include/nav.php:67 ../../include/nav.php:85
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr "Applications supplémentaires, utilitaires, jeux"
|
||||
|
||||
#: ../../include/nav.php:69
|
||||
#: ../../include/nav.php:69 ../../include/nav.php:87
|
||||
msgid "Search site content"
|
||||
msgstr "Rechercher dans le contenu du site"
|
||||
|
||||
#: ../../include/nav.php:79 ../../mod/community.php:26
|
||||
#: ../../include/nav.php:97
|
||||
msgid "Community"
|
||||
msgstr "Place publique"
|
||||
|
||||
#: ../../include/nav.php:79
|
||||
#: ../../include/nav.php:79 ../../include/nav.php:97
|
||||
msgid "Conversations on this site"
|
||||
msgstr "Conversations sur ce site"
|
||||
|
||||
#: ../../include/nav.php:81
|
||||
#: ../../include/nav.php:81 ../../include/nav.php:99
|
||||
msgid "People directory"
|
||||
msgstr "Annuaire"
|
||||
|
||||
#: ../../include/nav.php:91
|
||||
#: ../../include/nav.php:91 ../../include/nav.php:109
|
||||
msgid "Conversations from your friends"
|
||||
msgstr "Conversations de vos amis"
|
||||
|
||||
#: ../../include/nav.php:93
|
||||
#: ../../include/nav.php:93 ../../include/nav.php:47 ../../include/nav.php:111
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Vos conversations et entrées"
|
||||
|
||||
#: ../../include/nav.php:99
|
||||
#: ../../include/nav.php:99 ../../include/nav.php:117
|
||||
msgid "Friend requests"
|
||||
msgstr "Demandes de connexion/amitié"
|
||||
|
||||
#: ../../include/nav.php:102
|
||||
#: ../../include/nav.php:102 ../../include/nav.php:120
|
||||
msgid "Private mail"
|
||||
msgstr "Courriel privé"
|
||||
|
||||
#: ../../include/nav.php:105
|
||||
#: ../../include/nav.php:105 ../../include/nav.php:123
|
||||
msgid "Manage other pages"
|
||||
msgstr "Gérer les autres pages"
|
||||
|
||||
#: ../../include/nav.php:108 ../../mod/settings.php:311
|
||||
#: ../../include/nav.php:126
|
||||
msgid "Account settings"
|
||||
msgstr "Réglages du compte"
|
||||
|
||||
#: ../../include/nav.php:109
|
||||
#: ../../include/nav.php:109 ../../include/nav.php:127 ../../boot.php:870
|
||||
msgid "Manage/edit profiles"
|
||||
msgstr "Gérer/éditer les profils"
|
||||
|
||||
#: ../../include/nav.php:110
|
||||
#: ../../include/nav.php:110 ../../include/nav.php:128
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr "Gérer/éditer les amis et contacts"
|
||||
|
||||
#: ../../include/nav.php:117
|
||||
#: ../../include/nav.php:117 ../../include/nav.php:135
|
||||
msgid "Admin"
|
||||
msgstr "Admin"
|
||||
|
||||
#: ../../include/nav.php:117
|
||||
#: ../../include/nav.php:117 ../../include/nav.php:135
|
||||
msgid "Site setup and configuration"
|
||||
msgstr "Configuration du site"
|
||||
|
||||
|
|
@ -4967,7 +5219,8 @@ msgid ""
|
|||
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
|
||||
"analytics tool."
|
||||
msgstr ""
|
||||
"Ce site construit ses statistiques grâce à <a href='http://www.piwik.org'>Piwik</a>."
|
||||
"Ce site construit ses statistiques grâce à <a href='http://www.piwik."
|
||||
"org'>Piwik</a>."
|
||||
|
||||
#: ../../addon/piwik/piwik.php:73
|
||||
#, php-format
|
||||
|
|
@ -4998,7 +5251,8 @@ msgstr "Relier tous vos amis et conversations Facebook"
|
|||
|
||||
#: ../../addon/facebook/facebook.php:365
|
||||
msgid "Warning: Your Facebook privacy settings can not be imported."
|
||||
msgstr "Attention: vos réglages de vie privée ne pourront être importés de Facebook."
|
||||
msgstr ""
|
||||
"Attention: vos réglages de vie privée ne pourront être importés de Facebook."
|
||||
|
||||
#: ../../addon/facebook/facebook.php:366
|
||||
msgid ""
|
||||
|
|
@ -5050,9 +5304,10 @@ msgid ""
|
|||
"associated Twitter account. You can choose to do so by default (here) or for "
|
||||
"every posting separately in the posting options when writing the entry."
|
||||
msgstr ""
|
||||
"Si activé, toutes vos entrées <strong>publiques</strong> pourront être postées "
|
||||
"sur le compte Twitter associé. Vous pouvez choisir de le faire par défaut (ici) ou "
|
||||
"pour chaque entrée séparément dans les options de la-dite entrée."
|
||||
"Si activé, toutes vos entrées <strong>publiques</strong> pourront être "
|
||||
"postées sur le compte Twitter associé. Vous pouvez choisir de le faire par "
|
||||
"défaut (ici) ou pour chaque entrée séparément dans les options de la-dite "
|
||||
"entrée."
|
||||
|
||||
#: ../../addon/twitter/twitter.php:183
|
||||
msgid "Allow posting to Twitter"
|
||||
|
|
@ -5096,8 +5351,8 @@ msgid ""
|
|||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
"refer to the README file of the addon."
|
||||
msgstr ""
|
||||
"Les mentions légales ont besoin d'être paramêtrées!<br />Merci d'ajouter "
|
||||
"au moins le <tt>propriétaire</tt> à votre configuration. Pour les autres "
|
||||
"Les mentions légales ont besoin d'être paramêtrées!<br />Merci d'ajouter au "
|
||||
"moins le <tt>propriétaire</tt> à votre configuration. Pour les autres "
|
||||
"variables, merci de vous référer au README de l'extension."
|
||||
|
||||
#: ../../addon/impressum/impressum.php:71
|
||||
|
|
@ -5136,8 +5391,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Voici quelques paires de clés OAuth correspondant à quelques serveurs "
|
||||
"courants. Si vous utilisez l'un d'entre eux, merci d'utiliser la paire "
|
||||
"fournie. Sinon, vous pouvez toujours vous connecter à l'instance "
|
||||
"StatusNet de votre choix (voir plus bas)."
|
||||
"fournie. Sinon, vous pouvez toujours vous connecter à l'instance StatusNet "
|
||||
"de votre choix (voir plus bas)."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:276
|
||||
msgid "Provide your own OAuth Credentials"
|
||||
|
|
@ -5161,9 +5416,10 @@ msgid ""
|
|||
"associated StatusNet account. You can choose to do so by default (here) or "
|
||||
"for every posting separately in the posting options when writing the entry."
|
||||
msgstr ""
|
||||
"Si activé, toutes vos entrées <strong>publiques</strong> pourront être postées "
|
||||
"sur le compte StatusNet associé. Vous pouvez choisir de le faire par défaut (ici) ou "
|
||||
"pour chaque entrée séparément dans les options de la-dite entrée."
|
||||
"Si activé, toutes vos entrées <strong>publiques</strong> pourront être "
|
||||
"postées sur le compte StatusNet associé. Vous pouvez choisir de le faire par "
|
||||
"défaut (ici) ou pour chaque entrée séparément dans les options de la-dite "
|
||||
"entrée."
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:332
|
||||
msgid "Allow posting to StatusNet"
|
||||
|
|
@ -5174,6 +5430,7 @@ msgid "Send public postings to StatusNet by default"
|
|||
msgstr "Envoyer les entrées publiques vers StatusNet par défaut"
|
||||
|
||||
#: ../../addon/statusnet/statusnet.php:459 ../../mod/admin.php:308
|
||||
#: ../../mod/admin.php:311
|
||||
msgid "Site name"
|
||||
msgstr "Nom du site"
|
||||
|
||||
|
|
@ -5198,21 +5455,24 @@ msgstr "Cacher vos amis/contacts des visiteurs de ce profil?"
|
|||
msgid "Birthday (%s):"
|
||||
msgstr "Date de naissance (%s):"
|
||||
|
||||
#: ../../mod/profiles.php:472
|
||||
#: ../../mod/profiles.php:472 ../../boot.php:890
|
||||
msgid "visible to everybody"
|
||||
msgstr "visible par tout le monde"
|
||||
|
||||
#: ../../mod/notes.php:49 ../../mod/events.php:115 ../../mod/events.php:120
|
||||
#: ../../mod/profile.php:120 ../../mod/photos.php:837
|
||||
#: ../../mod/profile.php:120 ../../mod/photos.php:837 ../../include/nav.php:50
|
||||
#: ../../mod/events.php:122 ../../mod/events.php:127 ../../mod/profile.php:121
|
||||
#: ../../mod/photos.php:842
|
||||
msgid "Events"
|
||||
msgstr "Evènements"
|
||||
|
||||
#: ../../mod/notes.php:50 ../../mod/notes.php:55 ../../mod/events.php:116
|
||||
#: ../../mod/profile.php:121 ../../mod/photos.php:838
|
||||
#: ../../mod/profile.php:121 ../../mod/photos.php:838 ../../mod/notes.php:56
|
||||
#: ../../mod/events.php:123 ../../mod/profile.php:122 ../../mod/photos.php:843
|
||||
msgid "Personal Notes"
|
||||
msgstr "Notes personnelles"
|
||||
msgstr "Notes"
|
||||
|
||||
#: ../../mod/notes.php:74
|
||||
#: ../../mod/notes.php:74 ../../include/text.php:625 ../../mod/notes.php:75
|
||||
msgid "Save"
|
||||
msgstr "Enregistrer"
|
||||
|
||||
|
|
@ -5224,11 +5484,11 @@ msgstr "Une invitation est requise."
|
|||
msgid "Invitation could not be verified."
|
||||
msgstr "L'invitation n'a pu être vérifiée."
|
||||
|
||||
#: ../../mod/register.php:511
|
||||
#: ../../mod/register.php:511 ../../mod/register.php:510
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr "L'inscription à ce site se fait sur invitation uniquement."
|
||||
|
||||
#: ../../mod/register.php:512
|
||||
#: ../../mod/register.php:512 ../../mod/register.php:511
|
||||
msgid "Your invitation ID: "
|
||||
msgstr "Votre invitation: "
|
||||
|
||||
|
|
@ -5245,8 +5505,8 @@ msgid ""
|
|||
"We would like to offer some tips and links to help make your experience "
|
||||
"enjoyable. Click any item to visit the relevant page."
|
||||
msgstr ""
|
||||
"Nous souhaitons vous offrir quelques astuces et pointeurs pour vous aider "
|
||||
"à faire de votre passage ici un moment agréable. Cliquez sur les éléments
|
||||
"Nous souhaitons vous offrir quelques astuces et pointeurs pour vous aider à "
|
||||
"faire de votre passage ici un moment agréable. Cliquez sur les éléments "
|
||||
"suivants pour visiter les pages adéquates."
|
||||
|
||||
#: ../../mod/newmember.php:16
|
||||
|
|
@ -5272,27 +5532,28 @@ msgid ""
|
|||
"that people with real photos of themselves are ten times more likely to make "
|
||||
"friends than people who do not."
|
||||
msgstr ""
|
||||
"Téléversez (c'est-à-dire envoyez-nous) une photo de profil si vous ne "
|
||||
"l'avez déjà fait. Les études montrent que les gens qui utilisent une vraie "
|
||||
"photo d'eux sont dix fois plus susceptibles de se faire de nouveaux amis "
|
||||
"que les autres."
|
||||
"Téléversez (c'est-à-dire envoyez-nous) une photo de profil si vous ne l'avez "
|
||||
"déjà fait. Les études montrent que les gens qui utilisent une vraie photo "
|
||||
"d'eux sont dix fois plus susceptibles de se faire de nouveaux amis que les "
|
||||
"autres."
|
||||
|
||||
#: ../../mod/newmember.php:23
|
||||
msgid ""
|
||||
"Authorise the Facebook Connector if you currently have a Facebook account "
|
||||
"and we will (optionally) import all your Facebook friends and conversations."
|
||||
msgstr ""
|
||||
"Activez le connecteur Facebook si vous avez un compte sur ce service, et nous "
|
||||
"pourrons (de manière facultative) importer tous vos amis et conversations."
|
||||
"Activez le connecteur Facebook si vous avez un compte sur ce service, et "
|
||||
"nous pourrons (de manière facultative) importer tous vos amis et "
|
||||
"conversations."
|
||||
|
||||
#: ../../mod/newmember.php:28
|
||||
msgid ""
|
||||
"Enter your email access information on your Settings page if you wish to "
|
||||
"import and interact with friends or mailing lists from your email INBOX"
|
||||
msgstr ""
|
||||
"Renseignez la page Réglages à propos de votre accès à vos courriels si "
|
||||
"vous souhaitez interagir avec des amis ou des listes de diffusion "
|
||||
"issues de votre boîte de réception"
|
||||
"Renseignez la page Réglages à propos de votre accès à vos courriels si vous "
|
||||
"souhaitez interagir avec des amis ou des listes de diffusion issues de votre "
|
||||
"boîte de réception"
|
||||
|
||||
#: ../../mod/newmember.php:30
|
||||
msgid ""
|
||||
|
|
@ -5321,8 +5582,8 @@ msgid ""
|
|||
"URL in the <em>Connect</em> dialog."
|
||||
msgstr ""
|
||||
"Votre page Contacts est l'endroit idéal pour gérer vos relations et vous "
|
||||
"connecter à des amis issus d'autres réseaux. En général, il suffit de "
|
||||
"saisir leur adresse dans la section <em>Relier</em>."
|
||||
"connecter à des amis issus d'autres réseaux. En général, il suffit de saisir "
|
||||
"leur adresse dans la section <em>Relier</em>."
|
||||
|
||||
#: ../../mod/newmember.php:36
|
||||
msgid ""
|
||||
|
|
@ -5332,8 +5593,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"L'Annuaire vous permet de rechercher d'autres personnes au sein de ce "
|
||||
"réseau, ou dans l'ensemble des sites fédérés. Cherchez un lien nommé "
|
||||
"<em>Relier</em>, <em>Connect</em> ou <em>Follow</em> sur leurs profils. "
|
||||
"Vous aurez peut-être à fournir votre propre adresse d'identité."
|
||||
"<em>Relier</em>, <em>Connect</em> ou <em>Follow</em> sur leurs profils. Vous "
|
||||
"aurez peut-être à fournir votre propre adresse d'identité."
|
||||
|
||||
#: ../../mod/newmember.php:38
|
||||
msgid ""
|
||||
|
|
@ -5343,8 +5604,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Une fois que vous aurez retrouvé quelques amis ou contacts, vous pourrez les "
|
||||
"classer en groupes depuis le panneau latéral de votre page Contacts. Vous "
|
||||
"serez désormais en mesure d'interagir avec chaque groupe de manière exclusive "
|
||||
"et privée depuis la page Réseau."
|
||||
"serez désormais en mesure d'interagir avec chaque groupe de manière "
|
||||
"exclusive et privée depuis la page Réseau."
|
||||
|
||||
#: ../../mod/newmember.php:40
|
||||
msgid ""
|
||||
|
|
@ -5356,14 +5617,16 @@ msgstr ""
|
|||
|
||||
#: ../../mod/match.php:18
|
||||
msgid "No keywords to match. Please add keywords to your default profile."
|
||||
msgstr "Aucun mot-clé ne correspond. Merci d'ajouter quelques mots-clés à votre profil par défaut."
|
||||
msgstr ""
|
||||
"Aucun mot-clé ne correspond. Merci d'ajouter quelques mots-clés à votre "
|
||||
"profil par défaut."
|
||||
|
||||
#: ../../mod/update_community.php:18 ../../mod/update_profile.php:41
|
||||
#: ../../mod/update_network.php:22
|
||||
#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
|
||||
msgid "[Embedded content - reload page to view]"
|
||||
msgstr "[Contenu incorporé - rechargez la page]"
|
||||
|
||||
#: ../../mod/apps.php:11
|
||||
#: ../../mod/apps.php:11 ../../mod/apps.php:7
|
||||
msgid "No installed applications."
|
||||
msgstr "Pas d'application installée."
|
||||
|
||||
|
|
@ -5383,7 +5646,7 @@ msgstr "Tout voir"
|
|||
msgid "View Starred Items"
|
||||
msgstr "Voir les favoris"
|
||||
|
||||
#: ../../mod/network.php:94
|
||||
#: ../../mod/network.php:94 ../../mod/network.php:194
|
||||
#, php-format
|
||||
msgid "Warning: This group contains %s member from an insecure network."
|
||||
msgid_plural ""
|
||||
|
|
@ -5392,18 +5655,21 @@ msgstr[0] "Ce groupe contient %s membre issu d'un réseau non-fiable."
|
|||
msgstr[1] "Ce groupe contient %s membres issus de réseaux non-fiables."
|
||||
|
||||
#: ../../mod/display.php:63 ../../mod/profile.php:103
|
||||
#: ../../mod/profile.php:104
|
||||
msgid "Access to this profile has been restricted."
|
||||
msgstr "L'accès à ce profil a été restreint."
|
||||
|
||||
#: ../../mod/admin.php:66 ../../mod/admin.php:299
|
||||
#: ../../mod/admin.php:66 ../../mod/admin.php:299 ../../mod/admin.php:302
|
||||
msgid "Site"
|
||||
msgstr "Site"
|
||||
|
||||
#: ../../mod/admin.php:67 ../../mod/admin.php:463 ../../mod/admin.php:475
|
||||
#: ../../mod/admin.php:467 ../../mod/admin.php:479
|
||||
msgid "Users"
|
||||
msgstr "Utilisateurs"
|
||||
|
||||
#: ../../mod/admin.php:68 ../../mod/admin.php:552 ../../mod/admin.php:589
|
||||
#: ../../mod/admin.php:556 ../../mod/admin.php:593
|
||||
msgid "Plugins"
|
||||
msgstr "Extensions"
|
||||
|
||||
|
|
@ -5411,7 +5677,7 @@ msgstr "Extensions"
|
|||
msgid "Update"
|
||||
msgstr "Mises-à-jour"
|
||||
|
||||
#: ../../mod/admin.php:83 ../../mod/admin.php:654
|
||||
#: ../../mod/admin.php:83 ../../mod/admin.php:654 ../../mod/admin.php:658
|
||||
msgid "Logs"
|
||||
msgstr "Journaux"
|
||||
|
||||
|
|
@ -5421,6 +5687,8 @@ msgstr "Inscriptions d'utilisateurs en attente de confirmation"
|
|||
|
||||
#: ../../mod/admin.php:151 ../../mod/admin.php:298 ../../mod/admin.php:462
|
||||
#: ../../mod/admin.php:551 ../../mod/admin.php:588 ../../mod/admin.php:653
|
||||
#: ../../mod/admin.php:301 ../../mod/admin.php:466 ../../mod/admin.php:555
|
||||
#: ../../mod/admin.php:592 ../../mod/admin.php:657
|
||||
msgid "Administration"
|
||||
msgstr "Administration"
|
||||
|
||||
|
|
@ -5444,196 +5712,198 @@ msgstr "Version"
|
|||
msgid "Active plugins"
|
||||
msgstr "Extensions actives"
|
||||
|
||||
#: ../../mod/admin.php:247
|
||||
#: ../../mod/admin.php:247 ../../mod/admin.php:250
|
||||
msgid "Site settings updated."
|
||||
msgstr "Réglages du site appliqués."
|
||||
|
||||
#: ../../mod/admin.php:291
|
||||
#: ../../mod/admin.php:291 ../../mod/admin.php:294
|
||||
msgid "Closed"
|
||||
msgstr "Fermé"
|
||||
|
||||
#: ../../mod/admin.php:292
|
||||
#: ../../mod/admin.php:292 ../../mod/admin.php:295
|
||||
msgid "Requires approval"
|
||||
msgstr "Après autorisation"
|
||||
|
||||
#: ../../mod/admin.php:293
|
||||
#: ../../mod/admin.php:293 ../../mod/admin.php:296
|
||||
msgid "Open"
|
||||
msgstr "Ouvert"
|
||||
|
||||
#: ../../mod/admin.php:302
|
||||
#: ../../mod/admin.php:302 ../../mod/admin.php:305
|
||||
msgid "File upload"
|
||||
msgstr "Envoi de fichiers"
|
||||
|
||||
#: ../../mod/admin.php:303
|
||||
#: ../../mod/admin.php:303 ../../mod/admin.php:306
|
||||
msgid "Policies"
|
||||
msgstr "Politiques"
|
||||
|
||||
#: ../../mod/admin.php:304
|
||||
#: ../../mod/admin.php:304 ../../mod/admin.php:307
|
||||
msgid "Advanced"
|
||||
msgstr "Avancé"
|
||||
|
||||
#: ../../mod/admin.php:309
|
||||
#: ../../mod/admin.php:309 ../../mod/admin.php:312
|
||||
msgid "Banner/Logo"
|
||||
msgstr "Titre/Logo"
|
||||
|
||||
#: ../../mod/admin.php:310
|
||||
#: ../../mod/admin.php:310 ../../mod/admin.php:313
|
||||
msgid "System language"
|
||||
msgstr "Langue du système"
|
||||
|
||||
#: ../../mod/admin.php:311
|
||||
#: ../../mod/admin.php:311 ../../mod/admin.php:314
|
||||
msgid "System theme"
|
||||
msgstr "Thème du système"
|
||||
|
||||
#: ../../mod/admin.php:313
|
||||
#: ../../mod/admin.php:313 ../../mod/admin.php:316
|
||||
msgid "Maximum image size"
|
||||
msgstr "Taille maximum des images"
|
||||
|
||||
#: ../../mod/admin.php:315
|
||||
#: ../../mod/admin.php:315 ../../mod/admin.php:318
|
||||
msgid "Register policy"
|
||||
msgstr "Politique d'inscription"
|
||||
|
||||
#: ../../mod/admin.php:316
|
||||
#: ../../mod/admin.php:316 ../../mod/admin.php:319
|
||||
msgid "Register text"
|
||||
msgstr "Texte à l'inscription"
|
||||
|
||||
#: ../../mod/admin.php:317
|
||||
#: ../../mod/admin.php:317 ../../mod/admin.php:321
|
||||
msgid "Allowed friend domains"
|
||||
msgstr "Domaines autorisés pour la mise en relation"
|
||||
|
||||
#: ../../mod/admin.php:318
|
||||
#: ../../mod/admin.php:318 ../../mod/admin.php:322
|
||||
msgid "Allowed email domains"
|
||||
msgstr "Domaines autorisés pour les courriels"
|
||||
|
||||
#: ../../mod/admin.php:319
|
||||
#: ../../mod/admin.php:319 ../../mod/admin.php:323
|
||||
msgid "Block public"
|
||||
msgstr "Bloquer public"
|
||||
|
||||
#: ../../mod/admin.php:320
|
||||
#: ../../mod/admin.php:320 ../../mod/admin.php:324
|
||||
msgid "Force publish"
|
||||
msgstr "Forcer la publication"
|
||||
|
||||
#: ../../mod/admin.php:321
|
||||
#: ../../mod/admin.php:321 ../../mod/admin.php:325
|
||||
msgid "Global directory update URL"
|
||||
msgstr "URL de mise à jour de l'annuaire global"
|
||||
|
||||
#: ../../mod/admin.php:323
|
||||
#: ../../mod/admin.php:323 ../../mod/admin.php:327
|
||||
msgid "Block multiple registrations"
|
||||
msgstr "Interdire les inscriptions multiples"
|
||||
|
||||
#: ../../mod/admin.php:324
|
||||
#: ../../mod/admin.php:324 ../../mod/admin.php:328
|
||||
msgid "OpenID support"
|
||||
msgstr "Support d'OpenID"
|
||||
|
||||
#: ../../mod/admin.php:325
|
||||
#: ../../mod/admin.php:325 ../../mod/admin.php:329
|
||||
msgid "Gravatar support"
|
||||
msgstr "Support de Gravatar"
|
||||
|
||||
#: ../../mod/admin.php:326
|
||||
#: ../../mod/admin.php:326 ../../mod/admin.php:330
|
||||
msgid "Fullname check"
|
||||
msgstr "Imposer 'Prénom Nom'"
|
||||
|
||||
#: ../../mod/admin.php:327
|
||||
#: ../../mod/admin.php:327 ../../mod/admin.php:331
|
||||
msgid "UTF-8 Regular expressions"
|
||||
msgstr "Expressions rationnelles en UTF-8"
|
||||
|
||||
#: ../../mod/admin.php:328
|
||||
#: ../../mod/admin.php:328 ../../mod/admin.php:332
|
||||
msgid "Show Community Page"
|
||||
msgstr "Montrer la Place publique"
|
||||
|
||||
#: ../../mod/admin.php:329
|
||||
#: ../../mod/admin.php:329 ../../mod/admin.php:333
|
||||
msgid "Enable OStatus support"
|
||||
msgstr "Activer OStatus"
|
||||
|
||||
#: ../../mod/admin.php:330
|
||||
#: ../../mod/admin.php:330 ../../mod/admin.php:334
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr "Activer Diaspora"
|
||||
|
||||
#: ../../mod/admin.php:331
|
||||
#: ../../mod/admin.php:331 ../../mod/admin.php:335
|
||||
msgid "Only allow Friendika contacts"
|
||||
msgstr "N'autoriser que les contacts Friendika"
|
||||
|
||||
#: ../../mod/admin.php:332
|
||||
#: ../../mod/admin.php:332 ../../mod/admin.php:336
|
||||
msgid "Verify SSL"
|
||||
msgstr "Vérifier SSL"
|
||||
|
||||
#: ../../mod/admin.php:333
|
||||
#: ../../mod/admin.php:333 ../../mod/admin.php:337
|
||||
msgid "Proxy user"
|
||||
msgstr "Utilisateur du proxy"
|
||||
|
||||
#: ../../mod/admin.php:334
|
||||
#: ../../mod/admin.php:334 ../../mod/admin.php:338
|
||||
msgid "Proxy URL"
|
||||
msgstr "URL du proxy"
|
||||
|
||||
#: ../../mod/admin.php:335
|
||||
#: ../../mod/admin.php:335 ../../mod/admin.php:339
|
||||
msgid "Network timeout"
|
||||
msgstr "Délai d'attente du réseau"
|
||||
|
||||
#: ../../mod/admin.php:356
|
||||
#: ../../mod/admin.php:356 ../../mod/admin.php:360
|
||||
#, php-format
|
||||
msgid "%s user blocked"
|
||||
msgid_plural "%s users blocked/unblocked"
|
||||
msgstr[0] "%s utilisateur bloqué"
|
||||
msgstr[1] "%s utilisateurs bloqués/débloqués"
|
||||
|
||||
#: ../../mod/admin.php:363
|
||||
#: ../../mod/admin.php:363 ../../mod/admin.php:367
|
||||
#, php-format
|
||||
msgid "%s user deleted"
|
||||
msgid_plural "%s users deleted"
|
||||
msgstr[0] "%s utilisateur supprimé"
|
||||
msgstr[1] "%s utilisateurs supprimés"
|
||||
|
||||
#: ../../mod/admin.php:397
|
||||
#: ../../mod/admin.php:397 ../../mod/admin.php:401
|
||||
#, php-format
|
||||
msgid "User '%s' deleted"
|
||||
msgstr "Utilisateur '%s' supprimé"
|
||||
|
||||
#: ../../mod/admin.php:404
|
||||
#: ../../mod/admin.php:404 ../../mod/admin.php:408
|
||||
#, php-format
|
||||
msgid "User '%s' unblocked"
|
||||
msgstr "Utilisateur '%s' débloqué"
|
||||
|
||||
#: ../../mod/admin.php:404
|
||||
#: ../../mod/admin.php:404 ../../mod/admin.php:408
|
||||
#, php-format
|
||||
msgid "User '%s' blocked"
|
||||
msgstr "Utilisateur '%s' bloqué"
|
||||
|
||||
#: ../../mod/admin.php:465
|
||||
#: ../../mod/admin.php:465 ../../mod/admin.php:469
|
||||
msgid "select all"
|
||||
msgstr "tout sélectionner"
|
||||
|
||||
#: ../../mod/admin.php:467
|
||||
#: ../../mod/admin.php:467 ../../mod/admin.php:471
|
||||
msgid "Request date"
|
||||
msgstr "Date de la demande"
|
||||
|
||||
#: ../../mod/admin.php:467 ../../mod/admin.php:476
|
||||
#: ../../include/contact_selectors.php:78 ../../mod/admin.php:471
|
||||
#: ../../mod/admin.php:480
|
||||
msgid "Email"
|
||||
msgstr "Courriel"
|
||||
|
||||
#: ../../mod/admin.php:472
|
||||
#: ../../mod/admin.php:472 ../../mod/admin.php:476
|
||||
msgid "Block"
|
||||
msgstr "Bloquer"
|
||||
|
||||
#: ../../mod/admin.php:473
|
||||
#: ../../mod/admin.php:473 ../../mod/admin.php:477
|
||||
msgid "Unblock"
|
||||
msgstr "Débloquer"
|
||||
|
||||
#: ../../mod/admin.php:476
|
||||
#: ../../mod/admin.php:476 ../../mod/admin.php:480
|
||||
msgid "Register date"
|
||||
msgstr "Date d'inscription"
|
||||
|
||||
#: ../../mod/admin.php:476
|
||||
#: ../../mod/admin.php:476 ../../mod/admin.php:480
|
||||
msgid "Last login"
|
||||
msgstr "Dernière connexion"
|
||||
|
||||
#: ../../mod/admin.php:476
|
||||
#: ../../mod/admin.php:476 ../../mod/admin.php:480
|
||||
msgid "Last item"
|
||||
msgstr "Dernière entrée"
|
||||
|
||||
#: ../../mod/admin.php:476
|
||||
#: ../../mod/admin.php:476 ../../mod/admin.php:480
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
#: ../../mod/admin.php:478
|
||||
#: ../../mod/admin.php:478 ../../mod/admin.php:482
|
||||
msgid ""
|
||||
"Selected users will be deleted!\\n\\nEverything these users had posted on "
|
||||
"this site will be permanently deleted!\\n\\nAre you sure?"
|
||||
|
|
@ -5641,77 +5911,79 @@ msgstr ""
|
|||
"Les utilisateurs selectionnés seront supprimés!\\n\\nTout ce qu'ils ont "
|
||||
"posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
|
||||
|
||||
#: ../../mod/admin.php:479
|
||||
#: ../../mod/admin.php:479 ../../mod/admin.php:483
|
||||
msgid ""
|
||||
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
|
||||
"site will be permanently deleted!\\n\\nAre you sure?"
|
||||
msgstr ""
|
||||
"L'utilisateur {0} sera supprimé!\\n\\nTout ce qu'il a posté sur ce site "
|
||||
"sera définitivement perdu!\\n\\nÊtes-vous certain?"
|
||||
"L'utilisateur {0} sera supprimé!\\n\\nTout ce qu'il a posté sur ce site sera "
|
||||
"définitivement perdu!\\n\\nÊtes-vous certain?"
|
||||
|
||||
#: ../../mod/admin.php:515
|
||||
#: ../../mod/admin.php:515 ../../mod/admin.php:519
|
||||
#, php-format
|
||||
msgid "Plugin %s disabled."
|
||||
msgstr "Extension %s désactivée."
|
||||
|
||||
#: ../../mod/admin.php:519
|
||||
#: ../../mod/admin.php:519 ../../mod/admin.php:523
|
||||
#, php-format
|
||||
msgid "Plugin %s enabled."
|
||||
msgstr "Extension %s activée."
|
||||
|
||||
#: ../../mod/admin.php:529
|
||||
#: ../../mod/admin.php:529 ../../mod/admin.php:533
|
||||
msgid "Disable"
|
||||
msgstr "Désactiver"
|
||||
|
||||
#: ../../mod/admin.php:531
|
||||
#: ../../mod/admin.php:531 ../../mod/admin.php:535
|
||||
msgid "Enable"
|
||||
msgstr "Activer"
|
||||
|
||||
#: ../../mod/admin.php:553
|
||||
#: ../../mod/admin.php:553 ../../mod/admin.php:557
|
||||
msgid "Toggle"
|
||||
msgstr "Activer/Désactiver"
|
||||
|
||||
#: ../../mod/admin.php:616
|
||||
#: ../../mod/admin.php:616 ../../mod/admin.php:620
|
||||
msgid "Log settings updated."
|
||||
msgstr "Réglages des journaux mis-à-jour."
|
||||
|
||||
#: ../../mod/admin.php:656
|
||||
#: ../../mod/admin.php:656 ../../mod/admin.php:660
|
||||
msgid "Clear"
|
||||
msgstr "Remettre à zéro"
|
||||
|
||||
#: ../../mod/admin.php:662
|
||||
#: ../../mod/admin.php:662 ../../mod/admin.php:666
|
||||
msgid "Debugging"
|
||||
msgstr "Débogage"
|
||||
|
||||
#: ../../mod/admin.php:663
|
||||
#: ../../mod/admin.php:663 ../../mod/admin.php:667
|
||||
msgid "Log file"
|
||||
msgstr "Fichier de journal"
|
||||
|
||||
#: ../../mod/admin.php:663
|
||||
#: ../../mod/admin.php:663 ../../mod/admin.php:667
|
||||
msgid "Must be writable by web server. Relative to your Friendika index.php."
|
||||
msgstr "Doit pouvoir être modifié par le serveur web. Chemin relatif à l'index.php de Friendika."
|
||||
msgstr ""
|
||||
"Doit pouvoir être modifié par le serveur web. Chemin relatif à l'index.php "
|
||||
"de Friendika."
|
||||
|
||||
#: ../../mod/admin.php:664
|
||||
#: ../../mod/admin.php:664 ../../mod/admin.php:668
|
||||
msgid "Log level"
|
||||
msgstr "Niveau de journalisation"
|
||||
|
||||
#: ../../mod/admin.php:705
|
||||
#: ../../mod/admin.php:705 ../../mod/admin.php:709
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#: ../../mod/admin.php:711
|
||||
#: ../../mod/admin.php:711 ../../mod/admin.php:715
|
||||
msgid "FTP Host"
|
||||
msgstr "Hôte FTP"
|
||||
|
||||
#: ../../mod/admin.php:712
|
||||
#: ../../mod/admin.php:712 ../../mod/admin.php:716
|
||||
msgid "FTP Path"
|
||||
msgstr "Chemin FTP"
|
||||
|
||||
#: ../../mod/admin.php:713
|
||||
#: ../../mod/admin.php:713 ../../mod/admin.php:717
|
||||
msgid "FTP User"
|
||||
msgstr "Utilisateur FTP"
|
||||
|
||||
#: ../../mod/admin.php:714
|
||||
#: ../../mod/admin.php:714 ../../mod/admin.php:718
|
||||
msgid "FTP Password"
|
||||
msgstr "Mot de passe FTP"
|
||||
|
||||
|
|
@ -5720,30 +5992,30 @@ msgid ""
|
|||
"In order to install Friendika we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr ""
|
||||
"Pour installer Friendika, nous avons besoin des coordonnées de votre "
|
||||
"base de données."
|
||||
"Pour installer Friendika, nous avons besoin des coordonnées de votre base de "
|
||||
"données."
|
||||
|
||||
#: ../../mod/install.php:128
|
||||
msgid ""
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr ""
|
||||
"La base spécifiée ci-dessous doit exister. Si ce n'est le cas, créez-la avant "
|
||||
"de continuer."
|
||||
"La base spécifiée ci-dessous doit exister. Si ce n'est le cas, créez-la "
|
||||
"avant de continuer."
|
||||
|
||||
#: ../../mod/install.php:134
|
||||
msgid ""
|
||||
"Site administrator email address. Your account email address must match this "
|
||||
"in order to use the web admin panel."
|
||||
msgstr ""
|
||||
"Courriel de l'administrateur du site. L'adresse de courriel de votre compte doit "
|
||||
"correspondre pour pouvoir utiliser la page d'Administration."
|
||||
"Courriel de l'administrateur du site. L'adresse de courriel de votre compte "
|
||||
"doit correspondre pour pouvoir utiliser la page d'Administration."
|
||||
|
||||
#: ../../mod/install.php:204
|
||||
msgid "Error: mb_string PHP module required but not installed."
|
||||
msgstr "Erreur: le module mb_string de PHP est manquant."
|
||||
|
||||
#: ../../mod/settings.php:9 ../../mod/photos.php:57
|
||||
#: ../../mod/settings.php:9 ../../mod/photos.php:57 ../../mod/photos.php:62
|
||||
msgid "everybody"
|
||||
msgstr "tout le monde"
|
||||
|
||||
|
|
@ -5785,7 +6057,9 @@ msgstr "Expiration automatique des entrées de plus de <em>n</em> jours:"
|
|||
|
||||
#: ../../mod/settings.php:515
|
||||
msgid "If empty, posts will not expire. Expired posts will be deleted"
|
||||
msgstr "Si le champ est vide, les entrées n'expireront pas. L'expiration équivaut à une suppression"
|
||||
msgstr ""
|
||||
"Si le champ est vide, les entrées n'expireront pas. L'expiration équivaut à "
|
||||
"une suppression"
|
||||
|
||||
#: ../../mod/settings.php:536
|
||||
msgid "Last successful email check:"
|
||||
|
|
@ -5807,68 +6081,70 @@ msgstr "Adresse de réponse:"
|
|||
msgid "No valid account found."
|
||||
msgstr "Pas de compte valide trouvé."
|
||||
|
||||
#: ../../mod/events.php:210
|
||||
#: ../../mod/events.php:210 ../../mod/events.php:217
|
||||
msgid "Create New Event"
|
||||
msgstr "Créer un évènement"
|
||||
|
||||
#: ../../mod/events.php:213
|
||||
#: ../../mod/events.php:213 ../../mod/events.php:220
|
||||
msgid "Previous"
|
||||
msgstr "Précédent"
|
||||
|
||||
#: ../../mod/events.php:216
|
||||
#: ../../mod/events.php:216 ../../mod/events.php:223
|
||||
msgid "Next"
|
||||
msgstr "Suivant"
|
||||
|
||||
#: ../../mod/events.php:223
|
||||
#: ../../mod/events.php:223 ../../mod/events.php:230
|
||||
msgid "l, F j"
|
||||
msgstr "l, F j"
|
||||
|
||||
#: ../../mod/events.php:235
|
||||
#: ../../mod/events.php:235 ../../mod/events.php:242
|
||||
msgid "Edit event"
|
||||
msgstr "Modifier l'évènement"
|
||||
|
||||
#: ../../mod/events.php:305
|
||||
#: ../../mod/events.php:305 ../../mod/events.php:312
|
||||
msgid "hour:minute"
|
||||
msgstr "heure:minute"
|
||||
|
||||
#: ../../mod/events.php:314
|
||||
#: ../../mod/events.php:314 ../../mod/events.php:321
|
||||
msgid "Event details"
|
||||
msgstr "Détails de l'évènement"
|
||||
|
||||
#: ../../mod/events.php:315
|
||||
#: ../../mod/events.php:315 ../../mod/events.php:322
|
||||
#, php-format
|
||||
msgid "Format is %s %s. Starting date and Description are required."
|
||||
msgstr "Le format est %s %s. La date de début et la description sont obligatoires."
|
||||
msgstr ""
|
||||
"Le format est %s %s. La date de début et la description sont obligatoires."
|
||||
|
||||
#: ../../mod/events.php:316
|
||||
#: ../../mod/events.php:316 ../../mod/events.php:323
|
||||
msgid "Event Starts:"
|
||||
msgstr "Date/heure de début:"
|
||||
|
||||
#: ../../mod/events.php:319
|
||||
#: ../../mod/events.php:319 ../../mod/events.php:326
|
||||
msgid "Finish date/time is not known or not relevant"
|
||||
msgstr "La date/heure de fin est inconnue ou sans objet"
|
||||
|
||||
#: ../../mod/events.php:321
|
||||
#: ../../mod/events.php:321 ../../mod/events.php:328
|
||||
msgid "Event Finishes:"
|
||||
msgstr "Date/heure de fin:"
|
||||
|
||||
#: ../../mod/events.php:324
|
||||
#: ../../mod/events.php:324 ../../mod/events.php:331
|
||||
msgid "Adjust for viewer timezone"
|
||||
msgstr "Ajuster au fuseau horaire du visiteur"
|
||||
|
||||
#: ../../mod/events.php:326
|
||||
#: ../../mod/events.php:326 ../../mod/events.php:333
|
||||
msgid "Description:"
|
||||
msgstr "Description:"
|
||||
|
||||
#: ../../mod/events.php:330
|
||||
#: ../../mod/events.php:330 ../../mod/events.php:337
|
||||
msgid "Share this event"
|
||||
msgstr "Partager cet évènement"
|
||||
|
||||
#: ../../mod/item.php:667 ../../mod/item.php:733 ../../mod/dfrn_notify.php:684
|
||||
#: ../../mod/item.php:684 ../../mod/item.php:771
|
||||
msgid "Administrator@"
|
||||
msgstr "Administrator@"
|
||||
|
||||
#: ../../mod/item.php:736
|
||||
#: ../../mod/item.php:736 ../../mod/item.php:774
|
||||
#, php-format
|
||||
msgid "%s posted to your profile wall at %s"
|
||||
msgstr "%s a écrit sur votre profil (%s)"
|
||||
|
|
@ -5882,7 +6158,8 @@ msgid "View all site entries"
|
|||
msgstr "Vue de toutes les entrées"
|
||||
|
||||
#: ../../mod/viewcontacts.php:61 ../../mod/contacts.php:306
|
||||
#: ../../mod/contacts.php:423
|
||||
#: ../../mod/contacts.php:423 ../../mod/contacts.php:300
|
||||
#: ../../mod/contacts.php:415
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr "Visiter le profile de %s [%s]"
|
||||
|
|
@ -5900,7 +6177,7 @@ msgstr "Le fichier dépasse la limite de %d"
|
|||
msgid "File upload failed."
|
||||
msgstr "Echec du téléversement."
|
||||
|
||||
#: ../../mod/profile.php:134
|
||||
#: ../../mod/profile.php:134 ../../mod/profile.php:135
|
||||
msgid "Tips for New Members"
|
||||
msgstr "Astuces pour les nouveaux inscrits"
|
||||
|
||||
|
|
@ -5925,7 +6202,7 @@ msgstr "Suggérer de amis/contacts"
|
|||
msgid "Suggest a friend for %s"
|
||||
msgstr "Suggérer un ami/contact pour %s"
|
||||
|
||||
#: ../../mod/dfrn_request.php:631
|
||||
#: ../../mod/dfrn_request.php:631 ../../mod/dfrn_request.php:640
|
||||
#, php-format
|
||||
msgid "Does %s know you?"
|
||||
msgstr "Est-ce que %s vous connaît?"
|
||||
|
|
@ -5934,8 +6211,8 @@ msgstr "Est-ce que %s vous connaît?"
|
|||
msgid ""
|
||||
"This site is not configured to allow communications with other networks."
|
||||
msgstr ""
|
||||
"Ce site n'est pas configuré pour permettre les communication avec "
|
||||
"d'autres réseaux."
|
||||
"Ce site n'est pas configuré pour permettre les communication avec d'autres "
|
||||
"réseaux."
|
||||
|
||||
#: ../../mod/follow.php:40 ../../mod/follow.php:50
|
||||
msgid "No compatible communication protocols or feeds were discovered."
|
||||
|
|
@ -5965,11 +6242,11 @@ msgstr "Entrée inaccessible."
|
|||
msgid "Item was not found."
|
||||
msgstr "Entrée introuvable."
|
||||
|
||||
#: ../../mod/photos.php:616
|
||||
#: ../../mod/photos.php:616 ../../mod/photos.php:621
|
||||
msgid "Image file is empty."
|
||||
msgstr "L'image est vide."
|
||||
|
||||
#: ../../mod/photos.php:820
|
||||
#: ../../mod/photos.php:820 ../../mod/photos.php:825
|
||||
msgid "Access to this item is restricted."
|
||||
msgstr "L'accès à cette entrée est restreint."
|
||||
|
||||
|
|
@ -5986,13 +6263,262 @@ msgstr "suggéré(e) par %s"
|
|||
msgid "Sharer"
|
||||
msgstr "Source du partage"
|
||||
|
||||
#: ../../mod/contacts.php:32
|
||||
#: ../../mod/contacts.php:32 ../../mod/contacts.php:30
|
||||
#, php-format
|
||||
msgid "%d invitation available"
|
||||
msgid_plural "%d invitations available"
|
||||
msgstr[0] "%d invitation disponible"
|
||||
msgstr[1] "%d invitations disponibles"
|
||||
|
||||
#: ../../mod/contacts.php:293
|
||||
#: ../../mod/contacts.php:293 ../../mod/contacts.php:284
|
||||
msgid "Suggest friends"
|
||||
msgstr "Suggérer des amis/contacts"
|
||||
|
||||
#: ../../include/conversation.php:225 ../../include/conversation.php:531
|
||||
#: ../../include/conversation.php:532
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Voir le profil de %s sur %s"
|
||||
|
||||
#: ../../include/conversation.php:416
|
||||
msgid "like"
|
||||
msgstr "aime"
|
||||
|
||||
#: ../../include/conversation.php:417
|
||||
msgid "dislike"
|
||||
msgstr "n'aime pas"
|
||||
|
||||
#: ../../include/conversation.php:419
|
||||
msgid "Share this"
|
||||
msgstr "Partager ça"
|
||||
|
||||
#: ../../include/conversation.php:419
|
||||
msgid "share"
|
||||
msgstr "partager"
|
||||
|
||||
#: ../../include/conversation.php:463
|
||||
msgid "add star"
|
||||
msgstr "mettre en avant"
|
||||
|
||||
#: ../../include/conversation.php:464
|
||||
msgid "remove star"
|
||||
msgstr "ne plus mettre en avant"
|
||||
|
||||
#: ../../include/conversation.php:468
|
||||
msgid "starred"
|
||||
msgstr "mis en avant"
|
||||
|
||||
#: ../../include/text.php:872
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/diaspora.php:1192
|
||||
#, php-format
|
||||
msgid "[Relayed] Comment authored by %s from network %s"
|
||||
msgstr "[Relayé] Commentaire de %s du réseau %s"
|
||||
|
||||
#: ../../include/contact_selectors.php:78
|
||||
msgid "OStatus"
|
||||
msgstr "OStatus"
|
||||
|
||||
#: ../../include/contact_selectors.php:78
|
||||
msgid "RSS/Atom"
|
||||
msgstr "RSS/Atom"
|
||||
|
||||
#: ../../include/contact_selectors.php:78 ../../mod/dfrn_request.php:647
|
||||
msgid "Diaspora"
|
||||
msgstr "Diaspora"
|
||||
|
||||
#: ../../include/contact_selectors.php:78
|
||||
msgid "Zot!"
|
||||
msgstr "Zot!"
|
||||
|
||||
#: ../../include/group.php:25
|
||||
msgid ""
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this group and any future members. If this is "
|
||||
"not what you intended, please create another group with a different name."
|
||||
msgstr ""
|
||||
"Un groupe supprimé portant ce nom a été re-créé. Les anciennes permissions "
|
||||
"<strong>peuvent</strong> s'appliquer à ce groupe ainsi qu'à tous ses membres "
|
||||
"futurs. Si ce n'est pas ce que vous souhaitez, merci de créer un nouveau groupe "
|
||||
"avec un nom différent."
|
||||
|
||||
#: ../../include/items.php:1617
|
||||
msgid "A new person is sharing with you at "
|
||||
msgstr "Une nouvelle personne partage avec vous sur "
|
||||
|
||||
#: ../../include/nav.php:48
|
||||
msgid "Your profile page"
|
||||
msgstr "Votre page de profil"
|
||||
|
||||
#: ../../include/nav.php:49
|
||||
msgid "Your photos"
|
||||
msgstr "Vos photos"
|
||||
|
||||
#: ../../include/nav.php:50
|
||||
msgid "Your events"
|
||||
msgstr "Vos évènements"
|
||||
|
||||
#: ../../include/nav.php:51
|
||||
msgid "Personal notes"
|
||||
msgstr "Notes personnelles"
|
||||
|
||||
#: ../../include/nav.php:51
|
||||
msgid "Your personal photos"
|
||||
msgstr "Vos photos personnelles"
|
||||
|
||||
#: ../../include/nav.php:158
|
||||
msgid "Nothing new here"
|
||||
msgstr "Rien de neuf ici"
|
||||
|
||||
#: ../../mod/tagmatch.php:10
|
||||
msgid "Tag Match"
|
||||
msgstr ""
|
||||
|
||||
#: ../../mod/network.php:85
|
||||
msgid "All"
|
||||
msgstr "Tout"
|
||||
|
||||
#: ../../mod/network.php:91
|
||||
msgid "New"
|
||||
msgstr "Nouveaux"
|
||||
|
||||
#: ../../mod/network.php:96
|
||||
msgid "Starred"
|
||||
msgstr "Mis en avant"
|
||||
|
||||
#: ../../mod/network.php:101
|
||||
msgid "Bookmarks"
|
||||
msgstr "Favoris"
|
||||
|
||||
#: ../../mod/network.php:134 ../../mod/search.php:13
|
||||
msgid "Saved Searches"
|
||||
msgstr "Recherches sauvées"
|
||||
|
||||
#: ../../mod/network.php:140 ../../mod/search.php:16
|
||||
msgid "Remove term"
|
||||
msgstr "Retirer le terme"
|
||||
|
||||
#: ../../mod/dfrn_confirm.php:585
|
||||
#, php-format
|
||||
msgid "Site public key not available in contact record for URL %s."
|
||||
msgstr "La clé publique du site n'est pas disponible dans l'enregistrement de contact pour l'URL %s."
|
||||
|
||||
#: ../../mod/localtime.php:24
|
||||
msgid "Time Conversion"
|
||||
msgstr "Conversion de date/heure"
|
||||
|
||||
#: ../../mod/localtime.php:26
|
||||
msgid ""
|
||||
"Friendika provides this service for sharing events with other networks and "
|
||||
"friends in unknown timezones."
|
||||
msgstr ""
|
||||
"Friendika fournit ce service pour partager des évènements avec d'autres "
|
||||
"réseaux, et des contacts situés dans des fuseaux horaires inconnus."
|
||||
|
||||
#: ../../mod/localtime.php:30
|
||||
#, php-format
|
||||
msgid "UTC time: %s"
|
||||
msgstr "Temps universel (UTC): %s"
|
||||
|
||||
#: ../../mod/localtime.php:33
|
||||
#, php-format
|
||||
msgid "Current timezone: %s"
|
||||
msgstr "Fuseau horaire actuel: %s"
|
||||
|
||||
#: ../../mod/localtime.php:36
|
||||
#, php-format
|
||||
msgid "Converted localtime: %s"
|
||||
msgstr "Temps converti: %s"
|
||||
|
||||
#: ../../mod/localtime.php:41
|
||||
msgid "Please select your timezone:"
|
||||
msgstr "Merci de choisir votre fuseau:"
|
||||
|
||||
#: ../../mod/admin.php:320
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr "Délai d'\"expiration\" des comptes (en jours)"
|
||||
|
||||
#: ../../mod/admin.php:320
|
||||
msgid ""
|
||||
"Will not waste system resources polling external sites for abandonded "
|
||||
"accounts. Enter 0 for no time limit."
|
||||
msgstr ""
|
||||
"Pour ne pas gaspiller les ressources du système en surveillant des sites "
|
||||
"externes, Friendika peut marquer certains comptes inactifs comme abandonnés. "
|
||||
"Mettre 0 pour ne pas avoir de limite."
|
||||
|
||||
#: ../../mod/ping.php:133
|
||||
msgid "{0} wants to be your friend"
|
||||
msgstr "{0} veut être relié"
|
||||
|
||||
#: ../../mod/ping.php:138
|
||||
msgid "{0} sent you a message"
|
||||
msgstr "{0} vous a envoyé un message"
|
||||
|
||||
#: ../../mod/ping.php:143
|
||||
msgid "{0} requested registration"
|
||||
msgstr "{0} a demandé à s'enregistrer"
|
||||
|
||||
#: ../../mod/ping.php:149
|
||||
#, php-format
|
||||
msgid "{0} commented %s's post"
|
||||
msgstr "{0} a commenté l'entrée de %s"
|
||||
|
||||
#: ../../mod/ping.php:154
|
||||
#, php-format
|
||||
msgid "{0} like %s's post"
|
||||
msgstr "{0} aime l'entrée de %s"
|
||||
|
||||
#: ../../mod/ping.php:159
|
||||
#, php-format
|
||||
msgid "{0} dislike %s's post"
|
||||
msgstr "{0} n'aime pas l'entrée de %s"
|
||||
|
||||
#: ../../mod/ping.php:164
|
||||
#, php-format
|
||||
msgid "{0} is now friend with %s"
|
||||
msgstr "{0} est désormais relié à %s"
|
||||
|
||||
#: ../../mod/events.php:61
|
||||
msgid "Event description and start time are required."
|
||||
msgstr "L'évènement requiert une description et un début."
|
||||
|
||||
#: ../../mod/dfrn_request.php:631
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Diaspora members: Please do not use this form. Instead, enter \"%s\" into "
|
||||
"your Diaspora search bar."
|
||||
msgstr ""
|
||||
"Aux membres de Diaspora: merci de ne pas utiliser ce formulaire. Entrez "
|
||||
"plutôt \"%s\" dans votre barre de recherche Diaspora."
|
||||
|
||||
#: ../../mod/dfrn_request.php:648
|
||||
msgid "- please share from your own site as noted above"
|
||||
msgstr "- merci de partager depuis votre propre site, comme indiqué plus haut"
|
||||
|
||||
#: ../../mod/crepair.php:89
|
||||
msgid "@Tagname - overrides Name/Nickname"
|
||||
msgstr "@NomDuTag - outrepasse Nom/Surnom"
|
||||
|
||||
#: ../../mod/photos.php:894
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr "Ne pas notifier le réseau de cet envoi"
|
||||
|
||||
#: ../../mod/photos.php:996
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint."
|
||||
|
||||
#: ../../mod/photos.php:1048
|
||||
msgid "View photo"
|
||||
msgstr "Voir photo"
|
||||
|
||||
#: ../../mod/contacts.php:38
|
||||
msgid "Similar Interests"
|
||||
msgstr "Intérêts similaires"
|
||||
|
||||
#: ../../mod/contacts.php:288
|
||||
#, php-format
|
||||
msgid "Network type: %s"
|
||||
msgstr "Type de réseau: %s"
|
||||
|
|
|
|||
|
|
@ -1,8 +1,5 @@
|
|||
<?php
|
||||
|
||||
function string_plural_select_fr($n){
|
||||
return ($n != 1);
|
||||
}
|
||||
;
|
||||
$a->strings["Logged out."] = "Déconnecté.";
|
||||
$a->strings["Login failed."] = "Échec de connexion.";
|
||||
|
|
@ -37,7 +34,7 @@ $a->strings["Abstinent"] = "Abstinent";
|
|||
$a->strings["Virgin"] = "Vierge";
|
||||
$a->strings["Deviant"] = "Déviant";
|
||||
$a->strings["Fetish"] = "Fétichiste";
|
||||
$a->strings["Oodles"] = "Oodles";
|
||||
$a->strings["Oodles"] = "";
|
||||
$a->strings["Nonsexual"] = "Non-sexuel";
|
||||
$a->strings["Single"] = "Célibataire";
|
||||
$a->strings["Lonely"] = "Esseulé";
|
||||
|
|
@ -48,10 +45,10 @@ $a->strings["Unfaithful"] = "Infidèle";
|
|||
$a->strings["Sex Addict"] = "Accro au sexe";
|
||||
$a->strings["Friends"] = "Amis";
|
||||
$a->strings["Friends/Benefits"] = "Amis par intérêt";
|
||||
$a->strings["Casual"] = "Casual";
|
||||
$a->strings["Casual"] = "Relation informelle";
|
||||
$a->strings["Engaged"] = "Fiancé";
|
||||
$a->strings["Married"] = "Marié";
|
||||
$a->strings["Partners"] = "Partenaire";
|
||||
$a->strings["Partners"] = "Avec partenaire";
|
||||
$a->strings["Cohabiting"] = "En cohabitation";
|
||||
$a->strings["Happy"] = "Heureux";
|
||||
$a->strings["Not Looking"] = "Sans recherche";
|
||||
|
|
@ -676,7 +673,7 @@ $a->strings["%d member"] = array(
|
|||
1 => "%d membres",
|
||||
);
|
||||
$a->strings["Warning: This group contains %s from an insecure network."] = "Attention : ce groupe contient %s, qui se connecte depuis un réseau non-sécurisé.";
|
||||
$a->strings["Private messages to this group are at risk of public disclosure."] = "es messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée.";
|
||||
$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée.";
|
||||
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
|
||||
$a->strings["Friendika Social Network"] = "Réseau social Friendika";
|
||||
$a->strings["Installation"] = "Installation";
|
||||
|
|
@ -689,9 +686,9 @@ $a->strings["Database Login Password"] = "Mot de passe de la base";
|
|||
$a->strings["Database Name"] = "Nom de la base";
|
||||
$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
|
||||
$a->strings["Normal Account"] = "Compte normal";
|
||||
$a->strings["This account is a normal personal profile"] = "e compte correspond à un profil normal, pour une seule personne (physique, généralement)";
|
||||
$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)";
|
||||
$a->strings["Soapbox Account"] = "Compte \"boîte à savon\"";
|
||||
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "ccepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'";
|
||||
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'";
|
||||
$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité";
|
||||
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'";
|
||||
$a->strings["Automatic Friend Account"] = "Compte auto-amical";
|
||||
|
|
@ -907,7 +904,7 @@ $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Ca
|
|||
$a->strings["Birthday (%s):"] = "Date de naissance (%s):";
|
||||
$a->strings["visible to everybody"] = "visible par tout le monde";
|
||||
$a->strings["Events"] = "Evènements";
|
||||
$a->strings["Personal Notes"] = "Notes personnelles";
|
||||
$a->strings["Personal Notes"] = "Notes";
|
||||
$a->strings["Save"] = "Enregistrer";
|
||||
$a->strings["An invitation is required."] = "Une invitation est requise.";
|
||||
$a->strings["Invitation could not be verified."] = "L'invitation n'a pu être vérifiée.";
|
||||
|
|
@ -1086,3 +1083,57 @@ $a->strings["%d invitation available"] = array(
|
|||
1 => "%d invitations disponibles",
|
||||
);
|
||||
$a->strings["Suggest friends"] = "Suggérer des amis/contacts";
|
||||
$a->strings["View %s's profile @ %s"] = "Voir le profil de %s sur %s";
|
||||
$a->strings["like"] = "aime";
|
||||
$a->strings["dislike"] = "n'aime pas";
|
||||
$a->strings["Share this"] = "Partager ça";
|
||||
$a->strings["share"] = "partager";
|
||||
$a->strings["add star"] = "mettre en avant";
|
||||
$a->strings["remove star"] = "ne plus mettre en avant";
|
||||
$a->strings["starred"] = "mis en avant";
|
||||
$a->strings["default"] = "";
|
||||
$a->strings["[Relayed] Comment authored by %s from network %s"] = "[Relayé] Commentaire de %s du réseau %s";
|
||||
$a->strings["OStatus"] = "OStatus";
|
||||
$a->strings["RSS/Atom"] = "RSS/Atom";
|
||||
$a->strings["Diaspora"] = "Diaspora";
|
||||
$a->strings["Zot!"] = "Zot!";
|
||||
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé portant ce nom a été re-créé. Les anciennes permissions <strong>peuvent</strong> s'appliquer à ce groupe ainsi qu'à tous ses membres futurs. Si ce n'est pas ce que vous souhaitez, merci de créer un nouveau groupe avec un nom différent.";
|
||||
$a->strings["A new person is sharing with you at "] = "Une nouvelle personne partage avec vous sur ";
|
||||
$a->strings["Your profile page"] = "Votre page de profil";
|
||||
$a->strings["Your photos"] = "Vos photos";
|
||||
$a->strings["Your events"] = "Vos évènements";
|
||||
$a->strings["Personal notes"] = "Notes personnelles";
|
||||
$a->strings["Your personal photos"] = "Vos photos personnelles";
|
||||
$a->strings["Nothing new here"] = "Rien de neuf ici";
|
||||
$a->strings["Tag Match"] = "";
|
||||
$a->strings["All"] = "Tout";
|
||||
$a->strings["New"] = "Nouveaux";
|
||||
$a->strings["Starred"] = "Mis en avant";
|
||||
$a->strings["Bookmarks"] = "Favoris";
|
||||
$a->strings["Saved Searches"] = "Recherches sauvées";
|
||||
$a->strings["Remove term"] = "Retirer le terme";
|
||||
$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site n'est pas disponible dans l'enregistrement de contact pour l'URL %s.";
|
||||
$a->strings["Time Conversion"] = "Conversion de date/heure";
|
||||
$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendika fournit ce service pour partager des évènements avec d'autres réseaux, et des contacts situés dans des fuseaux horaires inconnus.";
|
||||
$a->strings["UTC time: %s"] = "Temps universel (UTC): %s";
|
||||
$a->strings["Current timezone: %s"] = "Fuseau horaire actuel: %s";
|
||||
$a->strings["Converted localtime: %s"] = "Temps converti: %s";
|
||||
$a->strings["Please select your timezone:"] = "Merci de choisir votre fuseau:";
|
||||
$a->strings["Accounts abandoned after x days"] = "Délai d'\"expiration\" des comptes (en jours)";
|
||||
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour ne pas gaspiller les ressources du système en surveillant des sites externes, Friendika peut marquer certains comptes inactifs comme abandonnés. Mettre 0 pour ne pas avoir de limite.";
|
||||
$a->strings["{0} wants to be your friend"] = "{0} veut être relié";
|
||||
$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message";
|
||||
$a->strings["{0} requested registration"] = "{0} a demandé à s'enregistrer";
|
||||
$a->strings["{0} commented %s's post"] = "{0} a commenté l'entrée de %s";
|
||||
$a->strings["{0} like %s's post"] = "{0} aime l'entrée de %s";
|
||||
$a->strings["{0} dislike %s's post"] = "{0} n'aime pas l'entrée de %s";
|
||||
$a->strings["{0} is now friend with %s"] = "{0} est désormais relié à %s";
|
||||
$a->strings["Event description and start time are required."] = "L'évènement requiert une description et un début.";
|
||||
$a->strings["Diaspora members: Please do not use this form. Instead, enter \"%s\" into your Diaspora search bar."] = "Aux membres de Diaspora: merci de ne pas utiliser ce formulaire. Entrez plutôt \"%s\" dans votre barre de recherche Diaspora.";
|
||||
$a->strings["- please share from your own site as noted above"] = "- merci de partager depuis votre propre site, comme indiqué plus haut";
|
||||
$a->strings["@Tagname - overrides Name/Nickname"] = "@NomDuTag - outrepasse Nom/Surnom";
|
||||
$a->strings["Do not show a status post for this upload"] = "Ne pas notifier le réseau de cet envoi";
|
||||
$a->strings["Permission denied. Access to this item may be restricted."] = "Permission refusée. L'accès à cet élément peut avoir été restreint.";
|
||||
$a->strings["View photo"] = "Voir photo";
|
||||
$a->strings["Similar Interests"] = "Intérêts similaires";
|
||||
$a->strings["Network type: %s"] = "Type de réseau: %s";
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
<div class="group-delete-wrapper" id="group-delete-wrapper-$id" >
|
||||
<div class="group-delete-wrapper button" id="group-delete-wrapper-$id" >
|
||||
<a href="group/drop/$id"
|
||||
onclick="return confirmDelete();"
|
||||
title="$delete"
|
||||
id="group-delete-icon-$id"
|
||||
class="icon drophide group-delete-icon"
|
||||
onmouseover="imgbright(this);"
|
||||
|
|
|
|||
5
view/like_noshare.tpl
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$id">
|
||||
<a href="#" class="icon like"title="$likethis" onclick="dolike($id,'like'); return false"></a>
|
||||
<a href="#" class="icon dislike" title="$nolike" onclick="dolike($id,'dislike'); return false"></a>
|
||||
<img id="like-rotator-$id" class="like-rotator" src="images/rotator.gif" alt="$wait" title="$wait" style="display: none;" />
|
||||
</div>
|
||||
|
|
@ -7,9 +7,8 @@
|
|||
<div class="mail-conv-date">$date</div>
|
||||
<div class="mail-conv-subject">$subject</div>
|
||||
<div class="mail-conv-body">$body</div>
|
||||
</div>
|
||||
<div class="mail-conv-delete-wrapper" id="mail-conv-delete-wrapper-$id" ><a href="message/drop/$id" onclick="return confirmDelete();" ><img src="images/b_drophide.gif" alt="$delete" title="$delete" id="mail-conv-delete-icon-$id" class="mail-conv-delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a></div><div class="mail-conv-delete-end"></div>
|
||||
<div class="mail-conv-outside-wrapper-end"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mail-conv-delete-wrapper" id="mail-conv-delete-wrapper-$id" ><a href="message/drop/$id" onclick="return confirmDelete();" ><img src="images/b_drophide.gif" alt="$delete" title="$delete" id="mail-conv-delete-icon-$id" class="mail-conv-delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a></div><div class="mail-conv-delete-end"></div>
|
||||
|
||||
<div class="mail-conv-outside-wrapper-end"></div>
|
||||
<hr class="mail-conv-break" />
|
||||
|
|
|
|||
|
|
@ -6,10 +6,10 @@
|
|||
<div class="mail-list-sender-name" >$from_name</div>
|
||||
<div class="mail-list-date">$date</div>
|
||||
<div class="mail-list-subject"><a href="message/$id" class="mail-list-link">$subject</a></div>
|
||||
<div class="mail-list-delete-wrapper" id="mail-list-delete-wrapper-$id" >
|
||||
<a href="message/dropconv/$id" onclick="return confirmDelete();" title="$delete" class="icon drophide mail-list- delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mail-list-delete-wrapper" id="mail-list-delete-wrapper-$id" >
|
||||
<a href="message/dropconv/$id" onclick="return confirmDelete();" title="$delete" class="icon drophide mail-list-delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>
|
||||
</div>
|
||||
<div class="mail-list-delete-end"></div>
|
||||
|
||||
|
|
|
|||
12
view/match.tpl
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<div class="profile-match-wrapper">
|
||||
<div class="profile-match-photo">
|
||||
<a href="$url">
|
||||
<img src="$photo" alt="$name" title="$name[$tags]" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="profile-match-break"></div>
|
||||
<div class="profile-match-name">
|
||||
<a href="$url" title="$name[$tags]">$name</a>
|
||||
</div>
|
||||
<div class="profile-match-end"></div>
|
||||
</div>
|
||||
|
|
@ -1,8 +1,7 @@
|
|||
<div class="photo-album-image-wrapper" id="photo-album-image-wrapper-$id">
|
||||
<a href="$photolink" class="photo-album-photo-link" id="photo-album-photo-link-$id" title="$phototitle">
|
||||
<img src="$imgsrc" alt="$imgalt" title="$phototitle" class="photo-album-photo" id="photo-album-photo-$id" />
|
||||
<img src="$imgsrc" alt="$imgalt" title="$phototitle" class="photo-album-photo lframe resize" id="photo-album-photo-$id" />
|
||||
<p class='caption'>$desc</p>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="photo-album-image-wrapper-end"></div>
|
||||
|
|
|
|||
|
|
@ -13,6 +13,11 @@
|
|||
</div>
|
||||
<div id="photos-upload-exist-end"></div>
|
||||
|
||||
<div id="photos-upload-noshare-div" class="photos-upload-noshare-div" >
|
||||
<input id="photos-upload-noshare" type="checkbox" name="not_visible" value="1" />
|
||||
<label id="photos-upload-noshare-text" for="photos-upload-noshare" >$nosharetext</label>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="photos-upload-perms" class="photos-upload-perms" >
|
||||
<a href="#photos-upload-permissions-wrapper" id="photos-upload-perms-menu" class="button" />
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ $select
|
|||
<div id="prvmail-message-label">$yourmessage</div>
|
||||
<textarea rows="8" cols="72" class="prvmail-text" id="prvmail-text" name="body" ></textarea>
|
||||
|
||||
</div>
|
||||
|
||||
<div id="prvmail-submit-wrapper" >
|
||||
<input type="submit" id="prvmail-submit" name="submit" value="Submit" />
|
||||
<div id="prvmail-upload-wrapper" >
|
||||
|
|
@ -29,5 +29,6 @@ $select
|
|||
</div>
|
||||
</div>
|
||||
<div id="prvmail-end"></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
<div id="profile-tabs-wrapper" >
|
||||
<a href="$account.1" id="profile-tab-status-link" class="profile-tabs" >$account.0</a>
|
||||
<a href="$plugins.1" id="profile-tab-profile-link" class="profile-tabs" >$plugins.0</a>
|
||||
<a href="$account.1" id="profile-tab-status-link" class="profile-tabs button" >$account.0</a>
|
||||
<a href="$plugins.1" id="profile-tab-profile-link" class="profile-tabs button" >$plugins.0</a>
|
||||
<div id="profile-tabs-end"></div>
|
||||
</div>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 443 B |
|
|
@ -1,67 +0,0 @@
|
|||
|
||||
<h2>$header</h2>
|
||||
|
||||
<div id="contact-edit-banner-name">$name</div>
|
||||
|
||||
$nettype
|
||||
|
||||
<form action="contacts/$contact_id" method="post" >
|
||||
<input type="hidden" name="contact_id" value="$contact_id">
|
||||
|
||||
<div id="contact-edit-wrapper" >
|
||||
|
||||
<div id="contact-edit-photo-wrapper" >
|
||||
<img id="contact-edit-direction-icon" src="$dir_icon" alt="$alt_text" title="$alt_text" />
|
||||
<div id="contact-edit-photo" >
|
||||
<a href="$url" title="$visit" /><img src="$photo" $sparkle alt="$name" /></a>
|
||||
</div>
|
||||
<div id="contact-edit-photo-end" ></div>
|
||||
</div>
|
||||
<div id="contact-edit-nav-wrapper" >
|
||||
|
||||
<div id="contact-edit-links" >
|
||||
<a href="contacts/$contact_id/block" class="icon block" id="contact-edit-block-link" title="$block_text"></a>
|
||||
<a href="contacts/$contact_id/ignore" class="icon no" id="contact-edit-ignore-link" title="$ignore_text"></a>
|
||||
<a href="crepair/$contact_id" class="icon tools" id="contact-edit-repair" title="$lblcrepair"></a>
|
||||
<a href="contacts/$contact_id/drop" class="icon drophide" id="contact-edit-drop-link" onclick="return confirmDelete();" title="$delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);"></a>
|
||||
</div>
|
||||
<div id="contact-edit-nav-end"></div>
|
||||
|
||||
{{ if $poll_enabled }}
|
||||
<div id="contact-edit-poll-wrapper">
|
||||
<div id="contact-edit-last-update-text">$lastupdtext<span id="contact-edit-last-updated">$last_update</span></div>
|
||||
<div id="contact-edit-poll-text">$updpub</div>
|
||||
$poll_interval
|
||||
<div id="contact-edit-update-now"><a href="contacts/$contact_id/update" >$udnow</a></div>
|
||||
</div>
|
||||
{{ endif }}
|
||||
</div>
|
||||
<div id="contact-edit-end" ></div>
|
||||
|
||||
$insecure
|
||||
$blocked
|
||||
$ignored
|
||||
|
||||
<div id="view-recent-wrapper"><a href="network/?cid=$contact_id" id="contact-view-recent">$lblrecent</a></div>
|
||||
$lblsuggest
|
||||
|
||||
<div id="contact-edit-info-wrapper">
|
||||
<h4>$lbl_info1</h4>
|
||||
<textarea id="contact-edit-info" rows="10" cols="72" name="info" >$info</textarea>
|
||||
</div>
|
||||
<div id="contact-edit-info-end"></div>
|
||||
|
||||
<input class="contact-edit-submit" type="submit" name="submit" value="$submit" />
|
||||
|
||||
<div id="contact-edit-profile-select-text">
|
||||
<h4>$lbl_vis1</h4>
|
||||
<p>$lbl_vis2
|
||||
</p>
|
||||
</div>
|
||||
$profile_select
|
||||
<div id="contact-edit-profile-select-end"></div>
|
||||
|
||||
<input class="contact-edit-submit" type="submit" name="submit" value="$submit" />
|
||||
|
||||
</form>
|
||||
</div>
|
||||
BIN
view/theme/darkbubble/dbicons.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
|
|
@ -1,8 +0,0 @@
|
|||
<div class="group-delete-wrapper" id="group-delete-wrapper-$id" >
|
||||
<a href="group/drop/$id"
|
||||
onclick="return confirmDelete();"
|
||||
title="$delete"
|
||||
id="group-delete-icon-$id"
|
||||
class="drophide group-delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" >Delete Group</a>
|
||||
</div>
|
||||
<div class="group-delete-end"></div>
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
<h2>$title</h2>
|
||||
|
||||
|
||||
<div id="group-edit-wrapper" >
|
||||
<form action="group/$gid" id="group-edit-form" method="post" >
|
||||
<div id="group-edit-name-wrapper" >
|
||||
<label id="group-edit-name-label" for="group-edit-name" >$gname</label>
|
||||
<input type="text" id="group-edit-name" name="groupname" value="$name" />
|
||||
<input type="submit" name="submit" value="$submit">
|
||||
$drop
|
||||
</div>
|
||||
<div id="group-edit-name-end"></div>
|
||||
<div id="group-edit-desc">$desc</div>
|
||||
<div id="group-edit-select-end" ></div>
|
||||
</form>
|
||||
</div>
|
||||
|
Before Width: | Height: | Size: 911 B |
|
Before Width: | Height: | Size: 22 KiB |
|
|
@ -1,1442 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="250"
|
||||
height="200"
|
||||
id="svg3403"
|
||||
version="1.1"
|
||||
inkscape:version="0.48.1 r9760"
|
||||
sodipodi:docname="icons.svg"
|
||||
inkscape:export-filename="/home/fabio/public_html/friendika/view/theme/dispy/icons.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<defs
|
||||
id="defs3405">
|
||||
<filter
|
||||
color-interpolation-filters="sRGB"
|
||||
inkscape:collect="always"
|
||||
id="filter4064">
|
||||
<feBlend
|
||||
inkscape:collect="always"
|
||||
mode="lighten"
|
||||
in2="BackgroundImage"
|
||||
id="feBlend4066" />
|
||||
</filter>
|
||||
<inkscape:path-effect
|
||||
effect="gears"
|
||||
id="path-effect4050"
|
||||
is_visible="true"
|
||||
teeth="10"
|
||||
phi="10" />
|
||||
<inkscape:path-effect
|
||||
effect="gears"
|
||||
id="path-effect3436"
|
||||
is_visible="true"
|
||||
teeth="10"
|
||||
phi="10" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.9899495"
|
||||
inkscape:cx="43.010429"
|
||||
inkscape:cy="-67.661177"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:window-width="1534"
|
||||
inkscape:window-height="1067"
|
||||
inkscape:window-x="104"
|
||||
inkscape:window-y="63"
|
||||
inkscape:window-maximized="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4016"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="false"
|
||||
snapvisiblegridlinesonly="false"
|
||||
spacingx="20px"
|
||||
spacingy="20px"
|
||||
dotted="false"
|
||||
units="px"
|
||||
originx="50px"
|
||||
originy="200px" />
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4018"
|
||||
empspacing="5"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="false"
|
||||
color="#ff0000"
|
||||
opacity="0.1254902"
|
||||
empcolor="#ff0000"
|
||||
empopacity="0.25098039"
|
||||
originy="200px"
|
||||
spacingx="22px"
|
||||
spacingy="22px" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata3408">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Livello 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-852.36218)">
|
||||
<rect
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:none;display:inline"
|
||||
id="rect4007"
|
||||
width="44"
|
||||
height="132"
|
||||
x="1.5883562e-17"
|
||||
y="852.36218"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<g
|
||||
id="ico_dir"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-178.47604,867.63556)"
|
||||
style="stroke:#888a85;display:inline"
|
||||
inkscape:label="#g3846">
|
||||
<rect
|
||||
ry="6"
|
||||
rx="6"
|
||||
y="18.790752"
|
||||
x="417.14285"
|
||||
height="44.285713"
|
||||
width="44.285713"
|
||||
id="rect3820"
|
||||
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#2e3436;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 449.12191,27.281249 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
|
||||
id="path3830" />
|
||||
<path
|
||||
id="path3832"
|
||||
d="m 431.26477,26.924106 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
|
||||
style="fill:#2e3436;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3822"
|
||||
d="M 439.46875,29.78125 C 437.00319,29.78125 435,31.784443 435,34.25 c 0,2.465557 2.00319,4.46875 4.46875,4.46875 2.46556,0 4.46875,-2.003193 4.46875,-4.46875 0,-2.465557 -2.00319,-4.46875 -4.46875,-4.46875 z m 0,8.9375 c -6.2132,0 -11.25,6.862234 -11.25,15.34375 0,0.239102 0.0233,0.482318 0.0313,0.71875 l 22.4375,0 c 0.008,-0.236432 0.0313,-0.479648 0.0313,-0.71875 0,-8.481516 -5.0368,-15.34375 -11.25,-15.34375 z"
|
||||
style="fill:#2e3436;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="ico_search"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-201.41936,889.63556)"
|
||||
style="stroke:#888a85;display:inline"
|
||||
inkscape:label="#g3852">
|
||||
<rect
|
||||
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3837"
|
||||
width="44.285713"
|
||||
height="44.285713"
|
||||
x="470.35715"
|
||||
y="18.790752"
|
||||
rx="6"
|
||||
ry="6" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3839"
|
||||
d="m 477.97758,26.469174 c -3.64342,3.88426 -3.47037,9.984211 0.41389,13.627637 3.52011,3.301856 8.87059,3.441123 12.55302,0.54905 -0.17428,0.682501 0.0188,1.431563 0.57086,1.949383 l 13.7666,12.913032 c 0.80813,0.75802 2.06896,0.717682 2.82698,-0.09044 l 0.68414,-0.729357 c 0.75802,-0.808126 0.71768,-2.06896 -0.0904,-2.82698 l -13.7666,-12.913032 c -0.55205,-0.51782 -1.31192,-0.66264 -1.98188,-0.445086 2.65077,-3.859767 2.16978,-9.190402 -1.35033,-12.492258 -3.88426,-3.643426 -9.9828,-3.426204 -13.62623,0.458055 z"
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
transform="translate(-0.21428562,-0.35714286)"
|
||||
d="m 492.49999,33.612183 c 0,4.043513 -3.27792,7.321428 -7.32143,7.321428 -4.04352,0 -7.32143,-3.277915 -7.32143,-7.321428 0,-4.043514 3.27791,-7.321429 7.32143,-7.321429 4.04351,0 7.32143,3.277915 7.32143,7.321429 z"
|
||||
sodipodi:ry="7.3214288"
|
||||
sodipodi:rx="7.3214288"
|
||||
sodipodi:cy="33.612183"
|
||||
sodipodi:cx="485.17856"
|
||||
id="path3844"
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g3852"
|
||||
style="stroke:#888a85;display:inline"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-201.41936,845.63556)"
|
||||
id="ico_logout">
|
||||
<rect
|
||||
ry="6"
|
||||
rx="6"
|
||||
y="18.790752"
|
||||
x="470.35715"
|
||||
height="44.285713"
|
||||
width="44.285713"
|
||||
id="rect3995"
|
||||
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:#555753;fill-opacity:1;stroke:#888a85;stroke-width:2.31938004"
|
||||
d="M 504.69787,28.735741 480.30214,53.131477"
|
||||
id="path4003"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4005"
|
||||
d="M 504.69787,53.131473 480.30214,28.735746"
|
||||
style="fill:#555753;fill-opacity:1;stroke:#888a85;stroke-width:2.31938004" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g3846"
|
||||
style="stroke:#d3d7cf;display:inline"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-156.47604,867.63556)"
|
||||
id="ico_dir_on">
|
||||
<rect
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4011"
|
||||
width="44.285713"
|
||||
height="44.285713"
|
||||
x="417.14285"
|
||||
y="18.790752"
|
||||
rx="6"
|
||||
ry="6" />
|
||||
<path
|
||||
id="path4013"
|
||||
d="m 449.12191,27.281249 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
|
||||
style="fill:#2e3436;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#2e3436;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 431.26477,26.924106 c -2.07646,0 -3.76352,1.688406 -3.76352,3.766518 0,2.078113 1.68706,3.766518 3.76352,3.766518 2.07646,0 3.76351,-1.688405 3.76351,-3.766518 0,-2.078112 -1.68705,-3.766518 -3.76351,-3.766518 z m 0,7.533036 c -5.23267,0 -9.47459,5.783883 -9.47459,12.932589 0,0.201529 0.0196,0.406525 0.0264,0.605804 l 18.89654,0 c 0.007,-0.199279 0.0264,-0.404275 0.0264,-0.605804 0,-7.148706 -4.24192,-12.932589 -9.47459,-12.932589 z"
|
||||
id="path4015" />
|
||||
<path
|
||||
style="fill:#2e3436;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="M 439.46875,29.78125 C 437.00319,29.78125 435,31.784443 435,34.25 c 0,2.465557 2.00319,4.46875 4.46875,4.46875 2.46556,0 4.46875,-2.003193 4.46875,-4.46875 0,-2.465557 -2.00319,-4.46875 -4.46875,-4.46875 z m 0,8.9375 c -6.2132,0 -11.25,6.862234 -11.25,15.34375 0,0.239102 0.0233,0.482318 0.0313,0.71875 l 22.4375,0 c 0.008,-0.236432 0.0313,-0.479648 0.0313,-0.71875 0,-8.481516 -5.0368,-15.34375 -11.25,-15.34375 z"
|
||||
id="path4017"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g3852"
|
||||
style="stroke:#d3d7cf;display:inline"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-179.41936,889.63556)"
|
||||
id="ico_search_on">
|
||||
<rect
|
||||
ry="6"
|
||||
rx="6"
|
||||
y="18.790752"
|
||||
x="470.35715"
|
||||
height="44.285713"
|
||||
width="44.285713"
|
||||
id="rect4021"
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 477.97758,26.469174 c -3.64342,3.88426 -3.47037,9.984211 0.41389,13.627637 3.52011,3.301856 8.87059,3.441123 12.55302,0.54905 -0.17428,0.682501 0.0188,1.431563 0.57086,1.949383 l 13.7666,12.913032 c 0.80813,0.75802 2.06896,0.717682 2.82698,-0.09044 l 0.68414,-0.729357 c 0.75802,-0.808126 0.71768,-2.06896 -0.0904,-2.82698 l -13.7666,-12.913032 c -0.55205,-0.51782 -1.31192,-0.66264 -1.98188,-0.445086 2.65077,-3.859767 2.16978,-9.190402 -1.35033,-12.492258 -3.88426,-3.643426 -9.9828,-3.426204 -13.62623,0.458055 z"
|
||||
id="path4023"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="path4025"
|
||||
sodipodi:cx="485.17856"
|
||||
sodipodi:cy="33.612183"
|
||||
sodipodi:rx="7.3214288"
|
||||
sodipodi:ry="7.3214288"
|
||||
d="m 492.49999,33.612183 c 0,4.043513 -3.27792,7.321428 -7.32143,7.321428 -4.04352,0 -7.32143,-3.277915 -7.32143,-7.321428 0,-4.043514 3.27791,-7.321429 7.32143,-7.321429 4.04351,0 7.32143,3.277915 7.32143,7.321429 z"
|
||||
transform="translate(-0.21428562,-0.35714286)" />
|
||||
</g>
|
||||
<g
|
||||
id="ico_logout_on"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-179.41936,845.63556)"
|
||||
style="stroke:#d3d7cf;display:inline"
|
||||
inkscape:label="#g3852">
|
||||
<rect
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4029"
|
||||
width="44.285713"
|
||||
height="44.285713"
|
||||
x="470.35715"
|
||||
y="18.790752"
|
||||
rx="6"
|
||||
ry="6" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4031"
|
||||
d="M 504.69787,28.735741 480.30214,53.131477"
|
||||
style="fill:#555753;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.31938004" />
|
||||
<path
|
||||
style="fill:#555753;fill-opacity:1;stroke:#d3d7cf;stroke-width:2.31938004"
|
||||
d="M 504.69787,53.131473 480.30214,28.735746"
|
||||
id="path4033"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g3852"
|
||||
style="stroke:#888a85;display:inline;filter:url(#filter4064)"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-201.41936,911.63556)"
|
||||
id="g4040">
|
||||
<rect
|
||||
ry="6"
|
||||
rx="6"
|
||||
y="18.790752"
|
||||
x="470.35715"
|
||||
height="44.285713"
|
||||
width="44.285713"
|
||||
id="rect4042"
|
||||
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138"
|
||||
id="path4048"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:path-effect="#path-effect4050"
|
||||
inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434" />
|
||||
</g>
|
||||
<g
|
||||
id="g4068"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-179.41936,911.63556)"
|
||||
style="stroke:#d3d7cf;display:inline;filter:url(#filter4064)"
|
||||
inkscape:label="#g3852">
|
||||
<rect
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4070"
|
||||
width="44.285713"
|
||||
height="44.285713"
|
||||
x="470.35715"
|
||||
y="18.790752"
|
||||
rx="6"
|
||||
ry="6" />
|
||||
<path
|
||||
inkscape:original-d="M 484.55417,49.762303 492.5,40.933609 504.27158,48.879434"
|
||||
inkscape:path-effect="#path-effect4050"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4072"
|
||||
d="m 484.90604,52.679071 c 0,0 -0.72327,1.028211 -2.88202,1.697409 -0.63474,-0.494653 -1.23439,-1.034334 -1.79294,-1.613646 0.43889,-2.217071 1.3855,-3.044283 1.3855,-3.044283 l 2.04237,-1.648571 c -0.73879,-0.915258 -1.3342,-1.946011 -1.75793,-3.043257 l -2.44847,0.945549 c 0,0 -1.18951,0.40671 -3.32932,-0.320779 -0.22277,-0.773276 -0.39067,-1.56235 -0.50204,-2.359331 1.65823,-1.535673 2.91028,-1.648499 2.91028,-1.648499 l 2.62132,-0.133248 c -0.0597,-1.174706 0.0645,-2.358577 0.36658,-3.495332 l -2.53663,-0.674208 c 0,0 -1.20139,-0.37014 -2.50493,-2.216441 0.2743,-0.756533 0.60227,-1.4936 0.98062,-2.20383 2.24419,-0.267701 3.32343,0.376954 3.32343,0.376954 l 2.19901,1.432971 c 0.64217,-0.985455 1.43848,-1.870246 2.35108,-2.612309 l -1.65589,-2.03644 c 0,0 -0.75438,-1.005609 -0.72373,-3.265497 0.66659,-0.45082 1.36515,-0.854347 2.08871,-1.206542 1.97294,1.102524 2.46715,2.258424 2.46715,2.258424 l 0.93675,2.451844 c 1.09876,-0.419794 2.26306,-0.667544 3.43754,-0.731472 l -0.14265,-2.620822 c 0,0 -0.0192,-1.25697 1.3339,-3.067245 0.80426,0.02709 1.6066,0.111239 2.39899,0.251604 0.94809,2.051624 0.66849,3.277254 0.66849,3.277254 l -0.6833,2.534196 c 1.13566,0.306213 2.22322,0.790136 3.21097,1.428761 l 1.42508,-2.204138 c 0,0 0.72327,-1.028211 2.88202,-1.697409 0.63474,0.494653 1.23439,1.034334 1.79294,1.613646 -0.43889,2.217071 -1.3855,3.044283 -1.3855,3.044283 l -2.04237,1.648571 c 0.73879,0.915258 1.3342,1.946011 1.75793,3.043257 l 2.44847,-0.945549 c 0,0 1.18951,-0.40671 3.32932,0.320779 0.22277,0.773276 0.39067,1.56235 0.50204,2.359331 -1.65823,1.535673 -2.91028,1.648499 -2.91028,1.648499 l -2.62132,0.133248 c 0.0597,1.174706 -0.0645,2.358577 -0.36658,3.495332 l 2.53663,0.674208 c 0,0 1.20139,0.37014 2.50493,2.216441 -0.2743,0.756533 -0.60227,1.4936 -0.98062,2.20383 -2.24419,0.267701 -3.32343,-0.376954 -3.32343,-0.376954 l -2.19901,-1.432971 c -0.64217,0.985455 -1.43848,1.870246 -2.35108,2.612309 l 1.65589,2.03644 c 0,0 0.75438,1.005609 0.72373,3.265497 -0.66659,0.45082 -1.36515,0.854347 -2.08871,1.206542 -1.97294,-1.102524 -2.46715,-2.258424 -2.46715,-2.258424 l -0.93675,-2.451844 c -1.09876,0.419794 -2.26306,0.667544 -3.43754,0.731472 l 0.14265,2.620822 c 0,0 0.0192,1.25697 -1.3339,3.067245 -0.80426,-0.02709 -1.6066,-0.111239 -2.39899,-0.251604 -0.94809,-2.051624 -0.66849,-3.277254 -0.66849,-3.277254 l 0.6833,-2.534196 c -1.13566,-0.306213 -2.22322,-0.790136 -3.21097,-1.428761 l -1.42508,2.204138"
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:1.66475451;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
</g>
|
||||
<g
|
||||
id="g4074"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-201.41936,933.6356)"
|
||||
style="stroke:#888a85;display:inline;filter:url(#filter4064)"
|
||||
inkscape:label="#g3852">
|
||||
<rect
|
||||
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect4076"
|
||||
width="44.285713"
|
||||
height="44.285713"
|
||||
x="470.35715"
|
||||
y="18.790752"
|
||||
rx="6"
|
||||
ry="6" />
|
||||
<path
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#888a85;stroke-width:0.79446769;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 871.875,46.1875 c -1.86715,0.0095 -3.39179,1.39545 -3.65625,3.1875 -0.13267,-0.238038 -0.39472,-0.407705 -0.6875,-0.40625 L 860.21875,49 c -0.42864,0.0022 -0.75216,0.352585 -0.75,0.78125 l 0,0.375 c 0.002,0.428643 0.35273,0.783324 0.78125,0.78125 l 0.71875,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.04661 -0.0143,-0.115964 -0.0313,-0.15625 l 1.25,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.05736 -0.006,-0.140333 -0.0313,-0.1875 l 2.1875,0 c 0.29284,-0.0015 0.55725,-0.166865 0.6875,-0.40625 0.28274,1.789274 1.85161,3.165775 3.71875,3.15625 2.0603,-0.01052 3.69802,-1.720959 3.6875,-3.78125 -0.0105,-2.060291 -1.68969,-3.698024 -3.75,-3.6875 z"
|
||||
transform="matrix(2.3193801,0,0,2.3193801,-1519.671,-74.824492)"
|
||||
id="path3839-4"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:label="#g3852"
|
||||
style="stroke:#d3d7cf;display:inline;filter:url(#filter4064)"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-179.41936,933.6356)"
|
||||
id="g4106">
|
||||
<rect
|
||||
ry="6"
|
||||
rx="6"
|
||||
y="18.790752"
|
||||
x="470.35715"
|
||||
height="44.285713"
|
||||
width="44.285713"
|
||||
id="rect4108"
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
id="path4110"
|
||||
transform="matrix(2.3193801,0,0,2.3193801,-1519.671,-74.824492)"
|
||||
d="m 871.875,46.1875 c -1.86715,0.0095 -3.39179,1.39545 -3.65625,3.1875 -0.13267,-0.238038 -0.39472,-0.407705 -0.6875,-0.40625 L 860.21875,49 c -0.42864,0.0022 -0.75216,0.352585 -0.75,0.78125 l 0,0.375 c 0.002,0.428643 0.35273,0.783324 0.78125,0.78125 l 0.71875,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.04661 -0.0143,-0.115964 -0.0313,-0.15625 l 1.25,0 c -0.017,0.04029 -0.0313,0.109644 -0.0313,0.15625 l 0,1.90625 c 0,0.186425 0.15733,0.34375 0.34375,0.34375 l 0.9375,0 c 0.18642,0 0.34375,-0.157325 0.34375,-0.34375 l 0,-1.90625 c 0,-0.05736 -0.006,-0.140333 -0.0313,-0.1875 l 2.1875,0 c 0.29284,-0.0015 0.55725,-0.166865 0.6875,-0.40625 0.28274,1.789274 1.85161,3.165775 3.71875,3.15625 2.0603,-0.01052 3.69802,-1.720959 3.6875,-3.78125 -0.0105,-2.060291 -1.68969,-3.698024 -3.75,-3.6875 z"
|
||||
style="fill:#2e3436;fill-opacity:1;stroke:#d3d7cf;stroke-width:0.79446769;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g4031-9"
|
||||
transform="matrix(0.45818575,0.68148541,-0.68148541,0.45818575,-2.7897502,485.71067)"
|
||||
style="display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#555753;fill-opacity:1;stroke:none"
|
||||
id="path4002-3"
|
||||
sodipodi:cx="559.67499"
|
||||
sodipodi:cy="21.754047"
|
||||
sodipodi:rx="0.88388348"
|
||||
sodipodi:ry="0.88388348"
|
||||
d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
|
||||
transform="matrix(2.8,0,0,2.8,-999.63682,-35.444974)" />
|
||||
<path
|
||||
transform="matrix(2.1,0,0,2.1,-600.17454,-24.194616)"
|
||||
d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
|
||||
sodipodi:ry="0.88388348"
|
||||
sodipodi:rx="0.88388348"
|
||||
sodipodi:cy="21.754047"
|
||||
sodipodi:cx="559.67499"
|
||||
id="path4004-9"
|
||||
style="fill:#555753;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#555753;fill-opacity:1;stroke:none"
|
||||
id="path4006-4"
|
||||
sodipodi:cx="559.67499"
|
||||
sodipodi:cy="21.754047"
|
||||
sodipodi:rx="0.88388348"
|
||||
sodipodi:ry="0.88388348"
|
||||
d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
|
||||
transform="matrix(2.2,0,0,2.2,-671.07968,-28.226177)" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 563.21055,31.653543 4.41942,-6.187185 -7.6014,-6.187184"
|
||||
id="path4010-56"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
transform="matrix(2.4,0,0,2.4,-780.18625,-20.379394)"
|
||||
d="m 560.55887,21.754047 c 0,0.488156 -0.39573,0.883884 -0.88388,0.883884 -0.48816,0 -0.88389,-0.395728 -0.88389,-0.883884 0,-0.488155 0.39573,-0.883883 0.88389,-0.883883 0.48815,0 0.88388,0.395728 0.88388,0.883883 z"
|
||||
sodipodi:ry="0.88388348"
|
||||
sodipodi:rx="0.88388348"
|
||||
sodipodi:cy="21.754047"
|
||||
sodipodi:cx="559.67499"
|
||||
id="path4008-8"
|
||||
style="fill:#555753;fill-opacity:1;stroke:none"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 567.45319,25.466358 7.6014,-4.065864"
|
||||
id="path4012-5"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
|
||||
d="m 218.00001,881.25007 -5.8125,0 0,9.1875 10.53125,0 0,-5.2187"
|
||||
id="rect4432"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4387-8"
|
||||
width="14.5"
|
||||
height="9"
|
||||
x="173.12502"
|
||||
y="858.11218"
|
||||
rx="2.9268293"
|
||||
ry="2.9268293"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path4391-3"
|
||||
sodipodi:cx="408.8125"
|
||||
sodipodi:cy="220.26843"
|
||||
sodipodi:rx="2.6875"
|
||||
sodipodi:ry="2.71875"
|
||||
d="m 411.5,220.26843 a 2.6875,2.71875 0 1 1 -5.375,0 2.6875,2.71875 0 1 1 5.375,0 z"
|
||||
transform="matrix(1.1489362,0,0,1.1489362,-286.13697,609.51131)"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#555753;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 242.44524,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70235,0 c 0.51967,0 0.94448,0.2879 0.94448,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94448,0.672 l -3.70235,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z"
|
||||
id="rect4397-0"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4418-4"
|
||||
d="m 232.97199,860.13287 c -0.98011,0 -1.77562,0.6006 -1.77562,1.3586 l 0,1.5632 c 0,0.7581 0.79551,1.3733 1.77562,1.3733 l 4.53349,0 c 0.98012,0 1.77562,-0.6152 1.77562,-1.3733 l 0,-1.5632 c 0,-0.758 -0.7955,-1.3586 -1.77562,-1.3586 l -4.53349,0 z m 0.41557,1.0372 3.70236,0 c 0.51966,0 0.94447,0.2879 0.94447,0.6574 l 0,0.8912 c 0,0.3695 -0.42481,0.672 -0.94447,0.672 l -3.70236,0 c -0.51966,0 -0.94447,-0.3025 -0.94447,-0.672 l 0,-0.8912 c 0,-0.3695 0.42481,-0.6574 0.94447,-0.6574 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#555753;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#555753;stroke-width:0.47366244;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4395-0"
|
||||
width="6.7246785"
|
||||
height="1.6362466"
|
||||
x="236.7028"
|
||||
y="861.57312"
|
||||
rx="1.0135853"
|
||||
ry="0.81812328"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
|
||||
id="rect4416-1"
|
||||
width="14.495689"
|
||||
height="6.5407376"
|
||||
x="132.5179"
|
||||
y="901.32971"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:5.54432058px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;display:inline;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans"
|
||||
x="139.36653"
|
||||
y="900.60059"
|
||||
id="text4406-9"
|
||||
sodipodi:linespacing="100%"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4408-6"
|
||||
x="139.36653"
|
||||
y="900.60059">You</tspan><tspan
|
||||
sodipodi:role="line"
|
||||
x="139.36653"
|
||||
y="906.1449"
|
||||
id="tspan4410-2"
|
||||
style="fill:#eeeeec">Tube</tspan></text>
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 118.03127,895.15627 0,0.3125 c 0,1.2601 -0.0643,3.4345 -0.35937,5.75 l -1.5625,1e-4 c -0.80183,0.011 -1.64766,4.0737 -1.60938,8.0625 l 8.25,0 c -0.057,-5.5479 1.56902,-11.5211 1.75,-5.6563 0.21453,6.9525 1.74237,-5.1823 1.75,-8.4687 z"
|
||||
id="rect4428-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccccscc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 124.78127,905.73727 -1.9375,-0.063"
|
||||
id="path4440-4"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
d="m 117.59377,901.20597 6.4375,0"
|
||||
id="path4442-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4446-9"
|
||||
width="1.0625"
|
||||
height="0.375"
|
||||
x="115.28126"
|
||||
y="908.11218"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
y="906.51843"
|
||||
x="115.34376"
|
||||
height="0.375"
|
||||
width="1.0625"
|
||||
id="rect4448-3"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4450-6"
|
||||
width="1.0625"
|
||||
height="0.375"
|
||||
x="115.50001"
|
||||
y="904.89343"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
y="903.42468"
|
||||
x="115.81251"
|
||||
height="0.375"
|
||||
width="1.0625"
|
||||
id="rect4452-0"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4454-5"
|
||||
width="1.0625"
|
||||
height="0.375"
|
||||
x="116.21876"
|
||||
y="902.17468"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
y="900.17468"
|
||||
x="118.50001"
|
||||
height="0.375"
|
||||
width="1.0625"
|
||||
id="rect4456-0"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4458-2"
|
||||
width="1.0625"
|
||||
height="0.375"
|
||||
x="118.68751"
|
||||
y="898.70593"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
y="897.20593"
|
||||
x="118.75001"
|
||||
height="0.375"
|
||||
width="1.0625"
|
||||
id="rect4460-9"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4462-4"
|
||||
width="1.0625"
|
||||
height="0.375"
|
||||
x="118.75001"
|
||||
y="895.79968"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
y="908.11218"
|
||||
x="120.84376"
|
||||
height="0.375"
|
||||
width="1.0625"
|
||||
id="rect4464-3"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4466-5"
|
||||
width="1.0625"
|
||||
height="0.375"
|
||||
x="120.90627"
|
||||
y="906.51843"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
y="904.89343"
|
||||
x="121.06252"
|
||||
height="0.375"
|
||||
width="1.0625"
|
||||
id="rect4468-1"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4470-7"
|
||||
width="1.0625"
|
||||
height="0.375"
|
||||
x="121.37502"
|
||||
y="903.42468"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
y="902.17468"
|
||||
x="121.78127"
|
||||
height="0.375"
|
||||
width="1.0625"
|
||||
id="rect4472-4"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4474-3"
|
||||
width="1.0625"
|
||||
height="0.375"
|
||||
x="124.06252"
|
||||
y="900.17468"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
y="898.70593"
|
||||
x="124.25002"
|
||||
height="0.375"
|
||||
width="1.0625"
|
||||
id="rect4476-1"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="rect4478-4"
|
||||
width="1.0625"
|
||||
height="0.375"
|
||||
x="124.31252"
|
||||
y="897.20593"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
y="895.79968"
|
||||
x="124.31252"
|
||||
height="0.375"
|
||||
width="1.0625"
|
||||
id="rect4480-6"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g4507-4"
|
||||
transform="matrix(0.92823291,-0.48059851,0.48059851,0.92823291,-312.89954,806.76727)"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
sodipodi:nodetypes="csc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4491-2"
|
||||
d="m 310.75659,223.79453 c 0.76095,-0.8373 1.2453,-2.02269 1.2453,-3.35786 0,-1.33796 -0.48156,-2.54257 -1.2453,-3.38009"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.35579938;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.47089946;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
d="m 311.49266,224.75938 c 1.00712,-1.10816 1.64816,-2.67702 1.64816,-4.44411 0,-1.77079 -0.63735,-3.36509 -1.64816,-4.47354"
|
||||
id="path4496-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
<path
|
||||
sodipodi:nodetypes="csc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4498-6"
|
||||
d="m 312.78041,226.18348 c 1.3429,-1.47763 2.19766,-3.56956 2.19766,-5.9258 0,-2.36118 -0.84984,-4.48703 -2.19766,-5.96505"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.62789989;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4500-4"
|
||||
d="m 309.34375,224.125 0,-7.375 -3.78125,2.07812 -3.4375,-0.10937 0,3.46875 3.4375,-0.125 z"
|
||||
style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path4515-2"
|
||||
sodipodi:cx="284.78726"
|
||||
sodipodi:cy="220.62782"
|
||||
sodipodi:rx="7.4246211"
|
||||
sodipodi:ry="7.4246211"
|
||||
d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
|
||||
transform="translate(-224.73743,661.76263)"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
|
||||
d="m 53.15626,883.15627 c 1.94168,0.712 4.31843,1.1563 6.90625,1.1563 2.58782,0 4.96457,-0.4443 6.90625,-1.1563"
|
||||
id="path4517-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
sodipodi:nodetypes="csc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4528-8"
|
||||
d="m 60.45665,888.82867 c 0.71191,-1.9416 1.15625,-4.3184 1.15625,-6.9062 0,-2.5878 -0.44434,-4.9646 -1.15625,-6.9063"
|
||||
style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:3.72799897px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#555753;fill-opacity:1;stroke:none;display:inline;font-family:Liberation Sans;-inkscape-font-specification:Liberation Sans"
|
||||
x="51.803352"
|
||||
y="859.21899"
|
||||
id="text4532-2"
|
||||
sodipodi:linespacing="100%"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4534-8"
|
||||
x="51.803352"
|
||||
y="859.21899"
|
||||
style="font-weight:bold;fill:#555753;-inkscape-font-specification:Liberation Sans Bold">Lorem Ip</tspan></text>
|
||||
<path
|
||||
style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
|
||||
d="m 52.25001,862.61227 15.25,0"
|
||||
id="path4536-8"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4538-8"
|
||||
d="m 52.25001,864.86227 15.25,0"
|
||||
style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
|
||||
d="m 52.25001,867.11227 15.25,0"
|
||||
id="path4540-6"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.82322329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
|
||||
d="m 242.49116,907.21887 5.125,-5.125 -5.125,-5.0937"
|
||||
id="rect4544-3"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4549-8"
|
||||
d="m 237.98183,907.21887 -5.125,-5.125 5.125,-5.0937"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.82322329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g4213"
|
||||
transform="translate(49.48448,-140.79121)"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
sodipodi:type="star"
|
||||
style="fill:#555753;fill-opacity:1;stroke:none"
|
||||
id="path4802"
|
||||
sodipodi:sides="8"
|
||||
sodipodi:cx="98.48214"
|
||||
sodipodi:cy="-10.267858"
|
||||
sodipodi:r1="9.1071424"
|
||||
sodipodi:r2="8.4139032"
|
||||
sodipodi:arg1="-1.5707963"
|
||||
sodipodi:arg2="-1.1780972"
|
||||
inkscape:flatsided="true"
|
||||
inkscape:rounded="0"
|
||||
inkscape:randomized="0"
|
||||
d="m 98.48214,-19.375 6.43972,2.66742 2.66742,6.439723 -2.66742,6.4397218 -6.439721,2.6674201 -6.439722,-2.6674204 -2.66742,-6.4397225 2.667421,-6.439722 z"
|
||||
transform="matrix(0.92307692,0.3846154,-0.3846154,0.92307692,-44.340246,974.7537)" />
|
||||
<path
|
||||
transform="matrix(0.74691191,0.31121331,-0.31121331,0.74691191,-26.237457,980.1736)"
|
||||
d="m 98.48214,-19.375 6.43972,2.66742 2.66742,6.439723 -2.66742,6.4397218 -6.439721,2.6674201 -6.439722,-2.6674204 -2.66742,-6.4397225 2.667421,-6.439722 z"
|
||||
inkscape:randomized="0"
|
||||
inkscape:rounded="0"
|
||||
inkscape:flatsided="true"
|
||||
sodipodi:arg2="-1.1780972"
|
||||
sodipodi:arg1="-1.5707963"
|
||||
sodipodi:r2="8.4139032"
|
||||
sodipodi:r1="9.1071424"
|
||||
sodipodi:cy="-10.267858"
|
||||
sodipodi:cx="98.48214"
|
||||
sodipodi:sides="8"
|
||||
id="path4804"
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:2.47171569;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
sodipodi:type="star" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m 53.26552,1056.9525 -5.5,6.2008 5.5,6.2009"
|
||||
id="rect4806"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
id="path4812"
|
||||
d="m 67.781143,1069.3407 5.46875,-6.2009 -5.46875,-6.1736"
|
||||
style="fill:none;stroke:#555753;stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
|
||||
id="path4257"
|
||||
d="m 115.39024,855.00555 c 0.0904,0.0266 0.18708,0.0371 0.27111,0.0797 0.24682,0.12501 0.80382,0.53514 1.00046,0.67918 0.72548,0.53142 1.43751,1.08068 2.14837,1.63134 1.22364,0.99003 2.36274,2.09287 3.41202,3.2665 0.43117,0.4822 1.01205,1.207 1.42675,1.7166 0.97898,1.2314 2.022,2.4234 2.86791,3.7533 0.20576,0.2994 0.39551,0.6797 0.65579,0.9028 -0.10862,-0.1107 -0.10877,-0.099 0.0344,-0.01 0.19118,0.1291 -1.63528,2.8328 -1.82646,2.7036 l 0,0 c -0.18814,-0.022 -0.0511,0 -0.37755,-0.1793 -0.55628,-0.365 -1.09599,-0.7525 -1.61517,-1.1691 -1.27322,-1.0021 -2.36476,-2.2048 -3.47982,-3.3749 -1.53016,-1.5621 -3.0115,-3.1717 -4.57958,-4.6966 -0.94249,-1.01074 -1.92636,-2.0326 -2.54392,-3.28422 -0.14292,-0.18424 2.46273,-2.20539 2.60565,-2.02115 z"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
|
||||
id="path4259"
|
||||
d="m 112.109,867.43007 c 0.0548,-0.091 0.10266,-0.1866 0.16432,-0.2731 0.23235,-0.3261 0.52565,-0.6137 0.79275,-0.9102 0.42229,-0.4689 0.38553,-0.4337 0.82852,-0.9537 1.44214,-1.6363 3.06836,-3.0981 4.69856,-4.5425 1.63203,-1.40989 3.17698,-2.9167 4.78859,-4.3486 0.46305,-0.4369 0.97793,-0.80137 1.52221,-1.12653 0.15824,-0.21119 3.14491,2.0267 2.98666,2.23789 l 0,0 c -0.2952,0.52243 -0.62275,1.02042 -1.01852,1.47475 -0.88192,1.11919 -1.78212,2.22369 -2.79371,3.23049 -0.29346,0.2921 -0.60222,0.5684 -0.90606,0.8497 -0.31321,0.2899 -0.63003,0.5759 -0.94504,0.8639 -1.67153,1.4209 -3.37366,2.8163 -5.22715,3.9963 -0.49876,0.3405 -0.57121,0.3777 -1.0203,0.7266 -0.39341,0.3057 -0.75974,0.6889 -1.26518,0.7962 -0.14292,0.1842 -2.74857,-1.8369 -2.60565,-2.0212 z"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 135.39024,855.00555 c 0.0904,0.027 0.18708,0.037 0.27111,0.08 0.24682,0.125 0.80382,0.5352 1.00046,0.6792 0.72548,0.5314 1.43751,1.0807 2.14837,1.6314 1.22364,0.99 2.36274,2.0928 3.41202,3.26652 0.43117,0.4822 1.01205,1.207 1.42675,1.7166 0.97898,1.2314 2.022,2.4234 2.86791,3.7533 0.20576,0.2994 0.39551,0.6797 0.65579,0.9028 -0.10862,-0.1107 -0.10877,-0.099 0.0344,-0.01 0.19118,0.1291 -1.63528,2.8328 -1.82646,2.7036 l 0,0 c -0.18814,-0.022 -0.0511,0 -0.37755,-0.1793 -0.55628,-0.365 -1.09599,-0.7525 -1.61517,-1.1691 -1.27322,-1.0021 -2.36476,-2.2048 -3.47982,-3.3749 -1.53016,-1.5621 -3.0115,-3.1717 -4.57958,-4.6966 -0.94249,-1.01082 -1.92636,-2.03262 -2.54392,-3.28432 -0.14292,-0.1842 2.46273,-2.2054 2.60565,-2.0211 z"
|
||||
id="path4263"
|
||||
style="fill:#d3d7cf;fill-opacity:1;stroke:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 132.109,867.43017 c 0.0548,-0.091 0.10266,-0.1866 0.16432,-0.2731 0.23235,-0.3261 0.52565,-0.6137 0.79275,-0.9102 0.42229,-0.4689 0.38553,-0.4337 0.82852,-0.9537 1.44214,-1.6363 3.06836,-3.0981 4.69856,-4.5425 1.63203,-1.40992 3.17698,-2.91672 4.78859,-4.34862 0.46305,-0.4369 0.97793,-0.8014 1.52221,-1.1266 0.15824,-0.2112 3.14491,2.0267 2.98666,2.2379 l 0,0 c -0.2952,0.5224 -0.62275,1.0204 -1.01852,1.4748 -0.88192,1.11922 -1.78212,2.22372 -2.79371,3.23052 -0.29346,0.2921 -0.60222,0.5684 -0.90606,0.8497 -0.31321,0.2899 -0.63003,0.5759 -0.94504,0.8639 -1.67153,1.4209 -3.37366,2.8163 -5.22715,3.9963 -0.49876,0.3405 -0.57121,0.3777 -1.0203,0.7266 -0.39341,0.3057 -0.75974,0.6889 -1.26518,0.7962 -0.14292,0.1842 -2.74857,-1.8369 -2.60565,-2.0212 z"
|
||||
id="path4265"
|
||||
style="fill:#d3d7cf;fill-opacity:1;stroke:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g4283"
|
||||
transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,294.0656)"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4269"
|
||||
d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4271"
|
||||
d="m -44.467884,1124.9404 4.644661,0"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m -42.239747,1107.2336 0,17.6813"
|
||||
id="path4275"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4279"
|
||||
d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z"
|
||||
style="fill:#555753;stroke:#555753;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<rect
|
||||
ry="0.42804927"
|
||||
rx="0.37616169"
|
||||
y="1105.3309"
|
||||
x="-44.73621"
|
||||
height="1.8614606"
|
||||
width="5.1800866"
|
||||
id="rect4281"
|
||||
style="fill:#555753;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
|
||||
id="rect4290"
|
||||
width="3.5355339"
|
||||
height="1.8561553"
|
||||
x="174.89275"
|
||||
y="859.06403"
|
||||
rx="1"
|
||||
ry="1"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
d="m 214.75589,862.65317 c 3.31942,-0.632 4.06019,-2.1721 5.3033,-4.08897 0.42304,-0.6524 -0.64726,-2.63586 0,-3.13491 0.10703,-0.0825 0.93192,0 1.06066,0 2.52315,0 1.41421,3.50161 1.41421,4.77048 0,0.2317 -0.47723,0.6815 -0.17677,0.6815 2.44972,0 2.94209,0.3603 4.41942,1.4993 0.0697,0.054 0.31741,3.8443 0.17677,3.9527 -0.26074,0.201 -0.49042,0.5145 -0.7071,0.6815 -0.13627,0.105 0.38563,0.7684 0.17677,1.0904 -0.17664,0.2724 -0.85358,0.8061 -1.23743,0.9541 -0.36233,0.1398 -0.89015,0 -1.23744,0.1363 -1.96875,0.759 -2.1166,-0.9523 -3.18198,-1.363 -0.34866,-0.1344 -0.63592,-0.1088 -1.06066,-0.2726 -0.99671,-0.3842 -3.88909,0.6704 -3.88909,-0.2726 0,-1.2852 -0.2556,-3.5996 -1.06066,-4.6342 z"
|
||||
id="path4292"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4294"
|
||||
d="m 205.42921,862.12677 c -3.31942,0.632 -4.06019,2.1721 -5.3033,4.089 -0.42304,0.6524 0.64726,2.6358 0,3.1349 -0.10703,0.082 -0.93192,0 -1.06066,0 -2.52315,0 -1.41421,-3.5016 -1.41421,-4.7705 0,-0.2317 0.47723,-0.6815 0.17677,-0.6815 -2.44972,0 -2.94209,-0.3603 -4.41942,-1.4993 -0.0697,-0.054 -0.31741,-3.84428 -0.17677,-3.95268 0.26074,-0.201 0.49042,-0.5145 0.7071,-0.6815 0.13627,-0.105 -0.38563,-0.7684 -0.17677,-1.0904 0.17664,-0.2724 0.85358,-0.8061 1.23743,-0.9541 0.36233,-0.1398 0.89015,0 1.23744,-0.1363 1.96875,-0.759 2.1166,0.9523 3.18198,1.363 0.34866,0.1344 0.63592,0.1088 1.06066,0.2726 0.99671,0.3842 3.88909,-0.6704 3.88909,0.2726 0,1.2852 0.2556,3.59958 1.06066,4.63418 z"
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
transform="translate(-204.73743,661.76269)"
|
||||
d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
|
||||
sodipodi:ry="7.4246211"
|
||||
sodipodi:rx="7.4246211"
|
||||
sodipodi:cy="220.62782"
|
||||
sodipodi:cx="284.78726"
|
||||
id="path4298"
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
sodipodi:type="arc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
sodipodi:nodetypes="csc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4300"
|
||||
d="m 73.15626,883.15627 c 1.94168,0.712 4.31843,1.1563 6.90625,1.1563 2.58782,0 4.96457,-0.4443 6.90625,-1.1563"
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;display:inline"
|
||||
d="m 80.45665,888.82867 c 0.71191,-1.9416 1.15625,-4.3184 1.15625,-6.9062 0,-2.5878 -0.44434,-4.9646 -1.15625,-6.9063"
|
||||
id="path4302"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
transform="translate(-184.73743,661.76263)"
|
||||
d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
|
||||
sodipodi:ry="7.4246211"
|
||||
sodipodi:rx="7.4246211"
|
||||
sodipodi:cy="220.62782"
|
||||
sodipodi:cx="284.78726"
|
||||
id="path4306"
|
||||
style="fill:none;stroke:#555753;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
sodipodi:type="arc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
|
||||
d="m 94.285536,887.89997 11.048544,-11.0485"
|
||||
id="path4308"
|
||||
inkscape:connector-curvature="0"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:#555753;stroke:none;display:inline"
|
||||
id="rect4310"
|
||||
width="3.3587573"
|
||||
height="12.020815"
|
||||
x="115.93771"
|
||||
y="876.12292"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
y="876.12292"
|
||||
x="120.53392"
|
||||
height="12.020815"
|
||||
width="3.3587573"
|
||||
id="rect4312"
|
||||
style="fill:#555753;stroke:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:#555753;stroke:none;display:inline"
|
||||
d="m 134.32248,876.12297 11.31371,6.0104 -11.31371,6.0104 z"
|
||||
id="rect4314"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<g
|
||||
style="display:inline"
|
||||
transform="matrix(0.52823691,0.52823691,-0.52823691,0.52823691,773.22931,313.68781)"
|
||||
id="g4317"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z"
|
||||
id="path4319"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m -44.467884,1124.9404 4.644661,0"
|
||||
id="path4321"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4323"
|
||||
d="m -42.239747,1107.2336 0,17.6813"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
<path
|
||||
style="fill:#555753;stroke:#555753;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z"
|
||||
id="path4325"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<rect
|
||||
style="fill:#555753;fill-opacity:1;stroke:none"
|
||||
id="rect4327"
|
||||
width="5.1800866"
|
||||
height="1.8614606"
|
||||
x="-44.73621"
|
||||
y="1105.3309"
|
||||
rx="0.37616169"
|
||||
ry="0.42804927" />
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g4329"
|
||||
transform="matrix(0.24508333,0.24508333,-0.24508333,0.24508333,458.00011,612.37085)"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4331"
|
||||
d="m -44.467884,1107.2152 0,17.7252 1.161165,3.7983 c 1.200046,4.2782 1.065706,4.1105 2.322331,0 l 1.161165,-3.7983 0,-17.7252 z"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4333"
|
||||
d="m -44.467884,1124.9404 4.644661,0"
|
||||
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.66930836;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
|
||||
d="m -42.239747,1107.2336 0,17.6813"
|
||||
id="path4335"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4337"
|
||||
d="m -43.348187,1128.4959 c 1.108441,-0.8952 1.929509,-0.3581 2.381097,0.045 -0.328428,1.1191 -1.190549,3.9391 -1.190549,3.9391 z"
|
||||
style="fill:#555753;stroke:#555753;stroke-width:0.66930836;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||
<rect
|
||||
ry="0.42804927"
|
||||
rx="0.37616169"
|
||||
y="1105.3309"
|
||||
x="-44.73621"
|
||||
height="1.8614606"
|
||||
width="5.1800866"
|
||||
id="rect4339"
|
||||
style="fill:#555753;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
<g
|
||||
id="layer1-2"
|
||||
transform="matrix(0.03334717,0,0,0.03334717,191.57984,885.59897)"
|
||||
style="fill:#555753;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90">
|
||||
<path
|
||||
id="path11522"
|
||||
style="fill:#555753;fill-opacity:1"
|
||||
d="m 264.62704,45.67985 56.31152,-101.021534 0.2677,36.946034 118.51291,-0.267671 c 21.1765,-2.244605 39.74272,-10.852596 53.18801,-27.040291 C 449.99593,42.074998 437.6363,104.18491 348.60347,104.22236 l -27.39721,0 -0.2677,41.05114 -56.31152,-99.59365 z M 128.9798,105.11479 C 65.618201,85.84639 36.055796,7.7860213 7.07577,-47.220709 c 13.282679,12.076484 38.139773,29.363022 52.577167,29.364467 27.689982,0.06456 55.380063,0.116317 83.070083,0.174562 l 83.88712,0 -0.26776,122.43949 -0.26771,0.35698 -97.09487,0 z M 2.5,-79.206629 42.995596,-161.8012 3.5060915,-183.49253 l 118.3343785,0 57.2039,103.877161 -38.79429,-23.228801 c -12.44295,26.27544 -24.88589,52.550878 -37.32884,78.826316 C 88.601045,-24.268303 74.280847,-24.518751 59.960649,-24.769199 32.037317,-31.279427 12.61125,-53.254123 2.5,-79.206629 z m 395.45406,53.939396 -52.29561,-96.380927 105.66215,-63.98618 51.13531,102.449252 c 1.54832,24.517706 -38.03694,58.635841 -62.6066,58.370427 l -41.89525,-0.452572 z M 88.64259,-250.78088 l 53.98405,-80.90589 c 52.35957,-19.50079 82.68955,22.59846 101.8318,49.13587 l -50.86768,97.63029 -104.94817,-65.86027 z m 204.54178,43.54987 c -10.85783,-25.59753 -25.36515,-54.87764 -43.50654,-80.336 -16.24176,-22.7925 -35.86597,-42.67852 -50.7326,-51.5631 l 136.53974,-0.26767 c 24.52088,2.20137 36.43539,16.49668 49.43976,36.05358 l 19.63307,34.53651 30.34224,-19.3654 -57.11457,101.73554 -123.15347,0.26768 38.55237,-21.06114 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:none;stroke:#555753;display:inline"
|
||||
d="m 219.92452,876.86347 1.33532,1.5307 -5.05101,4.4063 4.00584,4.592 5.05101,-4.4063 1.29423,1.4837 1.19091,-7.757 z"
|
||||
id="rect4425"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
|
||||
id="rect4564-9"
|
||||
width="10.935946"
|
||||
height="7.925663"
|
||||
x="71.833412"
|
||||
y="900.66992"
|
||||
rx="1.9019035"
|
||||
ry="2.3056474"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#555753;stroke-width:0.69802254;display:inline"
|
||||
id="rect4566-9"
|
||||
width="7.7661061"
|
||||
height="7.5413885"
|
||||
x="73.447395"
|
||||
y="896.3468"
|
||||
rx="1.9019035"
|
||||
ry="2.3056474"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
ry="2.3056474"
|
||||
rx="1.9019035"
|
||||
y="900.66992"
|
||||
x="92.208412"
|
||||
height="7.925663"
|
||||
width="10.935946"
|
||||
id="rect4506"
|
||||
style="fill:#555753;fill-opacity:1;stroke:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.69802254;display:inline"
|
||||
d="m 108.78126,899.75007 0,-1.0938 c 0,-1.2773 -0.8526,-2.3124 -1.90625,-2.3124 l -3.96875,0 c -1.05366,0 -1.90625,1.0351 -1.90625,2.3124 l 0,2.9376"
|
||||
id="rect4508"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cssssc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:#555753;stroke:none;display:inline"
|
||||
id="rect4514"
|
||||
width="19.512196"
|
||||
height="19.512196"
|
||||
x="150.24391"
|
||||
y="892.60608"
|
||||
rx="2.9268293"
|
||||
ry="2.9268293"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
ry="2.9268293"
|
||||
rx="2.9268293"
|
||||
y="892.60608"
|
||||
x="170.24391"
|
||||
height="19.512196"
|
||||
width="19.512196"
|
||||
id="rect4516"
|
||||
style="fill:#555753;stroke:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
ry="2.3056474"
|
||||
rx="1.9019035"
|
||||
y="900.66992"
|
||||
x="151.83342"
|
||||
height="7.925663"
|
||||
width="10.935946"
|
||||
id="rect4518"
|
||||
style="fill:#eeeeec;fill-opacity:1;stroke:none;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
ry="2.3056474"
|
||||
rx="1.9019035"
|
||||
y="896.3468"
|
||||
x="153.4474"
|
||||
height="7.5413885"
|
||||
width="7.7661061"
|
||||
id="rect4520"
|
||||
style="fill:none;stroke:#eeeeec;stroke-width:0.69802254;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:#eeeeec;fill-opacity:1;stroke:none;display:inline"
|
||||
id="rect4522"
|
||||
width="10.935946"
|
||||
height="7.925663"
|
||||
x="172.20842"
|
||||
y="900.66992"
|
||||
rx="1.9019035"
|
||||
ry="2.3056474"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
sodipodi:nodetypes="cssssc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4524"
|
||||
d="m 188.78127,899.75007 0,-1.0938 c 0,-1.2773 -0.85259,-2.3124 -1.90625,-2.3124 l -3.96875,0 c -1.05365,0 -1.90625,1.0351 -1.90625,2.3124 l 0,2.9376"
|
||||
style="fill:none;stroke:#eeeeec;stroke-width:0.69802254;display:inline"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
|
||||
d="m 61.2575,895.73577 c -0.85405,0.9453 -1.14575,2.2161 -0.88721,3.3884 l -8.17918,8.1791 c -0.14244,0.1425 -0.12201,0.3935 0.0507,0.5661 l 2.21807,2.2181 c 0.17268,0.1727 0.42791,0.1974 0.57035,0.055 l 8.13693,-8.1369 c 1.26093,0.3161 2.65155,-0.016 3.63762,-1.0013 0.66189,-0.6619 1.02334,-1.5095 1.09849,-2.3744 l -2.11666,2.1167 -3.2405,-0.8746 -0.87454,-3.2405 2.14201,-2.1419 c -0.88104,0.066 -1.74292,0.4331 -2.41663,1.1068 -0.0467,0.047 -0.0968,0.09 -0.13942,0.1395 z"
|
||||
id="path4529"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsssscscccccsc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#555753;stroke-width:0.80000001;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
d="m 201.14016,895.80807 -8.25003,8.25 -0.94202,3.5156 2.58822,2.5882 3.10935,-0.8332 10.50754,-10.5075 -2e-5,-2.3881 -1.69404,-1.694 -1.94401,0 -9.97205,9.972 3e-5,1.972 0.61101,0.611 1.73597,0 9.36804,-9.368"
|
||||
id="path3395"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccccccc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:#555753;stroke:none;display:inline"
|
||||
id="rect3397"
|
||||
width="19.512196"
|
||||
height="19.512196"
|
||||
x="210.24391"
|
||||
y="892.60608"
|
||||
rx="2.9268293"
|
||||
ry="2.9268293"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
style="fill:none;stroke:#eeeeec;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
|
||||
d="m 214.67284,895.14537 c 7.11789,-1.5098 3.04383,2.9586 9.72807,1.6024 0.48786,-0.099 0.94287,0.3982 0.94287,0.8928 0,0 0,6.7482 0,6.9956 0,0.2473 -0.31338,0.7228 -0.94287,0.8928 -6.70194,1.3208 -2.58353,-3.1887 -9.72807,-1.6024 -0.39933,0.17 -0.94286,-0.3982 -0.94286,-0.8928 l 0,-6.9955 c 0,-0.4947 0.45501,-0.776 0.94286,-0.8929 z"
|
||||
id="rect3409"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccscccssc"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<rect
|
||||
style="fill:none;stroke:#eeeeec;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline"
|
||||
id="rect4190"
|
||||
width="1.125"
|
||||
height="16.3125"
|
||||
x="212.62502"
|
||||
y="894.73718"
|
||||
ry="0.40000001"
|
||||
rx="0.40000001"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
transform="translate(-224.73743,701.76263)"
|
||||
d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
|
||||
sodipodi:ry="7.4246211"
|
||||
sodipodi:rx="7.4246211"
|
||||
sodipodi:cy="220.62782"
|
||||
sodipodi:cx="284.78726"
|
||||
id="path4020"
|
||||
style="fill:none;stroke:#555753;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#555753;fill-opacity:1;stroke:#555753;stroke-width:1.62554049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path4022"
|
||||
sodipodi:cx="284.78726"
|
||||
sodipodi:cy="220.62782"
|
||||
sodipodi:rx="7.4246211"
|
||||
sodipodi:ry="7.4246211"
|
||||
d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
|
||||
transform="matrix(0.61517998,0,0,0.61517998,-115.14559,786.66463)"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-ydpi="90" />
|
||||
<path
|
||||
inkscape:export-ydpi="90"
|
||||
inkscape:export-xdpi="90"
|
||||
inkscape:export-filename="/home/fabio/public_html/f9k-tre/icons2.png"
|
||||
sodipodi:type="arc"
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline"
|
||||
id="path4024"
|
||||
sodipodi:cx="284.78726"
|
||||
sodipodi:cy="220.62782"
|
||||
sodipodi:rx="7.4246211"
|
||||
sodipodi:ry="7.4246211"
|
||||
d="m 292.21188,220.62782 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
|
||||
transform="translate(-204.73743,701.76269)" />
|
||||
<g
|
||||
inkscape:label="#g3852"
|
||||
style="stroke:#888a85;display:inline;filter:url(#filter4064)"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-201.41936,955.6356)"
|
||||
id="g3139">
|
||||
<rect
|
||||
ry="6"
|
||||
rx="6"
|
||||
y="18.790752"
|
||||
x="470.35715"
|
||||
height="44.285713"
|
||||
width="44.285713"
|
||||
id="rect3141"
|
||||
style="fill:none;stroke:#888a85;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</g>
|
||||
<g
|
||||
id="g3145"
|
||||
transform="matrix(0.43114968,0,0,0.43114968,-179.41936,955.6356)"
|
||||
style="stroke:#d3d7cf;display:inline;filter:url(#filter4064)"
|
||||
inkscape:label="#g3852">
|
||||
<rect
|
||||
style="fill:none;stroke:#d3d7cf;stroke-width:2.0535686;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3147"
|
||||
width="44.285713"
|
||||
height="44.285713"
|
||||
x="470.35715"
|
||||
y="18.790752"
|
||||
rx="6"
|
||||
ry="6" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:17.09149551px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#888a85;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold"
|
||||
x="5.6234956"
|
||||
y="979.64215"
|
||||
id="text3151"
|
||||
sodipodi:linespacing="100%"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan3153"
|
||||
x="5.6234956"
|
||||
y="979.64215">?</tspan></text>
|
||||
<text
|
||||
sodipodi:linespacing="100%"
|
||||
id="text3155"
|
||||
y="979.64215"
|
||||
x="27.623495"
|
||||
style="font-size:17.09149551000000145px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d3d7cf;fill-opacity:1;stroke:none;font-family:FreeSans;-inkscape-font-specification:FreeSans Bold"
|
||||
xml:space="preserve"><tspan
|
||||
y="979.64215"
|
||||
x="27.623495"
|
||||
id="tspan3157"
|
||||
sodipodi:role="line">?</tspan></text>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 81 KiB |
|
|
@ -1,251 +0,0 @@
|
|||
|
||||
<script language="javascript" type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
|
||||
<script language="javascript" type="text/javascript">
|
||||
|
||||
var editor=false;
|
||||
var textlen = 0;
|
||||
|
||||
function initEditor(cb) {
|
||||
if (editor==false) {
|
||||
$("#profile-jot-text-loading").show();
|
||||
tinyMCE.init({
|
||||
theme : "advanced",
|
||||
mode : "specific_textareas",
|
||||
editor_selector: /(profile-jot-text|prvmail-text)/,
|
||||
plugins : "bbcode,paste,fullscreen,autoresize",
|
||||
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code,fullscreen",
|
||||
theme_advanced_buttons2 : "",
|
||||
theme_advanced_buttons3 : "",
|
||||
theme_advanced_toolbar_location : "top",
|
||||
theme_advanced_toolbar_align : "center",
|
||||
theme_advanced_blockformats : "blockquote,code",
|
||||
//theme_advanced_resizing : true,
|
||||
//theme_advanced_statusbar_location : "bottom",
|
||||
paste_text_sticky : true,
|
||||
entity_encoding : "raw",
|
||||
add_unload_trigger : false,
|
||||
remove_linebreaks : false,
|
||||
force_p_newlines : false,
|
||||
force_br_newlines : true,
|
||||
forced_root_block : '',
|
||||
convert_urls: false,
|
||||
content_css: "$baseurl/view/custom_tinymce.css",
|
||||
theme_advanced_path : false,
|
||||
setup : function(ed) {
|
||||
//Character count
|
||||
ed.onKeyUp.add(function(ed, e) {
|
||||
var txt = tinyMCE.activeEditor.getContent();
|
||||
textlen = txt.length;
|
||||
if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) {
|
||||
$('#profile-jot-desc').html(ispublic);
|
||||
}
|
||||
else {
|
||||
$('#profile-jot-desc').html(' ');
|
||||
}
|
||||
|
||||
if(textlen <= 140) {
|
||||
$('#character-counter').removeClass('red');
|
||||
$('#character-counter').removeClass('orange');
|
||||
$('#character-counter').addClass('grey');
|
||||
}
|
||||
if((textlen > 140) && (textlen <= 420)) {
|
||||
$('#character-counter').removeClass('grey');
|
||||
$('#character-counter').removeClass('red');
|
||||
$('#character-counter').addClass('orange');
|
||||
}
|
||||
if(textlen > 420) {
|
||||
$('#character-counter').removeClass('grey');
|
||||
$('#character-counter').removeClass('orange');
|
||||
$('#character-counter').addClass('red');
|
||||
}
|
||||
$('#character-counter').text(textlen);
|
||||
});
|
||||
ed.onInit.add(function(ed) {
|
||||
ed.pasteAsPlainText = true;
|
||||
$("#profile-jot-text-loading").hide();
|
||||
$("#profile-jot-submit-wrapper").show();
|
||||
$("#profile-upload-wrapper").show();
|
||||
$("#profile-attach-wrapper").show();
|
||||
$("#profile-link-wrapper").show();
|
||||
$("#profile-youtube-wrapper").show();
|
||||
$("#profile-video-wrapper").show();
|
||||
$("#profile-audio-wrapper").show();
|
||||
$("#profile-location-wrapper").show();
|
||||
$("#profile-nolocation-wrapper").show();
|
||||
$("#profile-title-wrapper").show();
|
||||
$("#profile-jot-plugin-wrapper").show();
|
||||
$("#character-counter").show();
|
||||
if (typeof cb!="undefined") cb();
|
||||
});
|
||||
}
|
||||
});
|
||||
editor = true;
|
||||
// setup acl popup
|
||||
$("a#jot-perms-icon").fancybox({
|
||||
'transitionIn' : 'none',
|
||||
'transitionOut' : 'none'
|
||||
});
|
||||
} else {
|
||||
if (typeof cb!="undefined") cb();
|
||||
}
|
||||
} // initEditor
|
||||
</script>
|
||||
<script type="text/javascript" src="js/ajaxupload.js" ></script>
|
||||
<script>
|
||||
var ispublic = '$ispublic';
|
||||
$(document).ready(function() {
|
||||
/* enable tinymce on focus */
|
||||
$("#profile-jot-text").focus(function(){
|
||||
if (editor) return;
|
||||
$(this).val("");
|
||||
initEditor();
|
||||
});
|
||||
var uploader = new window.AjaxUpload(
|
||||
'wall-image-upload',
|
||||
{ action: 'wall_upload/$nickname',
|
||||
name: 'userfile',
|
||||
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
||||
onComplete: function(file,response) {
|
||||
tinyMCE.execCommand('mceInsertRawHTML',false,response);
|
||||
$('#profile-rotator').hide();
|
||||
}
|
||||
}
|
||||
);
|
||||
var file_uploader = new window.AjaxUpload(
|
||||
'wall-file-upload',
|
||||
{ action: 'wall_attach/$nickname',
|
||||
name: 'userfile',
|
||||
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
||||
onComplete: function(file,response) {
|
||||
tinyMCE.execCommand('mceInsertRawHTML',false,response);
|
||||
$('#profile-rotator').hide();
|
||||
}
|
||||
}
|
||||
);
|
||||
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
||||
var selstr;
|
||||
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
|
||||
selstr = $(this).text();
|
||||
$('#jot-perms-icon').removeClass('unlock').addClass('lock');
|
||||
$('#jot-public').hide();
|
||||
$('.profile-jot-net input').attr('disabled', 'disabled');
|
||||
});
|
||||
if(selstr == null) {
|
||||
$('#jot-perms-icon').removeClass('lock').addClass('unlock');
|
||||
$('#jot-public').show();
|
||||
$('.profile-jot-net input').attr('disabled', false);
|
||||
}
|
||||
|
||||
}).trigger('change');
|
||||
|
||||
});
|
||||
|
||||
function deleteCheckedItems() {
|
||||
var checkedstr = '';
|
||||
|
||||
$('.item-select').each( function() {
|
||||
if($(this).is(':checked')) {
|
||||
if(checkedstr.length != 0) {
|
||||
checkedstr = checkedstr + ',' + $(this).val();
|
||||
}
|
||||
else {
|
||||
checkedstr = $(this).val();
|
||||
}
|
||||
}
|
||||
});
|
||||
$.post('item', { dropitems: checkedstr }, function(data) {
|
||||
window.location.reload();
|
||||
});
|
||||
}
|
||||
|
||||
function jotGetLink() {
|
||||
reply = prompt("$linkurl");
|
||||
if(reply && reply.length) {
|
||||
reply = bin2hex(reply);
|
||||
$('#profile-rotator').show();
|
||||
$.get('parse_url?url=' + reply, function(data) {
|
||||
tinyMCE.execCommand('mceInsertRawHTML',false,data);
|
||||
$('#profile-rotator').hide();
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function jotGetVideo() {
|
||||
reply = prompt("$utubeurl");
|
||||
if(reply && reply.length) {
|
||||
tinyMCE.execCommand('mceInsertRawHTML',false,'[youtube]' + reply + '[/youtube]');
|
||||
}
|
||||
}
|
||||
|
||||
function jotVideoURL() {
|
||||
reply = prompt("$vidurl");
|
||||
if(reply && reply.length) {
|
||||
tinyMCE.execCommand('mceInsertRawHTML',false,'[video]' + reply + '[/video]');
|
||||
}
|
||||
}
|
||||
|
||||
function jotAudioURL() {
|
||||
reply = prompt("$audurl");
|
||||
if(reply && reply.length) {
|
||||
tinyMCE.execCommand('mceInsertRawHTML',false,'[audio]' + reply + '[/audio]');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function jotGetLocation() {
|
||||
reply = prompt("$whereareu", $('#jot-location').val());
|
||||
if(reply && reply.length) {
|
||||
$('#jot-location').val(reply);
|
||||
}
|
||||
}
|
||||
|
||||
function jotTitle() {
|
||||
reply = prompt("$title", $('#jot-title').val());
|
||||
if(reply && reply.length) {
|
||||
$('#jot-title').val(reply);
|
||||
}
|
||||
}
|
||||
|
||||
function jotShare(id) {
|
||||
$('#like-rotator-' + id).show();
|
||||
$.get('share/' + id, function(data) {
|
||||
if (!editor) $("#profile-jot-text").val("");
|
||||
initEditor(function(){
|
||||
tinyMCE.execCommand('mceInsertRawHTML',false,data);
|
||||
$('#like-rotator-' + id).hide();
|
||||
$(window).scrollTop(0);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function linkdropper(event) {
|
||||
var linkFound = event.dataTransfer.types.contains("text/uri-list");
|
||||
if(linkFound)
|
||||
event.preventDefault();
|
||||
}
|
||||
|
||||
function linkdrop(event) {
|
||||
var reply = event.dataTransfer.getData("text/uri-list");
|
||||
event.target.textContent = reply;
|
||||
event.preventDefault();
|
||||
if(reply && reply.length) {
|
||||
$('#profile-rotator').show();
|
||||
$.get('parse_url?url=' + reply, function(data) {
|
||||
if (!editor) $("#profile-jot-text").val("");
|
||||
initEditor(function(){
|
||||
tinyMCE.execCommand('mceInsertRawHTML',false,data);
|
||||
$('#profile-rotator').hide();
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function jotClearLocation() {
|
||||
$('#jot-coord').val('');
|
||||
$('#profile-nolocation-wrapper').hide();
|
||||
}
|
||||
|
||||
$geotag
|
||||
|
||||
</script>
|
||||
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
|
||||
<div id="profile-jot-wrapper" >
|
||||
<div id="profile-jot-banner-wrapper">
|
||||
<div id="profile-jot-desc" > </div>
|
||||
<div id="character-counter" class="grey" style="display: none;">0</div>
|
||||
<div id="profile-rotator-wrapper" style="display: $visitor;" >
|
||||
<img id="profile-rotator" src="images/rotator.gif" alt="$wait" title="$wait" style="display:none;" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form id="profile-jot-form" action="$action" method="post" >
|
||||
<input type="hidden" name="type" value="wall" />
|
||||
<input type="hidden" name="profile_uid" value="$profile_uid" />
|
||||
<input type="hidden" name="return" value="$return_path" />
|
||||
<input type="hidden" name="location" id="jot-location" value="$defloc" />
|
||||
<input type="hidden" name="coord" id="jot-coord" value="" />
|
||||
<input type="hidden" name="title" id="jot-title" value="" />
|
||||
<input type="hidden" name="post_id" value="$post_id" />
|
||||
|
||||
<img id="profile-jot-text-loading" src="images/rotator.gif" alt="$wait" title="$wait" style="display: none;" />
|
||||
<textarea rows="5" cols="64" class="profile-jot-text" id="profile-jot-text" name="body" >{{ if $content }}$content{{ else }}$share{{ endif }}</textarea>
|
||||
{{ if $content }}<script>initEditor();</script>{{ endif }}
|
||||
|
||||
<div id="profile-upload-wrapper" class="jot-tool" style="display: none;" >
|
||||
<div id="wall-image-upload-div" ><a onclick="return false;" id="wall-image-upload" class="icon border camera" title="$upload"></a></div>
|
||||
</div>
|
||||
<div id="profile-attach-wrapper" class="jot-tool" style="display: none;" >
|
||||
<div id="wall-file-upload-div" ><a href="#" onclick="return false;" id="wall-file-upload" class="icon border attach" title="$attach"></a></div>
|
||||
</div>
|
||||
<div id="profile-link-wrapper" class="jot-tool" style="display: none;" ondragenter="linkdropper(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" >
|
||||
<a id="profile-link" class="icon border link" title="$weblink" ondragenter="return linkdropper(event);" ondragover="return linkdropper(event);" ondrop="linkdrop(event);" onclick="jotGetLink(); return false;"></a>
|
||||
</div>
|
||||
<div id="profile-youtube-wrapper" class="jot-tool" style="display: none;" >
|
||||
<a id="profile-youtube" class="icon border youtube" title="$youtube" onclick="jotGetVideo(); return false;"></a>
|
||||
</div>
|
||||
<div id="profile-video-wrapper" class="jot-tool" style="display: none;" >
|
||||
<a id="profile-video" class="icon border video" title="$video" onclick="jotVideoURL(); return false;"></a>
|
||||
</div>
|
||||
<div id="profile-audio-wrapper" class="jot-tool" style="display: none;" >
|
||||
<a id="profile-audio" class="icon border audio" title="$audio" onclick="jotAudioURL(); return false;"></a>
|
||||
</div>
|
||||
<div id="profile-location-wrapper" class="jot-tool" style="display: none;" >
|
||||
<a id="profile-location" class="icon border globe" title="$setloc" onclick="jotGetLocation(); return false;"></a>
|
||||
</div>
|
||||
<div id="profile-nolocation-wrapper" class="jot-tool" style="display: none;" >
|
||||
<a id="profile-nolocation" class="icon border noglobe" title="$noloc" onclick="jotClearLocation(); return false;"></a>
|
||||
</div>
|
||||
<div id="profile-title-wrapper" class="jot-tool" style="display: none;" >
|
||||
<a id="profile-title" class="icon border article" title="$title" onclick="jotTitle(); return false;"></a>
|
||||
</div>
|
||||
|
||||
<div id="profile-jot-submit-wrapper" style="display:none;padding-left: 400px;">
|
||||
<input type="submit" id="profile-jot-submit" name="submit" value="$share" />
|
||||
<div id="profile-jot-perms" class="profile-jot-perms" style="display: $visitor;" >
|
||||
<a href="#profile-jot-acl-wrapper" id="jot-perms-icon" class="icon $lockstate sharePerms" title="$permset"></a>$bang</div>
|
||||
</div>
|
||||
|
||||
<div id="profile-jot-plugin-wrapper" style="display: none;">
|
||||
$jotplugins
|
||||
</div>
|
||||
<div id="profile-jot-tools-end"></div>
|
||||
|
||||
<div style="display: none;">
|
||||
<div id="profile-jot-acl-wrapper" style="width:auto;height:auto;overflow:auto;">
|
||||
$acl
|
||||
<hr style="clear:both"/>
|
||||
<div id="profile-jot-email-label">$emailcc</div><input type="text" name="emailcc" id="profile-jot-email" title="$emtitle" />
|
||||
<div id="profile-jot-email-end"></div>
|
||||
$jotnets
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="profile-jot-end"></div>
|
||||
</form>
|
||||
</div>
|
||||
|
Before Width: | Height: | Size: 237 B |
|
|
@ -1,25 +0,0 @@
|
|||
|
||||
<form action="" method="post" >
|
||||
<input type="hidden" name="auth-params" value="login" />
|
||||
<div id="login-name-wrapper">
|
||||
<label for="login-name" id="label-login-name">$namelabel</label>
|
||||
<input type="text" maxlength="60" name="openid_url" class="$classname" id="login-name" value="" />
|
||||
</div>
|
||||
<div id="login-name-end" ></div>
|
||||
<div id="login-password-wrapper">
|
||||
<label for="login-password" id="label-login-password">$passlabel</label>
|
||||
<input type="password" maxlength="60" name="password" id="login-password" value="" />
|
||||
</div>
|
||||
<div id="login-password-end"></div>
|
||||
<div id="login-submit-wrapper" >
|
||||
<input type="submit" name="submit" id="login-submit-button" value="$login" />
|
||||
<a href="lostpass" title="$lostpass" id="lost-password-link" >$lostlink</a>
|
||||
</div>
|
||||
<div id="login-submit-end"></div>
|
||||
<div id="login-extra-links">
|
||||
<div id="login-extra-filler"> </div>
|
||||
$register_html
|
||||
</div>
|
||||
<div id="login-extra-end"></div>
|
||||
</form>
|
||||
|
||||
|
Before Width: | Height: | Size: 236 B |
|
|
@ -1,7 +0,0 @@
|
|||
<h3>$messages</h3>
|
||||
|
||||
<ul class="tabs-wrapper">
|
||||
<li><a href="message" class="tabs">$inbox</a></li>
|
||||
<li><a href="message/sent" class="tabs">$outbox</a></li>
|
||||
<li><a href="message/new" class="tabs">$new</a></li>
|
||||
</ul>
|
||||
|
Before Width: | Height: | Size: 276 B |
|
|
@ -1,55 +0,0 @@
|
|||
<nav>
|
||||
$langselector
|
||||
|
||||
<span id="banner">$banner</span>
|
||||
|
||||
<div id="notifications">
|
||||
{{ if $nav.network }}<a id="net-update" class="nav-ajax-update" href="$nav.network.0" title="$nav.network.1"></a>{{ endif }}
|
||||
{{ if $nav.home }}<a id="home-update" class="nav-ajax-update" href="$nav.home.0" title="$nav.home.1"></a>{{ endif }}
|
||||
{{ if $nav.notifications }}<a id="notify-update" class="nav-ajax-update" href="$nav.notifications.0" title="$nav.notifications.1"></a>{{ endif }}
|
||||
{{ if $nav.messages }}<a id="mail-update" class="nav-ajax-update" href="$nav.messages.0" title="$nav.messages.1"></a>{{ endif }}
|
||||
</div>
|
||||
|
||||
<div id="user-menu" >
|
||||
<a id="user-menu-label" onclick="openClose('user-menu-popup'); return false" href="$nav.home.0">$sitelocation</a>
|
||||
|
||||
<ul id="user-menu-popup"
|
||||
onmouseover="if (typeof tmenu != 'undefined') clearTimeout(tmenu); openMenu('user-menu-popup')"
|
||||
onmouseout="tmenu=setTimeout('closeMenu(\'user-menu-popup\');',200)">
|
||||
|
||||
{{ if $nav.register }}<li><a id="nav-register-link" class="nav-commlink $nav.register.2" href="$nav.register.0" title="$nav.register.1">$nav.register.1</a></li>{{ endif }}
|
||||
|
||||
{{ if $nav.home }}<li><a id="nav-home-link" class="nav-commlink $nav.home.2" href="$nav.home.0">$nav.home.1</a></li>{{ endif }}
|
||||
|
||||
{{ if $nav.network }}<li><a id="nav-network-link" class="nav-commlink $nav.network.2" href="$nav.network.0">$nav.network.1</a></li>{{ endif }}
|
||||
|
||||
{{ if $nav.community }}
|
||||
<li><a id="nav-community-link" class="nav-commlink $nav.community.2" href="$nav.community.0" title="$nav.community.3" >$nav.community.1</a></li>
|
||||
{{ endif }}
|
||||
|
||||
<li><a id="nav-search-link" class="nav-link $nav.search.2" href="$nav.search.0" title="$nav.search.1">$nav.search.1</a></li>
|
||||
<li><a id="nav-directory-link" class="nav-link $nav.directory.2" href="$nav.directory.0" title="$nav.directory.1">$nav.directory.1</a></li>
|
||||
{{ if $nav.apps }}<li><a id="nav-apps-link" class="nav-link $nav.apps.2" href="$nav.apps.0" title="$nav.apps.1">$nav.apps.1</a></li>{{ endif }}
|
||||
|
||||
{{ if $nav.notifications }}<li><a id="nav-notify-link" class="nav-commlink nav-sep $nav.notifications.2" href="$nav.notifications.0">$nav.notifications.1</a></li>{{ endif }}
|
||||
{{ if $nav.messages }}<li><a id="nav-messages-link" class="nav-commlink $nav.messages.2" href="$nav.messages.0">$nav.messages.1</a></li>{{ endif }}
|
||||
{{ if $nav.contacts }}<li><a id="nav-contacts-link" class="nav-commlink $nav.contacts.2" href="$nav.contacts.0">$nav.contacts.1</a></li>{{ endif }}
|
||||
|
||||
{{ if $nav.profiles }}<li><a id="nav-profiles-link" class="nav-commlink nav-sep $nav.profiles.2" href="$nav.profiles.0">$nav.profiles.1</a></li>{{ endif }}
|
||||
{{ if $nav.settings }}<li><a id="nav-settings-link" class="nav-commlink $nav.settings.2" href="$nav.settings.0">$nav.settings.1</a></li>{{ endif }}
|
||||
|
||||
{{ if $nav.manage }}<li><a id="nav-manage-link" class="nav-commlink $nav.manage.2" href="$nav.manage.0">$nav.manage.1</a></li>{{ endif }}
|
||||
|
||||
{{ if $nav.admin }}<li><a id="nav-admin-link" class="nav-commlink $nav.admin.2" href="$nav.admin.0">$nav.admin.1</a></li>{{ endif }}
|
||||
|
||||
<li><a id="nav-help-link" class="nav-link $nav.help.2" href="$nav.help.0" title="$nav.help.1">$nav.help.1</a></li>
|
||||
|
||||
{{ if $nav.login }}<li><a id="nav-login-link" class="nav-link $nav.login.2" href="$nav.login.0" title="$nav.login.1">$nav.login.1</a></li> {{ endif }}
|
||||
{{ if $nav.logout }}<li><a id="nav-logout-link" class="nav-commlink nav-sep $nav.logout.2" href="$nav.logout.0">$nav.logout.1</a></li> {{ endif }}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</nav>
|
||||
|
||||
|
Before Width: | Height: | Size: 891 B |
|
Before Width: | Height: | Size: 6.1 KiB |
|
|
@ -1,40 +0,0 @@
|
|||
<div id="live-display"></div>
|
||||
<h3><a href="$album.0">$album.1</a></h3>
|
||||
|
||||
<div id="photo-edit-link-wrap">
|
||||
{{ if $tools }}
|
||||
<a id="photo-edit-link" href="$tools.edit.0">$tools.edit.1</a>
|
||||
-
|
||||
<a id="photo-toprofile-link" href="$tools.profile.0">$tools.profile.1</a>
|
||||
{{ endif }}
|
||||
{{ if $lock }} - <img src="images/lock_icon.gif" class="lockview" alt="$lock" onclick="lockview(event,'photo$id');" /> {{ endif }}
|
||||
</div>
|
||||
|
||||
<div id="photo-photo">
|
||||
{{ if $prevlink }}<div id="photo-prev-link"><a href="$prevlink.0">$prevlink.1</a></div>{{ endif }}
|
||||
<a href="$photo.href" title="$photo.title"><img src="$photo.src" /></a>
|
||||
{{ if $nextlink }}<div id="photo-next-link"><a href="$nextlink.0">$nextlink.1</a></div>{{ endif }}
|
||||
</div>
|
||||
|
||||
<div id="photo-photo-end"></div>
|
||||
<div id="photo-caption" >$desc</div>
|
||||
{{ if $tags }}
|
||||
<div id="in-this-photo-text">$tags.0</div>
|
||||
<div id="in-this-photo">$tags.1</div>
|
||||
{{ endif }}
|
||||
{{ if $tags.2 }}<div id="tag-remove"><a href="$tags.2">$tags.3</a></div>{{ endif }}
|
||||
|
||||
{{ if $edit }}$edit{{ endif }}
|
||||
|
||||
{{ if $likebuttons }}
|
||||
<div id="photo-like-div">
|
||||
$likebuttons
|
||||
$like
|
||||
$dislike
|
||||
</div>
|
||||
{{ endif }}
|
||||
|
||||
$comments
|
||||
|
||||
$paginate
|
||||
|
||||
|
Before Width: | Height: | Size: 766 B |
|
Before Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 853 B |
|
|
@ -1,11 +0,0 @@
|
|||
|
||||
<div class="profile-listing" >
|
||||
<div class="profile-listing-photo-wrapper" >
|
||||
<a href="profiles/$id" class="profile-listing-edit-link"><img class="profile-listing-photo" id="profile-listing-photo-$id" src="$photo" alt="$alt" /></a>
|
||||
</div>
|
||||
<div class="profile-listing-photo-end"></div>
|
||||
<div class="profile-listing-name" id="profile-listing-name-$id"><a href="profiles/$id" class="profile-listing-edit-link" >$profile_name</a></div>
|
||||
<div class='profile-visible'>$visible</div>
|
||||
</div>
|
||||
<div class="profile-listing-end"></div>
|
||||
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
<div class="tabs-wrapper" >
|
||||
<a href="$url" id="profile-tab-status-link" class="tabs {{if $activetab==posts}}active{{endif}}" >$status</a>
|
||||
<a href="$url?tab=profile" id="profile-tab-profile-link" class="tabs {{if $activetab==profile}}active{{endif}}" >$profile</a>
|
||||
<a href="$phototab" id="profile-tab-photos-link" class="tabs {{if $activetab==photos}}active{{endif}}" >$photos</a>
|
||||
{{ if $events }}<a href="events" id="profile-tab-events-link" class="tabs {{if $activetab==events}}active{{endif}}" >$events</a>{{ endif }}
|
||||
{{ if $notes }}<a href="notes" id="profile-tab-notes-link" class="tabs {{if $activetab==notes}}active{{endif}}" >$notes</a>{{ endif }}
|
||||
<div class="tabs-end"></div>
|
||||
</div>
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
<div class="vcard">
|
||||
<div class="fn label">$profile.name</div>
|
||||
|
||||
|
||||
{{ if $pdesc }}<div class="title">$profile.pdesc</div>{{ endif }}
|
||||
<div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="$profile.photo" alt="$profile.name"></div>
|
||||
|
||||
|
||||
|
||||
{{ if $location }}
|
||||
<dl class="location"><dt class="location-label">$location</dt>
|
||||
<dd class="adr">
|
||||
{{ if $profile.address }}<div class="street-address">$profile.address</div>{{ endif }}
|
||||
<span class="city-state-zip">
|
||||
<span class="locality">$profile.locality</span>{{ if $profile.locality }}, {{ endif }}
|
||||
<span class="region">$profile.region</span>
|
||||
<span class="postal-code">$profile.postal-code</span>
|
||||
</span>
|
||||
{{ if $profile.country-name }}<span class="country-name">$profile.country-name</span>{{ endif }}
|
||||
</dd>
|
||||
</dl>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $gender }}<dl class="mf"><dt class="gender-label">$gender</dt> <dd class="x-gender">$profile.gender</dd></dl>{{ endif }}
|
||||
|
||||
{{ if $profile.pubkey }}<div class="key" style="display:none;">$profile.pubkey</div>{{ endif }}
|
||||
|
||||
{{ if $marital }}<dl class="marital"><dt class="marital-label"><span class="heart">♥</span>$marital</dt><dd class="marital-text">$profile.marital</dd></dl>{{ endif }}
|
||||
|
||||
{{ if $homepage }}<dl class="homepage"><dt class="homepage-label">$homepage</dt><dd class="homepage-url"><a href="$profile.homepage" target="external-link">$profile.homepage</a></dd></dl>{{ endif }}
|
||||
|
||||
{{ inc diaspora_vcard.tpl }}{{ endinc }}
|
||||
|
||||
<div id="profile-extra-links">
|
||||
<ul>
|
||||
{{ if $connect }}
|
||||
<li><a id="dfrn-request-link" href="dfrn_request/$profile.nickname">$connect</a></li>
|
||||
{{ endif }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
$contact_block
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 808 B |
|
|
@ -1,48 +0,0 @@
|
|||
<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
|
||||
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$id"
|
||||
onmouseover="if (typeof t$id != 'undefined') clearTimeout(t$id); openMenu('wall-item-photo-menu-button-$id')"
|
||||
onmouseout="t$id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$id\'); closeMenu(\'wall-item-photo-menu-$id\');',200)">
|
||||
<a href="$profile_url" title="$linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" style="height: 80px; width: 80px;" alt="$name" /></a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$id">
|
||||
<ul>
|
||||
$item_photo_menu
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-photo-end"></div>
|
||||
<div class="wall-item-location" id="wall-item-location-$id">{{ if $location }}<span class="icon globe"></span>$location {{ endif }}</div>
|
||||
</div>
|
||||
<div class="wall-item-lock-wrapper">
|
||||
{{ if $lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$lock" onclick="lockview(event,$id);" /></div>
|
||||
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
|
||||
</div>
|
||||
<div class="wall-item-tools" id="wall-item-tools-$id">
|
||||
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$id" >
|
||||
{{ if $drop.dropping }}<a href="item/drop/$id" onclick="return confirmDelete();" class="icon drophide" title="$drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
</div>
|
||||
{{ if $drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$drop.select" class="item-select" name="itemselected[]" value="$id" />{{ endif }}
|
||||
<div class="wall-item-delete-end"></div>
|
||||
</div>
|
||||
<div class="wall-item-content" id="wall-item-content-$id" >
|
||||
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
||||
<div class="wall-item-title-end"></div>
|
||||
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
||||
</div>
|
||||
<div class="wall-item-author">
|
||||
<a href="$profile_url" title="$linktitle" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$id">$ago</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="wall-item-conv" id="wall-item-conv-$id" >
|
||||
{{ if $conv }}<a href='$conv.href' id='context-$id' title='$conv.title'>$conv.title</a>{{ endif }}
|
||||
</div>
|
||||
<div class="wall-item-wrapper-end"></div>
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$indent" ></div>
|
||||
|
Before Width: | Height: | Size: 2.1 KiB |
|
|
@ -1,7 +1,33 @@
|
|||
@import url('../testbubble/style.css');
|
||||
|
||||
.icon {
|
||||
background-image: url('dbicons.png');
|
||||
}
|
||||
|
||||
body {
|
||||
background: #000000;
|
||||
color: #dddddd;
|
||||
}
|
||||
|
||||
.info-message {
|
||||
color: #444444;
|
||||
}
|
||||
|
||||
#id_openid_url {
|
||||
background: url(../testbubble/login-bg.gif) no-repeat #ffffff;
|
||||
background-position: 0 50%;
|
||||
padding-left: 18px;
|
||||
width: 385px;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.vevent, .eventcal {
|
||||
color: #000000;
|
||||
}
|
||||
.event-list-date {
|
||||
color: #DDDDDD;
|
||||
}
|
||||
|
||||
.fortunate {
|
||||
color: #8888FF !important;
|
||||
}
|
||||
4
view/theme/darkbubble/theme.php
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<?php
|
||||
$a->theme_info = array(
|
||||
'extends' => 'testbubble',
|
||||
);
|
||||
|
Before Width: | Height: | Size: 664 B |
|
|
@ -1,75 +0,0 @@
|
|||
<!-- test -->
|
||||
<div class="wall-item-outside-wrapper$indent" id="wall-item-outside-wrapper-$id" >
|
||||
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
||||
<div class="wall-item-info" id="wall-item-info-$id">
|
||||
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$id"
|
||||
onmouseover="if (typeof t$id != 'undefined') clearTimeout(t$id); openMenu('wall-item-photo-menu-button-$id')"
|
||||
onmouseout="t$id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$id\'); closeMenu(\'wall-item-photo-menu-$id\');',200)">
|
||||
<a href="$profile_url" title="$linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" style="height: 80px; width: 80px;" alt="$name" />
|
||||
</a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$id">
|
||||
<ul>
|
||||
$item_photo_menu
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-photo-end"></div>
|
||||
<div class="wall-item-location" id="wall-item-location-$id">{{ if $location }}<span class="icon globe"></span>$location {{ endif }}</div>
|
||||
</div>
|
||||
<div class="wall-item-lock-wrapper">
|
||||
{{ if $lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$lock" onclick="lockview(event,$id);" /></div>
|
||||
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
|
||||
</div>
|
||||
<div class="wall-item-content" id="wall-item-content-$id" >
|
||||
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
||||
<div class="wall-item-title-end"></div>
|
||||
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
||||
</div>
|
||||
|
||||
<div class="wall-item-tools" id="wall-item-tools-$id">
|
||||
{{ if $vote }}
|
||||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$id">
|
||||
<a href="#" class="icon like" title="$vote.like.0" onclick="dolike($id,'like'); return false"></a>
|
||||
<a href="#" class="icon dislike" title="$vote.dislike.0" onclick="dolike($id,'dislike'); return false"></a>
|
||||
{{ if $vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title=""$vote.share.0" onclick="jotShare($id); return false"></a>{{ endif }}
|
||||
<img id="like-rotator-$id" class="like-rotator" src="images/rotator.gif" alt="$wait" title="$wait" style="display: none;" />
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ if $plink }}
|
||||
<div class="wall-item-links-wrapper"><a href="$plink.href" title="$plink.title" target="external-link" class="icon remote-link"></a></div>
|
||||
{{ endif }}
|
||||
{{ if $edpost }}
|
||||
<a class="editpost icon pencil" href="$edpost.0" title="$edpost.1"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $star }}
|
||||
<a href="#" id="starred-$id" onclick="dostar($id); return false;" class="star-item icon $isstarred" title="$star.toggle"></a>
|
||||
{{ endif }}
|
||||
|
||||
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$id" >
|
||||
{{ if $drop.dropping }}<a href="item/drop/$id" onclick="return confirmDelete();" class="icon drophide" title="$drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
</div>
|
||||
{{ if $drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$drop.select" class="item-select" name="itemselected[]" value="$id" />{{ endif }}
|
||||
<div class="wall-item-delete-end"></div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="wall-item-author">
|
||||
<a href="$profile_url" title="$linktitle" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$id">$ago</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-wrapper-end"></div>
|
||||
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
||||
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
||||
<div class="wall-item-comment-wrapper" >
|
||||
$comment
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$indent" ></div>
|
||||
|
||||
|
|
@ -1,74 +0,0 @@
|
|||
<div class="wall-item-outside-wrapper$indent wallwall" id="wall-item-outside-wrapper-$id" >
|
||||
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$id">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$id" >
|
||||
<a href="$owner_url" title="$olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
||||
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" style="height: 80px; width: 80px;" alt="$owner_name" /></a>
|
||||
</div>
|
||||
<div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$wall" /></div>
|
||||
<div class="wall-item-photo-wrapper wwfrom" id="wall-item-photo-wrapper-$id"
|
||||
onmouseover="if (typeof t$id != 'undefined') clearTimeout(t$id); openMenu('wall-item-photo-menu-button-$id')"
|
||||
onmouseout="t$id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$id\'); closeMenu(\'wall-item-photo-menu-$id\');',200)">
|
||||
<a href="$profile_url" title="$linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" style="height: 80px; width: 80px;" alt="$name" /></a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$id">
|
||||
<ul>
|
||||
$item_photo_menu
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="wall-item-photo-end"></div>
|
||||
<div class="wall-item-location" id="wall-item-location-$id">{{ if $location }}<span class="icon globe"></span>$location {{ endif }}</div>
|
||||
</div>
|
||||
<div class="wall-item-lock-wrapper">
|
||||
{{ if $lock }}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="$lock" onclick="lockview(event,$id);" /></div>
|
||||
{{ else }}<div class="wall-item-lock"></div>{{ endif }}
|
||||
</div>
|
||||
<div class="wall-item-tools" id="wall-item-tools-$id">
|
||||
{{ if $vote }}
|
||||
<div class="wall-item-like-buttons" id="wall-item-like-buttons-$id">
|
||||
<a href="#" class="icon like" title="$vote.like.0" onclick="dolike($id,'like'); return false"></a>
|
||||
<a href="#" class="icon dislike" title="$vote.dislike.0" onclick="dolike($id,'dislike'); return false"></a>
|
||||
{{ if $vote.share }}<a href="#" class="icon recycle wall-item-share-buttons" title=""$vote.share.0" onclick="jotShare($id); return false"></a>{{ endif }}
|
||||
<img id="like-rotator-$id" class="like-rotator" src="images/rotator.gif" alt="$wait" title="$wait" style="display: none;" />
|
||||
</div>
|
||||
{{ endif }}
|
||||
{{ if $plink }}
|
||||
<div class="wall-item-links-wrapper"><a href="$plink.href" title="$plink.title" target="external-link" class="icon remote-link"></a></div>
|
||||
{{ endif }}
|
||||
{{ if $edpost }}
|
||||
<a class="editpost icon pencil" href="$edpost.0" title="$edpost.1"></a>
|
||||
{{ endif }}
|
||||
|
||||
{{ if $star }}
|
||||
<a href="#" id="starred-$id" onclick="dostar($id); return false;" class="star-item icon $isstarred" title="$star.toggle"></a>
|
||||
{{ endif }}
|
||||
|
||||
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$id" >
|
||||
{{ if $drop.dropping }}<a href="item/drop/$id" onclick="return confirmDelete();" class="icon drophide" title="$drop.delete" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a>{{ endif }}
|
||||
</div>
|
||||
{{ if $drop.dropping }}<input type="checkbox" onclick="checkboxhighlight(this);" title="$drop.select" class="item-select" name="itemselected[]" value="$id" />{{ endif }}
|
||||
<div class="wall-item-delete-end"></div>
|
||||
</div>
|
||||
<div class="wall-item-content" id="wall-item-content-$id" >
|
||||
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
||||
<div class="wall-item-title-end"></div>
|
||||
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
||||
</div>
|
||||
<div class="wall-item-author">
|
||||
<a href="$profile_url" title="$linktitle" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a>
|
||||
<div class="wall-item-ago" id="wall-item-ago-$id">$ago</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-wrapper-end"></div>
|
||||
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
||||
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
||||
<div class="wall-item-comment-wrapper" >
|
||||
$comment
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$indent" ></div>
|
||||
|
||||
|
|
@ -32,7 +32,7 @@
|
|||
{{ endif }}
|
||||
{{ if $nav.notifications }}
|
||||
<a id="nav-notify-link" class="nav-commlink $nav.notifications.2 $sel.notifications" href="$nav.notifications.0" title="$nav.notifications.3" >$nav.notifications.1</a>
|
||||
<span id="notify-update" class="nav-ajax-left"></span>
|
||||
<span id="intro-update" class="nav-ajax-left"></span>
|
||||
{{ endif }}
|
||||
{{ if $nav.messages }}
|
||||
<a id="nav-messages-link" class="nav-commlink $nav.messages.2" href="$nav.messages.0 $sel.messages" title="$nav.messages.3" >$nav.messages.1</a>
|
||||
|
|
|
|||
|
|
@ -1559,6 +1559,8 @@ input#dfrn-url {
|
|||
display:block!important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#acl-wrapper {
|
||||
width: 690px;
|
||||
float:left;
|
||||
|
|
@ -1917,6 +1919,10 @@ a.mail-list-link {
|
|||
float: left;
|
||||
width: 175px;
|
||||
}
|
||||
|
||||
#photos-upload-noshare {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
#photos-upload-existing-album-text {
|
||||
float: left;
|
||||
width: 175px;
|
||||
|
|
|
|||
|
|
@ -67,3 +67,8 @@
|
|||
@NoticeBackgroundColor: #511919;
|
||||
|
||||
@ThreadBackgroundColor: #f6f7f8;
|
||||
|
||||
@CommentBoxEmptyColor: @Grey3;
|
||||
@CommentBoxEmptyBorderColor: @Grey3;
|
||||
@CommentBoxFullColor: @Grey5;
|
||||
@CommentBoxFullBorderColor: @Grey5;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
/* global */
|
||||
body {
|
||||
font-family: Liberation Sans,helvetica,arial,clean,sans-serif;
|
||||
font-size: 10px;
|
||||
font-size: 12px;
|
||||
background-color: @BodyBackground;
|
||||
color: @BodyColor;
|
||||
margin: 50px 0px 0px 0px;
|
||||
|
|
@ -324,18 +324,17 @@ section {
|
|||
.wall-item-ago { padding-right: 40px; }
|
||||
.wall-item-name { font-weight: bold; }
|
||||
|
||||
.wall-item-actions-author { float: left; width: 25%; margin-top: 0.5em; }
|
||||
.wall-item-actions-social { float: left; width: 50%; margin-top: 0.5em;
|
||||
.wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; }
|
||||
.wall-item-actions-social { float: left; margin-top: 0.5em;
|
||||
a { margin-right: 3em; }
|
||||
}
|
||||
.wall-item-actions-tools { float: right; width: 25%;
|
||||
.wall-item-actions-tools { float: right; width: 15%;
|
||||
a { float: right; }
|
||||
input { float: right; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.wall-item-container.comment {
|
||||
margin-top: 50px;
|
||||
.wall-item-photo { width: 32px; height: 32px; margin-left: 16px;}
|
||||
|
|
@ -345,3 +344,34 @@ section {
|
|||
}
|
||||
.wall-item-links { padding-left: 12px; }
|
||||
}
|
||||
|
||||
.wall-item-comment-wrapper {
|
||||
margin: 30px 2em 2em 60px;
|
||||
.comment-edit-photo { display: none; }
|
||||
textarea {
|
||||
height: 1em; width: 100%; font-size: 10px;
|
||||
color: @CommentBoxEmptyColor;
|
||||
border: 1px solid @CommentBoxEmptyBorderColor;
|
||||
padding:0.3em;
|
||||
}
|
||||
.comment-edit-text-full {
|
||||
font-size: 14px;
|
||||
height: 4em;
|
||||
color: @CommentBoxFullColor;
|
||||
border: 1px solid @CommentBoxFullBorderColor;
|
||||
}
|
||||
}
|
||||
|
||||
#profile-jot-wrapper {
|
||||
width: 100%;
|
||||
margin: 0px 2em 20px 0px;
|
||||
|
||||
|
||||
}
|
||||
.profile-jot-text {
|
||||
height: 1em; width: 100%; font-size: 10px;
|
||||
color: @CommentBoxEmptyColor;
|
||||
border: 1px solid @CommentBoxEmptyBorderColor;
|
||||
padding:0.3em;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@
|
|||
/* global */
|
||||
body {
|
||||
font-family: Liberation Sans, helvetica, arial, clean, sans-serif;
|
||||
font-size: 10px;
|
||||
font-size: 12px;
|
||||
background-color: #ffffff;
|
||||
color: #2d2d2d;
|
||||
margin: 50px 0px 0px 0px;
|
||||
|
|
@ -574,12 +574,11 @@ section {
|
|||
}
|
||||
.wall-item-container .wall-item-actions-author {
|
||||
float: left;
|
||||
width: 25%;
|
||||
width: 20em;
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social {
|
||||
float: left;
|
||||
width: 50%;
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-social a {
|
||||
|
|
@ -587,7 +586,7 @@ section {
|
|||
}
|
||||
.wall-item-container .wall-item-actions-tools {
|
||||
float: right;
|
||||
width: 25%;
|
||||
width: 15%;
|
||||
}
|
||||
.wall-item-container .wall-item-actions-tools a {
|
||||
float: right;
|
||||
|
|
@ -610,3 +609,35 @@ section {
|
|||
.wall-item-container.comment .wall-item-links {
|
||||
padding-left: 12px;
|
||||
}
|
||||
.wall-item-comment-wrapper {
|
||||
margin: 30px 2em 2em 60px;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-photo {
|
||||
display: none;
|
||||
}
|
||||
.wall-item-comment-wrapper textarea {
|
||||
height: 1em;
|
||||
width: 100%;
|
||||
font-size: 10px;
|
||||
color: #999999;
|
||||
border: 1px solid #999999;
|
||||
padding: 0.3em;
|
||||
}
|
||||
.wall-item-comment-wrapper .comment-edit-text-full {
|
||||
font-size: 14px;
|
||||
height: 4em;
|
||||
color: #2d2d2d;
|
||||
border: 1px solid #2d2d2d;
|
||||
}
|
||||
#profile-jot-wrapper {
|
||||
width: 100%;
|
||||
margin: 0px 2em 20px 0px;
|
||||
}
|
||||
.profile-jot-text {
|
||||
height: 1em;
|
||||
width: 100%;
|
||||
font-size: 10px;
|
||||
color: #999999;
|
||||
border: 1px solid #999999;
|
||||
padding: 0.3em;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<h3>$messages</h3>
|
||||
|
||||
<ul class="tabs-wrapper">
|
||||
<li><a href="message" class="tabs">$inbox</a></li>
|
||||
<li><a href="message/sent" class="tabs">$outbox</a></li>
|
||||
<li><a href="message/new" class="tabs">$new</a></li>
|
||||
<li><a href="message" class="tabs button {{if $activetab==inbox}}active{{endif}}">$inbox</a></li>
|
||||
<li><a href="message/sent" class="tabs button {{if $activetab==sent}}active{{endif}}">$outbox</a></li>
|
||||
<li><a href="message/new" class="tabs button {{if $activetab==new}}active{{endif}}">$new</a></li>
|
||||
</ul>
|
||||
|
|
|
|||
10
view/theme/testbubble/match.tpl
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<div class="profile-match-wrapper">
|
||||
<div class="profile-match-photo">
|
||||
<a href="$url">
|
||||
<img src="$photo" alt="$name" />
|
||||
</a>
|
||||
</div>
|
||||
<span><a href="$url">$name</a> is interested in:<br />$tags</span>
|
||||
<div class="profile-match-break"></div>
|
||||
<div class="profile-match-end"></div>
|
||||
</div>
|
||||
|
|
@ -3,13 +3,16 @@
|
|||
|
||||
<span id="banner">$banner</span>
|
||||
|
||||
<div id="notifications">
|
||||
{{ if $nav.network }}<a id="net-update" class="nav-ajax-update" href="$nav.network.0" title="$nav.network.1"></a>{{ endif }}
|
||||
{{ if $nav.home }}<a id="home-update" class="nav-ajax-update" href="$nav.home.0" title="$nav.home.1"></a>{{ endif }}
|
||||
{{ if $nav.notifications }}<a id="notify-update" class="nav-ajax-update" href="$nav.notifications.0" title="$nav.notifications.1"></a>{{ endif }}
|
||||
{{ if $nav.messages }}<a id="mail-update" class="nav-ajax-update" href="$nav.messages.0" title="$nav.messages.1"></a>{{ endif }}
|
||||
<div id="notifications">
|
||||
{{ if $nav.network }}<a rel="#nav-notifications-menu" id="net-update" class="nav-ajax-update" href="$nav.network.0" title="$nav.network.1"></a>{{ endif }}
|
||||
{{ if $nav.home }}<a rel="#nav-notifications-menu" id="home-update" class="nav-ajax-update" href="$nav.home.0" title="$nav.home.1"></a>{{ endif }}
|
||||
{{ if $nav.notifications }}<a rel="#nav-notifications-menu" id="intro-update" class="nav-ajax-update" href="$nav.notifications.0" title="$nav.notifications.1"></a>{{ endif }}
|
||||
{{ if $nav.messages }}<a rel="#nav-notifications-menu" id="mail-update" class="nav-ajax-update" href="$nav.messages.0" title="$nav.messages.1"></a>{{ endif }}
|
||||
<ul id="nav-notifications-menu" class="menu-popup">
|
||||
<li class="empty">$emptynotifications</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="user-menu" >
|
||||
<a id="user-menu-label" onclick="openClose('user-menu-popup'); return false" href="$nav.home.0">$sitelocation</a>
|
||||
|
||||
|
|
@ -48,8 +51,8 @@
|
|||
{{ if $nav.logout }}<li><a id="nav-logout-link" class="nav-commlink nav-sep $nav.logout.2" href="$nav.logout.0">$nav.logout.1</a></li> {{ endif }}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</nav>
|
||||
|
||||
<ul id="nav-notifications-template" style="display:none;" rel="template">
|
||||
<a href="{0}"><li>{2} <span class="notif-when">{3}</span></li></a>
|
||||
</ul>
|
||||
|
|
|
|||
8
view/theme/testbubble/photo_album.tpl
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<div class="photo-album-image-wrapper" id="photo-album-image-wrapper-$id">
|
||||
<a href="$photolink" class="photo-album-photo-link" id="photo-album-photo-link-$id" title="$phototitle">
|
||||
<img src="$imgsrc" alt="$imgalt" title="$phototitle" class="photo-album-photo lframe resize" id="photo-album-photo-$id" />
|
||||
</div>
|
||||
<p class='caption'>$desc</p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="photo-album-image-wrapper-end"></div>
|
||||
8
view/theme/testbubble/photo_top.tpl
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
<div class="photo-top-image-wrapper lframe" id="photo-top-image-wrapper-$id">
|
||||
<div id="photo-album-wrapper-inner">
|
||||
<a href="$photolink" class="photo-top-photo-link" id="photo-top-photo-link-$id" title="$phototitle"><img src="$imgsrc" alt="$imgalt" title="$phototitle" class="photo-top-photo" id="photo-top-photo-$id" /></a>
|
||||
</div>
|
||||
<div class="photo-top-album-name"><a href="$albumlink" class="photo-top-album-link" title="$albumalt" >$albumname</a></div>
|
||||
</div>
|
||||
<div class="photo-top-image-wrapper-end"></div>
|
||||
|
|
@ -7,14 +7,11 @@
|
|||
*/
|
||||
/* ========== */
|
||||
/* = Colors
|
||||
|
||||
Red links - #b20202
|
||||
Red link hover - #db0503
|
||||
Red Gradients (buttons and other gradients) - #b20202 and #d60808
|
||||
|
||||
Grey/body text - #626262
|
||||
Grey Gradients (buttons and other gradients) - #bdbdbd and #a2a2a2
|
||||
|
||||
Dark Grey Gradients - #7c7d7b and #555753
|
||||
|
||||
You can switch out the colors of the header, buttons and links by using a find and replace in your text editor.
|
||||
|
|
@ -134,7 +131,7 @@ section {
|
|||
.mframe {
|
||||
padding: 5px;
|
||||
background-color: #efefef;
|
||||
border: 2px dotted #eeeeee;
|
||||
border: 2px solid #dddddd;
|
||||
-moz-box-shadow: 3px 3px 4px #959494;
|
||||
-webkit-box-shadow: 3px 3px 4px #959494;
|
||||
box-shadow: 3px 3px 4px #959494;
|
||||
|
|
@ -364,7 +361,7 @@ ul#user-menu-popup li a.nav-sep { border-top: 1px solid #989898; border-style:in
|
|||
#notifications {
|
||||
height: 32px;
|
||||
position: absolute;
|
||||
top:10px; left: 650px;
|
||||
top:10px; left: 40%;
|
||||
}
|
||||
.nav-ajax-update {
|
||||
width: 44px;
|
||||
|
|
@ -376,12 +373,12 @@ ul#user-menu-popup li a.nav-sep { border-top: 1px solid #989898; border-style:in
|
|||
padding-top: 0.5em;
|
||||
float: left;
|
||||
padding-left: 11px;
|
||||
display: none;
|
||||
/*display: none;*/
|
||||
}
|
||||
#net-update { background-position: 0px 0px; }
|
||||
#mail-update { background-position: 0px -42px; }
|
||||
#notify-update { background-position: 0px -84px; }
|
||||
#home-update { background-position: 0px -126px; }
|
||||
#net-update { background-position: 0px -126px; }
|
||||
#mail-update { background-position: 0px -40px; }
|
||||
#intro-update { background-position: 0px -84px; }
|
||||
#home-update { background-position: 0px 0px; }
|
||||
|
||||
#lang-select-icon {
|
||||
cursor: pointer;
|
||||
|
|
@ -452,14 +449,10 @@ aside a{
|
|||
font-variant:small-caps;
|
||||
}
|
||||
|
||||
.marital {
|
||||
font-size: 1em;
|
||||
font-variant:small-caps;
|
||||
}
|
||||
|
||||
.homepage-label {
|
||||
font-size: 1em;
|
||||
font-variant:small-caps;
|
||||
.vcard dd {
|
||||
font-size: 12px;
|
||||
font-variant: normal;
|
||||
-webkit-margin-start: 10px;
|
||||
}
|
||||
|
||||
.vcard .fn {
|
||||
|
|
@ -847,11 +840,17 @@ profile-jot-banner-wrapper {
|
|||
/* = Posts = */
|
||||
/* ========= */
|
||||
|
||||
.wall-item-outside-wrapper {
|
||||
margin-top: 50px;
|
||||
.wall-item-outside-wrapper {
|
||||
max-width: 83%;
|
||||
border-bottom: 1px solid #dedede;
|
||||
margin-top: 20px;
|
||||
padding-right: 10px;
|
||||
padding-left: 12px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.wall-item-outside-wrapper-end { clear: both;}
|
||||
.wall-item-content-wrapper { position: relative; max-width: 95%; }
|
||||
.wall-item-content-wrapper { position: relative; max-width: 100%; }
|
||||
.wall-item-photo-menu { display: none;}
|
||||
.wall-item-photo-menu-button {
|
||||
display:none;
|
||||
|
|
@ -897,12 +896,13 @@ profile-jot-banner-wrapper {
|
|||
}
|
||||
|
||||
.wall-item-outside-wrapper.comment .wall-item-tools {
|
||||
margin: 5px 5px 10px 60px;
|
||||
margin: 5px 5px 10px 70px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.wall-item-like-buttons {
|
||||
float: left;
|
||||
padding-left: 10px;
|
||||
}
|
||||
.wall-item-like-buttons a.icon {
|
||||
float: left;
|
||||
|
|
@ -931,9 +931,13 @@ profile-jot-banner-wrapper {
|
|||
float: left;
|
||||
}
|
||||
.wall-item-title { font-size: 1.2em; font-weight: bold;}
|
||||
.wall-item-body { margin-left: 140px; padding-right: 20px; }
|
||||
.wall-item-body {
|
||||
margin-left: 140px;
|
||||
padding-right: 10px;
|
||||
max-width: 85%;
|
||||
}
|
||||
|
||||
.wall-item-body p {
|
||||
max-width: 600px;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
.wall-item-lock-wrapper { float: right; }
|
||||
|
|
@ -943,6 +947,7 @@ profile-jot-banner-wrapper {
|
|||
clear: left;
|
||||
font-size: 0.9em;
|
||||
margin: 4px 0px 0px 140px;
|
||||
padding-left: 10px;
|
||||
font-variant:small-caps;
|
||||
}
|
||||
|
||||
|
|
@ -1049,11 +1054,7 @@ profile-jot-banner-wrapper {
|
|||
.icon.drop,
|
||||
.icon.drophide { float: left; }
|
||||
#item-delete-selected { overflow: auto; width: 100%;}
|
||||
.wall-item-outside-wrapper {
|
||||
max-width: 83%;
|
||||
border-bottom: 1px solid #dedede;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
|
||||
/* ============ */
|
||||
/* = Comments = */
|
||||
|
|
@ -1062,11 +1063,11 @@ profile-jot-banner-wrapper {
|
|||
.ccollapse-wrapper {
|
||||
font-size: 0.9em;
|
||||
color: #898989;
|
||||
margin-left: 80px;
|
||||
margin-left: 60px;
|
||||
font-variant:small-caps;
|
||||
}
|
||||
|
||||
.wall-item-outside-wrapper.comment { margin-left: 80px; }
|
||||
.wall-item-outside-wrapper.comment { margin-left: 70px; }
|
||||
.wall-item-outside-wrapper.comment .wall-item-photo {
|
||||
width: 40px!important;
|
||||
height: 40px!important;
|
||||
|
|
@ -1079,7 +1080,13 @@ profile-jot-banner-wrapper {
|
|||
background-position: 35px center;
|
||||
}
|
||||
.wall-item-outside-wrapper.comment .wall-item-info { width: 60px; }
|
||||
.wall-item-outside-wrapper.comment .wall-item-body { margin-left: 60px; max-width: 85%;}
|
||||
.wall-item-outside-wrapper.comment .wall-item-body {
|
||||
margin-left: 70px;
|
||||
max-width: 85%;
|
||||
padding-right: 10px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.wall-item-outside-wrapper.comment .wall-item-author { margin-left: 60px;}
|
||||
|
||||
.wall-item-outside-wrapper.comment .wall-item-photo-menu {
|
||||
|
|
@ -1140,11 +1147,14 @@ profile-jot-banner-wrapper {
|
|||
}
|
||||
|
||||
.wall-item-body code {
|
||||
border-color: #CCCCCC;
|
||||
border-style: solid;
|
||||
font-family: Courier, monospace;
|
||||
white-space: pre;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
border: 1px solid #cccccc;
|
||||
border-width: 1px 1px 1px 10px;
|
||||
display: block;
|
||||
padding-left: 10px;
|
||||
padding-left: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
/* =========== */
|
||||
|
|
@ -1242,23 +1252,44 @@ div[id$="wrapper"] br { clear: left; }
|
|||
}
|
||||
|
||||
.profile-match-wrapper {
|
||||
width: 300px;
|
||||
width: 82%;
|
||||
padding: 5px;
|
||||
margin-bottom:10px;
|
||||
margin-left: 20px;
|
||||
background-color: #f6f6f6;
|
||||
border: 1px solid #dddddd;
|
||||
-moz-box-shadow: 3px 3px 4px #959494;
|
||||
-webkit-box-shadow: 3px 3px 4px #959494;
|
||||
box-shadow: 3px 3px 4px #959494;
|
||||
box-shadow: 3px 3px 4px #959494;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.profile-match-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.profile-match-photo {
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* ========== */
|
||||
/* = Photos = */
|
||||
/* ========== */
|
||||
|
||||
#side-bar-photos-albums h3:before {
|
||||
content: url("photography.png");
|
||||
padding-right: 10px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#side-bar-photos-albums li {
|
||||
font-size: 1.2em;
|
||||
font-size: 14px;
|
||||
font-variant: none;
|
||||
text-align: left;
|
||||
padding-left: 20px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
#photo-top-links {
|
||||
|
|
@ -1286,15 +1317,31 @@ div[id$="wrapper"] br { clear: left; }
|
|||
background-color: #b20202;
|
||||
}
|
||||
|
||||
.photo-album-image-wrapper,
|
||||
.photo-top-image-wrapper {
|
||||
float: left;
|
||||
.photo-album-image-wrapper {
|
||||
float: left;
|
||||
margin: 0px 10px 10px 0px;
|
||||
padding-bottom: 30px;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
#photo-photo { max-width: 100% }
|
||||
.photo-top-image-wrapper {
|
||||
float: left;
|
||||
width: 180px;
|
||||
height: 180px;
|
||||
margin: 0px 10px 10px 0px;
|
||||
padding-bottom: 30px;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
#photo-album-wrapper-inner {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 180px;
|
||||
height: 180px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#photo-photo { max-width: 85%; height: auto; }
|
||||
#photo-photo img { max-width: 100% }
|
||||
|
||||
.photo-top-image-wrapper a:hover,
|
||||
|
|
@ -1303,7 +1350,7 @@ div[id$="wrapper"] br { clear: left; }
|
|||
border-bottom: 0px;
|
||||
}
|
||||
|
||||
.photo-top-photo,
|
||||
.photo-top-photo {}
|
||||
.photo-album-photo {}
|
||||
|
||||
.photo-top-album-name {
|
||||
|
|
@ -1502,16 +1549,6 @@ input#photo_edit_form {
|
|||
margin-left: 190px;
|
||||
}
|
||||
|
||||
#side-bar-photos-albums h3:before {
|
||||
content: url("photography.png");
|
||||
padding-right: 10px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
#side-bar-photos-albums li {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
#photo-album-edit-wrapper {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
|
@ -1587,16 +1624,15 @@ input#photo_edit_form {
|
|||
font-size: 1em;
|
||||
}
|
||||
|
||||
|
||||
#prvmail-submit-wrapper { margin-top: 10px; }
|
||||
#prvmail-submit {
|
||||
float: right;
|
||||
margin-top: 0px;
|
||||
margin-right: 90px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
#prvmail-upload {
|
||||
margin-left: 90px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
#prvmail-submit-wrapper > div {
|
||||
|
|
@ -1637,7 +1673,7 @@ margin-left: 90px;
|
|||
float: right;
|
||||
clear: block;
|
||||
display: inline;
|
||||
font-size: 0.8em;
|
||||
font-size: 0.9em;
|
||||
padding-left: 10px;
|
||||
font-stretch:ultra-condensed;
|
||||
font-variant:small-caps;
|
||||
|
|
@ -1654,11 +1690,15 @@ margin-left: 90px;
|
|||
color: #626262;
|
||||
}
|
||||
|
||||
.mail-list-delete-wrapper { float: left; margin-right:550px; }
|
||||
.mail-list-delete-wrapper { float: right;}
|
||||
.mail-list-outside-wrapper-end {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.mail-conv-outside-wrapper {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mail-conv-sender {float: left; margin: 0px 5px 5px 0px; }
|
||||
.mail-conv-sender-photo {
|
||||
width: 64px;
|
||||
|
|
@ -1675,13 +1715,20 @@ margin-left: 90px;
|
|||
.mail-conv-detail {
|
||||
width: 500px;
|
||||
padding: 30px;
|
||||
padding-bottom: 10px;
|
||||
margin-left: 20px;
|
||||
margin-bottom: 0px;
|
||||
vertical-align: middle;
|
||||
margin: auto;
|
||||
border: 1px solid #dddddd;
|
||||
}
|
||||
.mail-conv-break { display: none; border: none;}
|
||||
.mail-conv-delete-wrapper { margin-top: 5px; width: 650px; text-align: right; }
|
||||
.mail-conv-delete-wrapper { padding-top: 10px; width: 510px; text-align: right; }
|
||||
|
||||
#prvmail-subject {
|
||||
font-weight: bold;
|
||||
border: 1px solid #dddddd;
|
||||
}
|
||||
|
||||
/* ================= */
|
||||
/* = Notifications = */
|
||||
|
|
@ -2061,56 +2108,19 @@ margin-left: 90px;
|
|||
padding-top: 10px;
|
||||
}
|
||||
|
||||
#profile-tab-status-link:hover {
|
||||
#profile-tab-status-link {
|
||||
border: 0px;
|
||||
padding: 5px 10px 5px 10px;
|
||||
font-style: bold;
|
||||
color: #efefef;
|
||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );
|
||||
background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% );
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808');
|
||||
background-color:#b20202;
|
||||
}
|
||||
|
||||
#profile-tab-status-link:active {
|
||||
border: 0px;
|
||||
padding: 5px 10px 5px 10px;
|
||||
font-style: bold;
|
||||
background-color: #b20202;
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
#profile-tab-status-link a {
|
||||
color: #efefef;
|
||||
}
|
||||
|
||||
#uexport-link a {
|
||||
color: #efefef;
|
||||
}
|
||||
|
||||
#profile-tab-profile-link:hover {
|
||||
#profile-tab-profile-link {
|
||||
border: 0px;
|
||||
padding: 5px 10px 5px 10px;
|
||||
font-style: bold;
|
||||
color: #efefef;
|
||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );
|
||||
background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% );
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808');
|
||||
background-color:#b20202;
|
||||
}
|
||||
|
||||
#profile-tab-profile-link:active {
|
||||
border: 0px;
|
||||
padding: 5px 10px 5px 10px;
|
||||
font-style: bold;
|
||||
background-color: #b20202;
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
|
||||
#profile-tab-profile-link a {
|
||||
color: #efefef;
|
||||
}
|
||||
|
||||
#uexport-link {
|
||||
|
|
@ -2255,7 +2265,7 @@ margin-left: 90px;
|
|||
background-color:#bdbdbd;
|
||||
-moz-border-radius:5px;
|
||||
-webkit-border-radius:5px;
|
||||
border-radius:5px;
|
||||
border-radius:5px;*/
|
||||
}
|
||||
|
||||
.group-delete-wrapper:hover {
|
||||
|
|
@ -2602,7 +2612,9 @@ tr {
|
|||
.admin.link {
|
||||
list-style-position: inside;
|
||||
font-size: 1em;
|
||||
padding: 3px;
|
||||
padding: 5px;
|
||||
width: 100px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
#adminpage dl {
|
||||
|
|
@ -2989,4 +3001,62 @@ a.active {
|
|||
color:#efefef;
|
||||
padding: 5px 10px 5px 10px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
/* notifications popup menu */
|
||||
.nav-notify {
|
||||
display: none;
|
||||
position: absolute;
|
||||
font-size: 10px;
|
||||
padding: 1px 3px;
|
||||
top: 0px;
|
||||
right: -10px;
|
||||
min-width: 15px;
|
||||
text-align: right;
|
||||
}
|
||||
.nav-notify.show {
|
||||
display: block;
|
||||
}
|
||||
ul.menu-popup {
|
||||
position: absolute;
|
||||
display: none;
|
||||
width: 10em;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
list-style: none;
|
||||
z-index: 100000;
|
||||
top: 40px;
|
||||
}
|
||||
#nav-notifications-menu {
|
||||
width: 320px;
|
||||
max-height: 400px;
|
||||
overflow-y: scroll;
|
||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #797979), color-stop(1, #898988) );
|
||||
background:-moz-linear-gradient( center top, #797979 5%, #898988 100% );
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#797979', endColorstr='#898988');
|
||||
background-color:#a2a2a2;
|
||||
-moz-border-radius:0px 0px 5px 5px;
|
||||
-webkit-border-radius:0px 0px 5px 5px;
|
||||
border-radius:0px 0px 5px 5px;
|
||||
border: 1px solid #9A9A9A;
|
||||
border-top: none;
|
||||
-moz-box-shadow: 5px 5px 10px #242424;
|
||||
-webkit-box-shadow: 5px 5px 10px #242424;
|
||||
box-shadow: 5px 5px 10px #242424;
|
||||
|
||||
}
|
||||
#nav-notifications-menu .contactname { font-weight: bold; font-size: 0.9em; }
|
||||
#nav-notifications-menu img { float: left; margin-right: 5px; }
|
||||
#nav-notifications-menu .notif-when { font-size: 0.8em; display: block; }
|
||||
#nav-notifications-menu li {
|
||||
padding: 7px 10px 7px 10px;
|
||||
word-wrap:normal;
|
||||
border-bottom: 1px solid #626262;
|
||||
}
|
||||
|
||||
#nav-notifications-menu li:hover {
|
||||
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );
|
||||
background:-moz-linear-gradient( center top, #b20202 5%, #d60808 100% );
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b20202', endColorstr='#d60808');
|
||||
background-color:#b20202;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,4 +66,6 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="wall-item-comment-wrapper" >
|
||||
$comment
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,58 +1,3 @@
|
|||
{#<div class="wall-item-outside-wrapper$indent wallwall" id="wall-item-outside-wrapper-$id" >
|
||||
<div class="wall-item-content-wrapper$indent" id="wall-item-content-wrapper-$id" >
|
||||
<div class="wall-item-info wallwall" id="wall-item-info-$id">
|
||||
<div class="wall-item-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-$id" >
|
||||
<a href="$owner_url" target="redir" title="$olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
||||
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" style="height: 80px; width: 80px;" alt="$owner_name" /></a>
|
||||
</div>
|
||||
<div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$wall" /></div>
|
||||
<div class="wall-item-photo-wrapper mframe wwfrom" id="wall-item-photo-wrapper-$id"
|
||||
onmouseover="if (typeof t$id != 'undefined') clearTimeout(t$id); openMenu('wall-item-photo-menu-button-$id')"
|
||||
onmouseout="t$id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$id\'); closeMenu(\'wall-item-photo-menu-$id\');',200)">
|
||||
<a href="$profile_url" target="redir" title="$linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||
<img src="$thumb" class="wall-item-photo$sparkle" id="wall-item-photo-$id" style="height: 80px; width: 80px;" alt="$name" /></a>
|
||||
<span onclick="openClose('wall-item-photo-menu-$id');" class="fakelink wall-item-photo-menu-button" id="wall-item-photo-menu-button-$id">menu</span>
|
||||
<div class="wall-item-photo-menu" id="wall-item-photo-menu-$id">
|
||||
<ul>
|
||||
$item_photo_menu
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="wall-item-photo-end"></div>
|
||||
<div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
|
||||
$lock
|
||||
<div class="wall-item-location" id="wall-item-location-$id">$location</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-author">
|
||||
<a href="$profile_url" target="redir" title="$linktitle" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a> $to <a href="$owner_url" target="redir" title="$olinktitle" class="wall-item-name-link"><span class="wall-item-name$osparkle" id="wall-item-ownername-$id">$owner_name</span></a> $vwall<br />
|
||||
<div class="wall-item-ago" id="wall-item-ago-$id">$ago</div>
|
||||
</div>
|
||||
<div class="wall-item-content" id="wall-item-content-$id" >
|
||||
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
|
||||
<div class="wall-item-title-end"></div>
|
||||
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
|
||||
</div>
|
||||
<div class="wall-item-tools" id="wall-item-tools-$id">
|
||||
$vote
|
||||
$plink
|
||||
$edpost
|
||||
$star
|
||||
$drop
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-wrapper-end"></div>
|
||||
<div class="wall-item-like" id="wall-item-like-$id">$like</div>
|
||||
<div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
|
||||
<div class="wall-item-comment-separator"></div>
|
||||
<div class="wall-item-comment-wrapper" >
|
||||
$comment
|
||||
</div>
|
||||
|
||||
<div class="wall-item-outside-wrapper-end$indent" ></div>
|
||||
</div> #}
|
||||
|
||||
{{ if $indent }}{{ else }}
|
||||
<div class="wall-item-decor">
|
||||
<span class="icon s22 star $isstarred" id="starred-$id" title="$star.starred">$star.starred</span>
|
||||
|
|
@ -63,12 +8,12 @@
|
|||
<div class="wall-item-container $indent">
|
||||
<div class="wall-item-item">
|
||||
<div class="wall-item-info">
|
||||
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$id" >
|
||||
<div class="wall-item-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-$id" >
|
||||
<a href="$owner_url" target="redir" title="$olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$id">
|
||||
<img src="$owner_photo" class="wall-item-photo$osparkle" id="wall-item-ownerphoto-$id" alt="$owner_name" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="wall-item-photo-wrapper wwfrom"
|
||||
<div class="wall-item-photo-wrapper mframe wwfrom"
|
||||
onmouseover="if (typeof t$id != 'undefined') clearTimeout(t$id); openMenu('wall-item-photo-menu-button-$id')"
|
||||
onmouseout="t$id=setTimeout('closeMenu(\'wall-item-photo-menu-button-$id\'); closeMenu(\'wall-item-photo-menu-$id\');',200)">
|
||||
<a href="$profile_url" target="redir" title="$linktitle" class="wall-item-photo-link" id="wall-item-photo-link-$id">
|
||||
|
|
@ -128,3 +73,6 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="wall-item-comment-wrapper" >
|
||||
$comment
|
||||
</div>
|
||||
|
|
|
|||
134
zot.txt
|
|
@ -1,7 +1,7 @@
|
|||
This is the Zot! social communications protocol.
|
||||
|
||||
Specification revision: 1
|
||||
15 September 2011
|
||||
2 October 2011
|
||||
|
||||
Mike Macgirvin
|
||||
This specification is public domain.
|
||||
|
|
@ -78,16 +78,21 @@ zot:env
|
|||
*******
|
||||
|
||||
This consists of RFC822-style header fields representing the sender and
|
||||
recipient(s). Example:
|
||||
recipient(s). Line lengths have no defined limit and RFC822 continuation
|
||||
lines are not supported. If an inbound server is not able to process an
|
||||
envelope or post due to size constraints, it SHOULD return a
|
||||
"413 Entity too large" HTTP response.
|
||||
|
||||
From: bob@example.com
|
||||
Sender: bob@example.com
|
||||
To: alice@example.com
|
||||
Example:
|
||||
|
||||
Both "From:" and "Sender:" MUST be provided, and represent a webfinger
|
||||
address of the author and sender respectively. The webfinger address for
|
||||
the From address MUST contain a discoverable salmon public key that
|
||||
is needed to verify the enclosed salmon data. Sender is used to indicate
|
||||
Z-From: zot:bob@example.com
|
||||
Z-Sender: zot:bob@example.com
|
||||
Z-To: zot:alice@example.com
|
||||
|
||||
Both "Z-From:" and "Z-Sender:" MUST be provided, and represent a single
|
||||
webfinger address of the author and sender respectively. The webfinger
|
||||
address for the From address MUST contain a discoverable salmon public key
|
||||
which is needed to verify the enclosed salmon data. Sender is used to indicate
|
||||
the webfinger identity responsible for transmitting this message. From
|
||||
indicates the message author.
|
||||
|
||||
|
|
@ -95,46 +100,92 @@ In web-based social systems, a reply to a message SHOULD be conveyed to all of
|
|||
the original message participants. Only the author of the original message
|
||||
may know all the recipients (such as those contained in Bcc: elements). The
|
||||
author of a message always provides 'From'. They MUST duplicate this
|
||||
information as 'Sender'.
|
||||
information as 'Sender' when posting a followup message.
|
||||
|
||||
A reply to a given message MUST be sent to the original From address, and MAY
|
||||
be sent to any additional addresses in the recipient list. The original author
|
||||
MUST send the reply to all known recipients of the original message, with
|
||||
their webfinger identity as Sender, and the comment/reply author as From.
|
||||
A reply to a given message MUST be sent to the From address of the original
|
||||
post, and MAY be sent to any additional addresses in the recipient list. The
|
||||
original post author MUST send the reply to all known recipients of the
|
||||
original message, with their webfinger identity as Sender, and the
|
||||
comment/reply author as From.
|
||||
|
||||
Receiving agents SHOULD validate the From identity as the signer of the salmon
|
||||
magic envelope, and MAY reject it. They SHOULD also verify the Sender signature
|
||||
of the zot packet if it is different than the salmon signature. They MAY
|
||||
reject the message if the Sender is not allowed in their "friend list", or if
|
||||
they do not have a suitable relationship with the Sender, or if either
|
||||
signature fails to validate.
|
||||
signature fails to validate. Rejected messages for one of these reasons SHOULD
|
||||
be indicated with a "400 Bad Request" HTTP response.
|
||||
|
||||
|
||||
To: *
|
||||
Z-To: *
|
||||
|
||||
indicates a public message with no specifically enumerated recipients.
|
||||
|
||||
The fields To:, Cc:, and/or Bcc: MAY be present. At least one recipient field
|
||||
MUST be present. These fields may use the entire syntax specified by RFC822,
|
||||
for example:
|
||||
The fields Z-To: and/or Z-Bcc: MAY be present. At least one recipient field
|
||||
MUST be present.
|
||||
|
||||
To: "Bob Smith" <bob@example.com>, "Alice Jones" <alice@example.com>
|
||||
Z-To: zot:bob@example.com, zot:alice@example.com, mailto:dave@example.com
|
||||
Z-Bcc: zot:https://example.com/profile/richard
|
||||
|
||||
is a valid entry. A zot envelope is UTF-8 encoded, which differs from RFC822.
|
||||
The host component MUST be US-ASCII, with punycode translation of
|
||||
internationalised domain names applied.
|
||||
are valid entries. Adresses are comma separated and individual entries MUST NOT
|
||||
contain commas. There MAY be any number of ASCII space characters between
|
||||
entries for legibility. Header lines are terminated with a linefeed character
|
||||
(ASCII 0x0A).
|
||||
|
||||
The entire envelope is then encrypted using alg with env_key and env_iv and
|
||||
This specification provides the following protocol address prefixes
|
||||
for use in Z-To: or Z-Bcc: elements:
|
||||
|
||||
zot: - normal zot delivery using webfinger or LRDD resolvable address
|
||||
dfrn: - legacy DFRN mode delivery using webfinger or LRDD resovable address
|
||||
ostatus: - normal OStatus delivery using webfinger or LRDD resovable address
|
||||
diaspora: - Diaspora network delivery using webfinger address
|
||||
facebook: - Facebook profile page URL
|
||||
twitter: - Twitter personal page URL without AJAX '#!' fragment
|
||||
mailto: - email RFC822/ESMTP address
|
||||
|
||||
Examples:
|
||||
|
||||
twitter:http://twitter.com/bjensen
|
||||
facebook:http://facebook.com/profile.php?id=000000001
|
||||
|
||||
Foreign protocol addresses which have not been defined in this specification
|
||||
or future revisions of this specification and which are unknown to the
|
||||
recipient delivery process MAY be ignored.
|
||||
|
||||
In cases where an address may contain either a webfinger or LRDD address, the
|
||||
webfinger address SHOULD be used preferentially.
|
||||
|
||||
|
||||
Z-Bcc:
|
||||
******
|
||||
|
||||
The Z-Bcc element may contain one or more addresses which are hidden from end
|
||||
user presentation. A zot receiving system MUST NOT store or allow for
|
||||
the display of the Bcc information. Implementations which require extreme
|
||||
privacy SHOULD send individual posts to each of the Bcc: recipients containing
|
||||
only a single address. They MAY send all Bcc: posts using bulk delivery,
|
||||
however this may have privacy implications as there is no guarantee a
|
||||
receiving system will not log, store, or otherwise reveal the contents of the
|
||||
Bcc recipient list.
|
||||
|
||||
Z-To: addresses MAY be shown to an end user.
|
||||
|
||||
|
||||
Envelope encryption
|
||||
*******************
|
||||
|
||||
|
||||
The entire envelope is encrypted using alg with env_key and env_iv and
|
||||
base64url encoded for transmission.
|
||||
|
||||
The zot envelope MAY include remote addresses. A zot delivery agent MUST parse
|
||||
all addresses and determine whether a delivery address to the current endpoint
|
||||
is valid. This may be the result of:
|
||||
The zot envelope MAY include remote addresses. A zot inbound delivery agent
|
||||
MUST parse the envelope and determine whether a delivery address to the
|
||||
current endpoint is valid. This may be the result of:
|
||||
|
||||
1. An address contains the public message wildcard '*'
|
||||
|
||||
2. The current endpoint is a personal endpoint and one of the recipients
|
||||
listed in the To:, Cc:, or Bcc: addresses matches the webfinger address of
|
||||
listed in the Z-To: or Z-Bcc: addresses matches the webfinger address of
|
||||
the "owner" of the endpoint.
|
||||
|
||||
3. The current endpoint is a bulk delivery endpoint. The bulk delivery
|
||||
|
|
@ -203,15 +254,12 @@ This specification is subject to change. The current version which is in
|
|||
effect at a given site may be noted by XRD properties. The following
|
||||
properties MUST be present in the XRD providing the relevant endpoint:
|
||||
|
||||
<Property xmlns:zot="http://purl.og/zot/1.0"
|
||||
type="http://purl.org/zot/1.0/version"
|
||||
zot:version="1" />
|
||||
<Property type="http://purl.org/zot/1.0/version">1</Property>
|
||||
<Property type="http://purl.org/zot/1.0/accept">application/atom+xml</Property>
|
||||
|
||||
<Property xmlns:zot="http://purl.og/zot/1.0"
|
||||
type="http://purl.org/zot/1.0/accept"
|
||||
zot:accept="application/atom+xml" />
|
||||
|
||||
Version is specified in this document and indicates the current revision.
|
||||
Version is an increasing non-zero integer value. There are no minor versions.
|
||||
Implementations MAY provide compatibility to multiple incompatible versions
|
||||
by using this version indication. The "accept" indicates a range of document
|
||||
content types which may be enclosed in the underlying salmon magic envelope.
|
||||
|
|
@ -219,7 +267,8 @@ We anticipate this specification will in the future allow for a close variant
|
|||
of "message/rfc822" and which may include MIME. This may also be used to
|
||||
embed alternate message formats and protocols such as
|
||||
"application/x-diaspora+xml". If a delivery agent is unable to provide any
|
||||
acceptable data format, the delivery MUST be terminated/cancelled.
|
||||
acceptable data format to the remote system, the delivery to that system MUST
|
||||
be terminated/cancelled.
|
||||
|
||||
Foreign Messages
|
||||
****************
|
||||
|
|
@ -233,9 +282,18 @@ systems MAY reject foreign messages.
|
|||
|
||||
|
||||
|
||||
**********************
|
||||
* Zid authentication *
|
||||
**********************
|
||||
|
||||
|
||||
*******************************
|
||||
* Zid (Zot-ID) authentication *
|
||||
*******************************
|
||||
|
||||
This section of the document is considered separate from the delivery
|
||||
specification precding it and represents a different protocol, which is
|
||||
currently incomplete. This will be split off into another document in the
|
||||
future, but is presented here as a synergistic component of the Zot network
|
||||
model.
|
||||
|
||||
|
||||
URLs may be present within a zot message which refer to private and/or
|
||||
protected resources. Zid uses OpenID to gain access to these protected
|
||||
|
|
|
|||