Merge branch 'dev' into 3.4RC
This commit is contained in:
commit
5bd1ea0b95
@ -72,13 +72,13 @@ class PermissionLimits {
|
||||
* @param int $channel_id
|
||||
* @param string $perm (optional)
|
||||
* @return
|
||||
* * \b boolean false if no perm_limits set for this channel
|
||||
* * \b int if $perm is set, return one of PERMS_* constants for this permission
|
||||
* * \b false if no perm_limits set for this channel
|
||||
* * \b int if $perm is set, return one of PERMS_* constants for this permission, default 0
|
||||
* * \b array with all permission limits, if $perm is not set
|
||||
*/
|
||||
static public function Get($channel_id, $perm = '') {
|
||||
if($perm) {
|
||||
return PConfig::Get($channel_id, 'perm_limits', $perm);
|
||||
return intval(PConfig::Get($channel_id, 'perm_limits', $perm));
|
||||
}
|
||||
|
||||
PConfig::Load($channel_id);
|
||||
|
@ -41,7 +41,7 @@ class PermissionRoles {
|
||||
|
||||
break;
|
||||
|
||||
case 'social_party':
|
||||
case 'social_federation':
|
||||
$ret['perms_auto'] = false;
|
||||
$ret['default_collection'] = false;
|
||||
$ret['directory_publish'] = true;
|
||||
@ -281,7 +281,7 @@ class PermissionRoles {
|
||||
static public function roles() {
|
||||
$roles = [
|
||||
t('Social Networking') => [
|
||||
'social_party' => t('Social - Party'),
|
||||
'social_federation' => t('Social - Federation'),
|
||||
'social' => t('Social - Mostly Public'),
|
||||
'social_restricted' => t('Social - Restricted'),
|
||||
'social_private' => t('Social - Private')
|
||||
|
@ -191,7 +191,7 @@ class Articles extends \Zotlabs\Web\Controller {
|
||||
'$title' => t('Articles'),
|
||||
'$editor' => $editor,
|
||||
'$content' => $content,
|
||||
'$pager' => alt_pager($a,$pager_total)
|
||||
'$pager' => alt_pager($pager_total)
|
||||
]);
|
||||
|
||||
return $o;
|
||||
|
@ -194,7 +194,7 @@ class Cards extends \Zotlabs\Web\Controller {
|
||||
'$title' => t('Cards'),
|
||||
'$editor' => $editor,
|
||||
'$content' => $content,
|
||||
'$pager' => alt_pager($a, $pager_total)
|
||||
'$pager' => alt_pager($pager_total)
|
||||
]);
|
||||
|
||||
return $o;
|
||||
|
@ -380,7 +380,7 @@ class Channel extends \Zotlabs\Web\Controller {
|
||||
}
|
||||
|
||||
if((! $update) || ($checkjs->disabled())) {
|
||||
$o .= alt_pager($a,count($items));
|
||||
$o .= alt_pager(count($items));
|
||||
if ($mid && $items[0]['title'])
|
||||
\App::$page['title'] = $items[0]['title'] . " - " . \App::$page['title'];
|
||||
}
|
||||
|
@ -404,7 +404,7 @@ class Directory extends \Zotlabs\Web\Controller {
|
||||
'$entries' => $entries,
|
||||
'$dirlbl' => $suggest ? t('Channel Suggestions') : $dirtitle,
|
||||
'$submit' => t('Find'),
|
||||
'$next' => alt_pager($a,$j['records'], t('next page'), t('previous page')),
|
||||
'$next' => alt_pager($j['records'], t('next page'), t('previous page')),
|
||||
'$sort' => t('Sort options'),
|
||||
'$normal' => t('Alphabetic'),
|
||||
'$reverse' => t('Reverse Alphabetic'),
|
||||
|
@ -93,7 +93,7 @@ class Message extends \Zotlabs\Web\Controller {
|
||||
));
|
||||
|
||||
|
||||
$o .= alt_pager($a,count($r));
|
||||
$o .= alt_pager(count($r));
|
||||
|
||||
return $o;
|
||||
|
||||
|
@ -14,9 +14,12 @@ class Moderate extends \Zotlabs\Web\Controller {
|
||||
return;
|
||||
}
|
||||
|
||||
\App::set_pager_itemspage(60);
|
||||
$pager_sql = sprintf(" LIMIT %d OFFSET %d ", intval(\App::$pager['itemspage']), intval(\App::$pager['start']));
|
||||
|
||||
//show all items
|
||||
if(argc() == 1) {
|
||||
$r = q("select item.id as item_id, item.* from item where item.uid = %d and item_blocked = %d and item_deleted = 0 order by created desc limit 60",
|
||||
$r = q("select item.id as item_id, item.* from item where item.uid = %d and item_blocked = %d and item_deleted = 0 order by created desc $pager_sql",
|
||||
intval(local_channel()),
|
||||
intval(ITEM_MODERATED)
|
||||
);
|
||||
@ -26,7 +29,7 @@ class Moderate extends \Zotlabs\Web\Controller {
|
||||
if(argc() == 2) {
|
||||
$post_id = intval(argv(1));
|
||||
|
||||
$r = q("select item.id as item_id, item.* from item where item.id = %d and item.uid = %d and item_blocked = %d and item_deleted = 0 order by created desc limit 60",
|
||||
$r = q("select item.id as item_id, item.* from item where item.id = %d and item.uid = %d and item_blocked = %d and item_deleted = 0 order by created desc $pager_sql",
|
||||
intval($post_id),
|
||||
intval(local_channel()),
|
||||
intval(ITEM_MODERATED)
|
||||
@ -92,6 +95,7 @@ class Moderate extends \Zotlabs\Web\Controller {
|
||||
}
|
||||
|
||||
$o = conversation($items,'moderate',false,'traditional');
|
||||
$o .= alt_pager(count($items));
|
||||
return $o;
|
||||
|
||||
}
|
||||
|
@ -565,7 +565,7 @@ class Network extends \Zotlabs\Web\Controller {
|
||||
$o .= conversation($items,$mode,$update,$page_mode);
|
||||
|
||||
if(($items) && (! $update))
|
||||
$o .= alt_pager($a,count($items));
|
||||
$o .= alt_pager(count($items));
|
||||
|
||||
return $o;
|
||||
}
|
||||
|
@ -146,14 +146,14 @@ class New_channel extends \Zotlabs\Web\Controller {
|
||||
$name = array('name', t('Name or caption'), ((x($_REQUEST,'name')) ? $_REQUEST['name'] : ''), t('Examples: "Bob Jameson", "Lisa and her Horses", "Soccer", "Aviation Group"'), "*");
|
||||
$nickhub = '@' . \App::get_hostname();
|
||||
$nickname = array('nickname', t('Choose a short nickname'), ((x($_REQUEST,'nickname')) ? $_REQUEST['nickname'] : ''), sprintf( t('Your nickname will be used to create an easy to remember channel address e.g. nickname%s'), $nickhub), "*");
|
||||
$role = array('permissions_role' , t('Channel role and privacy'), ($privacy_role) ? $privacy_role : 'social', t('Select a channel role with your privacy requirements.') . ' <a href="help/member/member_guide#Account_Permission_Roles" target="_blank">' . t('Read more about roles') . '</a>',$perm_roles);
|
||||
$role = array('permissions_role' , t('Channel role and privacy'), ($privacy_role) ? $privacy_role : 'social', t('Select a channel role with your privacy requirements.') . ' <a href="help/member/member_guide#Channel_Permission_Roles" target="_blank">' . t('Read more about roles') . '</a>',$perm_roles);
|
||||
|
||||
$o = replace_macros(get_markup_template('new_channel.tpl'), array(
|
||||
'$title' => t('Create Channel'),
|
||||
'$desc' => t('A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions.'),
|
||||
'$desc' => t('A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things. Channels can make connections with other channels to share information with each other.') . ' ' . t('The type of channel you create affects the basic privacy settings, the permissions that are granted to connections/friends, and also the channel\'s visibility across the network.'),
|
||||
'$label_import' => t('or <a href="import">import an existing channel</a> from another location.'),
|
||||
'$name' => $name,
|
||||
'$role' => $role,
|
||||
'$role' => $role,
|
||||
'$default_role' => $default_role,
|
||||
'$nickname' => $nickname,
|
||||
'$validate' => t('Validate'),
|
||||
|
@ -34,6 +34,15 @@ class Owa extends \Zotlabs\Web\Controller {
|
||||
where hubloc_addr = '%s' ",
|
||||
dbesc(str_replace('acct:','',$keyId))
|
||||
);
|
||||
if(! $r) {
|
||||
$found = discover_by_webbie(str_replace('acct:','',$keyId));
|
||||
if($found) {
|
||||
$r = q("select * from hubloc left join xchan on hubloc_hash = xchan_hash
|
||||
where hubloc_addr = '%s' ",
|
||||
dbesc(str_replace('acct:','',$keyId))
|
||||
);
|
||||
}
|
||||
}
|
||||
if($r) {
|
||||
foreach($r as $hubloc) {
|
||||
$verified = \Zotlabs\Web\HTTPSig::verify('',$hubloc['xchan_pubkey']);
|
||||
|
@ -279,7 +279,7 @@ class Pubstream extends \Zotlabs\Web\Controller {
|
||||
$o .= '<div id="content-complete"></div>';
|
||||
|
||||
if(($items) && (! $update))
|
||||
$o .= alt_pager($a,count($items));
|
||||
$o .= alt_pager(count($items));
|
||||
|
||||
return $o;
|
||||
|
||||
|
@ -536,7 +536,7 @@ class Channel {
|
||||
'$deny_gid' => acl2json($perm_defaults['deny_gid']),
|
||||
'$suggestme' => $suggestme,
|
||||
'$group_select' => $group_select,
|
||||
'$role' => array('permissions_role' , t('Channel permissions category:'), $permissions_role, '', $perm_roles),
|
||||
'$role' => array('permissions_role' , t('Channel role and privacy'), $permissions_role, '', $perm_roles),
|
||||
'$defpermcat' => [ 'defpermcat', t('Default Permissions Group'), $default_permcat, '', $permcats ],
|
||||
'$permcat_enable' => feature_enabled(local_channel(),'permcats'),
|
||||
'$profile_in_dir' => $profile_in_dir,
|
||||
|
@ -17,33 +17,15 @@ class Webfinger extends \Zotlabs\Web\Controller {
|
||||
|
||||
$o .= '<br /><br />';
|
||||
|
||||
$old = false;
|
||||
if(x($_GET,'addr')) {
|
||||
$addr = trim($_GET['addr']);
|
||||
// if(strpos($addr,'@') !== false) {
|
||||
$res = webfinger_rfc7033($addr,true);
|
||||
if(! $res) {
|
||||
$res = old_webfinger($addr);
|
||||
$old = true;
|
||||
}
|
||||
// }
|
||||
// else {
|
||||
// if(function_exists('lrdd'))
|
||||
// $res = lrdd($addr);
|
||||
// }
|
||||
|
||||
if($res && $old) {
|
||||
foreach($res as $r) {
|
||||
if($r['@attributes']['rel'] === 'http://microformats.org/profile/hcard') {
|
||||
$hcard = unamp($r['@attributes']['href']);
|
||||
require_once('library/HTML5/Parser.php');
|
||||
$res['vcard'] = scrape_vcard($hcard);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
$res = webfinger_rfc7033($addr,true);
|
||||
if(! $res) {
|
||||
$res = old_webfinger($addr);
|
||||
}
|
||||
|
||||
|
||||
|
||||
$o .= '<pre>';
|
||||
$o .= str_replace("\n",'<br />',print_r($res,true));
|
||||
$o .= '</pre>';
|
||||
|
26
Zotlabs/Update/_1212.php
Normal file
26
Zotlabs/Update/_1212.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace Zotlabs\Update;
|
||||
|
||||
class _1212 {
|
||||
|
||||
function run() {
|
||||
|
||||
$r = q("select channel_id from channel where true");
|
||||
if($r) {
|
||||
foreach($r as $rv) {
|
||||
$role = get_pconfig($rv['channel_id'],'system','permissions_role');
|
||||
if($role !== 'custom') {
|
||||
$role_permissions = \Zotlabs\Access\PermissionRoles::role_perms($role);
|
||||
if(array_key_exists('limits',$role_permissions) && array_key_exists('post_comments',$role_permissions['limits'])) {
|
||||
set_pconfig($rv['channel_id'],'perm_limits','post_comments',$role_permissions['limits']['post_comments']);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return UPDATE_SUCCESS;
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -195,7 +195,9 @@ class HTTPSig {
|
||||
if($x && $x[0]['xchan_pubkey']) {
|
||||
return ($x[0]['xchan_pubkey']);
|
||||
}
|
||||
$r = as_fetch($id);
|
||||
|
||||
if(function_exists('as_fetch'))
|
||||
$r = as_fetch($id);
|
||||
|
||||
if($r) {
|
||||
$j = json_decode($r,true);
|
||||
|
4
boot.php
4
boot.php
@ -50,11 +50,11 @@ require_once('include/attach.php');
|
||||
require_once('include/bbcode.php');
|
||||
|
||||
define ( 'PLATFORM_NAME', 'hubzilla' );
|
||||
define ( 'STD_VERSION', '3.4RC' );
|
||||
define ( 'STD_VERSION', '3.5' );
|
||||
define ( 'ZOT_REVISION', '6.0a' );
|
||||
|
||||
|
||||
define ( 'DB_UPDATE_VERSION', 1211 );
|
||||
define ( 'DB_UPDATE_VERSION', 1212 );
|
||||
|
||||
define ( 'PROJECT_BASE', __DIR__ );
|
||||
|
||||
|
@ -1,25 +0,0 @@
|
||||
|
||||
$Projectname est un réseau de communication décentralisé, qui a pour but de proposer un moyen de communication qui est résistant à la censure, respecte la confidentialité et qui est indépendant des grandes companies mondiales. Ces companies géantes fonctionnent comme des espions. Ce sont des monopoles centralisés sur internet. A l'orignie internet ne fonctionnait pas ainsi, il était décentralisé.
|
||||
|
||||
$Projectname est libre et open source. Il est conçu pour pouvoir monter en charge depuis un petite Raspberry Pi jusqu'à un serveur puissant à plusieurs coeurs. Il peut être utilisé pour servir de moyen de communication entre quelques individus mais peut monter pour héberger plusieurs milliers d'utilisateurs.
|
||||
|
||||
$Projectname a pour but d'être utilisable sans documentation. Il est facile à utiliser pour un usage quotidien pour un utilisateur moyen mais aussi par des administrateurs système ou des développeurs.
|
||||
|
||||
Comment utiliser ? Cela dépend de ce que vous voulez en faire.
|
||||
|
||||
Il est écrit en php. Cela le rend facile à installer sur des hébergement actuels.
|
||||
|
||||
It is written in the PHP scripting language, thus making it trivial to install on any hosting platform in use today comme par exemple [url=http://mediatemple.com/]Media Temple[/url] ou bien [url=http://www.dreamhost.com/r.cgi?455365/]Dreamhost[/url] ou bien encore [url=https://www.linode.com]Linode[/url], [url=http://greenqloud.com]GreenQloud[/url] ou [url=https://aws.amazon.com]Amazon AWS[/url]. Il fonctionne aussi trés bien sur un VPS de OVH.
|
||||
|
||||
En d'autres mots, $Projectname peut tourner sur n'importe quelle plateforme qui a un serveur web, une base de donnée mysql et du php.
|
||||
|
||||
|
||||
En plus, $Projectname offre un grand nombre de suppléments :
|
||||
|
||||
[b]Identification en un clic :[/b] cela signifie que vous pouvez accéder à d'autres sits $Projectname simplement en cliquant sur un lien. L'authentificaiton se fera alors automatiquement sans mot de passe. Oubliez le temps ou il vous fallait un grand nom de mot de passe pour aller sur différents sites.
|
||||
|
||||
[b]Clone :[/b] Votre présence en ligne n'a plus besoin d'être faite sur un seul et unique site. Vous pouvez cloner ou importer votre identité (on peut aussi dire votre canal) sur un autre serveur (hub). Si votre serveur principal a des problème et s'arrête, pas de problème, vos contacts, vos messages seront continueront automatiquement à être accessible grĉe à votre canal clone. [i](*: Pour le moment seul les messages sont clonés)[/i]
|
||||
|
||||
[b]Confidentialité :[/b] Votre identité $Projectname (Zot IDs) peut être supprimé, sauvegardé ou cloné. L'utilisateur à le total contrôle sur ses donnés. Et si vous décidez de supprimer totalement votre compte avec tous le contenu, tout ce que vous avez à faire est de cliquer sur le bouton de suppression du compte. C'est immédiat. Aucune question ne vous sera posé sur la raion. Vous être libre de le faire quand vous voulez.
|
||||
|
||||
#include doc/macros/main_footer.bb;
|
198
doc/fr/about/about.bb
Normal file
198
doc/fr/about/about.bb
Normal file
@ -0,0 +1,198 @@
|
||||
[h3]Qu'est-ce que $Projectname ?[/h3]
|
||||
Le nom du projet est un ensemble [b]libre et open source[/b] d'applications et de services web fonctionnant sur un type particulier de serveur web, appelé "hub" (nœud), qui peut se connecter à d'autres hub dans un réseau décentralisé que nous aimons appeler "la grille", fournissant des services sophistiqués de communication, d'identité et de contrôle d'accès qui fonctionnent ensemble de manière transparente à travers les domaines et les sites web indépendants. Il permet à n'importe qui de publier publiquement ou de [b]manière privée[/b] du contenu via des "canaux", qui sont les identités fondamentales, cryptographiquement sécurisées qui fournissent l'authentification indépendamment des hubs qui les hébergent. Cette libération révolutionnaire de l'identité en ligne à partir de serveurs et domaines individuels est appelée "identité nomade", et elle est alimentée par le protocole Zot, un nouveau cadre pour le contrôle d'accès décentralisé avec des permissions extensibles et à finement configurables.
|
||||
|
||||
[h3]D'accord... alors qu'est-ce que $Projectname ?[/h3]
|
||||
Du point de vue pratique des membres du hub qui utilisent le logiciel, $Projectname offre une variété d'applications et de services Web familiers et intégrés, y compris :
|
||||
[ul]
|
||||
[li]fils de discussion sur les réseaux sociaux[/li]
|
||||
[li]Stockage de fichiers dans le cloud[/li]
|
||||
[li]calendrier et contacts (avec support CalDAV et CardDAV)[/li]
|
||||
[li]Hébergement de pages web avec un système de gestion de contenu[/li]
|
||||
[li]wiki[/li]
|
||||
[li] et plus....[/li]
|
||||
[/ul]
|
||||
Alors que toutes ces applications et services peuvent être trouvés dans d'autres progiciels, seul $Projectname vous permet de définir des permissions pour des groupes et des individus qui n'ont peut-être même pas de comptes sur votre hub ! Dans les applications web typiques, si vous voulez partager des choses en privé sur Internet, les personnes avec qui vous partagez doivent avoir des comptes sur le serveur hébergeant vos données ; autrement, il n'y a pas de moyen robuste pour votre serveur [i]d'authentifier[/i] les visiteurs du site pour savoir s'ils doivent leur accorder l'accès. $Projectname résout ce problème avec un système avancé [i]d'authentification à distance[/i] qui valide l'identité des visiteurs en employant des techniques qui incluent la cryptographie à clé publique.
|
||||
|
||||
[h3]Pile logicielle[/h3].
|
||||
La pile logicielle $Projectname est une application serveur web relativement standard écrite principalement en PHP/MySQL et [url=https://github.com/redmatrix/hubzilla/blob/master/install/INSTALL.txt] nécessitant un peu plus qu'un serveur web, une base de données compatible MySQL, et le langage de script PHP[/url]. Il est conçu pour être facilement installable par ceux qui ont des compétences de base en administration de sites Web sur des plates-formes d'hébergement mutualisé typiques avec une large gamme de matériel informatique. Il est aussi facilement extensible via des plugins et des thèmes et d'autres outils tiers.
|
||||
|
||||
[h3]Glossaire[/h3].
|
||||
[dl terms="b"]
|
||||
[*= Hub] Une instance de ce logiciel s'exécutant sur un serveur web standard.
|
||||
|
||||
[*=Grille] Le réseau global de hubs qui échangent des informations entre eux en utilisant le protocole Zot.
|
||||
|
||||
[*=Canaux] L'identité fondamentale sur la grille. Un canal peut représenter une personne, un blog ou un forum pour n'en nommer que quelques-uns. Les canaux peuvent établir des connexions avec d'autres canaux pour partager des informations avec des permissions très détaillées.
|
||||
|
||||
[*=Clone] Les canaux peuvent avoir des clones associés à des comptes séparés et non liés sur des hubs indépendants. Les communications partagées avec un canal sont synchronisées entre les clones de canal, ce qui permet à un canal d'envoyer et de recevoir des messages et d'accéder au contenu partagé à partir de plusieurs concentrateurs. Cela fournit une résilience contre les pannes de réseau et de matériel, ce qui peut être un problème important pour les serveurs Web hébergés ou à ressources limitées. Le clonage vous permet de déplacer complètement un canal d'un hub à un autre, emportant avec vous vos données et vos connexions. Voir identité nomade.
|
||||
|
||||
[*=Identité nomade] La capacité d'authentifier et de migrer facilement une identité à travers des hubs indépendants et des domaines web. L'identité nomade fournit une véritable propriété d'une identité en ligne, car les identités des canaux contrôlés par un compte sur un hub ne sont pas liées au hub lui-même. Un hub est plus comme un "host" pour les chaînes. Avec Hubzilla, vous n'avez pas de "compte" sur un serveur comme vous le faites sur des sites web typiques ; vous possédez une identité que vous pouvez emporter avec vous à travers la grille en utilisant des clones.
|
||||
|
||||
[*= [url=[baseurl]/help/developer/zot_protocol]Zot[/url]] Le nouveau protocole basé sur JSON pour la mise en œuvre de communications et de services décentralisés sécurisés. Il diffère de nombreux autres protocoles de communication en construisant les communications sur un cadre décentralisé d'identité et d'authentification. Le composant d'authentification est similaire à OpenID sur le plan conceptuel, mais il est isolé des identités basées sur le DNS. Dans la mesure du possible, l'authentification à distance est silencieuse et invisible. Il s'agit d'un mécanisme discret de contrôle d'accès distribué à l'échelle de l'Internet.
|
||||
[/dl]
|
||||
|
||||
[h3]Caractéristiques[/h3]
|
||||
Cette page énumère quelques-unes des fonctionnalités de base de $Projectname qui sont regroupées avec la version officielle. Le nom du projet est une plate-forme hautement extensible, ce qui permet d'ajouter plus de fonctionnalités et de fonctionnalités via des thèmes et des plugins supplémentaires.
|
||||
|
||||
[h4]Curseur d'affinité[/h4]
|
||||
|
||||
Lors de l'ajout de connexions dans $Projectname, les membres ont la possibilité d'assigner des niveaux d'"affinité" (à quel point votre amitié est proche) à la nouvelle connexion. Par exemple, lorsque vous ajoutez quelqu'un qui se trouve être une personne dont vous suivez le blog, vous pourriez assigner à son canal un niveau d'affinité de "Connaissances".
|
||||
|
||||
D'autre part, lors de l'ajout du canal d'un ami, ils pourraient être placés sous le niveau d'affinité "d'Amis".
|
||||
|
||||
A ce stade, l'outil $Projectname [i]curseur d'affinité[/i], qui apparaît généralement en haut de votre page "Matrix" ;, ajuste le contenu de la page pour inclure ceux qui se situent dans la plage d'affinité désirée. Les canaux en dehors de cette plage ne seront pas affichés, à moins que vous n'ajustiez le curseur pour les inclure.
|
||||
|
||||
Le curseur d'affinité permet de filtrer instantanément de grandes quantités de contenu, regroupées par niveaux de proximité.
|
||||
|
||||
[h4]Filtrage de connexion[/h4]
|
||||
|
||||
Vous avez la possibilité de contrôler précisément ce qui apparaît dans votre flux en utilisant le "Filtre de connexion" en option. Lorsqu'il est activé, l'éditeur de connexion fournit des entrées pour sélectionner les critères qui doivent être appariés afin d'inclure ou d'exclure un message spécifique d'un canal spécifique. Une fois qu'un message a été autorisé, tous les commentaires à ce message sont autorisés, qu'ils correspondent ou non aux critères de sélection. Vous pouvez sélectionner des mots qui, s'ils sont présents, bloquent le message ou s'assurent qu'il est inclus dans votre flux. Les expressions régulières peuvent être utilisées pour un contrôle encore plus fin, ainsi que les hashtags ou même la langue détectée du message.
|
||||
|
||||
[h4]Listes de contrôle d'accès[/h4]
|
||||
|
||||
Lors du partage de contenu, les membres ont l'option de restreindre la visibilité du contenu. En cliquant sur le cadenas sous la boîte de partage, on peut choisir les destinataires désirés du message, en sélectionnant leur nom.
|
||||
|
||||
Une fois envoyé, le message ne sera visible que par l'expéditeur et les destinataires sélectionnés. En d'autres termes, le message n'apparaîtra sur aucun mur public.
|
||||
|
||||
Les listes de contrôle d'accès peuvent être appliquées au contenu et aux messages, aux photos, aux événements, aux pages Web, aux salons de discussion et aux fichiers.
|
||||
|
||||
[h4]Ouverture de session unique[/h4]
|
||||
|
||||
Les listes de contrôle d'accès fonctionnent pour tous les canaux de la grille grâce à notre technologie unique d'ouverture de session unique. La plupart des liens internes fournissent un jeton d'identité qui peut être vérifié sur d'autres sites $Projectname et sert à contrôler l'accès aux ressources privées. Vous vous connectez une seule fois à votre hub d'origine. Après cela, l'authentification à toutes les ressources $Projectname est "magique".
|
||||
|
||||
[h4]Stockage de fichiers avec WebDAV[/h4]
|
||||
|
||||
Les fichiers peuvent être téléchargés dans votre espace de stockage personnel à l'aide des utilitaires de votre système d'exploitation (glisser-déposer dans la plupart des cas). Vous pouvez protéger ces fichiers avec des listes de contrôle d'accès à n'importe quelle combinaison de membres $Projectname (y compris certains membres tiers du réseau) ou les rendre publics.
|
||||
|
||||
[h4]Albums de photos[/h4]
|
||||
|
||||
Stockez vos photos dans des albums. Toutes vos photos peuvent être protégées par des listes de contrôle d'accès.
|
||||
|
||||
[h4]Calendrier des événements[/h4]
|
||||
|
||||
Créez et gérez des événements et tâches, qui peuvent également être protégés par des listes de contrôle d'accès. Les événements peuvent être importés et exportés vers d'autres logiciels en utilisant le format standard de l'industrie vcalendar/iCal pour être partagés avec d'autres. Les anniversaires sont automatiquement ajoutés par vos amis et convertis en votre fuseau horaire correct afin que vous sachiez précisément quand l'anniversaire se produit - peu importe où vous vous trouvez dans le monde par rapport à la personne fêtée. Les événements sont normalement créés avec des compteurs de présence afin que vos amis et vos connexions puissent répondre instantanément.
|
||||
|
||||
[h4]Salons de discussion[/h4]
|
||||
|
||||
Vous pouvez créer n'importe quel nombre de salles de chat personnelles et autoriser l'accès via des listes de contrôle d'accès. Ceux-ci sont généralement plus sûrs que XMPP, IRC et autres transports de messagerie instantanée, bien que nous autorisions également l'utilisation de ces autres services via des plugins.
|
||||
|
||||
[h4]Création de pages Web[/h4]
|
||||
|
||||
$Projectname dispose de nombreux outils de création de " Gestion de contenu " pour la création de pages Web, y compris l'édition de mise en page, les menus, les blocs, les widgets et les régions de pages et de contenu. Tous ces éléments peuvent être contrôlés de façon à ce que les pages qui en résultent soient privées pour le public auquel elles sont destinées.
|
||||
|
||||
[h4]Les applications[/h4]
|
||||
|
||||
Les applications peuvent être construites et distribuées par les membres. Ces applications sont différentes des applications " verrouillées par le fournisseur" traditionnelles parce qu'elles sont entièrement contrôlées par l'auteur - qui peut fournir un contrôle d'accès sur les pages de l'application de destination et facturer en conséquence pour cet accès. La plupart des applications de $Projectname sont gratuites et peuvent être créées facilement par ceux qui n'ont aucune connaissance en programmation.
|
||||
|
||||
[h4]Mise en page[/h4]
|
||||
|
||||
La mise en page est basée sur un langage de description appelé Comanche. $Projectname est lui-même rédigé avec des mises en page Comanche que vous pouvez modifier. Cela permet un niveau de personnalisation que vous ne trouverez pas dans d'autres environnements dits "multi-utilisateurs".
|
||||
|
||||
[h4]Marque-pages[/h4]
|
||||
|
||||
Partagez, sauvegardez et gérez les marque-pages à partir des liens fournis dans les conversations.
|
||||
|
||||
[h4]Cryptage des messages privés et protection de la vie privée[/h4].
|
||||
|
||||
Le courrier privé est stocké dans un format obscurci. Bien que cela ne soit pas à l'épreuve des balles, cela empêche généralement l'espionnage occasionnel par l'administrateur du site ou le fournisseur d'accès Internet.
|
||||
|
||||
Chaque canal $Projectname possède son propre jeu unique de clés RSA 4096 bits privées et publiques associées, générées lors de la première création des canaux. Ceci est utilisé pour protéger les messages privés et les messages en transit.
|
||||
|
||||
De plus, les messages peuvent être créés en utilisant un "chiffrement de bout en bout" qui ne peut pas être lu par les opérateurs $Projectname ou les FAI ou toute personne ne connaissant pas le code d'accès.
|
||||
|
||||
Les messages publics ne sont généralement pas cryptés en transit ou en stockage.
|
||||
|
||||
Les messages privés peuvent être retirés (non expédiés) bien qu'il n'y ait aucune garantie que le destinataire ne l'a pas encore lu.
|
||||
|
||||
Posts et messages peuvent être créés avec une date d'expiration, date à laquelle ils seront supprimés/supprimés sur le site du destinataire.
|
||||
|
||||
[h4]Fédération des services[/h4]
|
||||
|
||||
En plus d'ajouter des greffons de connexion à une variété de réseaux alternatifs, il existe un support natif pour l'importation de contenu à partir de flux RSS/Atom pour créer des canaux spéciaux. Des plugins sont également disponibles pour communiquer avec d'autres personnes en utilisant les protocoles Diaspora et GNU-Social (OStatus). Ces réseaux ne prennent pas en charge l'identité nomade ou le contrôle d'accès inter-domaines ; cependant, les communications de base sont prises en charge par Diaspora, Friendica, GNU-Social, Mastodon et d'autres fournisseurs qui utilisent ces protocoles.
|
||||
|
||||
Il existe également un support expérimental pour l'authentification OpenID qui peut être utilisé dans les listes de contrôle d'accès. Il s'agit d'un travail en cours. Votre hub $Projectname peut être utilisé en tant que fournisseur OpenID pour vous authentifier auprès des services externes qui utilisent cette technologie.
|
||||
|
||||
Les canaux peuvent avoir la permission de devenir des "canaux dérivés" lorsque deux ou plusieurs canaux existants se combinent pour créer un nouveau canal topique.
|
||||
|
||||
[h4]Groupes de protection de la vie privée[/h4]
|
||||
|
||||
Notre mise en œuvre de groupes de protection de la vie privée est similaire à Google "Circles" et Diaspora "Aspects". Cela vous permet de filtrer votre flux entrant par groupes sélectionnés et de définir automatiquement la liste de contrôle d'accès sortant sur ceux de ce groupe de confidentialité lorsque vous postez un message. Vous pouvez l'annuler à tout moment (avant l'envoi du poste).
|
||||
|
||||
[h4]Services d'annuaire[/h4]
|
||||
|
||||
Nous fournissons un accès facile à un annuaire des membres et des outils décentralisés capables de fournir des "suggestions" d'amis. Les répertoires sont des sites $Projectname normaux qui ont choisi d'accepter le rôle de serveur d'annuaire. Cela nécessite plus de ressources que la plupart des sites typiques et n'est donc pas la valeur par défaut. Les annuaires sont synchronisés et mis en miroir de sorte qu'ils contiennent tous des informations à jour sur l'ensemble du réseau (sous réserve des délais de propagation normaux).
|
||||
|
||||
[h4]TLS/SSL[/h4]
|
||||
|
||||
Pour les hubs $Projectname qui utilisent TLS/SSL, les communications entre le client et le serveur sont cryptées via TLS/SSL. Étant donné les récentes révélations dans les médias concernant la surveillance mondiale et le contournement du chiffrement par la NSA et le GCHQ, il est raisonnable de supposer que les communications protégées par HTTPS peuvent être compromises de diverses façons. Les communications privées sont donc cryptées à un niveau supérieur avant l'envoi hors site.
|
||||
|
||||
[h4]Réglages des canaux[/h4]
|
||||
|
||||
Lorsqu'un canal est créé, un rôle est choisi qui applique un certain nombre de paramètres de sécurité et de confidentialité préconfigurés. Celles-ci sont choisies pour les meilleures pratiques afin de maintenir la protection de la vie privée aux niveaux requis.
|
||||
|
||||
Si vous choisissez un rôle de confidentialité "personnalisé", chaque canal permet de définir des permissions finement définies pour divers aspects de la communication. Par exemple, sous la rubrique " Paramètres de sécurité et de confidentialité ", chaque aspect sur le côté gauche de la page comporte six (6) options de visualisation et d'accès possibles, qui peuvent être sélectionnées en cliquant sur le menu déroulant. Il existe également un certain nombre d'autres paramètres de confidentialité que vous pouvez modifier.
|
||||
|
||||
Les options sont :
|
||||
|
||||
- Personne d'autre que vous-même.
|
||||
- Seulement ceux que vous autorisez spécifiquement.
|
||||
- N'importe qui dans votre carnet d'adresses.
|
||||
- Toute personne sur ce site Web.
|
||||
- N'importe qui dans ce réseau.
|
||||
- Toute personne authentifiée.
|
||||
- N'importe qui sur Internet.
|
||||
|
||||
[h4]Forums publics et privés[/h4]
|
||||
|
||||
Les forums sont généralement des canaux qui peuvent être ouverts à la participation de plusieurs auteurs. Il existe actuellement deux mécanismes pour poster sur les forums : 1) les messages " mur à mur " et 2) via les balises forum @mention. Les forums peuvent être créés par n'importe qui et utilisés à n'importe quelle fin. Le répertoire contient une option pour rechercher des forums publics. Les forums privés ne peuvent être affichés et souvent vus que par les membres.
|
||||
|
||||
[h4]Clonage de compte[/h4].
|
||||
|
||||
Les comptes en $Projectname sont désignés sous le nom de [i]identités nomades[/i], car l'identité d'un membre n'est pas liée à celle du hub où l'identité a été créée à l'origine. Par exemple, lorsque vous créez un compte Facebook ou Gmail, il est lié à ces services. Ils ne peuvent pas fonctionner sans Facebook.com ou Gmail.com.
|
||||
|
||||
Par contre, disons que vous avez créé une identité $Projectname appelée [b]tina@$Projectnamehub.com[/b]. Vous pouvez le cloner dans un autre hub $Projectname en choisissant le même nom, ou un nom différent : [b]machin@quelquonque$ProjectnameHub.info[/b].
|
||||
|
||||
Les deux canaux sont maintenant synchronisés, ce qui signifie que tous vos contacts et préférences seront dupliqués sur votre clone. Peu importe que vous envoyiez un courrier à partir de votre hub d'origine ou du nouveau hub. Les messages seront reflétés sur les deux comptes.
|
||||
|
||||
C'est une caractéristique plutôt révolutionnaire, si l'on considère certains scénarios :
|
||||
|
||||
Que se passe-t-il si le hub où une identité est basée se déconnecte soudainement ? Sans clonage, un membre ne pourra pas communiquer jusqu'à ce que ce hub revienne en ligne (sans aucun doute, beaucoup d'entre vous ont vu et maudit le Twitter "Fail Whale"). Avec le clonage, vous n'avez qu'à vous connecter à votre compte cloné, et la vie continue de manière joyeuse pour toujours.
|
||||
|
||||
L'administrateur de votre hub n'a plus les moyens de payer son hub gratuit et public $Projectname. Il annonce que le hub sera fermé dans deux semaines. Cela vous donne amplement le temps de cloner votre (vos) identité(s) et de préserver vos relations $Projectname, vos amis et le contenu.
|
||||
|
||||
Que faire si votre identité est soumise à la censure du gouvernement ? Votre fournisseur de concentrateur peut être contraint de supprimer votre compte, ainsi que les identités et les données associées. Avec le clonage, $Projectname offre [b]une résistance à la censure[/b]. Vous pouvez avoir des centaines de clones, si vous le souhaitez, tous nommés différemment, et existant sur de nombreux hubs différents, éparpillés sur Internet.
|
||||
|
||||
Le nom du projet offre de nouvelles possibilités intéressantes pour la protection de la vie privée. Vous pouvez en lire plus à la page <Meilleures pratiques en communications privées>.
|
||||
|
||||
Certaines mises en garde s'appliquent. Pour une explication complète du clonage d'identité, lisez la page <Comment cloner mon identité>.
|
||||
|
||||
[h4]Sauvegarde de compte[/h4]
|
||||
|
||||
Hubzilla offre une simple sauvegarde de votre compte en un seul clic, où vous pouvez télécharger une sauvegarde complète de votre (vos) profil(s). Les sauvegardes peuvent ensuite être utilisées pour cloner ou restaurer un profil.
|
||||
|
||||
[h4]Suppression de compte[/h4]
|
||||
|
||||
Les comptes peuvent être immédiatement supprimés en cliquant sur un lien. Voilà, c'est tout. Tout le contenu associé est ensuite supprimé de la grille (y compris les messages et tout autre contenu produit par le profil supprimé). Selon le nombre de connexions que vous avez, le processus de suppression du contenu distant peut prendre un certain temps, mais il est programmé pour se produire aussi rapidement que possible.
|
||||
|
||||
[h4]Suppression de contenu[/h4]
|
||||
|
||||
Tout contenu créé dans Hubzilla reste sous le contrôle du membre (ou du canal) qui l'a créé à l'origine. A tout moment, un membre peut supprimer un message ou une série de messages. Le processus de suppression garantit que le contenu est supprimé, qu'il ait été posté sur le hub d'origine d'un canal ou sur un autre hub, où le canal a été authentifié à distance via Zot (protocole de communication et d'authentification Hubzilla).
|
||||
|
||||
[h4]Médias[/h4]
|
||||
|
||||
Semblable à tout autre système moderne de blogging, réseau social ou service de micro-blogging, Hubzilla prend en charge le téléchargement de fichiers, l'intégration de vidéos, l'intégration de liens vers des pages web.
|
||||
|
||||
[h4]Prévisualisation/Édition[/h4]
|
||||
|
||||
Les messages et commentaires peuvent être prévisualisés avant l'envoi et édités après l'envoi.
|
||||
|
||||
[h4]Vote/consensus[/h4]
|
||||
Les messages peuvent être transformés en éléments de "consensus", ce qui permet aux lecteurs d'offrir un retour d'information, qui est rassemblé en compteurs "d'accord", "en désaccord" et "abstention". Cela vous permet de mesurer l'intérêt pour les idées et de créer des sondages informels.
|
||||
|
||||
[h4]Extension de Hubzilla[/h4]
|
||||
|
||||
Hubzilla peut être étendu de plusieurs façons, par la personnalisation du site, la personnalisation personnelle, la définition d'options, de thèmes et dde greffons.
|
||||
|
||||
[h4]API[/h4]
|
||||
|
||||
Une API est disponible pour l'utilisation par des services tiers. Un plugin fournit également une implémentation de base de l'API Twitter (pour laquelle il existe des centaines d'outils tiers). L'accès peut être fourni par login/mot de passe ou OAuth, et l'enregistrement client des applications OAuth est fourni.
|
73
doc/fr/toc.html
Normal file
73
doc/fr/toc.html
Normal file
@ -0,0 +1,73 @@
|
||||
<div class="" id="accordion">
|
||||
<div class="">
|
||||
<div class="">
|
||||
<h3 class="panel-title">
|
||||
A propos
|
||||
</h3>
|
||||
</div>
|
||||
<div id="about" class="doco-section">
|
||||
<div class="flex-column">
|
||||
<a class="nav-link" href="/help/about/about">A propos</a>
|
||||
<a class="nav-link" href="/help/about/project">Le projet</a>
|
||||
<a class="nav-link" href="/help/about/about_hub">A propos de ce hub</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="">
|
||||
<div class="">
|
||||
<h3 class="panel-title">
|
||||
Membres
|
||||
</h3>
|
||||
</div>
|
||||
<div id="members" class="doco-section">
|
||||
<div class="flex-column">
|
||||
<a class="nav-link" href="/help/member/member_guide">Guide</a>
|
||||
<a class="nav-link" href="/help/member/bbcode">Référence du BBcode</a>
|
||||
<a class="nav-link" href="/help/bugs">Signalement des bogues</a>
|
||||
<a class="nav-link" href="/help/member/member_faq">FAQ</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel">
|
||||
<div class="">
|
||||
<h3 class="panel-title">
|
||||
Administrateurs
|
||||
</h3>
|
||||
</div>
|
||||
<div id="administrators" class="doco-section">
|
||||
<div class="flex-column">
|
||||
<a class="nav-link" href="/help/admin/administrator_guide">Guide</a>
|
||||
<a class="nav-link" href="/help/admin/hub_snapshots">Instantanés de Hub</a>
|
||||
<a class="nav-link" href="/help/database">Tables de base de données</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel">
|
||||
<div class="">
|
||||
<h3 class="panel-title">
|
||||
Développeurs
|
||||
</h3>
|
||||
</div>
|
||||
<div id="developers" class="doco-section">
|
||||
<div class="flex-column">
|
||||
<a class="nav-link" href="/help/developer/developer_guide">Guide</a>
|
||||
<a class="nav-link" href="/help/developer/covenant">Code de conduite</a>
|
||||
<a class="nav-link" href="/help/developer/zot_protocol">Zot Protocol</a>
|
||||
<a class="nav-link" href="/help/developer/api_zot">Zot API</a>
|
||||
<a class="nav-link" href="/help/hooklist">Hooks</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel">
|
||||
<div class="">
|
||||
<h3 class="panel-title">
|
||||
Tutoriels
|
||||
</h3>
|
||||
</div>
|
||||
<div id="tutorials" class="doco-section">
|
||||
<div class="flex-column">
|
||||
<a class="nav-link" href="/help/tutorials/personal_channel">Canal personnel</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@ -22,67 +22,41 @@ Click the link to read the site's [zrl=[baseurl]/help/TermsOfService]Terms of Se
|
||||
|
||||
Once you have provided the necessary details, click the 'Register' button. Some sites may require administrator approval before the registration is processed, and you will be alerted if this is the case. Please watch your email (including spam folders) for your registration approval.
|
||||
|
||||
[b]Create a Channel[/b]
|
||||
|
||||
Next, you will be presented with the "Add a channel" screen. Normally, your first channel will be one that represents you - so using your own name (or psuedonym) as the channel name is a good idea. The channel name should be thought of as a title, or brief description of your channel. The "choose a short nickname" box is similar to a "username" field. We will use whatever you enter here to create a channel address, which other people will use to connect to you, and you will use to log in to other sites. This looks like an email address, and takes the form nickname@siteyouregisteredat.xyz
|
||||
|
||||
When your channel is created you will be taken straight to your settings page where you can define permissions, enable features, etc. All these things are covered in the appropriate section of the helpfiles.
|
||||
[h3]Channels[/h3]
|
||||
|
||||
See Also
|
||||
[zrl=[baseurl]/help/accounts_profiles_channels_basics]The Basics about Identities within $Projectname[/zrl]
|
||||
[zrl=[baseurl]/help/accounts]Accounts[/zrl]
|
||||
[zrl=[baseurl]/help/profiles]Profiles[/zrl]
|
||||
[zrl=[baseurl]/help/permissions]Permissions[/zrl]
|
||||
[zrl=[baseurl]/help/remove_account]Remove Account[/zrl]
|
||||
[h4]What are channels?[/h4]
|
||||
|
||||
[b]Profiles[/b]
|
||||
Channels are simply collections of content stored in one place. A channel can represent anything. It could represent you, a website, a forum, photo albums, anything. For most people, their first channel with be "Me".
|
||||
|
||||
$Projectname has unlimited profiles. You may use different profiles to show different "sides of yourself" to different audiences. This is different to having different channels. Different channels allow for completely different sets of information. You may have a channel for yourself, a channel for your sports team, a channel for your website, or whatever else. A profile allows for finely graded "sides" of each channel. For example, your default public profile might say "Hello, I'm Fred, and I like laughing". You may show your close friends a profile that adds "and I also enjoy dwarf tossing".
|
||||
The most important features for a channel that represents "me" are:
|
||||
[ul]
|
||||
[*]Secure and private "spam free" communications
|
||||
|
||||
You always have a profile known as your "default" or "public" profile. This profile is always available to the general public and cannot be hidden (there may be rare exceptions on privately run or disconnected sites). You may, and probably should restrict the information you make available on your public profile.
|
||||
[*]Identity and "single-signon" across the entire network
|
||||
|
||||
That said, if you want other friends to be able to find you, it helps to have the following information in your public profile...
|
||||
[*]Privacy controls and permissions which extend to the entire network
|
||||
|
||||
[ul][*]Your real name or at least a nickname everybody knows
|
||||
[*]A photo of you
|
||||
[*]Your location on the planet, at least to a country level.[/ul]
|
||||
[*]Directory services (like a phone book)
|
||||
[/ul]
|
||||
In short, a channel that represents yourself is "me, on the internet".
|
||||
|
||||
In addition, if you'd like to meet people that share some general interests with you, please take a moment and add some "Keywords" to your profile. Such as "music, linux, photography" or whatever. You can add as many keywords as you like.
|
||||
|
||||
To create an alternate profile, first go to [zrl=[baseurl]/settings/features]Settings > Additional Features[/zrl] and enable "Multiple Profiles" there, otherwise you won't have the ability to use more than just your default profile.
|
||||
|
||||
Then select "Edit Profiles" from the menu of your $Projectname site. You may edit an existing profile, change the profile photo, add things to a profile or create a new profile. You may also create a "clone" of an existing profile if you only wish to change a few items but don't wish to enter all the information again. To do that, click on the profile you want to clone and choose "Clone this profile" there.
|
||||
|
||||
In the list of your profiles, you can also choose the contacts who can see a specific profile. Just click on "Edit visibility" next to the profile in question (only available for the profiles that are not your default profile) and then click on specific connections to add them to or remove them from the group of people who can see this profile.
|
||||
|
||||
Once a profile has been selected, when the person views your profile, they will see the private profile you have assigned. If they are not authenticated, they will see your public profile.
|
||||
|
||||
There is a setting which allows you to publish your profile to a directory and ensure that it can be found by others. You can change this setting on the "Settings" page.
|
||||
|
||||
If you do not wish to be found be people unless you give them your channel address, you may leave your profile unpublished.
|
||||
|
||||
[b]Keywords and Directory Search[/b]
|
||||
|
||||
On the directory page, you may search for people with published profiles. Currently, only the name field and the keywords are searched. You may also include such keywords in your default profile - which may be used to search for common interests with other members. Keywords are used in the channel suggestion tool and although they aren't visible in the directory, they are shown if people visit your profile page.
|
||||
|
||||
On your Connnections page and in the directory there is a link to "Suggestions" or "Channel Suggestions", respectively. This will find channels who have matching and/or similar keywords. The more keywords you provide, the more relevant the search results that are returned. These are sorted by relevance.
|
||||
|
||||
See Also
|
||||
|
||||
[zrl=[baseurl]/help/AdvancedSearch]Advanced Searching[/zrl]
|
||||
|
||||
[h3]Account Permission Roles[/h3]
|
||||
[h3]Channel Permission Roles[/h3]
|
||||
|
||||
When you create a new channel, you will be asked to select a permission role based on how you envision using this channel. The most popular permission roles are the Social Networking roles. You have many other choices, providing options which are analagous to Facebook Groups and Pages, collaborative spaces, newsfeeds, and more. These roles automatically configure several different system variables ranging from what permissions are granted to friends, to your default privacy settings and visibility choices. Advanced configurations are available to let you adjust each of these parameters to your needs, but we've found that most people prefer to "set it and forget it". Thew following describes some of the different roles which are currently available and how they impact your privacy and ability to interact.
|
||||
|
||||
[h4]Social[/h4]
|
||||
|
||||
[b]Federation[/b]
|
||||
|
||||
The channel is a very permissive social networking profile which is compatible with other federated social networks. The permission policies are similar to Twitter and mostly compatible with Diaspora and Mastodon. Privacy is a lower priority than ease of access and connecting with others. Anybody in the network can comment on your public posts and send you private mail. By default posts and published items are public, but you can over-ride this when creating the item and restrict it. You are listed in the directory. Your online presence and connections are visible to others. This mode [i]may[/i] increase your exposure to undesired communications and spam. This role is not generally recommended [i]unless[/i] you need to interact regularly with members of other networks.
|
||||
|
||||
[b]Mostly Public[/b]
|
||||
|
||||
The channel is a typical social networking profile. By default posts and published items are public, but you can over-ride this when creating the item and restrict it. You are listed in the directory. Your online presence and connections are visible to others. Only your immediate connections can comment on your public posts and send you private mail. The permission policies are similar to Facebook.
|
||||
|
||||
[b]Party[/b]
|
||||
|
||||
The channel is a permissive social networking profile. The permission policies are similar to Twitter and several free networks such as Diaspora and Mastodon. Anybody in the network can comment on your public posts and send you private mail. By default posts and published items are public, but you can over-ride this when creating the item and restrict it. You are listed in the directory. Your online presence and connections are visible to others. This mode [i]may[/i] increase your exposure to undesired communications and spam.
|
||||
The channel is a typical social networking profile. By default posts and published items are public, but you can over-ride this when creating the item and restrict it. You are listed in the directory. Your online presence and connections are visible to others. Only your immediate connections can comment on your public posts and send you private mail. The permission policies are similar to Facebook.
|
||||
|
||||
|
||||
[b]Restricted[/b]
|
||||
@ -140,33 +114,59 @@ A public forum which allows members to post files/photos/webpages.
|
||||
Set all the privacy and permissions manually to suit your specific needs.
|
||||
|
||||
|
||||
[h3]Channels[/h3]
|
||||
[h3]Creating channels[/h3]
|
||||
|
||||
[h4]What are channels?[/h4]
|
||||
|
||||
Channels are simply collections of content stored in one place. A channel can represent anything. It could represent you, a website, a forum, photo albums, anything. For most people, their first channel with be "Me".
|
||||
After creating your account, you will be presented with the "Add a channel" screen. Normally, your first channel will be one that represents you - so using your own name (or psuedonym) as the channel name is a good idea. The channel name should be thought of as a title, or brief description of your channel. The "choose a short nickname" box is similar to a "username" field. We will use whatever you enter here to create a channel address, which other people will use to connect to you, and you will use to log in to other sites. This looks like an email address, and takes the form nickname@siteyouregisteredat.xyz
|
||||
|
||||
The most important features for a channel that represents "me" are:
|
||||
[ul]
|
||||
[*]Secure and private "spam free" communications
|
||||
See Also
|
||||
[zrl=[baseurl]/help/accounts_profiles_channels_basics]The Basics about Identities within $Projectname[/zrl]
|
||||
[zrl=[baseurl]/help/accounts]Accounts[/zrl]
|
||||
[zrl=[baseurl]/help/profiles]Profiles[/zrl]
|
||||
[zrl=[baseurl]/help/permissions]Permissions[/zrl]
|
||||
[zrl=[baseurl]/help/remove_account]Remove Account[/zrl]
|
||||
|
||||
[*]Identity and "single-signon" across the entire network
|
||||
|
||||
[*]Privacy controls and permissions which extend to the entire network
|
||||
You can create additonal channels from the "Channel Manager" link.
|
||||
|
||||
[*]Directory services (like a phone book)
|
||||
[/ul]
|
||||
In short, a channel that represents yourself is "me, on the internet".
|
||||
Once you have done this, your channel is ready to use. At [observer=1][observer.url][/observer][observer=0][baseurl]/channel/username[/observer] you will find your channel "stream". This is where your recent activity will appear, in reverse chronological order. If you post in the box marked "share", the entry will appear at the top of your stream. You will also find links to all the other communication areas for this channel here. The "hamburger" menu in most themes will provide you with navigation to other system components and apps. The Photos page contain photo albums, and the Events page contains events share by both yourself and your contacts.
|
||||
|
||||
[h4]Creating channels[/h4]
|
||||
[b]Profiles[/b]
|
||||
|
||||
You will be required to create your first channel as part of the sign up process. You can also create additonal channels from the "Select channel" link.
|
||||
$Projectname has unlimited profiles. You may use different profiles to show different "sides of yourself" to different audiences. This is different to having different channels. Different channels allow for completely different sets of information. You may have a channel for yourself, a channel for your sports team, a channel for your website, or whatever else. A profile allows for finely graded "sides" of each channel. For example, your default public profile might say "Hello, I'm Fred, and I like laughing". You may show your close friends a profile that adds "and I also enjoy dwarf tossing".
|
||||
|
||||
You will be asked to provide a channel name, and a short nick name. For a channel that represents yourself, it is a good idea to use your real name here to ensure your friends can find you, and connect to your channel. The short nickname will be used to generate a "webbie". This is a bit like a username, and will look like an email address, taking the form nickname@domain. You should put a little thought into what you want to use here. Imagine somebody asking for your webbie and having to tell them it is "llamas-are_kewl.123". "llamasarecool" would be a much better choice.
|
||||
You always have a profile known as your "default" or "public" profile. This profile is always available to the general public and cannot be hidden (there may be rare exceptions on privately run or disconnected sites). You may, and probably should restrict the information you make available on your public profile.
|
||||
|
||||
Once you have created your channel, you will be taken to the settings page, where you can configure your channel, and set your default permissions.
|
||||
That said, if you want other friends to be able to find you, it helps to have the following information in your public profile...
|
||||
|
||||
[ul][*]Your real name or at least a nickname everybody knows
|
||||
[*]A photo of you
|
||||
[*]Your location on the planet, at least to a country level.[/ul]
|
||||
|
||||
In addition, if you'd like to meet people that share some general interests with you, please take a moment and add some "Keywords" to your profile. Such as "music, linux, photography" or whatever. You can add as many keywords as you like.
|
||||
|
||||
To create an alternate profile, first go to [zrl=[baseurl]/settings/features]Settings > Additional Features[/zrl] and enable "Multiple Profiles" there, otherwise you won't have the ability to use more than just your default profile.
|
||||
|
||||
Then select "Edit Profiles" from the menu of your $Projectname site. You may edit an existing profile, change the profile photo, add things to a profile or create a new profile. You may also create a "clone" of an existing profile if you only wish to change a few items but don't wish to enter all the information again. To do that, click on the profile you want to clone and choose "Clone this profile" there.
|
||||
|
||||
In the list of your profiles, you can also choose the contacts who can see a specific profile. Just click on "Edit visibility" next to the profile in question (only available for the profiles that are not your default profile) and then click on specific connections to add them to or remove them from the group of people who can see this profile.
|
||||
|
||||
Once a profile has been selected, when the person views your profile, they will see the private profile you have assigned. If they are not authenticated, they will see your public profile.
|
||||
|
||||
There is a setting which allows you to publish your profile to a directory and ensure that it can be found by others. You can change this setting on the "Settings" page.
|
||||
|
||||
If you do not wish to be found be people unless you give them your channel address, you may leave your profile unpublished.
|
||||
|
||||
[b]Keywords and Directory Search[/b]
|
||||
|
||||
On the directory page, you may search for people with published profiles. Currently, only the name field and the keywords are searched. You may also include such keywords in your default profile - which may be used to search for common interests with other members. Keywords are used in the channel suggestion tool and although they aren't visible in the directory, they are shown if people visit your profile page.
|
||||
|
||||
On your Connnections page and in the directory there is a link to "Suggestions" or "Channel Suggestions", respectively. This will find channels who have matching and/or similar keywords. The more keywords you provide, the more relevant the search results that are returned. These are sorted by relevance.
|
||||
|
||||
See Also
|
||||
|
||||
[zrl=[baseurl]/help/AdvancedSearch]Advanced Searching[/zrl]
|
||||
|
||||
Once you have done this, your channel is ready to use. At [observer=1][observer.url][/observer][observer=0][baseurl]/channel/username[/observer] you will find your channel "stream". This is where your recent activity will appear, in reverse chronological order. If you post in the box marked "share", the entry will appear at the top of your stream. You will also find links to all the other communication areas for this channel here. The "About" tab contains your "profile", the photos page contain photo albums, and the events page contains events share by both yourself and your contacts.
|
||||
|
||||
[h4]The grid, permissions and delegation[/h4]
|
||||
|
||||
|
@ -930,7 +930,7 @@ function thread_action_menu($item,$mode = '') {
|
||||
$menu[] = [
|
||||
'menu' => 'view_source',
|
||||
'title' => t('View Source'),
|
||||
'icon' => 'eye',
|
||||
'icon' => 'code',
|
||||
'action' => 'viewsrc(' . $item['id'] . '); return false;',
|
||||
'href' => '#'
|
||||
];
|
||||
|
@ -46,7 +46,7 @@ function get_all_perms($uid, $observer_xchan, $internal_use = true) {
|
||||
|
||||
// First find out what the channel owner declared permissions to be.
|
||||
|
||||
$channel_perm = \Zotlabs\Access\PermissionLimits::Get($uid,$perm_name);
|
||||
$channel_perm = intval(\Zotlabs\Access\PermissionLimits::Get($uid,$perm_name));
|
||||
|
||||
if(! $channel_checked) {
|
||||
$r = q("select * from channel where channel_id = %d limit 1",
|
||||
|
@ -75,6 +75,7 @@ abstract class photo_driver {
|
||||
|
||||
abstract function imageString();
|
||||
|
||||
abstract function clearexif();
|
||||
|
||||
public function __construct($data, $type='') {
|
||||
$this->types = $this->supportedTypes();
|
||||
|
@ -35,6 +35,11 @@ class photo_gd extends photo_driver {
|
||||
}
|
||||
|
||||
|
||||
public function clearexif() {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
public function destroy() {
|
||||
if($this->is_valid()) {
|
||||
imagedestroy($this->image);
|
||||
|
@ -96,6 +96,19 @@ class photo_imagick extends photo_driver {
|
||||
}
|
||||
|
||||
|
||||
public function clearexif() {
|
||||
|
||||
$profiles = $this->image->getImageProfiles("icc", true);
|
||||
|
||||
$this->image->stripImage();
|
||||
|
||||
if(!empty($profiles)) {
|
||||
$this->image->profileImage("icc", $profiles['icc']);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
public function getImage() {
|
||||
if(!$this->is_valid())
|
||||
return FALSE;
|
||||
|
@ -211,6 +211,10 @@ function photo_upload($channel, $observer, $args) {
|
||||
$ph->orient($exif);
|
||||
}
|
||||
|
||||
|
||||
$ph->clearexif();
|
||||
|
||||
|
||||
@unlink($src);
|
||||
|
||||
$max_length = get_config('system','max_image_length');
|
||||
|
@ -312,7 +312,8 @@ function article_tagadelic($uid, $count = 0, $authors = '', $owner = '', $flags
|
||||
function pubtagblock($net,$site,$limit,$recent = 0,$safemode = 1, $type = TERM_HASHTAG) {
|
||||
$o = '';
|
||||
|
||||
$r = pub_tagadelic($net,$site,$limit,$since,$safemode,$type);
|
||||
$r = pub_tagadelic($net,$site,$limit,$recent,$safemode,$type);
|
||||
|
||||
$link = z_root() . '/pubstream';
|
||||
|
||||
if($r) {
|
||||
|
@ -531,7 +531,7 @@ function paginate(&$a) {
|
||||
}
|
||||
|
||||
|
||||
function alt_pager(&$a, $i, $more = '', $less = '') {
|
||||
function alt_pager($i, $more = '', $less = '') {
|
||||
|
||||
if(! $more)
|
||||
$more = t('older');
|
||||
|
@ -3811,25 +3811,27 @@ function process_channel_sync_delivery($sender, $arr, $deliveries) {
|
||||
foreach($x as $y) {
|
||||
|
||||
// for each group, loop on members list we just received
|
||||
foreach($members[$y['hash']] as $member) {
|
||||
$found = false;
|
||||
$z = q("select xchan from group_member where gid = %d and uid = %d and xchan = '%s' limit 1",
|
||||
intval($y['id']),
|
||||
intval($channel['channel_id']),
|
||||
dbesc($member)
|
||||
);
|
||||
if($z)
|
||||
$found = true;
|
||||
|
||||
// if somebody is in the group that wasn't before - add them
|
||||
|
||||
if(! $found) {
|
||||
q("INSERT INTO group_member (uid, gid, xchan)
|
||||
VALUES( %d, %d, '%s' ) ",
|
||||
intval($channel['channel_id']),
|
||||
if(isset($y['hash']) && isset($members[$y['hash']])) {
|
||||
foreach($members[$y['hash']] as $member) {
|
||||
$found = false;
|
||||
$z = q("select xchan from group_member where gid = %d and uid = %d and xchan = '%s' limit 1",
|
||||
intval($y['id']),
|
||||
intval($channel['channel_id']),
|
||||
dbesc($member)
|
||||
);
|
||||
if($z)
|
||||
$found = true;
|
||||
|
||||
// if somebody is in the group that wasn't before - add them
|
||||
|
||||
if(! $found) {
|
||||
q("INSERT INTO group_member (uid, gid, xchan)
|
||||
VALUES( %d, %d, '%s' ) ",
|
||||
intval($channel['channel_id']),
|
||||
intval($y['id']),
|
||||
dbesc($member)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -66,7 +66,7 @@ class PermissionLimitsTest extends UnitTestCase {
|
||||
$this->assertEquals(PERMS_SPECIFIC, $stdlimits['write_pages']);
|
||||
$this->assertEquals(PERMS_SPECIFIC, $stdlimits['write_wiki']);
|
||||
$this->assertEquals(PERMS_SPECIFIC, $stdlimits['post_wall']);
|
||||
$this->assertEquals(PERMS_PUBLIC, $stdlimits['post_comments']);
|
||||
$this->assertEquals(PERMS_SPECIFIC, $stdlimits['post_comments']);
|
||||
$this->assertEquals(PERMS_SPECIFIC, $stdlimits['post_mail']);
|
||||
$this->assertEquals(PERMS_SPECIFIC, $stdlimits['post_like']);
|
||||
$this->assertEquals(PERMS_SPECIFIC, $stdlimits['tag_deliver']);
|
||||
|
@ -62,7 +62,7 @@ class PermissionRolesTest extends UnitTestCase {
|
||||
$this->assertEquals($roles, $r->roles());
|
||||
|
||||
$socialNetworking = [
|
||||
'social_party' => 'Social - Party',
|
||||
'social_federation' => 'Social - Federation',
|
||||
'social' => 'Social - Mostly Public',
|
||||
'social_restricted' => 'Social - Restricted',
|
||||
'social_private' => 'Social - Private'
|
||||
|
@ -6,9 +6,9 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 3.4RC\n"
|
||||
"Project-Id-Version: 3.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-04-18 08:37+0200\n"
|
||||
"POT-Creation-Date: 2018-04-23 11:34+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -94,7 +94,7 @@ msgid "Social Networking"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Access/PermissionRoles.php:284
|
||||
msgid "Social - Party"
|
||||
msgid "Social - Federation"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Access/PermissionRoles.php:285
|
||||
@ -451,15 +451,16 @@ msgstr ""
|
||||
#: ../../addon/likebanner/likebanner.php:57
|
||||
#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53
|
||||
#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113
|
||||
#: ../../addon/diaspora/diaspora.php:823
|
||||
#: ../../addon/diaspora/diaspora.php:825
|
||||
#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84
|
||||
#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161
|
||||
#: ../../addon/mailtest/mailtest.php:100
|
||||
#: ../../addon/openstreetmap/openstreetmap.php:168
|
||||
#: ../../addon/rtof/rtof.php:101 ../../addon/jappixmini/jappixmini.php:371
|
||||
#: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101
|
||||
#: ../../addon/jappixmini/jappixmini.php:371
|
||||
#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80
|
||||
#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35
|
||||
#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1069
|
||||
#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1072
|
||||
#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85
|
||||
#: ../../addon/flattrwidget/flattrwidget.php:124
|
||||
#: ../../addon/statusnet/statusnet.php:322
|
||||
@ -555,7 +556,7 @@ msgstr ""
|
||||
#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273
|
||||
#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:833
|
||||
#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95
|
||||
#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:878
|
||||
#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:891
|
||||
#: ../../include/conversation.php:1160
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
@ -716,7 +717,7 @@ msgstr ""
|
||||
#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787
|
||||
#: ../../addon/openid/MysqlProvider.php:56
|
||||
#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93
|
||||
#: ../../addon/redred/redred.php:107 ../../include/network.php:1769
|
||||
#: ../../addon/redred/redred.php:107 ../../include/network.php:1770
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
@ -1077,8 +1078,8 @@ msgstr ""
|
||||
#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70
|
||||
#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81
|
||||
#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157
|
||||
#: ../../addon/rtof/rtof.php:81 ../../addon/rtof/rtof.php:85
|
||||
#: ../../addon/jappixmini/jappixmini.php:309
|
||||
#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81
|
||||
#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309
|
||||
#: ../../addon/jappixmini/jappixmini.php:313
|
||||
#: ../../addon/jappixmini/jappixmini.php:343
|
||||
#: ../../addon/jappixmini/jappixmini.php:351
|
||||
@ -1128,8 +1129,8 @@ msgstr ""
|
||||
#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70
|
||||
#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81
|
||||
#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157
|
||||
#: ../../addon/rtof/rtof.php:81 ../../addon/rtof/rtof.php:85
|
||||
#: ../../addon/jappixmini/jappixmini.php:309
|
||||
#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81
|
||||
#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309
|
||||
#: ../../addon/jappixmini/jappixmini.php:313
|
||||
#: ../../addon/jappixmini/jappixmini.php:343
|
||||
#: ../../addon/jappixmini/jappixmini.php:351
|
||||
@ -1446,13 +1447,13 @@ msgstr ""
|
||||
#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69
|
||||
#: ../../Zotlabs/Module/Like.php:384
|
||||
#: ../../addon/redphotos/redphotohelper.php:71
|
||||
#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1388
|
||||
#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405
|
||||
#: ../../include/conversation.php:116 ../../include/text.php:2005
|
||||
msgid "photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384
|
||||
#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1388
|
||||
#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405
|
||||
#: ../../include/conversation.php:144 ../../include/text.php:2011
|
||||
msgid "status"
|
||||
msgstr ""
|
||||
@ -1559,6 +1560,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/New_channel.php:149
|
||||
#: ../../Zotlabs/Module/Settings/Channel.php:539
|
||||
#: ../../Zotlabs/Module/Register.php:257
|
||||
msgid "Channel role and privacy"
|
||||
msgstr ""
|
||||
@ -1579,9 +1581,17 @@ msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/New_channel.php:153
|
||||
msgid ""
|
||||
"A channel is your identity on this network. It can represent a person, a "
|
||||
"blog, or a forum to name a few. Channels can make connections with other "
|
||||
"channels to share information with highly detailed permissions."
|
||||
"A channel is a unique network identity. It can represent a person (social "
|
||||
"network profile), a forum (group), a business or celebrity page, a newsfeed, "
|
||||
"and many other things. Channels can make connections with other channels to "
|
||||
"share information with each other."
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/New_channel.php:153
|
||||
msgid ""
|
||||
"The type of channel you create affects the basic privacy settings, the "
|
||||
"permissions that are granted to connections/friends, and also the channel's "
|
||||
"visibility across the network."
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/New_channel.php:154
|
||||
@ -3337,11 +3347,11 @@ msgctxt "acl"
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/Moderate.php:62
|
||||
#: ../../Zotlabs/Module/Moderate.php:65
|
||||
msgid "Comment approved"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/Moderate.php:66
|
||||
#: ../../Zotlabs/Module/Moderate.php:69
|
||||
msgid "Comment deleted"
|
||||
msgstr ""
|
||||
|
||||
@ -3603,10 +3613,6 @@ msgstr ""
|
||||
msgid "Profile to assign new connections"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/Settings/Channel.php:539
|
||||
msgid "Channel permissions category:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/Settings/Channel.php:540
|
||||
msgid "Default Permissions Group"
|
||||
msgstr ""
|
||||
@ -4874,7 +4880,7 @@ msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205
|
||||
#: ../../include/conversation.php:1981 ../../include/channel.php:1539
|
||||
#: ../../include/taxonomy.php:660
|
||||
#: ../../include/taxonomy.php:661
|
||||
msgctxt "noun"
|
||||
msgid "Like"
|
||||
msgid_plural "Likes"
|
||||
@ -4917,7 +4923,7 @@ msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378
|
||||
#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:663
|
||||
#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:667
|
||||
msgid "Recent Photos"
|
||||
msgstr ""
|
||||
|
||||
@ -5218,7 +5224,7 @@ msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/Profile_photo.php:120
|
||||
#: ../../Zotlabs/Module/Profile_photo.php:248
|
||||
#: ../../include/photo/photo_driver.php:740
|
||||
#: ../../include/photo/photo_driver.php:741
|
||||
msgid "Profile Photos"
|
||||
msgstr ""
|
||||
|
||||
@ -6791,12 +6797,12 @@ msgid "Previous action reversed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1529
|
||||
#: ../../addon/pubcrawl/as.php:1423 ../../include/conversation.php:160
|
||||
#: ../../addon/pubcrawl/as.php:1440 ../../include/conversation.php:160
|
||||
#, php-format
|
||||
msgid "%1$s likes %2$s's %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Module/Like.php:440 ../../addon/pubcrawl/as.php:1425
|
||||
#: ../../Zotlabs/Module/Like.php:440 ../../addon/pubcrawl/as.php:1442
|
||||
#: ../../include/conversation.php:163
|
||||
#, php-format
|
||||
msgid "%1$s doesn't like %2$s's %3$s"
|
||||
@ -8301,11 +8307,11 @@ msgstr ""
|
||||
msgid "Add Tag"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:574
|
||||
#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:575
|
||||
msgid "like"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:575
|
||||
#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:576
|
||||
msgid "dislike"
|
||||
msgstr ""
|
||||
|
||||
@ -8607,9 +8613,9 @@ msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Widget/Appcategories.php:40
|
||||
#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141
|
||||
#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:408
|
||||
#: ../../include/taxonomy.php:490 ../../include/taxonomy.php:510
|
||||
#: ../../include/taxonomy.php:531
|
||||
#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409
|
||||
#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511
|
||||
#: ../../include/taxonomy.php:532
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
@ -8797,8 +8803,8 @@ msgstr ""
|
||||
msgid "Click to show more"
|
||||
msgstr ""
|
||||
|
||||
#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:319
|
||||
#: ../../include/taxonomy.php:448 ../../include/taxonomy.php:469
|
||||
#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320
|
||||
#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
@ -10115,38 +10121,38 @@ msgstr ""
|
||||
msgid "declared undying love for"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/diaspora/diaspora.php:779
|
||||
#: ../../addon/diaspora/diaspora.php:781
|
||||
msgid "Diaspora Protocol Settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/diaspora/diaspora.php:798
|
||||
#: ../../addon/diaspora/diaspora.php:800
|
||||
msgid ""
|
||||
"The Diaspora protocol does not support location independence. Connections "
|
||||
"you make within that network may be unreachable from alternate channel "
|
||||
"locations."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/diaspora/diaspora.php:801
|
||||
#: ../../addon/diaspora/diaspora.php:803
|
||||
msgid "Enable the Diaspora protocol for this channel"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/diaspora/diaspora.php:805
|
||||
#: ../../addon/diaspora/diaspora.php:807
|
||||
msgid "Allow any Diaspora member to comment on your public posts"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/diaspora/diaspora.php:809
|
||||
#: ../../addon/diaspora/diaspora.php:811
|
||||
msgid "Prevent your hashtags from being redirected to other sites"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/diaspora/diaspora.php:813
|
||||
#: ../../addon/diaspora/diaspora.php:815
|
||||
msgid "Sign and forward posts and comments with no existing Diaspora signature"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/diaspora/diaspora.php:818
|
||||
#: ../../addon/diaspora/diaspora.php:820
|
||||
msgid "Followed hashtags (comma separated, do not include the #)"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/diaspora/diaspora.php:823
|
||||
#: ../../addon/diaspora/diaspora.php:825
|
||||
msgid "Diaspora Protocol Settings"
|
||||
msgstr ""
|
||||
|
||||
@ -10389,6 +10395,32 @@ msgstr ""
|
||||
msgid "text to include in all outgoing posts from this site"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fuzzloc/fuzzloc.php:148
|
||||
msgid "Fuzzloc Settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fuzzloc/fuzzloc.php:175
|
||||
msgid ""
|
||||
"Fuzzloc allows you to blur your precise location if your channel uses "
|
||||
"browser location mapping."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fuzzloc/fuzzloc.php:178
|
||||
msgid "Enable Fuzzloc Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fuzzloc/fuzzloc.php:182
|
||||
msgid "Minimum offset in meters"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fuzzloc/fuzzloc.php:186
|
||||
msgid "Maximum offset in meters"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/fuzzloc/fuzzloc.php:191
|
||||
msgid "Fuzzloc Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/rtof/rtof.php:45
|
||||
msgid "Post to Friendica"
|
||||
msgstr ""
|
||||
@ -10591,35 +10623,35 @@ msgstr ""
|
||||
msgid "Friendica Login Password"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/pubcrawl/as.php:1129 ../../addon/pubcrawl/as.php:1256
|
||||
#: ../../addon/pubcrawl/as.php:1432 ../../include/network.php:1768
|
||||
#: ../../addon/pubcrawl/as.php:1146 ../../addon/pubcrawl/as.php:1273
|
||||
#: ../../addon/pubcrawl/as.php:1449 ../../include/network.php:1769
|
||||
msgid "ActivityPub"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1050
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1053
|
||||
msgid "ActivityPub Protocol Settings updated."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1059
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1062
|
||||
msgid ""
|
||||
"The ActivityPub protocol does not support location independence. Connections "
|
||||
"you make within that network may be unreachable from alternate channel "
|
||||
"locations."
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1062
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1065
|
||||
msgid "Enable the ActivityPub protocol for this channel"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1065
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1068
|
||||
msgid "Send multi-media HTML articles"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1065
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1068
|
||||
msgid "Not supported by some microblog services such as Mastodon"
|
||||
msgstr ""
|
||||
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1069
|
||||
#: ../../addon/pubcrawl/pubcrawl.php:1072
|
||||
msgid "ActivityPub Protocol Settings"
|
||||
msgstr ""
|
||||
|
||||
@ -12180,7 +12212,7 @@ msgid "Profile Details"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/conversation.php:1837 ../../include/nav.php:404
|
||||
#: ../../include/photos.php:662
|
||||
#: ../../include/photos.php:666
|
||||
msgid "Photo Albums"
|
||||
msgstr ""
|
||||
|
||||
@ -13362,43 +13394,43 @@ msgstr ""
|
||||
msgid "view full size"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/network.php:1763 ../../include/network.php:1764
|
||||
#: ../../include/network.php:1764 ../../include/network.php:1765
|
||||
msgid "Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/network.php:1765
|
||||
#: ../../include/network.php:1766
|
||||
msgid "OStatus"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/network.php:1766
|
||||
#: ../../include/network.php:1767
|
||||
msgid "GNU-Social"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/network.php:1767
|
||||
#: ../../include/network.php:1768
|
||||
msgid "RSS/Atom"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/network.php:1770
|
||||
#: ../../include/network.php:1771
|
||||
msgid "Diaspora"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/network.php:1771
|
||||
#: ../../include/network.php:1772
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/network.php:1772
|
||||
#: ../../include/network.php:1773
|
||||
msgid "Zot"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/network.php:1773
|
||||
#: ../../include/network.php:1774
|
||||
msgid "LinkedIn"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/network.php:1774
|
||||
#: ../../include/network.php:1775
|
||||
msgid "XMPP/IM"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/network.php:1775
|
||||
#: ../../include/network.php:1776
|
||||
msgid "MySpace"
|
||||
msgstr ""
|
||||
|
||||
@ -13870,35 +13902,35 @@ msgstr ""
|
||||
msgid "Provide a personal tag cloud on your channel page"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/taxonomy.php:319
|
||||
#: ../../include/taxonomy.php:320
|
||||
msgid "Trending"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/taxonomy.php:551
|
||||
#: ../../include/taxonomy.php:552
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/taxonomy.php:572
|
||||
#: ../../include/taxonomy.php:573
|
||||
msgid "have"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/taxonomy.php:572
|
||||
#: ../../include/taxonomy.php:573
|
||||
msgid "has"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/taxonomy.php:573
|
||||
#: ../../include/taxonomy.php:574
|
||||
msgid "want"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/taxonomy.php:573
|
||||
#: ../../include/taxonomy.php:574
|
||||
msgid "wants"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/taxonomy.php:574
|
||||
#: ../../include/taxonomy.php:575
|
||||
msgid "likes"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/taxonomy.php:575
|
||||
#: ../../include/taxonomy.php:576
|
||||
msgid "dislikes"
|
||||
msgstr ""
|
||||
|
||||
@ -14136,21 +14168,21 @@ msgstr ""
|
||||
msgid "Image file is empty."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/photos.php:322
|
||||
#: ../../include/photos.php:326
|
||||
msgid "Photo storage failed."
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/photos.php:371
|
||||
#: ../../include/photos.php:375
|
||||
msgid "a new photo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/photos.php:375
|
||||
#: ../../include/photos.php:379
|
||||
#, php-format
|
||||
msgctxt "photo_upload"
|
||||
msgid "%1$s posted %2$s to %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/photos.php:667
|
||||
#: ../../include/photos.php:671
|
||||
msgid "Upload New Photos"
|
||||
msgstr ""
|
||||
|
||||
@ -14167,7 +14199,7 @@ msgstr ""
|
||||
msgid "Unable to verify site signature for %s"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/zot.php:4217
|
||||
#: ../../include/zot.php:4219
|
||||
msgid "invalid target signature"
|
||||
msgstr ""
|
||||
|
||||
|
@ -21,9 +21,9 @@
|
||||
}
|
||||
|
||||
#doco-side-toc li {
|
||||
padding-left: 10px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
#doco-side-toc {
|
||||
padding-top: 10px;
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -24,6 +24,7 @@ App::$strings["Can chat with me"] = "Se puede chatear conmigo";
|
||||
App::$strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis entradas públicas como origen de contenidos en canales derivados";
|
||||
App::$strings["Can administer my channel"] = "Se puede administrar mi canal";
|
||||
App::$strings["Social Networking"] = "Redes sociales";
|
||||
App::$strings["Social - Party"] = "Social - Extra público";
|
||||
App::$strings["Social - Mostly Public"] = "Social - Público en su mayor parte";
|
||||
App::$strings["Social - Restricted"] = "Social - Restringido";
|
||||
App::$strings["Social - Private"] = "Social - Privado";
|
||||
@ -362,11 +363,10 @@ App::$strings["Error: PDO database PHP module required but not installed."] = "E
|
||||
App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado.";
|
||||
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado.";
|
||||
App::$strings["Error: zip PHP module required but not installed."] = "Error: se requiere el módulo zip PHP pero no está instalado.";
|
||||
App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura";
|
||||
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor.";
|
||||
App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos.";
|
||||
App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla.";
|
||||
App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones.";
|
||||
App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura";
|
||||
App::$strings["Please see install/INSTALL.txt for additional information."] = "Por favor, consulte install/INSTALL.txt para más información.";
|
||||
App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Este software hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 compila las plantillas a PHP para acelerar la renderización.";
|
||||
App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal.";
|
||||
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data).";
|
||||
@ -551,8 +551,6 @@ App::$strings["Publicly visible description of this site. Displayed on siteinfo
|
||||
App::$strings["System language"] = "Idioma del sistema";
|
||||
App::$strings["System theme"] = "Tema gráfico del sistema";
|
||||
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - <a href='#' id='cnftheme'>modificar los ajustes del tema</a>";
|
||||
App::$strings["Mobile system theme"] = "Tema del sistema para móviles";
|
||||
App::$strings["Theme for mobile devices"] = "Tema para dispositivos móviles";
|
||||
App::$strings["Allow Feeds as Connections"] = "Permitir contenidos RSS como conexiones";
|
||||
App::$strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)";
|
||||
App::$strings["Maximum image size"] = "Tamaño máximo de la imagen";
|
||||
@ -612,6 +610,7 @@ App::$strings["Maximum Load Average"] = "Carga media máxima";
|
||||
App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50.";
|
||||
App::$strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)";
|
||||
App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado";
|
||||
App::$strings["Do not expire any posts which have comments less than this many days ago"] = "No caduque ningún mensaje que tenga menos comentarios que este hace muchos días";
|
||||
App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros";
|
||||
App::$strings["Create this page first. Default is %s/register"] = "Crear esta página primero. Por defecto es %s/register";
|
||||
App::$strings["Page to display after creating a new channel"] = "Página a mostrar después de la creación de un nuevo canal";
|
||||
@ -673,6 +672,7 @@ App::$strings["Visible to:"] = "Visible para:";
|
||||
App::$strings["__ctx:acl__ Profile"] = "Perfil";
|
||||
App::$strings["Comment approved"] = "El comentario ha sido aprobado";
|
||||
App::$strings["Comment deleted"] = "Se ha eliminado el comentario";
|
||||
App::$strings["Permission Name is required."] = "Se requiere el nombre de la autorización";
|
||||
App::$strings["Permission category saved."] = "Se ha guardado la categoría del permiso.";
|
||||
App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Utilice este formulario para crear reglas de permiso para varias clases de personas o conexiones.";
|
||||
App::$strings["Permission Categories"] = "Tipos de permisos";
|
||||
@ -763,9 +763,10 @@ App::$strings["New connections"] = "Nuevas conexiones";
|
||||
App::$strings["System Registrations"] = "Registros del sistema";
|
||||
App::$strings["Unseen shared files"] = "Ficheros compartidos no vistos";
|
||||
App::$strings["Unseen public activity"] = "Actividad pública no vista";
|
||||
App::$strings["Unseen likes and dislikes"] = "Los \"me gusta\" y \"no me gusta\" no vistos";
|
||||
App::$strings["Email notification hub (hostname)"] = "Email de notificación del hub (nombre del host)";
|
||||
App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Si su canal está replicado en múltiples hubs, colóquelo en su ubicación preferida. Esto evitará la duplicación de notificaciones por correo electrónico. Ejemplo: %s";
|
||||
App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones";
|
||||
App::$strings["Show new wall posts, private messages and connections under Notices"] = "Mostrar nuevos mensajes en el muro, mensajes privados y conexiones en Avisos";
|
||||
App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación";
|
||||
App::$strings["Must be greater than 0"] = "Debe ser mayor que 0";
|
||||
App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página";
|
||||
@ -779,6 +780,8 @@ App::$strings["Remove this channel."] = "Eliminar este canal.";
|
||||
App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname";
|
||||
App::$strings["Start calendar week on Monday"] = "Comenzar el calendario semanal por el lunes";
|
||||
App::$strings["Additional Features"] = "Funcionalidades";
|
||||
App::$strings["Your technical skill level"] = "Su nivel de habilidad técnica";
|
||||
App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad";
|
||||
App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens";
|
||||
App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña.";
|
||||
App::$strings["Token saved."] = "Token salvado.";
|
||||
@ -789,6 +792,22 @@ App::$strings["Login Name"] = "Nombre de inicio de sesión";
|
||||
App::$strings["Login Password"] = "Contraseña de inicio de sesión";
|
||||
App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)";
|
||||
App::$strings["Their Settings"] = "Sus ajustes";
|
||||
App::$strings["Name and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios";
|
||||
App::$strings["Add OAuth2 application"] = "Añadir aplicación OAuth2";
|
||||
App::$strings["Name of application"] = "Nombre de la aplicación";
|
||||
App::$strings["Consumer Secret"] = "Consumer Secret";
|
||||
App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20";
|
||||
App::$strings["Redirect"] = "Redirigir";
|
||||
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera";
|
||||
App::$strings["Grant Types"] = "Tipos de permisos";
|
||||
App::$strings["leave blank unless your application sepcifically requires this"] = "Dejar en blanco a menos que su aplicación lo requiera específicamente";
|
||||
App::$strings["Authorization scope"] = "Alcance de la autorización";
|
||||
App::$strings["OAuth2 Application not found."] = "No se ha encontrado la aplicación OAuth2.";
|
||||
App::$strings["Add application"] = "Añadir aplicación";
|
||||
App::$strings["Connected OAuth2 Apps"] = "Aplicaciones OAuth2 conectadas";
|
||||
App::$strings["Client key starts with"] = "La \"client key\" empieza por";
|
||||
App::$strings["No name"] = "Sin nombre";
|
||||
App::$strings["Remove authorization"] = "Eliminar autorización";
|
||||
App::$strings["Not valid email."] = "Correo electrónico no válido.";
|
||||
App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella.";
|
||||
App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo.";
|
||||
@ -803,8 +822,6 @@ App::$strings["Current Password"] = "Contraseña actual";
|
||||
App::$strings["Enter New Password"] = "Escribir una nueva contraseña";
|
||||
App::$strings["Confirm New Password"] = "Confirmar la nueva contraseña";
|
||||
App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco la contraseña a menos que desee cambiarla.";
|
||||
App::$strings["Your technical skill level"] = "Su nivel de habilidad técnica";
|
||||
App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad";
|
||||
App::$strings["Remove Account"] = "Eliminar cuenta";
|
||||
App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales";
|
||||
App::$strings["Affinity Slider settings updated."] = "Se han actualizado los ajustes del controlador de afinidad.";
|
||||
@ -845,20 +862,11 @@ App::$strings["click to expand content exceeding this height"] = "Pulsar para ex
|
||||
App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)";
|
||||
App::$strings["Name is required"] = "El nombre es obligatorio";
|
||||
App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios";
|
||||
App::$strings["Add application"] = "Añadir aplicación";
|
||||
App::$strings["Name of application"] = "Nombre de la aplicación";
|
||||
App::$strings["Consumer Key"] = "Consumer Key";
|
||||
App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20";
|
||||
App::$strings["Consumer Secret"] = "Consumer Secret";
|
||||
App::$strings["Redirect"] = "Redirigir";
|
||||
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera";
|
||||
App::$strings["Icon url"] = "Dirección del icono";
|
||||
App::$strings["Optional"] = "Opcional";
|
||||
App::$strings["Application not found."] = "Aplicación no encontrada.";
|
||||
App::$strings["Connected Apps"] = "Aplicaciones (apps) conectadas";
|
||||
App::$strings["Client key starts with"] = "La \"client key\" empieza por";
|
||||
App::$strings["No name"] = "Sin nombre";
|
||||
App::$strings["Remove authorization"] = "Eliminar autorización";
|
||||
App::$strings["View Photo"] = "Ver foto";
|
||||
App::$strings["Edit Album"] = "Editar álbum";
|
||||
App::$strings["Upload"] = "Subir";
|
||||
@ -880,7 +888,7 @@ App::$strings["Permissions"] = "Permisos";
|
||||
App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil";
|
||||
App::$strings["No more system notifications."] = "No hay más notificaciones del sistema";
|
||||
App::$strings["System Notifications"] = "Notificaciones del sistema";
|
||||
App::$strings["Channel added."] = "Canal añadido.";
|
||||
App::$strings["Connection added."] = "Se ha incorporado una conexión.";
|
||||
App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales.";
|
||||
App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado";
|
||||
App::$strings["Import completed."] = "Importación completada.";
|
||||
@ -915,19 +923,22 @@ App::$strings["Create new app"] = "Crear una nueva aplicación";
|
||||
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s";
|
||||
App::$strings["Mood"] = "Estado de ánimo";
|
||||
App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos";
|
||||
App::$strings["Active"] = "Activo/a";
|
||||
App::$strings["Blocked"] = "Bloqueadas";
|
||||
App::$strings["Ignored"] = "Ignoradas";
|
||||
App::$strings["Hidden"] = "Ocultas";
|
||||
App::$strings["Archived/Unreachable"] = "Archivado o inaccesible";
|
||||
App::$strings["New"] = "Nuevas";
|
||||
App::$strings["All"] = "Todos/as";
|
||||
App::$strings["Active Connections"] = "Conexiones activas";
|
||||
App::$strings["Show active connections"] = "Mostrar las conexiones activas";
|
||||
App::$strings["New Connections"] = "Nuevas conexiones";
|
||||
App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes";
|
||||
App::$strings["Show all connections"] = "Mostrar todas las conexiones";
|
||||
App::$strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas";
|
||||
App::$strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas";
|
||||
App::$strings["Only show archived/unreachable connections"] = "Mostrar solo las conexiones archivadas o no localizables";
|
||||
App::$strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas";
|
||||
App::$strings["Show all connections"] = "Mostrar todas las conexiones";
|
||||
App::$strings["Pending approval"] = "Pendiente de aprobación";
|
||||
App::$strings["Archived"] = "Archivadas";
|
||||
App::$strings["Not connected at this location"] = "No está conectado/a en esta ubicación";
|
||||
@ -969,10 +980,10 @@ App::$strings["Upload Photos"] = "Subir fotos";
|
||||
App::$strings["Enter an album name"] = "Introducir un nombre de álbum";
|
||||
App::$strings["or select an existing album (doubleclick)"] = "o seleccionar uno existente (doble click)";
|
||||
App::$strings["Create a status post for this upload"] = "Crear un mensaje de estado para esta subida";
|
||||
App::$strings["Caption (optional):"] = "Título (opcional):";
|
||||
App::$strings["Description (optional):"] = "Descripción (opcional):";
|
||||
App::$strings["Description (optional)"] = "Descripción (opcional)";
|
||||
App::$strings["Show Newest First"] = "Mostrar lo más reciente primero";
|
||||
App::$strings["Show Oldest First"] = "Mostrar lo más antiguo primero";
|
||||
App::$strings["Add Photos"] = "Añadir fotos";
|
||||
App::$strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido.";
|
||||
App::$strings["Photo not available"] = "Foto no disponible";
|
||||
App::$strings["Use as profile photo"] = "Usar como foto del perfil";
|
||||
@ -985,7 +996,6 @@ App::$strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)";
|
||||
App::$strings["Move photo to album"] = "Mover la foto a un álbum";
|
||||
App::$strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum";
|
||||
App::$strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente";
|
||||
App::$strings["Caption"] = "Título";
|
||||
App::$strings["Add a Tag"] = "Añadir una etiqueta";
|
||||
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com";
|
||||
App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum";
|
||||
@ -1260,6 +1270,10 @@ App::$strings["Warning: Changing some settings could render your channel inopera
|
||||
App::$strings["If enabled, connection requests will be approved without your interaction"] = "Si está habilitado, las solicitudes de conexión serán aprobadas sin su intervención.";
|
||||
App::$strings["Automatic approval settings"] = "Opciones de autorización automática";
|
||||
App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Es posible que se hayan preestablecido o bloqueado algunos permisos individuales según el tipo de canal y la configuración de privacidad.";
|
||||
App::$strings["Unknown App"] = "Aplicación desconocida";
|
||||
App::$strings["Authorize"] = "Autorizar";
|
||||
App::$strings["Do you authorize the app %s to access your channel data?"] = "¿Autoriza a la aplicación %s a acceder a los datos de su canal?";
|
||||
App::$strings["Allow"] = "Permitir";
|
||||
App::$strings["Privacy group created."] = "El grupo de canales ha sido creado.";
|
||||
App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales";
|
||||
App::$strings["Privacy group not found."] = "Grupo de canales no encontrado.";
|
||||
@ -1304,7 +1318,7 @@ App::$strings["Clone this profile"] = "Clonar este perfil";
|
||||
App::$strings["Delete this profile"] = "Eliminar este perfil";
|
||||
App::$strings["Add profile things"] = "Añadir cosas al perfil";
|
||||
App::$strings["Personal"] = "Personales";
|
||||
App::$strings["Relation"] = "Relación";
|
||||
App::$strings["Relationship"] = "Relación";
|
||||
App::$strings["Miscellaneous"] = "Varios";
|
||||
App::$strings["Import profile from file"] = "Importar perfil desde un fichero";
|
||||
App::$strings["Export profile to file"] = "Exportar perfil a un fichero";
|
||||
@ -1458,6 +1472,7 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s n
|
||||
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe";
|
||||
App::$strings["Action completed."] = "Acción completada.";
|
||||
App::$strings["Thank you."] = "Gracias.";
|
||||
App::$strings["No default suggestions were found."] = "No se encontraron sugerencias por defecto.";
|
||||
App::$strings["%d rating"] = array(
|
||||
0 => "%d valoración",
|
||||
1 => "%d valoraciones",
|
||||
@ -1729,44 +1744,44 @@ App::$strings["To stop receiving these messages, please adjust your Notification
|
||||
App::$strings["To stop receiving these messages, please adjust your %s."] = "Para dejar de recibir estos mensajes, por favor, ajuste su %s";
|
||||
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
|
||||
App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Aviso] Nuevo correo recibido en %s";
|
||||
App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s.";
|
||||
App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s le ha enviado un nuevo mensaje privado en %2\$s.";
|
||||
App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s.";
|
||||
App::$strings["a private message"] = "un mensaje privado";
|
||||
App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado.";
|
||||
App::$strings["commented on"] = "ha comentado sobre";
|
||||
App::$strings["liked"] = "ha gustado de ";
|
||||
App::$strings["disliked"] = "no ha gustado de ";
|
||||
App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s[zrl=%4\$s]un %5\$s[/zrl]";
|
||||
App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s] %6\$sde %5\$s[/zrl]";
|
||||
App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]your %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s] ]su %5\$s [/zrl]";
|
||||
App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s%2\$s [zrl=%3\$s ]un %4\$s[/zrl]";
|
||||
App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s[zrl=%3\$s]%5\$s de %4\$s[/zrl]";
|
||||
App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]su %4\$s[/zrl]";
|
||||
App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] Comentario moderado en la conversación #%1\$d por %2\$s";
|
||||
App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d";
|
||||
App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo.";
|
||||
App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sha comentado un elemento/conversación que ha estado siguiendo.";
|
||||
App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s";
|
||||
App::$strings["Please visit %s to approve or reject this comment."] = "Por favor, visite %spara aprobar o rechazar este comentario.";
|
||||
App::$strings["%1\$s, %2\$s liked [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha mostrado su agrado por [zrl=%3\$s]%4\$s creado por usted[/zrl]";
|
||||
App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "A %1\$sle ha gustado [zrl=%2\$s]su%3\$s [/zrl]";
|
||||
App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] \"Me gusta\" de %2\$s en la conversación #%1\$d";
|
||||
App::$strings["%1\$s, %2\$s liked an item/conversation you created."] = "%1\$s, %2\$s ha mostrado su agrado por un elemento o conversación que ha creado usted.";
|
||||
App::$strings["%1\$s liked an item/conversation you created."] = "A %1\$s le ha gustado un elemento o conversación que ha creado usted.";
|
||||
App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")";
|
||||
App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha publicado en su página del perfil en %3\$s";
|
||||
App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha publicado en [zrl=%3\$s]su página del perfil[/zrl]";
|
||||
App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha publicado en su muro en %2\$s";
|
||||
App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$sha publicado en [zrl=%2\$s]su muro[/zrl]";
|
||||
App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Aviso] %s le ha etiquetado";
|
||||
App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le ha etiquetado en %3\$s";
|
||||
App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl].";
|
||||
App::$strings["%1\$s tagged you at %2\$s"] = "%1\$sle ha etiquetado en %2\$s";
|
||||
App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]le ha etiquetado[/zrl].";
|
||||
App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Aviso] %1\$s le ha dado un toque";
|
||||
App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le ha dado un toque en %3\$s";
|
||||
App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le ha dado un toque[/zrl].";
|
||||
App::$strings["%1\$s poked you at %2\$s"] = "%1\$sle ha dado un toque en %2\$s";
|
||||
App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]le ha dado un toque[/zrl].";
|
||||
App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Aviso] %s ha etiquetado su entrada";
|
||||
App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s";
|
||||
App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]";
|
||||
App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$sha etiquetado su entrada en %2\$s";
|
||||
App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s ha etiquetado [zrl=%2\$s]su entrada[/zrl]";
|
||||
App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Aviso] Ha recibido una solicitud de conexión";
|
||||
App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s";
|
||||
App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s.";
|
||||
App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Ha recibido una nueva solicitud de conexión de '%1\$s' en %2\$s";
|
||||
App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Ha recibido [zrl=%1\$s]una nueva solicitud de conexión[/zrl] de %2\$s.";
|
||||
App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s";
|
||||
App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión.";
|
||||
App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Aviso] Ha recibido una sugerencia de conexión";
|
||||
App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s";
|
||||
App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s.";
|
||||
App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Ha recibido una sugerencia de amistad de '%1\$s' en %2\$s";
|
||||
App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Ha recibido [zrl=%1\$s]una sugerencia de amistad[/zrl] para %2\$s de %3\$s.";
|
||||
App::$strings["Name:"] = "Nombre:";
|
||||
App::$strings["Photo:"] = "Foto:";
|
||||
App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia.";
|
||||
@ -1842,6 +1857,7 @@ App::$strings["Schedule Inbox"] = "Programar bandeja de entrada";
|
||||
App::$strings["Schedule Outbox"] = "Programar bandeja de salida";
|
||||
App::$strings["Total"] = "Total";
|
||||
App::$strings["Shared"] = "Compartido";
|
||||
App::$strings["Add Files"] = "Añadir ficheros";
|
||||
App::$strings["You are using %1\$s of your available file storage."] = "Está usando %1\$s de su espacio disponible para ficheros.";
|
||||
App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Está usando %1\$s de %2\$s que tiene a su disposición para ficheros. (%3\$s%)";
|
||||
App::$strings["WARNING:"] = "ATENCIÓN: ";
|
||||
@ -1913,17 +1929,19 @@ App::$strings["Suggestions"] = "Sugerencias";
|
||||
App::$strings["See more..."] = "Ver más...";
|
||||
App::$strings["Saved Folders"] = "Carpetas guardadas";
|
||||
App::$strings["Click to show more"] = "Hacer clic para ver más";
|
||||
App::$strings["Tags"] = "Etiquetas";
|
||||
App::$strings["Profile Creation"] = "Creación de perfiles";
|
||||
App::$strings["Upload profile photo"] = "Cargar la foto del perfil";
|
||||
App::$strings["Upload cover photo"] = "Cargar la foto de portada del perfil";
|
||||
App::$strings["Edit your profile"] = "Editar su perfil";
|
||||
App::$strings["Find and Connect with others"] = "Encontrar y conectarse con otros";
|
||||
App::$strings["View the directory"] = "Ver el directorio";
|
||||
App::$strings["Manage your connections"] = "Gestionar sus conexiones";
|
||||
App::$strings["Communicate"] = "Comunicarse";
|
||||
App::$strings["View your channel homepage"] = "Ver la página principal de su canal";
|
||||
App::$strings["View your network stream"] = "Ver el \"stream\" de su red";
|
||||
App::$strings["Documentation"] = "Documentación";
|
||||
App::$strings["View public stream. Warning: not moderated"] = "Ver el \"stream\" público. Advertencia: no está moderado";
|
||||
App::$strings["View public stream"] = "Ver el \"stream\" público";
|
||||
App::$strings["New Member Links"] = "Enlaces para nuevos miembros";
|
||||
App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación";
|
||||
App::$strings["Inspect queue"] = "Examinar la cola";
|
||||
@ -1937,7 +1955,8 @@ App::$strings["Addon settings"] = "Ajustes de los complementos";
|
||||
App::$strings["Display settings"] = "Ajustes de visualización";
|
||||
App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal";
|
||||
App::$strings["Export channel"] = "Exportar canal";
|
||||
App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas";
|
||||
App::$strings["OAuth1 apps"] = "Aplicaciones OAuth1";
|
||||
App::$strings["OAuth2 apps"] = "Aplicaciones OAuth2";
|
||||
App::$strings["Permission Groups"] = "Grupos de permisos";
|
||||
App::$strings["Premium Channel Settings"] = "Configuración del canal premium";
|
||||
App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas";
|
||||
@ -1983,6 +2002,7 @@ App::$strings["Website SSL certificate is not valid. Please correct."] = "El cer
|
||||
App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Las tareas de Cron no están funcionando en %s";
|
||||
App::$strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no están funcionando.";
|
||||
App::$strings["never"] = "nunca";
|
||||
App::$strings["Cover Photo"] = "Imagen de portada del perfil";
|
||||
App::$strings["Focus (Hubzilla default)"] = "Focus (predefinido)";
|
||||
App::$strings["Theme settings"] = "Ajustes del tema";
|
||||
App::$strings["Narrow navbar"] = "Estrechar la barra de navegación";
|
||||
@ -2032,6 +2052,7 @@ App::$strings["Reminder note"] = "Recordatorio";
|
||||
App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Introduzca una nota que se mostrará cuando esté dentro de la proximidad especificada...";
|
||||
App::$strings["Add new rendezvous"] = "Añadir una nueva cita";
|
||||
App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Cree una nueva cita y comparta los enlaces de acceso con los que desea invitar al grupo. Aquellos que abran el enlace se convertirán en miembros de la cita. Pueden ver otras ubicaciones de miembros, añadir marcadores al mapa o compartir sus propias ubicaciones con el grupo.";
|
||||
App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "No tiene ninguna cita. ¡Presione el botón de arriba para crear una!";
|
||||
App::$strings["Some setting"] = "Algunos ajustes";
|
||||
App::$strings["A setting"] = "Un ajuste";
|
||||
App::$strings["Skeleton Settings"] = "Ajustes de Skeleton";
|
||||
@ -2305,7 +2326,7 @@ App::$strings["Configuration Help"] = "Ayuda para los ajustes";
|
||||
App::$strings["Jappix Mini Settings"] = "Ajustes de Jappix Mini";
|
||||
App::$strings["Currently blocked"] = "Actualmente bloqueado";
|
||||
App::$strings["No channels currently blocked"] = "No hay canales bloqueados actualmente";
|
||||
App::$strings["\"Superblock\" Settings"] = "Ajustes de \"Superblock\"";
|
||||
App::$strings["Superblock Settings"] = "Ajustes de Superblock";
|
||||
App::$strings["Block Completely"] = "Bloquear completamente";
|
||||
App::$strings["superblock settings updated"] = "se han actualizado los ajustes de superblock";
|
||||
App::$strings["Federate"] = "Federar";
|
||||
@ -2442,6 +2463,24 @@ App::$strings["Twitter Post Settings"] = "Ajustes de publicación en Twitter";
|
||||
App::$strings["Deactivate the feature"] = "Desactivar la funcionalidad";
|
||||
App::$strings["Hide the button and show the smilies directly."] = "Ocultar el botón y mostrar los smilies directamente.";
|
||||
App::$strings["Smileybutton Settings"] = "Ajustes de Smileybutton";
|
||||
App::$strings["Order Not Found"] = "No se ha encontrado el pedido";
|
||||
App::$strings["Order cannot be checked out."] = "No se puede verificar el pedido.";
|
||||
App::$strings["Enable Shopping Cart"] = "Habilitar el carro de la compra";
|
||||
App::$strings["Enable Test Catalog"] = "Habilitar el catálogo de pruebas";
|
||||
App::$strings["Enable Manual Payments"] = "Permitir pagos manuales";
|
||||
App::$strings["Base Cart Settings"] = "Configuración del carro base";
|
||||
App::$strings["Add Item"] = "Agregar un elemento";
|
||||
App::$strings["Call cart_post_"] = "Llamar a cart_post_";
|
||||
App::$strings["Cart Not Enabled (profile: "] = "El carro no está habilitado (perfil: ";
|
||||
App::$strings["Order not found."] = "El pedido no se ha encontrado.";
|
||||
App::$strings["No Order Found"] = "No se ha encontrado ningún pedido";
|
||||
App::$strings["call: "] = "llamar: ";
|
||||
App::$strings["An unknown error has occurred Please start again."] = "Se ha producido un error desconocido Vuelva a empezar.";
|
||||
App::$strings["Invalid Payment Type. Please start again."] = "Tipo de pago no válido. Por favor, empiece de nuevo.";
|
||||
App::$strings["Order not found"] = "El pedido no se ha encontrado";
|
||||
App::$strings["Error: order mismatch. Please try again."] = "Error: desajuste de pedidos. Por favor, inténtelo de nuevo.";
|
||||
App::$strings["Manual payments are not enabled."] = "Los pagos manuales no están habilitados.";
|
||||
App::$strings["Finished"] = "Terminado";
|
||||
App::$strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Este sitio es rastreado mediante la herramienta analítica <a href='http://www.piwik.org'>Piwik</a>.";
|
||||
App::$strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Si usted no quiere que sus visitas se registren de esta manera <a href='%s'>puede establecer una cookie para evitar que Piwik rastree otras visitas del sitio</a> (opt-out).";
|
||||
App::$strings["Piwik Base URL"] = "URL base de Piwik";
|
||||
@ -2641,7 +2680,6 @@ App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados";
|
||||
App::$strings["View Source"] = "Ver el código fuente de la entrada";
|
||||
App::$strings["Follow Thread"] = "Seguir este hilo";
|
||||
App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo";
|
||||
App::$strings["Activity/Posts"] = "Actividad y publicaciones";
|
||||
App::$strings["Edit Connection"] = "Editar conexión";
|
||||
App::$strings["Message"] = "Mensaje";
|
||||
App::$strings["%s likes this."] = "A %s le gusta esto.";
|
||||
@ -2725,6 +2763,7 @@ App::$strings["Safe Mode"] = "Modo seguro";
|
||||
App::$strings["Public Forums Only"] = "Solo foros públicos";
|
||||
App::$strings["This Website Only"] = "Solo este sitio web";
|
||||
App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s";
|
||||
App::$strings["Unable to import a removed channel."] = "No se puede importar un canal eliminado.";
|
||||
App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado.";
|
||||
App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado.";
|
||||
App::$strings["prev"] = "anterior";
|
||||
@ -2834,6 +2873,7 @@ App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s
|
||||
App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio.";
|
||||
App::$strings["Channel location missing."] = "Falta la dirección del canal.";
|
||||
App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal.";
|
||||
App::$strings["Premium channel - please visit:"] = "Canal Premium - por favor visite:";
|
||||
App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe.";
|
||||
App::$strings["Remote channel or protocol unavailable."] = "Canal remoto o protocolo no disponible.";
|
||||
App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado.";
|
||||
@ -2958,8 +2998,8 @@ App::$strings["j F, Y"] = "j F Y";
|
||||
App::$strings["j F"] = "j F";
|
||||
App::$strings["Birthday:"] = "Cumpleaños:";
|
||||
App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s";
|
||||
App::$strings["Sexual Preference:"] = "Orientación sexual:";
|
||||
App::$strings["Tags:"] = "Etiquetas:";
|
||||
App::$strings["Sexual Preference:"] = "Orientación sexual:";
|
||||
App::$strings["Political Views:"] = "Posición política:";
|
||||
App::$strings["Religion:"] = "Religión:";
|
||||
App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:";
|
||||
@ -3024,6 +3064,7 @@ App::$strings["Embedded content"] = "Contenido incorporado";
|
||||
App::$strings["Embedding disabled"] = "Incrustación deshabilitada";
|
||||
App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s da la bienvenida a %2\$s";
|
||||
App::$strings["General Features"] = "Funcionalidades básicas";
|
||||
App::$strings["Display new member quick links menu"] = "Mostrar el menú de enlaces rápidos para nuevos miembros";
|
||||
App::$strings["Advanced Profiles"] = "Perfiles avanzados";
|
||||
App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales";
|
||||
App::$strings["Profile Import/Export"] = "Importar/Exportar perfil";
|
||||
@ -3057,8 +3098,10 @@ App::$strings["Enable management and selection of privacy groups"] = "Activar la
|
||||
App::$strings["Multiple Profiles"] = "Múltiples perfiles";
|
||||
App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles";
|
||||
App::$strings["Provide alternate connection permission roles."] = "Proporcionar roles de acceso alternativos para esta conexión.";
|
||||
App::$strings["OAuth Clients"] = "Clientes OAuth";
|
||||
App::$strings["Manage authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación para aplicaciones móviles y remotas.";
|
||||
App::$strings["OAuth1 Clients"] = "Clientes OAuth1";
|
||||
App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación OAuth1 para aplicaciones móviles y remotas.";
|
||||
App::$strings["OAuth2 Clients"] = "Clientes OAuth2";
|
||||
App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación OAuth2 para aplicaciones móviles y remotas.";
|
||||
App::$strings["Access Tokens"] = "Tokens de acceso";
|
||||
App::$strings["Create access tokens so that non-members can access private content."] = "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado.";
|
||||
App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas";
|
||||
@ -3077,6 +3120,8 @@ App::$strings["Content Expiration"] = "Caducidad del contenido";
|
||||
App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante";
|
||||
App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados";
|
||||
App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo.";
|
||||
App::$strings["Auto-save drafts of posts and comments"] = "Guardar automáticamente borradores de entradas y comentarios";
|
||||
App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Guarda automáticamente los borradores de comentarios y publicaciones en el almacenamiento del navegador local para ayudar a evitar la pérdida accidental de composiciones.";
|
||||
App::$strings["Network and Stream Filtering"] = "Filtrado del contenido";
|
||||
App::$strings["Search by Date"] = "Buscar por fecha";
|
||||
App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas";
|
||||
@ -3104,7 +3149,7 @@ App::$strings["Star Posts"] = "Entradas destacadas";
|
||||
App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella";
|
||||
App::$strings["Tag Cloud"] = "Nube de etiquetas";
|
||||
App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal";
|
||||
App::$strings["Tags"] = "Etiquetas";
|
||||
App::$strings["Trending"] = "Populares";
|
||||
App::$strings["Keywords"] = "Palabras clave";
|
||||
App::$strings["have"] = "tener";
|
||||
App::$strings["has"] = "tiene";
|
||||
@ -3175,9 +3220,9 @@ App::$strings["Take me home"] = "Volver a la página principal";
|
||||
App::$strings["Log me out of this site"] = "Salir de este sitio";
|
||||
App::$strings["Create an account"] = "Crear una cuenta";
|
||||
App::$strings["Help and documentation"] = "Ayuda y documentación";
|
||||
App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido";
|
||||
App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Buscar en el sitio @nombre, !foro, #tag, ?docs, contenido";
|
||||
App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio";
|
||||
App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido";
|
||||
App::$strings["@name, !forum, #tag, ?doc, content"] = "@nombre, !foro, #tag, ?docs, contenido";
|
||||
App::$strings["Please wait..."] = "Espere por favor…";
|
||||
App::$strings["Add Apps"] = "Añadir aplicaciones";
|
||||
App::$strings["Arrange Apps"] = "Organizar aplicaciones";
|
||||
@ -3200,6 +3245,7 @@ App::$strings["Add privacy group"] = "Añadir un grupo de canales";
|
||||
App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo";
|
||||
App::$strings["New window"] = "Nueva ventana";
|
||||
App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte";
|
||||
App::$strings["Delegation session ended."] = "Finalizó la sesión de la delegación.";
|
||||
App::$strings["Logged out."] = "Desconectado/a.";
|
||||
App::$strings["Email validation is incomplete. Please check your email."] = "La validación del correo electrónico está incompleta. Por favor, compruebe su correo electrónico.";
|
||||
App::$strings["Failed authentication"] = "Autenticación fallida.";
|
||||
|
3080
view/fr/hmessages.po
3080
view/fr/hmessages.po
File diff suppressed because it is too large
Load Diff
@ -7,7 +7,7 @@ function string_plural_select_fr($n){
|
||||
App::$rtl = 0;
|
||||
App::$strings["Can view my channel stream and posts"] = "Peut voir mon canal et mes publications";
|
||||
App::$strings["Can send me their channel stream and posts"] = "Peuvent m'envoyer leur flux et les publications de leur canal";
|
||||
App::$strings["Can view my default channel profile"] = "Peut voir le profil par défaut du canal.";
|
||||
App::$strings["Can view my default channel profile"] = "Peut voir le profil par défaut du canal";
|
||||
App::$strings["Can view my connections"] = "Peut voir mes contacts";
|
||||
App::$strings["Can view my file storage and photos"] = "Peut voir mes fichiers et photos";
|
||||
App::$strings["Can upload/modify my file storage and photos"] = "Peut télécharger/modifier mes fichiers et mes photos";
|
||||
@ -15,15 +15,16 @@ App::$strings["Can view my channel webpages"] = "Peut voir les pages web de mon
|
||||
App::$strings["Can view my wiki pages"] = "Peut voir les pages de mon wiki";
|
||||
App::$strings["Can create/edit my channel webpages"] = "Peut créer ou modifier les pages web de mon canal";
|
||||
App::$strings["Can write to my wiki pages"] = "Peut écrire sur mon wiki";
|
||||
App::$strings["Can post on my channel (wall) page"] = "Peut écrire sur le mur de mon canal (mur)";
|
||||
App::$strings["Can post on my channel (wall) page"] = "Peut poster sur mon canal (\"mur\")";
|
||||
App::$strings["Can comment on or like my posts"] = "Peuvent commenter et/ou aimer mes publications";
|
||||
App::$strings["Can send me private mail messages"] = "Peuvent m'envoyer des messages privés";
|
||||
App::$strings["Can like/dislike profiles and profile things"] = "Peut aimer ou détester des profiles";
|
||||
App::$strings["Can like/dislike profiles and profile things"] = "Peut aimer ou détester des profils";
|
||||
App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Peut faire suivre à tous mes contacts avec la mention @+ dans une publication";
|
||||
App::$strings["Can chat with me"] = "Peut discuter avec moi";
|
||||
App::$strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques vers des canaux dérivés";
|
||||
App::$strings["Can administer my channel"] = "Peut administrer mon canal";
|
||||
App::$strings["Social Networking"] = "Réseau social";
|
||||
App::$strings["Social - Party"] = "Social - Fête";
|
||||
App::$strings["Social - Mostly Public"] = "Social - principalement public";
|
||||
App::$strings["Social - Restricted"] = "Social - restreint";
|
||||
App::$strings["Social - Private"] = "Social - privé";
|
||||
@ -362,11 +363,10 @@ App::$strings["Error: PDO database PHP module required but not installed."] = "E
|
||||
App::$strings["Error: mb_string PHP module required but not installed."] = "Erreur : le module mb_string de PHP est requis, mais pas installé.";
|
||||
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Erreur : le module xml de PHP est requis pour le DAV, mais pas installé.";
|
||||
App::$strings["Error: zip PHP module required but not installed."] = "Erreur : le module zip de PHP est requis, mais pas installé.";
|
||||
App::$strings[".htconfig.php is writable"] = "Le fichier .htconfig.php est accessible en écriture";
|
||||
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable.";
|
||||
App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "C'est généralement lié à un problème de droits d'accès, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit.";
|
||||
App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de \$Projectname.";
|
||||
App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées.";
|
||||
App::$strings[".htconfig.php is writable"] = "Le fichier .htconfig.php est accessible en écriture";
|
||||
App::$strings["Please see install/INSTALL.txt for additional information."] = "Merci de vous reporter à install/INSTALL.txt pour des informations supplémentaires.";
|
||||
App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Ce logiciel utilise Smarty3 comme moteur de modèles pour afficher ses vues Web. Smarty3 compile ses modèles en PHP pour accélérer le rendu.";
|
||||
App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Afin de stocker ces modèles compilés, le serveur Web doit disposer d'un accès en écriture au répertoire %s selon le dossier Web racine.";
|
||||
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire.";
|
||||
@ -551,8 +551,6 @@ App::$strings["Publicly visible description of this site. Displayed on siteinfo
|
||||
App::$strings["System language"] = "Langue du système";
|
||||
App::$strings["System theme"] = "Thème du système";
|
||||
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Thème par défaut - il peut être changé pour chaque profil utilisateur - <a href='#' id='cnftheme'>modifier le thème</a>";
|
||||
App::$strings["Mobile system theme"] = "Thème par défaut pour les mobiles";
|
||||
App::$strings["Theme for mobile devices"] = "Thème pour les mobiles";
|
||||
App::$strings["Allow Feeds as Connections"] = "Autoriser les Flux (RSS) comme contacts";
|
||||
App::$strings["(Heavy system resource usage)"] = "(Impact important sur les ressources)";
|
||||
App::$strings["Maximum image size"] = "Taille maximale des images";
|
||||
@ -612,6 +610,7 @@ App::$strings["Maximum Load Average"] = "Charge maximale moyenne";
|
||||
App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale au-delà de laquelle distribution et scrutation sont reportées - par défaut 50.";
|
||||
App::$strings["Expiration period in days for imported (grid/network) content"] = "Délai d'expiration pour le contenu importé (réseau)";
|
||||
App::$strings["0 for no expiration of imported content"] = "0 pour ne pas expirer le contenu importé";
|
||||
App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Ne pas considérer comme expirés les messages qui ont reçu des commentaires depuis moins de ce nombre de jours";
|
||||
App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Serveurs publics : page Web facultative d'atterrissage (marketing) pour les nouveaux inscrits.";
|
||||
App::$strings["Create this page first. Default is %s/register"] = "Créez d'abord cette page. La valeur par défaut est %s /register";
|
||||
App::$strings["Page to display after creating a new channel"] = "Page à afficher après la création d'un nouveau canal";
|
||||
@ -763,9 +762,10 @@ App::$strings["New connections"] = "Nouveaux contacts";
|
||||
App::$strings["System Registrations"] = "Inscriptions système";
|
||||
App::$strings["Unseen shared files"] = "Fichiers partagés non vus";
|
||||
App::$strings["Unseen public activity"] = "Activité publique non vue";
|
||||
App::$strings["Unseen likes and dislikes"] = "Aime et n'aime pas non consultés";
|
||||
App::$strings["Email notification hub (hostname)"] = "Concentrateur de notification par courriel (nom d'hôte)";
|
||||
App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Si votre canal est dupliqué sur plusieurs hubs, définissez cet emplacement comme votre emplacement préféré. Cela empêchera les notifications par courriel en double. Exemple : %s";
|
||||
App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Afficher également les nouvelles publications sur le mur, les messages privés et les contacts dans Notifications";
|
||||
App::$strings["Show new wall posts, private messages and connections under Notices"] = "Montrer les nouveaux envois, messages privés et les nouvelles connexions dans Notifications";
|
||||
App::$strings["Notify me of events this many days in advance"] = "Me prévenir d’événements à venir tant de jours en avance";
|
||||
App::$strings["Must be greater than 0"] = "Doit être supérieur à 0";
|
||||
App::$strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/type de page";
|
||||
@ -779,6 +779,8 @@ App::$strings["Remove this channel."] = "Supprimer ce canal";
|
||||
App::$strings["Firefox Share \$Projectname provider"] = "Connecteur \$Projectname pour Firefox Share";
|
||||
App::$strings["Start calendar week on Monday"] = "Commencer la semaine du calendrier le lundi";
|
||||
App::$strings["Additional Features"] = "Fonctionnalités additionnelles";
|
||||
App::$strings["Your technical skill level"] = "Votre niveau technique";
|
||||
App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilisé pour offrir une expérience de membre et des fonctions supplémentaires compatibles avec votre niveau de confort.";
|
||||
App::$strings["This channel is limited to %d tokens"] = "Ce canal est limité à %d jetons";
|
||||
App::$strings["Name and Password are required."] = "Le nom et le mot de passe sont requis";
|
||||
App::$strings["Token saved."] = "Jeton sauvegardé";
|
||||
@ -789,6 +791,22 @@ App::$strings["Login Name"] = "Nom d'utilisateur";
|
||||
App::$strings["Login Password"] = "Mot de passe";
|
||||
App::$strings["Expires (yyyy-mm-dd)"] = "Date d'expiration sous la forme année mois jour (AAAA-MM-JJ)";
|
||||
App::$strings["Their Settings"] = "Leurs paramètres";
|
||||
App::$strings["Name and Secret are required"] = "Un nom et un secret sont requis";
|
||||
App::$strings["Add OAuth2 application"] = "Ajouter une application OAuth2";
|
||||
App::$strings["Name of application"] = "Nom de l'application";
|
||||
App::$strings["Consumer Secret"] = "Secret client";
|
||||
App::$strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères.";
|
||||
App::$strings["Redirect"] = "Redirection";
|
||||
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez vide, sauf si votre application le requiert spécifiquement";
|
||||
App::$strings["Grant Types"] = "Types de bourses";
|
||||
App::$strings["leave blank unless your application sepcifically requires this"] = "Laisser vide, sauf si votre application le requiert spécifiquement";
|
||||
App::$strings["Authorization scope"] = "Portée de l'autorisation";
|
||||
App::$strings["OAuth2 Application not found."] = "Application OAuth2 introuvable";
|
||||
App::$strings["Add application"] = "Ajouter une application";
|
||||
App::$strings["Connected OAuth2 Apps"] = "Applications OAuth2 connectées";
|
||||
App::$strings["Client key starts with"] = "La clef partagée commence par";
|
||||
App::$strings["No name"] = "Sans nom";
|
||||
App::$strings["Remove authorization"] = "Révoquer l'autorisation";
|
||||
App::$strings["Not valid email."] = "Adresse de courriel non valide.";
|
||||
App::$strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser.";
|
||||
App::$strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci d'essayer à nouveau.";
|
||||
@ -803,8 +821,6 @@ App::$strings["Current Password"] = "Mot de passe actuel";
|
||||
App::$strings["Enter New Password"] = "Entrez votre nouveau mot de passe";
|
||||
App::$strings["Confirm New Password"] = "Confirmez le nouveau mot de passe";
|
||||
App::$strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier";
|
||||
App::$strings["Your technical skill level"] = "Votre niveau technique";
|
||||
App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilisé pour offrir une expérience de membre et des fonctions supplémentaires compatibles avec votre niveau de confort.";
|
||||
App::$strings["Remove Account"] = "Supprimer le compte";
|
||||
App::$strings["Remove this account including all its channels"] = "Supprimer ce compte et tous ses canaux";
|
||||
App::$strings["Affinity Slider settings updated."] = "Paramètres de la réglette d'affinité mis à jour.";
|
||||
@ -845,20 +861,11 @@ App::$strings["click to expand content exceeding this height"] = "cliquer pour d
|
||||
App::$strings["Grid page max height of content (in pixels)"] = "Hauteur maximale du contenu sur la page du réseau (en pixels)";
|
||||
App::$strings["Name is required"] = "Le nom est requis";
|
||||
App::$strings["Key and Secret are required"] = "Clef et secret sont requis";
|
||||
App::$strings["Add application"] = "Ajouter une application";
|
||||
App::$strings["Name of application"] = "Nom de l'application";
|
||||
App::$strings["Consumer Key"] = "Clef client";
|
||||
App::$strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères.";
|
||||
App::$strings["Consumer Secret"] = "Secret client";
|
||||
App::$strings["Redirect"] = "Redirection";
|
||||
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez vide, sauf si votre application le requiert spécifiquement";
|
||||
App::$strings["Icon url"] = "URL de l'icône";
|
||||
App::$strings["Optional"] = "Facultatif";
|
||||
App::$strings["Application not found."] = "Application introuvable.";
|
||||
App::$strings["Connected Apps"] = "Applications connectées";
|
||||
App::$strings["Client key starts with"] = "La clef partagée commence par";
|
||||
App::$strings["No name"] = "Sans nom";
|
||||
App::$strings["Remove authorization"] = "Révoquer l'autorisation";
|
||||
App::$strings["View Photo"] = "Voir la photo";
|
||||
App::$strings["Edit Album"] = "Modifier l'album";
|
||||
App::$strings["Upload"] = "Envoyer";
|
||||
@ -880,7 +887,7 @@ App::$strings["Permissions"] = "Droits d'accès";
|
||||
App::$strings["Add Thing to your Profile"] = "Ajouter l'élément à votre profil";
|
||||
App::$strings["No more system notifications."] = "Pas d'autre notification du système.";
|
||||
App::$strings["System Notifications"] = "Notifications du système";
|
||||
App::$strings["Channel added."] = "Canal ajouté.";
|
||||
App::$strings["Connection added."] = "Connexion ajoutée.";
|
||||
App::$strings["Your service plan only allows %d channels."] = "Votre forfait n'autorise que %d canaux.";
|
||||
App::$strings["No channel. Import failed."] = "Pas de canal. Echec de l'import.";
|
||||
App::$strings["Import completed."] = "L'import est terminé.";
|
||||
@ -915,19 +922,22 @@ App::$strings["Create new app"] = "Créer une application";
|
||||
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s";
|
||||
App::$strings["Mood"] = "Humeur";
|
||||
App::$strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis";
|
||||
App::$strings["Active"] = "Active";
|
||||
App::$strings["Blocked"] = "Bloqué(e)";
|
||||
App::$strings["Ignored"] = "Ignoré(e)";
|
||||
App::$strings["Hidden"] = "Caché";
|
||||
App::$strings["Archived/Unreachable"] = "Archivé/Injoignable";
|
||||
App::$strings["New"] = "Nouveautés";
|
||||
App::$strings["All"] = "Tous";
|
||||
App::$strings["Active Connections"] = "Connexions actives";
|
||||
App::$strings["Show active connections"] = "Voir les connexions actives";
|
||||
App::$strings["New Connections"] = "Nouveaux contacts";
|
||||
App::$strings["Show pending (new) connections"] = "Voir les (nouveaux) contacts en attente";
|
||||
App::$strings["Show all connections"] = "Voir tous les contacts";
|
||||
App::$strings["Only show blocked connections"] = "Ne montrer que les contacts bloqués";
|
||||
App::$strings["Only show ignored connections"] = "Ne montrer que les contacts ignorés";
|
||||
App::$strings["Only show archived/unreachable connections"] = "Ne montrer que les contacts archivés/injoignables";
|
||||
App::$strings["Only show hidden connections"] = "Ne montrer que les contacts cachés";
|
||||
App::$strings["Show all connections"] = "Voir tous les contacts";
|
||||
App::$strings["Pending approval"] = "En attente de validation";
|
||||
App::$strings["Archived"] = "Archivé";
|
||||
App::$strings["Not connected at this location"] = "Contact introuvable à cette adresse";
|
||||
@ -969,10 +979,10 @@ App::$strings["Upload Photos"] = "Téléverser des photos";
|
||||
App::$strings["Enter an album name"] = "Entrer un nom d'album";
|
||||
App::$strings["or select an existing album (doubleclick)"] = "ou sélectionner un album existant (double-clic)";
|
||||
App::$strings["Create a status post for this upload"] = "Créer une publication de statut pour cet envoi";
|
||||
App::$strings["Caption (optional):"] = "Légende (facultative)";
|
||||
App::$strings["Description (optional):"] = "Description (facultative)";
|
||||
App::$strings["Description (optional)"] = "Description (facultative)";
|
||||
App::$strings["Show Newest First"] = "Les plus récent(e)s en premier";
|
||||
App::$strings["Show Oldest First"] = "Les moins récent(e)s en premier";
|
||||
App::$strings["Add Photos"] = "Ajouter des photos";
|
||||
App::$strings["Permission denied. Access to this item may be restricted."] = "Accès refusé. L'accès à cet élément peut avoir été restreint.";
|
||||
App::$strings["Photo not available"] = "Photo non disponible";
|
||||
App::$strings["Use as profile photo"] = "Utiliser comme photo du profil";
|
||||
@ -985,7 +995,6 @@ App::$strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)";
|
||||
App::$strings["Move photo to album"] = "Déplacer la photo dans l'album";
|
||||
App::$strings["Enter a new album name"] = "Entrer un nouveau nom d'album";
|
||||
App::$strings["or select an existing one (doubleclick)"] = "ou en sélectionner un existant (double-clic)";
|
||||
App::$strings["Caption"] = "Titre/légende";
|
||||
App::$strings["Add a Tag"] = "Ajouter une étiquette";
|
||||
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon";
|
||||
App::$strings["Flag as adult in album view"] = "Marquer comme \"adulte\" dans l'affichage de l'album";
|
||||
@ -1260,6 +1269,10 @@ App::$strings["Warning: Changing some settings could render your channel inopera
|
||||
App::$strings["If enabled, connection requests will be approved without your interaction"] = "Si cette option est activée, les demandes de connexion seront approuvées sans votre intervention.";
|
||||
App::$strings["Automatic approval settings"] = "Paramètres d'approbation automatique";
|
||||
App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Certaines permissions individuelles peuvent avoir été prédéfinies ou verrouillées en fonction de votre type de canal et de vos paramètres de confidentialité.";
|
||||
App::$strings["Unknown App"] = "App inconnue";
|
||||
App::$strings["Authorize"] = "Autoriser";
|
||||
App::$strings["Do you authorize the app %s to access your channel data?"] = "Autorisez vous l'app %s à accéder aux données de votre canal ?";
|
||||
App::$strings["Allow"] = "Permettre";
|
||||
App::$strings["Privacy group created."] = "Groupe de contacts créé.";
|
||||
App::$strings["Could not create privacy group."] = "Impossible de créer le groupe de contacts.";
|
||||
App::$strings["Privacy group not found."] = "Groupe de contacts introuvable.";
|
||||
@ -1296,7 +1309,7 @@ App::$strings["Hide your connections list from viewers of this profile"] = "Cach
|
||||
App::$strings["Edit Profile Details"] = "Modifier les détails du profil";
|
||||
App::$strings["View this profile"] = "Voir ce profil";
|
||||
App::$strings["Edit visibility"] = "Changer la visibilité";
|
||||
App::$strings["Profile Tools"] = "Ouitls pour votre profile";
|
||||
App::$strings["Profile Tools"] = "Outils pour votre profil";
|
||||
App::$strings["Change cover photo"] = "Modifier votre bannière";
|
||||
App::$strings["Change profile photo"] = "Changer la photo du profil";
|
||||
App::$strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces paramètres";
|
||||
@ -1304,14 +1317,14 @@ App::$strings["Clone this profile"] = "Cloner ce profil";
|
||||
App::$strings["Delete this profile"] = "Supprimer ce profil";
|
||||
App::$strings["Add profile things"] = "Ajouter des éléments de profil";
|
||||
App::$strings["Personal"] = "Me concernant";
|
||||
App::$strings["Relation"] = "Contacts";
|
||||
App::$strings["Relationship"] = "Relation";
|
||||
App::$strings["Miscellaneous"] = "Divers";
|
||||
App::$strings["Import profile from file"] = "Importer le profil à partir d'un fichier";
|
||||
App::$strings["Export profile to file"] = "Exporter le profil vers un fichier.";
|
||||
App::$strings["Your gender"] = "Votre genre";
|
||||
App::$strings["Marital status"] = "Etat civil";
|
||||
App::$strings["Sexual preference"] = "préférence sexuelle";
|
||||
App::$strings["Profile name"] = "Nom du profile";
|
||||
App::$strings["Profile name"] = "Nom du profil";
|
||||
App::$strings["This is your default profile."] = "Ceci est votre profil par défaut.";
|
||||
App::$strings["Your full name"] = "Votre nom complet";
|
||||
App::$strings["Title/Description"] = "Titre/description";
|
||||
@ -1458,6 +1471,7 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas
|
||||
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s";
|
||||
App::$strings["Action completed."] = "Action terminée.";
|
||||
App::$strings["Thank you."] = "Merci.";
|
||||
App::$strings["No default suggestions were found."] = "Aucune suggestion par défaut n'a été trouvée.";
|
||||
App::$strings["%d rating"] = array(
|
||||
0 => "%d évaluation",
|
||||
1 => "%d évaluations",
|
||||
@ -1729,44 +1743,44 @@ App::$strings["To stop receiving these messages, please adjust your Notification
|
||||
App::$strings["To stop receiving these messages, please adjust your %s."] = "Pour ne plus recevoir ces messages, veuillez ajuster votre %s.";
|
||||
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
|
||||
App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] Nouveau mail reçu sur %s";
|
||||
App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, vous avez reçu un message privé sur %3\$s, de la part de %2\$s.";
|
||||
App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé à %2\$s.";
|
||||
App::$strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
|
||||
App::$strings["a private message"] = "un message privé";
|
||||
App::$strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir et/ou répondre à vos messages privés.";
|
||||
App::$strings["commented on"] = "commenté";
|
||||
App::$strings["liked"] = "aimé";
|
||||
App::$strings["disliked"] = "pas aimé";
|
||||
App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]";
|
||||
App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]";
|
||||
App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]your %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s]votre %5\$s[/zrl]";
|
||||
App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]";
|
||||
App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%4\$s de %5\$s[/zrl]";
|
||||
App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]votre %4\$s[/zrl]";
|
||||
App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notification] Commentaire modéré pour la conversation n°%1\$d par %2\$s";
|
||||
App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Commentaire effectué sur la conversation #%1\$d par %2\$s";
|
||||
App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s a commenté un élément de conversation que vous suivez.";
|
||||
App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sa commenté un élément ou une conversation que vous suivez.";
|
||||
App::$strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir et/ou répondre sur cette conversation.";
|
||||
App::$strings["Please visit %s to approve or reject this comment."] = "Merci de visiter %spour valider ou rejeter ce commentaire.";
|
||||
App::$strings["%1\$s, %2\$s liked [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s aiment [zrl=%3\$s]votre %4\$s[/zrl]";
|
||||
App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s aime [zrl=%2\$s]votre %3\$s[/zrl]";
|
||||
App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Aime reçu à la convesation #%1\$d par %2\$s";
|
||||
App::$strings["%1\$s, %2\$s liked an item/conversation you created."] = "%1\$s, %2\$s a aimé un élément ou une conversation que vous avez créée.";
|
||||
App::$strings["%1\$s liked an item/conversation you created."] = "%1\$sa commenté un élément ou une conversation que vous avez créée ";
|
||||
App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notify] %s a publié sur le mur de votre profil";
|
||||
App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s a publié sur votre profil à %3\$s";
|
||||
App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s a publié sur [zrl=%3\$s]votre profil[/zrl]";
|
||||
App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a posté sur le mur de votre profil à %2\$s";
|
||||
App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s envoyé à [zrl=%2\$s]votre mur[/zrl]";
|
||||
App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notify] %s vous a étiquetté";
|
||||
App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, vous avez été étiqueté sur %3\$s par %2\$s";
|
||||
App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]vous a étiqueté[/zrl].";
|
||||
App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté à %2\$s";
|
||||
App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]vous a étiqueté[/zrl].";
|
||||
App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notify] %1\$s vous a poké";
|
||||
App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s vous a tapoté sur %3\$s";
|
||||
App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]vous a tapoté[/zrl].";
|
||||
App::$strings["%1\$s poked you at %2\$s"] = "%1\$s vous a tapoté à %2\$s";
|
||||
App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]vous a tapoté[/zrl].";
|
||||
App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %s a étiquetté votre publication";
|
||||
App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s a étiqueté votre publication sur %3\$s";
|
||||
App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s a étiqueté [zrl=%3\$s]votre publication[/zrl]";
|
||||
App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre message à %2\$s";
|
||||
App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s a étiqueté [zrl=%2\$s]votre message[/zrl]";
|
||||
App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Demande de relation reçue";
|
||||
App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une demande de contact de '%2\$s' sur %3\$s";
|
||||
App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, vous avez reçu [zrl=%2\$s]une demande de contact[/zrl] de %3\$s.";
|
||||
App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Vous avez reçu une nouvelle demande de connexion de la part de '%1\$s' à %2\$s";
|
||||
App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Vous avez reçu [zrl=%1\$s]une nouvelle demande de connexion[/zrl] de la part de %2\$s.";
|
||||
App::$strings["You may visit their profile at %s"] = "Vous pouvez visiter leur profil sur %s";
|
||||
App::$strings["Please visit %s to approve or reject the connection request."] = "Merci de visiter %s pour valider (ou non) cette demande de contact.";
|
||||
App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Suggestion d'amitié reçue";
|
||||
App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une suggestion d'ami(e) de '%2\$s' à %3\$s";
|
||||
App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, avez reçu %3\$s comme [zrl=%2\$s]une suggestion d'ami(e)[/zrl] de %4\$s.";
|
||||
App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion d'ami de la part de '%1\$s' à %2\$s";
|
||||
App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Vous avez reçu [zrl=%1\$s]une suggestion d'ami[/zrl] pour %2\$s de %3\$s.";
|
||||
App::$strings["Name:"] = "Nom :";
|
||||
App::$strings["Photo:"] = "Photo :";
|
||||
App::$strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour valider ou rejeter cette suggestion.";
|
||||
@ -1842,6 +1856,7 @@ App::$strings["Schedule Inbox"] = "Calendrier - Messages entrants";
|
||||
App::$strings["Schedule Outbox"] = "Calendrier - Messages sortants";
|
||||
App::$strings["Total"] = "Total";
|
||||
App::$strings["Shared"] = "Partagé";
|
||||
App::$strings["Add Files"] = "Ajouter des fichiers";
|
||||
App::$strings["You are using %1\$s of your available file storage."] = "Vous utilisez %1\$s de votre espace de stockage.";
|
||||
App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Vous utilisez %1\$s sur %2\$s d'espace disponible. (%3\$s%)";
|
||||
App::$strings["WARNING:"] = "AVERTISSEMENT :";
|
||||
@ -1913,17 +1928,19 @@ App::$strings["Suggestions"] = "Suggestions";
|
||||
App::$strings["See more..."] = "Voir plus...";
|
||||
App::$strings["Saved Folders"] = "Dossiers sauvegardés";
|
||||
App::$strings["Click to show more"] = "Cliquer pour voir plus";
|
||||
App::$strings["Tags"] = "Étiquettes";
|
||||
App::$strings["Profile Creation"] = "Création de profil";
|
||||
App::$strings["Upload profile photo"] = "Téléverser la photo du profil";
|
||||
App::$strings["Upload cover photo"] = "Téléverser la photo de couverture";
|
||||
App::$strings["Edit your profile"] = "Modifier votre profil";
|
||||
App::$strings["Find and Connect with others"] = "Trouver et connecter avec des autres personnes";
|
||||
App::$strings["View the directory"] = "Voir l'annuaire";
|
||||
App::$strings["Manage your connections"] = "Gérez vos connexions";
|
||||
App::$strings["Communicate"] = "Communiquer";
|
||||
App::$strings["View your channel homepage"] = "Voir la page d'accueil de votre canal";
|
||||
App::$strings["View your network stream"] = "Visualisez votre flux réseau";
|
||||
App::$strings["Documentation"] = "Documentation";
|
||||
App::$strings["View public stream. Warning: not moderated"] = "Voir le flux public. Avertissement : non modéré";
|
||||
App::$strings["View public stream"] = "Voir le flux public";
|
||||
App::$strings["New Member Links"] = "Liens pour les nouveaux membres";
|
||||
App::$strings["Member registrations waiting for confirmation"] = "Inscriptions en attente d'approbation";
|
||||
App::$strings["Inspect queue"] = "Analyser la file d'attente";
|
||||
@ -1937,7 +1954,8 @@ App::$strings["Addon settings"] = "Paramètres de greffon";
|
||||
App::$strings["Display settings"] = "Paramètres d'affichage";
|
||||
App::$strings["Manage locations"] = "Gérer les emplacements";
|
||||
App::$strings["Export channel"] = "Exporter le canal";
|
||||
App::$strings["Connected apps"] = "Applications connectées";
|
||||
App::$strings["OAuth1 apps"] = "OAuth1 applications";
|
||||
App::$strings["OAuth2 apps"] = "OAuth2 applications";
|
||||
App::$strings["Permission Groups"] = "Groupes d'accès";
|
||||
App::$strings["Premium Channel Settings"] = "Paramètres de canal VIP";
|
||||
App::$strings["Bookmarked Chatrooms"] = "Salons favoris";
|
||||
@ -2032,6 +2050,7 @@ App::$strings["Reminder note"] = "Note de rappel";
|
||||
App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Saisissez une note à afficher quand vous serez à la distance indiquée...";
|
||||
App::$strings["Add new rendezvous"] = "Ajouter un nouveau rendezvous";
|
||||
App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Créez un nouveau rendez-vous et partagez le lien d'accès avec les gens que vous souhaitez inviter au groupe. Ceux qui ouvrent le lien deviennent membres du rendez-vous. Ils peuvent afficher les emplacements des autres membres, ajouter des marqueurs à la carte ou partager leurs propres emplacements avec le groupe.";
|
||||
App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "Vous n'avez pas de rendez-vous. Appuyez sur le bouton ci-dessus pour créer un rendez-vous !";
|
||||
App::$strings["Some setting"] = "Un certain paramètre";
|
||||
App::$strings["A setting"] = "Un paramètre";
|
||||
App::$strings["Skeleton Settings"] = "Paramètres du squelette";
|
||||
@ -2305,7 +2324,7 @@ App::$strings["Configuration Help"] = "Aide pour la configuration";
|
||||
App::$strings["Jappix Mini Settings"] = "Paramètres de Jappix mini";
|
||||
App::$strings["Currently blocked"] = "Actuellement bloqué";
|
||||
App::$strings["No channels currently blocked"] = "Aucun canal n'est actuellement bloqué";
|
||||
App::$strings["\"Superblock\" Settings"] = "Paramètres \"Superblock\"";
|
||||
App::$strings["Superblock Settings"] = "Paramètres de Superblock";
|
||||
App::$strings["Block Completely"] = "Bloquer complètement";
|
||||
App::$strings["superblock settings updated"] = "Les paramètres du superblock ont été mis à jour";
|
||||
App::$strings["Federate"] = "Fédérer";
|
||||
@ -2404,7 +2423,7 @@ App::$strings["Cancel Connection Process"] = "Annuler le processus de prise de c
|
||||
App::$strings["Current GNU social API is"] = "L'API GNU-social courante est";
|
||||
App::$strings["Cancel GNU social Connection"] = "Annuler la connexion GNU-social";
|
||||
App::$strings["Currently connected to: "] = "Actuellement connecté à :";
|
||||
App::$strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Remarque : en raison de vos paramètres de confidentialité (masquer les détails de votre profil aux visiteurs inconnus? ), le lien potentiellement inclus dans les annonces publiques relayées sur GNU-social amènera le visiteur à une page vierge informant le visiteur que l'accès à votre profil a été restreint.";
|
||||
App::$strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Remarque</strong> : en raison de vos paramètres de confidentialité (<em>masquer les détails de votre profil aux visiteurs inconnus ?</em>), le lien potentiellement inclus dans les annonces publiques relayées sur GNU-social amènera le visiteur à une page vierge informant le visiteur que l'accès à votre profil a été restreint.";
|
||||
App::$strings["Allow posting to GNU social"] = "Autoriser la publication sur GNU-social";
|
||||
App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Si cette option est activée, vos publications publiques peuvent être publiées sur le compte GNU-social associé.";
|
||||
App::$strings["Post to GNU social by default"] = "Par défaut, publier sur GNU-social";
|
||||
@ -2442,6 +2461,24 @@ App::$strings["Twitter Post Settings"] = "Paramètres des publications Twitter";
|
||||
App::$strings["Deactivate the feature"] = "Désactiver la fonctionnalité";
|
||||
App::$strings["Hide the button and show the smilies directly."] = "Cacher le bouton et afficher les émoticônes directement.";
|
||||
App::$strings["Smileybutton Settings"] = "Paramètres du bouton des émoticônes";
|
||||
App::$strings["Order Not Found"] = "Commande introuvable";
|
||||
App::$strings["Order cannot be checked out."] = "La commande ne peut pas être finalisée.";
|
||||
App::$strings["Enable Shopping Cart"] = "Activer le panier d'achats";
|
||||
App::$strings["Enable Test Catalog"] = "Activer le catalogue de test";
|
||||
App::$strings["Enable Manual Payments"] = "Activer les paiements manuels";
|
||||
App::$strings["Base Cart Settings"] = "Paramètres de base du panier";
|
||||
App::$strings["Add Item"] = "Ajouter un article";
|
||||
App::$strings["Call cart_post_"] = "Appeler cart_post_";
|
||||
App::$strings["Cart Not Enabled (profile: "] = "Panier non activé (profile:";
|
||||
App::$strings["Order not found."] = "Commande introuvable.";
|
||||
App::$strings["No Order Found"] = "Aucune commande trouvée";
|
||||
App::$strings["call: "] = "appel:";
|
||||
App::$strings["An unknown error has occurred Please start again."] = "Une erreur inconnue s'est produite. Veuillez recommencer.";
|
||||
App::$strings["Invalid Payment Type. Please start again."] = "Type de paiement non valable. Recommencez, s'il vous plaît.";
|
||||
App::$strings["Order not found"] = "Commande non trouvée";
|
||||
App::$strings["Error: order mismatch. Please try again."] = "Erreur : non-appariement de commande. Veuillez réessayer.";
|
||||
App::$strings["Manual payments are not enabled."] = "Les paiements manuels ne sont pas activés.";
|
||||
App::$strings["Finished"] = "Terminé.";
|
||||
App::$strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Ce site web est surveillé grâce à l'outil d'analyse <a href='http://www.piwik.org'>Piwik</a>.";
|
||||
App::$strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Si vous ne souhaitez pas que vos visites soient enregistrées de cette façon, <a href='%s'>vous pouvez\ndéfinir un cookie pour empêcher Piwik de suivre davantage de visites du site</a> (opt-out).";
|
||||
App::$strings["Piwik Base URL"] = "URL de base Piwik";
|
||||
@ -2626,8 +2663,8 @@ App::$strings["Uncertain"] = "Incertain";
|
||||
App::$strings["It's complicated"] = "C'est compliqué";
|
||||
App::$strings["Don't care"] = "S'en fiche";
|
||||
App::$strings["Ask me"] = "Me demander";
|
||||
App::$strings["likes %1\$s's %2\$s"] = "aime %1\$s's %2\$s";
|
||||
App::$strings["doesn't like %1\$s's %2\$s"] = "n'aime pas %1\$s's %2\$s";
|
||||
App::$strings["likes %1\$s's %2\$s"] = "aime le %2\$s de %1\$s";
|
||||
App::$strings["doesn't like %1\$s's %2\$s"] = "n'aime pas le %2\$s de%1\$s ";
|
||||
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses contacts";
|
||||
App::$strings["%1\$s poked %2\$s"] = "%1\$s a tapoté %2\$s";
|
||||
App::$strings["poked"] = "a tapoté";
|
||||
@ -2641,7 +2678,6 @@ App::$strings["Delete Selected Items"] = "Supprimer les éléments selectionnés
|
||||
App::$strings["View Source"] = "Voir source";
|
||||
App::$strings["Follow Thread"] = "Suivre la discussion";
|
||||
App::$strings["Unfollow Thread"] = "Ne plus suivre la discussion";
|
||||
App::$strings["Activity/Posts"] = "Activité/Publications";
|
||||
App::$strings["Edit Connection"] = "Modifier le contact";
|
||||
App::$strings["Message"] = "Message";
|
||||
App::$strings["%s likes this."] = "%s aime ça.";
|
||||
@ -2664,7 +2700,7 @@ App::$strings["%s don't like this."] = "%s n'aime pas ça.";
|
||||
App::$strings["Set your location"] = "Spécifier votre emplacement géographique";
|
||||
App::$strings["Clear browser location"] = "Supprimer l'emplacement géographique du navigateur";
|
||||
App::$strings["Tag term:"] = "Étiquette :";
|
||||
App::$strings["Where are you right now?"] = "Où êtes-vous en ce moment ?";
|
||||
App::$strings["Where are you right now?"] = "Où êtes-vous en ce moment ?";
|
||||
App::$strings["Choose a different album..."] = "Choisissez un autre album";
|
||||
App::$strings["Comments enabled"] = "Commentaires activés";
|
||||
App::$strings["Comments disabled"] = "Commentaires désactivés";
|
||||
@ -2725,6 +2761,7 @@ App::$strings["Safe Mode"] = "Mode sûr";
|
||||
App::$strings["Public Forums Only"] = "Les forums publics uniquement";
|
||||
App::$strings["This Website Only"] = "Ce site uniquement";
|
||||
App::$strings["%1\$s's bookmarks"] = "Favoris de %1\$s";
|
||||
App::$strings["Unable to import a removed channel."] = "Impossible d'importer un canal supprimé.";
|
||||
App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "L'import a échoué. Un canal existe déjà avec ce nom";
|
||||
App::$strings["Cloned channel not found. Import failed."] = "Canal cloné non trouvé. Echec de l'import.";
|
||||
App::$strings["prev"] = "préc.";
|
||||
@ -2739,7 +2776,7 @@ App::$strings["poke"] = "tapoter";
|
||||
App::$strings["ping"] = "ping";
|
||||
App::$strings["pinged"] = "pingé";
|
||||
App::$strings["prod"] = "encourager";
|
||||
App::$strings["prodded"] = "encouragé";
|
||||
App::$strings["prodded"] = "à encouragé";
|
||||
App::$strings["slap"] = "giffler";
|
||||
App::$strings["slapped"] = "gifflé(e)";
|
||||
App::$strings["finger"] = "pointer";
|
||||
@ -2834,6 +2871,7 @@ App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s q
|
||||
App::$strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site.";
|
||||
App::$strings["Channel location missing."] = "Emplacement du canal introuvable.";
|
||||
App::$strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète.";
|
||||
App::$strings["Premium channel - please visit:"] = "Canal Premium - s'il vous plaît visitez :";
|
||||
App::$strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus.";
|
||||
App::$strings["Remote channel or protocol unavailable."] = "Canal distant ou protocole indisponible.";
|
||||
App::$strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué.";
|
||||
@ -2958,8 +2996,8 @@ App::$strings["j F, Y"] = "j F, Y";
|
||||
App::$strings["j F"] = "j F";
|
||||
App::$strings["Birthday:"] = "Date de naissance :";
|
||||
App::$strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
|
||||
App::$strings["Sexual Preference:"] = "Orientation sexuelle :";
|
||||
App::$strings["Tags:"] = "Étiquettes :";
|
||||
App::$strings["Sexual Preference:"] = "Orientation sexuelle :";
|
||||
App::$strings["Political Views:"] = "Opinions politiques :";
|
||||
App::$strings["Religion:"] = "Religion :";
|
||||
App::$strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt :";
|
||||
@ -3024,9 +3062,10 @@ App::$strings["Embedded content"] = "Contenu imbriqué";
|
||||
App::$strings["Embedding disabled"] = "Imbrication désactivée";
|
||||
App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s accueille favorablement %2\$s";
|
||||
App::$strings["General Features"] = "Fonctionnalités générales";
|
||||
App::$strings["Advanced Profiles"] = "Profils Avancés";
|
||||
App::$strings["Display new member quick links menu"] = "Afficher le menu des liens rapides pour les nouveaux membres";
|
||||
App::$strings["Advanced Profiles"] = "Profils avancés";
|
||||
App::$strings["Additional profile sections and selections"] = "Sections et sélections supplémentaires du profil";
|
||||
App::$strings["Profile Import/Export"] = "Importer/Exporter le profil";
|
||||
App::$strings["Profile Import/Export"] = "Importer/exporter le profil";
|
||||
App::$strings["Save and load profile details across sites/channels"] = "Sauvegarder et charger les détails d'un profil entre sites/canaux";
|
||||
App::$strings["Web Pages"] = "Pages web";
|
||||
App::$strings["Provide managed web pages on your channel"] = "Fournir des pages web, sous votre contrôle, sur votre canal";
|
||||
@ -3057,8 +3096,10 @@ App::$strings["Enable management and selection of privacy groups"] = "Active la
|
||||
App::$strings["Multiple Profiles"] = "Profils multiples";
|
||||
App::$strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
|
||||
App::$strings["Provide alternate connection permission roles."] = "Fournir des rôles d'accès différents pour ce contact.";
|
||||
App::$strings["OAuth Clients"] = "Clients OAuth";
|
||||
App::$strings["Manage authenticatication tokens for mobile and remote apps."] = "Gérer les jetons d'authentification pour les applications mobiles et distantes.";
|
||||
App::$strings["OAuth1 Clients"] = "Clients OAuth1";
|
||||
App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Gérer les jetons d'authentification OAuth1 pour les applications mobiles et distantes.";
|
||||
App::$strings["OAuth2 Clients"] = "Clients OAuth2";
|
||||
App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Gérer les jetons d'authentification OAuth2 pour les applications mobiles et distantes.";
|
||||
App::$strings["Access Tokens"] = "Jetons d'accès.";
|
||||
App::$strings["Create access tokens so that non-members can access private content."] = "Créez des jetons d'accès pour que les non-membres puissent accéder au contenu privé.";
|
||||
App::$strings["Post Composition Features"] = "Fonctionnalités de composition";
|
||||
@ -3077,6 +3118,8 @@ App::$strings["Content Expiration"] = "Expiration du contenu";
|
||||
App::$strings["Remove posts/comments and/or private messages at a future time"] = "Supprimer les contributions/commentaires et/ou messages privés plus tard";
|
||||
App::$strings["Suppress Duplicate Posts/Comments"] = "Supprimer les publications/commentaires en doublon";
|
||||
App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Empêcher des messages aux contenus identiques d'être publiés à moins de deux minutes d'intervalle";
|
||||
App::$strings["Auto-save drafts of posts and comments"] = "Sauvegarde automatique des brouillons de messages et commentaires";
|
||||
App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Enregistre automatiquement les brouillons de messages et de commentaires dans le stockage local du navigateur pour aider à prévenir la perte accidentelle de compositions.";
|
||||
App::$strings["Network and Stream Filtering"] = "Filtrage du réseau et des flux";
|
||||
App::$strings["Search by Date"] = "Chercher par date";
|
||||
App::$strings["Ability to select posts by date ranges"] = "Pouvoir choisir des publications par date";
|
||||
@ -3104,7 +3147,6 @@ App::$strings["Star Posts"] = "Pouvoir mettre en avant les publications";
|
||||
App::$strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile";
|
||||
App::$strings["Tag Cloud"] = "Nuage de tags";
|
||||
App::$strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal";
|
||||
App::$strings["Tags"] = "Étiquettes";
|
||||
App::$strings["Keywords"] = "Mots-clefs";
|
||||
App::$strings["have"] = "ont";
|
||||
App::$strings["has"] = "a";
|
||||
@ -3200,6 +3242,7 @@ App::$strings["Add privacy group"] = "Créer un groupe de contacts";
|
||||
App::$strings["Channels not in any privacy group"] = "Contacts n'étant dans aucun groupe de contacts";
|
||||
App::$strings["New window"] = "Nouvelle fenêtre";
|
||||
App::$strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre ou un onglet différent";
|
||||
App::$strings["Delegation session ended."] = "La séance de délégation a pris fin.";
|
||||
App::$strings["Logged out."] = "Deconnecté.";
|
||||
App::$strings["Email validation is incomplete. Please check your email."] = "La validation du courriel est incomplète. Veuillez vérifier l'adresse courriel.";
|
||||
App::$strings["Failed authentication"] = "Échec de l'authentification";
|
||||
|
2544
view/it/hmessages.po
2544
view/it/hmessages.po
File diff suppressed because it is too large
Load Diff
@ -24,6 +24,7 @@ App::$strings["Can chat with me"] = "Può aprire una chat con me";
|
||||
App::$strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati";
|
||||
App::$strings["Can administer my channel"] = "Può amministrare il mio canale";
|
||||
App::$strings["Social Networking"] = "Social network";
|
||||
App::$strings["Social - Party"] = "Social - Party";
|
||||
App::$strings["Social - Mostly Public"] = "Social - Prevalentemente pubblico";
|
||||
App::$strings["Social - Restricted"] = "Social - Con restrizioni";
|
||||
App::$strings["Social - Private"] = "Social - Privato";
|
||||
@ -150,8 +151,8 @@ App::$strings["You may also export your posts and conversations for a particular
|
||||
App::$strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita <a href=\"%1\$s\">%2\$s</a> ";
|
||||
App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita <a href=\"%1\$s\">%2\$s</a>";
|
||||
App::$strings["These content files may be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando <a href=\"%1\$s\">%2\$s</a> su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)";
|
||||
App::$strings["Welcome to Hubzilla!"] = "";
|
||||
App::$strings["You have got no unseen posts..."] = "";
|
||||
App::$strings["Welcome to Hubzilla!"] = "Benvenuto su Hubzilla!";
|
||||
App::$strings["You have got no unseen posts..."] = "Non hai post non letti...";
|
||||
App::$strings["Public access denied."] = "Accesso pubblico negato.";
|
||||
App::$strings["Search"] = "Cerca";
|
||||
App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s";
|
||||
@ -256,7 +257,7 @@ App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistar
|
||||
App::$strings["Please login."] = "Effettua l'accesso.";
|
||||
App::$strings["Hub not found."] = "Hub non trovato.";
|
||||
App::$strings["photo"] = "la foto";
|
||||
App::$strings["status"] = "il messaggio di stato";
|
||||
App::$strings["status"] = "messaggio di stato";
|
||||
App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
|
||||
App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s non segue più %3\$s di %2\$s";
|
||||
App::$strings["Channel not found."] = "Canale non trovato.";
|
||||
@ -282,7 +283,7 @@ App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli";
|
||||
App::$strings["Create Channel"] = "Crea un canale";
|
||||
App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati.";
|
||||
App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "oppure <a href=\"import\">importa un canale esistente</a> da un altro server/hub.";
|
||||
App::$strings["Validate"] = "";
|
||||
App::$strings["Validate"] = "Validazione";
|
||||
App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password.";
|
||||
App::$strings["Remove This Channel"] = "Elimina questo canale";
|
||||
App::$strings["WARNING: "] = "ATTENZIONE:";
|
||||
@ -351,9 +352,9 @@ App::$strings["xml PHP module"] = "modulo xml PHP";
|
||||
App::$strings["zip PHP module"] = "modulo zip del PHP";
|
||||
App::$strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite";
|
||||
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato";
|
||||
App::$strings["exec"] = "";
|
||||
App::$strings["exec"] = "exec";
|
||||
App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Errore: exec è richiesto ma non è installato o è stato disabilitato nel php.ini";
|
||||
App::$strings["shell_exec"] = "";
|
||||
App::$strings["shell_exec"] = "shell_exec";
|
||||
App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Errore: shell_exec è richiesto ma non è installato o è stato disabilitato in php.ini";
|
||||
App::$strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato.";
|
||||
App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato.";
|
||||
@ -362,11 +363,10 @@ App::$strings["Error: PDO database PHP module required but not installed."] = "E
|
||||
App::$strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato.";
|
||||
App::$strings["Error: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato.";
|
||||
App::$strings["Error: zip PHP module required but not installed."] = "Errore: il modulo zip del PHP necessario ma non installato.";
|
||||
App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
|
||||
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo.";
|
||||
App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi.";
|
||||
App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla.";
|
||||
App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni.";
|
||||
App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
|
||||
App::$strings["Please see install/INSTALL.txt for additional information."] = "Leggi il file 'install/INSTALL.txt' per maggiori informazioni.";
|
||||
App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Questo software usa lo Smarty3 template engine per visualizzare le web views. Smarty3 compila i template in PHP per accelerarne la visualizzazione.";
|
||||
App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s";
|
||||
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data).";
|
||||
@ -543,7 +543,7 @@ App::$strings["Used to provide a member experience matched to technical comfort
|
||||
App::$strings["Lock the technical skill level setting"] = "Il livello tecnico non potrà essere modificato";
|
||||
App::$strings["Members can set their own technical comfort level by default"] = "Gli utenti possono scegliere il livello tecnico preferito";
|
||||
App::$strings["Banner/Logo"] = "Banner o logo";
|
||||
App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "";
|
||||
App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "È permesso un contenuto HTML/CSS/JS non filtrato";
|
||||
App::$strings["Administrator Information"] = "Informazioni sull'amministratore";
|
||||
App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode";
|
||||
App::$strings["Site Information"] = "Informazioni sul sito";
|
||||
@ -551,8 +551,6 @@ App::$strings["Publicly visible description of this site. Displayed on siteinfo
|
||||
App::$strings["System language"] = "Lingua di sistema";
|
||||
App::$strings["System theme"] = "Tema di sistema";
|
||||
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - <a href='#' id='cnftheme'>Cambia le impostazioni del tema</a>";
|
||||
App::$strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili";
|
||||
App::$strings["Theme for mobile devices"] = "Tema per i dispositivi mobili";
|
||||
App::$strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti";
|
||||
App::$strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)";
|
||||
App::$strings["Maximum image size"] = "Dimensione massima immagini";
|
||||
@ -560,8 +558,8 @@ App::$strings["Maximum size in bytes of uploaded images. Default is 0, which mea
|
||||
App::$strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?";
|
||||
App::$strings["Invitation only"] = "Solo con invito";
|
||||
App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'.";
|
||||
App::$strings["Minimum age"] = "";
|
||||
App::$strings["Minimum age (in years) for who may register on this site."] = "";
|
||||
App::$strings["Minimum age"] = "Età minima";
|
||||
App::$strings["Minimum age (in years) for who may register on this site."] = "L'età minima (in anni) richiesta per registrarsi su questo sito.";
|
||||
App::$strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?";
|
||||
App::$strings["Register text"] = "Testo di registrazione";
|
||||
App::$strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
|
||||
@ -579,10 +577,10 @@ App::$strings["Force publish"] = "Forza la publicazione del profilo";
|
||||
App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server <strong>tutti</strong> i profili registrati su questo sito.";
|
||||
App::$strings["Import Public Streams"] = "Suggerisci contenuti pubblici della rete Hubzilla";
|
||||
App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione.";
|
||||
App::$strings["Site only Public Streams"] = "";
|
||||
App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "";
|
||||
App::$strings["Allow anybody on the internet to access the Public streams"] = "";
|
||||
App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "";
|
||||
App::$strings["Site only Public Streams"] = "Solo i flussi pubblici su questo sito";
|
||||
App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Consenti l'accesso a contenuti pubblici originati solo da questo sito se se è disabilitata l'importazione di flussi pubblici.";
|
||||
App::$strings["Allow anybody on the internet to access the Public streams"] = "Permetti a chiunque su internet di accedere ai flussi pubblici";
|
||||
App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Disabilita per richiedere di autenticarsi prima di visualizzare. Attenzione: questo contenuto non è moderato.";
|
||||
App::$strings["Login on Homepage"] = "Login sulla homepage";
|
||||
App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti.";
|
||||
App::$strings["Enable context help"] = "Abilita la guida contestuale";
|
||||
@ -600,7 +598,7 @@ App::$strings["Delivery interval"] = "Recapito ritardato";
|
||||
App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati.";
|
||||
App::$strings["Deliveries per process"] = "Tentativi di recapito per processo";
|
||||
App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5";
|
||||
App::$strings["Queue Threshold"] = "";
|
||||
App::$strings["Queue Threshold"] = "Threshold della coda";
|
||||
App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Rinvia la consegna immediata se la coda contiene più di questo numero di elementi.";
|
||||
App::$strings["Poll interval"] = "Intervallo di polling";
|
||||
App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'.";
|
||||
@ -612,12 +610,13 @@ App::$strings["Maximum Load Average"] = "Carico massimo medio";
|
||||
App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50.";
|
||||
App::$strings["Expiration period in days for imported (grid/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)";
|
||||
App::$strings["0 for no expiration of imported content"] = "0 per non avere scadenza";
|
||||
App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "";
|
||||
App::$strings["Create this page first. Default is %s/register"] = "";
|
||||
App::$strings["Page to display after creating a new channel"] = "";
|
||||
App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Non far scadere nessun post che ha commenti più recenti di questo numero di giorni";
|
||||
App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Server pubblici: Landing page (marketing) opzionale per utenti appena registrati";
|
||||
App::$strings["Create this page first. Default is %s/register"] = "Crea questa pagina prima. Il default è %s/register";
|
||||
App::$strings["Page to display after creating a new channel"] = "Pagina da visualizzare dopo la creazione di un nuovo canale";
|
||||
App::$strings["Recommend: profiles, go, or settings"] = "";
|
||||
App::$strings["Optional: site location"] = "";
|
||||
App::$strings["Region or country"] = "";
|
||||
App::$strings["Optional: site location"] = "Opzionale: site location";
|
||||
App::$strings["Region or country"] = "Regione o Paese";
|
||||
App::$strings["New Profile Field"] = "Nuovo campo del profilo";
|
||||
App::$strings["Field nickname"] = "Nome breve del campo";
|
||||
App::$strings["System name of field"] = "Nome di sistema del campo";
|
||||
@ -673,10 +672,11 @@ App::$strings["Visible to:"] = "Visibile a:";
|
||||
App::$strings["__ctx:acl__ Profile"] = "Profilo";
|
||||
App::$strings["Comment approved"] = "Commento approvato";
|
||||
App::$strings["Comment deleted"] = "Commento eliminato";
|
||||
App::$strings["Permission category saved."] = "";
|
||||
App::$strings["Use this form to create permission rules for various classes of people or connections."] = "";
|
||||
App::$strings["Permission Categories"] = "";
|
||||
App::$strings["Permission Name"] = "";
|
||||
App::$strings["Permission Name is required."] = "";
|
||||
App::$strings["Permission category saved."] = "Categoria di permessi salvata";
|
||||
App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Usa questo modulo per definire i permessi specifici per classi di persone o connessioni.";
|
||||
App::$strings["Permission Categories"] = "Categorie di permessi";
|
||||
App::$strings["Permission Name"] = "Nome del permesso";
|
||||
App::$strings["My Settings"] = "Permessi che concedo";
|
||||
App::$strings["inherited"] = "derivato";
|
||||
App::$strings["Individual Permissions"] = "Permessi individuali";
|
||||
@ -695,7 +695,7 @@ App::$strings["Publish your default profile in the network directory"] = "Mostra
|
||||
App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?";
|
||||
App::$strings["or"] = "o";
|
||||
App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è";
|
||||
App::$strings["Your files/photos are accessible via WebDAV at"] = "";
|
||||
App::$strings["Your files/photos are accessible via WebDAV at"] = "I tuoi file/foto sono accessibili via WebDAV all'indirizzo";
|
||||
App::$strings["Channel Settings"] = "Impostazioni del canale";
|
||||
App::$strings["Basic Settings"] = "Impostazioni di base";
|
||||
App::$strings["Full Name:"] = "Nome completo:";
|
||||
@ -725,11 +725,11 @@ App::$strings["This website does not expire imported content."] = "I contenuti d
|
||||
App::$strings["The website limit takes precedence if lower than your limit."] = "Il limite del server ha la precedenza, se minore di quello impostato da te.";
|
||||
App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:";
|
||||
App::$strings["May reduce spam activity"] = "Serve a ridurre lo spam";
|
||||
App::$strings["Default Privacy Group"] = "";
|
||||
App::$strings["Default Privacy Group"] = "Privacy Group predefinito";
|
||||
App::$strings["Use my default audience setting for the type of object published"] = "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto";
|
||||
App::$strings["Profile to assign new connections"] = "";
|
||||
App::$strings["Profile to assign new connections"] = "Profilo da associare ai nuovi contatti";
|
||||
App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:";
|
||||
App::$strings["Default Permissions Group"] = "";
|
||||
App::$strings["Default Permissions Group"] = "Permission Group predefinito";
|
||||
App::$strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:";
|
||||
App::$strings["Useful to reduce spamming"] = "Serve e ridurre lo spam";
|
||||
App::$strings["Notification Settings"] = "Impostazioni di notifica";
|
||||
@ -761,11 +761,12 @@ App::$strings["System info messages"] = "Notifiche di sistema";
|
||||
App::$strings["System critical alerts"] = "Avvisi critici di sistema";
|
||||
App::$strings["New connections"] = "Nuovi contatti";
|
||||
App::$strings["System Registrations"] = "Registrazioni";
|
||||
App::$strings["Unseen shared files"] = "";
|
||||
App::$strings["Unseen shared files"] = "File condivisi non ancora visitati";
|
||||
App::$strings["Unseen public activity"] = "Attività pubblica non letta";
|
||||
App::$strings["Email notification hub (hostname)"] = "";
|
||||
App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "";
|
||||
App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti";
|
||||
App::$strings["Unseen likes and dislikes"] = "Mi piace e non mi piace da leggere";
|
||||
App::$strings["Email notification hub (hostname)"] = "Hub di notifica (hostname)";
|
||||
App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Se il tuo canale è replicato su molti hub, scegli qui da dove saranno inviati i messaggi. Serve ad evitare di ricevere notifiche duplicate. Esempio: %s";
|
||||
App::$strings["Show new wall posts, private messages and connections under Notices"] = "Mostra i nuovi post in bacheca, i messaggi privati e le connessioni come Notifiche";
|
||||
App::$strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi";
|
||||
App::$strings["Must be greater than 0"] = "Maggiore di 0";
|
||||
App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate";
|
||||
@ -777,8 +778,10 @@ App::$strings["Default file upload folder"] = "Cartella predefinita per i file c
|
||||
App::$strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale";
|
||||
App::$strings["Remove this channel."] = "Elimina questo canale.";
|
||||
App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname";
|
||||
App::$strings["Start calendar week on Monday"] = "";
|
||||
App::$strings["Start calendar week on Monday"] = "Inizia la settimana nel calendario da lunedì";
|
||||
App::$strings["Additional Features"] = "Funzionalità opzionali";
|
||||
App::$strings["Your technical skill level"] = "Il tuo livello tecnico";
|
||||
App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Serve ad adeguare l'interfaccia e le funzionalità mostrate alla tua dimestichezza";
|
||||
App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token";
|
||||
App::$strings["Name and Password are required."] = "Nome e password sono obbligatori.";
|
||||
App::$strings["Token saved."] = "Token salvato.";
|
||||
@ -789,6 +792,22 @@ App::$strings["Login Name"] = "Nome utente";
|
||||
App::$strings["Login Password"] = "Password";
|
||||
App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)";
|
||||
App::$strings["Their Settings"] = "Permessi concessi a te";
|
||||
App::$strings["Name and Secret are required"] = "Nome e Password sono obbligatori";
|
||||
App::$strings["Add OAuth2 application"] = "Aggiungi applicazione OAuth2";
|
||||
App::$strings["Name of application"] = "Nome dell'applicazione";
|
||||
App::$strings["Consumer Secret"] = "Consumer Secret";
|
||||
App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20";
|
||||
App::$strings["Redirect"] = "Redirect";
|
||||
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione";
|
||||
App::$strings["Grant Types"] = "";
|
||||
App::$strings["leave blank unless your application sepcifically requires this"] = "lascia bianco a meno che la applicazione non lo richieda esplicitamente";
|
||||
App::$strings["Authorization scope"] = "Ambito dell'autorizzazione";
|
||||
App::$strings["OAuth2 Application not found."] = "Applicazione OAuth2 non trovata.";
|
||||
App::$strings["Add application"] = "Aggiungi una app";
|
||||
App::$strings["Connected OAuth2 Apps"] = "Applicazioni OAuth2 connesse";
|
||||
App::$strings["Client key starts with"] = "La client key inizia con";
|
||||
App::$strings["No name"] = "Nessun nome";
|
||||
App::$strings["Remove authorization"] = "Revoca l'autorizzazione";
|
||||
App::$strings["Not valid email."] = "Email non valida.";
|
||||
App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo.";
|
||||
App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore.";
|
||||
@ -803,19 +822,17 @@ App::$strings["Current Password"] = "Password attuale";
|
||||
App::$strings["Enter New Password"] = "Nuova password";
|
||||
App::$strings["Confirm New Password"] = "Conferma la nuova password";
|
||||
App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password";
|
||||
App::$strings["Your technical skill level"] = "Il tuo livello tecnico";
|
||||
App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "";
|
||||
App::$strings["Remove Account"] = "Elimina l'account";
|
||||
App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali";
|
||||
App::$strings["Affinity Slider settings updated."] = "";
|
||||
App::$strings["Affinity Slider settings updated."] = "Impostazioni dell'Affinity Slider salvate.";
|
||||
App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare";
|
||||
App::$strings["Default maximum affinity level"] = "";
|
||||
App::$strings["0-99 default 99"] = "";
|
||||
App::$strings["Default minimum affinity level"] = "";
|
||||
App::$strings["0-99 - default 0"] = "";
|
||||
App::$strings["Affinity Slider Settings"] = "";
|
||||
App::$strings["Addon Settings"] = "";
|
||||
App::$strings["Please save/submit changes to any panel before opening another."] = "";
|
||||
App::$strings["Default maximum affinity level"] = "Livello di affinità predefinito massimo ";
|
||||
App::$strings["0-99 default 99"] = "0-99 predefinito 99";
|
||||
App::$strings["Default minimum affinity level"] = "Livello di affinità predefinito minimo";
|
||||
App::$strings["0-99 - default 0"] = "0-99 - predefinito 0";
|
||||
App::$strings["Affinity Slider Settings"] = "Impostazioni dell'Affinity Slider";
|
||||
App::$strings["Addon Settings"] = "Impostazioni del componente aggiuntivo";
|
||||
App::$strings["Please save/submit changes to any panel before opening another."] = "Salva/invia i cambiamenti prima di cambiare pannello.";
|
||||
App::$strings["%s - (Experimental)"] = "%s - (Sperimentale)";
|
||||
App::$strings["Display Settings"] = "Aspetto";
|
||||
App::$strings["Theme Settings"] = "Impostazioni del tema";
|
||||
@ -831,10 +848,10 @@ App::$strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun
|
||||
App::$strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:";
|
||||
App::$strings["Maximum of 100 items"] = "Massimo 100";
|
||||
App::$strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini";
|
||||
App::$strings["Provide channel menu in navigation bar"] = "";
|
||||
App::$strings["Default: channel menu located in app menu"] = "";
|
||||
App::$strings["Manual conversation updates"] = "";
|
||||
App::$strings["Default is on, turning this off may increase screen jumping"] = "";
|
||||
App::$strings["Provide channel menu in navigation bar"] = "Visualizza il menu del canale nella barra di navigazione";
|
||||
App::$strings["Default: channel menu located in app menu"] = "Predefinito: menu del canale nel menu delle app";
|
||||
App::$strings["Manual conversation updates"] = "Aggiornamenti manuali alla conversazione";
|
||||
App::$strings["Default is on, turning this off may increase screen jumping"] = "Se non è attiva può causare scorrimenti imprevisti della pagina";
|
||||
App::$strings["Link post titles to source"] = "Il link del titolo di un post porta al sito originale";
|
||||
App::$strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)";
|
||||
App::$strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog";
|
||||
@ -845,20 +862,11 @@ App::$strings["click to expand content exceeding this height"] = "dovrai cliccar
|
||||
App::$strings["Grid page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)";
|
||||
App::$strings["Name is required"] = "Il nome è obbligatorio";
|
||||
App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti";
|
||||
App::$strings["Add application"] = "Aggiungi una app";
|
||||
App::$strings["Name of application"] = "Nome dell'applicazione";
|
||||
App::$strings["Consumer Key"] = "Consumer Key";
|
||||
App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20";
|
||||
App::$strings["Consumer Secret"] = "Consumer Secret";
|
||||
App::$strings["Redirect"] = "Redirect";
|
||||
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione";
|
||||
App::$strings["Icon url"] = "Url icona";
|
||||
App::$strings["Optional"] = "Facoltativo";
|
||||
App::$strings["Application not found."] = "Applicazione non trovata.";
|
||||
App::$strings["Connected Apps"] = "App connesse";
|
||||
App::$strings["Client key starts with"] = "La client key inizia con";
|
||||
App::$strings["No name"] = "Nessun nome";
|
||||
App::$strings["Remove authorization"] = "Revoca l'autorizzazione";
|
||||
App::$strings["View Photo"] = "Guarda la foto";
|
||||
App::$strings["Edit Album"] = "Modifica album";
|
||||
App::$strings["Upload"] = "Carica";
|
||||
@ -880,7 +888,7 @@ App::$strings["Permissions"] = "Permessi";
|
||||
App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo";
|
||||
App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema.";
|
||||
App::$strings["System Notifications"] = "Notifiche di sistema";
|
||||
App::$strings["Channel added."] = "Canale aggiunto.";
|
||||
App::$strings["Connection added."] = "Contatto aggiunto.";
|
||||
App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali.";
|
||||
App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito.";
|
||||
App::$strings["Import completed."] = "L'importazione è terminata con successo.";
|
||||
@ -893,8 +901,8 @@ App::$strings["Your old login email address"] = "L'email che usavi per accedere
|
||||
App::$strings["Your old login password"] = "La password per il vecchio hub";
|
||||
App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc.";
|
||||
App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario";
|
||||
App::$strings["Move this channel (disable all previous locations)"] = "";
|
||||
App::$strings["Import a few months of posts if possible (limited by available memory"] = "";
|
||||
App::$strings["Move this channel (disable all previous locations)"] = "Sposta questo canale (disabilita le posizioni precedenti)";
|
||||
App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importa alcune mesi di post se possibile (dipende dalla memoria disponibile";
|
||||
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito.";
|
||||
App::$strings["Authentication failed."] = "Autenticazione fallita.";
|
||||
App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub";
|
||||
@ -908,35 +916,38 @@ App::$strings["Please login to continue."] = "Accedi al sito per continuare.";
|
||||
App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?";
|
||||
App::$strings["Item not available."] = "Elemento non disponibile.";
|
||||
App::$strings["Edit Block"] = "Modifica il block";
|
||||
App::$strings["vcard"] = "";
|
||||
App::$strings["vcard"] = "vcard";
|
||||
App::$strings["Apps"] = "App";
|
||||
App::$strings["Manage apps"] = "";
|
||||
App::$strings["Create new app"] = "";
|
||||
App::$strings["Manage apps"] = "Gestisci le app";
|
||||
App::$strings["Create new app"] = "Crea nuova app";
|
||||
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s";
|
||||
App::$strings["Mood"] = "Umore";
|
||||
App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici";
|
||||
App::$strings["Active"] = "Attivo";
|
||||
App::$strings["Blocked"] = "Bloccati";
|
||||
App::$strings["Ignored"] = "Ignorati";
|
||||
App::$strings["Hidden"] = "Nascosti";
|
||||
App::$strings["Archived/Unreachable"] = "";
|
||||
App::$strings["Archived/Unreachable"] = "Archiviato/Irraggiungibile";
|
||||
App::$strings["New"] = "Novità";
|
||||
App::$strings["All"] = "Tutti";
|
||||
App::$strings["Active Connections"] = "Contatto Attivo";
|
||||
App::$strings["Show active connections"] = "Mostra i contatti atttivi";
|
||||
App::$strings["New Connections"] = "Nuovi contatti";
|
||||
App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa";
|
||||
App::$strings["Show all connections"] = "Mostra tutti i contatti";
|
||||
App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati";
|
||||
App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati";
|
||||
App::$strings["Only show archived/unreachable connections"] = "";
|
||||
App::$strings["Only show archived/unreachable connections"] = "Mostra solo i contatti archiviati/irraggiungibili";
|
||||
App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti";
|
||||
App::$strings["Show all connections"] = "Mostra tutti i contatti";
|
||||
App::$strings["Pending approval"] = "In attesa di conferma";
|
||||
App::$strings["Archived"] = "Archiviati";
|
||||
App::$strings["Not connected at this location"] = "";
|
||||
App::$strings["Not connected at this location"] = "Non connesso a questa location";
|
||||
App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
|
||||
App::$strings["Edit connection"] = "Modifica il contatto";
|
||||
App::$strings["Delete connection"] = "Elimina il contatto";
|
||||
App::$strings["Channel address"] = "Indirizzo del canale";
|
||||
App::$strings["Network"] = "Network";
|
||||
App::$strings["Call"] = "";
|
||||
App::$strings["Call"] = "Chiama";
|
||||
App::$strings["Status"] = "Stato";
|
||||
App::$strings["Connected"] = "In contatto";
|
||||
App::$strings["Approve connection"] = "Approva questo contatto";
|
||||
@ -947,7 +958,7 @@ App::$strings["Connections"] = "Contatti";
|
||||
App::$strings["Search your connections"] = "Cerca tra i contatti";
|
||||
App::$strings["Connections search"] = "Ricerca tra i contatti";
|
||||
App::$strings["Find"] = "Cerca";
|
||||
App::$strings["item"] = "";
|
||||
App::$strings["item"] = "elemento";
|
||||
App::$strings["Source of Item"] = "Sorgente";
|
||||
App::$strings["Bookmark added"] = "Segnalibro aggiunto";
|
||||
App::$strings["My Bookmarks"] = "I miei segnalibri";
|
||||
@ -969,10 +980,10 @@ App::$strings["Upload Photos"] = "Carica foto";
|
||||
App::$strings["Enter an album name"] = "Scegli il nome dell'album";
|
||||
App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)";
|
||||
App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca";
|
||||
App::$strings["Caption (optional):"] = "Titolo (facoltativo):";
|
||||
App::$strings["Description (optional):"] = "Descrizione (facoltativa):";
|
||||
App::$strings["Description (optional)"] = "Descrizione (opzionale)";
|
||||
App::$strings["Show Newest First"] = "Prima i più recenti";
|
||||
App::$strings["Show Oldest First"] = "Prima i più vecchi";
|
||||
App::$strings["Add Photos"] = "Aggiungi foto";
|
||||
App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato.";
|
||||
App::$strings["Photo not available"] = "Foto non disponibile";
|
||||
App::$strings["Use as profile photo"] = "Usa come foto del profilo";
|
||||
@ -985,7 +996,6 @@ App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)";
|
||||
App::$strings["Move photo to album"] = "Sposta la foto in un album";
|
||||
App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album";
|
||||
App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)";
|
||||
App::$strings["Caption"] = "Didascalia";
|
||||
App::$strings["Add a Tag"] = "Aggiungi tag";
|
||||
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com";
|
||||
App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'";
|
||||
@ -994,8 +1004,8 @@ App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace";
|
||||
App::$strings["Please wait"] = "Attendere";
|
||||
App::$strings["This is you"] = "Questo sei tu";
|
||||
App::$strings["Comment"] = "Commento";
|
||||
App::$strings["__ctx:title__ Likes"] = "Mi piace";
|
||||
App::$strings["__ctx:title__ Dislikes"] = "Non mi piace";
|
||||
App::$strings["__ctx:title__ Likes"] = "\"Mi piace\"";
|
||||
App::$strings["__ctx:title__ Dislikes"] = "\"Non mi piace\"";
|
||||
App::$strings["__ctx:title__ Agree"] = "D'accordo";
|
||||
App::$strings["__ctx:title__ Disagree"] = "Non d'accordo";
|
||||
App::$strings["__ctx:title__ Abstain"] = "Astenuti";
|
||||
@ -1005,20 +1015,20 @@ App::$strings["__ctx:title__ Might attend"] = "Forse partecipano";
|
||||
App::$strings["View all"] = "Vedi tutto";
|
||||
App::$strings["__ctx:noun__ Like"] = array(
|
||||
0 => "Mi piace",
|
||||
1 => "Mi piace",
|
||||
1 => "\"Mi piace\"",
|
||||
);
|
||||
App::$strings["__ctx:noun__ Dislike"] = array(
|
||||
0 => "Non mi piace",
|
||||
1 => "Non mi piace",
|
||||
1 => "\"Non mi piace\"",
|
||||
);
|
||||
App::$strings["Photo Tools"] = "Gestione foto";
|
||||
App::$strings["In This Photo:"] = "In questa foto:";
|
||||
App::$strings["Map"] = "Mappa";
|
||||
App::$strings["__ctx:noun__ Likes"] = "Mi piace";
|
||||
App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace";
|
||||
App::$strings["__ctx:noun__ Likes"] = "\"Mi piace\"";
|
||||
App::$strings["__ctx:noun__ Dislikes"] = "\"Non mi piace\"";
|
||||
App::$strings["Close"] = "Chiudi";
|
||||
App::$strings["Recent Photos"] = "Foto recenti";
|
||||
App::$strings["Profile Unavailable."] = "";
|
||||
App::$strings["Profile Unavailable."] = "Profilo non dispobibile";
|
||||
App::$strings["Not found"] = "Non trovato";
|
||||
App::$strings["Invalid channel"] = "Canale non valido";
|
||||
App::$strings["Error retrieving wiki"] = "Errore caricamento wiki";
|
||||
@ -1028,57 +1038,57 @@ App::$strings["Wikis"] = "Pagine wiki";
|
||||
App::$strings["Download"] = "Scarica";
|
||||
App::$strings["Create New"] = "Crea nuova";
|
||||
App::$strings["Wiki name"] = "Nome wiki";
|
||||
App::$strings["Content type"] = "";
|
||||
App::$strings["Markdown"] = "";
|
||||
App::$strings["BBcode"] = "";
|
||||
App::$strings["Text"] = "";
|
||||
App::$strings["Content type"] = "Tipo di contenuto";
|
||||
App::$strings["Markdown"] = "Markdown";
|
||||
App::$strings["BBcode"] = "BBCode";
|
||||
App::$strings["Text"] = "Testo";
|
||||
App::$strings["Type"] = "Tipo";
|
||||
App::$strings["Any type"] = "";
|
||||
App::$strings["Lock content type"] = "";
|
||||
App::$strings["Create a status post for this wiki"] = "";
|
||||
App::$strings["Edit Wiki Name"] = "";
|
||||
App::$strings["Wiki not found"] = "";
|
||||
App::$strings["Rename page"] = "";
|
||||
App::$strings["Any type"] = "Qualsiasi tipo";
|
||||
App::$strings["Lock content type"] = "Blocca il tipo di contenuto";
|
||||
App::$strings["Create a status post for this wiki"] = "Crea un messaggio di stato per questo wiki";
|
||||
App::$strings["Edit Wiki Name"] = "Modifica il nome del Wiki";
|
||||
App::$strings["Wiki not found"] = "Wiki non trovato";
|
||||
App::$strings["Rename page"] = "Rinomina la pagina";
|
||||
App::$strings["Error retrieving page content"] = "Errore nel caricamento del contenuto della pagina";
|
||||
App::$strings["New page"] = "";
|
||||
App::$strings["New page"] = "Nuova pagina";
|
||||
App::$strings["Revision Comparison"] = "Confronto tra revisioni";
|
||||
App::$strings["Revert"] = "Ripristina";
|
||||
App::$strings["Short description of your changes (optional)"] = "";
|
||||
App::$strings["Short description of your changes (optional)"] = "Breve descrizione delle tue modifiche (opzionale)";
|
||||
App::$strings["Source"] = "Sorgente";
|
||||
App::$strings["New page name"] = "";
|
||||
App::$strings["New page name"] = "Nome della nuova pagina";
|
||||
App::$strings["Embed image from photo albums"] = "Inserisci un'immagine dall'album foto";
|
||||
App::$strings["Embed an image from your albums"] = "Inserisci un'immagine dai tuoi album";
|
||||
App::$strings["OK"] = "OK";
|
||||
App::$strings["Choose images to embed"] = "Scegli le immagini da inserire";
|
||||
App::$strings["Choose an album"] = "Scegli un album";
|
||||
App::$strings["Choose a different album"] = "";
|
||||
App::$strings["Choose a different album"] = "Scegli un album diverso";
|
||||
App::$strings["Error getting album list"] = "Errore nell'ottenere l'elenco degli album";
|
||||
App::$strings["Error getting photo link"] = "Errore nell'ottenere il link alla foto";
|
||||
App::$strings["Error getting album"] = "Errore nell'ottenere l'album";
|
||||
App::$strings["Error creating wiki. Invalid name."] = "Errore nella creazione. Nome non valido.";
|
||||
App::$strings["A wiki with this name already exists."] = "";
|
||||
App::$strings["Wiki created, but error creating Home page."] = "";
|
||||
App::$strings["Error creating wiki"] = "";
|
||||
App::$strings["Error updating wiki. Invalid name."] = "";
|
||||
App::$strings["Error updating wiki"] = "";
|
||||
App::$strings["Wiki delete permission denied."] = "";
|
||||
App::$strings["Error deleting wiki"] = "";
|
||||
App::$strings["New page created"] = "";
|
||||
App::$strings["Cannot delete Home"] = "";
|
||||
App::$strings["Current Revision"] = "";
|
||||
App::$strings["Selected Revision"] = "";
|
||||
App::$strings["You must be authenticated."] = "";
|
||||
App::$strings["A wiki with this name already exists."] = "Un Wiki con questo nome esiste già";
|
||||
App::$strings["Wiki created, but error creating Home page."] = "Wiki creato, ma c'è stato un errore nella creazione della Home page.";
|
||||
App::$strings["Error creating wiki"] = "Errore nella creazione del Wiki";
|
||||
App::$strings["Error updating wiki. Invalid name."] = "Errore nell'aggiornamento del Wiki. Nome non valido.";
|
||||
App::$strings["Error updating wiki"] = "Errore nell'aggiornamento del Wiki";
|
||||
App::$strings["Wiki delete permission denied."] = "Permesso negato nell'eliminare del Wiki";
|
||||
App::$strings["Error deleting wiki"] = "Errore nell'eliminare il Wiki";
|
||||
App::$strings["New page created"] = "Nuova pagina creata";
|
||||
App::$strings["Cannot delete Home"] = "Non è possibile eliminare la Home";
|
||||
App::$strings["Current Revision"] = "Revisione corrente";
|
||||
App::$strings["Selected Revision"] = "Revisione selezionata";
|
||||
App::$strings["You must be authenticated."] = "Devi autenticarti.";
|
||||
App::$strings["toggle full screen mode"] = "attiva/disattiva schermo intero";
|
||||
App::$strings["Layout updated."] = "Layout aggiornato.";
|
||||
App::$strings["Feature disabled."] = "Funzionalità disattivata.";
|
||||
App::$strings["Edit System Page Description"] = "Modifica i layout di sistema";
|
||||
App::$strings["(modified)"] = "";
|
||||
App::$strings["(modified)"] = "(modificato)";
|
||||
App::$strings["Reset"] = "Reimposta";
|
||||
App::$strings["Layout not found."] = "Layout non trovato.";
|
||||
App::$strings["Module Name:"] = "Nome del modulo:";
|
||||
App::$strings["Layout Help"] = "Guida al layout";
|
||||
App::$strings["Edit another layout"] = "";
|
||||
App::$strings["System layout"] = "";
|
||||
App::$strings["Edit another layout"] = "Modifica un altro layout";
|
||||
App::$strings["System layout"] = "Layout di sistema";
|
||||
App::$strings["Poke"] = "Poke";
|
||||
App::$strings["Poke somebody"] = "Manda un poke";
|
||||
App::$strings["Poke/Prod"] = "Poke/Prod";
|
||||
@ -1097,10 +1107,10 @@ App::$strings["Photo not available."] = "Foto non disponibile.";
|
||||
App::$strings["Upload File:"] = "Carica un file:";
|
||||
App::$strings["Select a profile:"] = "Seleziona un profilo:";
|
||||
App::$strings["Use Photo for Profile"] = "Usa la foto per il profilo";
|
||||
App::$strings["Change Profile Photo"] = "";
|
||||
App::$strings["Change Profile Photo"] = "Cambia la foto del profilo";
|
||||
App::$strings["Use"] = "Usa";
|
||||
App::$strings["Use a photo from your albums"] = "";
|
||||
App::$strings["Select existing photo"] = "";
|
||||
App::$strings["Use a photo from your albums"] = "Usa una foto presa dai tuoi album";
|
||||
App::$strings["Select existing photo"] = "Seleziona una foto esistente";
|
||||
App::$strings["Crop Image"] = "Ritaglia immagine";
|
||||
App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione.";
|
||||
App::$strings["Done Editing"] = "Modifica terminata";
|
||||
@ -1110,17 +1120,17 @@ App::$strings["Unable to locate original post."] = "Impossibile trovare il messa
|
||||
App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato.";
|
||||
App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati.";
|
||||
App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato.";
|
||||
App::$strings["Your comment is awaiting approval."] = "";
|
||||
App::$strings["Your comment is awaiting approval."] = "Il tuo contenuto è in attesa di approvazione.";
|
||||
App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database.";
|
||||
App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale.";
|
||||
App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web.";
|
||||
App::$strings["sent you a private message"] = "ti ha inviato un messaggio privato";
|
||||
App::$strings["added your channel"] = "ha aggiunto il tuo canale";
|
||||
App::$strings["requires approval"] = "";
|
||||
App::$strings["requires approval"] = "richiede approvazione";
|
||||
App::$strings["g A l F d"] = "g A l d F";
|
||||
App::$strings["[today]"] = "[oggi]";
|
||||
App::$strings["posted an event"] = "ha creato un evento";
|
||||
App::$strings["shared a file with you"] = "";
|
||||
App::$strings["shared a file with you"] = "ha condiviso un file con te";
|
||||
App::$strings["Invalid item."] = "Elemento non valido.";
|
||||
App::$strings["Page not found."] = "Pagina non trovata.";
|
||||
App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
|
||||
@ -1137,8 +1147,8 @@ App::$strings["View Profile"] = "Profilo";
|
||||
App::$strings["View %s's profile"] = "Guarda il profilo di %s";
|
||||
App::$strings["Refresh Permissions"] = "Modifica i permessi";
|
||||
App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati";
|
||||
App::$strings["Refresh Photo"] = "";
|
||||
App::$strings["Fetch updated photo"] = "";
|
||||
App::$strings["Refresh Photo"] = "Ricarica la foto";
|
||||
App::$strings["Fetch updated photo"] = "Aggiorna la foto";
|
||||
App::$strings["Recent Activity"] = "Attività recenti";
|
||||
App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti";
|
||||
App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)";
|
||||
@ -1155,36 +1165,36 @@ App::$strings["Hide"] = "Nascondi";
|
||||
App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)";
|
||||
App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!";
|
||||
App::$strings["Delete this connection"] = "Elimina questo contatto";
|
||||
App::$strings["Fetch Vcard"] = "";
|
||||
App::$strings["Fetch electronic calling card for this connection"] = "";
|
||||
App::$strings["Open Individual Permissions section by default"] = "";
|
||||
App::$strings["Affinity"] = "";
|
||||
App::$strings["Open Set Affinity section by default"] = "";
|
||||
App::$strings["Fetch Vcard"] = "Aggiorna la Vcard";
|
||||
App::$strings["Fetch electronic calling card for this connection"] = "Scarica la scheda con le informazioni di questo contatto";
|
||||
App::$strings["Open Individual Permissions section by default"] = "Apri automaticamente la sezione Permessi individuali";
|
||||
App::$strings["Affinity"] = "Affinità";
|
||||
App::$strings["Open Set Affinity section by default"] = "Apri la sezione Imposta affinità per default";
|
||||
App::$strings["Me"] = "Me";
|
||||
App::$strings["Family"] = "Famiglia";
|
||||
App::$strings["Acquaintances"] = "Conoscenti";
|
||||
App::$strings["Filter"] = "";
|
||||
App::$strings["Open Custom Filter section by default"] = "";
|
||||
App::$strings["Filter"] = "Filtra";
|
||||
App::$strings["Open Custom Filter section by default"] = "Apri automaticamente la sezione con i Filtri personalizzati";
|
||||
App::$strings["Approve this connection"] = "Approva questo contatto";
|
||||
App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare";
|
||||
App::$strings["Set Affinity"] = "Scegli l'affinità";
|
||||
App::$strings["Set Profile"] = "Scegli il profilo da mostrare";
|
||||
App::$strings["Set Affinity & Profile"] = "Affinità e profilo";
|
||||
App::$strings["This connection is unreachable from this location."] = "";
|
||||
App::$strings["This connection may be unreachable from other channel locations."] = "";
|
||||
App::$strings["Location independence is not supported by their network."] = "";
|
||||
App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "";
|
||||
App::$strings["This connection is unreachable from this location."] = "Questo contatto non è raggiungibile dal server in uso";
|
||||
App::$strings["This connection may be unreachable from other channel locations."] = "Questo contatto potrebbe non essere raggiungibile da altri canali";
|
||||
App::$strings["Location independence is not supported by their network."] = "Nella loro rete la location independence non è supportata.";
|
||||
App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Il contatto indicato non è raggiungibile. Nella loro rete la location independence non è supportata.";
|
||||
App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti";
|
||||
App::$strings["Connection: %s"] = "Contatto: %s";
|
||||
App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi";
|
||||
App::$strings["Connection requests will be approved without your interaction"] = "Le richieste di entrare in contatto saranno approvate in automatico";
|
||||
App::$strings["Permission role"] = "";
|
||||
App::$strings["Loading"] = "";
|
||||
App::$strings["Add permission role"] = "";
|
||||
App::$strings["Permission role"] = "Ruolo";
|
||||
App::$strings["Loading"] = "Sto caricando";
|
||||
App::$strings["Add permission role"] = "Aggiungi un ruolo";
|
||||
App::$strings["This connection's primary address is"] = "Indirizzo primario di questo canale";
|
||||
App::$strings["Available locations:"] = "Indirizzi disponibili";
|
||||
App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi.";
|
||||
App::$strings["Connection Tools"] = "Gestione dei contatti";
|
||||
App::$strings["Connection Tools"] = "Gestione del contatto";
|
||||
App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare";
|
||||
App::$strings["Rating"] = "Valutazioni";
|
||||
App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione";
|
||||
@ -1198,7 +1208,7 @@ App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazio
|
||||
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso.";
|
||||
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle <a href=\"settings\"><strong>impostazioni di privacy</strong></a> del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali.";
|
||||
App::$strings["Last update:"] = "Ultimo aggiornamento:";
|
||||
App::$strings["Details"] = "";
|
||||
App::$strings["Details"] = "Dettagli";
|
||||
App::$strings["Room not found"] = "Chat non trovata";
|
||||
App::$strings["Leave Room"] = "Lascia la chat";
|
||||
App::$strings["Delete Room"] = "Elimina questa chat";
|
||||
@ -1243,23 +1253,27 @@ App::$strings["Help"] = "Guida";
|
||||
App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language";
|
||||
App::$strings["Layout Description"] = "Descrizione del layout";
|
||||
App::$strings["Download PDL file"] = "Scarica il file PDL";
|
||||
App::$strings["Please refresh page"] = "";
|
||||
App::$strings["Unknown error"] = "";
|
||||
App::$strings["Token verification failed."] = "";
|
||||
App::$strings["Email Verification Required"] = "";
|
||||
App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "";
|
||||
App::$strings["Resend Email"] = "";
|
||||
App::$strings["Validation token"] = "";
|
||||
App::$strings["Post not found."] = "";
|
||||
App::$strings["Please refresh page"] = "Per favore ricarica la pagina";
|
||||
App::$strings["Unknown error"] = "Errore sconosciuto";
|
||||
App::$strings["Token verification failed."] = "Verifica del token fallita";
|
||||
App::$strings["Email Verification Required"] = "È richiesta una verifica della mail";
|
||||
App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Un token di verifica è stato spedito al tuo indirizzo email [%s]. Inserisci il token qui per completare la verifica dell'account. Per favore attendi qualche minuti e controlla lo spam se non vedi il messaggio.";
|
||||
App::$strings["Resend Email"] = "Reinvia la mail";
|
||||
App::$strings["Validation token"] = "Token di validazione";
|
||||
App::$strings["Post not found."] = "Post non trovato.";
|
||||
App::$strings["post"] = "il post";
|
||||
App::$strings["comment"] = "il commento";
|
||||
App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
|
||||
App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali";
|
||||
App::$strings["Configuration Editor"] = "Editor di configurazione";
|
||||
App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare.";
|
||||
App::$strings["If enabled, connection requests will be approved without your interaction"] = "";
|
||||
App::$strings["Automatic approval settings"] = "";
|
||||
App::$strings["If enabled, connection requests will be approved without your interaction"] = "Se abilitato, le richieste di contatto saranno approvate automaticamente";
|
||||
App::$strings["Automatic approval settings"] = "Impostazioni di approvazione automatica";
|
||||
App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "";
|
||||
App::$strings["Unknown App"] = "Applicazione sconosciuta";
|
||||
App::$strings["Authorize"] = "Autorizza";
|
||||
App::$strings["Do you authorize the app %s to access your channel data?"] = "Autorizzi la app %s ad accedere ai dati del tuo canale?";
|
||||
App::$strings["Allow"] = "Autorizza";
|
||||
App::$strings["Privacy group created."] = "Gruppo di canali creato.";
|
||||
App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali.";
|
||||
App::$strings["Privacy group not found."] = "Gruppo di canali non trovato.";
|
||||
@ -1282,8 +1296,8 @@ App::$strings["Profile unavailable to export."] = "Il profilo non è disponibile
|
||||
App::$strings["Profile Name is required."] = "Il nome del profilo è obbligatorio.";
|
||||
App::$strings["Marital Status"] = "Stato sentimentale";
|
||||
App::$strings["Romantic Partner"] = "Partner affettivo";
|
||||
App::$strings["Likes"] = "Mi piace";
|
||||
App::$strings["Dislikes"] = "Non mi piace";
|
||||
App::$strings["Likes"] = "\"Mi piace\"";
|
||||
App::$strings["Dislikes"] = "\"Non mi piace\"";
|
||||
App::$strings["Work/Employment"] = "Lavoro/impiego";
|
||||
App::$strings["Religion"] = "Religione";
|
||||
App::$strings["Political Views"] = "Orientamento politico";
|
||||
@ -1304,7 +1318,7 @@ App::$strings["Clone this profile"] = "Clona questo profilo";
|
||||
App::$strings["Delete this profile"] = "Elimina questo profilo";
|
||||
App::$strings["Add profile things"] = "Aggiungi oggetti al profilo";
|
||||
App::$strings["Personal"] = "Personali";
|
||||
App::$strings["Relation"] = "Relazione";
|
||||
App::$strings["Relationship"] = "Relazione";
|
||||
App::$strings["Miscellaneous"] = "Altro";
|
||||
App::$strings["Import profile from file"] = "Importa il profilo da un file";
|
||||
App::$strings["Export profile to file"] = "Esporta il profilo in un file";
|
||||
@ -1338,24 +1352,24 @@ App::$strings["Love/Romance"] = "Amore";
|
||||
App::$strings["School/Education"] = "Scuola/educazione";
|
||||
App::$strings["Contact information and social networks"] = "Contatti e social network";
|
||||
App::$strings["My other channels"] = "I miei altri canali";
|
||||
App::$strings["Communications"] = "";
|
||||
App::$strings["Communications"] = "Comunicazioni";
|
||||
App::$strings["Profile Image"] = "Immagine del profilo";
|
||||
App::$strings["Edit Profiles"] = "Modifica i tuoi profili";
|
||||
App::$strings["This page is available only to site members"] = "";
|
||||
App::$strings["Welcome"] = "";
|
||||
App::$strings["What would you like to do?"] = "";
|
||||
App::$strings["Please bookmark this page if you would like to return to it in the future"] = "";
|
||||
App::$strings["Upload a profile photo"] = "";
|
||||
App::$strings["Upload a cover photo"] = "";
|
||||
App::$strings["Edit your default profile"] = "";
|
||||
App::$strings["View friend suggestions"] = "";
|
||||
App::$strings["View the channel directory"] = "";
|
||||
App::$strings["View/edit your channel settings"] = "";
|
||||
App::$strings["View the site or project documentation"] = "";
|
||||
App::$strings["Visit your channel homepage"] = "";
|
||||
App::$strings["View your connections and/or add somebody whose address you already know"] = "";
|
||||
App::$strings["View your personal stream (this may be empty until you add some connections)"] = "";
|
||||
App::$strings["View the public stream. Warning: this content is not moderated"] = "";
|
||||
App::$strings["This page is available only to site members"] = "Questa pagina è accessibile solo agli utenti registrati";
|
||||
App::$strings["Welcome"] = "Benvenuto";
|
||||
App::$strings["What would you like to do?"] = "Vorresti farlo?";
|
||||
App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Per favore metti questa pagina nei preferiti se vuoi ritornarci in futuro";
|
||||
App::$strings["Upload a profile photo"] = "Carica una foto per il profilo";
|
||||
App::$strings["Upload a cover photo"] = "Carica una foto di copertina";
|
||||
App::$strings["Edit your default profile"] = "Modifica il tuo profilo predefinito";
|
||||
App::$strings["View friend suggestions"] = "Guarda i suggerimenti di amicizia";
|
||||
App::$strings["View the channel directory"] = "Guarda l'elenco dei canali";
|
||||
App::$strings["View/edit your channel settings"] = "Guarda/modifica le impostazioni del tuo canale";
|
||||
App::$strings["View the site or project documentation"] = "Guarda la documentazione del sito o del progetto";
|
||||
App::$strings["Visit your channel homepage"] = "Visita la pagina iniziale del tuo canale";
|
||||
App::$strings["View your connections and/or add somebody whose address you already know"] = "Guarda i tuoi contatti e/o aggiungine qualcuno di cui hai l'indirizzo";
|
||||
App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Guarda il tuo flusso personale (potrebbe essere vuoto finché non aggiungi connessioni)";
|
||||
App::$strings["View the public stream. Warning: this content is not moderated"] = "Vedi il flusso pubblico. Attenzione: contenuti non moderati";
|
||||
App::$strings["Page link"] = "Link alla pagina";
|
||||
App::$strings["Edit Webpage"] = "Modifica la pagina web";
|
||||
App::$strings["Create a new channel"] = "Crea un nuovo canale";
|
||||
@ -1368,18 +1382,18 @@ App::$strings["%d new messages"] = "%d nuovi messaggi";
|
||||
App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto";
|
||||
App::$strings["Delegated Channel"] = "Canale delegato";
|
||||
App::$strings["Cards"] = "Card";
|
||||
App::$strings["Add Card"] = "";
|
||||
App::$strings["Add Card"] = "Aggiungi card";
|
||||
App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione";
|
||||
App::$strings["About this site"] = "";
|
||||
App::$strings["Site Name"] = "";
|
||||
App::$strings["About this site"] = "Informazioni su questo sito";
|
||||
App::$strings["Site Name"] = "Nome del sito";
|
||||
App::$strings["Administrator"] = "Amministratore";
|
||||
App::$strings["Terms of Service"] = "Condizioni d'Uso";
|
||||
App::$strings["Software and Project information"] = "";
|
||||
App::$strings["This site is powered by \$Projectname"] = "";
|
||||
App::$strings["Software and Project information"] = "Informazioni sul software e sul progetto";
|
||||
App::$strings["This site is powered by \$Projectname"] = "Questo sito è costruito con \$Projectname";
|
||||
App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "";
|
||||
App::$strings["Version %s"] = "Versione %s";
|
||||
App::$strings["Project homepage"] = "";
|
||||
App::$strings["Developer homepage"] = "";
|
||||
App::$strings["Project homepage"] = "Homepage del progetto";
|
||||
App::$strings["Developer homepage"] = "Homepege dello sviluppatore";
|
||||
App::$strings["No ratings"] = "Nessuna valutazione";
|
||||
App::$strings["Ratings"] = "Valutazioni";
|
||||
App::$strings["Rating: "] = "Valutazione:";
|
||||
@ -1398,11 +1412,11 @@ App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip";
|
||||
App::$strings["Invalid folder path."] = "La cartella indicata non è valida.";
|
||||
App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi.";
|
||||
App::$strings["Import complete."] = "Importazione completata.";
|
||||
App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "";
|
||||
App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Non è possibile cambiare il nome del canale entro le 48 dal cambio della password dell'account.";
|
||||
App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro.";
|
||||
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati.";
|
||||
App::$strings["Change channel nickname/address"] = "";
|
||||
App::$strings["Any/all connections on other networks will be lost!"] = "";
|
||||
App::$strings["Change channel nickname/address"] = "Cambia il nome/indirizzo del canale";
|
||||
App::$strings["Any/all connections on other networks will be lost!"] = "Tutti i contatti su altre reti saranno persi!";
|
||||
App::$strings["New channel address"] = "";
|
||||
App::$strings["Rename Channel"] = "";
|
||||
App::$strings["Item is not editable"] = "L'elemento non è modificabile";
|
||||
@ -1458,6 +1472,7 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s n
|
||||
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa";
|
||||
App::$strings["Action completed."] = "Comando completato.";
|
||||
App::$strings["Thank you."] = "Grazie.";
|
||||
App::$strings["No default suggestions were found."] = "";
|
||||
App::$strings["%d rating"] = array(
|
||||
0 => "%d valutazione",
|
||||
1 => "%d valutazioni",
|
||||
@ -1611,7 +1626,7 @@ App::$strings["Unable to resend email verification message."] = "";
|
||||
App::$strings["No connections."] = "Nessun contatto.";
|
||||
App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]";
|
||||
App::$strings["View Connections"] = "Elenco contatti";
|
||||
App::$strings["Blocked accounts"] = "";
|
||||
App::$strings["Blocked accounts"] = "Account bloccati";
|
||||
App::$strings["Expired accounts"] = "";
|
||||
App::$strings["Expiring accounts"] = "";
|
||||
App::$strings["Clones"] = "";
|
||||
@ -1670,60 +1685,6 @@ App::$strings["Mail"] = "Messaggi";
|
||||
App::$strings["Chat"] = "Chat";
|
||||
App::$strings["Probe"] = "Diagnostica";
|
||||
App::$strings["Suggest"] = "Suggerisci";
|
||||
App::$strings["Random Channel"] = "Canale casuale";
|
||||
App::$strings["Invite"] = "Invita";
|
||||
App::$strings["Features"] = "Funzionalità";
|
||||
App::$strings["Language"] = "Lingua";
|
||||
App::$strings["Post"] = "Post";
|
||||
App::$strings["Profile Photo"] = "Foto del profilo";
|
||||
App::$strings["Purchase"] = "Acquista";
|
||||
App::$strings["Undelete"] = "";
|
||||
App::$strings["Add to app-tray"] = "";
|
||||
App::$strings["Remove from app-tray"] = "";
|
||||
App::$strings["Pin to navbar"] = "";
|
||||
App::$strings["Unpin from navbar"] = "";
|
||||
App::$strings["__ctx:permcat__ default"] = "";
|
||||
App::$strings["__ctx:permcat__ follower"] = "";
|
||||
App::$strings["__ctx:permcat__ contributor"] = "";
|
||||
App::$strings["__ctx:permcat__ publisher"] = "";
|
||||
App::$strings["(No Title)"] = "";
|
||||
App::$strings["Wiki page create failed."] = "";
|
||||
App::$strings["Wiki not found."] = "";
|
||||
App::$strings["Destination name already exists"] = "";
|
||||
App::$strings["Page not found"] = "";
|
||||
App::$strings["Error reading page content"] = "";
|
||||
App::$strings["Error reading wiki"] = "";
|
||||
App::$strings["Page update failed."] = "";
|
||||
App::$strings["Nothing deleted"] = "";
|
||||
App::$strings["Compare: object not found."] = "";
|
||||
App::$strings["Page updated"] = "";
|
||||
App::$strings["Untitled"] = "";
|
||||
App::$strings["Wiki resource_id required for git commit"] = "";
|
||||
App::$strings["__ctx:wiki_history__ Message"] = "";
|
||||
App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente";
|
||||
App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite";
|
||||
App::$strings["Only me"] = "Solo io";
|
||||
App::$strings["Public"] = "Pubblico";
|
||||
App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname";
|
||||
App::$strings["Any account on %s"] = "Tutti gli account su %s";
|
||||
App::$strings["Any of my connections"] = "Chiunque tra i miei contatti";
|
||||
App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso";
|
||||
App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)";
|
||||
App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati";
|
||||
App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca";
|
||||
App::$strings["This is your default setting for who can view your default channel profile"] = "Impostazione predefinita di chi può vedere il profilo standard del tuo canale";
|
||||
App::$strings["This is your default setting for who can view your connections"] = "Impostazione predefinita di chi può vedere i tuoi contatti/amici";
|
||||
App::$strings["This is your default setting for who can view your file storage and photos"] = "Impostazione predefinita di chi può vedere le foto e il tuo archivio file";
|
||||
App::$strings["This is your default setting for the audience of your webpages"] = "Impostazione predefinita di chi può vedere le tue pagine web";
|
||||
App::$strings["Missing room name"] = "Chat senza nome";
|
||||
App::$strings["Duplicate room name"] = "Il nome della chat è duplicato";
|
||||
App::$strings["Invalid room specifier."] = "Il nome della chat non è valido.";
|
||||
App::$strings["Room not found."] = "Chat non trovata.";
|
||||
App::$strings["Room is full"] = "La chat è al completo";
|
||||
App::$strings["\$Projectname Notification"] = "Notifica \$Projectname";
|
||||
App::$strings["\$projectname"] = "\$projectname";
|
||||
App::$strings["Thank You,"] = "Grazie,";
|
||||
App::$strings["%s Administrator"] = "L'amministratore di %s";
|
||||
App::$strings["This email was sent by %1\$s at %2\$s."] = "";
|
||||
App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "";
|
||||
App::$strings["To stop receiving these messages, please adjust your %s."] = "";
|
||||
@ -1733,7 +1694,7 @@ App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s,
|
||||
App::$strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s.";
|
||||
App::$strings["a private message"] = "un messaggio privato";
|
||||
App::$strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere.";
|
||||
App::$strings["commented on"] = "";
|
||||
App::$strings["commented on"] = "ha commentato";
|
||||
App::$strings["liked"] = "";
|
||||
App::$strings["disliked"] = "";
|
||||
App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = "";
|
||||
@ -1744,9 +1705,9 @@ App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"]
|
||||
App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo.";
|
||||
App::$strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione.";
|
||||
App::$strings["Please visit %s to approve or reject this comment."] = "";
|
||||
App::$strings["%1\$s, %2\$s liked [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ma messo un mi piace al [zrl=%3\$s]tuo %4\$s[/zrl]";
|
||||
App::$strings["%1\$s, %2\$s liked [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, a %2\$s [zrl=%3\$s]tuo %4\$s[/zrl]";
|
||||
App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Ricevuto un mi piace alla conversazione #%1\$d di %2\$s";
|
||||
App::$strings["%1\$s, %2\$s liked an item/conversation you created."] = "%1\$s, %2\$s ha messo un mi piace all'elemento/conversazione che hai creato";
|
||||
App::$strings["%1\$s, %2\$s liked an item/conversation you created."] = "%1\$s, a %2\$s piace l'elemento/conversazione che hai creato";
|
||||
App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notifica] %s ha scritto sulla tua bacheca";
|
||||
App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s";
|
||||
App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]";
|
||||
@ -1999,15 +1960,15 @@ App::$strings["Set font-size for the entire application"] = "Dimensione font per
|
||||
App::$strings["Examples: 1rem, 100%, 16px"] = "";
|
||||
App::$strings["Set font-color for posts and comments"] = "Colore del carattere per post e commenti";
|
||||
App::$strings["Set radius of corners"] = "Raggio degli angoli stondati";
|
||||
App::$strings["Example: 4px"] = "";
|
||||
App::$strings["Example: 4px"] = "Esempio: 4px";
|
||||
App::$strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto";
|
||||
App::$strings["Set maximum width of content region in pixel"] = "Larghezza massima dell'area dei contenuti in pixel";
|
||||
App::$strings["Leave empty for default width"] = "Lascia vuoto per usare il valore predefinito";
|
||||
App::$strings["Left align page content"] = "Allinea a sinistra il contenuto della pagina";
|
||||
App::$strings["Set size of conversation author photo"] = "Dimensione foto dell'autore della conversazione";
|
||||
App::$strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione";
|
||||
App::$strings["Errors encountered deleting database table "] = "";
|
||||
App::$strings["Submit Settings"] = "";
|
||||
App::$strings["Errors encountered deleting database table "] = "Errore nella cancellazione della tabella";
|
||||
App::$strings["Submit Settings"] = "Invia impostazioni";
|
||||
App::$strings["Drop tables when uninstalling?"] = "";
|
||||
App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "";
|
||||
App::$strings["Mapbox Access Token"] = "";
|
||||
@ -2016,19 +1977,19 @@ App::$strings["Rendezvous"] = "";
|
||||
App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "";
|
||||
App::$strings["Welcome to Rendezvous!"] = "";
|
||||
App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "";
|
||||
App::$strings["Let's meet here"] = "";
|
||||
App::$strings["New marker"] = "";
|
||||
App::$strings["Edit marker"] = "";
|
||||
App::$strings["New identity"] = "";
|
||||
App::$strings["Delete marker"] = "";
|
||||
App::$strings["Delete member"] = "";
|
||||
App::$strings["Let's meet here"] = "Incontriamoci qui";
|
||||
App::$strings["New marker"] = "Nuovo segnaposto";
|
||||
App::$strings["Edit marker"] = "Modifica segnaposto";
|
||||
App::$strings["New identity"] = "Nuova identità";
|
||||
App::$strings["Delete marker"] = "Elimina segnaposto";
|
||||
App::$strings["Delete member"] = "Elimina membro";
|
||||
App::$strings["Edit proximity alert"] = "";
|
||||
App::$strings["A proximity alert will be issued when this member is within a certain radius of you.<br><br>Enter a radius in meters (0 to disable):"] = "";
|
||||
App::$strings["distance"] = "";
|
||||
App::$strings["distance"] = "distanza";
|
||||
App::$strings["Proximity alert distance (meters)"] = "";
|
||||
App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.<br><br>Enter a radius in meters (0 to disable):"] = "";
|
||||
App::$strings["Marker proximity alert"] = "";
|
||||
App::$strings["Reminder note"] = "";
|
||||
App::$strings["Reminder note"] = "Nota per il promemoria";
|
||||
App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "";
|
||||
App::$strings["Add new rendezvous"] = "";
|
||||
App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "";
|
||||
@ -2039,8 +2000,8 @@ App::$strings["GNU-Social Protocol Settings updated."] = "";
|
||||
App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "";
|
||||
App::$strings["Enable the GNU-Social protocol for this channel"] = "";
|
||||
App::$strings["GNU-Social Protocol Settings"] = "";
|
||||
App::$strings["Follow"] = "";
|
||||
App::$strings["%1\$s is now following %2\$s"] = "";
|
||||
App::$strings["Follow"] = "Segui";
|
||||
App::$strings["%1\$s is now following %2\$s"] = "%1\$s sta ora seguendo %2\$s";
|
||||
App::$strings["Planets Settings updated."] = "";
|
||||
App::$strings["Enable Planets Plugin"] = "";
|
||||
App::$strings["Planets Settings"] = "";
|
||||
@ -2063,12 +2024,12 @@ App::$strings["Most downloaded first"] = "";
|
||||
App::$strings["Most liked first"] = "";
|
||||
App::$strings["Preferred IDs Message"] = "";
|
||||
App::$strings["Message to display above preferred results."] = "";
|
||||
App::$strings["Uploaded by: "] = "";
|
||||
App::$strings["Uploaded by: "] = "Caricato da:";
|
||||
App::$strings["Drawn by: "] = "";
|
||||
App::$strings["Use this image"] = "";
|
||||
App::$strings["Use this image"] = "Usa questa immagine";
|
||||
App::$strings["Or select from a free OpenClipart.org image:"] = "";
|
||||
App::$strings["Search Term"] = "";
|
||||
App::$strings["Unknown error. Please try again later."] = "";
|
||||
App::$strings["Search Term"] = "Termine di ricerca";
|
||||
App::$strings["Unknown error. Please try again later."] = "Errore sconosciuto. Per favore riprova più tardi.";
|
||||
App::$strings["Profile photo updated successfully."] = "";
|
||||
App::$strings["Flag Adult Photos"] = "Marca le foto per adulti";
|
||||
App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Permetti di nascondere le foto inappropriate nella visualizzazione degli album";
|
||||
@ -2303,8 +2264,8 @@ App::$strings["Approve subscription requests from Hubzilla contacts automaticall
|
||||
App::$strings["Purge internal list of jabber addresses of contacts"] = "";
|
||||
App::$strings["Configuration Help"] = "";
|
||||
App::$strings["Jappix Mini Settings"] = "";
|
||||
App::$strings["Currently blocked"] = "";
|
||||
App::$strings["No channels currently blocked"] = "";
|
||||
App::$strings["Currently blocked"] = "Attualmente bloccati";
|
||||
App::$strings["No channels currently blocked"] = "Nessun canale attualmente bloccato";
|
||||
App::$strings["\"Superblock\" Settings"] = "";
|
||||
App::$strings["Block Completely"] = "";
|
||||
App::$strings["superblock settings updated"] = "";
|
||||
@ -2463,9 +2424,9 @@ App::$strings["Browse for new contacts"] = "";
|
||||
App::$strings["Launch installed apps"] = "";
|
||||
App::$strings["Looking for help? Click here."] = "";
|
||||
App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "";
|
||||
App::$strings["You have received a new private message. Click here to see from who!"] = "";
|
||||
App::$strings["You have received a new private message. Click here to see from who!"] = "Hai ricevuto un nuovo messaggio privato. Clicca qui per sapere da chi!";
|
||||
App::$strings["There are events this week. Click here too see which!"] = "";
|
||||
App::$strings["You have received a new introduction. Click here to see who!"] = "";
|
||||
App::$strings["You have received a new introduction. Click here to see who!"] = "Hai ricevuto una nuova richiesta di amicizia. Clicca qui per sapere da chi!";
|
||||
App::$strings["There is a new system notification. Click here to see what has happened!"] = "";
|
||||
App::$strings["Click here to share text, images, videos and sound."] = "";
|
||||
App::$strings["You can write an optional title for your update (good for long posts)."] = "";
|
||||
@ -3179,9 +3140,9 @@ App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @
|
||||
App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito";
|
||||
App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto";
|
||||
App::$strings["Please wait..."] = "Attendere...";
|
||||
App::$strings["Add Apps"] = "";
|
||||
App::$strings["Arrange Apps"] = "";
|
||||
App::$strings["Toggle System Apps"] = "";
|
||||
App::$strings["Add Apps"] = "Aggiungi App";
|
||||
App::$strings["Arrange Apps"] = "Ordina le App";
|
||||
App::$strings["Toggle System Apps"] = "Attiva/disattiva Apps";
|
||||
App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes";
|
||||
App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
|
||||
App::$strings["Photo storage failed."] = "Impossibile salvare la foto.";
|
||||
@ -3201,7 +3162,7 @@ App::$strings["Channels not in any privacy group"] = "Canali che non sono in nes
|
||||
App::$strings["New window"] = "Nuova finestra";
|
||||
App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra";
|
||||
App::$strings["Logged out."] = "Uscita effettuata.";
|
||||
App::$strings["Email validation is incomplete. Please check your email."] = "";
|
||||
App::$strings["Email validation is incomplete. Please check your email."] = "Validazione via mail non completa. Per favore controlla la tua mail.";
|
||||
App::$strings["Failed authentication"] = "Autenticazione fallita";
|
||||
App::$strings["Help:"] = "Guida:";
|
||||
App::$strings["Not Found"] = "Non disponibile";
|
||||
|
@ -60,7 +60,7 @@ function contact_format(item) {
|
||||
var desc = ((item.label) ? item.nick + ' ' + item.label : item.nick);
|
||||
if(typeof desc === 'undefined') desc = '';
|
||||
if(desc) desc = ' ('+desc+')';
|
||||
return "<div class='{0} dropdown-item dropdown-notification clearfix' title='{4}'><img class='menu-img-2' src='{1}'><span class='contactname'>{2}</span><span class='dropdown-sub-text'>{3}</span></div>".format(item.taggable, item.photo, item.name, desc, item.link);
|
||||
return "<div class='{0} dropdown-item dropdown-notification clearfix' title='{4}'><img class='menu-img-2' src='{1}'><span class='contactname'>{2}</span><span class='dropdown-sub-text'>{3}</span></div>".format(item.taggable, item.photo, item.name, desc, typeof(item.link) !== 'undefined' ? item.link : desc.replace('(','').replace(')',''));
|
||||
}
|
||||
else
|
||||
return "<div>" + item.text + "</div>";
|
||||
|
@ -21,7 +21,7 @@ $(document).ready(function () {
|
||||
var pageName = url.href.split('/').pop().split('#').shift().split('?').shift();
|
||||
var linkName = $(this).attr('href').split('/').pop();
|
||||
if (pageName === linkName) {
|
||||
var tocUl = $(this).closest('a').append('<ul>').find('ul');
|
||||
var tocUl = $(this).closest('a').after('<ul>').next('ul');
|
||||
tocUl.removeClass(); // Classes are automatically added to <ul> elements by something else
|
||||
tocUl.toc({content: "#doco-content", headings: "h3"});
|
||||
tocUl.addClass('toc-content');
|
||||
|
Reference in New Issue
Block a user