aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Zotlabs/Module/Acl.php19
-rw-r--r--Zotlabs/Module/Connedit.php8
-rw-r--r--Zotlabs/Module/Lockview.php39
-rw-r--r--Zotlabs/Module/Profile_photo.php10
-rw-r--r--Zotlabs/Module/Profperm.php10
-rw-r--r--Zotlabs/Module/Settings/Channel.php19
-rw-r--r--doc/context/es-es/admin/plugins/assets/addon_repo_gui_1.pngbin0 -> 16983 bytes
-rw-r--r--doc/context/es-es/admin/plugins/help.html14
-rw-r--r--doc/context/es-es/profiles/help.html35
-rw-r--r--doc/context/es-es/settings/account/help.html35
-rw-r--r--doc/context/es-es/settings/channel/help.html35
-rw-r--r--doc/context/es-es/settings/tokens/help.html23
-rw-r--r--doc/context/es-es/webpages/help.html8
-rw-r--r--include/acl_selectors.php10
-rw-r--r--include/attach.php58
-rw-r--r--include/group.php68
-rw-r--r--include/photos.php53
-rw-r--r--include/security.php16
-rw-r--r--include/widgets.php2
-rw-r--r--util/hmessages.po1813
-rw-r--r--view/es-es/hmessages.po4455
-rw-r--r--view/es-es/hstrings.php996
-rw-r--r--view/theme/redbasic/css/style.css2
-rwxr-xr-xview/tpl/settings.tpl4
24 files changed, 4067 insertions, 3665 deletions
diff --git a/Zotlabs/Module/Acl.php b/Zotlabs/Module/Acl.php
index 2b364d9ac..6f5b0ddf9 100644
--- a/Zotlabs/Module/Acl.php
+++ b/Zotlabs/Module/Acl.php
@@ -103,7 +103,24 @@ class Acl extends \Zotlabs\Web\Controller {
$contacts = array();
if($type == '' || $type == 'g') {
-
+
+ $r = q("select id, profile_guid, profile_name from profile where is_default = 0 and uid = %d",
+ intval(local_channel())
+ );
+ if($r) {
+ foreach($r as $rv) {
+ $groups[] = array(
+ "type" => "g",
+ "photo" => "images/twopeople.png",
+ "name" => t('Profile','acl') . ' ' . $rv['profile_name'],
+ "id" => 'vp' . $rv['id'],
+ "xid" => 'vp.' . $rv['profile_guid'],
+ "uids" => group_get_profile_members_xchan(local_channel(), $rv['id']),
+ "link" => ''
+ );
+ }
+ }
+
$r = q("SELECT groups.id, groups.hash, groups.gname
FROM groups, group_member
WHERE groups.deleted = 0 AND groups.uid = %d
diff --git a/Zotlabs/Module/Connedit.php b/Zotlabs/Module/Connedit.php
index d8422266c..7a753c286 100644
--- a/Zotlabs/Module/Connedit.php
+++ b/Zotlabs/Module/Connedit.php
@@ -245,14 +245,6 @@ class Connedit extends \Zotlabs\Web\Controller {
intval(local_channel())
);
- if($orig_record[0]['abook_profile'] != $profile_id) {
- //Update profile photo permissions
-
- logger('A new profile was assigned - updating profile photos');
- profile_photo_set_profile_perms(local_channel(),$profile_id);
-
- }
-
if($r)
info( t('Connection updated.') . EOL);
else
diff --git a/Zotlabs/Module/Lockview.php b/Zotlabs/Module/Lockview.php
index 7d1d8a43f..fc7d5c7c8 100644
--- a/Zotlabs/Module/Lockview.php
+++ b/Zotlabs/Module/Lockview.php
@@ -32,10 +32,10 @@ class Lockview extends \Zotlabs\Web\Controller {
if(! $item_id)
killme();
- if (!in_array($type, array('item','photo','event', 'menu_item', 'chatroom')))
+ if (! in_array($type, array('item', 'photo', 'attach', 'event', 'menu_item', 'chatroom')))
killme();
- //we have different naming in in menu_item table and chatroom table
+ // we have different naming in in menu_item table and chatroom table
switch($type) {
case 'menu_item':
$id = 'mitem_id';
@@ -101,6 +101,22 @@ class Lockview extends \Zotlabs\Web\Controller {
stringify_array_elms($deny_groups,true);
stringify_array_elms($deny_users,true);
+
+ $profile_groups = [];
+ if($allowed_groups) {
+ foreach($allowed_groups as $g) {
+ if(substr($g,0,4) === '\'vp.') {
+ $profile_groups[] = '\'' . substr($g,4);
+ }
+ }
+ }
+ if(count($profile_groups)) {
+ $r = q("SELECT profile_name FROM profile WHERE profile_guid IN ( " . implode(', ', $profile_groups) . " )");
+ if($r)
+ foreach($r as $rr)
+ $l[] = '<li><b>' . t('Profile','acl') . ' ' . $rr['profile_name'] . '</b></li>';
+ }
+
if(count($allowed_groups)) {
$r = q("SELECT gname FROM groups WHERE hash IN ( " . implode(', ', $allowed_groups) . " )");
if($r)
@@ -120,6 +136,25 @@ class Lockview extends \Zotlabs\Web\Controller {
}
}
}
+
+
+ $profile_groups = [];
+ if($deny_groups) {
+ foreach($deny_groups as $g) {
+ if(substr($g,0,4) === '\'vp.') {
+ $profile_groups[] = '\'' . substr($g,4);
+ }
+ }
+ }
+ if(count($profile_groups)) {
+ $r = q("SELECT profile_name FROM profile WHERE profile_guid IN ( " . implode(', ', $profile_groups) . " )");
+ if($r)
+ foreach($r as $rr)
+ $l[] = '<li><b><strike>' . t('Profile','acl') . ' ' . $rr['profile_name'] . '</strike></b></li>';
+ }
+
+
+
if(count($deny_groups)) {
$r = q("SELECT gname FROM groups WHERE hash IN ( " . implode(', ', $deny_groups) . " )");
if($r)
diff --git a/Zotlabs/Module/Profile_photo.php b/Zotlabs/Module/Profile_photo.php
index 5b88f67f5..29a239f4d 100644
--- a/Zotlabs/Module/Profile_photo.php
+++ b/Zotlabs/Module/Profile_photo.php
@@ -180,6 +180,10 @@ class Profile_photo extends \Zotlabs\Web\Controller {
dbesc(datetime_convert()),
dbesc($channel['xchan_hash'])
);
+
+ photo_profile_setperms(local_channel(),$base_image['resource_id'],$_REQUEST['profile']);
+
+
// Similarly, tell the nav bar to bypass the cache and update the avater image.
$_SESSION['reload_avatar'] = true;
@@ -188,9 +192,6 @@ class Profile_photo extends \Zotlabs\Web\Controller {
// Update directory in background
\Zotlabs\Daemon\Master::Summon(array('Directory',$channel['channel_id']));
- // Now copy profile-permissions to pictures, to prevent privacyleaks by automatically created folder 'Profile Pictures'
-
- profile_photo_set_profile_perms(local_channel(),$_REQUEST['profile']);
}
else
notice( t('Unable to process image') . EOL);
@@ -338,7 +339,8 @@ class Profile_photo extends \Zotlabs\Web\Controller {
dbesc($channel['xchan_hash'])
);
- profile_photo_set_profile_perms(local_channel()); // Reset default photo permissions to public
+ photo_profile_setperms(local_channel(),$resource_id,$_REQUEST['profile']);
+
\Zotlabs\Daemon\Master::Summon(array('Directory',local_channel()));
goaway(z_root() . '/profiles');
}
diff --git a/Zotlabs/Module/Profperm.php b/Zotlabs/Module/Profperm.php
index 99cd4c58f..900e2f981 100644
--- a/Zotlabs/Module/Profperm.php
+++ b/Zotlabs/Module/Profperm.php
@@ -22,7 +22,7 @@ class Profperm extends \Zotlabs\Web\Controller {
}
- function get() {
+ function get() {
if(! local_channel()) {
notice( t('Permission denied') . EOL);
@@ -94,12 +94,8 @@ class Profperm extends \Zotlabs\Web\Controller {
}
-
- //Time to update the permissions on the profile-pictures as well
-
- profile_photo_set_profile_perms(local_channel(),$profile['id']);
-
- $r = q("SELECT * FROM abook left join xchan on abook_xchan = xchan_hash WHERE abook_channel = %d AND abook_profile = '%s'",
+ $r = q("SELECT * FROM abook left join xchan on abook_xchan = xchan_hash
+ WHERE abook_channel = %d AND abook_profile = '%s'",
intval(local_channel()),
dbesc($profile['profile_guid'])
);
diff --git a/Zotlabs/Module/Settings/Channel.php b/Zotlabs/Module/Settings/Channel.php
index 9ea459dab..5b9cfdaca 100644
--- a/Zotlabs/Module/Settings/Channel.php
+++ b/Zotlabs/Module/Settings/Channel.php
@@ -18,6 +18,7 @@ class Channel {
$role = ((x($_POST,'permissions_role')) ? notags(trim($_POST['permissions_role'])) : '');
$oldrole = get_pconfig(local_channel(),'system','permissions_role');
+
if(($role != $oldrole) || ($role === 'custom')) {
@@ -144,6 +145,7 @@ class Channel {
$post_joingroup = (($_POST['post_joingroup'] == 1) ? 1: 0);
$post_profilechange = (($_POST['post_profilechange'] == 1) ? 1: 0);
$adult = (($_POST['adult'] == 1) ? 1 : 0);
+ $defpermcat = ((x($_POST,'defpermcat')) ? notags(trim($_POST['defpermcat'])) : 'default');
$cal_first_day = (((x($_POST,'first_day')) && (intval($_POST['first_day']) == 1)) ? 1: 0);
@@ -232,6 +234,7 @@ class Channel {
set_pconfig(local_channel(),'system','photo_path',$photo_path);
set_pconfig(local_channel(),'system','attach_path',$attach_path);
set_pconfig(local_channel(),'system','cal_first_day',$cal_first_day);
+ set_pconfig(local_channel(),'system','default_permcat',$defpermcat);
$r = q("update channel set channel_name = '%s', channel_pageflags = %d, channel_timezone = '%s', channel_location = '%s', channel_notifyflags = %d, channel_max_anon_mail = %d, channel_max_friend_req = %d, channel_expire_days = %d $set_perms where channel_id = %d",
dbesc($username),
@@ -411,6 +414,19 @@ class Channel {
'$basepath' => \App::get_hostname()
));
+
+
+ $pcat = new \Zotlabs\Lib\Permcat(local_channel());
+ $pcatlist = $pcat->listing();
+ $permcats = [];
+ if($pcatlist) {
+ foreach($pcatlist as $pc) {
+ $permcats[$pc['name']] = $pc['localname'];
+ }
+ }
+
+ $default_permcat = get_pconfig(local_channel(),'system','default_permcat','default');
+
$stpl = get_markup_template('settings.tpl');
@@ -500,7 +516,8 @@ class Channel {
'$suggestme' => $suggestme,
'$group_select' => $group_select,
'$role' => array('permissions_role' , t('Channel permissions category:'), $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,
'$hide_friends' => $hide_friends,
'$hide_wall' => $hide_wall,
diff --git a/doc/context/es-es/admin/plugins/assets/addon_repo_gui_1.png b/doc/context/es-es/admin/plugins/assets/addon_repo_gui_1.png
new file mode 100644
index 000000000..37139b345
--- /dev/null
+++ b/doc/context/es-es/admin/plugins/assets/addon_repo_gui_1.png
Binary files differ
diff --git a/doc/context/es-es/admin/plugins/help.html b/doc/context/es-es/admin/plugins/help.html
new file mode 100644
index 000000000..0096937fe
--- /dev/null
+++ b/doc/context/es-es/admin/plugins/help.html
@@ -0,0 +1,14 @@
+<dl class="dl-horizontal">
+ <dt>General</dt>
+ <dd>Esta página gestiona qué plugins (también llamados <i>addons</i> o <i>complementos</i>) están instalados.</dd>
+ <dt>Gestión de los repositorios</dt>
+ <dd>Si su servidor web tiene los permisos de escritura necesarios, verá un botón etiquetado como <b>Gestión de repositorios</b>,
+ que abre un panel de control para administrar qué <i>repositorios</i> de plugins están instalados. Estos repositorios están
+ almacenados en <span style="font-family: monospace;">extend/addon/[nombre del repositorio]/</span>. El repositorio de plugins oficial de Hubzilla
+ se puede añadir escribiendo la URL del repositorio
+ <span style="font-family: monospace;">https://github.com/redmatrix/hubzilla-addons.git</span>
+ y eligiendo un nombre para el repositorio como <b>oficial</b>. Debería ver este repositorio en una lista parecida
+ a esta:
+ <br>
+ <img class="img-responsive" src="doc/context/es-es/admin/plugins/assets/addon_repo_gui_1.png"></dd>
+</dl> \ No newline at end of file
diff --git a/doc/context/es-es/profiles/help.html b/doc/context/es-es/profiles/help.html
new file mode 100644
index 000000000..9303e049c
--- /dev/null
+++ b/doc/context/es-es/profiles/help.html
@@ -0,0 +1,35 @@
+<dl class="dl-horizontal">
+ <dt>General</dt>
+ <dd>
+ Al registar <i>cuenta</i> en Hubzilla, también ha creado un <i>perfil</i> y un <i>canal</i>.
+ </dd>
+ <dt>Cuenta</dt>
+ <dd>
+ Tiene <i>una</i> cuenta. Esta consta de su correo electrónico y su contraseña. Mediante su cuenta, accede a su
+ perfil y su canal. <i>Piense en su cuenta como la vía para identificarse en un sitio Hubzilla. Le permite
+ hacer cosas, como crear perfiles y canales a través de los cuelas podrá conectar con otra gente.</i>
+ </dd>
+ <dt>Perfil</dt>
+ <dd>
+ Usted está registrado, seguramente, con algunos otros servicios de Internet, como foros o comunidades en línea. Para todos ellos
+ usted proporcionó algún tipo de información sobre usted mismo, tal como su fecha de nacimiento, país, edad y gustos o preferencias. Frente a otros
+ servicios, Hubzilla le ofrece la ventaja de crear
+ <i>muchos más perfiles</i>. De esa manera usted puede distinguir entre los perfiles dirigidos especialmente a todo el mundo
+ (su perfil público), Sus compañeros de trabajo, su familia y su pareja.<i>Piense en su perfil como la información básica
+ básica que acerca de usted mismo muestra a otra gente,</i>
+ </dd>
+ <dt>Canal</dt>
+ <dd>
+ Durante el registro, creó su primer <i>canal</i>. Sí, además de los varios perfiles, usted puede tener
+ varios canales. Esto podría ser un poco confuso al principio, pero vamos a aclarar las cosas. Usted ya ha creado
+ un canal. Puede usarlo para el público en general, para informar a los demás sobre su vida cotidiana. Pero
+ Tal vez usted es un ávido lector de libros y muchas personas se aburren con eso. Así que abre un <i>segundo canal</i> sólo
+ para los amantes de los libros, en el que todos ustedes pueden hablar de libros tanto como quieran. Obviamente, este es un nuevo flujo de
+ entradas, con un nuevo perfil (...o nuevos perfil<i>es</i>...) y contactos completamente diferentes. Algunas conexiones
+ pueden existir en ambos canales, pero habrá algunas que estén exclusivamente en uno de los dos. Usted mismo simplemente
+ cambie entre ambos como cambia de interlocutor en el mundo real cuando habla con varias personas en la calle
+ o personas con las que se reúne especialmente para hablar de libros. Incluso puede conectarse a sí mismo, o mejor: a su otro
+ canal. :)<i> Piense en un canal como en diferentes espacios dedicados a diferentes temas en los que puede hablar con diferentes
+ personas.</i>
+ </dd>
+</dl> \ No newline at end of file
diff --git a/doc/context/es-es/settings/account/help.html b/doc/context/es-es/settings/account/help.html
new file mode 100644
index 000000000..9303e049c
--- /dev/null
+++ b/doc/context/es-es/settings/account/help.html
@@ -0,0 +1,35 @@
+<dl class="dl-horizontal">
+ <dt>General</dt>
+ <dd>
+ Al registar <i>cuenta</i> en Hubzilla, también ha creado un <i>perfil</i> y un <i>canal</i>.
+ </dd>
+ <dt>Cuenta</dt>
+ <dd>
+ Tiene <i>una</i> cuenta. Esta consta de su correo electrónico y su contraseña. Mediante su cuenta, accede a su
+ perfil y su canal. <i>Piense en su cuenta como la vía para identificarse en un sitio Hubzilla. Le permite
+ hacer cosas, como crear perfiles y canales a través de los cuelas podrá conectar con otra gente.</i>
+ </dd>
+ <dt>Perfil</dt>
+ <dd>
+ Usted está registrado, seguramente, con algunos otros servicios de Internet, como foros o comunidades en línea. Para todos ellos
+ usted proporcionó algún tipo de información sobre usted mismo, tal como su fecha de nacimiento, país, edad y gustos o preferencias. Frente a otros
+ servicios, Hubzilla le ofrece la ventaja de crear
+ <i>muchos más perfiles</i>. De esa manera usted puede distinguir entre los perfiles dirigidos especialmente a todo el mundo
+ (su perfil público), Sus compañeros de trabajo, su familia y su pareja.<i>Piense en su perfil como la información básica
+ básica que acerca de usted mismo muestra a otra gente,</i>
+ </dd>
+ <dt>Canal</dt>
+ <dd>
+ Durante el registro, creó su primer <i>canal</i>. Sí, además de los varios perfiles, usted puede tener
+ varios canales. Esto podría ser un poco confuso al principio, pero vamos a aclarar las cosas. Usted ya ha creado
+ un canal. Puede usarlo para el público en general, para informar a los demás sobre su vida cotidiana. Pero
+ Tal vez usted es un ávido lector de libros y muchas personas se aburren con eso. Así que abre un <i>segundo canal</i> sólo
+ para los amantes de los libros, en el que todos ustedes pueden hablar de libros tanto como quieran. Obviamente, este es un nuevo flujo de
+ entradas, con un nuevo perfil (...o nuevos perfil<i>es</i>...) y contactos completamente diferentes. Algunas conexiones
+ pueden existir en ambos canales, pero habrá algunas que estén exclusivamente en uno de los dos. Usted mismo simplemente
+ cambie entre ambos como cambia de interlocutor en el mundo real cuando habla con varias personas en la calle
+ o personas con las que se reúne especialmente para hablar de libros. Incluso puede conectarse a sí mismo, o mejor: a su otro
+ canal. :)<i> Piense en un canal como en diferentes espacios dedicados a diferentes temas en los que puede hablar con diferentes
+ personas.</i>
+ </dd>
+</dl> \ No newline at end of file
diff --git a/doc/context/es-es/settings/channel/help.html b/doc/context/es-es/settings/channel/help.html
new file mode 100644
index 000000000..9303e049c
--- /dev/null
+++ b/doc/context/es-es/settings/channel/help.html
@@ -0,0 +1,35 @@
+<dl class="dl-horizontal">
+ <dt>General</dt>
+ <dd>
+ Al registar <i>cuenta</i> en Hubzilla, también ha creado un <i>perfil</i> y un <i>canal</i>.
+ </dd>
+ <dt>Cuenta</dt>
+ <dd>
+ Tiene <i>una</i> cuenta. Esta consta de su correo electrónico y su contraseña. Mediante su cuenta, accede a su
+ perfil y su canal. <i>Piense en su cuenta como la vía para identificarse en un sitio Hubzilla. Le permite
+ hacer cosas, como crear perfiles y canales a través de los cuelas podrá conectar con otra gente.</i>
+ </dd>
+ <dt>Perfil</dt>
+ <dd>
+ Usted está registrado, seguramente, con algunos otros servicios de Internet, como foros o comunidades en línea. Para todos ellos
+ usted proporcionó algún tipo de información sobre usted mismo, tal como su fecha de nacimiento, país, edad y gustos o preferencias. Frente a otros
+ servicios, Hubzilla le ofrece la ventaja de crear
+ <i>muchos más perfiles</i>. De esa manera usted puede distinguir entre los perfiles dirigidos especialmente a todo el mundo
+ (su perfil público), Sus compañeros de trabajo, su familia y su pareja.<i>Piense en su perfil como la información básica
+ básica que acerca de usted mismo muestra a otra gente,</i>
+ </dd>
+ <dt>Canal</dt>
+ <dd>
+ Durante el registro, creó su primer <i>canal</i>. Sí, además de los varios perfiles, usted puede tener
+ varios canales. Esto podría ser un poco confuso al principio, pero vamos a aclarar las cosas. Usted ya ha creado
+ un canal. Puede usarlo para el público en general, para informar a los demás sobre su vida cotidiana. Pero
+ Tal vez usted es un ávido lector de libros y muchas personas se aburren con eso. Así que abre un <i>segundo canal</i> sólo
+ para los amantes de los libros, en el que todos ustedes pueden hablar de libros tanto como quieran. Obviamente, este es un nuevo flujo de
+ entradas, con un nuevo perfil (...o nuevos perfil<i>es</i>...) y contactos completamente diferentes. Algunas conexiones
+ pueden existir en ambos canales, pero habrá algunas que estén exclusivamente en uno de los dos. Usted mismo simplemente
+ cambie entre ambos como cambia de interlocutor en el mundo real cuando habla con varias personas en la calle
+ o personas con las que se reúne especialmente para hablar de libros. Incluso puede conectarse a sí mismo, o mejor: a su otro
+ canal. :)<i> Piense en un canal como en diferentes espacios dedicados a diferentes temas en los que puede hablar con diferentes
+ personas.</i>
+ </dd>
+</dl> \ No newline at end of file
diff --git a/doc/context/es-es/settings/tokens/help.html b/doc/context/es-es/settings/tokens/help.html
new file mode 100644
index 000000000..6d6a8d81f
--- /dev/null
+++ b/doc/context/es-es/settings/tokens/help.html
@@ -0,0 +1,23 @@
+<dl class="dl-horizontal">
+ <dt><a href="/help/member/member_guide#Guest_Access_Tokens">Guest Access Tokens</a></dt>
+ <dd>
+ Para facilitar el intercambio de recursos privados con no miembros o miembros de otros nodos federados con una identificación limitada, Hubzilla debe proporcionar a los miembros un mecanismo para crear y administrar inicios de sesión temporales ("desechables"), también conocidos como "Zot Access Tokens". Estos tokens/credenciales se pueden utilizar para autenticarse en un sitio de hubzilla con el único propósito de acceder a recursos privilegiados o de acceso controlado (archivos, fotos, publicaciones, páginas web, salas de chat, etc.).
+ </dd>
+ <dt>Crear un token</dt>
+ <dd>
+ El formulario para crear / editar acepta tres parámetros, un nombre legible por el usuario, una contraseña o un token de acceso, y un
+ límite de caducidad opcional. Una vez que ha caducado, el acceso mediante el token deja de ser válido, ya no puede usarse, y será
+ purgado automáticamente de la lista de cuentas temporales. El campo de la contraseña, en los formularios para crear/editar,
+ muestra el texto del token de acceso y no una displays the text of the access token and not una contraseña oscurecida.
+ </dd>
+ <dt>Compartir un token</dt>
+ <dd>
+ No especificamos mecanismos para compartir estos tokens con otros. Se puede usar cualquier método de comunicación. Cualquier token que haya creado se añade al selector de la Lista de Control y puede ser usado por cualquiera que esté en esa lista.
+
+ <b>Ejemplo</b>: Una visitante llega a su sitio. Tiene un token de acceso que usted le ha proporcionado e intenta ver uno de sus álbumes de fotos (que está restringido para que solo lo puedan ver usted mismo y una identidad temporal). El permiso es denegado.
+
+ La visitante, ahora, selecciona "Iniciar sesión" del menú de la barra de navegación, que muestra la página de inicio de sesión. Ella escribe el nombre y contraseña que usted le ha proporcionado: ahora ya puede ver el álbum privado de fotos.
+
+ De forma alternativa, puede compartir un enlace a un fichero protegido, añadiendo un parámetro del tipo "&zat=abc123" a la dirección URL, en el que la cadena "abc123" es el token de acceso o contraseña para el inicio de sesión temporal. No se requiere ninguna negociación posterior: el fichero será mostrado.
+ </dd>
+</dl> \ No newline at end of file
diff --git a/doc/context/es-es/webpages/help.html b/doc/context/es-es/webpages/help.html
new file mode 100644
index 000000000..7cd7f7c11
--- /dev/null
+++ b/doc/context/es-es/webpages/help.html
@@ -0,0 +1,8 @@
+<dl class="dl-horizontal">
+ <dt>General</dt>
+ <dd>Puede crear sitios web modulares, con identidad propia, compuestos de elementos compartibles. </dd>
+ <dt>Páginas</dt>
+ <dd>Esta página enumera sus "páginas", a las que se asignan URLs en las que la gente pueden visitar su sitio. La estructura de las páginas se describe típicamente mediante una plantilla de diseño <b>asociada</b>, y su contenido se construye a partir de una colección de <b>bloques</b>.</dd>
+ <dt><a href='#' onclick='contextualHelpFocus("#website-portation-tools", 1); return false;' title="Pulsar para resaltar el elmento...">Herramientas de portabilidad de sitios web</a></dt>
+ <dd>Las herramientas de portabilidad de sitios web le permiten importar y exportar múltiples elementos de páginas web (páginas, plantillas, bloques). Puede <b>importar</b> tanto de un fichero zip como de una carpeta de ficheros existente en la nube. Puede <b>exportar</b> tanto a un fichero zip que contenga un grupo seleccionado de elementos de páginas web, o exportarlos directamente a una carpeta de ficheros en la nube. <a target="_blank" href="help/webpages">Leer más...</a></dd>
+</dl> \ No newline at end of file
diff --git a/include/acl_selectors.php b/include/acl_selectors.php
index dcf0fe9a2..09c24f82c 100644
--- a/include/acl_selectors.php
+++ b/include/acl_selectors.php
@@ -174,6 +174,16 @@ function populate_acl($defaults = null,$show_jotnets = true, $emptyACL_descripti
$custom = false;
}
+ $r = q("SELECT id, profile_guid, profile_name from profile where is_default = 0 and uid = %d order by profile_name",
+ intval(local_channel())
+ );
+ if($r) {
+ foreach($r as $rv) {
+ $selected = (($single_group && 'vp.' . $rr['hash'] === $allow_gid[0]) ? ' selected = "selected" ' : '');
+ $groups .= '<option id="' . 'vp' . $rv['id'] . '" value="' . 'vp.' . $rv['profile_guid'] . '"' . $selected . '>' . t('Profile','acl') . ' ' . $rv['profile_name'] . '</option>' . "\r\n";
+ }
+ }
+
$r = q("SELECT id, hash, gname FROM groups WHERE deleted = 0 AND uid = %d ORDER BY gname ASC",
intval(local_channel())
);
diff --git a/include/attach.php b/include/attach.php
index dc5bfd308..937d33ea3 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -28,29 +28,31 @@ function z_mime_content_type($filename) {
$mime_types = array(
- 'txt' => 'text/plain',
- 'htm' => 'text/html',
+ 'txt' => 'text/plain',
+ 'htm' => 'text/html',
'html' => 'text/html',
- 'php' => 'text/html',
- 'css' => 'text/css',
- 'js' => 'application/javascript',
+ 'php' => 'text/html',
+ 'css' => 'text/css',
+ 'md' => 'text/markdown',
+ 'bb' => 'text/bbcode',
+ 'js' => 'application/javascript',
'json' => 'application/json',
- 'xml' => 'application/xml',
- 'swf' => 'application/x-shockwave-flash',
- 'flv' => 'video/x-flv',
+ 'xml' => 'application/xml',
+ 'swf' => 'application/x-shockwave-flash',
+ 'flv' => 'video/x-flv',
'epub' => 'application/epub+zip',
// images
- 'png' => 'image/png',
- 'jpe' => 'image/jpeg',
+ 'png' => 'image/png',
+ 'jpe' => 'image/jpeg',
'jpeg' => 'image/jpeg',
- 'jpg' => 'image/jpeg',
- 'gif' => 'image/gif',
- 'bmp' => 'image/bmp',
- 'ico' => 'image/vnd.microsoft.icon',
+ 'jpg' => 'image/jpeg',
+ 'gif' => 'image/gif',
+ 'bmp' => 'image/bmp',
+ 'ico' => 'image/vnd.microsoft.icon',
'tiff' => 'image/tiff',
- 'tif' => 'image/tiff',
- 'svg' => 'image/svg+xml',
+ 'tif' => 'image/tiff',
+ 'svg' => 'image/svg+xml',
'svgz' => 'image/svg+xml',
// archives
@@ -61,27 +63,27 @@ function z_mime_content_type($filename) {
'cab' => 'application/vnd.ms-cab-compressed',
// audio/video
- 'mp3' => 'audio/mpeg',
- 'wav' => 'audio/wav',
- 'qt' => 'video/quicktime',
- 'mov' => 'video/quicktime',
- 'ogg' => 'audio/ogg',
- 'ogv' => 'video/ogg',
- 'ogx' => 'application/ogg',
+ 'mp3' => 'audio/mpeg',
+ 'wav' => 'audio/wav',
+ 'qt' => 'video/quicktime',
+ 'mov' => 'video/quicktime',
+ 'ogg' => 'audio/ogg',
+ 'ogv' => 'video/ogg',
+ 'ogx' => 'application/ogg',
'flac' => 'audio/flac',
'opus' => 'audio/ogg',
'webm' => 'video/webm',
// 'webm' => 'audio/webm',
- 'mp4' => 'video/mp4',
-// 'mp4' => 'audio/mp4',
- 'mkv' => 'video/x-matroska',
+ 'mp4' => 'video/mp4',
+// 'mp4' => 'audio/mp4',
+ 'mkv' => 'video/x-matroska',
// adobe
'pdf' => 'application/pdf',
'psd' => 'image/vnd.adobe.photoshop',
- 'ai' => 'application/postscript',
+ 'ai' => 'application/postscript',
'eps' => 'application/postscript',
- 'ps' => 'application/postscript',
+ 'ps' => 'application/postscript',
// ms office
'doc' => 'application/msword',
diff --git a/include/group.php b/include/group.php
index 38d9d190f..3b208ef95 100644
--- a/include/group.php
+++ b/include/group.php
@@ -227,6 +227,26 @@ function group_get_members_xchan($gid) {
return $ret;
}
+function group_get_profile_members_xchan($uid,$gid) {
+ $ret = [];
+
+ if(intval($gid)) {
+ $r = q("SELECT abook_xchan as xchan from abook left join profile on abook_profile = profile_guid where profile.id = %d and profile.uid = %d",
+ intval($gid),
+ intval($uid)
+ );
+ if($r) {
+ foreach($r as $rr) {
+ $ret[] = $rr['xchan'];
+ }
+ }
+ }
+ return $ret;
+}
+
+
+
+
function mini_group_select($uid,$group = '') {
$grps = array();
@@ -320,20 +340,46 @@ function group_side($every="connections",$each="group",$edit = false, $group_id
return $o;
}
-function expand_groups($a) {
- if(! (is_array($a) && count($a)))
+function expand_groups($g) {
+ if(! (is_array($g) && count($g)))
return array();
- $x = $a;
- stringify_array_elms($x,true);
- $groups = implode(',', $x);
- if($groups)
- $r = q("SELECT xchan FROM group_member WHERE gid IN ( select id from groups where hash in ( $groups ))");
- $ret = array();
+ $ret = [];
+ $x = [];
- if($r)
- foreach($r as $rr)
- $ret[] = $rr['xchan'];
+ // private profile linked virtual groups
+
+ foreach($g as $gv) {
+ if(substr($gv,0,3) === 'vp.') {
+ $profile_hash = substr($gv,3);
+ if($profile_hash) {
+ $r = q("select abook_xchan from abook where abook_profile = '%s'",
+ dbesc($profile_hash)
+ );
+ if($r) {
+ foreach($r as $rv) {
+ $ret[] = $rv['abook_xchan'];
+ }
+ }
+ }
+ }
+ else {
+ $x[] = $gv;
+ }
+ }
+
+ if($x) {
+ stringify_array_elms($x,true);
+ $groups = implode(',', $x);
+ if($groups) {
+ $r = q("SELECT xchan FROM group_member WHERE gid IN ( select id from groups where hash in ( $groups ))");
+ if($r) {
+ foreach($r as $rr) {
+ $ret[] = $rr['xchan'];
+ }
+ }
+ }
+ }
return $ret;
}
diff --git a/include/photos.php b/include/photos.php
index 55cc2d945..c0f7dc8c4 100644
--- a/include/photos.php
+++ b/include/photos.php
@@ -718,10 +718,59 @@ function gps2Num($coordPart) {
return floatval($parts[0]) / floatval($parts[1]);
}
+
+function photo_profile_setperms($channel_id,$resource_id,$profile_id) {
+
+ if(! $profile_id)
+ return;
+
+ $r = q("select profile_guid, is_default from profile where id = %d and uid = %d limit 1",
+ dbesc($profile_id),
+ intval($channel_id)
+ );
+
+ if(! $r)
+ return;
+
+ $is_default = $r[0]['is_default'];
+ $profile_guid = $r[0]['profile_guid'];
+
+ if($is_default) {
+ $r = q("update photo set allow_cid = '', allow_gid = '', deny_cid = '', deny_gid = ''
+ where resource_id = '%s' and uid = %d",
+ dbesc($resource_id),
+ intval($channel_id)
+ );
+ $r = q("update attach set allow_cid = '', allow_gid = '', deny_cid = '', deny_gid = ''
+ where hash = '%s' and uid = %d",
+ dbesc($resource_id),
+ intval($channel_id)
+ );
+ }
+ else {
+ $r = q("update photo set allow_cid = '', allow_gid = '%s', deny_cid = '', deny_gid = ''
+ where resource_id = '%s' and uid = %d",
+ dbesc('<vp.' . $profile_guid . '>'),
+ dbesc($resource_id),
+ intval($channel_id)
+ );
+
+ $r = q("update attach set allow_cid = '', allow_gid = '%s', deny_cid = '', deny_gid = ''
+ where hash = '%s' and uid = %d",
+ dbesc('<vp.' . $profile_guid . '>'),
+ dbesc($resource_id),
+ intval($channel_id)
+ );
+ }
+}
+
function profile_photo_set_profile_perms($uid, $profileid = 0) {
- $allowcid = '';
- if($profileid) {
+ $allowcid = '';
+
+
+ if($profileid) {
+
$r = q("SELECT photo, profile_guid, id, is_default, uid
FROM profile WHERE uid = %d and ( profile.id = %d OR profile.profile_guid = '%s') LIMIT 1",
intval($uid),
diff --git a/include/security.php b/include/security.php
index 57b33251f..b49ceec0d 100644
--- a/include/security.php
+++ b/include/security.php
@@ -553,7 +553,21 @@ function check_form_security_token_ForbiddenOnErr($typename = '', $formname = 'f
// var $contact_id = xchan_hash of connection
function init_groups_visitor($contact_id) {
- $groups = array();
+ $groups = [];
+
+ // private profiles are treated as a virtual group
+
+ $r = q("SELECT abook_profile from abook where abook_xchan = '%s' and abook_profile != '' ",
+ dbesc($contact_id)
+ );
+ if($r) {
+ foreach($r as $rv) {
+ $groups[] = 'vp.' . $rv['abook_profile'];
+ }
+ }
+
+ // physical groups this channel is a member of
+
$r = q("SELECT hash FROM groups left join group_member on groups.id = group_member.gid WHERE xchan = '%s' ",
dbesc($contact_id)
);
diff --git a/include/widgets.php b/include/widgets.php
index 52f8fd655..cb8a6133e 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -663,7 +663,7 @@ function widget_settings_menu($arr) {
if(feature_enabled(local_channel(),'permcats')) {
$tabs[] = array(
- 'label' => t('Permission Categories'),
+ 'label' => t('Permission Groups'),
'url' => z_root() . '/settings/permcats',
'selected' => ((argv(1) === 'permcats') ? 'active' : ''),
);
diff --git a/util/hmessages.po b/util/hmessages.po
index 4fb32349f..f9f817747 100644
--- a/util/hmessages.po
+++ b/util/hmessages.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 2.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-03 00:04-0800\n"
+"POT-Creation-Date: 2017-02-10 00:05-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -88,15 +88,15 @@ msgid "Special - Group Repository"
msgstr ""
#: ../../Zotlabs/Access/PermissionRoles.php:270
-#: ../../Zotlabs/Module/Register.php:213 ../../Zotlabs/Module/Connedit.php:882
+#: ../../Zotlabs/Module/Register.php:213 ../../Zotlabs/Module/Connedit.php:887
#: ../../Zotlabs/Module/New_channel.php:132
-#: ../../Zotlabs/Module/Settings/Channel.php:445
+#: ../../Zotlabs/Module/Settings/Channel.php:447
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1148
#: ../../extend/addon/addon/cdav/cdav.php:277
#: ../../extend/addon/addon/cdav/cdav.php:284 ../../include/selectors.php:49
#: ../../include/selectors.php:66 ../../include/selectors.php:104
-#: ../../include/selectors.php:140 ../../include/connections.php:869
-#: ../../include/connections.php:876 ../../include/permissions.php:949
+#: ../../include/selectors.php:140 ../../include/connections.php:901
+#: ../../include/connections.php:908 ../../include/permissions.php:949
msgid "Other"
msgstr ""
@@ -105,26 +105,6 @@ msgstr ""
msgid "Custom/Expert Mode"
msgstr ""
-#: ../../Zotlabs/Access/PermissionRoles.php:283
-msgctxt "permcat"
-msgid "follower"
-msgstr ""
-
-#: ../../Zotlabs/Access/PermissionRoles.php:288
-msgctxt "permcat"
-msgid "contributor"
-msgstr ""
-
-#: ../../Zotlabs/Access/PermissionRoles.php:292
-msgctxt "permcat"
-msgid "trusted"
-msgstr ""
-
-#: ../../Zotlabs/Access/PermissionRoles.php:297
-msgctxt "permcat"
-msgid "moderator"
-msgstr ""
-
#: ../../Zotlabs/Access/Permissions.php:46
msgid "Can view my channel stream and posts"
msgstr ""
@@ -227,18 +207,17 @@ msgstr ""
#: ../../Zotlabs/Storage/Browser.php:163 ../../Zotlabs/Module/Photos.php:784
#: ../../Zotlabs/Module/Photos.php:1244
-#: ../../Zotlabs/Module/Embedphotos.php:145 ../../Zotlabs/Lib/Apps.php:549
-#: ../../Zotlabs/Lib/Apps.php:627
+#: ../../Zotlabs/Module/Embedphotos.php:145 ../../Zotlabs/Lib/Apps.php:559
+#: ../../Zotlabs/Lib/Apps.php:637
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:745
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:746
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:753
-#: ../../include/conversation.php:1177 ../../include/widgets.php:1706
+#: ../../include/conversation.php:1177 ../../include/widgets.php:1714
msgid "Unknown"
msgstr ""
#: ../../Zotlabs/Storage/Browser.php:224 ../../Zotlabs/Module/Fbrowser.php:85
-#: ../../Zotlabs/Lib/Apps.php:221 ../../include/conversation.php:1843
-#: ../../include/nav.php:96
+#: ../../Zotlabs/Lib/Apps.php:224 ../../include/conversation.php:1843
msgid "Files"
msgstr ""
@@ -251,7 +230,7 @@ msgid "Shared"
msgstr ""
#: ../../Zotlabs/Storage/Browser.php:228 ../../Zotlabs/Storage/Browser.php:321
-#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Connedit.php:885
+#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Connedit.php:890
#: ../../Zotlabs/Module/New_channel.php:147
#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184
#: ../../Zotlabs/Module/Webpages.php:243
@@ -268,13 +247,13 @@ msgstr ""
#: ../../Zotlabs/Module/Embedphotos.php:157
#: ../../extend/addon/addon/cdav/include/widgets.php:132
#: ../../extend/addon/addon/cdav/include/widgets.php:168
-#: ../../include/widgets.php:1719
+#: ../../include/widgets.php:1727
msgid "Upload"
msgstr ""
#: ../../Zotlabs/Storage/Browser.php:233
#: ../../Zotlabs/Module/Admin/Channels.php:159
-#: ../../Zotlabs/Module/Connedit.php:870
+#: ../../Zotlabs/Module/Connedit.php:875
#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Wiki.php:170
#: ../../Zotlabs/Module/Settings/Oauth.php:89
#: ../../Zotlabs/Module/Settings/Oauth.php:115
@@ -282,7 +261,7 @@ msgstr ""
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1136
#: ../../extend/addon/addon/rendezvous/rendezvous.php:172
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:156
-#: ../../include/widgets.php:982
+#: ../../include/widgets.php:990
msgid "Name"
msgstr ""
@@ -313,14 +292,14 @@ msgstr ""
#: ../../Zotlabs/Module/Wiki.php:273
#: ../../Zotlabs/Module/Settings/Oauth.php:149
#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/ThreadItem.php:106
-#: ../../Zotlabs/Lib/Apps.php:351
+#: ../../Zotlabs/Lib/Apps.php:357
#: ../../extend/addon/addon/cdav/include/widgets.php:125
#: ../../extend/addon/addon/cdav/include/widgets.php:161
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:149
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:251
-#: ../../include/menu.php:113 ../../include/page_widgets.php:9
-#: ../../include/page_widgets.php:39 ../../include/channel.php:1039
-#: ../../include/channel.php:1043
+#: ../../include/menu.php:113 ../../include/channel.php:1044
+#: ../../include/channel.php:1048 ../../include/page_widgets.php:9
+#: ../../include/page_widgets.php:39
msgid "Edit"
msgstr ""
@@ -332,12 +311,12 @@ msgstr ""
#: ../../Zotlabs/Module/Admin/Channels.php:149
#: ../../Zotlabs/Module/Editlayout.php:137
#: ../../Zotlabs/Module/Editwebpage.php:170
-#: ../../Zotlabs/Module/Connedit.php:641 ../../Zotlabs/Module/Connedit.php:887
+#: ../../Zotlabs/Module/Connedit.php:634 ../../Zotlabs/Module/Connedit.php:892
#: ../../Zotlabs/Module/Group.php:177 ../../Zotlabs/Module/Blocks.php:162
#: ../../Zotlabs/Module/Webpages.php:246
#: ../../Zotlabs/Module/Settings/Oauth.php:150
#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/ThreadItem.php:126
-#: ../../Zotlabs/Lib/Apps.php:352
+#: ../../Zotlabs/Lib/Apps.php:358
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:864
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1153
#: ../../include/conversation.php:656
@@ -398,7 +377,7 @@ msgstr ""
#: ../../Zotlabs/Module/Editwebpage.php:104
#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Like.php:181
#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Menu.php:78
-#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Connedit.php:403
+#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Connedit.php:396
#: ../../Zotlabs/Module/Filestorage.php:23
#: ../../Zotlabs/Module/Filestorage.php:78
#: ../../Zotlabs/Module/Filestorage.php:93
@@ -407,7 +386,7 @@ msgstr ""
#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76
#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115
#: ../../Zotlabs/Module/Appman.php:81 ../../Zotlabs/Module/Mood.php:116
-#: ../../Zotlabs/Module/Profiles.php:197 ../../Zotlabs/Module/Profiles.php:635
+#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:636
#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Invite.php:17
#: ../../Zotlabs/Module/Invite.php:94 ../../Zotlabs/Module/New_channel.php:77
#: ../../Zotlabs/Module/New_channel.php:104 ../../Zotlabs/Module/Setup.php:212
@@ -479,7 +458,7 @@ msgstr ""
#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12
#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33
#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Webpages.php:33
-#: ../../include/channel.php:940
+#: ../../include/channel.php:945
msgid "Requested profile is not available."
msgstr ""
@@ -634,7 +613,7 @@ msgstr ""
msgid "Membership on this site is by invitation only."
msgstr ""
-#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152
+#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:162
#: ../../boot.php:1713
msgid "Register"
msgstr ""
@@ -716,16 +695,16 @@ msgstr ""
#: ../../Zotlabs/Module/Photos.php:652 ../../Zotlabs/Module/Admin/Site.php:218
#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
-#: ../../Zotlabs/Module/Connedit.php:417 ../../Zotlabs/Module/Connedit.php:755
+#: ../../Zotlabs/Module/Connedit.php:410 ../../Zotlabs/Module/Connedit.php:748
#: ../../Zotlabs/Module/Filestorage.php:160
#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162
#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240
-#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:681
+#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:682
#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Events.php:470
#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63
#: ../../Zotlabs/Module/Wiki.php:178
+#: ../../Zotlabs/Module/Settings/Channel.php:291
#: ../../Zotlabs/Module/Settings/Display.php:103
-#: ../../Zotlabs/Module/Settings/Channel.php:289
#: ../../extend/addon/addon/dwpost/dwpost.php:73
#: ../../extend/addon/addon/dwpost/dwpost.php:85
#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120
@@ -780,16 +759,16 @@ msgstr ""
#: ../../Zotlabs/Module/Photos.php:652 ../../Zotlabs/Module/Admin/Site.php:220
#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157
-#: ../../Zotlabs/Module/Connedit.php:417
+#: ../../Zotlabs/Module/Connedit.php:410
#: ../../Zotlabs/Module/Filestorage.php:160
#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162
#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240
-#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:681
+#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:682
#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Events.php:470
#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63
#: ../../Zotlabs/Module/Wiki.php:178
+#: ../../Zotlabs/Module/Settings/Channel.php:291
#: ../../Zotlabs/Module/Settings/Display.php:103
-#: ../../Zotlabs/Module/Settings/Channel.php:289
#: ../../extend/addon/addon/dwpost/dwpost.php:73
#: ../../extend/addon/addon/dwpost/dwpost.php:85
#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120
@@ -851,7 +830,7 @@ msgid "Description (optional):"
msgstr ""
#: ../../Zotlabs/Module/Photos.php:657 ../../Zotlabs/Module/Photos.php:1042
-#: ../../Zotlabs/Module/Connedit.php:652
+#: ../../Zotlabs/Module/Connedit.php:645
#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313
#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Chat.php:234
#: ../../include/acl_selectors.php:208
@@ -871,12 +850,12 @@ msgstr ""
#: ../../Zotlabs/Module/Admin/Channels.php:147
#: ../../Zotlabs/Module/Admin/Site.php:260
#: ../../Zotlabs/Module/Admin/Plugins.php:433
-#: ../../Zotlabs/Module/Locs.php:121 ../../Zotlabs/Module/Connedit.php:850
+#: ../../Zotlabs/Module/Locs.php:121 ../../Zotlabs/Module/Connedit.php:855
#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Cal.php:342
#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Import_items.php:122
-#: ../../Zotlabs/Module/Import.php:557 ../../Zotlabs/Module/Mitem.php:243
+#: ../../Zotlabs/Module/Import.php:507 ../../Zotlabs/Module/Mitem.php:243
#: ../../Zotlabs/Module/Appman.php:133 ../../Zotlabs/Module/Mood.php:139
-#: ../../Zotlabs/Module/Profiles.php:721 ../../Zotlabs/Module/Invite.php:149
+#: ../../Zotlabs/Module/Profiles.php:722 ../../Zotlabs/Module/Invite.php:149
#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:357
#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107
#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Events.php:493
@@ -885,16 +864,17 @@ msgstr ""
#: ../../Zotlabs/Module/Settings/Features.php:47
#: ../../Zotlabs/Module/Settings/Oauth.php:87
#: ../../Zotlabs/Module/Settings/Account.php:118
-#: ../../Zotlabs/Module/Settings/Display.php:196
-#: ../../Zotlabs/Module/Settings/Tokens.php:167
+#: ../../Zotlabs/Module/Settings/Tokens.php:168
#: ../../Zotlabs/Module/Settings/Featured.php:50
-#: ../../Zotlabs/Module/Settings/Channel.php:458
+#: ../../Zotlabs/Module/Settings/Channel.php:460
+#: ../../Zotlabs/Module/Settings/Display.php:196
+#: ../../Zotlabs/Module/Settings/Permcats.php:112
#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370
#: ../../Zotlabs/Module/Mail.php:413 ../../Zotlabs/Module/Chat.php:196
#: ../../Zotlabs/Module/Chat.php:241 ../../Zotlabs/Module/Xchan.php:15
#: ../../Zotlabs/Lib/ThreadItem.php:731
#: ../../extend/addon/addon/chords/Mod_Chords.php:60
-#: ../../extend/addon/addon/diaspora/diaspora.php:716
+#: ../../extend/addon/addon/diaspora/diaspora.php:714
#: ../../extend/addon/addon/dwpost/dwpost.php:89
#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:124
#: ../../extend/addon/addon/friendica/friendica.php:128
@@ -939,7 +919,7 @@ msgstr ""
#: ../../extend/addon/addon/mailtest/mailtest.php:100
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:153
#: ../../extend/addon/addon/gnusoc/gnusoc.php:133
-#: ../../include/widgets.php:807 ../../include/js_strings.php:22
+#: ../../include/widgets.php:815 ../../include/js_strings.php:22
#: ../../view/theme/redbasic/php/config.php:106
msgid "Submit"
msgstr ""
@@ -961,12 +941,12 @@ msgid "Show Oldest First"
msgstr ""
#: ../../Zotlabs/Module/Photos.php:778 ../../Zotlabs/Module/Photos.php:1335
-#: ../../Zotlabs/Module/Embedphotos.php:139 ../../include/widgets.php:1700
+#: ../../Zotlabs/Module/Embedphotos.php:139 ../../include/widgets.php:1708
msgid "View Photo"
msgstr ""
#: ../../Zotlabs/Module/Photos.php:809
-#: ../../Zotlabs/Module/Embedphotos.php:155 ../../include/widgets.php:1717
+#: ../../Zotlabs/Module/Embedphotos.php:155 ../../include/widgets.php:1725
msgid "Edit Album"
msgstr ""
@@ -1139,7 +1119,7 @@ msgstr ""
#: ../../Zotlabs/Module/Photos.php:1131 ../../Zotlabs/Lib/ThreadItem.php:190
#: ../../include/taxonomy.php:403 ../../include/conversation.php:1952
-#: ../../include/channel.php:1268
+#: ../../include/channel.php:1273
msgctxt "noun"
msgid "Like"
msgid_plural "Likes"
@@ -1487,7 +1467,7 @@ msgstr ""
#: ../../Zotlabs/Module/Connections.php:92
#: ../../Zotlabs/Module/Connections.php:107
-#: ../../Zotlabs/Module/Connedit.php:689 ../../include/widgets.php:544
+#: ../../Zotlabs/Module/Connedit.php:682 ../../include/widgets.php:544
msgid "All"
msgstr ""
@@ -1575,7 +1555,7 @@ msgid "Ignore connection"
msgstr ""
#: ../../Zotlabs/Module/Connections.php:287
-#: ../../Zotlabs/Module/Connedit.php:617
+#: ../../Zotlabs/Module/Connedit.php:610
msgid "Ignore"
msgstr ""
@@ -1583,15 +1563,15 @@ msgstr ""
msgid "Recent activity"
msgstr ""
-#: ../../Zotlabs/Module/Connections.php:312 ../../Zotlabs/Lib/Apps.php:213
-#: ../../include/text.php:932 ../../include/nav.php:191
+#: ../../Zotlabs/Module/Connections.php:312 ../../Zotlabs/Lib/Apps.php:216
+#: ../../include/text.php:932 ../../include/nav.php:203
msgid "Connections"
msgstr ""
#: ../../Zotlabs/Module/Connections.php:316 ../../Zotlabs/Module/Search.php:44
-#: ../../Zotlabs/Lib/Apps.php:234 ../../include/acl_selectors.php:203
+#: ../../Zotlabs/Lib/Apps.php:237 ../../include/acl_selectors.php:203
#: ../../include/widgets.php:316 ../../include/text.php:1002
-#: ../../include/text.php:1014 ../../include/nav.php:170
+#: ../../include/text.php:1014 ../../include/nav.php:180
msgid "Search"
msgstr ""
@@ -1662,7 +1642,7 @@ msgstr ""
msgid "%1$s updated their %2$s"
msgstr ""
-#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1759
+#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1764
msgid "cover photo"
msgstr ""
@@ -1689,7 +1669,7 @@ msgstr ""
#: ../../Zotlabs/Module/Cover_photo.php:361
#: ../../Zotlabs/Module/Profile_photo.php:416
-#: ../../Zotlabs/Module/Settings/Channel.php:399
+#: ../../Zotlabs/Module/Settings/Channel.php:401
msgid "or"
msgstr ""
@@ -1743,8 +1723,8 @@ msgstr ""
msgid "Log settings updated."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1610
-#: ../../include/widgets.php:1620
+#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1618
+#: ../../include/widgets.php:1628
msgid "Logs"
msgstr ""
@@ -1817,7 +1797,7 @@ msgstr ""
msgid "Edit Profile Field"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1591
+#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1599
msgid "Profile Fields"
msgstr ""
@@ -1869,7 +1849,7 @@ msgid ""
"embedded content from that site is explicitly blocked."
msgstr ""
-#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1586
+#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1594
msgid "Security"
msgstr ""
@@ -1979,7 +1959,7 @@ msgid "Screenshot"
msgstr ""
#: ../../Zotlabs/Module/Admin/Themes.php:121
-#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1589
+#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1597
msgid "Themes"
msgstr ""
@@ -1989,8 +1969,8 @@ msgid "Toggle"
msgstr ""
#: ../../Zotlabs/Module/Admin/Themes.php:123
-#: ../../Zotlabs/Module/Admin/Plugins.php:339 ../../Zotlabs/Lib/Apps.php:220
-#: ../../include/widgets.php:691 ../../include/nav.php:213
+#: ../../Zotlabs/Module/Admin/Plugins.php:339 ../../Zotlabs/Lib/Apps.php:223
+#: ../../include/widgets.php:699 ../../include/nav.php:225
msgid "Settings"
msgstr ""
@@ -2083,7 +2063,7 @@ msgid "Account '%s' unblocked"
msgstr ""
#: ../../Zotlabs/Module/Admin/Accounts.php:165
-#: ../../Zotlabs/Module/Admin/Accounts.php:178 ../../include/widgets.php:1584
+#: ../../Zotlabs/Module/Admin/Accounts.php:178 ../../include/widgets.php:1592
msgid "Accounts"
msgstr ""
@@ -2102,7 +2082,7 @@ msgstr ""
#: ../../Zotlabs/Module/Admin/Accounts.php:169
#: ../../Zotlabs/Module/Admin/Accounts.php:181
-#: ../../Zotlabs/Module/Connedit.php:874
+#: ../../Zotlabs/Module/Connedit.php:879
#: ../../extend/addon/addon/redred/redred.php:107
#: ../../extend/addon/addon/rtof/rtof.php:93
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1140
@@ -2121,12 +2101,12 @@ msgid "Deny"
msgstr ""
#: ../../Zotlabs/Module/Admin/Accounts.php:174
-#: ../../Zotlabs/Module/Connedit.php:609
+#: ../../Zotlabs/Module/Connedit.php:602
msgid "Block"
msgstr ""
#: ../../Zotlabs/Module/Admin/Accounts.php:175
-#: ../../Zotlabs/Module/Connedit.php:609
+#: ../../Zotlabs/Module/Connedit.php:602
msgid "Unblock"
msgstr ""
@@ -2216,7 +2196,7 @@ msgstr ""
msgid "Channel '%s' code disallowed"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Channels.php:146 ../../include/widgets.php:1585
+#: ../../Zotlabs/Module/Admin/Channels.php:146 ../../include/widgets.php:1593
msgid "Channels"
msgstr ""
@@ -2246,8 +2226,8 @@ msgid "UID"
msgstr ""
#: ../../Zotlabs/Module/Admin/Channels.php:160
-#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Connedit.php:877
-#: ../../Zotlabs/Module/Profiles.php:502
+#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Connedit.php:882
+#: ../../Zotlabs/Module/Profiles.php:503
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1143
msgid "Address"
msgstr ""
@@ -2381,7 +2361,7 @@ msgstr ""
msgid "Wizard - I probably know more than you do"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Site.php:259 ../../include/widgets.php:1583
+#: ../../Zotlabs/Module/Admin/Site.php:259 ../../include/widgets.php:1591
msgid "Site"
msgstr ""
@@ -2685,7 +2665,7 @@ msgid "Plugin %s enabled."
msgstr ""
#: ../../Zotlabs/Module/Admin/Plugins.php:337
-#: ../../Zotlabs/Module/Admin/Plugins.php:432 ../../include/widgets.php:1588
+#: ../../Zotlabs/Module/Admin/Plugins.php:432 ../../include/widgets.php:1596
msgid "Plugins"
msgstr ""
@@ -2738,12 +2718,12 @@ msgstr ""
msgid "Install new repo"
msgstr ""
-#: ../../Zotlabs/Module/Admin/Plugins.php:417 ../../Zotlabs/Lib/Apps.php:341
+#: ../../Zotlabs/Module/Admin/Plugins.php:417 ../../Zotlabs/Lib/Apps.php:348
msgid "Install"
msgstr ""
#: ../../Zotlabs/Module/Admin/Plugins.php:418
-#: ../../Zotlabs/Module/Connedit.php:888 ../../Zotlabs/Module/Fbrowser.php:66
+#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Fbrowser.php:66
#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Wiki.php:263
#: ../../Zotlabs/Module/Wiki.php:288
#: ../../Zotlabs/Module/Settings/Oauth.php:88
@@ -2772,9 +2752,9 @@ msgid "Install a New Plugin Repository"
msgstr ""
#: ../../Zotlabs/Module/Admin/Plugins.php:448
-#: ../../Zotlabs/Module/Connedit.php:886
+#: ../../Zotlabs/Module/Connedit.php:891
#: ../../Zotlabs/Module/Settings/Oauth.php:42
-#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:341
+#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:348
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1152
msgid "Update"
msgstr ""
@@ -2880,14 +2860,14 @@ msgstr ""
#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
#: ../../Zotlabs/Module/Tagger.php:47
-#: ../../extend/addon/addon/diaspora/inbound.php:1799
+#: ../../extend/addon/addon/diaspora/inbound.php:1781
#: ../../extend/addon/addon/redphotos/redphotohelper.php:74
#: ../../include/conversation.php:120 ../../include/text.php:1956
msgid "photo"
msgstr ""
#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
-#: ../../extend/addon/addon/diaspora/inbound.php:1799
+#: ../../extend/addon/addon/diaspora/inbound.php:1781
#: ../../include/conversation.php:148 ../../include/text.php:1962
msgid "status"
msgstr ""
@@ -2899,7 +2879,7 @@ msgid "event"
msgstr ""
#: ../../Zotlabs/Module/Like.php:419
-#: ../../extend/addon/addon/diaspora/inbound.php:1828
+#: ../../extend/addon/addon/diaspora/inbound.php:1810
#: ../../include/conversation.php:164
#, php-format
msgid "%1$s likes %2$s's %3$s"
@@ -3124,7 +3104,7 @@ msgid "Manage Channel Locations"
msgstr ""
#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Pubsites.php:51
-#: ../../Zotlabs/Module/Profiles.php:509 ../../Zotlabs/Module/Profiles.php:732
+#: ../../Zotlabs/Module/Profiles.php:510 ../../Zotlabs/Module/Profiles.php:733
#: ../../Zotlabs/Module/Events.php:475
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:839
#: ../../include/js_strings.php:25
@@ -3153,7 +3133,7 @@ msgstr ""
msgid "Use this form to drop the location if the hub is no longer operating."
msgstr ""
-#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1407
+#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1415
msgid "Public Hubs"
msgstr ""
@@ -3211,303 +3191,315 @@ msgstr ""
msgid "Could not locate selected profile."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:264
+#: ../../Zotlabs/Module/Connedit.php:257
msgid "Connection updated."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:266
+#: ../../Zotlabs/Module/Connedit.php:259
msgid "Failed to update connection record."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:316
+#: ../../Zotlabs/Module/Connedit.php:309
msgid "is now connected to"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:449
+#: ../../Zotlabs/Module/Connedit.php:442
msgid "Could not access address book record."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:469
+#: ../../Zotlabs/Module/Connedit.php:462
msgid "Refresh failed - channel is currently unavailable."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:484 ../../Zotlabs/Module/Connedit.php:493
-#: ../../Zotlabs/Module/Connedit.php:502 ../../Zotlabs/Module/Connedit.php:511
-#: ../../Zotlabs/Module/Connedit.php:524
+#: ../../Zotlabs/Module/Connedit.php:477 ../../Zotlabs/Module/Connedit.php:486
+#: ../../Zotlabs/Module/Connedit.php:495 ../../Zotlabs/Module/Connedit.php:504
+#: ../../Zotlabs/Module/Connedit.php:517
msgid "Unable to set address book parameters."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:548
+#: ../../Zotlabs/Module/Connedit.php:541
msgid "Connection has been removed."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:588 ../../Zotlabs/Lib/Apps.php:225
+#: ../../Zotlabs/Module/Connedit.php:581 ../../Zotlabs/Lib/Apps.php:228
#: ../../extend/addon/addon/openclipatar/openclipatar.php:57
#: ../../include/conversation.php:936 ../../include/conversation.php:1049
-#: ../../include/nav.php:89
+#: ../../include/nav.php:103
msgid "View Profile"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:591
+#: ../../Zotlabs/Module/Connedit.php:584
#, php-format
msgid "View %s's profile"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:595
+#: ../../Zotlabs/Module/Connedit.php:588
msgid "Refresh Permissions"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:598
+#: ../../Zotlabs/Module/Connedit.php:591
msgid "Fetch updated permissions"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:602
+#: ../../Zotlabs/Module/Connedit.php:595
msgid "Recent Activity"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:605
+#: ../../Zotlabs/Module/Connedit.php:598
msgid "View recent posts and comments"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:612
+#: ../../Zotlabs/Module/Connedit.php:605
msgid "Block (or Unblock) all communications with this connection"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:613
+#: ../../Zotlabs/Module/Connedit.php:606
msgid "This connection is blocked!"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:617
+#: ../../Zotlabs/Module/Connedit.php:610
msgid "Unignore"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:620
+#: ../../Zotlabs/Module/Connedit.php:613
msgid "Ignore (or Unignore) all inbound communications from this connection"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:621
+#: ../../Zotlabs/Module/Connedit.php:614
msgid "This connection is ignored!"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:625
+#: ../../Zotlabs/Module/Connedit.php:618
msgid "Unarchive"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:625
+#: ../../Zotlabs/Module/Connedit.php:618
msgid "Archive"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:628
+#: ../../Zotlabs/Module/Connedit.php:621
msgid ""
"Archive (or Unarchive) this connection - mark channel dead but keep content"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:629
+#: ../../Zotlabs/Module/Connedit.php:622
msgid "This connection is archived!"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:633
+#: ../../Zotlabs/Module/Connedit.php:626
msgid "Unhide"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:633
+#: ../../Zotlabs/Module/Connedit.php:626
msgid "Hide"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:636
+#: ../../Zotlabs/Module/Connedit.php:629
msgid "Hide or Unhide this connection from your other connections"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:637
+#: ../../Zotlabs/Module/Connedit.php:630
msgid "This connection is hidden!"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:644
+#: ../../Zotlabs/Module/Connedit.php:637
msgid "Delete this connection"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:655
+#: ../../Zotlabs/Module/Connedit.php:648
msgid "Open Individual Permissions section by default"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:678
+#: ../../Zotlabs/Module/Connedit.php:671
msgid "Affinity"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:681
+#: ../../Zotlabs/Module/Connedit.php:674
msgid "Open Set Affinity section by default"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:685 ../../include/widgets.php:540
+#: ../../Zotlabs/Module/Connedit.php:678 ../../include/widgets.php:540
msgid "Me"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:686 ../../include/widgets.php:541
+#: ../../Zotlabs/Module/Connedit.php:679 ../../include/widgets.php:541
msgid "Family"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:687
+#: ../../Zotlabs/Module/Connedit.php:680
#: ../../Zotlabs/Module/Settings/Channel.php:61
#: ../../Zotlabs/Module/Settings/Channel.php:65
#: ../../Zotlabs/Module/Settings/Channel.php:66
#: ../../Zotlabs/Module/Settings/Channel.php:69
#: ../../Zotlabs/Module/Settings/Channel.php:80
#: ../../include/selectors.php:123 ../../include/widgets.php:542
-#: ../../include/channel.php:405 ../../include/channel.php:406
-#: ../../include/channel.php:413
+#: ../../include/channel.php:408 ../../include/channel.php:409
+#: ../../include/channel.php:416
msgid "Friends"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:688 ../../include/widgets.php:543
+#: ../../Zotlabs/Module/Connedit.php:681 ../../include/widgets.php:543
msgid "Acquaintances"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:715
+#: ../../Zotlabs/Module/Connedit.php:708
msgid "Filter"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:718
+#: ../../Zotlabs/Module/Connedit.php:711
msgid "Open Custom Filter section by default"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:755
+#: ../../Zotlabs/Module/Connedit.php:748
msgid "Approve this connection"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:755
+#: ../../Zotlabs/Module/Connedit.php:748
msgid "Accept connection to allow communication"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:760
+#: ../../Zotlabs/Module/Connedit.php:753
msgid "Set Affinity"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:763
+#: ../../Zotlabs/Module/Connedit.php:756
msgid "Set Profile"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:766
+#: ../../Zotlabs/Module/Connedit.php:759
msgid "Set Affinity & Profile"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:815
+#: ../../Zotlabs/Module/Connedit.php:817
msgid "none"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:818 ../../include/widgets.php:667
+#: ../../Zotlabs/Module/Connedit.php:820 ../../include/widgets.php:675
msgid "Connection Default Permissions"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:818 ../../include/items.php:3932
+#: ../../Zotlabs/Module/Connedit.php:820 ../../include/items.php:3932
#, php-format
msgid "Connection: %s"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:819
+#: ../../Zotlabs/Module/Connedit.php:821
msgid "Apply these permissions automatically"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:819
+#: ../../Zotlabs/Module/Connedit.php:821
msgid "Connection requests will be approved without your interaction"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:824
+#: ../../Zotlabs/Module/Connedit.php:822
+msgid "Permission role"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:823
+msgid "Add permission role"
+msgstr ""
+
+#: ../../Zotlabs/Module/Connedit.php:829
msgid "This connection's primary address is"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:825
+#: ../../Zotlabs/Module/Connedit.php:830
msgid "Available locations:"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:829
+#: ../../Zotlabs/Module/Connedit.php:834
msgid ""
"The permissions indicated on this page will be applied to all new "
"connections."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:830
+#: ../../Zotlabs/Module/Connedit.php:835
msgid "Connection Tools"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:832
+#: ../../Zotlabs/Module/Connedit.php:837
msgid "Slide to adjust your degree of friendship"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:833 ../../Zotlabs/Module/Rate.php:155
+#: ../../Zotlabs/Module/Connedit.php:838 ../../Zotlabs/Module/Rate.php:155
#: ../../include/js_strings.php:20
msgid "Rating"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:834
+#: ../../Zotlabs/Module/Connedit.php:839
msgid "Slide to adjust your rating"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:835 ../../Zotlabs/Module/Connedit.php:840
+#: ../../Zotlabs/Module/Connedit.php:840 ../../Zotlabs/Module/Connedit.php:845
msgid "Optionally explain your rating"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:837
+#: ../../Zotlabs/Module/Connedit.php:842
msgid "Custom Filter"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:838
+#: ../../Zotlabs/Module/Connedit.php:843
msgid "Only import posts with this text"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:838 ../../Zotlabs/Module/Connedit.php:839
+#: ../../Zotlabs/Module/Connedit.php:843 ../../Zotlabs/Module/Connedit.php:844
msgid ""
"words one per line or #tags or /patterns/ or lang=xx, leave blank to import "
"all posts"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:839
+#: ../../Zotlabs/Module/Connedit.php:844
msgid "Do not import posts with this text"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:841
+#: ../../Zotlabs/Module/Connedit.php:846
msgid "This information is public!"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:846
+#: ../../Zotlabs/Module/Connedit.php:851
msgid "Connection Pending Approval"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:849
+#: ../../Zotlabs/Module/Connedit.php:854
#: ../../Zotlabs/Module/Settings/Tokens.php:163
+#: ../../Zotlabs/Module/Settings/Permcats.php:107
msgid "inherited"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:851
+#: ../../Zotlabs/Module/Connedit.php:856
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:853
+#: ../../Zotlabs/Module/Connedit.php:858
#: ../../Zotlabs/Module/Settings/Tokens.php:160
msgid "Their Settings"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:854
+#: ../../Zotlabs/Module/Connedit.php:859
#: ../../Zotlabs/Module/Settings/Tokens.php:161
+#: ../../Zotlabs/Module/Settings/Permcats.php:105
msgid "My Settings"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:856
-#: ../../Zotlabs/Module/Settings/Tokens.php:165
+#: ../../Zotlabs/Module/Connedit.php:861
+#: ../../Zotlabs/Module/Settings/Tokens.php:166
+#: ../../Zotlabs/Module/Settings/Permcats.php:110
msgid "Individual Permissions"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:857
-#: ../../Zotlabs/Module/Settings/Tokens.php:166
+#: ../../Zotlabs/Module/Connedit.php:862
+#: ../../Zotlabs/Module/Settings/Tokens.php:167
+#: ../../Zotlabs/Module/Settings/Permcats.php:111
msgid ""
"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 <strong>not</strong> change those settings here."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:858
+#: ../../Zotlabs/Module/Connedit.php:863
msgid ""
"Some permissions may be inherited from your channel's <a href=\"settings"
"\"><strong>privacy settings</strong></a>, which have higher priority than "
@@ -3515,108 +3507,108 @@ msgid ""
"any impact unless the inherited setting changes."
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:859
+#: ../../Zotlabs/Module/Connedit.php:864
msgid "Last update:"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:868
+#: ../../Zotlabs/Module/Connedit.php:873
msgid "Details"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:871
+#: ../../Zotlabs/Module/Connedit.php:876
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1137
msgid "Organisation"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:872
+#: ../../Zotlabs/Module/Connedit.php:877
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1138
#: ../../include/page_widgets.php:46
msgid "Title"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:873
+#: ../../Zotlabs/Module/Connedit.php:878
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1139
msgid "Phone"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:875
+#: ../../Zotlabs/Module/Connedit.php:880
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1141
msgid "Instant messenger"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:876
+#: ../../Zotlabs/Module/Connedit.php:881
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1142
msgid "Website"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:878
+#: ../../Zotlabs/Module/Connedit.php:883
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1144
msgid "Note"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:879
+#: ../../Zotlabs/Module/Connedit.php:884
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1145
#: ../../extend/addon/addon/cdav/cdav.php:270
-#: ../../include/connections.php:862
+#: ../../include/connections.php:894
msgid "Mobile"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:880
+#: ../../Zotlabs/Module/Connedit.php:885
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1146
#: ../../extend/addon/addon/cdav/cdav.php:271
-#: ../../include/connections.php:863 ../../include/nav.php:88
+#: ../../include/connections.php:895
msgid "Home"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:881
+#: ../../Zotlabs/Module/Connedit.php:886
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1147
#: ../../extend/addon/addon/cdav/cdav.php:274
-#: ../../include/connections.php:866
+#: ../../include/connections.php:898
msgid "Work"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:883
+#: ../../Zotlabs/Module/Connedit.php:888
#: ../../extend/addon/addon/jappixmini/jappixmini.php:368
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1149
msgid "Add Contact"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:884
+#: ../../Zotlabs/Module/Connedit.php:889
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1150
msgid "Add Field"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:889
+#: ../../Zotlabs/Module/Connedit.php:894
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1155
msgid "P.O. Box"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:890
+#: ../../Zotlabs/Module/Connedit.php:895
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1156
msgid "Additional"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:891
+#: ../../Zotlabs/Module/Connedit.php:896
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1157
msgid "Street"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:892
+#: ../../Zotlabs/Module/Connedit.php:897
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1158
msgid "Locality"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:893
+#: ../../Zotlabs/Module/Connedit.php:898
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1159
msgid "Region"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:894
+#: ../../Zotlabs/Module/Connedit.php:899
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1160
msgid "ZIP Code"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:895 ../../Zotlabs/Module/Profiles.php:755
+#: ../../Zotlabs/Module/Connedit.php:900 ../../Zotlabs/Module/Profiles.php:756
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1161
msgid "Country"
msgstr ""
@@ -3675,11 +3667,16 @@ msgstr ""
msgid "Notify your contacts about this file"
msgstr ""
-#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:226
-#: ../../include/conversation.php:1836 ../../include/nav.php:95
+#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:229
+#: ../../include/conversation.php:1836
msgid "Photos"
msgstr ""
+#: ../../Zotlabs/Module/Apps.php:45 ../../include/widgets.php:102
+#: ../../include/nav.php:178
+msgid "Apps"
+msgstr ""
+
#: ../../Zotlabs/Module/Cal.php:69
msgid "Permissions denied."
msgstr ""
@@ -3702,7 +3699,7 @@ msgid "Create Event"
msgstr ""
#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Events.php:691
-#: ../../include/channel.php:1365
+#: ../../include/channel.php:1370
msgid "Export"
msgstr ""
@@ -3855,22 +3852,21 @@ msgstr ""
msgid "%s element installation failed"
msgstr ""
-#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71
+#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:57
msgid "Nothing to import."
msgstr ""
-#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:83
-#: ../../Zotlabs/Module/Import.php:98
+#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:69
+#: ../../Zotlabs/Module/Import.php:84
msgid "Unable to download data from old server"
msgstr ""
-#: ../../Zotlabs/Module/Import_items.php:72
-#: ../../Zotlabs/Module/Import.php:105
+#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:91
msgid "Imported file is empty."
msgstr ""
#: ../../Zotlabs/Module/Import_items.php:88
-#: ../../Zotlabs/Module/Import.php:127
+#: ../../Zotlabs/Module/Import.php:111
#, php-format
msgid "Warning: Database versions differ by %1$d updates."
msgstr ""
@@ -3888,7 +3884,7 @@ msgid "Use this form to import existing posts and content from an export file."
msgstr ""
#: ../../Zotlabs/Module/Import_items.php:121
-#: ../../Zotlabs/Module/Import.php:543
+#: ../../Zotlabs/Module/Import.php:495
msgid "File to Upload"
msgstr ""
@@ -3902,14 +3898,14 @@ msgstr ""
msgid "Create a new channel"
msgstr ""
-#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:812
+#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:813
#: ../../Zotlabs/Module/Wiki.php:166 ../../Zotlabs/Module/Chat.php:255
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:152
msgid "Create New"
msgstr ""
-#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:218
-#: ../../include/nav.php:211
+#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:221
+#: ../../include/nav.php:223
msgid "Channel Manager"
msgstr ""
@@ -3943,56 +3939,52 @@ msgstr ""
msgid "Delegated Channel"
msgstr ""
-#: ../../Zotlabs/Module/Import.php:33
+#: ../../Zotlabs/Module/Import.php:134
#, php-format
msgid "Your service plan only allows %d channels."
msgstr ""
-#: ../../Zotlabs/Module/Import.php:157 ../../include/import.php:100
-msgid "Cloned channel not found. Import failed."
-msgstr ""
-
-#: ../../Zotlabs/Module/Import.php:167
+#: ../../Zotlabs/Module/Import.php:149
msgid "No channel. Import failed."
msgstr ""
-#: ../../Zotlabs/Module/Import.php:514
+#: ../../Zotlabs/Module/Import.php:467
#: ../../extend/addon/addon/diaspora/import_diaspora.php:142
msgid "Import completed."
msgstr ""
-#: ../../Zotlabs/Module/Import.php:536
+#: ../../Zotlabs/Module/Import.php:488
msgid "You must be logged in to use this feature."
msgstr ""
-#: ../../Zotlabs/Module/Import.php:541
+#: ../../Zotlabs/Module/Import.php:493
msgid "Import Channel"
msgstr ""
-#: ../../Zotlabs/Module/Import.php:542
+#: ../../Zotlabs/Module/Import.php:494
msgid ""
"Use this form to import an existing channel from a different server/hub. You "
"may retrieve the channel identity from the old server/hub via the network or "
"provide an export file."
msgstr ""
-#: ../../Zotlabs/Module/Import.php:544
+#: ../../Zotlabs/Module/Import.php:496
msgid "Or provide the old server/hub details"
msgstr ""
-#: ../../Zotlabs/Module/Import.php:545
+#: ../../Zotlabs/Module/Import.php:497
msgid "Your old identity address (xyz@example.com)"
msgstr ""
-#: ../../Zotlabs/Module/Import.php:546
+#: ../../Zotlabs/Module/Import.php:498
msgid "Your old login email address"
msgstr ""
-#: ../../Zotlabs/Module/Import.php:547
+#: ../../Zotlabs/Module/Import.php:499
msgid "Your old login password"
msgstr ""
-#: ../../Zotlabs/Module/Import.php:548
+#: ../../Zotlabs/Module/Import.php:500
msgid ""
"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 "
@@ -4000,20 +3992,19 @@ msgid ""
"location for files, photos, and media."
msgstr ""
-#: ../../Zotlabs/Module/Import.php:549
+#: ../../Zotlabs/Module/Import.php:501
msgid "Make this hub my primary location"
msgstr ""
-#: ../../Zotlabs/Module/Import.php:551
+#: ../../Zotlabs/Module/Import.php:502
msgid "Move this channel (disable all previous locations)"
msgstr ""
-#: ../../Zotlabs/Module/Import.php:553
-msgid ""
-"Import existing posts if possible (experimental - limited by available memory"
+#: ../../Zotlabs/Module/Import.php:503
+msgid "Import a few months of posts if possible (limited by available memory"
msgstr ""
-#: ../../Zotlabs/Module/Import.php:554
+#: ../../Zotlabs/Module/Import.php:504
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
@@ -4048,7 +4039,7 @@ msgid "Menu Item Permissions"
msgstr ""
#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231
-#: ../../Zotlabs/Module/Settings/Channel.php:492
+#: ../../Zotlabs/Module/Settings/Channel.php:494
msgid "(click to open/close)"
msgstr ""
@@ -4173,7 +4164,7 @@ msgid "Name of app"
msgstr ""
#: ../../Zotlabs/Module/Appman.php:121 ../../Zotlabs/Module/Appman.php:122
-#: ../../Zotlabs/Module/Profiles.php:743 ../../Zotlabs/Module/Profiles.php:747
+#: ../../Zotlabs/Module/Profiles.php:744 ../../Zotlabs/Module/Profiles.php:748
#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465
#: ../../include/datetime.php:259
msgid "Required"
@@ -4240,7 +4231,7 @@ msgctxt "mood"
msgid "%1$s is %2$s"
msgstr ""
-#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:231
+#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:234
msgid "Mood"
msgstr ""
@@ -4258,8 +4249,8 @@ msgstr ""
msgid "System Notifications"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:183
-#: ../../Zotlabs/Module/Profiles.php:240 ../../Zotlabs/Module/Profiles.php:659
+#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184
+#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:660
#: ../../extend/addon/addon/friendica/dfrn_confirm.php:62
msgid "Profile not found."
msgstr ""
@@ -4268,268 +4259,268 @@ msgstr ""
msgid "Profile deleted."
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104
+#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105
msgid "Profile-"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:126
+#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127
msgid "New profile created."
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:110
+#: ../../Zotlabs/Module/Profiles.php:111
msgid "Profile unavailable to clone."
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:145
+#: ../../Zotlabs/Module/Profiles.php:146
msgid "Profile unavailable to export."
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:251
+#: ../../Zotlabs/Module/Profiles.php:252
msgid "Profile Name is required."
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:459
+#: ../../Zotlabs/Module/Profiles.php:460
msgid "Marital Status"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:463
+#: ../../Zotlabs/Module/Profiles.php:464
msgid "Romantic Partner"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:770
+#: ../../Zotlabs/Module/Profiles.php:468 ../../Zotlabs/Module/Profiles.php:771
msgid "Likes"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:771
+#: ../../Zotlabs/Module/Profiles.php:472 ../../Zotlabs/Module/Profiles.php:772
msgid "Dislikes"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:778
+#: ../../Zotlabs/Module/Profiles.php:476 ../../Zotlabs/Module/Profiles.php:779
msgid "Work/Employment"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:478
+#: ../../Zotlabs/Module/Profiles.php:479
msgid "Religion"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:482
+#: ../../Zotlabs/Module/Profiles.php:483
msgid "Political Views"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:486
+#: ../../Zotlabs/Module/Profiles.php:487
#: ../../extend/addon/addon/openid/MysqlProvider.php:74
msgid "Gender"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:490
+#: ../../Zotlabs/Module/Profiles.php:491
msgid "Sexual Preference"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:494
+#: ../../Zotlabs/Module/Profiles.php:495
msgid "Homepage"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:498
+#: ../../Zotlabs/Module/Profiles.php:499
msgid "Interests"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:594
+#: ../../Zotlabs/Module/Profiles.php:595
msgid "Profile updated."
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:678
+#: ../../Zotlabs/Module/Profiles.php:679
msgid "Hide your connections list from viewers of this profile"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:720
+#: ../../Zotlabs/Module/Profiles.php:721
msgid "Edit Profile Details"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:722
+#: ../../Zotlabs/Module/Profiles.php:723
msgid "View this profile"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Profiles.php:805
-#: ../../include/channel.php:1061
+#: ../../Zotlabs/Module/Profiles.php:724 ../../Zotlabs/Module/Profiles.php:806
+#: ../../include/channel.php:1066
msgid "Edit visibility"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:724
+#: ../../Zotlabs/Module/Profiles.php:725
msgid "Profile Tools"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:725
+#: ../../Zotlabs/Module/Profiles.php:726
msgid "Change cover photo"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:726 ../../include/channel.php:1032
+#: ../../Zotlabs/Module/Profiles.php:727 ../../include/channel.php:1037
msgid "Change profile photo"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:727
+#: ../../Zotlabs/Module/Profiles.php:728
msgid "Create a new profile using these settings"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:728
+#: ../../Zotlabs/Module/Profiles.php:729
msgid "Clone this profile"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:729
+#: ../../Zotlabs/Module/Profiles.php:730
msgid "Delete this profile"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:730
+#: ../../Zotlabs/Module/Profiles.php:731
msgid "Add profile things"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:731 ../../include/conversation.php:1715
+#: ../../Zotlabs/Module/Profiles.php:732 ../../include/conversation.php:1715
#: ../../include/widgets.php:105
msgid "Personal"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:733
+#: ../../Zotlabs/Module/Profiles.php:734
msgid "Relation"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:734 ../../include/datetime.php:55
+#: ../../Zotlabs/Module/Profiles.php:735 ../../include/datetime.php:55
msgid "Miscellaneous"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:736
+#: ../../Zotlabs/Module/Profiles.php:737
msgid "Import profile from file"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:737
+#: ../../Zotlabs/Module/Profiles.php:738
msgid "Export profile to file"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:738
+#: ../../Zotlabs/Module/Profiles.php:739
msgid "Your gender"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:739
+#: ../../Zotlabs/Module/Profiles.php:740
msgid "Marital status"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:740
+#: ../../Zotlabs/Module/Profiles.php:741
msgid "Sexual preference"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:743
+#: ../../Zotlabs/Module/Profiles.php:744
msgid "Profile name"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:745
+#: ../../Zotlabs/Module/Profiles.php:746
msgid "This is your default profile."
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:747
+#: ../../Zotlabs/Module/Profiles.php:748
msgid "Your full name"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:748
+#: ../../Zotlabs/Module/Profiles.php:749
msgid "Title/Description"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:751
+#: ../../Zotlabs/Module/Profiles.php:752
msgid "Street address"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:752
+#: ../../Zotlabs/Module/Profiles.php:753
msgid "Locality/City"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:753
+#: ../../Zotlabs/Module/Profiles.php:754
msgid "Region/State"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:754
+#: ../../Zotlabs/Module/Profiles.php:755
msgid "Postal/Zip code"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:760
+#: ../../Zotlabs/Module/Profiles.php:761
msgid "Who (if applicable)"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:760
+#: ../../Zotlabs/Module/Profiles.php:761
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:761
+#: ../../Zotlabs/Module/Profiles.php:762
msgid "Since (date)"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:764
+#: ../../Zotlabs/Module/Profiles.php:765
msgid "Tell us about yourself"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:765
+#: ../../Zotlabs/Module/Profiles.php:766
#: ../../extend/addon/addon/openid/MysqlProvider.php:68
msgid "Homepage URL"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:766
+#: ../../Zotlabs/Module/Profiles.php:767
msgid "Hometown"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:767
+#: ../../Zotlabs/Module/Profiles.php:768
msgid "Political views"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:768
+#: ../../Zotlabs/Module/Profiles.php:769
msgid "Religious views"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:769
+#: ../../Zotlabs/Module/Profiles.php:770
msgid "Keywords used in directory listings"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:769
+#: ../../Zotlabs/Module/Profiles.php:770
msgid "Example: fishing photography software"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:772
+#: ../../Zotlabs/Module/Profiles.php:773
msgid "Musical interests"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:773
+#: ../../Zotlabs/Module/Profiles.php:774
msgid "Books, literature"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:774
+#: ../../Zotlabs/Module/Profiles.php:775
msgid "Television"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:775
+#: ../../Zotlabs/Module/Profiles.php:776
msgid "Film/Dance/Culture/Entertainment"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:776
+#: ../../Zotlabs/Module/Profiles.php:777
msgid "Hobbies/Interests"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:777
+#: ../../Zotlabs/Module/Profiles.php:778
msgid "Love/Romance"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:779
+#: ../../Zotlabs/Module/Profiles.php:780
msgid "School/Education"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:780
+#: ../../Zotlabs/Module/Profiles.php:781
msgid "Contact information and social networks"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:781
+#: ../../Zotlabs/Module/Profiles.php:782
msgid "My other channels"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:801 ../../include/channel.php:1057
+#: ../../Zotlabs/Module/Profiles.php:802 ../../include/channel.php:1062
msgid "Profile Image"
msgstr ""
-#: ../../Zotlabs/Module/Profiles.php:811 ../../include/nav.php:91
-#: ../../include/channel.php:1039
+#: ../../Zotlabs/Module/Profiles.php:812 ../../include/channel.php:1044
+#: ../../include/nav.php:105
msgid "Edit Profiles"
msgstr ""
@@ -5107,11 +5098,11 @@ msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
-#: ../../Zotlabs/Module/Notifications.php:43 ../../include/nav.php:196
+#: ../../Zotlabs/Module/Notifications.php:43 ../../include/nav.php:208
msgid "Mark all system notifications seen"
msgstr ""
-#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:232
+#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:235
#: ../../include/conversation.php:942 ../../include/conversation.php:1109
msgid "Poke"
msgstr ""
@@ -5201,11 +5192,6 @@ msgstr ""
msgid "vcard"
msgstr ""
-#: ../../Zotlabs/Module/Apps.php:45 ../../include/widgets.php:102
-#: ../../include/nav.php:168
-msgid "Apps"
-msgstr ""
-
#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2286
msgid "Blocks"
msgstr ""
@@ -5218,8 +5204,8 @@ msgstr ""
msgid "Layouts"
msgstr ""
-#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:229
-#: ../../include/nav.php:164 ../../include/help.php:53
+#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:232
+#: ../../include/nav.php:174 ../../include/help.php:53
#: ../../include/help.php:59
msgid "Help"
msgstr ""
@@ -5430,7 +5416,7 @@ msgstr ""
msgid "Profile Visibility Editor"
msgstr ""
-#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1362
+#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1367
msgid "Profile"
msgstr ""
@@ -5557,15 +5543,15 @@ msgstr ""
msgid "Authentication failed."
msgstr ""
-#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:1984
+#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:1991
msgid "Remote Authentication"
msgstr ""
-#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:1985
+#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:1992
msgid "Enter your channel address (e.g. channel@example.com)"
msgstr ""
-#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:1986
+#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:1993
msgid "Authenticate"
msgstr ""
@@ -5722,12 +5708,12 @@ msgstr ""
msgid "Homepage: "
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:310 ../../include/channel.php:1293
+#: ../../Zotlabs/Module/Directory.php:310 ../../include/channel.php:1298
msgid "Age:"
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:315 ../../include/markdown.php:526
-#: ../../include/channel.php:1129 ../../include/event.php:52
+#: ../../Zotlabs/Module/Directory.php:315 ../../include/markdown.php:561
+#: ../../include/channel.php:1134 ../../include/event.php:52
#: ../../include/event.php:84
msgid "Location:"
msgstr ""
@@ -5736,18 +5722,18 @@ msgstr ""
msgid "Description:"
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:326 ../../include/channel.php:1309
+#: ../../Zotlabs/Module/Directory.php:326 ../../include/channel.php:1314
msgid "Hometown:"
msgstr ""
-#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1317
+#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1322
msgid "About:"
msgstr ""
#: ../../Zotlabs/Module/Directory.php:329 ../../Zotlabs/Module/Suggest.php:56
-#: ../../include/connections.php:78 ../../include/conversation.php:938
+#: ../../include/connections.php:110 ../../include/conversation.php:938
#: ../../include/conversation.php:1069 ../../include/widgets.php:148
-#: ../../include/widgets.php:185 ../../include/channel.php:1114
+#: ../../include/widgets.php:185 ../../include/channel.php:1119
msgid "Connect"
msgstr ""
@@ -5844,8 +5830,8 @@ msgstr ""
msgid "Export selected"
msgstr ""
-#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Lib/Apps.php:222
-#: ../../include/conversation.php:1889 ../../include/nav.php:109
+#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Lib/Apps.php:225
+#: ../../include/conversation.php:1889
msgid "Webpages"
msgstr ""
@@ -5906,7 +5892,7 @@ msgid ""
msgstr ""
#: ../../Zotlabs/Module/Removeme.php:64
-#: ../../Zotlabs/Module/Settings/Channel.php:556
+#: ../../Zotlabs/Module/Settings/Channel.php:558
msgid "Remove Channel"
msgstr ""
@@ -5942,7 +5928,7 @@ msgstr ""
#: ../../Zotlabs/Module/Wiki.php:158
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:144
-#: ../../include/conversation.php:1900 ../../include/nav.php:111
+#: ../../include/conversation.php:1900
msgid "Wikis"
msgstr ""
@@ -6118,8 +6104,8 @@ msgstr ""
msgid "*"
msgstr ""
-#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:683
-#: ../../include/features.php:204
+#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:691
+#: ../../include/features.php:213
msgid "Channel Sources"
msgstr ""
@@ -6355,7 +6341,7 @@ msgid "Used to provide a member experience matched to your comfort level"
msgstr ""
#: ../../Zotlabs/Module/Settings/Account.php:119
-#: ../../Zotlabs/Module/Settings/Channel.php:465
+#: ../../Zotlabs/Module/Settings/Channel.php:467
msgid "Email Address:"
msgstr ""
@@ -6363,119 +6349,6 @@ msgstr ""
msgid "Remove this account including all its channels"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Display.php:137
-msgid "No special theme for mobile devices"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:140
-#, php-format
-msgid "%s - (Experimental)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:191
-msgid "Display Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:192
-msgid "Theme Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:193
-msgid "Custom Theme Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:194
-msgid "Content Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:200
-msgid "Display Theme:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:201
-msgid "Select scheme"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:203
-msgid "Mobile Theme:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:204
-msgid "Preload images before rendering the page"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:204
-msgid ""
-"The subjective page load time will be longer but the page will be ready when "
-"displayed"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:205
-msgid "Enable user zoom on mobile devices"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:206
-msgid "Update browser every xx seconds"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:206
-msgid "Minimum of 10 seconds, no maximum"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:207
-msgid "Maximum number of conversations to load at any time:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:207
-msgid "Maximum of 100 items"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:208
-msgid "Show emoticons (smilies) as images"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:209
-msgid "Manual conversation updates"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:209
-msgid "Default is automatic, which may increase screen jumping"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:210
-msgid "Link post titles to source"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:211
-msgid "System Page Layout Editor - (advanced)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:214
-msgid "Use blog/list mode on channel page"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:214
-#: ../../Zotlabs/Module/Settings/Display.php:215
-msgid "(comments displayed separately)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:215
-msgid "Use blog/list mode on grid page"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:216
-msgid "Channel page max height of content (in pixels)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:216
-#: ../../Zotlabs/Module/Settings/Display.php:217
-msgid "click to expand content exceeding this height"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Display.php:217
-msgid "Grid page max height of content (in pixels)"
-msgstr ""
-
#: ../../Zotlabs/Module/Settings/Tokens.php:31
#, php-format
msgid "This channel is limited to %d tokens"
@@ -6543,7 +6416,7 @@ msgstr ""
msgid "Feature/Addon Settings"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:246
+#: ../../Zotlabs/Module/Settings/Channel.php:248
#: ../../extend/addon/addon/logrot/logrot.php:54
#: ../../extend/addon/addon/msgfooter/msgfooter.php:54
#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:184
@@ -6554,368 +6427,499 @@ msgstr ""
msgid "Settings updated."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:307
+#: ../../Zotlabs/Module/Settings/Channel.php:309
msgid "Nobody except yourself"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:308
+#: ../../Zotlabs/Module/Settings/Channel.php:310
msgid "Only those you specifically allow"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:309
+#: ../../Zotlabs/Module/Settings/Channel.php:311
msgid "Approved connections"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:310
+#: ../../Zotlabs/Module/Settings/Channel.php:312
msgid "Any connections"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:311
+#: ../../Zotlabs/Module/Settings/Channel.php:313
msgid "Anybody on this website"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:312
+#: ../../Zotlabs/Module/Settings/Channel.php:314
msgid "Anybody in this network"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:313
+#: ../../Zotlabs/Module/Settings/Channel.php:315
msgid "Anybody authenticated"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:314
+#: ../../Zotlabs/Module/Settings/Channel.php:316
msgid "Anybody on the internet"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:390
+#: ../../Zotlabs/Module/Settings/Channel.php:392
msgid "Publish your default profile in the network directory"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:395
+#: ../../Zotlabs/Module/Settings/Channel.php:397
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:404
+#: ../../Zotlabs/Module/Settings/Channel.php:406
msgid "Your channel address is"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:407
+#: ../../Zotlabs/Module/Settings/Channel.php:409
msgid "Your files/photos are accessible via WebDAV at"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:456
+#: ../../Zotlabs/Module/Settings/Channel.php:458
msgid "Channel Settings"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:463
+#: ../../Zotlabs/Module/Settings/Channel.php:465
msgid "Basic Settings"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:464
-#: ../../include/channel.php:1250
+#: ../../Zotlabs/Module/Settings/Channel.php:466
+#: ../../include/channel.php:1255
msgid "Full Name:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:466
+#: ../../Zotlabs/Module/Settings/Channel.php:468
msgid "Your Timezone:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:467
+#: ../../Zotlabs/Module/Settings/Channel.php:469
msgid "Default Post Location:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:467
+#: ../../Zotlabs/Module/Settings/Channel.php:469
msgid "Geographical location to display on your posts"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:468
+#: ../../Zotlabs/Module/Settings/Channel.php:470
msgid "Use Browser Location:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:470
+#: ../../Zotlabs/Module/Settings/Channel.php:472
msgid "Adult Content"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:470
+#: ../../Zotlabs/Module/Settings/Channel.php:472
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:472
+#: ../../Zotlabs/Module/Settings/Channel.php:474
msgid "Security and Privacy Settings"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:475
+#: ../../Zotlabs/Module/Settings/Channel.php:477
msgid "Your permissions are already configured. Click to view/adjust"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:477
+#: ../../Zotlabs/Module/Settings/Channel.php:479
msgid "Hide my online presence"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:477
+#: ../../Zotlabs/Module/Settings/Channel.php:479
msgid "Prevents displaying in your profile that you are online"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:479
+#: ../../Zotlabs/Module/Settings/Channel.php:481
msgid "Simple Privacy Settings:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:480
+#: ../../Zotlabs/Module/Settings/Channel.php:482
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:481
+#: ../../Zotlabs/Module/Settings/Channel.php:483
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:482
+#: ../../Zotlabs/Module/Settings/Channel.php:484
msgid "Private - <em>default private, never open or public</em>"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:483
+#: ../../Zotlabs/Module/Settings/Channel.php:485
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:485
+#: ../../Zotlabs/Module/Settings/Channel.php:487
msgid "Allow others to tag your posts"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:485
+#: ../../Zotlabs/Module/Settings/Channel.php:487
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:487
+#: ../../Zotlabs/Module/Settings/Channel.php:489
msgid "Channel Permission Limits"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:489
+#: ../../Zotlabs/Module/Settings/Channel.php:491
msgid "Expire other channel content after this many days"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:489
+#: ../../Zotlabs/Module/Settings/Channel.php:491
msgid "0 or blank to use the website limit."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:489
+#: ../../Zotlabs/Module/Settings/Channel.php:491
#, php-format
msgid "This website expires after %d days."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:489
+#: ../../Zotlabs/Module/Settings/Channel.php:491
msgid "This website does not expire imported content."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:489
+#: ../../Zotlabs/Module/Settings/Channel.php:491
msgid "The website limit takes precedence if lower than your limit."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:490
+#: ../../Zotlabs/Module/Settings/Channel.php:492
msgid "Maximum Friend Requests/Day:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:490
+#: ../../Zotlabs/Module/Settings/Channel.php:492
msgid "May reduce spam activity"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:491
+#: ../../Zotlabs/Module/Settings/Channel.php:493
msgid "Default Access Control List (ACL)"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:493
+#: ../../Zotlabs/Module/Settings/Channel.php:495
msgid "Use my default audience setting for the type of object published"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:500
+#: ../../Zotlabs/Module/Settings/Channel.php:502
msgid "Channel permissions category:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:506
+#: ../../Zotlabs/Module/Settings/Channel.php:508
msgid "Maximum private messages per day from unknown people:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:506
+#: ../../Zotlabs/Module/Settings/Channel.php:508
msgid "Useful to reduce spamming"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:509
+#: ../../Zotlabs/Module/Settings/Channel.php:511
msgid "Notification Settings"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:510
+#: ../../Zotlabs/Module/Settings/Channel.php:512
msgid "By default post a status message when:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:511
+#: ../../Zotlabs/Module/Settings/Channel.php:513
msgid "accepting a friend request"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:512
+#: ../../Zotlabs/Module/Settings/Channel.php:514
msgid "joining a forum/community"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:513
+#: ../../Zotlabs/Module/Settings/Channel.php:515
msgid "making an <em>interesting</em> profile change"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:514
+#: ../../Zotlabs/Module/Settings/Channel.php:516
msgid "Send a notification email when:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:515
+#: ../../Zotlabs/Module/Settings/Channel.php:517
msgid "You receive a connection request"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:516
+#: ../../Zotlabs/Module/Settings/Channel.php:518
msgid "Your connections are confirmed"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:517
+#: ../../Zotlabs/Module/Settings/Channel.php:519
msgid "Someone writes on your profile wall"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:518
+#: ../../Zotlabs/Module/Settings/Channel.php:520
msgid "Someone writes a followup comment"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:519
+#: ../../Zotlabs/Module/Settings/Channel.php:521
msgid "You receive a private message"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:520
+#: ../../Zotlabs/Module/Settings/Channel.php:522
msgid "You receive a friend suggestion"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:521
+#: ../../Zotlabs/Module/Settings/Channel.php:523
msgid "You are tagged in a post"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:522
+#: ../../Zotlabs/Module/Settings/Channel.php:524
msgid "You are poked/prodded/etc. in a post"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:524
+#: ../../Zotlabs/Module/Settings/Channel.php:526
msgid "Someone likes your post/comment"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:527
+#: ../../Zotlabs/Module/Settings/Channel.php:529
msgid "Show visual notifications including:"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:529
+#: ../../Zotlabs/Module/Settings/Channel.php:531
msgid "Unseen grid activity"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:530
+#: ../../Zotlabs/Module/Settings/Channel.php:532
msgid "Unseen channel activity"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:531
+#: ../../Zotlabs/Module/Settings/Channel.php:533
msgid "Unseen private messages"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:531
-#: ../../Zotlabs/Module/Settings/Channel.php:536
-#: ../../Zotlabs/Module/Settings/Channel.php:537
+#: ../../Zotlabs/Module/Settings/Channel.php:533
#: ../../Zotlabs/Module/Settings/Channel.php:538
+#: ../../Zotlabs/Module/Settings/Channel.php:539
+#: ../../Zotlabs/Module/Settings/Channel.php:540
#: ../../extend/addon/addon/jappixmini/jappixmini.php:343
msgid "Recommended"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:532
+#: ../../Zotlabs/Module/Settings/Channel.php:534
msgid "Upcoming events"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:533
+#: ../../Zotlabs/Module/Settings/Channel.php:535
msgid "Events today"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:534
+#: ../../Zotlabs/Module/Settings/Channel.php:536
msgid "Upcoming birthdays"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:534
+#: ../../Zotlabs/Module/Settings/Channel.php:536
msgid "Not available in all themes"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:535
+#: ../../Zotlabs/Module/Settings/Channel.php:537
msgid "System (personal) notifications"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:536
+#: ../../Zotlabs/Module/Settings/Channel.php:538
msgid "System info messages"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:537
+#: ../../Zotlabs/Module/Settings/Channel.php:539
msgid "System critical alerts"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:538
+#: ../../Zotlabs/Module/Settings/Channel.php:540
msgid "New connections"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:539
+#: ../../Zotlabs/Module/Settings/Channel.php:541
msgid "System Registrations"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:540
+#: ../../Zotlabs/Module/Settings/Channel.php:542
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:542
+#: ../../Zotlabs/Module/Settings/Channel.php:544
msgid "Notify me of events this many days in advance"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:542
+#: ../../Zotlabs/Module/Settings/Channel.php:544
msgid "Must be greater than 0"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:548
+#: ../../Zotlabs/Module/Settings/Channel.php:550
msgid "Advanced Account/Page Type Settings"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:549
+#: ../../Zotlabs/Module/Settings/Channel.php:551
msgid "Change the behaviour of this account for special situations"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:551
+#: ../../Zotlabs/Module/Settings/Channel.php:553
msgid "Miscellaneous Settings"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:552
+#: ../../Zotlabs/Module/Settings/Channel.php:554
msgid "Default photo upload folder"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:552
-#: ../../Zotlabs/Module/Settings/Channel.php:553
+#: ../../Zotlabs/Module/Settings/Channel.php:554
+#: ../../Zotlabs/Module/Settings/Channel.php:555
msgid "%Y - current year, %m - current month"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:553
+#: ../../Zotlabs/Module/Settings/Channel.php:555
msgid "Default file upload folder"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:555
+#: ../../Zotlabs/Module/Settings/Channel.php:557
msgid "Personal menu to display in your channel pages"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:557
+#: ../../Zotlabs/Module/Settings/Channel.php:559
msgid "Remove this channel."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:558
+#: ../../Zotlabs/Module/Settings/Channel.php:560
msgid "Firefox Share $Projectname provider"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Channel.php:559
+#: ../../Zotlabs/Module/Settings/Channel.php:561
msgid "Start calendar week on monday"
msgstr ""
+#: ../../Zotlabs/Module/Settings/Display.php:137
+msgid "No special theme for mobile devices"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:140
+#, php-format
+msgid "%s - (Experimental)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:191
+msgid "Display Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:192
+msgid "Theme Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:193
+msgid "Custom Theme Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:194
+msgid "Content Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:200
+msgid "Display Theme:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:201
+msgid "Select scheme"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:203
+msgid "Mobile Theme:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:204
+msgid "Preload images before rendering the page"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:204
+msgid ""
+"The subjective page load time will be longer but the page will be ready when "
+"displayed"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:205
+msgid "Enable user zoom on mobile devices"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:206
+msgid "Update browser every xx seconds"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:206
+msgid "Minimum of 10 seconds, no maximum"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:207
+msgid "Maximum number of conversations to load at any time:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:207
+msgid "Maximum of 100 items"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:208
+msgid "Show emoticons (smilies) as images"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:209
+msgid "Manual conversation updates"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:209
+msgid "Default is on, turning this off may increase screen jumping"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:210
+msgid "Link post titles to source"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:211
+msgid "System Page Layout Editor - (advanced)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:214
+msgid "Use blog/list mode on channel page"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:214
+#: ../../Zotlabs/Module/Settings/Display.php:215
+msgid "(comments displayed separately)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:215
+msgid "Use blog/list mode on grid page"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:216
+msgid "Channel page max height of content (in pixels)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:216
+#: ../../Zotlabs/Module/Settings/Display.php:217
+msgid "click to expand content exceeding this height"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Display.php:217
+msgid "Grid page max height of content (in pixels)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Permcats.php:37
+msgid "Permission category saved."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Permcats.php:63
+msgid ""
+"Use this form to create permission rules for various classes of people or "
+"connections."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Permcats.php:96 ../../include/widgets.php:666
+msgid "Permission Categories"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Permcats.php:104
+msgid "Permission Name"
+msgstr ""
+
#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98
msgid "Tag removed"
msgstr ""
@@ -7669,111 +7673,111 @@ msgstr ""
msgid "Video"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:209
+#: ../../Zotlabs/Lib/Apps.php:212
msgid "Site Admin"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:210
+#: ../../Zotlabs/Lib/Apps.php:213
#: ../../extend/addon/addon/buglink/buglink.php:16
msgid "Report Bug"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:211
+#: ../../Zotlabs/Lib/Apps.php:214
msgid "View Bookmarks"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:212
+#: ../../Zotlabs/Lib/Apps.php:215
msgid "My Chatrooms"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:214
+#: ../../Zotlabs/Lib/Apps.php:217
msgid "Firefox Share"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:215
+#: ../../Zotlabs/Lib/Apps.php:218
msgid "Remote Diagnostics"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:216 ../../include/features.php:328
+#: ../../Zotlabs/Lib/Apps.php:219 ../../include/features.php:337
msgid "Suggest Channels"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:116
+#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:130
#: ../../boot.php:1732
msgid "Login"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:219 ../../include/nav.php:184
+#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:194
msgid "Grid"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1903
+#: ../../Zotlabs/Lib/Apps.php:226 ../../include/conversation.php:1903
#: ../../include/features.php:99
msgid "Wiki"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:187
+#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:198
msgid "Channel Home"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:227 ../../include/conversation.php:1853
-#: ../../include/conversation.php:1856 ../../include/nav.php:206
+#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1853
+#: ../../include/conversation.php:1856 ../../include/nav.php:218
msgid "Events"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:228 ../../include/nav.php:172
+#: ../../Zotlabs/Lib/Apps.php:231 ../../include/nav.php:182
msgid "Directory"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:198
+#: ../../Zotlabs/Lib/Apps.php:233 ../../include/nav.php:210
msgid "Mail"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:233 ../../include/nav.php:99
+#: ../../Zotlabs/Lib/Apps.php:236
msgid "Chat"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:235
+#: ../../Zotlabs/Lib/Apps.php:238
msgid "Probe"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:236
+#: ../../Zotlabs/Lib/Apps.php:239
msgid "Suggest"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:237
+#: ../../Zotlabs/Lib/Apps.php:240
msgid "Random Channel"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:238
+#: ../../Zotlabs/Lib/Apps.php:241
msgid "Invite"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:239 ../../include/widgets.php:1587
+#: ../../Zotlabs/Lib/Apps.php:242 ../../include/widgets.php:1595
msgid "Features"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:240
+#: ../../Zotlabs/Lib/Apps.php:243
#: ../../extend/addon/addon/openid/MysqlProvider.php:69
msgid "Language"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:241
+#: ../../Zotlabs/Lib/Apps.php:244
msgid "Post"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:242
+#: ../../Zotlabs/Lib/Apps.php:245
#: ../../extend/addon/addon/openid/MysqlProvider.php:58
#: ../../extend/addon/addon/openid/MysqlProvider.php:59
#: ../../extend/addon/addon/openid/MysqlProvider.php:60
msgid "Profile Photo"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:349
+#: ../../Zotlabs/Lib/Apps.php:355
msgid "Purchase"
msgstr ""
-#: ../../Zotlabs/Lib/Apps.php:353
+#: ../../Zotlabs/Lib/Apps.php:359
msgid "Undelete"
msgstr ""
@@ -7781,6 +7785,26 @@ msgstr ""
msgid "Wiki files deleted successfully"
msgstr ""
+#: ../../Zotlabs/Lib/Permcat.php:58
+msgctxt "permcat"
+msgid "default"
+msgstr ""
+
+#: ../../Zotlabs/Lib/Permcat.php:96
+msgctxt "permcat"
+msgid "follower"
+msgstr ""
+
+#: ../../Zotlabs/Lib/Permcat.php:100
+msgctxt "permcat"
+msgid "contributor"
+msgstr ""
+
+#: ../../Zotlabs/Lib/Permcat.php:104
+msgctxt "permcat"
+msgid "publisher"
+msgstr ""
+
#: ../../Zotlabs/Lib/NativeWikiPage.php:31
#: ../../Zotlabs/Lib/NativeWikiPage.php:62
msgid "(No Title)"
@@ -7913,23 +7937,23 @@ msgstr ""
msgid "Diaspora Protocol Settings updated."
msgstr ""
-#: ../../extend/addon/addon/diaspora/diaspora.php:698
+#: ../../extend/addon/addon/diaspora/diaspora.php:696
msgid "Enable the Diaspora protocol for this channel"
msgstr ""
-#: ../../extend/addon/addon/diaspora/diaspora.php:702
+#: ../../extend/addon/addon/diaspora/diaspora.php:700
msgid "Allow any Diaspora member to comment on your public posts"
msgstr ""
-#: ../../extend/addon/addon/diaspora/diaspora.php:706
+#: ../../extend/addon/addon/diaspora/diaspora.php:704
msgid "Prevent your hashtags from being redirected to other sites"
msgstr ""
-#: ../../extend/addon/addon/diaspora/diaspora.php:711
+#: ../../extend/addon/addon/diaspora/diaspora.php:709
msgid "Followed hashtags (comma separated, do not include the #)"
msgstr ""
-#: ../../extend/addon/addon/diaspora/diaspora.php:716
+#: ../../extend/addon/addon/diaspora/diaspora.php:714
msgid "Diaspora Protocol Settings"
msgstr ""
@@ -8574,7 +8598,7 @@ msgid "IRC Chatroom"
msgstr ""
#: ../../extend/addon/addon/jappixmini/jappixmini.php:305
-#: ../../include/channel.php:1134 ../../include/channel.php:1296
+#: ../../include/channel.php:1139 ../../include/channel.php:1301
msgid "Status:"
msgstr ""
@@ -9110,7 +9134,7 @@ msgid "Page to load after image selection."
msgstr ""
#: ../../extend/addon/addon/openclipatar/openclipatar.php:58
-#: ../../include/nav.php:93 ../../include/channel.php:1043
+#: ../../include/channel.php:1048 ../../include/nav.php:107
msgid "Edit Profile"
msgstr ""
@@ -10343,22 +10367,22 @@ msgid "CalDAV/CardDAV Settings"
msgstr ""
#: ../../extend/addon/addon/cdav/cdav.php:272
-#: ../../include/connections.php:864
+#: ../../include/connections.php:896
msgid "Home, Voice"
msgstr ""
#: ../../extend/addon/addon/cdav/cdav.php:273
-#: ../../include/connections.php:865
+#: ../../include/connections.php:897
msgid "Home, Fax"
msgstr ""
#: ../../extend/addon/addon/cdav/cdav.php:275
-#: ../../include/connections.php:867
+#: ../../include/connections.php:899
msgid "Work, Voice"
msgstr ""
#: ../../extend/addon/addon/cdav/cdav.php:276
-#: ../../include/connections.php:868
+#: ../../include/connections.php:900
msgid "Work, Fax"
msgstr ""
@@ -10392,7 +10416,7 @@ msgstr ""
msgid "Error creating new game."
msgstr ""
-#: ../../extend/addon/addon/chess/chess.php:379 ../../include/channel.php:894
+#: ../../extend/addon/addon/chess/chess.php:379 ../../include/channel.php:899
msgid "Requested channel is not available."
msgstr ""
@@ -10690,22 +10714,22 @@ msgid "Error downloading wiki: "
msgstr ""
#: ../../extend/addon/addon/gitwiki/gitwiki.php:76
-#: ../../include/widgets.php:962
+#: ../../include/widgets.php:970
msgid "Wiki Pages"
msgstr ""
#: ../../extend/addon/addon/gitwiki/gitwiki.php:81
-#: ../../include/widgets.php:968
+#: ../../include/widgets.php:976
msgid "Add new page"
msgstr ""
#: ../../extend/addon/addon/gitwiki/gitwiki.php:82
-#: ../../include/widgets.php:969
+#: ../../include/widgets.php:977
msgid "Page name"
msgstr ""
#: ../../extend/addon/addon/gitwiki/gitwiki.php:95
-#: ../../include/widgets.php:919
+#: ../../include/widgets.php:927
msgid "Wiki List"
msgstr ""
@@ -10876,25 +10900,25 @@ msgstr ""
msgid "dislikes"
msgstr ""
-#: ../../include/markdown.php:409
+#: ../../include/markdown.php:444
msgid "Attachments:"
msgstr ""
-#: ../../include/markdown.php:504 ../../include/event.php:22
+#: ../../include/markdown.php:539 ../../include/event.php:22
#: ../../include/event.php:69
msgid "l F d, Y \\@ g:i A"
msgstr ""
-#: ../../include/markdown.php:506
+#: ../../include/markdown.php:541
msgid "$Projectname event notification:"
msgstr ""
-#: ../../include/markdown.php:510 ../../include/event.php:30
+#: ../../include/markdown.php:545 ../../include/event.php:30
#: ../../include/event.php:73
msgid "Starts:"
msgstr ""
-#: ../../include/markdown.php:518 ../../include/event.php:40
+#: ../../include/markdown.php:553 ../../include/event.php:40
#: ../../include/event.php:77
msgid "Finishes:"
msgstr ""
@@ -11224,15 +11248,15 @@ msgstr ""
msgid "Ask me"
msgstr ""
-#: ../../include/connections.php:95
+#: ../../include/connections.php:127
msgid "New window"
msgstr ""
-#: ../../include/connections.php:96
+#: ../../include/connections.php:128
msgid "Open the selected location in a different window or browser tab"
msgstr ""
-#: ../../include/connections.php:214
+#: ../../include/connections.php:246
#, php-format
msgid "User '%s' deleted"
msgstr ""
@@ -11273,7 +11297,7 @@ msgstr ""
msgid "remove"
msgstr ""
-#: ../../include/conversation.php:836 ../../include/nav.php:278
+#: ../../include/conversation.php:836 ../../include/nav.php:292
msgid "Loading..."
msgstr ""
@@ -11475,11 +11499,11 @@ msgid "Files and Storage"
msgstr ""
#: ../../include/conversation.php:1866 ../../include/conversation.php:1869
-#: ../../include/widgets.php:894
+#: ../../include/widgets.php:902
msgid "Chatrooms"
msgstr ""
-#: ../../include/conversation.php:1879 ../../include/nav.php:105
+#: ../../include/conversation.php:1879
msgid "Bookmarks"
msgstr ""
@@ -11542,6 +11566,10 @@ msgstr ""
msgid "Channel clone failed. Import failed."
msgstr ""
+#: ../../include/import.php:100
+msgid "Cloned channel not found. Import failed."
+msgstr ""
+
#: ../../include/import.php:1373
msgid "Unable to import element \""
msgstr ""
@@ -11617,7 +11645,7 @@ msgstr ""
msgid "Remove term"
msgstr ""
-#: ../../include/widgets.php:284 ../../include/features.php:292
+#: ../../include/widgets.php:284 ../../include/features.php:301
msgid "Saved Searches"
msgstr ""
@@ -11626,7 +11654,7 @@ msgid "add"
msgstr ""
#: ../../include/widgets.php:347 ../../include/contact_widgets.php:53
-#: ../../include/features.php:381
+#: ../../include/features.php:390
msgid "Saved Folders"
msgstr ""
@@ -11675,148 +11703,294 @@ msgstr ""
msgid "Connected apps"
msgstr ""
-#: ../../include/widgets.php:675
+#: ../../include/widgets.php:683
msgid "Premium Channel Settings"
msgstr ""
-#: ../../include/widgets.php:704
+#: ../../include/widgets.php:712
msgid "Private Mail Menu"
msgstr ""
-#: ../../include/widgets.php:706
+#: ../../include/widgets.php:714
msgid "Combined View"
msgstr ""
-#: ../../include/widgets.php:711 ../../include/nav.php:201
+#: ../../include/widgets.php:719 ../../include/nav.php:213
msgid "Inbox"
msgstr ""
-#: ../../include/widgets.php:716 ../../include/nav.php:202
+#: ../../include/widgets.php:724 ../../include/nav.php:214
msgid "Outbox"
msgstr ""
-#: ../../include/widgets.php:721 ../../include/nav.php:203
+#: ../../include/widgets.php:729 ../../include/nav.php:215
msgid "New Message"
msgstr ""
-#: ../../include/widgets.php:738 ../../include/widgets.php:750
+#: ../../include/widgets.php:746 ../../include/widgets.php:758
msgid "Conversations"
msgstr ""
-#: ../../include/widgets.php:742
+#: ../../include/widgets.php:750
msgid "Received Messages"
msgstr ""
-#: ../../include/widgets.php:746
+#: ../../include/widgets.php:754
msgid "Sent Messages"
msgstr ""
-#: ../../include/widgets.php:760
+#: ../../include/widgets.php:768
msgid "No messages."
msgstr ""
-#: ../../include/widgets.php:778
+#: ../../include/widgets.php:786
msgid "Delete conversation"
msgstr ""
-#: ../../include/widgets.php:804
+#: ../../include/widgets.php:812
msgid "Events Tools"
msgstr ""
-#: ../../include/widgets.php:805
+#: ../../include/widgets.php:813
msgid "Export Calendar"
msgstr ""
-#: ../../include/widgets.php:806
+#: ../../include/widgets.php:814
msgid "Import Calendar"
msgstr ""
-#: ../../include/widgets.php:898
+#: ../../include/widgets.php:906
msgid "Overview"
msgstr ""
-#: ../../include/widgets.php:905
+#: ../../include/widgets.php:913
msgid "Chat Members"
msgstr ""
-#: ../../include/widgets.php:983
+#: ../../include/widgets.php:991
msgctxt "wiki_history"
msgid "Message"
msgstr ""
-#: ../../include/widgets.php:1005
+#: ../../include/widgets.php:1013
msgid "Bookmarked Chatrooms"
msgstr ""
-#: ../../include/widgets.php:1036
+#: ../../include/widgets.php:1044
msgid "Suggested Chatrooms"
msgstr ""
-#: ../../include/widgets.php:1181 ../../include/widgets.php:1293
+#: ../../include/widgets.php:1189 ../../include/widgets.php:1301
msgid "photo/image"
msgstr ""
-#: ../../include/widgets.php:1236
+#: ../../include/widgets.php:1244
msgid "Click to show more"
msgstr ""
-#: ../../include/widgets.php:1387
+#: ../../include/widgets.php:1395
msgid "Rating Tools"
msgstr ""
-#: ../../include/widgets.php:1391 ../../include/widgets.php:1393
+#: ../../include/widgets.php:1399 ../../include/widgets.php:1401
msgid "Rate Me"
msgstr ""
-#: ../../include/widgets.php:1396
+#: ../../include/widgets.php:1404
msgid "View Ratings"
msgstr ""
-#: ../../include/widgets.php:1489
+#: ../../include/widgets.php:1497
msgid "Forums"
msgstr ""
-#: ../../include/widgets.php:1518
+#: ../../include/widgets.php:1526
msgid "Tasks"
msgstr ""
-#: ../../include/widgets.php:1584 ../../include/widgets.php:1622
+#: ../../include/widgets.php:1592 ../../include/widgets.php:1630
msgid "Member registrations waiting for confirmation"
msgstr ""
-#: ../../include/widgets.php:1590
+#: ../../include/widgets.php:1598
msgid "Inspect queue"
msgstr ""
-#: ../../include/widgets.php:1592
+#: ../../include/widgets.php:1600
msgid "DB updates"
msgstr ""
-#: ../../include/widgets.php:1617 ../../include/nav.php:221
+#: ../../include/widgets.php:1625 ../../include/nav.php:233
msgid "Admin"
msgstr ""
-#: ../../include/widgets.php:1618
+#: ../../include/widgets.php:1626
msgid "Plugin Features"
msgstr ""
-#: ../../include/zot.php:666
+#: ../../include/zot.php:652
msgid "Invalid data packet"
msgstr ""
-#: ../../include/zot.php:682
+#: ../../include/zot.php:668
msgid "Unable to verify channel signature"
msgstr ""
-#: ../../include/zot.php:2333
+#: ../../include/zot.php:2319
#, php-format
msgid "Unable to verify site signature for %s"
msgstr ""
-#: ../../include/zot.php:3737
+#: ../../include/zot.php:3725
msgid "invalid target signature"
msgstr ""
+#: ../../include/channel.php:33
+msgid "Unable to obtain identity information from database"
+msgstr ""
+
+#: ../../include/channel.php:67
+msgid "Empty name"
+msgstr ""
+
+#: ../../include/channel.php:70
+msgid "Name too long"
+msgstr ""
+
+#: ../../include/channel.php:181
+msgid "No account identifier"
+msgstr ""
+
+#: ../../include/channel.php:193
+msgid "Nickname is required."
+msgstr ""
+
+#: ../../include/channel.php:207
+msgid "Reserved nickname. Please choose another."
+msgstr ""
+
+#: ../../include/channel.php:212
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
+msgstr ""
+
+#: ../../include/channel.php:272
+msgid "Unable to retrieve created identity"
+msgstr ""
+
+#: ../../include/channel.php:344
+msgid "Default Profile"
+msgstr ""
+
+#: ../../include/channel.php:1045
+msgid "Create New Profile"
+msgstr ""
+
+#: ../../include/channel.php:1065
+msgid "Visible to everybody"
+msgstr ""
+
+#: ../../include/channel.php:1138 ../../include/channel.php:1257
+msgid "Gender:"
+msgstr ""
+
+#: ../../include/channel.php:1140 ../../include/channel.php:1312
+msgid "Homepage:"
+msgstr ""
+
+#: ../../include/channel.php:1141
+msgid "Online Now"
+msgstr ""
+
+#: ../../include/channel.php:1262
+msgid "Like this channel"
+msgstr ""
+
+#: ../../include/channel.php:1286
+msgid "j F, Y"
+msgstr ""
+
+#: ../../include/channel.php:1287
+msgid "j F"
+msgstr ""
+
+#: ../../include/channel.php:1294
+msgid "Birthday:"
+msgstr ""
+
+#: ../../include/channel.php:1307
+#, php-format
+msgid "for %1$d %2$s"
+msgstr ""
+
+#: ../../include/channel.php:1310
+msgid "Sexual Preference:"
+msgstr ""
+
+#: ../../include/channel.php:1316
+msgid "Tags:"
+msgstr ""
+
+#: ../../include/channel.php:1318
+msgid "Political Views:"
+msgstr ""
+
+#: ../../include/channel.php:1320
+msgid "Religion:"
+msgstr ""
+
+#: ../../include/channel.php:1324
+msgid "Hobbies/Interests:"
+msgstr ""
+
+#: ../../include/channel.php:1326
+msgid "Likes:"
+msgstr ""
+
+#: ../../include/channel.php:1328
+msgid "Dislikes:"
+msgstr ""
+
+#: ../../include/channel.php:1330
+msgid "Contact information and Social Networks:"
+msgstr ""
+
+#: ../../include/channel.php:1332
+msgid "My other channels:"
+msgstr ""
+
+#: ../../include/channel.php:1334
+msgid "Musical interests:"
+msgstr ""
+
+#: ../../include/channel.php:1336
+msgid "Books, literature:"
+msgstr ""
+
+#: ../../include/channel.php:1338
+msgid "Television:"
+msgstr ""
+
+#: ../../include/channel.php:1340
+msgid "Film/dance/culture/entertainment:"
+msgstr ""
+
+#: ../../include/channel.php:1342
+msgid "Love/Romance:"
+msgstr ""
+
+#: ../../include/channel.php:1344
+msgid "Work/employment:"
+msgstr ""
+
+#: ../../include/channel.php:1346
+msgid "School/education:"
+msgstr ""
+
+#: ../../include/channel.php:1369
+msgid "Like this thing"
+msgstr ""
+
#: ../../include/page_widgets.php:7
msgid "New Page"
msgstr ""
@@ -12612,167 +12786,147 @@ msgstr ""
msgid "Specify folder"
msgstr ""
-#: ../../include/nav.php:85 ../../include/nav.php:119 ../../boot.php:1731
-msgid "Logout"
-msgstr ""
-
-#: ../../include/nav.php:85 ../../include/nav.php:119
-msgid "End this session"
-msgstr ""
-
#: ../../include/nav.php:88
-msgid "Your posts and conversations"
-msgstr ""
-
-#: ../../include/nav.php:89
-msgid "Your profile page"
-msgstr ""
-
-#: ../../include/nav.php:91
-msgid "Manage/Edit profiles"
+msgid "Remote authentication"
msgstr ""
-#: ../../include/nav.php:93
-msgid "Edit your profile"
+#: ../../include/nav.php:88
+msgid "Click to authenticate to your home hub"
msgstr ""
-#: ../../include/nav.php:95
-msgid "Your photos"
+#: ../../include/nav.php:99 ../../include/nav.php:140 ../../boot.php:1731
+msgid "Logout"
msgstr ""
-#: ../../include/nav.php:96
-msgid "Your files"
+#: ../../include/nav.php:99 ../../include/nav.php:140
+msgid "End this session"
msgstr ""
-#: ../../include/nav.php:99
-msgid "Your chatrooms"
+#: ../../include/nav.php:103
+msgid "Your profile page"
msgstr ""
#: ../../include/nav.php:105
-msgid "Your bookmarks"
-msgstr ""
-
-#: ../../include/nav.php:109
-msgid "Your webpages"
+msgid "Manage/Edit profiles"
msgstr ""
-#: ../../include/nav.php:111
-msgid "Your wikis"
+#: ../../include/nav.php:107
+msgid "Edit your profile"
msgstr ""
-#: ../../include/nav.php:116
+#: ../../include/nav.php:130
msgid "Sign in"
msgstr ""
-#: ../../include/nav.php:133
-msgid "Remote authentication"
-msgstr ""
-
-#: ../../include/nav.php:133
-msgid "Click to authenticate to your home hub"
-msgstr ""
-
-#: ../../include/nav.php:145
+#: ../../include/nav.php:155
msgid "Get me home"
msgstr ""
-#: ../../include/nav.php:147
+#: ../../include/nav.php:157
msgid "Log me out of this site"
msgstr ""
-#: ../../include/nav.php:152
+#: ../../include/nav.php:162
msgid "Create an account"
msgstr ""
-#: ../../include/nav.php:164
+#: ../../include/nav.php:174
msgid "Help and documentation"
msgstr ""
-#: ../../include/nav.php:168
+#: ../../include/nav.php:178
msgid "Applications, utilities, links, games"
msgstr ""
-#: ../../include/nav.php:170
+#: ../../include/nav.php:180
msgid "Search site @name, #tag, ?docs, content"
msgstr ""
-#: ../../include/nav.php:172
+#: ../../include/nav.php:182
msgid "Channel Directory"
msgstr ""
-#: ../../include/nav.php:184
+#: ../../include/nav.php:194
msgid "Your grid"
msgstr ""
-#: ../../include/nav.php:185
+#: ../../include/nav.php:195
+msgid "View your network/grid"
+msgstr ""
+
+#: ../../include/nav.php:196
msgid "Mark all grid notifications seen"
msgstr ""
-#: ../../include/nav.php:187
+#: ../../include/nav.php:198
msgid "Channel home"
msgstr ""
-#: ../../include/nav.php:188
+#: ../../include/nav.php:199
+msgid "View your channel home"
+msgstr ""
+
+#: ../../include/nav.php:200
msgid "Mark all channel notifications seen"
msgstr ""
-#: ../../include/nav.php:194
+#: ../../include/nav.php:206
msgid "Notices"
msgstr ""
-#: ../../include/nav.php:194
+#: ../../include/nav.php:206
msgid "Notifications"
msgstr ""
-#: ../../include/nav.php:195
-msgid "See all notifications"
+#: ../../include/nav.php:207
+msgid "View all notifications"
msgstr ""
-#: ../../include/nav.php:198
+#: ../../include/nav.php:210
msgid "Private mail"
msgstr ""
-#: ../../include/nav.php:199
-msgid "See all private messages"
+#: ../../include/nav.php:211
+msgid "View your private messages"
msgstr ""
-#: ../../include/nav.php:200
+#: ../../include/nav.php:212
msgid "Mark all private messages seen"
msgstr ""
-#: ../../include/nav.php:206
+#: ../../include/nav.php:218
msgid "Event Calendar"
msgstr ""
-#: ../../include/nav.php:207
-msgid "See all events"
+#: ../../include/nav.php:219
+msgid "View events"
msgstr ""
-#: ../../include/nav.php:208
+#: ../../include/nav.php:220
msgid "Mark all events seen"
msgstr ""
-#: ../../include/nav.php:211
+#: ../../include/nav.php:223
msgid "Manage Your Channels"
msgstr ""
-#: ../../include/nav.php:213
+#: ../../include/nav.php:225
msgid "Account/Channel Settings"
msgstr ""
-#: ../../include/nav.php:221
+#: ../../include/nav.php:233
msgid "Site Setup and Configuration"
msgstr ""
-#: ../../include/nav.php:274
+#: ../../include/nav.php:288
msgid "Documentation"
msgstr ""
-#: ../../include/nav.php:283
+#: ../../include/nav.php:297
msgid "@name, #tag, ?doc, content"
msgstr ""
-#: ../../include/nav.php:284
+#: ../../include/nav.php:298
msgid "Please wait..."
msgstr ""
@@ -12784,31 +12938,31 @@ msgstr ""
msgid "Failed authentication"
msgstr ""
-#: ../../include/follow.php:27
+#: ../../include/follow.php:26
msgid "Channel is blocked on this site."
msgstr ""
-#: ../../include/follow.php:32
+#: ../../include/follow.php:31
msgid "Channel location missing."
msgstr ""
-#: ../../include/follow.php:80
+#: ../../include/follow.php:73
msgid "Response from remote channel was incomplete."
msgstr ""
-#: ../../include/follow.php:97
+#: ../../include/follow.php:90
msgid "Channel was deleted and no longer exists."
msgstr ""
-#: ../../include/follow.php:147 ../../include/follow.php:183
+#: ../../include/follow.php:140 ../../include/follow.php:175
msgid "Protocol disabled."
msgstr ""
-#: ../../include/follow.php:171
+#: ../../include/follow.php:163
msgid "Channel discovery failed."
msgstr ""
-#: ../../include/follow.php:210
+#: ../../include/follow.php:202
msgid "Cannot connect to yourself."
msgstr ""
@@ -12883,152 +13037,6 @@ msgstr ""
msgid "%1$s's bookmarks"
msgstr ""
-#: ../../include/channel.php:33
-msgid "Unable to obtain identity information from database"
-msgstr ""
-
-#: ../../include/channel.php:67
-msgid "Empty name"
-msgstr ""
-
-#: ../../include/channel.php:70
-msgid "Name too long"
-msgstr ""
-
-#: ../../include/channel.php:181
-msgid "No account identifier"
-msgstr ""
-
-#: ../../include/channel.php:193
-msgid "Nickname is required."
-msgstr ""
-
-#: ../../include/channel.php:207
-msgid "Reserved nickname. Please choose another."
-msgstr ""
-
-#: ../../include/channel.php:212
-msgid ""
-"Nickname has unsupported characters or is already being used on this site."
-msgstr ""
-
-#: ../../include/channel.php:272
-msgid "Unable to retrieve created identity"
-msgstr ""
-
-#: ../../include/channel.php:344
-msgid "Default Profile"
-msgstr ""
-
-#: ../../include/channel.php:1040
-msgid "Create New Profile"
-msgstr ""
-
-#: ../../include/channel.php:1060
-msgid "Visible to everybody"
-msgstr ""
-
-#: ../../include/channel.php:1133 ../../include/channel.php:1252
-msgid "Gender:"
-msgstr ""
-
-#: ../../include/channel.php:1135 ../../include/channel.php:1307
-msgid "Homepage:"
-msgstr ""
-
-#: ../../include/channel.php:1136
-msgid "Online Now"
-msgstr ""
-
-#: ../../include/channel.php:1257
-msgid "Like this channel"
-msgstr ""
-
-#: ../../include/channel.php:1281
-msgid "j F, Y"
-msgstr ""
-
-#: ../../include/channel.php:1282
-msgid "j F"
-msgstr ""
-
-#: ../../include/channel.php:1289
-msgid "Birthday:"
-msgstr ""
-
-#: ../../include/channel.php:1302
-#, php-format
-msgid "for %1$d %2$s"
-msgstr ""
-
-#: ../../include/channel.php:1305
-msgid "Sexual Preference:"
-msgstr ""
-
-#: ../../include/channel.php:1311
-msgid "Tags:"
-msgstr ""
-
-#: ../../include/channel.php:1313
-msgid "Political Views:"
-msgstr ""
-
-#: ../../include/channel.php:1315
-msgid "Religion:"
-msgstr ""
-
-#: ../../include/channel.php:1319
-msgid "Hobbies/Interests:"
-msgstr ""
-
-#: ../../include/channel.php:1321
-msgid "Likes:"
-msgstr ""
-
-#: ../../include/channel.php:1323
-msgid "Dislikes:"
-msgstr ""
-
-#: ../../include/channel.php:1325
-msgid "Contact information and Social Networks:"
-msgstr ""
-
-#: ../../include/channel.php:1327
-msgid "My other channels:"
-msgstr ""
-
-#: ../../include/channel.php:1329
-msgid "Musical interests:"
-msgstr ""
-
-#: ../../include/channel.php:1331
-msgid "Books, literature:"
-msgstr ""
-
-#: ../../include/channel.php:1333
-msgid "Television:"
-msgstr ""
-
-#: ../../include/channel.php:1335
-msgid "Film/dance/culture/entertainment:"
-msgstr ""
-
-#: ../../include/channel.php:1337
-msgid "Love/Romance:"
-msgstr ""
-
-#: ../../include/channel.php:1339
-msgid "Work/employment:"
-msgstr ""
-
-#: ../../include/channel.php:1341
-msgid "School/education:"
-msgstr ""
-
-#: ../../include/channel.php:1364
-msgid "Like this thing"
-msgstr ""
-
#: ../../include/group.php:26
msgid ""
"A deleted group with this name was revived. Existing item permissions "
@@ -13044,7 +13052,7 @@ msgstr ""
msgid "edit"
msgstr ""
-#: ../../include/group.php:311 ../../include/features.php:283
+#: ../../include/group.php:311 ../../include/features.php:292
msgid "Privacy Groups"
msgstr ""
@@ -13278,225 +13286,233 @@ msgid "Provide chatrooms and chat services with access control."
msgstr ""
#: ../../include/features.php:153
-msgid "Smart Birthdays"
+msgid "Permission Groups"
msgstr ""
#: ../../include/features.php:154
+msgid "Provide alternate connection permission roles."
+msgstr ""
+
+#: ../../include/features.php:162
+msgid "Smart Birthdays"
+msgstr ""
+
+#: ../../include/features.php:163
msgid ""
"Make birthday events timezone aware in case your friends are scattered "
"across the planet."
msgstr ""
-#: ../../include/features.php:162
+#: ../../include/features.php:171
msgid "Event Timezone Selection"
msgstr ""
-#: ../../include/features.php:163
+#: ../../include/features.php:172
msgid "Allow event creation in timezones other than your own."
msgstr ""
-#: ../../include/features.php:171
+#: ../../include/features.php:180
msgid "Advanced Directory Search"
msgstr ""
-#: ../../include/features.php:172
+#: ../../include/features.php:181
msgid "Allows creation of complex directory search queries"
msgstr ""
-#: ../../include/features.php:180
+#: ../../include/features.php:189
msgid "Advanced Theme and Layout Settings"
msgstr ""
-#: ../../include/features.php:181
+#: ../../include/features.php:190
msgid "Allows fine tuning of themes and page layouts"
msgstr ""
-#: ../../include/features.php:191
+#: ../../include/features.php:200
msgid "Post Composition Features"
msgstr ""
-#: ../../include/features.php:195
+#: ../../include/features.php:204
msgid "Large Photos"
msgstr ""
-#: ../../include/features.php:196
+#: ../../include/features.php:205
msgid ""
"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
"(640px) photo thumbnails"
msgstr ""
-#: ../../include/features.php:205
+#: ../../include/features.php:214
msgid "Automatically import channel content from other channels or feeds"
msgstr ""
-#: ../../include/features.php:213
+#: ../../include/features.php:222
msgid "Even More Encryption"
msgstr ""
-#: ../../include/features.php:214
+#: ../../include/features.php:223
msgid ""
"Allow optional encryption of content end-to-end with a shared secret key"
msgstr ""
-#: ../../include/features.php:222
+#: ../../include/features.php:231
msgid "Enable Voting Tools"
msgstr ""
-#: ../../include/features.php:223
+#: ../../include/features.php:232
msgid "Provide a class of post which others can vote on"
msgstr ""
-#: ../../include/features.php:231
+#: ../../include/features.php:240
msgid "Disable Comments"
msgstr ""
-#: ../../include/features.php:232
+#: ../../include/features.php:241
msgid "Provide the option to disable comments for a post"
msgstr ""
-#: ../../include/features.php:240
+#: ../../include/features.php:249
msgid "Delayed Posting"
msgstr ""
-#: ../../include/features.php:241
+#: ../../include/features.php:250
msgid "Allow posts to be published at a later date"
msgstr ""
-#: ../../include/features.php:249
+#: ../../include/features.php:258
msgid "Content Expiration"
msgstr ""
-#: ../../include/features.php:250
+#: ../../include/features.php:259
msgid "Remove posts/comments and/or private messages at a future time"
msgstr ""
-#: ../../include/features.php:258
+#: ../../include/features.php:267
msgid "Suppress Duplicate Posts/Comments"
msgstr ""
-#: ../../include/features.php:259
+#: ../../include/features.php:268
msgid ""
"Prevent posts with identical content to be published with less than two "
"minutes in between submissions."
msgstr ""
-#: ../../include/features.php:270
+#: ../../include/features.php:279
msgid "Network and Stream Filtering"
msgstr ""
-#: ../../include/features.php:274
+#: ../../include/features.php:283
msgid "Search by Date"
msgstr ""
-#: ../../include/features.php:275
+#: ../../include/features.php:284
msgid "Ability to select posts by date ranges"
msgstr ""
-#: ../../include/features.php:284
+#: ../../include/features.php:293
msgid "Enable management and selection of privacy groups"
msgstr ""
-#: ../../include/features.php:293
+#: ../../include/features.php:302
msgid "Save search terms for re-use"
msgstr ""
-#: ../../include/features.php:301
+#: ../../include/features.php:310
msgid "Network Personal Tab"
msgstr ""
-#: ../../include/features.php:302
+#: ../../include/features.php:311
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
-#: ../../include/features.php:310
+#: ../../include/features.php:319
msgid "Network New Tab"
msgstr ""
-#: ../../include/features.php:311
+#: ../../include/features.php:320
msgid "Enable tab to display all new Network activity"
msgstr ""
-#: ../../include/features.php:319
+#: ../../include/features.php:328
msgid "Affinity Tool"
msgstr ""
-#: ../../include/features.php:320
+#: ../../include/features.php:329
msgid "Filter stream activity by depth of relationships"
msgstr ""
-#: ../../include/features.php:329
+#: ../../include/features.php:338
msgid "Show friend and connection suggestions"
msgstr ""
-#: ../../include/features.php:337
+#: ../../include/features.php:346
msgid "Connection Filtering"
msgstr ""
-#: ../../include/features.php:338
+#: ../../include/features.php:347
msgid "Filter incoming posts from connections based on keywords/content"
msgstr ""
-#: ../../include/features.php:350
+#: ../../include/features.php:359
msgid "Post/Comment Tools"
msgstr ""
-#: ../../include/features.php:354
+#: ../../include/features.php:363
msgid "Community Tagging"
msgstr ""
-#: ../../include/features.php:355
+#: ../../include/features.php:364
msgid "Ability to tag existing posts"
msgstr ""
-#: ../../include/features.php:363
+#: ../../include/features.php:372
msgid "Post Categories"
msgstr ""
-#: ../../include/features.php:364
+#: ../../include/features.php:373
msgid "Add categories to your posts"
msgstr ""
-#: ../../include/features.php:372
+#: ../../include/features.php:381
msgid "Emoji Reactions"
msgstr ""
-#: ../../include/features.php:373
+#: ../../include/features.php:382
msgid "Add emoji reaction ability to posts"
msgstr ""
-#: ../../include/features.php:382
+#: ../../include/features.php:391
msgid "Ability to file posts under folders"
msgstr ""
-#: ../../include/features.php:390
+#: ../../include/features.php:399
msgid "Dislike Posts"
msgstr ""
-#: ../../include/features.php:391
+#: ../../include/features.php:400
msgid "Ability to dislike posts/comments"
msgstr ""
-#: ../../include/features.php:399
+#: ../../include/features.php:408
msgid "Star Posts"
msgstr ""
-#: ../../include/features.php:400
+#: ../../include/features.php:409
msgid "Ability to mark special posts with a star indicator"
msgstr ""
-#: ../../include/features.php:408
+#: ../../include/features.php:417
msgid "Tag Cloud"
msgstr ""
-#: ../../include/features.php:409
+#: ../../include/features.php:418
msgid "Provide a personal tag cloud on your channel page"
msgstr ""
-#: ../../include/features.php:421
+#: ../../include/features.php:430
msgid "Premium Channel"
msgstr ""
-#: ../../include/features.php:422
+#: ../../include/features.php:431
msgid ""
"Allows you to set restrictions and terms on those that connect with your "
"channel"
@@ -13657,8 +13673,7 @@ msgid "Update Error at %s"
msgstr ""
#: ../../boot.php:1712
-msgid ""
-"Create an account to access services and applications within the Hubzilla"
+msgid "Create an account to access services and applications"
msgstr ""
#: ../../boot.php:1734
diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po
index cb90ff7e4..be55236ba 100644
--- a/view/es-es/hmessages.po
+++ b/view/es-es/hmessages.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Redmatrix\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-01-20 00:06-0800\n"
-"PO-Revision-Date: 2017-01-22 10:56+0000\n"
+"POT-Creation-Date: 2017-02-03 00:04-0800\n"
+"PO-Revision-Date: 2017-02-12 08:20+0000\n"
"Last-Translator: Manuel Jiménez Friaza <mjfriaza@openmailbox.org>\n"
"Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n"
"MIME-Version: 1.0\n"
@@ -23,77 +23,77 @@ msgstr ""
"Language: es_ES\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../../Zotlabs/Access/PermissionRoles.php:227
+#: ../../Zotlabs/Access/PermissionRoles.php:248
#: ../../include/permissions.php:945
msgid "Social Networking"
msgstr "Redes sociales"
-#: ../../Zotlabs/Access/PermissionRoles.php:228
+#: ../../Zotlabs/Access/PermissionRoles.php:249
#: ../../include/permissions.php:945
msgid "Social - Mostly Public"
msgstr "Social - Público en su mayor parte"
-#: ../../Zotlabs/Access/PermissionRoles.php:229
+#: ../../Zotlabs/Access/PermissionRoles.php:250
#: ../../include/permissions.php:945
msgid "Social - Restricted"
msgstr "Social - Restringido"
-#: ../../Zotlabs/Access/PermissionRoles.php:230
+#: ../../Zotlabs/Access/PermissionRoles.php:251
#: ../../include/permissions.php:945
msgid "Social - Private"
msgstr "Social - Privado"
-#: ../../Zotlabs/Access/PermissionRoles.php:233
+#: ../../Zotlabs/Access/PermissionRoles.php:254
#: ../../include/permissions.php:946
msgid "Community Forum"
msgstr "Foro de discusión"
-#: ../../Zotlabs/Access/PermissionRoles.php:234
+#: ../../Zotlabs/Access/PermissionRoles.php:255
#: ../../include/permissions.php:946
msgid "Forum - Mostly Public"
msgstr "Foro - Público en su mayor parte"
-#: ../../Zotlabs/Access/PermissionRoles.php:235
+#: ../../Zotlabs/Access/PermissionRoles.php:256
#: ../../include/permissions.php:946
msgid "Forum - Restricted"
msgstr "Foro - Restringido"
-#: ../../Zotlabs/Access/PermissionRoles.php:236
+#: ../../Zotlabs/Access/PermissionRoles.php:257
#: ../../include/permissions.php:946
msgid "Forum - Private"
msgstr "Foro - Privado"
-#: ../../Zotlabs/Access/PermissionRoles.php:239
+#: ../../Zotlabs/Access/PermissionRoles.php:260
#: ../../include/permissions.php:947
msgid "Feed Republish"
msgstr "Republicar un \"feed\""
-#: ../../Zotlabs/Access/PermissionRoles.php:240
+#: ../../Zotlabs/Access/PermissionRoles.php:261
#: ../../include/permissions.php:947
msgid "Feed - Mostly Public"
msgstr "Feed - Público en su mayor parte"
-#: ../../Zotlabs/Access/PermissionRoles.php:241
+#: ../../Zotlabs/Access/PermissionRoles.php:262
#: ../../include/permissions.php:947
msgid "Feed - Restricted"
msgstr "Feed - Restringido"
-#: ../../Zotlabs/Access/PermissionRoles.php:244
+#: ../../Zotlabs/Access/PermissionRoles.php:265
#: ../../include/permissions.php:948
msgid "Special Purpose"
msgstr "Propósito especial"
-#: ../../Zotlabs/Access/PermissionRoles.php:245
+#: ../../Zotlabs/Access/PermissionRoles.php:266
#: ../../include/permissions.php:948
msgid "Special - Celebrity/Soapbox"
msgstr "Especial - Celebridad / Tribuna improvisada"
-#: ../../Zotlabs/Access/PermissionRoles.php:246
+#: ../../Zotlabs/Access/PermissionRoles.php:267
#: ../../include/permissions.php:948
msgid "Special - Group Repository"
msgstr "Especial - Repositorio de grupo"
-#: ../../Zotlabs/Access/PermissionRoles.php:249
+#: ../../Zotlabs/Access/PermissionRoles.php:270
#: ../../Zotlabs/Module/Register.php:213 ../../Zotlabs/Module/Connedit.php:882
#: ../../Zotlabs/Module/New_channel.php:132
#: ../../Zotlabs/Module/Settings/Channel.php:445
@@ -106,11 +106,31 @@ msgstr "Especial - Repositorio de grupo"
msgid "Other"
msgstr "Otro"
-#: ../../Zotlabs/Access/PermissionRoles.php:250
+#: ../../Zotlabs/Access/PermissionRoles.php:271
#: ../../include/permissions.php:949
msgid "Custom/Expert Mode"
msgstr "Modo personalizado/experto"
+#: ../../Zotlabs/Access/PermissionRoles.php:283
+msgctxt "permcat"
+msgid "follower"
+msgstr "seguidor"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:288
+msgctxt "permcat"
+msgid "contributor"
+msgstr "contribuidor"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:292
+msgctxt "permcat"
+msgid "trusted"
+msgstr "de confianza"
+
+#: ../../Zotlabs/Access/PermissionRoles.php:297
+msgctxt "permcat"
+msgid "moderator"
+msgstr "moderador"
+
#: ../../Zotlabs/Access/Permissions.php:46
msgid "Can view my channel stream and posts"
msgstr "Pueden verse la actividad y publicaciones de mi canal"
@@ -140,38 +160,46 @@ msgid "Can view my channel webpages"
msgstr "Pueden verse las páginas personales de mi canal"
#: ../../Zotlabs/Access/Permissions.php:53
+msgid "Can view my wiki pages"
+msgstr "Pueden verse mis páginas wiki"
+
+#: ../../Zotlabs/Access/Permissions.php:54
msgid "Can create/edit my channel webpages"
msgstr "Pueden crearse / modificarse páginas personales en mi canal"
-#: ../../Zotlabs/Access/Permissions.php:54
+#: ../../Zotlabs/Access/Permissions.php:55
+msgid "Can write to my wiki pages"
+msgstr "Se pueden modificar las páginas de mi wiki"
+
+#: ../../Zotlabs/Access/Permissions.php:56
msgid "Can post on my channel (wall) page"
msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)"
-#: ../../Zotlabs/Access/Permissions.php:55 ../../include/permissions.php:44
+#: ../../Zotlabs/Access/Permissions.php:57 ../../include/permissions.php:44
msgid "Can comment on or like my posts"
msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'."
-#: ../../Zotlabs/Access/Permissions.php:56 ../../include/permissions.php:45
+#: ../../Zotlabs/Access/Permissions.php:58 ../../include/permissions.php:45
msgid "Can send me private mail messages"
msgstr "Se me pueden enviar mensajes privados"
-#: ../../Zotlabs/Access/Permissions.php:57
+#: ../../Zotlabs/Access/Permissions.php:59
msgid "Can like/dislike profiles and profile things"
msgstr "Se puede mostrar agrado o desagrado (Me gusta / No me gusta) en mis perfiles y sus distintos apartados"
-#: ../../Zotlabs/Access/Permissions.php:58
+#: ../../Zotlabs/Access/Permissions.php:60
msgid "Can forward to all my channel connections via @+ mentions in posts"
msgstr "Pueden reenviarse publicaciones a todas las conexiones de mi canal a través de @+ menciones en las entradas"
-#: ../../Zotlabs/Access/Permissions.php:59
+#: ../../Zotlabs/Access/Permissions.php:61
msgid "Can chat with me"
msgstr "Se puede chatear conmigo"
-#: ../../Zotlabs/Access/Permissions.php:60 ../../include/permissions.php:53
+#: ../../Zotlabs/Access/Permissions.php:62 ../../include/permissions.php:53
msgid "Can source my public posts in derived channels"
msgstr "Pueden utilizarse mis entradas públicas como origen de contenidos en canales derivados"
-#: ../../Zotlabs/Access/Permissions.php:61
+#: ../../Zotlabs/Access/Permissions.php:63
msgid "Can administer my channel"
msgstr "Se puede administrar mi canal"
@@ -205,18 +233,18 @@ msgstr "Programar bandeja de salida"
#: ../../Zotlabs/Storage/Browser.php:163 ../../Zotlabs/Module/Photos.php:784
#: ../../Zotlabs/Module/Photos.php:1244
-#: ../../Zotlabs/Module/Embedphotos.php:145 ../../Zotlabs/Lib/Apps.php:526
-#: ../../Zotlabs/Lib/Apps.php:604
+#: ../../Zotlabs/Module/Embedphotos.php:145 ../../Zotlabs/Lib/Apps.php:549
+#: ../../Zotlabs/Lib/Apps.php:627
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:745
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:746
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:753
-#: ../../include/conversation.php:1177 ../../include/widgets.php:1695
+#: ../../include/conversation.php:1177 ../../include/widgets.php:1706
msgid "Unknown"
msgstr "Desconocido"
#: ../../Zotlabs/Storage/Browser.php:224 ../../Zotlabs/Module/Fbrowser.php:85
-#: ../../Zotlabs/Lib/Apps.php:219 ../../include/nav.php:96
-#: ../../include/conversation.php:1843
+#: ../../Zotlabs/Lib/Apps.php:221 ../../include/conversation.php:1843
+#: ../../include/nav.php:96
msgid "Files"
msgstr "Ficheros"
@@ -246,25 +274,25 @@ msgstr "Crear"
#: ../../Zotlabs/Module/Embedphotos.php:157
#: ../../extend/addon/addon/cdav/include/widgets.php:132
#: ../../extend/addon/addon/cdav/include/widgets.php:168
-#: ../../include/widgets.php:1708
+#: ../../include/widgets.php:1719
msgid "Upload"
msgstr "Subir"
#: ../../Zotlabs/Storage/Browser.php:233
#: ../../Zotlabs/Module/Admin/Channels.php:159
#: ../../Zotlabs/Module/Connedit.php:870
-#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Wiki.php:163
+#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Wiki.php:170
#: ../../Zotlabs/Module/Settings/Oauth.php:89
#: ../../Zotlabs/Module/Settings/Oauth.php:115
#: ../../Zotlabs/Module/Chat.php:250
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1136
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:164
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:172
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:156
-#: ../../include/widgets.php:971
+#: ../../include/widgets.php:982
msgid "Name"
msgstr "Nombre"
-#: ../../Zotlabs/Storage/Browser.php:234 ../../Zotlabs/Module/Wiki.php:164
+#: ../../Zotlabs/Storage/Browser.php:234 ../../Zotlabs/Module/Wiki.php:171
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:157
msgid "Type"
msgstr "Tipo"
@@ -287,18 +315,18 @@ msgstr "Última modificación"
#: ../../Zotlabs/Module/Editlayout.php:114
#: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112
#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:192
-#: ../../Zotlabs/Module/Webpages.php:244 ../../Zotlabs/Module/Wiki.php:156
-#: ../../Zotlabs/Module/Wiki.php:266
+#: ../../Zotlabs/Module/Webpages.php:244 ../../Zotlabs/Module/Wiki.php:163
+#: ../../Zotlabs/Module/Wiki.php:273
#: ../../Zotlabs/Module/Settings/Oauth.php:149
#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/ThreadItem.php:106
-#: ../../Zotlabs/Lib/Apps.php:346
+#: ../../Zotlabs/Lib/Apps.php:351
#: ../../extend/addon/addon/cdav/include/widgets.php:125
#: ../../extend/addon/addon/cdav/include/widgets.php:161
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:149
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:251
#: ../../include/menu.php:113 ../../include/page_widgets.php:9
-#: ../../include/page_widgets.php:39 ../../include/channel.php:961
-#: ../../include/channel.php:965
+#: ../../include/page_widgets.php:39 ../../include/channel.php:1039
+#: ../../include/channel.php:1043
msgid "Edit"
msgstr "Editar"
@@ -315,7 +343,7 @@ msgstr "Editar"
#: ../../Zotlabs/Module/Webpages.php:246
#: ../../Zotlabs/Module/Settings/Oauth.php:150
#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/ThreadItem.php:126
-#: ../../Zotlabs/Lib/Apps.php:347
+#: ../../Zotlabs/Lib/Apps.php:352
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:864
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1153
#: ../../include/conversation.php:656
@@ -384,16 +412,18 @@ msgstr "Permiso denegado"
#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Group.php:13
#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76
#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115
-#: ../../Zotlabs/Module/Appman.php:77 ../../Zotlabs/Module/Mood.php:116
+#: ../../Zotlabs/Module/Appman.php:81 ../../Zotlabs/Module/Mood.php:116
#: ../../Zotlabs/Module/Profiles.php:197 ../../Zotlabs/Module/Profiles.php:635
#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Invite.php:17
#: ../../Zotlabs/Module/Invite.php:94 ../../Zotlabs/Module/New_channel.php:77
#: ../../Zotlabs/Module/New_channel.php:104 ../../Zotlabs/Module/Setup.php:212
#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Module/Poke.php:137
-#: ../../Zotlabs/Module/Profile.php:70 ../../Zotlabs/Module/Profile.php:87
-#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80
-#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78
-#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Rate.php:113
+#: ../../Zotlabs/Module/Item.php:220 ../../Zotlabs/Module/Item.php:230
+#: ../../Zotlabs/Module/Item.php:1067 ../../Zotlabs/Module/Profile.php:70
+#: ../../Zotlabs/Module/Profile.php:87 ../../Zotlabs/Module/Blocks.php:73
+#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71
+#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89
+#: ../../Zotlabs/Module/Rate.php:113
#: ../../Zotlabs/Module/Profile_photo.php:273
#: ../../Zotlabs/Module/Profile_photo.php:286
#: ../../Zotlabs/Module/Events.php:271 ../../Zotlabs/Module/Common.php:39
@@ -402,17 +432,16 @@ msgstr "Permiso denegado"
#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Message.php:18
#: ../../Zotlabs/Module/Service_limits.php:11
#: ../../Zotlabs/Module/Webpages.php:116
-#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Wiki.php:207
-#: ../../Zotlabs/Module/Wiki.php:306 ../../Zotlabs/Module/Sources.php:74
+#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Wiki.php:49
+#: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Wiki.php:313
+#: ../../Zotlabs/Module/Wiki.php:318 ../../Zotlabs/Module/Sources.php:74
#: ../../Zotlabs/Module/Suggest.php:30 ../../Zotlabs/Module/Thing.php:274
#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335
#: ../../Zotlabs/Module/Mail.php:164
#: ../../Zotlabs/Module/Viewconnections.php:28
#: ../../Zotlabs/Module/Viewconnections.php:33
#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100
-#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Item.php:220
-#: ../../Zotlabs/Module/Item.php:230 ../../Zotlabs/Module/Item.php:1067
-#: ../../Zotlabs/Lib/Chatroom.php:137
+#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137
#: ../../extend/addon/addon/friendica/dfrn_confirm.php:55
#: ../../extend/addon/addon/keepout/keepout.php:36
#: ../../extend/addon/addon/pumpio/pumpio.php:40
@@ -426,13 +455,13 @@ msgstr "Permiso denegado"
#: ../../include/attach.php:355 ../../include/attach.php:362
#: ../../include/attach.php:439 ../../include/attach.php:906
#: ../../include/attach.php:977 ../../include/attach.php:1135
-#: ../../include/items.php:3429 ../../include/photos.php:27
+#: ../../include/photos.php:27 ../../include/items.php:3445
msgid "Permission denied."
msgstr "Acceso denegado."
-#: ../../Zotlabs/Web/Router.php:157 ../../Zotlabs/Module/Display.php:124
+#: ../../Zotlabs/Web/Router.php:152 ../../Zotlabs/Module/Display.php:124
#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Block.php:79
-#: ../../Zotlabs/Lib/NativeWikiPage.php:496 ../../include/help.php:66
+#: ../../Zotlabs/Lib/NativeWikiPage.php:502 ../../include/help.php:66
msgid "Page not found."
msgstr "Página no encontrada."
@@ -444,7 +473,7 @@ msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión
#: ../../Zotlabs/Zot/Auth.php:250
#: ../../extend/addon/addon/openid/Mod_Openid.php:76
-#: ../../extend/addon/addon/openid/Mod_Openid.php:183
+#: ../../extend/addon/addon/openid/Mod_Openid.php:178
#, php-format
msgid "Welcome %s. Remote authentication successful."
msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."
@@ -456,7 +485,7 @@ msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo
#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12
#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33
#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Webpages.php:33
-#: ../../include/channel.php:862
+#: ../../include/channel.php:940
msgid "Requested profile is not available."
msgstr "El perfil solicitado no está disponible."
@@ -473,10 +502,10 @@ msgid "Public access denied."
msgstr "Acceso público denegado."
#: ../../Zotlabs/Module/Display.php:38 ../../Zotlabs/Module/Admin.php:60
-#: ../../Zotlabs/Module/Admin/Plugins.php:254
#: ../../Zotlabs/Module/Admin/Themes.php:69
+#: ../../Zotlabs/Module/Admin/Plugins.php:254
#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Thing.php:89
-#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3350
+#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3366
msgid "Item not found."
msgstr "Elemento no encontrado."
@@ -610,8 +639,8 @@ msgstr "Registro"
msgid "Membership on this site is by invitation only."
msgstr "Para registrarse en este sitio es necesaria una invitación."
-#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:150
-#: ../../boot.php:1704
+#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152
+#: ../../boot.php:1713
msgid "Register"
msgstr "Registrarse"
@@ -699,9 +728,9 @@ msgstr "Crear un mensaje de estado para esta subida"
#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:681
#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Events.php:470
#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63
-#: ../../Zotlabs/Module/Wiki.php:171
-#: ../../Zotlabs/Module/Settings/Channel.php:289
+#: ../../Zotlabs/Module/Wiki.php:178
#: ../../Zotlabs/Module/Settings/Display.php:103
+#: ../../Zotlabs/Module/Settings/Channel.php:289
#: ../../extend/addon/addon/dwpost/dwpost.php:73
#: ../../extend/addon/addon/dwpost/dwpost.php:85
#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120
@@ -750,7 +779,7 @@ msgstr "Crear un mensaje de estado para esta subida"
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:164
#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111
-#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1726
+#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1736
msgid "No"
msgstr "No"
@@ -763,9 +792,9 @@ msgstr "No"
#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:681
#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Events.php:470
#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63
-#: ../../Zotlabs/Module/Wiki.php:171
-#: ../../Zotlabs/Module/Settings/Channel.php:289
+#: ../../Zotlabs/Module/Wiki.php:178
#: ../../Zotlabs/Module/Settings/Display.php:103
+#: ../../Zotlabs/Module/Settings/Channel.php:289
#: ../../extend/addon/addon/dwpost/dwpost.php:73
#: ../../extend/addon/addon/dwpost/dwpost.php:85
#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120
@@ -814,7 +843,7 @@ msgstr "No"
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:164
#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144
#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111
-#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1726
+#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1736
msgid "Yes"
msgstr "Sí"
@@ -839,42 +868,42 @@ msgstr "Permisos"
#: ../../Zotlabs/Module/Connect.php:98
#: ../../Zotlabs/Module/Admin/Features.php:66
#: ../../Zotlabs/Module/Admin/Logs.php:84
-#: ../../Zotlabs/Module/Admin/Plugins.php:429
#: ../../Zotlabs/Module/Admin/Profs.php:157
#: ../../Zotlabs/Module/Admin/Security.php:104
#: ../../Zotlabs/Module/Admin/Themes.php:156
#: ../../Zotlabs/Module/Admin/Account_edit.php:74
#: ../../Zotlabs/Module/Admin/Accounts.php:166
#: ../../Zotlabs/Module/Admin/Channels.php:147
-#: ../../Zotlabs/Module/Admin/Site.php:260 ../../Zotlabs/Module/Locs.php:121
-#: ../../Zotlabs/Module/Connedit.php:850
+#: ../../Zotlabs/Module/Admin/Site.php:260
+#: ../../Zotlabs/Module/Admin/Plugins.php:433
+#: ../../Zotlabs/Module/Locs.php:121 ../../Zotlabs/Module/Connedit.php:850
#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Cal.php:342
#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Import_items.php:122
-#: ../../Zotlabs/Module/Import.php:546 ../../Zotlabs/Module/Mitem.php:243
-#: ../../Zotlabs/Module/Appman.php:129 ../../Zotlabs/Module/Mood.php:139
+#: ../../Zotlabs/Module/Import.php:557 ../../Zotlabs/Module/Mitem.php:243
+#: ../../Zotlabs/Module/Appman.php:133 ../../Zotlabs/Module/Mood.php:139
#: ../../Zotlabs/Module/Profiles.php:721 ../../Zotlabs/Module/Invite.php:149
#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:357
#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107
#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Events.php:493
-#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Wiki.php:160
+#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Wiki.php:167
#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149
#: ../../Zotlabs/Module/Settings/Features.php:47
#: ../../Zotlabs/Module/Settings/Oauth.php:87
#: ../../Zotlabs/Module/Settings/Account.php:118
-#: ../../Zotlabs/Module/Settings/Channel.php:455
#: ../../Zotlabs/Module/Settings/Display.php:196
#: ../../Zotlabs/Module/Settings/Tokens.php:167
+#: ../../Zotlabs/Module/Settings/Featured.php:50
+#: ../../Zotlabs/Module/Settings/Channel.php:458
#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370
#: ../../Zotlabs/Module/Mail.php:413 ../../Zotlabs/Module/Chat.php:196
#: ../../Zotlabs/Module/Chat.php:241 ../../Zotlabs/Module/Xchan.php:15
#: ../../Zotlabs/Lib/ThreadItem.php:731
#: ../../extend/addon/addon/chords/Mod_Chords.php:60
-#: ../../extend/addon/addon/diaspora/diaspora.php:710
+#: ../../extend/addon/addon/diaspora/diaspora.php:716
#: ../../extend/addon/addon/dwpost/dwpost.php:89
#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:124
#: ../../extend/addon/addon/friendica/friendica.php:128
#: ../../extend/addon/addon/frphotos/frphotos.php:96
-#: ../../extend/addon/addon/gnusoc/gnusoc.php:133
#: ../../extend/addon/addon/hubwall/hubwall.php:95
#: ../../extend/addon/addon/ijpost/ijpost.php:89
#: ../../extend/addon/addon/irc/irc.php:53
@@ -914,7 +943,8 @@ msgstr "Permisos"
#: ../../extend/addon/addon/likebanner/likebanner.php:57
#: ../../extend/addon/addon/mailtest/mailtest.php:100
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:153
-#: ../../include/js_strings.php:22 ../../include/widgets.php:799
+#: ../../extend/addon/addon/gnusoc/gnusoc.php:133
+#: ../../include/widgets.php:807 ../../include/js_strings.php:22
#: ../../view/theme/redbasic/php/config.php:106
msgid "Submit"
msgstr "Enviar"
@@ -936,12 +966,12 @@ msgid "Show Oldest First"
msgstr "Mostrar lo más antiguo primero"
#: ../../Zotlabs/Module/Photos.php:778 ../../Zotlabs/Module/Photos.php:1335
-#: ../../Zotlabs/Module/Embedphotos.php:139 ../../include/widgets.php:1689
+#: ../../Zotlabs/Module/Embedphotos.php:139 ../../include/widgets.php:1700
msgid "View Photo"
msgstr "Ver foto"
#: ../../Zotlabs/Module/Photos.php:809
-#: ../../Zotlabs/Module/Embedphotos.php:155 ../../include/widgets.php:1706
+#: ../../Zotlabs/Module/Embedphotos.php:155 ../../include/widgets.php:1717
msgid "Edit Album"
msgstr "Editar álbum"
@@ -984,7 +1014,7 @@ msgid "Next"
msgstr "Siguiente"
#: ../../Zotlabs/Module/Photos.php:984
-#: ../../Zotlabs/Module/Admin/Plugins.php:445
+#: ../../Zotlabs/Module/Admin/Plugins.php:450
#: ../../Zotlabs/Module/Tagrm.php:137
#: ../../extend/addon/addon/superblock/superblock.php:114
msgid "Remove"
@@ -1062,7 +1092,7 @@ msgstr "Comentar"
#: ../../Zotlabs/Module/Photos.php:1094 ../../Zotlabs/Module/Events.php:478
#: ../../Zotlabs/Module/Webpages.php:251 ../../Zotlabs/Lib/ThreadItem.php:740
-#: ../../include/page_widgets.php:43 ../../include/conversation.php:1347
+#: ../../include/conversation.php:1347 ../../include/page_widgets.php:43
msgid "Preview"
msgstr "Previsualizar"
@@ -1113,8 +1143,8 @@ msgid "View all"
msgstr "Ver todo"
#: ../../Zotlabs/Module/Photos.php:1131 ../../Zotlabs/Lib/ThreadItem.php:190
-#: ../../include/taxonomy.php:403 ../../include/channel.php:1190
-#: ../../include/conversation.php:1952
+#: ../../include/taxonomy.php:403 ../../include/conversation.php:1952
+#: ../../include/channel.php:1268
msgctxt "noun"
msgid "Like"
msgid_plural "Likes"
@@ -1312,14 +1342,14 @@ msgid "Your software should be updated"
msgstr "Debe actualizar su software"
#: ../../Zotlabs/Module/Admin.php:137 ../../Zotlabs/Module/Admin/Logs.php:82
-#: ../../Zotlabs/Module/Admin/Plugins.php:336
-#: ../../Zotlabs/Module/Admin/Plugins.php:427
#: ../../Zotlabs/Module/Admin/Security.php:86
#: ../../Zotlabs/Module/Admin/Themes.php:120
#: ../../Zotlabs/Module/Admin/Themes.php:154
#: ../../Zotlabs/Module/Admin/Accounts.php:164
#: ../../Zotlabs/Module/Admin/Channels.php:145
#: ../../Zotlabs/Module/Admin/Site.php:258
+#: ../../Zotlabs/Module/Admin/Plugins.php:336
+#: ../../Zotlabs/Module/Admin/Plugins.php:431
msgid "Administration"
msgstr "Administración"
@@ -1405,8 +1435,8 @@ msgstr "- seleccionar -"
#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin/Profs.php:74
#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32
-#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:1003
-#: ../../include/text.php:1015 ../../include/widgets.php:202
+#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:202
+#: ../../include/text.php:1003 ../../include/text.php:1015
msgid "Save"
msgstr "Guardar"
@@ -1462,7 +1492,7 @@ msgstr "Nuevas"
#: ../../Zotlabs/Module/Connections.php:92
#: ../../Zotlabs/Module/Connections.php:107
-#: ../../Zotlabs/Module/Connedit.php:689 ../../include/widgets.php:536
+#: ../../Zotlabs/Module/Connedit.php:689 ../../include/widgets.php:544
msgid "All"
msgstr "Todos/as"
@@ -1558,15 +1588,15 @@ msgstr "Ignorar"
msgid "Recent activity"
msgstr "Actividad reciente"
-#: ../../Zotlabs/Module/Connections.php:312 ../../Zotlabs/Lib/Apps.php:211
-#: ../../include/nav.php:189 ../../include/text.php:932
+#: ../../Zotlabs/Module/Connections.php:312 ../../Zotlabs/Lib/Apps.php:213
+#: ../../include/text.php:932 ../../include/nav.php:191
msgid "Connections"
msgstr "Conexiones"
#: ../../Zotlabs/Module/Connections.php:316 ../../Zotlabs/Module/Search.php:44
-#: ../../Zotlabs/Lib/Apps.php:232 ../../include/acl_selectors.php:203
-#: ../../include/nav.php:168 ../../include/text.php:1002
-#: ../../include/text.php:1014 ../../include/widgets.php:316
+#: ../../Zotlabs/Lib/Apps.php:234 ../../include/acl_selectors.php:203
+#: ../../include/widgets.php:316 ../../include/text.php:1002
+#: ../../include/text.php:1014 ../../include/nav.php:170
msgid "Search"
msgstr "Buscar"
@@ -1614,30 +1644,30 @@ msgstr "La carga de la imagen ha fallado."
msgid "Unable to process image."
msgstr "No ha sido posible procesar la imagen."
-#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4260
+#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4276
msgid "female"
msgstr "mujer"
-#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4261
+#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4277
#, php-format
msgid "%1$s updated her %2$s"
msgstr "%1$s ha actualizado su %2$s"
-#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4262
+#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4278
msgid "male"
msgstr "hombre"
-#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4263
+#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4279
#, php-format
msgid "%1$s updated his %2$s"
msgstr "%1$s ha actualizado su %2$s"
-#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4265
+#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4281
#, php-format
msgid "%1$s updated their %2$s"
msgstr "%1$s ha actualizado su %2$s"
-#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1681
+#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1759
msgid "cover photo"
msgstr "Imagen de portada del perfil"
@@ -1718,8 +1748,8 @@ msgstr "Gestionar las funcionalidades"
msgid "Log settings updated."
msgstr "Actualizado el informe de configuraciones."
-#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1599
-#: ../../include/widgets.php:1609
+#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1610
+#: ../../include/widgets.php:1620
msgid "Logs"
msgstr "Informes"
@@ -1745,146 +1775,6 @@ msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativ
msgid "Log level"
msgstr "Nivel de depuración"
-#: ../../Zotlabs/Module/Admin/Plugins.php:284
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Extensión %s desactivada."
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:289
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Extensión %s activada."
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:305
-#: ../../Zotlabs/Module/Admin/Themes.php:93
-msgid "Disable"
-msgstr "Desactivar"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:308
-#: ../../Zotlabs/Module/Admin/Themes.php:95
-msgid "Enable"
-msgstr "Activar"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:337
-#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1577
-msgid "Plugins"
-msgstr "Extensiones (plugins)"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:338
-#: ../../Zotlabs/Module/Admin/Themes.php:122
-msgid "Toggle"
-msgstr "Cambiar"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:339
-#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:218
-#: ../../include/nav.php:211 ../../include/widgets.php:683
-msgid "Settings"
-msgstr "Ajustes"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:346
-#: ../../Zotlabs/Module/Admin/Themes.php:132
-msgid "Author: "
-msgstr "Autor:"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:347
-#: ../../Zotlabs/Module/Admin/Themes.php:133
-msgid "Maintainer: "
-msgstr "Mantenedor:"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:348
-msgid "Minimum project version: "
-msgstr "Versión mínima del proyecto:"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:349
-msgid "Maximum project version: "
-msgstr "Versión máxima del proyecto:"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:350
-msgid "Minimum PHP version: "
-msgstr "Versión mínima de PHP:"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:351
-msgid "Compatible Server Roles: "
-msgstr "Configuraciones compatibles con este servidor:"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:352
-msgid "Requires: "
-msgstr "Se requiere:"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:353
-#: ../../Zotlabs/Module/Admin/Plugins.php:433
-msgid "Disabled - version incompatibility"
-msgstr "Deshabilitado - versiones incompatibles"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:402
-msgid "Enter the public git repository URL of the plugin repo."
-msgstr "Escriba la URL pública del repositorio git del plugin."
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:403
-msgid "Plugin repo git URL"
-msgstr "URL del repositorio git del plugin"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:404
-msgid "Custom repo name"
-msgstr "Nombre personalizado del repositorio"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:404
-msgid "(optional)"
-msgstr "(opcional)"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:405
-msgid "Download Plugin Repo"
-msgstr "Descargar el repositorio"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:412
-msgid "Install new repo"
-msgstr "Instalar un nuevo repositorio"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:339
-msgid "Install"
-msgstr "Instalar"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:414
-#: ../../Zotlabs/Module/Connedit.php:888 ../../Zotlabs/Module/Fbrowser.php:66
-#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Wiki.php:256
-#: ../../Zotlabs/Module/Wiki.php:281
-#: ../../Zotlabs/Module/Settings/Oauth.php:88
-#: ../../Zotlabs/Module/Settings/Oauth.php:114
-#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138
-#: ../../extend/addon/addon/friendica/dfrn_request.php:879
-#: ../../extend/addon/addon/js_upload/js_upload.php:46
-#: ../../extend/addon/addon/cdav/Mod_Cdav.php:866
-#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1154
-#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:243
-#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:266
-#: ../../include/conversation.php:1394 ../../include/conversation.php:1443
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:435
-msgid "Manage Repos"
-msgstr "Gestionar los repositorios"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:436
-msgid "Installed Plugin Repositories"
-msgstr "Repositorios de los plugins instalados"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:437
-msgid "Install a New Plugin Repository"
-msgstr "Instalar un nuevo repositorio de plugins"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:443
-#: ../../Zotlabs/Module/Connedit.php:886
-#: ../../Zotlabs/Module/Settings/Oauth.php:42
-#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:339
-#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1152
-msgid "Update"
-msgstr "Actualizar"
-
-#: ../../Zotlabs/Module/Admin/Plugins.php:444
-msgid "Switch branch"
-msgstr "Cambiar la rama"
-
#: ../../Zotlabs/Module/Admin/Profs.php:69
msgid "New Profile Field"
msgstr "Nuevo campo en el perfil"
@@ -1932,7 +1822,7 @@ msgstr "Definición del campo no encontrada"
msgid "Edit Profile Field"
msgstr "Modificar el campo del perfil"
-#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1580
+#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1591
msgid "Profile Fields"
msgstr "Campos del perfil"
@@ -1960,34 +1850,6 @@ msgstr "Campos personalizados"
msgid "Create Custom Field"
msgstr "Crear un campo personalizado"
-#: ../../Zotlabs/Module/Admin/Queue.php:36
-msgid "Queue Statistics"
-msgstr "Estadísticas de la cola"
-
-#: ../../Zotlabs/Module/Admin/Queue.php:37
-msgid "Total Entries"
-msgstr "Total de entradas"
-
-#: ../../Zotlabs/Module/Admin/Queue.php:38
-msgid "Priority"
-msgstr "Prioridad"
-
-#: ../../Zotlabs/Module/Admin/Queue.php:39
-msgid "Destination URL"
-msgstr "Dirección de destino"
-
-#: ../../Zotlabs/Module/Admin/Queue.php:40
-msgid "Mark hub permanently offline"
-msgstr "Marcar el servidor como permanentemente fuera de línea"
-
-#: ../../Zotlabs/Module/Admin/Queue.php:41
-msgid "Empty queue for this hub"
-msgstr "Vaciar la cola para este servidor"
-
-#: ../../Zotlabs/Module/Admin/Queue.php:42
-msgid "Last known contact"
-msgstr "Último contacto conocido"
-
#: ../../Zotlabs/Module/Admin/Security.php:77
msgid ""
"By default, unfiltered HTML is allowed in embedded media. This is inherently"
@@ -2012,7 +1874,7 @@ msgid ""
"embedded content from that site is explicitly blocked."
msgstr "El resto del contenido incrustado se filtrará, <strong>excepto</ strong> si el contenido incorporado desde ese sitio está bloqueado de forma explícita."
-#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1575
+#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1586
msgid "Security"
msgstr "Seguridad"
@@ -2108,15 +1970,46 @@ msgstr "Ajustes del tema actualizados."
msgid "No themes found."
msgstr "No se han encontrado temas."
+#: ../../Zotlabs/Module/Admin/Themes.php:93
+#: ../../Zotlabs/Module/Admin/Plugins.php:305
+msgid "Disable"
+msgstr "Desactivar"
+
+#: ../../Zotlabs/Module/Admin/Themes.php:95
+#: ../../Zotlabs/Module/Admin/Plugins.php:308
+msgid "Enable"
+msgstr "Activar"
+
#: ../../Zotlabs/Module/Admin/Themes.php:114
msgid "Screenshot"
msgstr "Instantánea de pantalla"
#: ../../Zotlabs/Module/Admin/Themes.php:121
-#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1578
+#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1589
msgid "Themes"
msgstr "Temas"
+#: ../../Zotlabs/Module/Admin/Themes.php:122
+#: ../../Zotlabs/Module/Admin/Plugins.php:338
+msgid "Toggle"
+msgstr "Cambiar"
+
+#: ../../Zotlabs/Module/Admin/Themes.php:123
+#: ../../Zotlabs/Module/Admin/Plugins.php:339 ../../Zotlabs/Lib/Apps.php:220
+#: ../../include/widgets.php:691 ../../include/nav.php:213
+msgid "Settings"
+msgstr "Ajustes"
+
+#: ../../Zotlabs/Module/Admin/Themes.php:132
+#: ../../Zotlabs/Module/Admin/Plugins.php:346
+msgid "Author: "
+msgstr "Autor:"
+
+#: ../../Zotlabs/Module/Admin/Themes.php:133
+#: ../../Zotlabs/Module/Admin/Plugins.php:347
+msgid "Maintainer: "
+msgstr "Mantenedor:"
+
#: ../../Zotlabs/Module/Admin/Themes.php:160
msgid "[Experimental]"
msgstr "[Experimental]"
@@ -2196,7 +2089,7 @@ msgid "Account '%s' unblocked"
msgstr "La cuenta '%s' ha sido desbloqueada"
#: ../../Zotlabs/Module/Admin/Accounts.php:165
-#: ../../Zotlabs/Module/Admin/Accounts.php:178 ../../include/widgets.php:1573
+#: ../../Zotlabs/Module/Admin/Accounts.php:178 ../../include/widgets.php:1584
msgid "Accounts"
msgstr "Cuentas"
@@ -2221,7 +2114,7 @@ msgstr "Fecha de solicitud"
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1140
#: ../../extend/addon/addon/openid/MysqlProvider.php:56
#: ../../extend/addon/addon/openid/MysqlProvider.php:57
-#: ../../include/network.php:2241
+#: ../../include/network.php:2247
msgid "Email"
msgstr "Correo electrónico"
@@ -2329,7 +2222,7 @@ msgstr "Código permitido al canal '%s'"
msgid "Channel '%s' code disallowed"
msgstr "Código no permitido al canal '%s'"
-#: ../../Zotlabs/Module/Admin/Channels.php:146 ../../include/widgets.php:1574
+#: ../../Zotlabs/Module/Admin/Channels.php:146 ../../include/widgets.php:1585
msgid "Channels"
msgstr "Canales"
@@ -2494,7 +2387,7 @@ msgstr "Experto: puedo escribir código informático"
msgid "Wizard - I probably know more than you do"
msgstr "Asistente: probablemente sé más que tú"
-#: ../../Zotlabs/Module/Admin/Site.php:259 ../../include/widgets.php:1572
+#: ../../Zotlabs/Module/Admin/Site.php:259 ../../include/widgets.php:1583
msgid "Site"
msgstr "Sitio"
@@ -2788,6 +2681,143 @@ msgstr "Caducidad del contenido importado de otros sitios (en días)"
msgid "0 for no expiration of imported content"
msgstr "0 para que no caduque el contenido importado"
+#: ../../Zotlabs/Module/Admin/Plugins.php:284
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Extensión %s desactivada."
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:289
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Extensión %s activada."
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:337
+#: ../../Zotlabs/Module/Admin/Plugins.php:432 ../../include/widgets.php:1588
+msgid "Plugins"
+msgstr "Extensiones (plugins)"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:348
+msgid "Minimum project version: "
+msgstr "Versión mínima del proyecto:"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:349
+msgid "Maximum project version: "
+msgstr "Versión máxima del proyecto:"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:350
+msgid "Minimum PHP version: "
+msgstr "Versión mínima de PHP:"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:351
+msgid "Compatible Server Roles: "
+msgstr "Configuraciones compatibles con este servidor:"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:352
+msgid "Requires: "
+msgstr "Se requiere:"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:353
+#: ../../Zotlabs/Module/Admin/Plugins.php:437
+msgid "Disabled - version incompatibility"
+msgstr "Deshabilitado - versiones incompatibles"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:406
+msgid "Enter the public git repository URL of the plugin repo."
+msgstr "Escriba la URL pública del repositorio git del plugin."
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:407
+msgid "Plugin repo git URL"
+msgstr "URL del repositorio git del plugin"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:408
+msgid "Custom repo name"
+msgstr "Nombre personalizado del repositorio"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:408
+msgid "(optional)"
+msgstr "(opcional)"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:409
+msgid "Download Plugin Repo"
+msgstr "Descargar el repositorio"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:416
+msgid "Install new repo"
+msgstr "Instalar un nuevo repositorio"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:417 ../../Zotlabs/Lib/Apps.php:341
+msgid "Install"
+msgstr "Instalar"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:418
+#: ../../Zotlabs/Module/Connedit.php:888 ../../Zotlabs/Module/Fbrowser.php:66
+#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Wiki.php:263
+#: ../../Zotlabs/Module/Wiki.php:288
+#: ../../Zotlabs/Module/Settings/Oauth.php:88
+#: ../../Zotlabs/Module/Settings/Oauth.php:114
+#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138
+#: ../../extend/addon/addon/friendica/dfrn_request.php:879
+#: ../../extend/addon/addon/js_upload/js_upload.php:46
+#: ../../extend/addon/addon/cdav/Mod_Cdav.php:866
+#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1154
+#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:243
+#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:266
+#: ../../include/conversation.php:1394 ../../include/conversation.php:1443
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:440
+msgid "Manage Repos"
+msgstr "Gestionar los repositorios"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:441
+msgid "Installed Plugin Repositories"
+msgstr "Repositorios de los plugins instalados"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:442
+msgid "Install a New Plugin Repository"
+msgstr "Instalar un nuevo repositorio de plugins"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:448
+#: ../../Zotlabs/Module/Connedit.php:886
+#: ../../Zotlabs/Module/Settings/Oauth.php:42
+#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:341
+#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1152
+msgid "Update"
+msgstr "Actualizar"
+
+#: ../../Zotlabs/Module/Admin/Plugins.php:449
+msgid "Switch branch"
+msgstr "Cambiar la rama"
+
+#: ../../Zotlabs/Module/Admin/Queue.php:35
+msgid "Queue Statistics"
+msgstr "Estadísticas de la cola"
+
+#: ../../Zotlabs/Module/Admin/Queue.php:36
+msgid "Total Entries"
+msgstr "Total de entradas"
+
+#: ../../Zotlabs/Module/Admin/Queue.php:37
+msgid "Priority"
+msgstr "Prioridad"
+
+#: ../../Zotlabs/Module/Admin/Queue.php:38
+msgid "Destination URL"
+msgstr "Dirección de destino"
+
+#: ../../Zotlabs/Module/Admin/Queue.php:39
+msgid "Mark hub permanently offline"
+msgstr "Marcar el servidor como permanentemente fuera de línea"
+
+#: ../../Zotlabs/Module/Admin/Queue.php:40
+msgid "Empty queue for this hub"
+msgstr "Vaciar la cola para este servidor"
+
+#: ../../Zotlabs/Module/Admin/Queue.php:41
+msgid "Last known contact"
+msgstr "Último contacto conocido"
+
#: ../../Zotlabs/Module/Search.php:223
#, php-format
msgid "Items tagged with: %s"
@@ -2857,26 +2887,26 @@ msgstr "Acción anterior revocada."
#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
#: ../../Zotlabs/Module/Tagger.php:47
-#: ../../extend/addon/addon/diaspora/inbound.php:1794
+#: ../../extend/addon/addon/diaspora/inbound.php:1799
#: ../../extend/addon/addon/redphotos/redphotohelper.php:74
#: ../../include/conversation.php:120 ../../include/text.php:1956
msgid "photo"
msgstr "foto"
#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87
-#: ../../extend/addon/addon/diaspora/inbound.php:1794
+#: ../../extend/addon/addon/diaspora/inbound.php:1799
#: ../../include/conversation.php:148 ../../include/text.php:1962
msgid "status"
msgstr "el mensaje de estado"
#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:260
-#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:1000
-#: ../../include/conversation.php:123 ../../include/text.php:1959
+#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123
+#: ../../include/text.php:1959 ../../include/event.php:1000
msgid "event"
msgstr "evento"
#: ../../Zotlabs/Module/Like.php:419
-#: ../../extend/addon/addon/diaspora/inbound.php:1823
+#: ../../extend/addon/addon/diaspora/inbound.php:1828
#: ../../include/conversation.php:164
#, php-format
msgid "%1$s likes %2$s's %3$s"
@@ -3130,7 +3160,7 @@ msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio
msgid "Use this form to drop the location if the hub is no longer operating."
msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."
-#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1396
+#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1407
msgid "Public Hubs"
msgstr "Servidores públicos"
@@ -3174,20 +3204,12 @@ msgstr "Valorar"
#: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Blocks.php:166
#: ../../Zotlabs/Module/Layouts.php:197 ../../Zotlabs/Module/Events.php:694
-#: ../../Zotlabs/Module/Webpages.php:250 ../../Zotlabs/Module/Wiki.php:158
+#: ../../Zotlabs/Module/Webpages.php:250 ../../Zotlabs/Module/Wiki.php:165
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:151
#: ../../include/page_widgets.php:42
msgid "View"
msgstr "Ver"
-#: ../../Zotlabs/Module/Ffsapi.php:12
-msgid "Share content from Firefox to $Projectname"
-msgstr "Compartir contenido desde Firefox a $Projectname"
-
-#: ../../Zotlabs/Module/Ffsapi.php:15
-msgid "Activate the Firefox $Projectname provider"
-msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname "
-
#: ../../Zotlabs/Module/Connedit.php:82
msgid "Could not access contact record."
msgstr "No se ha podido acceder al registro de contacto."
@@ -3226,10 +3248,10 @@ msgstr "No ha sido posible establecer los parámetros de la libreta de direccion
msgid "Connection has been removed."
msgstr "La conexión ha sido eliminada."
-#: ../../Zotlabs/Module/Connedit.php:588 ../../Zotlabs/Lib/Apps.php:223
+#: ../../Zotlabs/Module/Connedit.php:588 ../../Zotlabs/Lib/Apps.php:225
#: ../../extend/addon/addon/openclipatar/openclipatar.php:57
-#: ../../include/nav.php:89 ../../include/conversation.php:936
-#: ../../include/conversation.php:1049
+#: ../../include/conversation.php:936 ../../include/conversation.php:1049
+#: ../../include/nav.php:89
msgid "View Profile"
msgstr "Ver el perfil"
@@ -3323,11 +3345,11 @@ msgstr "Afinidad"
msgid "Open Set Affinity section by default"
msgstr "Abrir por defecto la sección para definir la afinidad"
-#: ../../Zotlabs/Module/Connedit.php:685 ../../include/widgets.php:532
+#: ../../Zotlabs/Module/Connedit.php:685 ../../include/widgets.php:540
msgid "Me"
msgstr "Yo"
-#: ../../Zotlabs/Module/Connedit.php:686 ../../include/widgets.php:533
+#: ../../Zotlabs/Module/Connedit.php:686 ../../include/widgets.php:541
msgid "Family"
msgstr "Familia"
@@ -3337,13 +3359,13 @@ msgstr "Familia"
#: ../../Zotlabs/Module/Settings/Channel.php:66
#: ../../Zotlabs/Module/Settings/Channel.php:69
#: ../../Zotlabs/Module/Settings/Channel.php:80
-#: ../../include/selectors.php:123 ../../include/channel.php:402
-#: ../../include/channel.php:403 ../../include/channel.php:410
-#: ../../include/widgets.php:534
+#: ../../include/selectors.php:123 ../../include/widgets.php:542
+#: ../../include/channel.php:405 ../../include/channel.php:406
+#: ../../include/channel.php:413
msgid "Friends"
msgstr "Amigos/as"
-#: ../../Zotlabs/Module/Connedit.php:688 ../../include/widgets.php:535
+#: ../../Zotlabs/Module/Connedit.php:688 ../../include/widgets.php:543
msgid "Acquaintances"
msgstr "Conocidos/as"
@@ -3379,11 +3401,11 @@ msgstr "Ajustar la afinidad y el perfil"
msgid "none"
msgstr "-"
-#: ../../Zotlabs/Module/Connedit.php:818 ../../include/widgets.php:659
+#: ../../Zotlabs/Module/Connedit.php:818 ../../include/widgets.php:667
msgid "Connection Default Permissions"
msgstr "Permisos predeterminados de conexión"
-#: ../../Zotlabs/Module/Connedit.php:818 ../../include/items.php:3916
+#: ../../Zotlabs/Module/Connedit.php:818 ../../include/items.php:3932
#, php-format
msgid "Connection: %s"
msgstr "Conexión: %s"
@@ -3549,8 +3571,8 @@ msgstr "Móvil"
#: ../../Zotlabs/Module/Connedit.php:880
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1146
-#: ../../extend/addon/addon/cdav/cdav.php:271 ../../include/nav.php:88
-#: ../../include/connections.php:863
+#: ../../extend/addon/addon/cdav/cdav.php:271
+#: ../../include/connections.php:863 ../../include/nav.php:88
msgid "Home"
msgstr "Inicio"
@@ -3608,6 +3630,7 @@ msgid "Country"
msgstr "País"
#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82
+#: ../../extend/addon/addon/opensearch/opensearch.php:42
msgid "$Projectname"
msgstr "$Projectname"
@@ -3660,35 +3683,11 @@ msgstr "Mostrar la dirección de este fichero"
msgid "Notify your contacts about this file"
msgstr "Avisar a sus contactos sobre este fichero"
-#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:224
-#: ../../include/nav.php:95 ../../include/conversation.php:1836
+#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:226
+#: ../../include/conversation.php:1836 ../../include/nav.php:95
msgid "Photos"
msgstr "Fotos"
-#: ../../Zotlabs/Module/Match.php:26
-msgid "Profile Match"
-msgstr "Perfil compatible"
-
-#: ../../Zotlabs/Module/Match.php:35
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."
-
-#: ../../Zotlabs/Module/Match.php:67
-msgid "is interested in:"
-msgstr "está interesado en:"
-
-#: ../../Zotlabs/Module/Match.php:68 ../../Zotlabs/Module/Directory.php:329
-#: ../../Zotlabs/Module/Suggest.php:56 ../../include/connections.php:78
-#: ../../include/channel.php:1036 ../../include/conversation.php:938
-#: ../../include/conversation.php:1069 ../../include/widgets.php:148
-#: ../../include/widgets.php:185
-msgid "Connect"
-msgstr "Conectar"
-
-#: ../../Zotlabs/Module/Match.php:74
-msgid "No matches"
-msgstr "No se han encontrado perfiles compatibles"
-
#: ../../Zotlabs/Module/Cal.php:69
msgid "Permissions denied."
msgstr "Permisos denegados."
@@ -3711,7 +3710,7 @@ msgid "Create Event"
msgstr "Crear un evento"
#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Events.php:691
-#: ../../include/channel.php:1287
+#: ../../include/channel.php:1365
msgid "Export"
msgstr "Exportar"
@@ -3733,7 +3732,7 @@ msgid "Could not create privacy group."
msgstr "No se puede crear el grupo de canales"
#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141
-#: ../../include/items.php:3883
+#: ../../include/items.php:3899
msgid "Privacy group not found."
msgstr "Grupo de canales no encontrado."
@@ -3898,7 +3897,7 @@ msgid ""
msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."
#: ../../Zotlabs/Module/Import_items.php:121
-#: ../../Zotlabs/Module/Import.php:532
+#: ../../Zotlabs/Module/Import.php:543
msgid "File to Upload"
msgstr "Fichero para subir"
@@ -3913,13 +3912,13 @@ msgid "Create a new channel"
msgstr "Crear un nuevo canal"
#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:812
-#: ../../Zotlabs/Module/Wiki.php:159 ../../Zotlabs/Module/Chat.php:255
+#: ../../Zotlabs/Module/Wiki.php:166 ../../Zotlabs/Module/Chat.php:255
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:152
msgid "Create New"
msgstr "Crear"
-#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:216
-#: ../../include/nav.php:209
+#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:218
+#: ../../include/nav.php:211
msgid "Channel Manager"
msgstr "Administración de canales"
@@ -3966,43 +3965,43 @@ msgstr "No se ha podido importar el canal porque el canal clonado no se ha encon
msgid "No channel. Import failed."
msgstr "No hay canal. La importación ha fallado"
-#: ../../Zotlabs/Module/Import.php:503
-#: ../../include/Import/import_diaspora.php:142
+#: ../../Zotlabs/Module/Import.php:514
+#: ../../extend/addon/addon/diaspora/import_diaspora.php:142
msgid "Import completed."
msgstr "Importación completada."
-#: ../../Zotlabs/Module/Import.php:525
+#: ../../Zotlabs/Module/Import.php:536
msgid "You must be logged in to use this feature."
msgstr "Debe estar registrado para poder usar esta funcionalidad."
-#: ../../Zotlabs/Module/Import.php:530
+#: ../../Zotlabs/Module/Import.php:541
msgid "Import Channel"
msgstr "Importar canal"
-#: ../../Zotlabs/Module/Import.php:531
+#: ../../Zotlabs/Module/Import.php:542
msgid ""
"Use this form to import an existing channel from a different server/hub. You"
" may retrieve the channel identity from the old server/hub via the network "
"or provide an export file."
msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."
-#: ../../Zotlabs/Module/Import.php:533
+#: ../../Zotlabs/Module/Import.php:544
msgid "Or provide the old server/hub details"
msgstr "O proporcione los detalles de su antiguo servidor/hub"
-#: ../../Zotlabs/Module/Import.php:534
+#: ../../Zotlabs/Module/Import.php:545
msgid "Your old identity address (xyz@example.com)"
msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)"
-#: ../../Zotlabs/Module/Import.php:535
+#: ../../Zotlabs/Module/Import.php:546
msgid "Your old login email address"
msgstr "Su antigua dirección de correo electrónico"
-#: ../../Zotlabs/Module/Import.php:536
+#: ../../Zotlabs/Module/Import.php:547
msgid "Your old login password"
msgstr "Su antigua contraseña"
-#: ../../Zotlabs/Module/Import.php:537
+#: ../../Zotlabs/Module/Import.php:548
msgid ""
"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"
@@ -4010,21 +4009,21 @@ msgid ""
"primary location for files, photos, and media."
msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."
-#: ../../Zotlabs/Module/Import.php:538
+#: ../../Zotlabs/Module/Import.php:549
msgid "Make this hub my primary location"
msgstr "Convertir este servidor en mi ubicación primaria"
-#: ../../Zotlabs/Module/Import.php:540
+#: ../../Zotlabs/Module/Import.php:551
msgid "Move this channel (disable all previous locations)"
msgstr "Mover este canal (desactivar todas las ubicaciones anteriores)"
-#: ../../Zotlabs/Module/Import.php:542
+#: ../../Zotlabs/Module/Import.php:553
msgid ""
"Import existing posts if possible (experimental - limited by available "
"memory"
msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"
-#: ../../Zotlabs/Module/Import.php:543
+#: ../../Zotlabs/Module/Import.php:554
msgid ""
"This process may take several minutes to complete. Please submit the form "
"only once and leave this page open until finished."
@@ -4059,7 +4058,7 @@ msgid "Menu Item Permissions"
msgstr "Permisos del elemento del menú"
#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231
-#: ../../Zotlabs/Module/Settings/Channel.php:489
+#: ../../Zotlabs/Module/Settings/Channel.php:492
msgid "(click to open/close)"
msgstr "(pulsar para abrir o cerrar)"
@@ -4167,61 +4166,61 @@ msgstr "Aplicación instalada."
msgid "Malformed app."
msgstr "Aplicación con errores"
-#: ../../Zotlabs/Module/Appman.php:106
+#: ../../Zotlabs/Module/Appman.php:110
msgid "Embed code"
msgstr "Código incorporado"
-#: ../../Zotlabs/Module/Appman.php:112
+#: ../../Zotlabs/Module/Appman.php:116
msgid "Edit App"
msgstr "Modificar la aplicación"
-#: ../../Zotlabs/Module/Appman.php:112
+#: ../../Zotlabs/Module/Appman.php:116
msgid "Create App"
msgstr "Crear una aplicación"
-#: ../../Zotlabs/Module/Appman.php:117
+#: ../../Zotlabs/Module/Appman.php:121
msgid "Name of app"
msgstr "Nombre de la aplicación"
-#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Appman.php:118
+#: ../../Zotlabs/Module/Appman.php:121 ../../Zotlabs/Module/Appman.php:122
#: ../../Zotlabs/Module/Profiles.php:743 ../../Zotlabs/Module/Profiles.php:747
#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465
#: ../../include/datetime.php:259
msgid "Required"
msgstr "Obligatorio"
-#: ../../Zotlabs/Module/Appman.php:118
+#: ../../Zotlabs/Module/Appman.php:122
msgid "Location (URL) of app"
msgstr "Dirección (URL) de la aplicación"
-#: ../../Zotlabs/Module/Appman.php:119 ../../Zotlabs/Module/Events.php:473
+#: ../../Zotlabs/Module/Appman.php:123 ../../Zotlabs/Module/Events.php:473
#: ../../Zotlabs/Module/Rbmark.php:101
#: ../../extend/addon/addon/cdav/Mod_Cdav.php:838
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:165
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:173
msgid "Description"
msgstr "Descripción"
-#: ../../Zotlabs/Module/Appman.php:120
+#: ../../Zotlabs/Module/Appman.php:124
msgid "Photo icon URL"
msgstr "Dirección del icono"
-#: ../../Zotlabs/Module/Appman.php:120
+#: ../../Zotlabs/Module/Appman.php:124
msgid "80 x 80 pixels - optional"
msgstr "80 x 80 pixels - opcional"
-#: ../../Zotlabs/Module/Appman.php:121
+#: ../../Zotlabs/Module/Appman.php:125
msgid "Categories (optional, comma separated list)"
msgstr "Temas (opcional, lista separada por comas)"
-#: ../../Zotlabs/Module/Appman.php:122
+#: ../../Zotlabs/Module/Appman.php:126
msgid "Version ID"
msgstr "Versión"
-#: ../../Zotlabs/Module/Appman.php:123
+#: ../../Zotlabs/Module/Appman.php:127
msgid "Price of app"
msgstr "Precio de la aplicación"
-#: ../../Zotlabs/Module/Appman.php:124
+#: ../../Zotlabs/Module/Appman.php:128
msgid "Location (URL) to purchase app"
msgstr "Dirección (URL) donde adquirir la aplicación"
@@ -4251,7 +4250,7 @@ msgctxt "mood"
msgid "%1$s is %2$s"
msgstr "%1$s está %2$s"
-#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:229
+#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:231
msgid "Mood"
msgstr "Estado de ánimo"
@@ -4260,12 +4259,12 @@ msgid "Set your current mood and tell your friends"
msgstr "Describir su estado de ánimo para comunicárselo a sus amigos"
#: ../../Zotlabs/Module/Notify.php:57
-#: ../../Zotlabs/Module/Notifications.php:35
+#: ../../Zotlabs/Module/Notifications.php:38
msgid "No more system notifications."
msgstr "No hay más notificaciones del sistema"
#: ../../Zotlabs/Module/Notify.php:61
-#: ../../Zotlabs/Module/Notifications.php:39
+#: ../../Zotlabs/Module/Notifications.php:42
msgid "System Notifications"
msgstr "Notificaciones del sistema"
@@ -4361,7 +4360,7 @@ msgid "View this profile"
msgstr "Ver este perfil"
#: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Profiles.php:805
-#: ../../include/channel.php:983
+#: ../../include/channel.php:1061
msgid "Edit visibility"
msgstr "Editar visibilidad"
@@ -4373,7 +4372,7 @@ msgstr "Gestión del perfil"
msgid "Change cover photo"
msgstr "Cambiar la imagen de portada del perfil"
-#: ../../Zotlabs/Module/Profiles.php:726 ../../include/channel.php:954
+#: ../../Zotlabs/Module/Profiles.php:726 ../../include/channel.php:1032
msgid "Change profile photo"
msgstr "Cambiar la foto del perfil"
@@ -4535,12 +4534,12 @@ msgstr "Información de contacto y redes sociales"
msgid "My other channels"
msgstr "Mis otros canales"
-#: ../../Zotlabs/Module/Profiles.php:801 ../../include/channel.php:979
+#: ../../Zotlabs/Module/Profiles.php:801 ../../include/channel.php:1057
msgid "Profile Image"
msgstr "Imagen del perfil"
#: ../../Zotlabs/Module/Profiles.php:811 ../../include/nav.php:91
-#: ../../include/channel.php:961
+#: ../../include/channel.php:1039
msgid "Edit Profiles"
msgstr "Editar perfiles"
@@ -4640,7 +4639,7 @@ msgstr "Acerca de este sitio"
msgid "Site Name"
msgstr "Nombre del sitio"
-#: ../../Zotlabs/Module/Siteinfo.php:25 ../../include/network.php:1966
+#: ../../Zotlabs/Module/Siteinfo.php:25 ../../include/network.php:1972
msgid "Administrator"
msgstr "Administrador"
@@ -5107,7 +5106,7 @@ msgstr "El fichero de configuración de la base de datos .htconfig.php no se ha
#: ../../Zotlabs/Module/Setup.php:707
#: ../../extend/addon/addon/cdav/cdav.php:41
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:392
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:401
msgid "Errors encountered creating database tables."
msgstr "Se han encontrado errores al crear las tablas de la base de datos."
@@ -5121,11 +5120,11 @@ msgid ""
"poller."
msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."
-#: ../../Zotlabs/Module/Notifications.php:40 ../../include/nav.php:194
+#: ../../Zotlabs/Module/Notifications.php:43 ../../include/nav.php:196
msgid "Mark all system notifications seen"
msgstr "Marcar todas las notificaciones de sistema como leídas"
-#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:230
+#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:232
#: ../../include/conversation.php:942 ../../include/conversation.php:1109
msgid "Poke"
msgstr "Toques y otras cosas"
@@ -5162,6 +5161,40 @@ msgstr "No se puede encontrar su servidor."
msgid "Post successful."
msgstr "Enviado con éxito."
+#: ../../Zotlabs/Module/Item.php:184
+msgid "Unable to locate original post."
+msgstr "No ha sido posible encontrar la entrada original."
+
+#: ../../Zotlabs/Module/Item.php:450
+msgid "Empty post discarded."
+msgstr "La entrada vacía ha sido desechada."
+
+#: ../../Zotlabs/Module/Item.php:492
+msgid "Executable content type not permitted to this channel."
+msgstr "Contenido de tipo ejecutable no permitido en este canal."
+
+#: ../../Zotlabs/Module/Item.php:842
+msgid "Duplicate post suppressed."
+msgstr "Se ha suprimido la entrada duplicada."
+
+#: ../../Zotlabs/Module/Item.php:984
+msgid "System error. Post not saved."
+msgstr "Error del sistema. La entrada no se ha podido salvar."
+
+#: ../../Zotlabs/Module/Item.php:1114
+msgid "Unable to obtain post information from database."
+msgstr "No ha sido posible obtener información de la entrada en la base de datos."
+
+#: ../../Zotlabs/Module/Item.php:1121
+#, php-format
+msgid "You have reached your limit of %1$.0f top level posts."
+msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal."
+
+#: ../../Zotlabs/Module/Item.php:1128
+#, php-format
+msgid "You have reached your limit of %1$.0f webpages."
+msgstr "Ha alcanzado su límite de %1$.0f páginas web."
+
#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59
msgid "This setting requires special processing and editing has been blocked."
msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."
@@ -5181,8 +5214,8 @@ msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su can
msgid "vcard"
msgstr "vcard"
-#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:166
-#: ../../include/widgets.php:102
+#: ../../Zotlabs/Module/Apps.php:45 ../../include/widgets.php:102
+#: ../../include/nav.php:168
msgid "Apps"
msgstr "Aplicaciones (apps)"
@@ -5198,8 +5231,8 @@ msgstr "Título del bloque"
msgid "Layouts"
msgstr "Plantillas"
-#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:227
-#: ../../include/nav.php:162 ../../include/help.php:53
+#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:229
+#: ../../include/nav.php:164 ../../include/help.php:53
#: ../../include/help.php:59
msgid "Help"
msgstr "Ayuda"
@@ -5410,7 +5443,7 @@ msgstr "Identificador del perfil no válido"
msgid "Profile Visibility Editor"
msgstr "Editor de visibilidad del perfil"
-#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1284
+#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1362
msgid "Profile"
msgstr "Perfil"
@@ -5464,7 +5497,7 @@ msgid ""
"Password reset failed."
msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."
-#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1730
+#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1740
msgid "Password Reset"
msgstr "Restablecer la contraseña"
@@ -5537,15 +5570,15 @@ msgstr "Canal añadido."
msgid "Authentication failed."
msgstr "Falló la autenticación."
-#: ../../Zotlabs/Module/Rmagic.php:75
+#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:1984
msgid "Remote Authentication"
msgstr "Acceso desde su servidor"
-#: ../../Zotlabs/Module/Rmagic.php:76
+#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:1985
msgid "Enter your channel address (e.g. channel@example.com)"
msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"
-#: ../../Zotlabs/Module/Rmagic.php:77
+#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:1986
msgid "Authenticate"
msgstr "Acceder"
@@ -5625,22 +5658,22 @@ msgstr "Nombre del módulo:"
msgid "Layout Help"
msgstr "Ayuda para el diseño de plantillas de página"
-#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56
+#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58
msgid "Export Channel"
msgstr "Exportar el canal"
-#: ../../Zotlabs/Module/Uexport.php:57
+#: ../../Zotlabs/Module/Uexport.php:59
msgid ""
"Export your basic channel information to a file. This acts as a backup of "
"your connections, permissions, profile and basic data, which can be used to "
"import your data to a new server hub, but does not contain your content."
msgstr "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."
-#: ../../Zotlabs/Module/Uexport.php:58
+#: ../../Zotlabs/Module/Uexport.php:60
msgid "Export Content"
msgstr "Exportar contenidos"
-#: ../../Zotlabs/Module/Uexport.php:59
+#: ../../Zotlabs/Module/Uexport.php:61
msgid ""
"Export your channel information and recent content to a JSON backup that can"
" be restored or imported to another server hub. This backs up all of your "
@@ -5649,11 +5682,11 @@ msgid ""
" this download to begin."
msgstr "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."
-#: ../../Zotlabs/Module/Uexport.php:60
+#: ../../Zotlabs/Module/Uexport.php:63
msgid "Export your posts from a given year."
msgstr "Exporta sus publicaciones de un año dado."
-#: ../../Zotlabs/Module/Uexport.php:62
+#: ../../Zotlabs/Module/Uexport.php:65
msgid ""
"You may also export your posts and conversations for a particular year or "
"month. Adjust the date in your browser location bar to select other dates. "
@@ -5661,21 +5694,21 @@ msgid ""
"please try again selecting a more limited date range."
msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."
-#: ../../Zotlabs/Module/Uexport.php:63
+#: ../../Zotlabs/Module/Uexport.php:66
#, php-format
msgid ""
"To select all posts for a given year, such as this year, visit <a "
"href=\"%1$s\">%2$s</a>"
msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite <a href=\"%1$s\">%2$s</a>"
-#: ../../Zotlabs/Module/Uexport.php:64
+#: ../../Zotlabs/Module/Uexport.php:67
#, php-format
msgid ""
"To select all posts for a given month, such as January of this year, visit "
"<a href=\"%1$s\">%2$s</a>"
msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite <a href=\"%1$s\">%2$s</a>"
-#: ../../Zotlabs/Module/Uexport.php:65
+#: ../../Zotlabs/Module/Uexport.php:68
#, php-format
msgid ""
"These content files may be imported or restored by visiting <a "
@@ -5702,13 +5735,13 @@ msgstr "Estado:"
msgid "Homepage: "
msgstr "Página personal:"
-#: ../../Zotlabs/Module/Directory.php:310 ../../include/channel.php:1215
+#: ../../Zotlabs/Module/Directory.php:310 ../../include/channel.php:1293
msgid "Age:"
msgstr "Edad:"
-#: ../../Zotlabs/Module/Directory.php:315 ../../include/event.php:52
-#: ../../include/event.php:84 ../../include/bb2diaspora.php:526
-#: ../../include/channel.php:1051
+#: ../../Zotlabs/Module/Directory.php:315 ../../include/markdown.php:526
+#: ../../include/channel.php:1129 ../../include/event.php:52
+#: ../../include/event.php:84
msgid "Location:"
msgstr "Ubicación:"
@@ -5716,14 +5749,21 @@ msgstr "Ubicación:"
msgid "Description:"
msgstr "Descripción:"
-#: ../../Zotlabs/Module/Directory.php:326 ../../include/channel.php:1231
+#: ../../Zotlabs/Module/Directory.php:326 ../../include/channel.php:1309
msgid "Hometown:"
msgstr "Lugar de nacimiento:"
-#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1239
+#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1317
msgid "About:"
msgstr "Sobre mí:"
+#: ../../Zotlabs/Module/Directory.php:329 ../../Zotlabs/Module/Suggest.php:56
+#: ../../include/connections.php:78 ../../include/conversation.php:938
+#: ../../include/conversation.php:1069 ../../include/widgets.php:148
+#: ../../include/widgets.php:185 ../../include/channel.php:1114
+msgid "Connect"
+msgstr "Conectar"
+
#: ../../Zotlabs/Module/Directory.php:330
msgid "Public Forum:"
msgstr "Foro público:"
@@ -5817,8 +5857,8 @@ msgstr "Exportar elementos de una página web"
msgid "Export selected"
msgstr "Exportar los elementos seleccionados"
-#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Lib/Apps.php:220
-#: ../../include/nav.php:109 ../../include/conversation.php:1889
+#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Lib/Apps.php:222
+#: ../../include/conversation.php:1889 ../../include/nav.php:109
msgid "Webpages"
msgstr "Páginas web"
@@ -5879,7 +5919,7 @@ msgid ""
msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"
#: ../../Zotlabs/Module/Removeme.php:64
-#: ../../Zotlabs/Module/Settings/Channel.php:549
+#: ../../Zotlabs/Module/Settings/Channel.php:556
msgid "Remove Channel"
msgstr "Eliminar el canal"
@@ -5899,194 +5939,179 @@ msgstr "Eliminar todos los ficheros"
msgid "Remove this file"
msgstr "Eliminar este fichero"
-#: ../../Zotlabs/Module/Wiki.php:24
+#: ../../Zotlabs/Module/Wiki.php:29
msgid "Profile Unavailable."
msgstr "Perfil no disponible"
-#: ../../Zotlabs/Module/Wiki.php:38
+#: ../../Zotlabs/Module/Wiki.php:43
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:40
msgid "Not found"
msgstr "No encontrado"
-#: ../../Zotlabs/Module/Wiki.php:60
+#: ../../Zotlabs/Module/Wiki.php:67
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:60
msgid "Invalid channel"
msgstr "Canal no válido"
-#: ../../Zotlabs/Module/Wiki.php:112
-#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:105
-msgid "Error retrieving wiki"
-msgstr "Error al recuperar el wiki"
-
-#: ../../Zotlabs/Module/Wiki.php:119
-#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:112
-msgid "Error creating zip file export folder"
-msgstr "Error al crear el fichero comprimido zip de la carpeta a exportar"
-
-#: ../../Zotlabs/Module/Wiki.php:137
-#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:130
-msgid "Error downloading wiki: "
-msgstr "Error al descargar el wiki: "
-
-#: ../../Zotlabs/Module/Wiki.php:151
+#: ../../Zotlabs/Module/Wiki.php:158
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:144
-#: ../../include/nav.php:111 ../../include/conversation.php:1900
+#: ../../include/conversation.php:1900 ../../include/nav.php:111
msgid "Wikis"
msgstr "Wikis"
-#: ../../Zotlabs/Module/Wiki.php:157
+#: ../../Zotlabs/Module/Wiki.php:164
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:150
msgid "Download"
msgstr "Descargar"
-#: ../../Zotlabs/Module/Wiki.php:161
+#: ../../Zotlabs/Module/Wiki.php:168
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:154
msgid "Wiki name"
msgstr "Nombre del wiki"
-#: ../../Zotlabs/Module/Wiki.php:162
+#: ../../Zotlabs/Module/Wiki.php:169
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:155
msgid "Content type"
msgstr "Tipo de contenido"
-#: ../../Zotlabs/Module/Wiki.php:171
+#: ../../Zotlabs/Module/Wiki.php:178
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:164
msgid "Create a status post for this wiki"
msgstr "Crear un mensaje de estado para este wiki"
-#: ../../Zotlabs/Module/Wiki.php:196
+#: ../../Zotlabs/Module/Wiki.php:203
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:183
msgid "Wiki not found"
msgstr "Wiki no encontrado"
-#: ../../Zotlabs/Module/Wiki.php:220
+#: ../../Zotlabs/Module/Wiki.php:227
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:208
msgid "Rename page"
msgstr "Renombrar la página"
-#: ../../Zotlabs/Module/Wiki.php:224
+#: ../../Zotlabs/Module/Wiki.php:231
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:212
msgid "Error retrieving page content"
msgstr "Error al recuperar el contenido de la página"
-#: ../../Zotlabs/Module/Wiki.php:254
+#: ../../Zotlabs/Module/Wiki.php:261
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:241
msgid "Revision Comparison"
msgstr "Comparación de revisiones"
-#: ../../Zotlabs/Module/Wiki.php:255
+#: ../../Zotlabs/Module/Wiki.php:262
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:242
msgid "Revert"
msgstr "Revertir"
-#: ../../Zotlabs/Module/Wiki.php:259
+#: ../../Zotlabs/Module/Wiki.php:266
msgid "Short description of your changes (optional)"
msgstr "Breve descripción de sus cambios (opcional)"
-#: ../../Zotlabs/Module/Wiki.php:266
+#: ../../Zotlabs/Module/Wiki.php:273
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:251
msgid "Source"
msgstr "Fuente"
-#: ../../Zotlabs/Module/Wiki.php:274
+#: ../../Zotlabs/Module/Wiki.php:281
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:259
msgid "New page name"
msgstr "Nombre de la nueva página"
-#: ../../Zotlabs/Module/Wiki.php:279
+#: ../../Zotlabs/Module/Wiki.php:286
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:264
#: ../../include/conversation.php:1299
msgid "Embed image from photo albums"
msgstr "Incluir una imagen de los álbumes de fotos"
-#: ../../Zotlabs/Module/Wiki.php:280
+#: ../../Zotlabs/Module/Wiki.php:287
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:265
#: ../../include/conversation.php:1393
msgid "Embed an image from your albums"
msgstr "Incluir una imagen de sus álbumes"
-#: ../../Zotlabs/Module/Wiki.php:282
+#: ../../Zotlabs/Module/Wiki.php:289
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:267
#: ../../include/conversation.php:1395 ../../include/conversation.php:1442
msgid "OK"
msgstr "OK"
-#: ../../Zotlabs/Module/Wiki.php:283
+#: ../../Zotlabs/Module/Wiki.php:290
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:268
#: ../../include/conversation.php:1335
msgid "Choose images to embed"
msgstr "Elegir imágenes para incluir"
-#: ../../Zotlabs/Module/Wiki.php:284
+#: ../../Zotlabs/Module/Wiki.php:291
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:269
#: ../../include/conversation.php:1336
msgid "Choose an album"
msgstr "Elegir un álbum"
-#: ../../Zotlabs/Module/Wiki.php:285
+#: ../../Zotlabs/Module/Wiki.php:292
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:270
msgid "Choose a different album"
msgstr "Elegir un álbum diferente..."
-#: ../../Zotlabs/Module/Wiki.php:286
+#: ../../Zotlabs/Module/Wiki.php:293
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:271
#: ../../include/conversation.php:1338
msgid "Error getting album list"
msgstr "Error al obtener la lista de álbumes"
-#: ../../Zotlabs/Module/Wiki.php:287
+#: ../../Zotlabs/Module/Wiki.php:294
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:272
#: ../../include/conversation.php:1339
msgid "Error getting photo link"
msgstr "Error al obtener el enlace de la foto"
-#: ../../Zotlabs/Module/Wiki.php:288
+#: ../../Zotlabs/Module/Wiki.php:295
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:273
#: ../../include/conversation.php:1340
msgid "Error getting album"
msgstr "Error al obtener el álbum"
-#: ../../Zotlabs/Module/Wiki.php:353
+#: ../../Zotlabs/Module/Wiki.php:364
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:337
msgid "Error creating wiki. Invalid name."
msgstr "Error al crear el wiki: el nombre no es válido."
-#: ../../Zotlabs/Module/Wiki.php:364
+#: ../../Zotlabs/Module/Wiki.php:376
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:348
msgid "Wiki created, but error creating Home page."
msgstr "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio."
-#: ../../Zotlabs/Module/Wiki.php:370
+#: ../../Zotlabs/Module/Wiki.php:383
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:353
msgid "Error creating wiki"
msgstr "Error al crear el wiki"
-#: ../../Zotlabs/Module/Wiki.php:382
+#: ../../Zotlabs/Module/Wiki.php:395
msgid "Wiki delete permission denied."
-msgstr "Se ha denegado el permiso para eliminar la wiki."
+msgstr "Se ha denegado el permiso para eliminar el wiki."
-#: ../../Zotlabs/Module/Wiki.php:391
+#: ../../Zotlabs/Module/Wiki.php:405
msgid "Error deleting wiki"
-msgstr "Se ha producido un error al eliminar la wiki"
+msgstr "Se ha producido un error al eliminar el wiki"
-#: ../../Zotlabs/Module/Wiki.php:418
+#: ../../Zotlabs/Module/Wiki.php:431
#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:400
msgid "New page created"
msgstr "Se ha creado la nueva página"
-#: ../../Zotlabs/Module/Wiki.php:530
+#: ../../Zotlabs/Module/Wiki.php:546
msgid "Cannot delete Home"
msgstr "No se puede eliminar la página principal"
-#: ../../Zotlabs/Module/Wiki.php:600
+#: ../../Zotlabs/Module/Wiki.php:610
msgid "Current Revision"
msgstr "Revisión actual"
-#: ../../Zotlabs/Module/Wiki.php:600
+#: ../../Zotlabs/Module/Wiki.php:610
msgid "Selected Revision"
msgstr "Revisión seleccionada"
-#: ../../Zotlabs/Module/Wiki.php:650
+#: ../../Zotlabs/Module/Wiki.php:660
msgid "You must be authenticated."
msgstr "Debe estar autenticado."
@@ -6106,8 +6131,8 @@ msgstr "Fuente actualizada."
msgid "*"
msgstr "*"
-#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:204
-#: ../../include/widgets.php:675
+#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:683
+#: ../../include/features.php:204
msgid "Channel Sources"
msgstr "Orígenes de los contenidos del canal"
@@ -6344,7 +6369,7 @@ msgid "Used to provide a member experience matched to your comfort level"
msgstr "Se utiliza para proporcionar la experiencia de los miembros adaptada a su nivel de comodidad"
#: ../../Zotlabs/Module/Settings/Account.php:119
-#: ../../Zotlabs/Module/Settings/Channel.php:462
+#: ../../Zotlabs/Module/Settings/Channel.php:465
msgid "Email Address:"
msgstr "Dirección de correo electrónico:"
@@ -6352,6 +6377,186 @@ msgstr "Dirección de correo electrónico:"
msgid "Remove this account including all its channels"
msgstr "Eliminar esta cuenta incluyendo todos sus canales"
+#: ../../Zotlabs/Module/Settings/Display.php:137
+msgid "No special theme for mobile devices"
+msgstr "Sin tema especial para dispositivos móviles"
+
+#: ../../Zotlabs/Module/Settings/Display.php:140
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s - (Experimental)"
+
+#: ../../Zotlabs/Module/Settings/Display.php:191
+msgid "Display Settings"
+msgstr "Ajustes de visualización"
+
+#: ../../Zotlabs/Module/Settings/Display.php:192
+msgid "Theme Settings"
+msgstr "Ajustes del tema"
+
+#: ../../Zotlabs/Module/Settings/Display.php:193
+msgid "Custom Theme Settings"
+msgstr "Ajustes personalizados del tema"
+
+#: ../../Zotlabs/Module/Settings/Display.php:194
+msgid "Content Settings"
+msgstr "Ajustes del contenido"
+
+#: ../../Zotlabs/Module/Settings/Display.php:200
+msgid "Display Theme:"
+msgstr "Tema gráfico del perfil:"
+
+#: ../../Zotlabs/Module/Settings/Display.php:201
+msgid "Select scheme"
+msgstr "Elegir un esquema"
+
+#: ../../Zotlabs/Module/Settings/Display.php:203
+msgid "Mobile Theme:"
+msgstr "Tema para el móvil:"
+
+#: ../../Zotlabs/Module/Settings/Display.php:204
+msgid "Preload images before rendering the page"
+msgstr "Carga previa de las imágenes antes de generar la página"
+
+#: ../../Zotlabs/Module/Settings/Display.php:204
+msgid ""
+"The subjective page load time will be longer but the page will be ready when"
+" displayed"
+msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."
+
+#: ../../Zotlabs/Module/Settings/Display.php:205
+msgid "Enable user zoom on mobile devices"
+msgstr "Habilitar zoom de usuario en dispositivos móviles"
+
+#: ../../Zotlabs/Module/Settings/Display.php:206
+msgid "Update browser every xx seconds"
+msgstr "Actualizar navegador cada xx segundos"
+
+#: ../../Zotlabs/Module/Settings/Display.php:206
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Mínimo de 10 segundos, sin máximo"
+
+#: ../../Zotlabs/Module/Settings/Display.php:207
+msgid "Maximum number of conversations to load at any time:"
+msgstr "Máximo número de conversaciones a cargar en cualquier momento:"
+
+#: ../../Zotlabs/Module/Settings/Display.php:207
+msgid "Maximum of 100 items"
+msgstr "Máximo de 100 elementos"
+
+#: ../../Zotlabs/Module/Settings/Display.php:208
+msgid "Show emoticons (smilies) as images"
+msgstr "Mostrar emoticonos (smilies) como imágenes"
+
+#: ../../Zotlabs/Module/Settings/Display.php:209
+msgid "Manual conversation updates"
+msgstr "Actualizaciones manuales de la conversación"
+
+#: ../../Zotlabs/Module/Settings/Display.php:209
+msgid "Default is automatic, which may increase screen jumping"
+msgstr "El valor predeterminado es automático, lo que puede aumentar el salto de pantalla"
+
+#: ../../Zotlabs/Module/Settings/Display.php:210
+msgid "Link post titles to source"
+msgstr "Enlazar título de la publicación a la fuente original"
+
+#: ../../Zotlabs/Module/Settings/Display.php:211
+msgid "System Page Layout Editor - (advanced)"
+msgstr "Editor de plantilla de página del sistema - (avanzado)"
+
+#: ../../Zotlabs/Module/Settings/Display.php:214
+msgid "Use blog/list mode on channel page"
+msgstr "Usar modo blog/lista en la página de inicio del canal"
+
+#: ../../Zotlabs/Module/Settings/Display.php:214
+#: ../../Zotlabs/Module/Settings/Display.php:215
+msgid "(comments displayed separately)"
+msgstr "(comentarios mostrados de forma separada)"
+
+#: ../../Zotlabs/Module/Settings/Display.php:215
+msgid "Use blog/list mode on grid page"
+msgstr "Mostrar mi red en modo blog"
+
+#: ../../Zotlabs/Module/Settings/Display.php:216
+msgid "Channel page max height of content (in pixels)"
+msgstr "Altura máxima del contenido de la página del canal (en píxeles)"
+
+#: ../../Zotlabs/Module/Settings/Display.php:216
+#: ../../Zotlabs/Module/Settings/Display.php:217
+msgid "click to expand content exceeding this height"
+msgstr "Pulsar para expandir el contenido que exceda de esta altura"
+
+#: ../../Zotlabs/Module/Settings/Display.php:217
+msgid "Grid page max height of content (in pixels)"
+msgstr "Altura máxima del contenido de mi red (en píxeles)"
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:31
+#, php-format
+msgid "This channel is limited to %d tokens"
+msgstr "Este canal tiene un límite de %d tokens"
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:37
+msgid "Name and Password are required."
+msgstr "Se requiere el nombre y la contraseña."
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:77
+msgid "Token saved."
+msgstr "Token salvado."
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:113
+msgid ""
+"Use this form to create temporary access identifiers to share things with "
+"non-members. These identities may be used in Access Control Lists and "
+"visitors may login using these credentials to access private content."
+msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:115
+msgid ""
+"You may also provide <em>dropbox</em> style access links to friends and "
+"associates by adding the Login Password to any specific site URL as shown. "
+"Examples:"
+msgstr "También puede proporcionar, con el estilo <em>dropbox</em>, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:658
+msgid "Guest Access Tokens"
+msgstr "Tokens de acceso para invitados"
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:157
+msgid "Login Name"
+msgstr "Nombre de inicio de sesión"
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:158
+msgid "Login Password"
+msgstr "Contraseña de inicio de sesión"
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:159
+msgid "Expires (yyyy-mm-dd)"
+msgstr "Expira (aaaa-mm-dd)"
+
+#: ../../Zotlabs/Module/Settings/Featured.php:20
+msgid "Affinity Slider settings updated."
+msgstr "Se han actualizado los ajustes del controlador de afinidad."
+
+#: ../../Zotlabs/Module/Settings/Featured.php:34
+msgid "No feature settings configured"
+msgstr "No se ha establecido la configuración de los complementos"
+
+#: ../../Zotlabs/Module/Settings/Featured.php:41
+msgid "Default maximum affinity level"
+msgstr "Nivel máximo de afinidad por defecto"
+
+#: ../../Zotlabs/Module/Settings/Featured.php:46
+msgid "Default minimum affinity level"
+msgstr "Nivel mínimo de afinidad por defecto"
+
+#: ../../Zotlabs/Module/Settings/Featured.php:50
+msgid "Affinity Slider Settings"
+msgstr "Ajustes del controlador de afinidad"
+
+#: ../../Zotlabs/Module/Settings/Featured.php:60
+msgid "Feature/Addon Settings"
+msgstr "Ajustes de los complementos"
+
#: ../../Zotlabs/Module/Settings/Channel.php:246
#: ../../extend/addon/addon/logrot/logrot.php:54
#: ../../extend/addon/addon/msgfooter/msgfooter.php:54
@@ -6411,484 +6616,320 @@ msgstr "Su dirección de canal es"
msgid "Your files/photos are accessible via WebDAV at"
msgstr "Sus archivos y fotos son accesibles a través de WebDAV en "
-#: ../../Zotlabs/Module/Settings/Channel.php:453
+#: ../../Zotlabs/Module/Settings/Channel.php:456
msgid "Channel Settings"
msgstr "Ajustes del canal"
-#: ../../Zotlabs/Module/Settings/Channel.php:460
+#: ../../Zotlabs/Module/Settings/Channel.php:463
msgid "Basic Settings"
msgstr "Configuración básica"
-#: ../../Zotlabs/Module/Settings/Channel.php:461
-#: ../../include/channel.php:1172
+#: ../../Zotlabs/Module/Settings/Channel.php:464
+#: ../../include/channel.php:1250
msgid "Full Name:"
msgstr "Nombre completo:"
-#: ../../Zotlabs/Module/Settings/Channel.php:463
+#: ../../Zotlabs/Module/Settings/Channel.php:466
msgid "Your Timezone:"
msgstr "Su huso horario:"
-#: ../../Zotlabs/Module/Settings/Channel.php:464
+#: ../../Zotlabs/Module/Settings/Channel.php:467
msgid "Default Post Location:"
msgstr "Localización geográfica predeterminada para sus publicaciones:"
-#: ../../Zotlabs/Module/Settings/Channel.php:464
+#: ../../Zotlabs/Module/Settings/Channel.php:467
msgid "Geographical location to display on your posts"
msgstr "Localización geográfica que debe mostrarse en sus publicaciones"
-#: ../../Zotlabs/Module/Settings/Channel.php:465
+#: ../../Zotlabs/Module/Settings/Channel.php:468
msgid "Use Browser Location:"
msgstr "Usar la localización geográfica del navegador:"
-#: ../../Zotlabs/Module/Settings/Channel.php:467
+#: ../../Zotlabs/Module/Settings/Channel.php:470
msgid "Adult Content"
msgstr "Contenido solo para adultos"
-#: ../../Zotlabs/Module/Settings/Channel.php:467
+#: ../../Zotlabs/Module/Settings/Channel.php:470
msgid ""
"This channel frequently or regularly publishes adult content. (Please tag "
"any adult material and/or nudity with #NSFW)"
msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"
-#: ../../Zotlabs/Module/Settings/Channel.php:469
+#: ../../Zotlabs/Module/Settings/Channel.php:472
msgid "Security and Privacy Settings"
msgstr "Configuración de seguridad y privacidad"
-#: ../../Zotlabs/Module/Settings/Channel.php:472
+#: ../../Zotlabs/Module/Settings/Channel.php:475
msgid "Your permissions are already configured. Click to view/adjust"
msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar"
-#: ../../Zotlabs/Module/Settings/Channel.php:474
+#: ../../Zotlabs/Module/Settings/Channel.php:477
msgid "Hide my online presence"
msgstr "Ocultar mi presencia en línea"
-#: ../../Zotlabs/Module/Settings/Channel.php:474
+#: ../../Zotlabs/Module/Settings/Channel.php:477
msgid "Prevents displaying in your profile that you are online"
msgstr "Evitar mostrar en su perfil que está en línea"
-#: ../../Zotlabs/Module/Settings/Channel.php:476
+#: ../../Zotlabs/Module/Settings/Channel.php:479
msgid "Simple Privacy Settings:"
msgstr "Configuración de privacidad sencilla:"
-#: ../../Zotlabs/Module/Settings/Channel.php:477
+#: ../../Zotlabs/Module/Settings/Channel.php:480
msgid ""
"Very Public - <em>extremely permissive (should be used with caution)</em>"
msgstr "Muy Público - <em>extremadamente permisivo (debería ser usado con precaución)</em>"
-#: ../../Zotlabs/Module/Settings/Channel.php:478
+#: ../../Zotlabs/Module/Settings/Channel.php:481
msgid ""
"Typical - <em>default public, privacy when desired (similar to social "
"network permissions but with improved privacy)</em>"
msgstr "Típico - <em>por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)</em>"
-#: ../../Zotlabs/Module/Settings/Channel.php:479
+#: ../../Zotlabs/Module/Settings/Channel.php:482
msgid "Private - <em>default private, never open or public</em>"
msgstr "Privado - <em>por defecto, privado, nunca abierto o público</em>"
-#: ../../Zotlabs/Module/Settings/Channel.php:480
+#: ../../Zotlabs/Module/Settings/Channel.php:483
msgid "Blocked - <em>default blocked to/from everybody</em>"
msgstr "Bloqueado - <em>por defecto, bloqueado/a para cualquiera</em>"
-#: ../../Zotlabs/Module/Settings/Channel.php:482
+#: ../../Zotlabs/Module/Settings/Channel.php:485
msgid "Allow others to tag your posts"
msgstr "Permitir a otros etiquetar sus publicaciones"
-#: ../../Zotlabs/Module/Settings/Channel.php:482
+#: ../../Zotlabs/Module/Settings/Channel.php:485
msgid ""
"Often used by the community to retro-actively flag inappropriate content"
msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."
-#: ../../Zotlabs/Module/Settings/Channel.php:484
+#: ../../Zotlabs/Module/Settings/Channel.php:487
msgid "Channel Permission Limits"
msgstr "Límites de los permisos del canal"
-#: ../../Zotlabs/Module/Settings/Channel.php:486
+#: ../../Zotlabs/Module/Settings/Channel.php:489
msgid "Expire other channel content after this many days"
msgstr "Caducar contenido de otros canales después de este número de días"
-#: ../../Zotlabs/Module/Settings/Channel.php:486
+#: ../../Zotlabs/Module/Settings/Channel.php:489
msgid "0 or blank to use the website limit."
msgstr "0 o en blanco para usar el límite del sitio web."
-#: ../../Zotlabs/Module/Settings/Channel.php:486
+#: ../../Zotlabs/Module/Settings/Channel.php:489
#, php-format
msgid "This website expires after %d days."
msgstr "Este sitio web caduca después de %d días."
-#: ../../Zotlabs/Module/Settings/Channel.php:486
+#: ../../Zotlabs/Module/Settings/Channel.php:489
msgid "This website does not expire imported content."
msgstr "Este sitio web no caduca el contenido importado."
-#: ../../Zotlabs/Module/Settings/Channel.php:486
+#: ../../Zotlabs/Module/Settings/Channel.php:489
msgid "The website limit takes precedence if lower than your limit."
msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite."
-#: ../../Zotlabs/Module/Settings/Channel.php:487
+#: ../../Zotlabs/Module/Settings/Channel.php:490
msgid "Maximum Friend Requests/Day:"
msgstr "Máximo de solicitudes de amistad por día:"
-#: ../../Zotlabs/Module/Settings/Channel.php:487
+#: ../../Zotlabs/Module/Settings/Channel.php:490
msgid "May reduce spam activity"
msgstr "Podría reducir la actividad de spam"
-#: ../../Zotlabs/Module/Settings/Channel.php:488
+#: ../../Zotlabs/Module/Settings/Channel.php:491
msgid "Default Access Control List (ACL)"
msgstr "Lista de control de acceso (ACL) por defecto"
-#: ../../Zotlabs/Module/Settings/Channel.php:490
+#: ../../Zotlabs/Module/Settings/Channel.php:493
msgid "Use my default audience setting for the type of object published"
msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"
-#: ../../Zotlabs/Module/Settings/Channel.php:497
+#: ../../Zotlabs/Module/Settings/Channel.php:500
msgid "Channel permissions category:"
msgstr "Categoría de los permisos del canal:"
-#: ../../Zotlabs/Module/Settings/Channel.php:503
+#: ../../Zotlabs/Module/Settings/Channel.php:506
msgid "Maximum private messages per day from unknown people:"
msgstr "Máximo de mensajes privados por día de gente desconocida:"
-#: ../../Zotlabs/Module/Settings/Channel.php:503
+#: ../../Zotlabs/Module/Settings/Channel.php:506
msgid "Useful to reduce spamming"
msgstr "Útil para reducir el envío de correo no deseado"
-#: ../../Zotlabs/Module/Settings/Channel.php:506
+#: ../../Zotlabs/Module/Settings/Channel.php:509
msgid "Notification Settings"
msgstr "Configuración de las notificaciones"
-#: ../../Zotlabs/Module/Settings/Channel.php:507
+#: ../../Zotlabs/Module/Settings/Channel.php:510
msgid "By default post a status message when:"
msgstr "Por defecto, enviar un mensaje de estado cuando:"
-#: ../../Zotlabs/Module/Settings/Channel.php:508
+#: ../../Zotlabs/Module/Settings/Channel.php:511
msgid "accepting a friend request"
msgstr "Acepte una solicitud de amistad"
-#: ../../Zotlabs/Module/Settings/Channel.php:509
+#: ../../Zotlabs/Module/Settings/Channel.php:512
msgid "joining a forum/community"
msgstr "al unirse a un foro o comunidad"
-#: ../../Zotlabs/Module/Settings/Channel.php:510
+#: ../../Zotlabs/Module/Settings/Channel.php:513
msgid "making an <em>interesting</em> profile change"
msgstr "Realice un cambio <em>interesante</em> en su perfil"
-#: ../../Zotlabs/Module/Settings/Channel.php:511
+#: ../../Zotlabs/Module/Settings/Channel.php:514
msgid "Send a notification email when:"
msgstr "Enviar una notificación por correo electrónico cuando:"
-#: ../../Zotlabs/Module/Settings/Channel.php:512
+#: ../../Zotlabs/Module/Settings/Channel.php:515
msgid "You receive a connection request"
msgstr "Reciba una solicitud de conexión"
-#: ../../Zotlabs/Module/Settings/Channel.php:513
+#: ../../Zotlabs/Module/Settings/Channel.php:516
msgid "Your connections are confirmed"
msgstr "Sus conexiones hayan sido confirmadas"
-#: ../../Zotlabs/Module/Settings/Channel.php:514
+#: ../../Zotlabs/Module/Settings/Channel.php:517
msgid "Someone writes on your profile wall"
msgstr "Alguien escriba en la página de su perfil (\"muro\")"
-#: ../../Zotlabs/Module/Settings/Channel.php:515
+#: ../../Zotlabs/Module/Settings/Channel.php:518
msgid "Someone writes a followup comment"
msgstr "Alguien escriba un comentario sobre sus publicaciones"
-#: ../../Zotlabs/Module/Settings/Channel.php:516
+#: ../../Zotlabs/Module/Settings/Channel.php:519
msgid "You receive a private message"
msgstr "Reciba un mensaje privado"
-#: ../../Zotlabs/Module/Settings/Channel.php:517
+#: ../../Zotlabs/Module/Settings/Channel.php:520
msgid "You receive a friend suggestion"
msgstr "Reciba una sugerencia de amistad"
-#: ../../Zotlabs/Module/Settings/Channel.php:518
+#: ../../Zotlabs/Module/Settings/Channel.php:521
msgid "You are tagged in a post"
msgstr "Usted sea etiquetado en una publicación"
-#: ../../Zotlabs/Module/Settings/Channel.php:519
+#: ../../Zotlabs/Module/Settings/Channel.php:522
msgid "You are poked/prodded/etc. in a post"
msgstr "Reciba un toque o incitación en una publicación"
-#: ../../Zotlabs/Module/Settings/Channel.php:521
+#: ../../Zotlabs/Module/Settings/Channel.php:524
msgid "Someone likes your post/comment"
msgstr "Alguien muestre agrado por su entrada o comentario"
-#: ../../Zotlabs/Module/Settings/Channel.php:524
+#: ../../Zotlabs/Module/Settings/Channel.php:527
msgid "Show visual notifications including:"
msgstr "Mostrar notificaciones visuales que incluyan:"
-#: ../../Zotlabs/Module/Settings/Channel.php:526
+#: ../../Zotlabs/Module/Settings/Channel.php:529
msgid "Unseen grid activity"
msgstr "Nueva actividad en la red"
-#: ../../Zotlabs/Module/Settings/Channel.php:527
+#: ../../Zotlabs/Module/Settings/Channel.php:530
msgid "Unseen channel activity"
msgstr "Actividad no vista en el canal"
-#: ../../Zotlabs/Module/Settings/Channel.php:528
+#: ../../Zotlabs/Module/Settings/Channel.php:531
msgid "Unseen private messages"
msgstr "Mensajes privados no leídos"
-#: ../../Zotlabs/Module/Settings/Channel.php:528
-#: ../../Zotlabs/Module/Settings/Channel.php:533
-#: ../../Zotlabs/Module/Settings/Channel.php:534
-#: ../../Zotlabs/Module/Settings/Channel.php:535
+#: ../../Zotlabs/Module/Settings/Channel.php:531
+#: ../../Zotlabs/Module/Settings/Channel.php:536
+#: ../../Zotlabs/Module/Settings/Channel.php:537
+#: ../../Zotlabs/Module/Settings/Channel.php:538
#: ../../extend/addon/addon/jappixmini/jappixmini.php:343
msgid "Recommended"
msgstr "Recomendado"
-#: ../../Zotlabs/Module/Settings/Channel.php:529
+#: ../../Zotlabs/Module/Settings/Channel.php:532
msgid "Upcoming events"
msgstr "Próximos eventos"
-#: ../../Zotlabs/Module/Settings/Channel.php:530
+#: ../../Zotlabs/Module/Settings/Channel.php:533
msgid "Events today"
msgstr "Eventos de hoy"
-#: ../../Zotlabs/Module/Settings/Channel.php:531
+#: ../../Zotlabs/Module/Settings/Channel.php:534
msgid "Upcoming birthdays"
msgstr "Próximos cumpleaños"
-#: ../../Zotlabs/Module/Settings/Channel.php:531
+#: ../../Zotlabs/Module/Settings/Channel.php:534
msgid "Not available in all themes"
msgstr "No disponible en todos los temas"
-#: ../../Zotlabs/Module/Settings/Channel.php:532
+#: ../../Zotlabs/Module/Settings/Channel.php:535
msgid "System (personal) notifications"
msgstr "Notificaciones del sistema (personales)"
-#: ../../Zotlabs/Module/Settings/Channel.php:533
+#: ../../Zotlabs/Module/Settings/Channel.php:536
msgid "System info messages"
msgstr "Mensajes de información del sistema"
-#: ../../Zotlabs/Module/Settings/Channel.php:534
+#: ../../Zotlabs/Module/Settings/Channel.php:537
msgid "System critical alerts"
msgstr "Alertas críticas del sistema"
-#: ../../Zotlabs/Module/Settings/Channel.php:535
+#: ../../Zotlabs/Module/Settings/Channel.php:538
msgid "New connections"
msgstr "Nuevas conexiones"
-#: ../../Zotlabs/Module/Settings/Channel.php:536
+#: ../../Zotlabs/Module/Settings/Channel.php:539
msgid "System Registrations"
msgstr "Registros del sistema"
-#: ../../Zotlabs/Module/Settings/Channel.php:537
+#: ../../Zotlabs/Module/Settings/Channel.php:540
msgid ""
"Also show new wall posts, private messages and connections under Notices"
msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"
-#: ../../Zotlabs/Module/Settings/Channel.php:539
+#: ../../Zotlabs/Module/Settings/Channel.php:542
msgid "Notify me of events this many days in advance"
msgstr "Avisarme de los eventos con algunos días de antelación"
-#: ../../Zotlabs/Module/Settings/Channel.php:539
+#: ../../Zotlabs/Module/Settings/Channel.php:542
msgid "Must be greater than 0"
msgstr "Debe ser mayor que 0"
-#: ../../Zotlabs/Module/Settings/Channel.php:541
+#: ../../Zotlabs/Module/Settings/Channel.php:548
msgid "Advanced Account/Page Type Settings"
msgstr "Ajustes avanzados de la cuenta y de los tipos de página"
-#: ../../Zotlabs/Module/Settings/Channel.php:542
+#: ../../Zotlabs/Module/Settings/Channel.php:549
msgid "Change the behaviour of this account for special situations"
msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales"
-#: ../../Zotlabs/Module/Settings/Channel.php:544
+#: ../../Zotlabs/Module/Settings/Channel.php:551
msgid "Miscellaneous Settings"
msgstr "Ajustes diversos"
-#: ../../Zotlabs/Module/Settings/Channel.php:545
+#: ../../Zotlabs/Module/Settings/Channel.php:552
msgid "Default photo upload folder"
msgstr "Carpeta por defecto de las fotos subidas"
-#: ../../Zotlabs/Module/Settings/Channel.php:545
-#: ../../Zotlabs/Module/Settings/Channel.php:546
+#: ../../Zotlabs/Module/Settings/Channel.php:552
+#: ../../Zotlabs/Module/Settings/Channel.php:553
msgid "%Y - current year, %m - current month"
msgstr "%Y - año en curso, %m - mes actual"
-#: ../../Zotlabs/Module/Settings/Channel.php:546
+#: ../../Zotlabs/Module/Settings/Channel.php:553
msgid "Default file upload folder"
msgstr "Carpeta por defecto de los ficheros subidos"
-#: ../../Zotlabs/Module/Settings/Channel.php:548
+#: ../../Zotlabs/Module/Settings/Channel.php:555
msgid "Personal menu to display in your channel pages"
msgstr "Menú personal que debe mostrarse en las páginas de su canal"
-#: ../../Zotlabs/Module/Settings/Channel.php:550
+#: ../../Zotlabs/Module/Settings/Channel.php:557
msgid "Remove this channel."
msgstr "Eliminar este canal."
-#: ../../Zotlabs/Module/Settings/Channel.php:551
+#: ../../Zotlabs/Module/Settings/Channel.php:558
msgid "Firefox Share $Projectname provider"
msgstr "Servicio de compartición de Firefox: proveedor $Projectname"
-#: ../../Zotlabs/Module/Settings/Channel.php:552
+#: ../../Zotlabs/Module/Settings/Channel.php:559
msgid "Start calendar week on monday"
msgstr "Comenzar el calendario semanal por el lunes"
-#: ../../Zotlabs/Module/Settings/Display.php:137
-msgid "No special theme for mobile devices"
-msgstr "Sin tema especial para dispositivos móviles"
-
-#: ../../Zotlabs/Module/Settings/Display.php:140
-#, php-format
-msgid "%s - (Experimental)"
-msgstr "%s - (Experimental)"
-
-#: ../../Zotlabs/Module/Settings/Display.php:191
-msgid "Display Settings"
-msgstr "Ajustes de visualización"
-
-#: ../../Zotlabs/Module/Settings/Display.php:192
-msgid "Theme Settings"
-msgstr "Ajustes del tema"
-
-#: ../../Zotlabs/Module/Settings/Display.php:193
-msgid "Custom Theme Settings"
-msgstr "Ajustes personalizados del tema"
-
-#: ../../Zotlabs/Module/Settings/Display.php:194
-msgid "Content Settings"
-msgstr "Ajustes del contenido"
-
-#: ../../Zotlabs/Module/Settings/Display.php:200
-msgid "Display Theme:"
-msgstr "Tema gráfico del perfil:"
-
-#: ../../Zotlabs/Module/Settings/Display.php:201
-msgid "Select scheme"
-msgstr "Elegir un esquema"
-
-#: ../../Zotlabs/Module/Settings/Display.php:203
-msgid "Mobile Theme:"
-msgstr "Tema para el móvil:"
-
-#: ../../Zotlabs/Module/Settings/Display.php:204
-msgid "Preload images before rendering the page"
-msgstr "Carga previa de las imágenes antes de generar la página"
-
-#: ../../Zotlabs/Module/Settings/Display.php:204
-msgid ""
-"The subjective page load time will be longer but the page will be ready when"
-" displayed"
-msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."
-
-#: ../../Zotlabs/Module/Settings/Display.php:205
-msgid "Enable user zoom on mobile devices"
-msgstr "Habilitar zoom de usuario en dispositivos móviles"
-
-#: ../../Zotlabs/Module/Settings/Display.php:206
-msgid "Update browser every xx seconds"
-msgstr "Actualizar navegador cada xx segundos"
-
-#: ../../Zotlabs/Module/Settings/Display.php:206
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Mínimo de 10 segundos, sin máximo"
-
-#: ../../Zotlabs/Module/Settings/Display.php:207
-msgid "Maximum number of conversations to load at any time:"
-msgstr "Máximo número de conversaciones a cargar en cualquier momento:"
-
-#: ../../Zotlabs/Module/Settings/Display.php:207
-msgid "Maximum of 100 items"
-msgstr "Máximo de 100 elementos"
-
-#: ../../Zotlabs/Module/Settings/Display.php:208
-msgid "Show emoticons (smilies) as images"
-msgstr "Mostrar emoticonos (smilies) como imágenes"
-
-#: ../../Zotlabs/Module/Settings/Display.php:209
-msgid "Manual conversation updates"
-msgstr "Actualizaciones manuales de la conversación"
-
-#: ../../Zotlabs/Module/Settings/Display.php:209
-msgid "Default is automatic, which may increase screen jumping"
-msgstr "El valor predeterminado es automático, lo que puede aumentar el salto de pantalla"
-
-#: ../../Zotlabs/Module/Settings/Display.php:210
-msgid "Link post titles to source"
-msgstr "Enlazar título de la publicación a la fuente original"
-
-#: ../../Zotlabs/Module/Settings/Display.php:211
-msgid "System Page Layout Editor - (advanced)"
-msgstr "Editor de plantilla de página del sistema - (avanzado)"
-
-#: ../../Zotlabs/Module/Settings/Display.php:214
-msgid "Use blog/list mode on channel page"
-msgstr "Usar modo blog/lista en la página de inicio del canal"
-
-#: ../../Zotlabs/Module/Settings/Display.php:214
-#: ../../Zotlabs/Module/Settings/Display.php:215
-msgid "(comments displayed separately)"
-msgstr "(comentarios mostrados de forma separada)"
-
-#: ../../Zotlabs/Module/Settings/Display.php:215
-msgid "Use blog/list mode on grid page"
-msgstr "Mostrar mi red en modo blog"
-
-#: ../../Zotlabs/Module/Settings/Display.php:216
-msgid "Channel page max height of content (in pixels)"
-msgstr "Altura máxima del contenido de la página del canal (en píxeles)"
-
-#: ../../Zotlabs/Module/Settings/Display.php:216
-#: ../../Zotlabs/Module/Settings/Display.php:217
-msgid "click to expand content exceeding this height"
-msgstr "Pulsar para expandir el contenido que exceda de esta altura"
-
-#: ../../Zotlabs/Module/Settings/Display.php:217
-msgid "Grid page max height of content (in pixels)"
-msgstr "Altura máxima del contenido de mi red (en píxeles)"
-
-#: ../../Zotlabs/Module/Settings/Featured.php:24
-msgid "No feature settings configured"
-msgstr "No se ha establecido la configuración de los complementos"
-
-#: ../../Zotlabs/Module/Settings/Featured.php:31
-msgid "Feature/Addon Settings"
-msgstr "Ajustes de los complementos"
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:31
-#, php-format
-msgid "This channel is limited to %d tokens"
-msgstr "Este canal tiene un límite de %d tokens"
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:37
-msgid "Name and Password are required."
-msgstr "Se requiere el nombre y la contraseña."
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:77
-msgid "Token saved."
-msgstr "Token salvado."
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:113
-msgid ""
-"Use this form to create temporary access identifiers to share things with "
-"non-members. These identities may be used in Access Control Lists and "
-"visitors may login using these credentials to access private content."
-msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:115
-msgid ""
-"You may also provide <em>dropbox</em> style access links to friends and "
-"associates by adding the Login Password to any specific site URL as shown. "
-"Examples:"
-msgstr "También puede proporcionar, con el estilo <em>dropbox</em>, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:650
-msgid "Guest Access Tokens"
-msgstr "Tokens de acceso para invitados"
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:157
-msgid "Login Name"
-msgstr "Nombre de inicio de sesión"
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:158
-msgid "Login Password"
-msgstr "Contraseña de inicio de sesión"
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:159
-msgid "Expires (yyyy-mm-dd)"
-msgstr "Expira (aaaa-mm-dd)"
-
#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98
msgid "Tag removed"
msgstr "Etiqueta eliminada."
@@ -7144,40 +7185,6 @@ msgstr "Búsqueda de canales"
msgid "Lookup xchan beginning with (or webbie): "
msgstr "Buscar un canal (o un \"webbie\") que comience por:"
-#: ../../Zotlabs/Module/Item.php:184
-msgid "Unable to locate original post."
-msgstr "No ha sido posible encontrar la entrada original."
-
-#: ../../Zotlabs/Module/Item.php:450
-msgid "Empty post discarded."
-msgstr "La entrada vacía ha sido desechada."
-
-#: ../../Zotlabs/Module/Item.php:492
-msgid "Executable content type not permitted to this channel."
-msgstr "Contenido de tipo ejecutable no permitido en este canal."
-
-#: ../../Zotlabs/Module/Item.php:842
-msgid "Duplicate post suppressed."
-msgstr "Se ha suprimido la entrada duplicada."
-
-#: ../../Zotlabs/Module/Item.php:984
-msgid "System error. Post not saved."
-msgstr "Error del sistema. La entrada no se ha podido salvar."
-
-#: ../../Zotlabs/Module/Item.php:1114
-msgid "Unable to obtain post information from database."
-msgstr "No ha sido posible obtener información de la entrada en la base de datos."
-
-#: ../../Zotlabs/Module/Item.php:1121
-#, php-format
-msgid "You have reached your limit of %1$.0f top level posts."
-msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal."
-
-#: ../../Zotlabs/Module/Item.php:1128
-#, php-format
-msgid "You have reached your limit of %1$.0f webpages."
-msgstr "Ha alcanzado su límite de %1$.0f páginas web."
-
#: ../../Zotlabs/Lib/Chatroom.php:27
msgid "Missing room name"
msgstr "Sala de chat sin nombre"
@@ -7198,22 +7205,22 @@ msgstr "Sala no encontrada."
msgid "Room is full"
msgstr "La sala está llena."
-#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1918
+#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1924
msgid "$Projectname Notification"
msgstr "Notificación de $Projectname"
#: ../../Zotlabs/Lib/Enotify.php:61 ../../extend/addon/addon/diaspora/p.php:46
#: ../../extend/addon/addon/diaspora/util.php:218
#: ../../extend/addon/addon/diaspora/util.php:231
-#: ../../include/network.php:1919
+#: ../../include/network.php:1925
msgid "$projectname"
msgstr "$projectname"
-#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1921
+#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1927
msgid "Thank You,"
msgstr "Gracias,"
-#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1923
+#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1929
#, php-format
msgid "%s Administrator"
msgstr "%s Administrador"
@@ -7677,177 +7684,181 @@ msgstr "Insertar enlace"
msgid "Video"
msgstr "Vídeo"
-#: ../../Zotlabs/Lib/NativeWikiPage.php:31
-#: ../../Zotlabs/Lib/NativeWikiPage.php:62
-msgid "(No Title)"
-msgstr "(Sin título)"
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:85
-msgid "Wiki not found."
-msgstr "No se ha encontrado la wiki."
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:96
-msgid "Destination name already exists"
-msgstr "El nombre de destino ya existe"
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:122
-#: ../../Zotlabs/Lib/NativeWikiPage.php:337
-msgid "Page not found"
-msgstr "No se ha encontrado la página"
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:151
-msgid "Error reading page content"
-msgstr "Se ha producido un error al leer el contenido de la página"
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:330
-#: ../../Zotlabs/Lib/NativeWikiPage.php:375
-#: ../../Zotlabs/Lib/NativeWikiPage.php:444
-#: ../../Zotlabs/Lib/NativeWikiPage.php:486
-msgid "Error reading wiki"
-msgstr "Se ha producido un error al leer la wiki"
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:363
-msgid "Page update failed."
-msgstr "Se ha producido un error al actualizar la página."
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:399
-msgid "Nothing deleted"
-msgstr "No se ha eliminado nada"
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:465
-msgid "Compare: object not found."
-msgstr "No se ha encontrado un objeto para comparar."
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:471
-msgid "Page updated"
-msgstr "Se ha actualizado la página"
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:474
-msgid "Untitled"
-msgstr "Sin título"
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:480
-msgid "Wiki resource_id required for git commit"
-msgstr "Se necesita Wiki resource_id para el git commit"
-
-#: ../../Zotlabs/Lib/NativeWikiPage.php:546
-#: ../../extend/addon/addon/gitwiki/gitwiki_backend.php:579
-#: ../../include/bbcode.php:576 ../../include/bbcode.php:719
-msgid "Different viewers will see this text differently"
-msgstr "Visitantes diferentes verán este texto de forma distinta"
-
-#: ../../Zotlabs/Lib/NativeWiki.php:116
-msgid "Wiki files deleted successfully"
-msgstr "Se han borrado satisfactoriamente los ficheros de la wiki"
-
-#: ../../Zotlabs/Lib/Apps.php:207
+#: ../../Zotlabs/Lib/Apps.php:209
msgid "Site Admin"
msgstr "Administrador del sitio"
-#: ../../Zotlabs/Lib/Apps.php:208
+#: ../../Zotlabs/Lib/Apps.php:210
#: ../../extend/addon/addon/buglink/buglink.php:16
msgid "Report Bug"
msgstr "Informe de errores"
-#: ../../Zotlabs/Lib/Apps.php:209
+#: ../../Zotlabs/Lib/Apps.php:211
msgid "View Bookmarks"
msgstr "Ver los marcadores"
-#: ../../Zotlabs/Lib/Apps.php:210
+#: ../../Zotlabs/Lib/Apps.php:212
msgid "My Chatrooms"
msgstr "Mis salas de chat"
-#: ../../Zotlabs/Lib/Apps.php:212
+#: ../../Zotlabs/Lib/Apps.php:214
msgid "Firefox Share"
msgstr "Servicio de compartición de Firefox"
-#: ../../Zotlabs/Lib/Apps.php:213
+#: ../../Zotlabs/Lib/Apps.php:215
msgid "Remote Diagnostics"
msgstr "Diagnóstico remoto"
-#: ../../Zotlabs/Lib/Apps.php:214 ../../include/features.php:328
+#: ../../Zotlabs/Lib/Apps.php:216 ../../include/features.php:328
msgid "Suggest Channels"
msgstr "Sugerir canales"
-#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:115
-#: ../../boot.php:1722
+#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:116
+#: ../../boot.php:1732
msgid "Login"
msgstr "Iniciar sesión"
-#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:182
+#: ../../Zotlabs/Lib/Apps.php:219 ../../include/nav.php:184
msgid "Grid"
msgstr "Red"
-#: ../../Zotlabs/Lib/Apps.php:221 ../../include/features.php:99
-#: ../../include/conversation.php:1903
+#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1903
+#: ../../include/features.php:99
msgid "Wiki"
msgstr "Wiki"
-#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:185
+#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:187
msgid "Channel Home"
msgstr "Mi canal"
-#: ../../Zotlabs/Lib/Apps.php:225 ../../include/nav.php:204
-#: ../../include/conversation.php:1853 ../../include/conversation.php:1856
+#: ../../Zotlabs/Lib/Apps.php:227 ../../include/conversation.php:1853
+#: ../../include/conversation.php:1856 ../../include/nav.php:206
msgid "Events"
msgstr "Eventos"
-#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:170
+#: ../../Zotlabs/Lib/Apps.php:228 ../../include/nav.php:172
msgid "Directory"
msgstr "Directorio"
-#: ../../Zotlabs/Lib/Apps.php:228 ../../include/nav.php:196
+#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:198
msgid "Mail"
msgstr "Correo"
-#: ../../Zotlabs/Lib/Apps.php:231 ../../include/nav.php:99
+#: ../../Zotlabs/Lib/Apps.php:233 ../../include/nav.php:99
msgid "Chat"
msgstr "Chat"
-#: ../../Zotlabs/Lib/Apps.php:233
+#: ../../Zotlabs/Lib/Apps.php:235
msgid "Probe"
msgstr "Probar"
-#: ../../Zotlabs/Lib/Apps.php:234
+#: ../../Zotlabs/Lib/Apps.php:236
msgid "Suggest"
msgstr "Sugerir"
-#: ../../Zotlabs/Lib/Apps.php:235
+#: ../../Zotlabs/Lib/Apps.php:237
msgid "Random Channel"
msgstr "Canal aleatorio"
-#: ../../Zotlabs/Lib/Apps.php:236
+#: ../../Zotlabs/Lib/Apps.php:238
msgid "Invite"
msgstr "Invitar"
-#: ../../Zotlabs/Lib/Apps.php:237 ../../include/widgets.php:1576
+#: ../../Zotlabs/Lib/Apps.php:239 ../../include/widgets.php:1587
msgid "Features"
msgstr "Funcionalidades"
-#: ../../Zotlabs/Lib/Apps.php:238
+#: ../../Zotlabs/Lib/Apps.php:240
#: ../../extend/addon/addon/openid/MysqlProvider.php:69
msgid "Language"
msgstr "Idioma"
-#: ../../Zotlabs/Lib/Apps.php:239
+#: ../../Zotlabs/Lib/Apps.php:241
msgid "Post"
msgstr "Publicación"
-#: ../../Zotlabs/Lib/Apps.php:240
+#: ../../Zotlabs/Lib/Apps.php:242
#: ../../extend/addon/addon/openid/MysqlProvider.php:58
#: ../../extend/addon/addon/openid/MysqlProvider.php:59
#: ../../extend/addon/addon/openid/MysqlProvider.php:60
msgid "Profile Photo"
msgstr "Foto del perfil"
-#: ../../Zotlabs/Lib/Apps.php:344
+#: ../../Zotlabs/Lib/Apps.php:349
msgid "Purchase"
msgstr "Comprar"
-#: ../../Zotlabs/Lib/Apps.php:348
+#: ../../Zotlabs/Lib/Apps.php:353
msgid "Undelete"
msgstr "Recuperar"
+#: ../../Zotlabs/Lib/NativeWiki.php:126
+msgid "Wiki files deleted successfully"
+msgstr "Se han borrado con éxito los ficheros del wiki"
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:31
+#: ../../Zotlabs/Lib/NativeWikiPage.php:62
+msgid "(No Title)"
+msgstr "(Sin título)"
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:76
+msgid "Wiki page create failed."
+msgstr "Se ha producido un error en la creación de la página wiki."
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:89
+msgid "Wiki not found."
+msgstr "No se ha encontrado el wiki."
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:100
+msgid "Destination name already exists"
+msgstr "El nombre de destino ya existe"
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:126
+#: ../../Zotlabs/Lib/NativeWikiPage.php:345
+msgid "Page not found"
+msgstr "No se ha encontrado la página"
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:156
+msgid "Error reading page content"
+msgstr "Se ha producido un error al leer el contenido de la página"
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:338
+#: ../../Zotlabs/Lib/NativeWikiPage.php:383
+#: ../../Zotlabs/Lib/NativeWikiPage.php:450
+#: ../../Zotlabs/Lib/NativeWikiPage.php:491
+msgid "Error reading wiki"
+msgstr "Se ha producido un error al leer el wiki"
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:371
+msgid "Page update failed."
+msgstr "Se ha producido un error al actualizar la página."
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:405
+msgid "Nothing deleted"
+msgstr "No se ha eliminado nada"
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:471
+msgid "Compare: object not found."
+msgstr "No se ha encontrado un objeto para comparar."
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:477
+msgid "Page updated"
+msgstr "Se ha actualizado la página"
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:480
+msgid "Untitled"
+msgstr "Sin título"
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:486
+msgid "Wiki resource_id required for git commit"
+msgstr "Se necesita Wiki resource_id para el git commit"
+
+#: ../../Zotlabs/Lib/NativeWikiPage.php:557
+#: ../../extend/addon/addon/gitwiki/gitwiki_backend.php:579
+#: ../../include/bbcode.php:610 ../../include/bbcode.php:756
+msgid "Different viewers will see this text differently"
+msgstr "Visitantes diferentes verán este texto de forma distinta"
+
#: ../../extend/addon/addon/adultphotoflag/adultphotoflag.php:24
msgid "Flag Adult Photos"
msgstr "Indicador (\"flag\") de fotos de adultos"
@@ -7904,27 +7915,36 @@ msgstr "Mostrar para tocadores zurdos"
msgid "Quick Reference"
msgstr "Referencia rápida"
-#: ../../extend/addon/addon/diaspora/diaspora.php:671
+#: ../../extend/addon/addon/diaspora/import_diaspora.php:16
+msgid "No username found in import file."
+msgstr "No se ha encontrado el nombre de usuario en el fichero importado."
+
+#: ../../extend/addon/addon/diaspora/import_diaspora.php:41
+#: ../../include/import.php:51
+msgid "Unable to create a unique channel address. Import failed."
+msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación."
+
+#: ../../extend/addon/addon/diaspora/diaspora.php:677
msgid "Diaspora Protocol Settings updated."
msgstr "Los ajustes del protocolo de Diaspora se han actualizado."
-#: ../../extend/addon/addon/diaspora/diaspora.php:692
+#: ../../extend/addon/addon/diaspora/diaspora.php:698
msgid "Enable the Diaspora protocol for this channel"
msgstr "Activar el protocolo de Diaspora para este canal"
-#: ../../extend/addon/addon/diaspora/diaspora.php:696
+#: ../../extend/addon/addon/diaspora/diaspora.php:702
msgid "Allow any Diaspora member to comment on your public posts"
msgstr "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas"
-#: ../../extend/addon/addon/diaspora/diaspora.php:700
+#: ../../extend/addon/addon/diaspora/diaspora.php:706
msgid "Prevent your hashtags from being redirected to other sites"
msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios "
-#: ../../extend/addon/addon/diaspora/diaspora.php:705
+#: ../../extend/addon/addon/diaspora/diaspora.php:711
msgid "Followed hashtags (comma separated, do not include the #)"
msgstr "\"Hashtags\" seguidos (separados por comas, sin incluir #)"
-#: ../../extend/addon/addon/diaspora/diaspora.php:710
+#: ../../extend/addon/addon/diaspora/diaspora.php:716
msgid "Diaspora Protocol Settings"
msgstr "Ajustes del protocolo de Diaspora"
@@ -8407,7 +8427,7 @@ msgid "Add a personal note:"
msgstr "Añadir un comentario personal: "
#: ../../extend/addon/addon/friendica/dfrn_request.php:871
-#: ../../include/network.php:2236 ../../include/network.php:2237
+#: ../../include/network.php:2242 ../../include/network.php:2243
msgid "Friendica"
msgstr "Friendica"
@@ -8416,7 +8436,7 @@ msgid "StatusNet/Federated Social Web"
msgstr "Red social federada StatusNet"
#: ../../extend/addon/addon/friendica/dfrn_request.php:873
-#: ../../include/network.php:2242
+#: ../../include/network.php:2248
msgid "Diaspora"
msgstr "Diaspora"
@@ -8480,10 +8500,6 @@ msgstr "Nombre de inicio de sesión en Friendica"
msgid "Friendica Login Password"
msgstr "Contraseña de inicio de sesión en Friendica"
-#: ../../extend/addon/addon/gnusoc/gnusoc.php:129
-msgid "Enable the GNU-Social protocol for this channel"
-msgstr "Activar el protocolo de GNU-Social para este canal"
-
#: ../../extend/addon/addon/hubwall/hubwall.php:19
msgid "Send email to all members"
msgstr "Enviar un correo electrónico a todos los miembros"
@@ -8575,7 +8591,7 @@ msgid "IRC Chatroom"
msgstr "Sala de chat IRC"
#: ../../extend/addon/addon/jappixmini/jappixmini.php:305
-#: ../../include/channel.php:1056 ../../include/channel.php:1218
+#: ../../include/channel.php:1134 ../../include/channel.php:1296
msgid "Status:"
msgstr "Estado:"
@@ -9111,7 +9127,7 @@ msgid "Page to load after image selection."
msgstr "Página para cargar después de la selección de imágenes."
#: ../../extend/addon/addon/openclipatar/openclipatar.php:58
-#: ../../include/nav.php:93 ../../include/channel.php:965
+#: ../../include/nav.php:93 ../../include/channel.php:1043
msgid "Edit Profile"
msgstr "Editar el perfil"
@@ -10392,7 +10408,7 @@ msgstr "Debe elegir blancas o negras."
msgid "Error creating new game."
msgstr "Error al crear un nuevo juego."
-#: ../../extend/addon/addon/chess/chess.php:379 ../../include/channel.php:816
+#: ../../extend/addon/addon/chess/chess.php:379 ../../include/channel.php:894
msgid "Requested channel is not available."
msgstr "El canal solicitado no está disponible."
@@ -10434,15 +10450,6 @@ msgstr "Hombre"
msgid "Female"
msgstr "Mujer"
-#: ../../extend/addon/addon/openid/Mod_Openid.php:30
-msgid "OpenID protocol error. No ID returned."
-msgstr "Error de protocolo OpenID. No se recuperó ninguna ID."
-
-#: ../../extend/addon/addon/openid/Mod_Openid.php:193
-#: ../../include/auth.php:286
-msgid "Login failed."
-msgstr "El acceso ha fallado."
-
#: ../../extend/addon/addon/openid/MysqlProvider.php:52
msgid "First Name"
msgstr "Nombre"
@@ -10509,6 +10516,15 @@ msgstr "Encontramos un problema al iniciar sesión con el OpenID que proporcion
msgid "The error message was:"
msgstr "El mensaje de error ha sido: "
+#: ../../extend/addon/addon/openid/Mod_Openid.php:30
+msgid "OpenID protocol error. No ID returned."
+msgstr "Error de protocolo OpenID. No se recuperó ninguna ID."
+
+#: ../../extend/addon/addon/openid/Mod_Openid.php:188
+#: ../../include/auth.php:286
+msgid "Login failed."
+msgstr "El acceso ha fallado."
+
#: ../../extend/addon/addon/diaspora_reconnect/diaspora_reconnect.php:44
#, php-format
msgid "Reconnecting %d connections"
@@ -10568,93 +10584,96 @@ msgid ""
"from Mapbox instead of the default OpenStreetMap tile server."
msgstr "Si introduce un token de acceso a Mapbox, se utilizará para recuperar los mapas de mosaicos de imágenes de Mapbox en lugar del servidor de mosaico de imágenes OpenStreetMap predeterminado."
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:154
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:162
msgid "Rendezvous"
msgstr "Rendezvous"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:159
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:167
msgid ""
"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."
msgstr "Esta identidad ha sido eliminada por otro miembro debido a su inactividad. Pulse el botón \"Nueva identidad\" o actualice la página para registrar una nueva identidad. Puede usar el mismo nombre."
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:160
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:168
msgid "Welcome to Rendezvous!"
msgstr "¡Bienvenido/a a Rendevous!"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:161
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:169
msgid ""
"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."
msgstr "Introduzca tu nombre para unirse a esta cita. Para comenzar a compartir su ubicación con los demás miembros, pulse en el control GPS. Cuando se descubra su ubicación, aparecerá un punto rojo y otros podrán verlo en el mapa."
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:163
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:171
msgid "Let's meet here"
msgstr "Reunámonos aquí"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:166
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:174
msgid "New marker"
msgstr "Nuevo marcador"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:167
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:175
msgid "Edit marker"
msgstr "Editar un marcador"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:168
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:176
msgid "New identity"
msgstr "Nueva identidad"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:169
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:177
msgid "Delete marker"
msgstr "Eliminar un marcador"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:170
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:178
msgid "Delete member"
msgstr "Eliminar un miembro"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:171
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:179
msgid "Edit proximity alert"
msgstr "Editar alerta de proximidad"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:172
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:180
msgid ""
"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):"
msgstr "Se emitirá una alerta de proximidad cuando este miembro esté dentro de un radio determinado respecto a usted.<br><br> Ingrese el radio en metros (0 para deshabilitar):"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:172
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:177
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:180
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:185
msgid "distance"
msgstr "distancia"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:173
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:175
-msgid "Marker proximity alert"
-msgstr "Marcador de alerta de proximidad"
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:181
+msgid "Proximity alert distance (meters)"
+msgstr "Distancia (en metros) para la alerta de proximidad"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:174
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:176
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:182
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:184
msgid ""
"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):"
msgstr "Se emitirá una alerta de proximidad cuando usted esté dentro de un radio determinado respecto al marcador de localización.<br><br> Ingrese el radio en metros (0 para deshabilitar):"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:178
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:183
+msgid "Marker proximity alert"
+msgstr "Marcador de alerta de proximidad"
+
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:186
msgid "Reminder note"
msgstr "Recordatorio"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:179
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:187
msgid ""
"Enter a note to be displayed when you are within the specified proximity..."
msgstr "Introduzca una nota que se mostrará cuando esté dentro de la proximidad especificada..."
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:190
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:199
msgid "Add new rendezvous"
msgstr "Añadir una nueva cita"
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:191
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:200
msgid ""
"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 "
@@ -10662,33 +10681,68 @@ msgid ""
" share their own locations with the group."
msgstr "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."
+#: ../../extend/addon/addon/firefox/firefox.php:23
+msgid "Install Firefox Sharing Tools"
+msgstr "Instalar las herramientas de compartición de Firefox"
+
+#: ../../extend/addon/addon/firefox/firefox.php:34
+msgid "Share content from Firefox to $Projectname"
+msgstr "Compartir contenido desde Firefox a $Projectname"
+
+#: ../../extend/addon/addon/firefox/firefox.php:37
+msgid "Install Firefox Sharing Tools to this web browser"
+msgstr "Instalar las herramientas de compartición de Firefox en este navegador"
+
+#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:105
+msgid "Error retrieving wiki"
+msgstr "Error al recuperar el wiki"
+
+#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:112
+msgid "Error creating zip file export folder"
+msgstr "Error al crear el fichero comprimido zip de la carpeta a exportar"
+
+#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:130
+msgid "Error downloading wiki: "
+msgstr "Error al descargar el wiki: "
+
#: ../../extend/addon/addon/gitwiki/gitwiki.php:76
-#: ../../include/widgets.php:952
+#: ../../include/widgets.php:962
msgid "Wiki Pages"
msgstr "Páginas del wiki"
#: ../../extend/addon/addon/gitwiki/gitwiki.php:81
-#: ../../include/widgets.php:957
+#: ../../include/widgets.php:968
msgid "Add new page"
msgstr "Añadir una nueva página"
#: ../../extend/addon/addon/gitwiki/gitwiki.php:82
-#: ../../include/widgets.php:958
+#: ../../include/widgets.php:969
msgid "Page name"
msgstr "Nombre de la página"
#: ../../extend/addon/addon/gitwiki/gitwiki.php:95
-#: ../../include/widgets.php:911
+#: ../../include/widgets.php:919
msgid "Wiki List"
msgstr "Lista de wikis"
-#: ../../include/Import/import_diaspora.php:16
-msgid "No username found in import file."
-msgstr "No se ha encontrado el nombre de usuario en el fichero importado."
+#: ../../extend/addon/addon/gnusoc/gnusoc.php:129
+msgid "Enable the GNU-Social protocol for this channel"
+msgstr "Activar el protocolo de GNU-Social para este canal"
-#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51
-msgid "Unable to create a unique channel address. Import failed."
-msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación."
+#: ../../extend/addon/addon/opensearch/opensearch.php:26 ../../boot.php:1187
+#, php-format
+msgctxt "opensearch"
+msgid "Search %1$s (%2$s)"
+msgstr "Buscar %1$s (%2$s)"
+
+#: ../../extend/addon/addon/opensearch/opensearch.php:28 ../../boot.php:1187
+msgctxt "opensearch"
+msgid "$Projectname"
+msgstr "$Projectname"
+
+#: ../../extend/addon/addon/opensearch/opensearch.php:43
+msgid "Search $Projectname"
+msgstr "Buscar $Projectname"
#: ../../include/dba/dba_driver.php:187
#, php-format
@@ -10703,45 +10757,6 @@ msgstr "por defecto"
msgid "Select an alternate language"
msgstr "Seleccionar un idioma alternativo"
-#: ../../include/event.php:22 ../../include/event.php:69
-#: ../../include/bb2diaspora.php:504
-msgid "l F d, Y \\@ g:i A"
-msgstr "l d de F, Y \\@ G:i"
-
-#: ../../include/event.php:30 ../../include/event.php:73
-#: ../../include/bb2diaspora.php:510
-msgid "Starts:"
-msgstr "Comienza:"
-
-#: ../../include/event.php:40 ../../include/event.php:77
-#: ../../include/bb2diaspora.php:518
-msgid "Finishes:"
-msgstr "Finaliza:"
-
-#: ../../include/event.php:863
-msgid "This event has been added to your calendar."
-msgstr "Este evento ha sido añadido a su calendario."
-
-#: ../../include/event.php:1063
-msgid "Not specified"
-msgstr "Sin especificar"
-
-#: ../../include/event.php:1064
-msgid "Needs Action"
-msgstr "Necesita de una intervención"
-
-#: ../../include/event.php:1065
-msgid "Completed"
-msgstr "Completado/a"
-
-#: ../../include/event.php:1066
-msgid "In Process"
-msgstr "En proceso"
-
-#: ../../include/event.php:1067
-msgid "Cancelled"
-msgstr "Cancelado/a"
-
#: ../../include/account.php:35
msgid "Not a valid email address"
msgstr "Dirección de correo no válida"
@@ -10840,8 +10855,8 @@ msgid ""
msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.</br /> Estos permisos establecen quién está autorizado para ver el mensaje."
#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270
-#: ../../include/contact_widgets.php:91 ../../include/widgets.php:46
-#: ../../include/widgets.php:468
+#: ../../include/widgets.php:46 ../../include/widgets.php:469
+#: ../../include/contact_widgets.php:91
msgid "Categories"
msgstr "Temas"
@@ -10877,6 +10892,29 @@ msgstr "gusta de"
msgid "dislikes"
msgstr "no gusta de"
+#: ../../include/markdown.php:409
+msgid "Attachments:"
+msgstr "Ficheros adjuntos:"
+
+#: ../../include/markdown.php:504 ../../include/event.php:22
+#: ../../include/event.php:69
+msgid "l F d, Y \\@ g:i A"
+msgstr "l d de F, Y \\@ G:i"
+
+#: ../../include/markdown.php:506
+msgid "$Projectname event notification:"
+msgstr "Notificación de eventos de $Projectname:"
+
+#: ../../include/markdown.php:510 ../../include/event.php:30
+#: ../../include/event.php:73
+msgid "Starts:"
+msgstr "Comienza:"
+
+#: ../../include/markdown.php:518 ../../include/event.php:40
+#: ../../include/event.php:77
+msgid "Finishes:"
+msgstr "Finaliza:"
+
#: ../../include/datetime.php:147
msgid "Birthday"
msgstr "Cumpleaños"
@@ -10889,7 +10927,7 @@ msgstr "Edad:"
msgid "YYYY-MM-DD or MM-DD"
msgstr "AAAA-MM-DD o MM-DD"
-#: ../../include/datetime.php:286 ../../boot.php:2566
+#: ../../include/datetime.php:286 ../../boot.php:2578
msgid "never"
msgstr "nunca"
@@ -10962,16 +11000,6 @@ msgstr "Cumpleaños de %1$s"
msgid "Happy Birthday %1$s"
msgstr "Feliz cumpleaños %1$s"
-#: ../../include/security.php:117
-msgid "guest:"
-msgstr "invitado: "
-
-#: ../../include/security.php:535
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"
-
#: ../../include/selectors.php:30
msgid "Frequently"
msgstr "Frecuentemente"
@@ -11212,545 +11240,602 @@ msgstr "No me importa"
msgid "Ask me"
msgstr "Pregúnteme"
-#: ../../include/zot.php:667
-msgid "Invalid data packet"
-msgstr "Paquete de datos no válido"
+#: ../../include/connections.php:95
+msgid "New window"
+msgstr "Nueva ventana"
-#: ../../include/zot.php:683
-msgid "Unable to verify channel signature"
-msgstr "No ha sido posible de verificar la firma del canal"
+#: ../../include/connections.php:96
+msgid "Open the selected location in a different window or browser tab"
+msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte"
-#: ../../include/zot.php:2334
+#: ../../include/connections.php:214
#, php-format
-msgid "Unable to verify site signature for %s"
-msgstr "No ha sido posible de verificar la firma del sitio para %s"
+msgid "User '%s' deleted"
+msgstr "El usuario '%s' ha sido eliminado"
-#: ../../include/zot.php:3732
-msgid "invalid target signature"
-msgstr "La firma recibida no es válida"
+#: ../../include/conversation.php:204
+#, php-format
+msgid "%1$s is now connected with %2$s"
+msgstr "%1$s ahora está conectado/a con %2$s"
-#: ../../include/bookmarks.php:35
+#: ../../include/conversation.php:239
#, php-format
-msgid "%1$s's bookmarks"
-msgstr "Marcadores de %1$s"
+msgid "%1$s poked %2$s"
+msgstr "%1$s ha dado un toque a %2$s"
-#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1721
-msgid "Logout"
-msgstr "Finalizar sesión"
+#: ../../include/conversation.php:243 ../../include/text.php:1090
+#: ../../include/text.php:1095
+msgid "poked"
+msgstr "ha dado un toque a"
-#: ../../include/nav.php:85 ../../include/nav.php:118
-msgid "End this session"
-msgstr "Finalizar esta sesión"
+#: ../../include/conversation.php:690
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Ver el perfil @ %s de %s"
-#: ../../include/nav.php:88
-msgid "Your posts and conversations"
-msgstr "Sus publicaciones y conversaciones"
+#: ../../include/conversation.php:710
+msgid "Categories:"
+msgstr "Temas:"
-#: ../../include/nav.php:89
-msgid "Your profile page"
-msgstr "Su página del perfil"
+#: ../../include/conversation.php:711
+msgid "Filed under:"
+msgstr "Archivado bajo:"
-#: ../../include/nav.php:91
-msgid "Manage/Edit profiles"
-msgstr "Administrar/editar perfiles"
+#: ../../include/conversation.php:736
+msgid "View in context"
+msgstr "Mostrar en su contexto"
-#: ../../include/nav.php:93
-msgid "Edit your profile"
-msgstr "Editar su perfil"
+#: ../../include/conversation.php:832
+msgid "remove"
+msgstr "eliminar"
-#: ../../include/nav.php:95
-msgid "Your photos"
-msgstr "Sus fotos"
+#: ../../include/conversation.php:836 ../../include/nav.php:278
+msgid "Loading..."
+msgstr "Cargando..."
-#: ../../include/nav.php:96
-msgid "Your files"
-msgstr "Sus ficheros"
+#: ../../include/conversation.php:837
+msgid "Delete Selected Items"
+msgstr "Eliminar elementos seleccionados"
-#: ../../include/nav.php:99
-msgid "Your chatrooms"
-msgstr "Sus salas de chat"
+#: ../../include/conversation.php:930 ../../include/conversation.php:972
+msgid "View Source"
+msgstr "Ver el código fuente de la entrada"
-#: ../../include/nav.php:105 ../../include/conversation.php:1879
-msgid "Bookmarks"
-msgstr "Marcadores"
+#: ../../include/conversation.php:931 ../../include/conversation.php:982
+msgid "Follow Thread"
+msgstr "Seguir este hilo"
-#: ../../include/nav.php:105
-msgid "Your bookmarks"
-msgstr "Sus marcadores"
+#: ../../include/conversation.php:932 ../../include/conversation.php:991
+msgid "Unfollow Thread"
+msgstr "Dejar de seguir este hilo"
-#: ../../include/nav.php:109
-msgid "Your webpages"
-msgstr "Sus páginas web"
+#: ../../include/conversation.php:937 ../../include/conversation.php:1059
+msgid "Activity/Posts"
+msgstr "Actividad y publicaciones"
-#: ../../include/nav.php:111
-msgid "Your wikis"
-msgstr "Sus wikis"
+#: ../../include/conversation.php:939 ../../include/conversation.php:1079
+msgid "Edit Connection"
+msgstr "Editar conexión"
-#: ../../include/nav.php:115
-msgid "Sign in"
-msgstr "Acceder"
+#: ../../include/conversation.php:940 ../../include/conversation.php:1089
+msgid "Message"
+msgstr "Mensaje"
-#: ../../include/nav.php:131
-msgid "Remote authentication"
-msgstr "Acceder desde su servidor"
+#: ../../include/conversation.php:1223
+#, php-format
+msgid "%s likes this."
+msgstr "A %s le gusta esto."
-#: ../../include/nav.php:131
-msgid "Click to authenticate to your home hub"
-msgstr "Pulsar para identificarse en su servidor de inicio"
+#: ../../include/conversation.php:1223
+#, php-format
+msgid "%s doesn't like this."
+msgstr "A %s no le gusta esto."
-#: ../../include/nav.php:143
-msgid "Get me home"
-msgstr "Volver a la página principal"
+#: ../../include/conversation.php:1227
+#, php-format
+msgid "<span %1$s>%2$d people</span> like this."
+msgid_plural "<span %1$s>%2$d people</span> like this."
+msgstr[0] "a <span %1$s>%2$d personas</span> le gusta esto."
+msgstr[1] "A <span %1$s>%2$d personas</span> les gusta esto."
-#: ../../include/nav.php:145
-msgid "Log me out of this site"
-msgstr "Salir de este sitio"
+#: ../../include/conversation.php:1229
+#, php-format
+msgid "<span %1$s>%2$d people</span> don't like this."
+msgid_plural "<span %1$s>%2$d people</span> don't like this."
+msgstr[0] "a <span %1$s>%2$d personas</span> no les gusta esto."
+msgstr[1] "A <span %1$s>%2$d personas</span> no les gusta esto."
-#: ../../include/nav.php:150
-msgid "Create an account"
-msgstr "Crear una cuenta"
+#: ../../include/conversation.php:1235
+msgid "and"
+msgstr "y"
-#: ../../include/nav.php:162
-msgid "Help and documentation"
-msgstr "Ayuda y documentación"
+#: ../../include/conversation.php:1238
+#, php-format
+msgid ", and %d other people"
+msgid_plural ", and %d other people"
+msgstr[0] ", y %d persona más"
+msgstr[1] ", y %d personas más"
-#: ../../include/nav.php:166
-msgid "Applications, utilities, links, games"
-msgstr "Aplicaciones, utilidades, enlaces, juegos"
+#: ../../include/conversation.php:1239
+#, php-format
+msgid "%s like this."
+msgstr "A %s le gusta esto."
-#: ../../include/nav.php:168
-msgid "Search site @name, #tag, ?docs, content"
-msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"
+#: ../../include/conversation.php:1239
+#, php-format
+msgid "%s don't like this."
+msgstr "A %s no le gusta esto."
-#: ../../include/nav.php:170
-msgid "Channel Directory"
-msgstr "Directorio de canales"
+#: ../../include/conversation.php:1282
+msgid "Set your location"
+msgstr "Establecer su ubicación"
-#: ../../include/nav.php:182
-msgid "Your grid"
-msgstr "Mi red"
+#: ../../include/conversation.php:1283
+msgid "Clear browser location"
+msgstr "Eliminar los datos de localización geográfica del navegador"
-#: ../../include/nav.php:183
-msgid "Mark all grid notifications seen"
-msgstr "Marcar todas las notificaciones de la red como vistas"
+#: ../../include/conversation.php:1331
+msgid "Tag term:"
+msgstr "Término de la etiqueta:"
-#: ../../include/nav.php:185
-msgid "Channel home"
-msgstr "Mi canal"
+#: ../../include/conversation.php:1332
+msgid "Where are you right now?"
+msgstr "¿Donde está ahora?"
-#: ../../include/nav.php:186
-msgid "Mark all channel notifications seen"
-msgstr "Marcar todas las notificaciones del canal como leídas"
+#: ../../include/conversation.php:1337
+msgid "Choose a different album..."
+msgstr "Elegir un álbum diferente..."
-#: ../../include/nav.php:192
-msgid "Notices"
-msgstr "Avisos"
+#: ../../include/conversation.php:1341
+msgid "Comments enabled"
+msgstr "Comentarios habilitados"
-#: ../../include/nav.php:192
-msgid "Notifications"
-msgstr "Notificaciones"
+#: ../../include/conversation.php:1342
+msgid "Comments disabled"
+msgstr "Comentarios deshabilitados"
-#: ../../include/nav.php:193
-msgid "See all notifications"
-msgstr "Ver todas las notificaciones"
+#: ../../include/conversation.php:1380
+msgid "Page link name"
+msgstr "Nombre del enlace de la página"
-#: ../../include/nav.php:196
-msgid "Private mail"
-msgstr "Correo privado"
+#: ../../include/conversation.php:1383
+msgid "Post as"
+msgstr "Publicar como"
-#: ../../include/nav.php:197
-msgid "See all private messages"
-msgstr "Ver todas los mensajes privados"
+#: ../../include/conversation.php:1397
+msgid "Toggle voting"
+msgstr "Cambiar votación"
-#: ../../include/nav.php:198
-msgid "Mark all private messages seen"
-msgstr "Marcar todos los mensajes privados como leídos"
+#: ../../include/conversation.php:1400
+msgid "Disable comments"
+msgstr "Dehabilitar los comentarios"
-#: ../../include/nav.php:199 ../../include/widgets.php:703
-msgid "Inbox"
-msgstr "Bandeja de entrada"
+#: ../../include/conversation.php:1401
+msgid "Toggle comments"
+msgstr "Activar o desactivar los comentarios"
-#: ../../include/nav.php:200 ../../include/widgets.php:708
-msgid "Outbox"
-msgstr "Bandeja de salida"
+#: ../../include/conversation.php:1409
+msgid "Categories (optional, comma-separated list)"
+msgstr "Temas (opcional, lista separada por comas)"
-#: ../../include/nav.php:201 ../../include/widgets.php:713
-msgid "New Message"
-msgstr "Nuevo mensaje"
+#: ../../include/conversation.php:1432
+msgid "Other networks and post services"
+msgstr "Otras redes y servicios de publicación"
-#: ../../include/nav.php:204
-msgid "Event Calendar"
-msgstr "Calendario de eventos"
+#: ../../include/conversation.php:1438
+msgid "Set publish date"
+msgstr "Establecer la fecha de publicación"
-#: ../../include/nav.php:205
-msgid "See all events"
-msgstr "Ver todos los eventos"
+#: ../../include/conversation.php:1692
+msgid "Discover"
+msgstr "Descubrir"
-#: ../../include/nav.php:206
-msgid "Mark all events seen"
-msgstr "Marcar todos los eventos como leidos"
+#: ../../include/conversation.php:1695
+msgid "Imported public streams"
+msgstr "Contenidos públicos importados"
-#: ../../include/nav.php:209
-msgid "Manage Your Channels"
-msgstr "Gestionar sus canales"
+#: ../../include/conversation.php:1700
+msgid "Commented Order"
+msgstr "Comentarios recientes"
-#: ../../include/nav.php:211
-msgid "Account/Channel Settings"
-msgstr "Ajustes de cuenta/canales"
+#: ../../include/conversation.php:1703
+msgid "Sort by Comment Date"
+msgstr "Ordenar por fecha de comentario"
-#: ../../include/nav.php:219 ../../include/widgets.php:1606
-msgid "Admin"
-msgstr "Administrador"
+#: ../../include/conversation.php:1707
+msgid "Posted Order"
+msgstr "Publicaciones recientes"
-#: ../../include/nav.php:219
-msgid "Site Setup and Configuration"
-msgstr "Ajustes y configuración del sitio"
+#: ../../include/conversation.php:1710
+msgid "Sort by Post Date"
+msgstr "Ordenar por fecha de publicación"
-#: ../../include/nav.php:247
-msgid "Documentation"
-msgstr "Documentación"
+#: ../../include/conversation.php:1718
+msgid "Posts that mention or involve you"
+msgstr "Publicaciones que le mencionan o involucran"
-#: ../../include/nav.php:251 ../../include/conversation.php:836
-msgid "Loading..."
-msgstr "Cargando..."
+#: ../../include/conversation.php:1727
+msgid "Activity Stream - by date"
+msgstr "Contenido - por fecha"
-#: ../../include/nav.php:256
-msgid "@name, #tag, ?doc, content"
-msgstr "@nombre, #etiqueta, ?ayuda, contenido"
+#: ../../include/conversation.php:1733
+msgid "Starred"
+msgstr "Preferidas"
-#: ../../include/nav.php:257
-msgid "Please wait..."
-msgstr "Espere por favor…"
+#: ../../include/conversation.php:1736
+msgid "Favourite Posts"
+msgstr "Publicaciones favoritas"
-#: ../../include/features.php:58
-msgid "General Features"
-msgstr "Funcionalidades básicas"
+#: ../../include/conversation.php:1743
+msgid "Spam"
+msgstr "Correo basura"
-#: ../../include/features.php:63
-msgid "Multiple Profiles"
-msgstr "Múltiples perfiles"
+#: ../../include/conversation.php:1746
+msgid "Posts flagged as SPAM"
+msgstr "Publicaciones marcadas como basura"
-#: ../../include/features.php:64
-msgid "Ability to create multiple profiles"
-msgstr "Capacidad de crear múltiples perfiles"
+#: ../../include/conversation.php:1818
+msgid "Status Messages and Posts"
+msgstr "Mensajes de estado y publicaciones"
-#: ../../include/features.php:72
-msgid "Advanced Profiles"
-msgstr "Perfiles avanzados"
+#: ../../include/conversation.php:1830
+msgid "Profile Details"
+msgstr "Detalles del perfil"
-#: ../../include/features.php:73
-msgid "Additional profile sections and selections"
-msgstr "Secciones y selecciones de perfil adicionales"
+#: ../../include/conversation.php:1839 ../../include/photos.php:515
+msgid "Photo Albums"
+msgstr "Álbumes de fotos"
-#: ../../include/features.php:81
-msgid "Profile Import/Export"
-msgstr "Importar/Exportar perfil"
+#: ../../include/conversation.php:1846
+msgid "Files and Storage"
+msgstr "Ficheros y repositorio"
-#: ../../include/features.php:82
-msgid "Save and load profile details across sites/channels"
-msgstr "Guardar y cargar detalles del perfil a través de sitios/canales"
+#: ../../include/conversation.php:1866 ../../include/conversation.php:1869
+#: ../../include/widgets.php:894
+msgid "Chatrooms"
+msgstr "Salas de chat"
-#: ../../include/features.php:90
-msgid "Web Pages"
-msgstr "Páginas web"
+#: ../../include/conversation.php:1879 ../../include/nav.php:105
+msgid "Bookmarks"
+msgstr "Marcadores"
-#: ../../include/features.php:91
-msgid "Provide managed web pages on your channel"
-msgstr "Proveer páginas web gestionadas en su canal"
+#: ../../include/conversation.php:1882
+msgid "Saved Bookmarks"
+msgstr "Marcadores guardados"
-#: ../../include/features.php:100
-msgid "Provide a wiki for your channel"
-msgstr "Proporcionar un wiki para su canal"
+#: ../../include/conversation.php:1892
+msgid "View Webpages"
+msgstr "Ver páginas web"
-#: ../../include/features.php:117
-msgid "Private Notes"
-msgstr "Notas privadas"
+#: ../../include/conversation.php:1958
+msgctxt "noun"
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Participaré"
+msgstr[1] "Participaré"
-#: ../../include/features.php:118
-msgid "Enables a tool to store notes and reminders (note: not encrypted)"
-msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"
+#: ../../include/conversation.php:1961
+msgctxt "noun"
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "No participaré"
+msgstr[1] "No participaré"
-#: ../../include/features.php:126
-msgid "Navigation Channel Select"
-msgstr "Navegación por el selector de canales"
+#: ../../include/conversation.php:1964
+msgctxt "noun"
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Indeciso/a"
+msgstr[1] "Indecisos/as"
-#: ../../include/features.php:127
-msgid "Change channels directly from within the navigation dropdown menu"
-msgstr "Cambiar de canales directamente desde el menú de navegación desplegable"
+#: ../../include/conversation.php:1967
+msgctxt "noun"
+msgid "Agree"
+msgid_plural "Agrees"
+msgstr[0] "De acuerdo"
+msgstr[1] "De acuerdo"
-#: ../../include/features.php:135
-msgid "Photo Location"
-msgstr "Ubicación de las fotos"
+#: ../../include/conversation.php:1970
+msgctxt "noun"
+msgid "Disagree"
+msgid_plural "Disagrees"
+msgstr[0] "En desacuerdo"
+msgstr[1] "En desacuerdo"
-#: ../../include/features.php:136
-msgid "If location data is available on uploaded photos, link this to a map."
-msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."
+#: ../../include/conversation.php:1973
+msgctxt "noun"
+msgid "Abstain"
+msgid_plural "Abstains"
+msgstr[0] "se abstiene"
+msgstr[1] "Se abstienen"
-#: ../../include/features.php:144
-msgid "Access Controlled Chatrooms"
-msgstr "Salas de chat moderadas"
+#: ../../include/import.php:30
+msgid ""
+"Cannot create a duplicate channel identifier on this system. Import failed."
+msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."
-#: ../../include/features.php:145
-msgid "Provide chatrooms and chat services with access control."
-msgstr "Proporcionar salas y servicios de chat moderados."
+#: ../../include/import.php:90
+msgid "Channel clone failed. Import failed."
+msgstr "La clonación del canal no ha salido bien. La importación ha fallado."
-#: ../../include/features.php:153
-msgid "Smart Birthdays"
-msgstr "Cumpleaños inteligentes"
+#: ../../include/import.php:1373
+msgid "Unable to import element \""
+msgstr "No se puede importar un elemento \""
-#: ../../include/features.php:154
+#: ../../include/message.php:32
+msgid "Unable to determine sender."
+msgstr "No ha sido posible determinar el remitente. "
+
+#: ../../include/message.php:69
+msgid "No recipient provided."
+msgstr "No se ha especificado ningún destinatario."
+
+#: ../../include/message.php:74
+msgid "[no subject]"
+msgstr "[sin asunto]"
+
+#: ../../include/message.php:225
+msgid "Stored post could not be verified."
+msgstr "No se han podido verificar las publicaciones guardadas."
+
+#: ../../include/security.php:117
+msgid "guest:"
+msgstr "invitado: "
+
+#: ../../include/security.php:532
msgid ""
-"Make birthday events timezone aware in case your friends are scattered "
-"across the planet."
-msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"
-#: ../../include/features.php:162
-msgid "Event Timezone Selection"
-msgstr "Selección del huso horario del evento"
+#: ../../include/widgets.php:103
+msgid "System"
+msgstr "Sistema"
-#: ../../include/features.php:163
-msgid "Allow event creation in timezones other than your own."
-msgstr "Permitir la creación de eventos en husos horarios distintos del suyo."
+#: ../../include/widgets.php:106
+msgid "New App"
+msgstr "Nueva aplicación (app)"
-#: ../../include/features.php:171
-msgid "Advanced Directory Search"
-msgstr "Búsqueda avanzada en el directorio"
+#: ../../include/widgets.php:107
+msgid "Edit Apps"
+msgstr "Modificar las aplicaciones"
-#: ../../include/features.php:172
-msgid "Allows creation of complex directory search queries"
-msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio"
+#: ../../include/widgets.php:155
+msgid "Suggestions"
+msgstr "Sugerencias"
-#: ../../include/features.php:180
-msgid "Advanced Theme and Layout Settings"
-msgstr "Ajustes avanzados de temas y esquemas"
+#: ../../include/widgets.php:156
+msgid "See more..."
+msgstr "Ver más..."
-#: ../../include/features.php:181
-msgid "Allows fine tuning of themes and page layouts"
-msgstr "Permitir el ajuste fino de temas y esquemas de páginas"
+#: ../../include/widgets.php:176
+#, php-format
+msgid "You have %1$.0f of %2$.0f allowed connections."
+msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas."
-#: ../../include/features.php:191
-msgid "Post Composition Features"
-msgstr "Opciones para la redacción de entradas"
+#: ../../include/widgets.php:182
+msgid "Add New Connection"
+msgstr "Añadir nueva conexión"
-#: ../../include/features.php:195
-msgid "Large Photos"
-msgstr "Fotos de gran tamaño"
+#: ../../include/widgets.php:183
+msgid "Enter channel address"
+msgstr "Dirección del canal"
-#: ../../include/features.php:196
-msgid ""
-"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
-"(640px) photo thumbnails"
-msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"
+#: ../../include/widgets.php:184
+msgid "Examples: bob@example.com, https://example.com/barbara"
+msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"
-#: ../../include/features.php:205
-msgid "Automatically import channel content from other channels or feeds"
-msgstr "Importar automáticamente contenido de otros canales o \"feeds\""
+#: ../../include/widgets.php:200
+msgid "Notes"
+msgstr "Notas"
-#: ../../include/features.php:213
-msgid "Even More Encryption"
-msgstr "Más cifrado todavía"
+#: ../../include/widgets.php:276
+msgid "Remove term"
+msgstr "Eliminar término"
-#: ../../include/features.php:214
-msgid ""
-"Allow optional encryption of content end-to-end with a shared secret key"
-msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."
+#: ../../include/widgets.php:284 ../../include/features.php:292
+msgid "Saved Searches"
+msgstr "Búsquedas guardadas"
-#: ../../include/features.php:222
-msgid "Enable Voting Tools"
-msgstr "Permitir entradas con votación"
+#: ../../include/widgets.php:285 ../../include/group.php:316
+msgid "add"
+msgstr "añadir"
-#: ../../include/features.php:223
-msgid "Provide a class of post which others can vote on"
-msgstr "Proveer una clase de publicación en la que otros puedan votar"
+#: ../../include/widgets.php:347 ../../include/contact_widgets.php:53
+#: ../../include/features.php:381
+msgid "Saved Folders"
+msgstr "Carpetas guardadas"
-#: ../../include/features.php:231
-msgid "Disable Comments"
-msgstr "Deshabilitar comentarios"
+#: ../../include/widgets.php:350 ../../include/widgets.php:472
+#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94
+msgid "Everything"
+msgstr "Todo"
-#: ../../include/features.php:232
-msgid "Provide the option to disable comments for a post"
-msgstr "Proporcionar la opción de desactivar los comentarios para una entrada"
+#: ../../include/widgets.php:391
+msgid "Archives"
+msgstr "Hemeroteca"
-#: ../../include/features.php:240
-msgid "Delayed Posting"
-msgstr "Publicación aplazada"
+#: ../../include/widgets.php:563
+msgid "Refresh"
+msgstr "Recargar"
-#: ../../include/features.php:241
-msgid "Allow posts to be published at a later date"
-msgstr "Permitir mensajes que se publicarán en una fecha posterior"
+#: ../../include/widgets.php:603
+msgid "Account settings"
+msgstr "Configuración de la cuenta"
-#: ../../include/features.php:249
-msgid "Content Expiration"
-msgstr "Caducidad del contenido"
+#: ../../include/widgets.php:609
+msgid "Channel settings"
+msgstr "Configuración del canal"
-#: ../../include/features.php:250
-msgid "Remove posts/comments and/or private messages at a future time"
-msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"
+#: ../../include/widgets.php:618
+msgid "Additional features"
+msgstr "Funcionalidades"
-#: ../../include/features.php:258
-msgid "Suppress Duplicate Posts/Comments"
-msgstr "Prevenir entradas o comentarios duplicados"
+#: ../../include/widgets.php:625
+msgid "Feature/Addon settings"
+msgstr "Complementos"
-#: ../../include/features.php:259
-msgid ""
-"Prevent posts with identical content to be published with less than two "
-"minutes in between submissions."
-msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."
+#: ../../include/widgets.php:631
+msgid "Display settings"
+msgstr "Ajustes de visualización"
-#: ../../include/features.php:270
-msgid "Network and Stream Filtering"
-msgstr "Filtrado del contenido"
+#: ../../include/widgets.php:638
+msgid "Manage locations"
+msgstr "Gestión de ubicaciones (clones) del canal"
-#: ../../include/features.php:274
-msgid "Search by Date"
-msgstr "Buscar por fecha"
+#: ../../include/widgets.php:645
+msgid "Export channel"
+msgstr "Exportar canal"
-#: ../../include/features.php:275
-msgid "Ability to select posts by date ranges"
-msgstr "Capacidad de seleccionar entradas por rango de fechas"
+#: ../../include/widgets.php:651
+msgid "Connected apps"
+msgstr "Aplicaciones (apps) conectadas"
-#: ../../include/features.php:283 ../../include/group.php:311
-msgid "Privacy Groups"
-msgstr "Grupos de canales"
+#: ../../include/widgets.php:675
+msgid "Premium Channel Settings"
+msgstr "Configuración del canal premium"
-#: ../../include/features.php:284
-msgid "Enable management and selection of privacy groups"
-msgstr "Activar la gestión y selección de grupos de canales"
+#: ../../include/widgets.php:704
+msgid "Private Mail Menu"
+msgstr "Menú de correo privado"
-#: ../../include/features.php:292 ../../include/widgets.php:284
-msgid "Saved Searches"
-msgstr "Búsquedas guardadas"
+#: ../../include/widgets.php:706
+msgid "Combined View"
+msgstr "Vista combinada"
-#: ../../include/features.php:293
-msgid "Save search terms for re-use"
-msgstr "Guardar términos de búsqueda para su reutilización"
+#: ../../include/widgets.php:711 ../../include/nav.php:201
+msgid "Inbox"
+msgstr "Bandeja de entrada"
-#: ../../include/features.php:301
-msgid "Network Personal Tab"
-msgstr "Actividad personal"
+#: ../../include/widgets.php:716 ../../include/nav.php:202
+msgid "Outbox"
+msgstr "Bandeja de salida"
-#: ../../include/features.php:302
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."
+#: ../../include/widgets.php:721 ../../include/nav.php:203
+msgid "New Message"
+msgstr "Nuevo mensaje"
-#: ../../include/features.php:310
-msgid "Network New Tab"
-msgstr "Contenido nuevo"
+#: ../../include/widgets.php:738 ../../include/widgets.php:750
+msgid "Conversations"
+msgstr "Conversaciones"
-#: ../../include/features.php:311
-msgid "Enable tab to display all new Network activity"
-msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo"
+#: ../../include/widgets.php:742
+msgid "Received Messages"
+msgstr "Mensajes recibidos"
-#: ../../include/features.php:319
-msgid "Affinity Tool"
-msgstr "Herramienta de afinidad"
+#: ../../include/widgets.php:746
+msgid "Sent Messages"
+msgstr "Enviar mensajes"
-#: ../../include/features.php:320
-msgid "Filter stream activity by depth of relationships"
-msgstr "Filtrar el contenido según la profundidad de las relaciones"
+#: ../../include/widgets.php:760
+msgid "No messages."
+msgstr "Sin mensajes."
-#: ../../include/features.php:329
-msgid "Show friend and connection suggestions"
-msgstr "Mostrar sugerencias de amigos y conexiones"
+#: ../../include/widgets.php:778
+msgid "Delete conversation"
+msgstr "Eliminar conversación"
-#: ../../include/features.php:337
-msgid "Connection Filtering"
-msgstr "Filtrado de conexiones"
+#: ../../include/widgets.php:804
+msgid "Events Tools"
+msgstr "Gestión de eventos"
-#: ../../include/features.php:338
-msgid "Filter incoming posts from connections based on keywords/content"
-msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"
+#: ../../include/widgets.php:805
+msgid "Export Calendar"
+msgstr "Exportar el calendario"
-#: ../../include/features.php:350
-msgid "Post/Comment Tools"
-msgstr "Gestión de entradas y comentarios"
+#: ../../include/widgets.php:806
+msgid "Import Calendar"
+msgstr "Importar un calendario"
-#: ../../include/features.php:354
-msgid "Community Tagging"
-msgstr "Etiquetas de la comunidad"
+#: ../../include/widgets.php:898
+msgid "Overview"
+msgstr "Resumen"
-#: ../../include/features.php:355
-msgid "Ability to tag existing posts"
-msgstr "Capacidad de etiquetar entradas existentes"
+#: ../../include/widgets.php:905
+msgid "Chat Members"
+msgstr "Miembros del chat"
-#: ../../include/features.php:363
-msgid "Post Categories"
-msgstr "Temas de las entradas"
+#: ../../include/widgets.php:983
+msgctxt "wiki_history"
+msgid "Message"
+msgstr "Mensaje"
-#: ../../include/features.php:364
-msgid "Add categories to your posts"
-msgstr "Añadir temas a sus publicaciones"
+#: ../../include/widgets.php:1005
+msgid "Bookmarked Chatrooms"
+msgstr "Salas de chat preferidas"
-#: ../../include/features.php:372
-msgid "Emoji Reactions"
-msgstr "Emoticonos \"emoji\""
+#: ../../include/widgets.php:1036
+msgid "Suggested Chatrooms"
+msgstr "Salas de chat sugeridas"
-#: ../../include/features.php:373
-msgid "Add emoji reaction ability to posts"
-msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"
+#: ../../include/widgets.php:1181 ../../include/widgets.php:1293
+msgid "photo/image"
+msgstr "foto/imagen"
-#: ../../include/features.php:381 ../../include/contact_widgets.php:53
-#: ../../include/widgets.php:347
-msgid "Saved Folders"
-msgstr "Carpetas guardadas"
+#: ../../include/widgets.php:1236
+msgid "Click to show more"
+msgstr "Hacer clic para ver más"
-#: ../../include/features.php:382
-msgid "Ability to file posts under folders"
-msgstr "Capacidad de archivar entradas en carpetas"
+#: ../../include/widgets.php:1387
+msgid "Rating Tools"
+msgstr "Valoraciones"
-#: ../../include/features.php:390
-msgid "Dislike Posts"
-msgstr "Desagrado de publicaciones"
+#: ../../include/widgets.php:1391 ../../include/widgets.php:1393
+msgid "Rate Me"
+msgstr "Valorar este canal"
-#: ../../include/features.php:391
-msgid "Ability to dislike posts/comments"
-msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"
+#: ../../include/widgets.php:1396
+msgid "View Ratings"
+msgstr "Mostrar las valoraciones"
-#: ../../include/features.php:399
-msgid "Star Posts"
-msgstr "Entradas destacadas"
+#: ../../include/widgets.php:1489
+msgid "Forums"
+msgstr "Foros"
-#: ../../include/features.php:400
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella"
+#: ../../include/widgets.php:1518
+msgid "Tasks"
+msgstr "Tareas"
-#: ../../include/features.php:408
-msgid "Tag Cloud"
-msgstr "Nube de etiquetas"
+#: ../../include/widgets.php:1584 ../../include/widgets.php:1622
+msgid "Member registrations waiting for confirmation"
+msgstr "Inscripciones de nuevos miembros pendientes de aprobación"
-#: ../../include/features.php:409
-msgid "Provide a personal tag cloud on your channel page"
-msgstr "Proveer nube de etiquetas personal en su página de canal"
+#: ../../include/widgets.php:1590
+msgid "Inspect queue"
+msgstr "Examinar la cola"
-#: ../../include/features.php:421
-msgid "Premium Channel"
-msgstr "Canal premium"
+#: ../../include/widgets.php:1592
+msgid "DB updates"
+msgstr "Actualizaciones de la base de datos"
-#: ../../include/features.php:422
-msgid ""
-"Allows you to set restrictions and terms on those that connect with your "
-"channel"
-msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"
+#: ../../include/widgets.php:1617 ../../include/nav.php:221
+msgid "Admin"
+msgstr "Administrador"
-#: ../../include/page_widgets.php:7
-msgid "New Page"
-msgstr "Nueva página"
+#: ../../include/widgets.php:1618
+msgid "Plugin Features"
+msgstr "Extensiones"
-#: ../../include/message.php:32
-msgid "Unable to determine sender."
-msgstr "No ha sido posible determinar el remitente. "
+#: ../../include/zot.php:666
+msgid "Invalid data packet"
+msgstr "Paquete de datos no válido"
-#: ../../include/message.php:69
-msgid "No recipient provided."
-msgstr "No se ha especificado ningún destinatario."
+#: ../../include/zot.php:682
+msgid "Unable to verify channel signature"
+msgstr "No ha sido posible de verificar la firma del canal"
-#: ../../include/message.php:74
-msgid "[no subject]"
-msgstr "[sin asunto]"
+#: ../../include/zot.php:2333
+#, php-format
+msgid "Unable to verify site signature for %s"
+msgstr "No ha sido posible de verificar la firma del sitio para %s"
-#: ../../include/message.php:225
-msgid "Stored post could not be verified."
-msgstr "No se han podido verificar las publicaciones guardadas."
+#: ../../include/zot.php:3737
+msgid "invalid target signature"
+msgstr "La firma recibida no es válida"
+
+#: ../../include/page_widgets.php:7
+msgid "New Page"
+msgstr "Nueva página"
#: ../../include/contact_widgets.php:11
#, php-format
@@ -11787,11 +11872,6 @@ msgstr "Invitar a amigos"
msgid "Advanced example: name=fred and country=iceland"
msgstr "Ejemplo avanzado: nombre=juan y país=españa"
-#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94
-#: ../../include/widgets.php:350 ../../include/widgets.php:471
-msgid "Everything"
-msgstr "Todo"
-
#: ../../include/contact_widgets.php:122
#, php-format
msgid "%d connection in common"
@@ -11803,14 +11883,6 @@ msgstr[1] "%d conexiones en común"
msgid "show more"
msgstr "mostrar más"
-#: ../../include/bb2diaspora.php:409
-msgid "Attachments:"
-msgstr "Ficheros adjuntos:"
-
-#: ../../include/bb2diaspora.php:506
-msgid "$Projectname event notification:"
-msgstr "Notificación de eventos de $Projectname:"
-
#: ../../include/js_strings.php:5
msgid "Delete this item?"
msgstr "¿Borrar este elemento?"
@@ -12146,224 +12218,6 @@ msgstr "Solo foros públicos"
msgid "This Website Only"
msgstr "Solo este sitio web"
-#: ../../include/bbcode.php:134 ../../include/bbcode.php:1003
-#: ../../include/bbcode.php:1006 ../../include/bbcode.php:1011
-#: ../../include/bbcode.php:1014 ../../include/bbcode.php:1017
-#: ../../include/bbcode.php:1020 ../../include/bbcode.php:1025
-#: ../../include/bbcode.php:1028 ../../include/bbcode.php:1033
-#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1039
-#: ../../include/bbcode.php:1042
-msgid "Image/photo"
-msgstr "Imagen/foto"
-
-#: ../../include/bbcode.php:173 ../../include/bbcode.php:1053
-msgid "Encrypted content"
-msgstr "Contenido cifrado"
-
-#: ../../include/bbcode.php:189
-#, php-format
-msgid "Install %s element: "
-msgstr "Instalar el elemento %s:"
-
-#: ../../include/bbcode.php:193
-#, php-format
-msgid ""
-"This post contains an installable %s element, however you lack permissions "
-"to install it on this site."
-msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."
-
-#: ../../include/bbcode.php:272
-#, php-format
-msgid "%1$s wrote the following %2$s %3$s"
-msgstr "%1$s escribió %2$s siguiente %3$s"
-
-#: ../../include/bbcode.php:349 ../../include/bbcode.php:357
-msgid "Click to open/close"
-msgstr "Pulsar para abrir/cerrar"
-
-#: ../../include/bbcode.php:357
-msgid "spoiler"
-msgstr "spoiler"
-
-#: ../../include/bbcode.php:991
-msgid "$1 wrote:"
-msgstr "$1 escribió:"
-
-#: ../../include/connections.php:95
-msgid "New window"
-msgstr "Nueva ventana"
-
-#: ../../include/connections.php:96
-msgid "Open the selected location in a different window or browser tab"
-msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte"
-
-#: ../../include/connections.php:214
-#, php-format
-msgid "User '%s' deleted"
-msgstr "El usuario '%s' ha sido eliminado"
-
-#: ../../include/oembed.php:307
-msgid " by "
-msgstr "por"
-
-#: ../../include/oembed.php:308
-msgid " on "
-msgstr "en"
-
-#: ../../include/oembed.php:337
-msgid "Embedded content"
-msgstr "Contenido incorporado"
-
-#: ../../include/oembed.php:346
-msgid "Embedding disabled"
-msgstr "Incrustación deshabilitada"
-
-#: ../../include/channel.php:33
-msgid "Unable to obtain identity information from database"
-msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos"
-
-#: ../../include/channel.php:67
-msgid "Empty name"
-msgstr "Nombre vacío"
-
-#: ../../include/channel.php:70
-msgid "Name too long"
-msgstr "Nombre demasiado largo"
-
-#: ../../include/channel.php:181
-msgid "No account identifier"
-msgstr "Ningún identificador de la cuenta"
-
-#: ../../include/channel.php:193
-msgid "Nickname is required."
-msgstr "Se requiere un sobrenombre (alias)."
-
-#: ../../include/channel.php:207
-msgid "Reserved nickname. Please choose another."
-msgstr "Sobrenombre en uso. Por favor, elija otro."
-
-#: ../../include/channel.php:212
-msgid ""
-"Nickname has unsupported characters or is already being used on this site."
-msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."
-
-#: ../../include/channel.php:272
-msgid "Unable to retrieve created identity"
-msgstr "No ha sido posible recuperar la identidad creada"
-
-#: ../../include/channel.php:341
-msgid "Default Profile"
-msgstr "Perfil principal"
-
-#: ../../include/channel.php:962
-msgid "Create New Profile"
-msgstr "Crear un nuevo perfil"
-
-#: ../../include/channel.php:982
-msgid "Visible to everybody"
-msgstr "Visible para todos"
-
-#: ../../include/channel.php:1055 ../../include/channel.php:1174
-msgid "Gender:"
-msgstr "Género:"
-
-#: ../../include/channel.php:1057 ../../include/channel.php:1229
-msgid "Homepage:"
-msgstr "Página personal:"
-
-#: ../../include/channel.php:1058
-msgid "Online Now"
-msgstr "Ahora en línea"
-
-#: ../../include/channel.php:1179
-msgid "Like this channel"
-msgstr "Me gusta este canal"
-
-#: ../../include/channel.php:1203
-msgid "j F, Y"
-msgstr "j F Y"
-
-#: ../../include/channel.php:1204
-msgid "j F"
-msgstr "j F"
-
-#: ../../include/channel.php:1211
-msgid "Birthday:"
-msgstr "Cumpleaños:"
-
-#: ../../include/channel.php:1224
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "por %1$d %2$s"
-
-#: ../../include/channel.php:1227
-msgid "Sexual Preference:"
-msgstr "Orientación sexual:"
-
-#: ../../include/channel.php:1233
-msgid "Tags:"
-msgstr "Etiquetas:"
-
-#: ../../include/channel.php:1235
-msgid "Political Views:"
-msgstr "Posición política:"
-
-#: ../../include/channel.php:1237
-msgid "Religion:"
-msgstr "Religión:"
-
-#: ../../include/channel.php:1241
-msgid "Hobbies/Interests:"
-msgstr "Aficciones o intereses:"
-
-#: ../../include/channel.php:1243
-msgid "Likes:"
-msgstr "Me gusta:"
-
-#: ../../include/channel.php:1245
-msgid "Dislikes:"
-msgstr "No me gusta:"
-
-#: ../../include/channel.php:1247
-msgid "Contact information and Social Networks:"
-msgstr "Información de contacto y redes sociales:"
-
-#: ../../include/channel.php:1249
-msgid "My other channels:"
-msgstr "Mis otros canales:"
-
-#: ../../include/channel.php:1251
-msgid "Musical interests:"
-msgstr "Preferencias musicales:"
-
-#: ../../include/channel.php:1253
-msgid "Books, literature:"
-msgstr "Libros, literatura:"
-
-#: ../../include/channel.php:1255
-msgid "Television:"
-msgstr "Televisión:"
-
-#: ../../include/channel.php:1257
-msgid "Film/dance/culture/entertainment:"
-msgstr "Cine, danza, cultura, entretenimiento:"
-
-#: ../../include/channel.php:1259
-msgid "Love/Romance:"
-msgstr "Vida sentimental o amorosa:"
-
-#: ../../include/channel.php:1261
-msgid "Work/employment:"
-msgstr "Trabajo:"
-
-#: ../../include/channel.php:1263
-msgid "School/education:"
-msgstr "Estudios:"
-
-#: ../../include/channel.php:1286
-msgid "Like this thing"
-msgstr "Me gusta esto"
-
#: ../../include/attach.php:248 ../../include/attach.php:336
msgid "Item was not found."
msgstr "Elemento no encontrado."
@@ -12426,360 +12280,88 @@ msgstr "el almacenamiento en la base de datos ha fallado."
msgid "Empty path"
msgstr "Ruta vacía"
-#: ../../include/auth.php:148
-msgid "Logged out."
-msgstr "Desconectado/a."
-
-#: ../../include/auth.php:275
-msgid "Failed authentication"
-msgstr "Autenticación fallida."
-
-#: ../../include/activities.php:41
-msgid " and "
-msgstr " y "
-
-#: ../../include/activities.php:49
-msgid "public profile"
-msgstr "el perfil público"
-
-#: ../../include/activities.php:58
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s ha cambiado %2$s a &ldquo;%3$s&rdquo;"
-
-#: ../../include/activities.php:59
-#, php-format
-msgid "Visit %1$s's %2$s"
-msgstr "Visitar %2$s de %1$s"
-
-#: ../../include/activities.php:62
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s ha actualizado %2$s, cambiando %3$s."
-
-#: ../../include/help.php:31
-msgid "Help:"
-msgstr "Ayuda:"
-
-#: ../../include/help.php:63
-msgid "Not Found"
-msgstr "No encontrado"
-
-#: ../../include/follow.php:27
-msgid "Channel is blocked on this site."
-msgstr "El canal está bloqueado en este sitio."
-
-#: ../../include/follow.php:32
-msgid "Channel location missing."
-msgstr "Falta la dirección del canal."
-
-#: ../../include/follow.php:80
-msgid "Response from remote channel was incomplete."
-msgstr "Respuesta incompleta del canal."
-
-#: ../../include/follow.php:97
-msgid "Channel was deleted and no longer exists."
-msgstr "El canal ha sido eliminado y ya no existe."
-
-#: ../../include/follow.php:147 ../../include/follow.php:183
-msgid "Protocol disabled."
-msgstr "Protocolo deshabilitado."
-
-#: ../../include/follow.php:171
-msgid "Channel discovery failed."
-msgstr "El intento de acceder al canal ha fallado."
-
-#: ../../include/follow.php:210
-msgid "Cannot connect to yourself."
-msgstr "No puede conectarse consigo mismo."
-
-#: ../../include/conversation.php:204
-#, php-format
-msgid "%1$s is now connected with %2$s"
-msgstr "%1$s ahora está conectado/a con %2$s"
-
-#: ../../include/conversation.php:239
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s ha dado un toque a %2$s"
-
-#: ../../include/conversation.php:243 ../../include/text.php:1090
-#: ../../include/text.php:1095
-msgid "poked"
-msgstr "ha dado un toque a"
-
-#: ../../include/conversation.php:690
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Ver el perfil @ %s de %s"
-
-#: ../../include/conversation.php:710
-msgid "Categories:"
-msgstr "Temas:"
+#: ../../include/network.php:733
+msgid "view full size"
+msgstr "Ver en el tamaño original"
-#: ../../include/conversation.php:711
-msgid "Filed under:"
-msgstr "Archivado bajo:"
+#: ../../include/network.php:1988
+msgid "No Subject"
+msgstr "Sin asunto"
-#: ../../include/conversation.php:736
-msgid "View in context"
-msgstr "Mostrar en su contexto"
+#: ../../include/network.php:2244
+msgid "OStatus"
+msgstr "OStatus"
-#: ../../include/conversation.php:832
-msgid "remove"
-msgstr "eliminar"
+#: ../../include/network.php:2245
+msgid "GNU-Social"
+msgstr "GNU Social"
-#: ../../include/conversation.php:837
-msgid "Delete Selected Items"
-msgstr "Eliminar elementos seleccionados"
+#: ../../include/network.php:2246
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
-#: ../../include/conversation.php:930 ../../include/conversation.php:972
-msgid "View Source"
-msgstr "Ver el código fuente de la entrada"
+#: ../../include/network.php:2249
+msgid "Facebook"
+msgstr "Facebook"
-#: ../../include/conversation.php:931 ../../include/conversation.php:982
-msgid "Follow Thread"
-msgstr "Seguir este hilo"
+#: ../../include/network.php:2250
+msgid "Zot"
+msgstr "Zot"
-#: ../../include/conversation.php:932 ../../include/conversation.php:991
-msgid "Unfollow Thread"
-msgstr "Dejar de seguir este hilo"
+#: ../../include/network.php:2251
+msgid "LinkedIn"
+msgstr "LinkedIn"
-#: ../../include/conversation.php:937 ../../include/conversation.php:1059
-msgid "Activity/Posts"
-msgstr "Actividad y publicaciones"
+#: ../../include/network.php:2252
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
-#: ../../include/conversation.php:939 ../../include/conversation.php:1079
-msgid "Edit Connection"
-msgstr "Editar conexión"
+#: ../../include/network.php:2253
+msgid "MySpace"
+msgstr "MySpace"
-#: ../../include/conversation.php:940 ../../include/conversation.php:1089
-msgid "Message"
-msgstr "Mensaje"
+#: ../../include/oembed.php:308
+msgid " by "
+msgstr "por"
-#: ../../include/conversation.php:1223
-#, php-format
-msgid "%s likes this."
-msgstr "A %s le gusta esto."
+#: ../../include/oembed.php:309
+msgid " on "
+msgstr "en"
-#: ../../include/conversation.php:1223
-#, php-format
-msgid "%s doesn't like this."
-msgstr "A %s no le gusta esto."
+#: ../../include/oembed.php:338
+msgid "Embedded content"
+msgstr "Contenido incorporado"
-#: ../../include/conversation.php:1227
-#, php-format
-msgid "<span %1$s>%2$d people</span> like this."
-msgid_plural "<span %1$s>%2$d people</span> like this."
-msgstr[0] "a <span %1$s>%2$d personas</span> le gusta esto."
-msgstr[1] "A <span %1$s>%2$d personas</span> les gusta esto."
+#: ../../include/oembed.php:347
+msgid "Embedding disabled"
+msgstr "Incrustación deshabilitada"
-#: ../../include/conversation.php:1229
+#: ../../include/photos.php:115
#, php-format
-msgid "<span %1$s>%2$d people</span> don't like this."
-msgid_plural "<span %1$s>%2$d people</span> don't like this."
-msgstr[0] "a <span %1$s>%2$d personas</span> no les gusta esto."
-msgstr[1] "A <span %1$s>%2$d personas</span> no les gusta esto."
+msgid "Image exceeds website size limit of %lu bytes"
+msgstr "La imagen excede el límite de %lu bytes del sitio"
-#: ../../include/conversation.php:1235
-msgid "and"
-msgstr "y"
+#: ../../include/photos.php:122
+msgid "Image file is empty."
+msgstr "El fichero de imagen está vacío. "
-#: ../../include/conversation.php:1238
-#, php-format
-msgid ", and %d other people"
-msgid_plural ", and %d other people"
-msgstr[0] ", y %d persona más"
-msgstr[1] ", y %d personas más"
+#: ../../include/photos.php:260
+msgid "Photo storage failed."
+msgstr "La foto no ha podido ser guardada."
-#: ../../include/conversation.php:1239
-#, php-format
-msgid "%s like this."
-msgstr "A %s le gusta esto."
+#: ../../include/photos.php:300
+msgid "a new photo"
+msgstr "una nueva foto"
-#: ../../include/conversation.php:1239
+#: ../../include/photos.php:304
#, php-format
-msgid "%s don't like this."
-msgstr "A %s no le gusta esto."
-
-#: ../../include/conversation.php:1282
-msgid "Set your location"
-msgstr "Establecer su ubicación"
-
-#: ../../include/conversation.php:1283
-msgid "Clear browser location"
-msgstr "Eliminar los datos de localización geográfica del navegador"
-
-#: ../../include/conversation.php:1331
-msgid "Tag term:"
-msgstr "Término de la etiqueta:"
-
-#: ../../include/conversation.php:1332
-msgid "Where are you right now?"
-msgstr "¿Donde está ahora?"
-
-#: ../../include/conversation.php:1337
-msgid "Choose a different album..."
-msgstr "Elegir un álbum diferente..."
-
-#: ../../include/conversation.php:1341
-msgid "Comments enabled"
-msgstr "Comentarios habilitados"
-
-#: ../../include/conversation.php:1342
-msgid "Comments disabled"
-msgstr "Comentarios deshabilitados"
-
-#: ../../include/conversation.php:1380
-msgid "Page link name"
-msgstr "Nombre del enlace de la página"
-
-#: ../../include/conversation.php:1383
-msgid "Post as"
-msgstr "Publicar como"
-
-#: ../../include/conversation.php:1397
-msgid "Toggle voting"
-msgstr "Cambiar votación"
-
-#: ../../include/conversation.php:1400
-msgid "Disable comments"
-msgstr "Dehabilitar los comentarios"
-
-#: ../../include/conversation.php:1401
-msgid "Toggle comments"
-msgstr "Activar o desactivar los comentarios"
-
-#: ../../include/conversation.php:1409
-msgid "Categories (optional, comma-separated list)"
-msgstr "Temas (opcional, lista separada por comas)"
-
-#: ../../include/conversation.php:1432
-msgid "Other networks and post services"
-msgstr "Otras redes y servicios de publicación"
-
-#: ../../include/conversation.php:1438
-msgid "Set publish date"
-msgstr "Establecer la fecha de publicación"
-
-#: ../../include/conversation.php:1692
-msgid "Discover"
-msgstr "Descubrir"
-
-#: ../../include/conversation.php:1695
-msgid "Imported public streams"
-msgstr "Contenidos públicos importados"
-
-#: ../../include/conversation.php:1700
-msgid "Commented Order"
-msgstr "Comentarios recientes"
-
-#: ../../include/conversation.php:1703
-msgid "Sort by Comment Date"
-msgstr "Ordenar por fecha de comentario"
-
-#: ../../include/conversation.php:1707
-msgid "Posted Order"
-msgstr "Publicaciones recientes"
-
-#: ../../include/conversation.php:1710
-msgid "Sort by Post Date"
-msgstr "Ordenar por fecha de publicación"
-
-#: ../../include/conversation.php:1718
-msgid "Posts that mention or involve you"
-msgstr "Publicaciones que le mencionan o involucran"
-
-#: ../../include/conversation.php:1727
-msgid "Activity Stream - by date"
-msgstr "Contenido - por fecha"
-
-#: ../../include/conversation.php:1733
-msgid "Starred"
-msgstr "Preferidas"
-
-#: ../../include/conversation.php:1736
-msgid "Favourite Posts"
-msgstr "Publicaciones favoritas"
-
-#: ../../include/conversation.php:1743
-msgid "Spam"
-msgstr "Correo basura"
-
-#: ../../include/conversation.php:1746
-msgid "Posts flagged as SPAM"
-msgstr "Publicaciones marcadas como basura"
-
-#: ../../include/conversation.php:1818
-msgid "Status Messages and Posts"
-msgstr "Mensajes de estado y publicaciones"
-
-#: ../../include/conversation.php:1830
-msgid "Profile Details"
-msgstr "Detalles del perfil"
-
-#: ../../include/conversation.php:1839 ../../include/photos.php:515
-msgid "Photo Albums"
-msgstr "Álbumes de fotos"
-
-#: ../../include/conversation.php:1846
-msgid "Files and Storage"
-msgstr "Ficheros y repositorio"
-
-#: ../../include/conversation.php:1866 ../../include/conversation.php:1869
-#: ../../include/widgets.php:886
-msgid "Chatrooms"
-msgstr "Salas de chat"
-
-#: ../../include/conversation.php:1882
-msgid "Saved Bookmarks"
-msgstr "Marcadores guardados"
-
-#: ../../include/conversation.php:1892
-msgid "View Webpages"
-msgstr "Ver páginas web"
-
-#: ../../include/conversation.php:1958
-msgctxt "noun"
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Participaré"
-msgstr[1] "Participaré"
-
-#: ../../include/conversation.php:1961
-msgctxt "noun"
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "No participaré"
-msgstr[1] "No participaré"
-
-#: ../../include/conversation.php:1964
-msgctxt "noun"
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] "Indeciso/a"
-msgstr[1] "Indecisos/as"
-
-#: ../../include/conversation.php:1967
-msgctxt "noun"
-msgid "Agree"
-msgid_plural "Agrees"
-msgstr[0] "De acuerdo"
-msgstr[1] "De acuerdo"
-
-#: ../../include/conversation.php:1970
-msgctxt "noun"
-msgid "Disagree"
-msgid_plural "Disagrees"
-msgstr[0] "En desacuerdo"
-msgstr[1] "En desacuerdo"
+msgctxt "photo_upload"
+msgid "%1$s posted %2$s to %3$s"
+msgstr "%1$s ha publicado %2$s en %3$s"
-#: ../../include/conversation.php:1973
-msgctxt "noun"
-msgid "Abstain"
-msgid_plural "Abstains"
-msgstr[0] "se abstiene"
-msgstr[1] "Se abstienen"
+#: ../../include/photos.php:519
+msgid "Upload New Photos"
+msgstr "Subir nuevas fotos"
#: ../../include/text.php:460
msgid "prev"
@@ -13046,6 +12628,423 @@ msgstr "Escriba una ruta de destino a la nube de ficheros."
msgid "Specify folder"
msgstr "Especificar una carpeta"
+#: ../../include/nav.php:85 ../../include/nav.php:119 ../../boot.php:1731
+msgid "Logout"
+msgstr "Finalizar sesión"
+
+#: ../../include/nav.php:85 ../../include/nav.php:119
+msgid "End this session"
+msgstr "Finalizar esta sesión"
+
+#: ../../include/nav.php:88
+msgid "Your posts and conversations"
+msgstr "Sus publicaciones y conversaciones"
+
+#: ../../include/nav.php:89
+msgid "Your profile page"
+msgstr "Su página del perfil"
+
+#: ../../include/nav.php:91
+msgid "Manage/Edit profiles"
+msgstr "Administrar/editar perfiles"
+
+#: ../../include/nav.php:93
+msgid "Edit your profile"
+msgstr "Editar su perfil"
+
+#: ../../include/nav.php:95
+msgid "Your photos"
+msgstr "Sus fotos"
+
+#: ../../include/nav.php:96
+msgid "Your files"
+msgstr "Sus ficheros"
+
+#: ../../include/nav.php:99
+msgid "Your chatrooms"
+msgstr "Sus salas de chat"
+
+#: ../../include/nav.php:105
+msgid "Your bookmarks"
+msgstr "Sus marcadores"
+
+#: ../../include/nav.php:109
+msgid "Your webpages"
+msgstr "Sus páginas web"
+
+#: ../../include/nav.php:111
+msgid "Your wikis"
+msgstr "Sus wikis"
+
+#: ../../include/nav.php:116
+msgid "Sign in"
+msgstr "Acceder"
+
+#: ../../include/nav.php:133
+msgid "Remote authentication"
+msgstr "Acceder desde su servidor"
+
+#: ../../include/nav.php:133
+msgid "Click to authenticate to your home hub"
+msgstr "Pulsar para identificarse en su servidor de inicio"
+
+#: ../../include/nav.php:145
+msgid "Get me home"
+msgstr "Volver a la página principal"
+
+#: ../../include/nav.php:147
+msgid "Log me out of this site"
+msgstr "Salir de este sitio"
+
+#: ../../include/nav.php:152
+msgid "Create an account"
+msgstr "Crear una cuenta"
+
+#: ../../include/nav.php:164
+msgid "Help and documentation"
+msgstr "Ayuda y documentación"
+
+#: ../../include/nav.php:168
+msgid "Applications, utilities, links, games"
+msgstr "Aplicaciones, utilidades, enlaces, juegos"
+
+#: ../../include/nav.php:170
+msgid "Search site @name, #tag, ?docs, content"
+msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"
+
+#: ../../include/nav.php:172
+msgid "Channel Directory"
+msgstr "Directorio de canales"
+
+#: ../../include/nav.php:184
+msgid "Your grid"
+msgstr "Mi red"
+
+#: ../../include/nav.php:185
+msgid "Mark all grid notifications seen"
+msgstr "Marcar todas las notificaciones de la red como vistas"
+
+#: ../../include/nav.php:187
+msgid "Channel home"
+msgstr "Mi canal"
+
+#: ../../include/nav.php:188
+msgid "Mark all channel notifications seen"
+msgstr "Marcar todas las notificaciones del canal como leídas"
+
+#: ../../include/nav.php:194
+msgid "Notices"
+msgstr "Avisos"
+
+#: ../../include/nav.php:194
+msgid "Notifications"
+msgstr "Notificaciones"
+
+#: ../../include/nav.php:195
+msgid "See all notifications"
+msgstr "Ver todas las notificaciones"
+
+#: ../../include/nav.php:198
+msgid "Private mail"
+msgstr "Correo privado"
+
+#: ../../include/nav.php:199
+msgid "See all private messages"
+msgstr "Ver todas los mensajes privados"
+
+#: ../../include/nav.php:200
+msgid "Mark all private messages seen"
+msgstr "Marcar todos los mensajes privados como leídos"
+
+#: ../../include/nav.php:206
+msgid "Event Calendar"
+msgstr "Calendario de eventos"
+
+#: ../../include/nav.php:207
+msgid "See all events"
+msgstr "Ver todos los eventos"
+
+#: ../../include/nav.php:208
+msgid "Mark all events seen"
+msgstr "Marcar todos los eventos como leidos"
+
+#: ../../include/nav.php:211
+msgid "Manage Your Channels"
+msgstr "Gestionar sus canales"
+
+#: ../../include/nav.php:213
+msgid "Account/Channel Settings"
+msgstr "Ajustes de cuenta/canales"
+
+#: ../../include/nav.php:221
+msgid "Site Setup and Configuration"
+msgstr "Ajustes y configuración del sitio"
+
+#: ../../include/nav.php:274
+msgid "Documentation"
+msgstr "Documentación"
+
+#: ../../include/nav.php:283
+msgid "@name, #tag, ?doc, content"
+msgstr "@nombre, #etiqueta, ?ayuda, contenido"
+
+#: ../../include/nav.php:284
+msgid "Please wait..."
+msgstr "Espere por favor…"
+
+#: ../../include/auth.php:148
+msgid "Logged out."
+msgstr "Desconectado/a."
+
+#: ../../include/auth.php:275
+msgid "Failed authentication"
+msgstr "Autenticación fallida."
+
+#: ../../include/follow.php:27
+msgid "Channel is blocked on this site."
+msgstr "El canal está bloqueado en este sitio."
+
+#: ../../include/follow.php:32
+msgid "Channel location missing."
+msgstr "Falta la dirección del canal."
+
+#: ../../include/follow.php:80
+msgid "Response from remote channel was incomplete."
+msgstr "Respuesta incompleta del canal."
+
+#: ../../include/follow.php:97
+msgid "Channel was deleted and no longer exists."
+msgstr "El canal ha sido eliminado y ya no existe."
+
+#: ../../include/follow.php:147 ../../include/follow.php:183
+msgid "Protocol disabled."
+msgstr "Protocolo deshabilitado."
+
+#: ../../include/follow.php:171
+msgid "Channel discovery failed."
+msgstr "El intento de acceder al canal ha fallado."
+
+#: ../../include/follow.php:210
+msgid "Cannot connect to yourself."
+msgstr "No puede conectarse consigo mismo."
+
+#: ../../include/activities.php:41
+msgid " and "
+msgstr " y "
+
+#: ../../include/activities.php:49
+msgid "public profile"
+msgstr "el perfil público"
+
+#: ../../include/activities.php:58
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s ha cambiado %2$s a &ldquo;%3$s&rdquo;"
+
+#: ../../include/activities.php:59
+#, php-format
+msgid "Visit %1$s's %2$s"
+msgstr "Visitar %2$s de %1$s"
+
+#: ../../include/activities.php:62
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s ha actualizado %2$s, cambiando %3$s."
+
+#: ../../include/bbcode.php:134 ../../include/bbcode.php:1040
+#: ../../include/bbcode.php:1043 ../../include/bbcode.php:1048
+#: ../../include/bbcode.php:1051 ../../include/bbcode.php:1054
+#: ../../include/bbcode.php:1057 ../../include/bbcode.php:1062
+#: ../../include/bbcode.php:1065 ../../include/bbcode.php:1070
+#: ../../include/bbcode.php:1073 ../../include/bbcode.php:1076
+#: ../../include/bbcode.php:1079
+msgid "Image/photo"
+msgstr "Imagen/foto"
+
+#: ../../include/bbcode.php:173 ../../include/bbcode.php:1090
+msgid "Encrypted content"
+msgstr "Contenido cifrado"
+
+#: ../../include/bbcode.php:189
+#, php-format
+msgid "Install %s element: "
+msgstr "Instalar el elemento %s:"
+
+#: ../../include/bbcode.php:193
+#, php-format
+msgid ""
+"This post contains an installable %s element, however you lack permissions "
+"to install it on this site."
+msgstr "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."
+
+#: ../../include/bbcode.php:272
+#, php-format
+msgid "%1$s wrote the following %2$s %3$s"
+msgstr "%1$s escribió %2$s siguiente %3$s"
+
+#: ../../include/bbcode.php:349 ../../include/bbcode.php:357
+msgid "Click to open/close"
+msgstr "Pulsar para abrir/cerrar"
+
+#: ../../include/bbcode.php:357
+msgid "spoiler"
+msgstr "spoiler"
+
+#: ../../include/bbcode.php:1028
+msgid "$1 wrote:"
+msgstr "$1 escribió:"
+
+#: ../../include/bookmarks.php:34
+#, php-format
+msgid "%1$s's bookmarks"
+msgstr "Marcadores de %1$s"
+
+#: ../../include/channel.php:33
+msgid "Unable to obtain identity information from database"
+msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos"
+
+#: ../../include/channel.php:67
+msgid "Empty name"
+msgstr "Nombre vacío"
+
+#: ../../include/channel.php:70
+msgid "Name too long"
+msgstr "Nombre demasiado largo"
+
+#: ../../include/channel.php:181
+msgid "No account identifier"
+msgstr "Ningún identificador de la cuenta"
+
+#: ../../include/channel.php:193
+msgid "Nickname is required."
+msgstr "Se requiere un sobrenombre (alias)."
+
+#: ../../include/channel.php:207
+msgid "Reserved nickname. Please choose another."
+msgstr "Sobrenombre en uso. Por favor, elija otro."
+
+#: ../../include/channel.php:212
+msgid ""
+"Nickname has unsupported characters or is already being used on this site."
+msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."
+
+#: ../../include/channel.php:272
+msgid "Unable to retrieve created identity"
+msgstr "No ha sido posible recuperar la identidad creada"
+
+#: ../../include/channel.php:344
+msgid "Default Profile"
+msgstr "Perfil principal"
+
+#: ../../include/channel.php:1040
+msgid "Create New Profile"
+msgstr "Crear un nuevo perfil"
+
+#: ../../include/channel.php:1060
+msgid "Visible to everybody"
+msgstr "Visible para todos"
+
+#: ../../include/channel.php:1133 ../../include/channel.php:1252
+msgid "Gender:"
+msgstr "Género:"
+
+#: ../../include/channel.php:1135 ../../include/channel.php:1307
+msgid "Homepage:"
+msgstr "Página personal:"
+
+#: ../../include/channel.php:1136
+msgid "Online Now"
+msgstr "Ahora en línea"
+
+#: ../../include/channel.php:1257
+msgid "Like this channel"
+msgstr "Me gusta este canal"
+
+#: ../../include/channel.php:1281
+msgid "j F, Y"
+msgstr "j F Y"
+
+#: ../../include/channel.php:1282
+msgid "j F"
+msgstr "j F"
+
+#: ../../include/channel.php:1289
+msgid "Birthday:"
+msgstr "Cumpleaños:"
+
+#: ../../include/channel.php:1302
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "por %1$d %2$s"
+
+#: ../../include/channel.php:1305
+msgid "Sexual Preference:"
+msgstr "Orientación sexual:"
+
+#: ../../include/channel.php:1311
+msgid "Tags:"
+msgstr "Etiquetas:"
+
+#: ../../include/channel.php:1313
+msgid "Political Views:"
+msgstr "Posición política:"
+
+#: ../../include/channel.php:1315
+msgid "Religion:"
+msgstr "Religión:"
+
+#: ../../include/channel.php:1319
+msgid "Hobbies/Interests:"
+msgstr "Aficciones o intereses:"
+
+#: ../../include/channel.php:1321
+msgid "Likes:"
+msgstr "Me gusta:"
+
+#: ../../include/channel.php:1323
+msgid "Dislikes:"
+msgstr "No me gusta:"
+
+#: ../../include/channel.php:1325
+msgid "Contact information and Social Networks:"
+msgstr "Información de contacto y redes sociales:"
+
+#: ../../include/channel.php:1327
+msgid "My other channels:"
+msgstr "Mis otros canales:"
+
+#: ../../include/channel.php:1329
+msgid "Musical interests:"
+msgstr "Preferencias musicales:"
+
+#: ../../include/channel.php:1331
+msgid "Books, literature:"
+msgstr "Libros, literatura:"
+
+#: ../../include/channel.php:1333
+msgid "Television:"
+msgstr "Televisión:"
+
+#: ../../include/channel.php:1335
+msgid "Film/dance/culture/entertainment:"
+msgstr "Cine, danza, cultura, entretenimiento:"
+
+#: ../../include/channel.php:1337
+msgid "Love/Romance:"
+msgstr "Vida sentimental o amorosa:"
+
+#: ../../include/channel.php:1339
+msgid "Work/employment:"
+msgstr "Trabajo:"
+
+#: ../../include/channel.php:1341
+msgid "School/education:"
+msgstr "Estudios:"
+
+#: ../../include/channel.php:1364
+msgid "Like this thing"
+msgstr "Me gusta esto"
+
#: ../../include/group.php:26
msgid ""
"A deleted group with this name was revived. Existing item permissions "
@@ -13061,6 +13060,10 @@ msgstr "Añadir conexiones nuevas a este grupo de canales"
msgid "edit"
msgstr "editar"
+#: ../../include/group.php:311 ../../include/features.php:283
+msgid "Privacy Groups"
+msgstr "Grupos de canales"
+
#: ../../include/group.php:312
msgid "Edit group"
msgstr "Editar grupo"
@@ -13073,9 +13076,98 @@ msgstr "Añadir un grupo de canales"
msgid "Channels not in any privacy group"
msgstr "Sin canales en ningún grupo"
-#: ../../include/group.php:316 ../../include/widgets.php:285
-msgid "add"
-msgstr "añadir"
+#: ../../include/event.php:863
+msgid "This event has been added to your calendar."
+msgstr "Este evento ha sido añadido a su calendario."
+
+#: ../../include/event.php:1063
+msgid "Not specified"
+msgstr "Sin especificar"
+
+#: ../../include/event.php:1064
+msgid "Needs Action"
+msgstr "Necesita de una intervención"
+
+#: ../../include/event.php:1065
+msgid "Completed"
+msgstr "Completado/a"
+
+#: ../../include/event.php:1066
+msgid "In Process"
+msgstr "En proceso"
+
+#: ../../include/event.php:1067
+msgid "Cancelled"
+msgstr "Cancelado/a"
+
+#: ../../include/items.php:841 ../../include/items.php:888
+msgid "(Unknown)"
+msgstr "(Desconocido)"
+
+#: ../../include/items.php:1089
+msgid "Visible to anybody on the internet."
+msgstr "Visible para cualquiera en internet."
+
+#: ../../include/items.php:1091
+msgid "Visible to you only."
+msgstr "Visible sólo para usted."
+
+#: ../../include/items.php:1093
+msgid "Visible to anybody in this network."
+msgstr "Visible para cualquiera en esta red."
+
+#: ../../include/items.php:1095
+msgid "Visible to anybody authenticated."
+msgstr "Visible para cualquiera que esté autenticado."
+
+#: ../../include/items.php:1097
+#, php-format
+msgid "Visible to anybody on %s."
+msgstr "Visible para cualquiera en %s."
+
+#: ../../include/items.php:1099
+msgid "Visible to all connections."
+msgstr "Visible para todas las conexiones."
+
+#: ../../include/items.php:1101
+msgid "Visible to approved connections."
+msgstr "Visible para las conexiones permitidas."
+
+#: ../../include/items.php:1103
+msgid "Visible to specific connections."
+msgstr "Visible para conexiones específicas."
+
+#: ../../include/items.php:3915
+msgid "Privacy group is empty."
+msgstr "El grupo de canales está vacío."
+
+#: ../../include/items.php:3922
+#, php-format
+msgid "Privacy group: %s"
+msgstr "Grupo de canales: %s"
+
+#: ../../include/items.php:3934
+msgid "Connection not found."
+msgstr "Conexión no encontrada"
+
+#: ../../include/items.php:4283
+msgid "profile photo"
+msgstr "foto del perfil"
+
+#: ../../include/items.php:4479
+#, php-format
+msgid "[Edited %s]"
+msgstr "[se ha editado %s]"
+
+#: ../../include/items.php:4479
+msgctxt "edit_activity"
+msgid "Post"
+msgstr "Publicar"
+
+#: ../../include/items.php:4479
+msgctxt "edit_activity"
+msgid "Comment"
+msgstr "Comentar"
#: ../../include/permissions.php:35
msgid "Can view my normal stream and posts"
@@ -13130,348 +13222,310 @@ msgid ""
"Extremely advanced. Leave this alone unless you know what you are doing"
msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."
-#: ../../include/import.php:30
-msgid ""
-"Cannot create a duplicate channel identifier on this system. Import failed."
-msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."
-
-#: ../../include/import.php:90
-msgid "Channel clone failed. Import failed."
-msgstr "La clonación del canal no ha salido bien. La importación ha fallado."
-
-#: ../../include/import.php:1367
-msgid "Unable to import element \""
-msgstr "No se puede importar un elemento \""
-
-#: ../../include/items.php:837 ../../include/items.php:882
-msgid "(Unknown)"
-msgstr "(Desconocido)"
-
-#: ../../include/items.php:1080
-msgid "Visible to anybody on the internet."
-msgstr "Visible para cualquiera en internet."
-
-#: ../../include/items.php:1082
-msgid "Visible to you only."
-msgstr "Visible sólo para usted."
-
-#: ../../include/items.php:1084
-msgid "Visible to anybody in this network."
-msgstr "Visible para cualquiera en esta red."
-
-#: ../../include/items.php:1086
-msgid "Visible to anybody authenticated."
-msgstr "Visible para cualquiera que esté autenticado."
-
-#: ../../include/items.php:1088
-#, php-format
-msgid "Visible to anybody on %s."
-msgstr "Visible para cualquiera en %s."
-
-#: ../../include/items.php:1090
-msgid "Visible to all connections."
-msgstr "Visible para todas las conexiones."
+#: ../../include/features.php:58
+msgid "General Features"
+msgstr "Funcionalidades básicas"
-#: ../../include/items.php:1092
-msgid "Visible to approved connections."
-msgstr "Visible para las conexiones permitidas."
+#: ../../include/features.php:63
+msgid "Multiple Profiles"
+msgstr "Múltiples perfiles"
-#: ../../include/items.php:1094
-msgid "Visible to specific connections."
-msgstr "Visible para conexiones específicas."
+#: ../../include/features.php:64
+msgid "Ability to create multiple profiles"
+msgstr "Capacidad de crear múltiples perfiles"
-#: ../../include/items.php:3899
-msgid "Privacy group is empty."
-msgstr "El grupo de canales está vacío."
+#: ../../include/features.php:72
+msgid "Advanced Profiles"
+msgstr "Perfiles avanzados"
-#: ../../include/items.php:3906
-#, php-format
-msgid "Privacy group: %s"
-msgstr "Grupo de canales: %s"
+#: ../../include/features.php:73
+msgid "Additional profile sections and selections"
+msgstr "Secciones y selecciones de perfil adicionales"
-#: ../../include/items.php:3918
-msgid "Connection not found."
-msgstr "Conexión no encontrada"
+#: ../../include/features.php:81
+msgid "Profile Import/Export"
+msgstr "Importar/Exportar perfil"
-#: ../../include/items.php:4267
-msgid "profile photo"
-msgstr "foto del perfil"
+#: ../../include/features.php:82
+msgid "Save and load profile details across sites/channels"
+msgstr "Guardar y cargar detalles del perfil a través de sitios/canales"
-#: ../../include/items.php:4463
-#, php-format
-msgid "[Edited %s]"
-msgstr "[se ha editado %s]"
+#: ../../include/features.php:90
+msgid "Web Pages"
+msgstr "Páginas web"
-#: ../../include/items.php:4463
-msgctxt "edit_activity"
-msgid "Post"
-msgstr "Publicar"
+#: ../../include/features.php:91
+msgid "Provide managed web pages on your channel"
+msgstr "Proveer páginas web gestionadas en su canal"
-#: ../../include/items.php:4463
-msgctxt "edit_activity"
-msgid "Comment"
-msgstr "Comentar"
+#: ../../include/features.php:100
+msgid "Provide a wiki for your channel"
+msgstr "Proporcionar un wiki para su canal"
-#: ../../include/photos.php:115
-#, php-format
-msgid "Image exceeds website size limit of %lu bytes"
-msgstr "La imagen excede el límite de %lu bytes del sitio"
+#: ../../include/features.php:117
+msgid "Private Notes"
+msgstr "Notas privadas"
-#: ../../include/photos.php:122
-msgid "Image file is empty."
-msgstr "El fichero de imagen está vacío. "
+#: ../../include/features.php:118
+msgid "Enables a tool to store notes and reminders (note: not encrypted)"
+msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"
-#: ../../include/photos.php:260
-msgid "Photo storage failed."
-msgstr "La foto no ha podido ser guardada."
+#: ../../include/features.php:126
+msgid "Navigation Channel Select"
+msgstr "Navegación por el selector de canales"
-#: ../../include/photos.php:300
-msgid "a new photo"
-msgstr "una nueva foto"
+#: ../../include/features.php:127
+msgid "Change channels directly from within the navigation dropdown menu"
+msgstr "Cambiar de canales directamente desde el menú de navegación desplegable"
-#: ../../include/photos.php:304
-#, php-format
-msgctxt "photo_upload"
-msgid "%1$s posted %2$s to %3$s"
-msgstr "%1$s ha publicado %2$s en %3$s"
+#: ../../include/features.php:135
+msgid "Photo Location"
+msgstr "Ubicación de las fotos"
-#: ../../include/photos.php:519
-msgid "Upload New Photos"
-msgstr "Subir nuevas fotos"
+#: ../../include/features.php:136
+msgid "If location data is available on uploaded photos, link this to a map."
+msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."
-#: ../../include/network.php:733
-msgid "view full size"
-msgstr "Ver en el tamaño original"
+#: ../../include/features.php:144
+msgid "Access Controlled Chatrooms"
+msgstr "Salas de chat moderadas"
-#: ../../include/network.php:1982
-msgid "No Subject"
-msgstr "Sin asunto"
+#: ../../include/features.php:145
+msgid "Provide chatrooms and chat services with access control."
+msgstr "Proporcionar salas y servicios de chat moderados."
-#: ../../include/network.php:2238
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../include/features.php:153
+msgid "Smart Birthdays"
+msgstr "Cumpleaños inteligentes"
-#: ../../include/network.php:2239
-msgid "GNU-Social"
-msgstr "GNU Social"
+#: ../../include/features.php:154
+msgid ""
+"Make birthday events timezone aware in case your friends are scattered "
+"across the planet."
+msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."
-#: ../../include/network.php:2240
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../include/features.php:162
+msgid "Event Timezone Selection"
+msgstr "Selección del huso horario del evento"
-#: ../../include/network.php:2243
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../include/features.php:163
+msgid "Allow event creation in timezones other than your own."
+msgstr "Permitir la creación de eventos en husos horarios distintos del suyo."
-#: ../../include/network.php:2244
-msgid "Zot"
-msgstr "Zot"
+#: ../../include/features.php:171
+msgid "Advanced Directory Search"
+msgstr "Búsqueda avanzada en el directorio"
-#: ../../include/network.php:2245
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../include/features.php:172
+msgid "Allows creation of complex directory search queries"
+msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio"
-#: ../../include/network.php:2246
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../include/features.php:180
+msgid "Advanced Theme and Layout Settings"
+msgstr "Ajustes avanzados de temas y esquemas"
-#: ../../include/network.php:2247
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../include/features.php:181
+msgid "Allows fine tuning of themes and page layouts"
+msgstr "Permitir el ajuste fino de temas y esquemas de páginas"
-#: ../../include/widgets.php:103
-msgid "System"
-msgstr "Sistema"
+#: ../../include/features.php:191
+msgid "Post Composition Features"
+msgstr "Opciones para la redacción de entradas"
-#: ../../include/widgets.php:106
-msgid "New App"
-msgstr "Nueva aplicación (app)"
+#: ../../include/features.php:195
+msgid "Large Photos"
+msgstr "Fotos de gran tamaño"
-#: ../../include/widgets.php:107
-msgid "Edit Apps"
-msgstr "Modificar las aplicaciones"
+#: ../../include/features.php:196
+msgid ""
+"Include large (1024px) photo thumbnails in posts. If not enabled, use small "
+"(640px) photo thumbnails"
+msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"
-#: ../../include/widgets.php:155
-msgid "Suggestions"
-msgstr "Sugerencias"
+#: ../../include/features.php:205
+msgid "Automatically import channel content from other channels or feeds"
+msgstr "Importar automáticamente contenido de otros canales o \"feeds\""
-#: ../../include/widgets.php:156
-msgid "See more..."
-msgstr "Ver más..."
+#: ../../include/features.php:213
+msgid "Even More Encryption"
+msgstr "Más cifrado todavía"
-#: ../../include/widgets.php:176
-#, php-format
-msgid "You have %1$.0f of %2$.0f allowed connections."
-msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas."
+#: ../../include/features.php:214
+msgid ""
+"Allow optional encryption of content end-to-end with a shared secret key"
+msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."
-#: ../../include/widgets.php:182
-msgid "Add New Connection"
-msgstr "Añadir nueva conexión"
+#: ../../include/features.php:222
+msgid "Enable Voting Tools"
+msgstr "Permitir entradas con votación"
-#: ../../include/widgets.php:183
-msgid "Enter channel address"
-msgstr "Dirección del canal"
+#: ../../include/features.php:223
+msgid "Provide a class of post which others can vote on"
+msgstr "Proveer una clase de publicación en la que otros puedan votar"
-#: ../../include/widgets.php:184
-msgid "Examples: bob@example.com, https://example.com/barbara"
-msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"
+#: ../../include/features.php:231
+msgid "Disable Comments"
+msgstr "Deshabilitar comentarios"
-#: ../../include/widgets.php:200
-msgid "Notes"
-msgstr "Notas"
+#: ../../include/features.php:232
+msgid "Provide the option to disable comments for a post"
+msgstr "Proporcionar la opción de desactivar los comentarios para una entrada"
-#: ../../include/widgets.php:276
-msgid "Remove term"
-msgstr "Eliminar término"
+#: ../../include/features.php:240
+msgid "Delayed Posting"
+msgstr "Publicación aplazada"
-#: ../../include/widgets.php:391
-msgid "Archives"
-msgstr "Hemeroteca"
+#: ../../include/features.php:241
+msgid "Allow posts to be published at a later date"
+msgstr "Permitir mensajes que se publicarán en una fecha posterior"
-#: ../../include/widgets.php:555
-msgid "Refresh"
-msgstr "Recargar"
+#: ../../include/features.php:249
+msgid "Content Expiration"
+msgstr "Caducidad del contenido"
-#: ../../include/widgets.php:595
-msgid "Account settings"
-msgstr "Configuración de la cuenta"
+#: ../../include/features.php:250
+msgid "Remove posts/comments and/or private messages at a future time"
+msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"
-#: ../../include/widgets.php:601
-msgid "Channel settings"
-msgstr "Configuración del canal"
+#: ../../include/features.php:258
+msgid "Suppress Duplicate Posts/Comments"
+msgstr "Prevenir entradas o comentarios duplicados"
-#: ../../include/widgets.php:610
-msgid "Additional features"
-msgstr "Funcionalidades"
+#: ../../include/features.php:259
+msgid ""
+"Prevent posts with identical content to be published with less than two "
+"minutes in between submissions."
+msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."
-#: ../../include/widgets.php:617
-msgid "Feature/Addon settings"
-msgstr "Complementos"
+#: ../../include/features.php:270
+msgid "Network and Stream Filtering"
+msgstr "Filtrado del contenido"
-#: ../../include/widgets.php:623
-msgid "Display settings"
-msgstr "Ajustes de visualización"
+#: ../../include/features.php:274
+msgid "Search by Date"
+msgstr "Buscar por fecha"
-#: ../../include/widgets.php:630
-msgid "Manage locations"
-msgstr "Gestión de ubicaciones (clones) del canal"
+#: ../../include/features.php:275
+msgid "Ability to select posts by date ranges"
+msgstr "Capacidad de seleccionar entradas por rango de fechas"
-#: ../../include/widgets.php:637
-msgid "Export channel"
-msgstr "Exportar canal"
+#: ../../include/features.php:284
+msgid "Enable management and selection of privacy groups"
+msgstr "Activar la gestión y selección de grupos de canales"
-#: ../../include/widgets.php:643
-msgid "Connected apps"
-msgstr "Aplicaciones (apps) conectadas"
+#: ../../include/features.php:293
+msgid "Save search terms for re-use"
+msgstr "Guardar términos de búsqueda para su reutilización"
-#: ../../include/widgets.php:667
-msgid "Premium Channel Settings"
-msgstr "Configuración del canal premium"
+#: ../../include/features.php:301
+msgid "Network Personal Tab"
+msgstr "Actividad personal"
-#: ../../include/widgets.php:696
-msgid "Private Mail Menu"
-msgstr "Menú de correo privado"
+#: ../../include/features.php:302
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."
-#: ../../include/widgets.php:698
-msgid "Combined View"
-msgstr "Vista combinada"
+#: ../../include/features.php:310
+msgid "Network New Tab"
+msgstr "Contenido nuevo"
-#: ../../include/widgets.php:730 ../../include/widgets.php:742
-msgid "Conversations"
-msgstr "Conversaciones"
+#: ../../include/features.php:311
+msgid "Enable tab to display all new Network activity"
+msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo"
-#: ../../include/widgets.php:734
-msgid "Received Messages"
-msgstr "Mensajes recibidos"
+#: ../../include/features.php:319
+msgid "Affinity Tool"
+msgstr "Herramienta de afinidad"
-#: ../../include/widgets.php:738
-msgid "Sent Messages"
-msgstr "Enviar mensajes"
+#: ../../include/features.php:320
+msgid "Filter stream activity by depth of relationships"
+msgstr "Filtrar el contenido según la profundidad de las relaciones"
-#: ../../include/widgets.php:752
-msgid "No messages."
-msgstr "Sin mensajes."
+#: ../../include/features.php:329
+msgid "Show friend and connection suggestions"
+msgstr "Mostrar sugerencias de amigos y conexiones"
-#: ../../include/widgets.php:770
-msgid "Delete conversation"
-msgstr "Eliminar conversación"
+#: ../../include/features.php:337
+msgid "Connection Filtering"
+msgstr "Filtrado de conexiones"
-#: ../../include/widgets.php:796
-msgid "Events Tools"
-msgstr "Gestión de eventos"
+#: ../../include/features.php:338
+msgid "Filter incoming posts from connections based on keywords/content"
+msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"
-#: ../../include/widgets.php:797
-msgid "Export Calendar"
-msgstr "Exportar el calendario"
+#: ../../include/features.php:350
+msgid "Post/Comment Tools"
+msgstr "Gestión de entradas y comentarios"
-#: ../../include/widgets.php:798
-msgid "Import Calendar"
-msgstr "Importar un calendario"
+#: ../../include/features.php:354
+msgid "Community Tagging"
+msgstr "Etiquetas de la comunidad"
-#: ../../include/widgets.php:890
-msgid "Overview"
-msgstr "Resumen"
+#: ../../include/features.php:355
+msgid "Ability to tag existing posts"
+msgstr "Capacidad de etiquetar entradas existentes"
-#: ../../include/widgets.php:897
-msgid "Chat Members"
-msgstr "Miembros del chat"
+#: ../../include/features.php:363
+msgid "Post Categories"
+msgstr "Temas de las entradas"
-#: ../../include/widgets.php:972
-msgctxt "wiki_history"
-msgid "Message"
-msgstr "Mensaje"
+#: ../../include/features.php:364
+msgid "Add categories to your posts"
+msgstr "Añadir temas a sus publicaciones"
-#: ../../include/widgets.php:994
-msgid "Bookmarked Chatrooms"
-msgstr "Salas de chat preferidas"
+#: ../../include/features.php:372
+msgid "Emoji Reactions"
+msgstr "Emoticonos \"emoji\""
-#: ../../include/widgets.php:1025
-msgid "Suggested Chatrooms"
-msgstr "Salas de chat sugeridas"
+#: ../../include/features.php:373
+msgid "Add emoji reaction ability to posts"
+msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"
-#: ../../include/widgets.php:1170 ../../include/widgets.php:1282
-msgid "photo/image"
-msgstr "foto/imagen"
+#: ../../include/features.php:382
+msgid "Ability to file posts under folders"
+msgstr "Capacidad de archivar entradas en carpetas"
-#: ../../include/widgets.php:1225
-msgid "Click to show more"
-msgstr "Hacer clic para ver más"
+#: ../../include/features.php:390
+msgid "Dislike Posts"
+msgstr "Desagrado de publicaciones"
-#: ../../include/widgets.php:1376
-msgid "Rating Tools"
-msgstr "Valoraciones"
+#: ../../include/features.php:391
+msgid "Ability to dislike posts/comments"
+msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"
-#: ../../include/widgets.php:1380 ../../include/widgets.php:1382
-msgid "Rate Me"
-msgstr "Valorar este canal"
+#: ../../include/features.php:399
+msgid "Star Posts"
+msgstr "Entradas destacadas"
-#: ../../include/widgets.php:1385
-msgid "View Ratings"
-msgstr "Mostrar las valoraciones"
+#: ../../include/features.php:400
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella"
-#: ../../include/widgets.php:1478
-msgid "Forums"
-msgstr "Foros"
+#: ../../include/features.php:408
+msgid "Tag Cloud"
+msgstr "Nube de etiquetas"
-#: ../../include/widgets.php:1507
-msgid "Tasks"
-msgstr "Tareas"
+#: ../../include/features.php:409
+msgid "Provide a personal tag cloud on your channel page"
+msgstr "Proveer nube de etiquetas personal en su página de canal"
-#: ../../include/widgets.php:1573 ../../include/widgets.php:1611
-msgid "Member registrations waiting for confirmation"
-msgstr "Inscripciones de nuevos miembros pendientes de aprobación"
+#: ../../include/features.php:421
+msgid "Premium Channel"
+msgstr "Canal premium"
-#: ../../include/widgets.php:1579
-msgid "Inspect queue"
-msgstr "Examinar la cola"
+#: ../../include/features.php:422
+msgid ""
+"Allows you to set restrictions and terms on those that connect with your "
+"channel"
+msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"
-#: ../../include/widgets.php:1581
-msgid "DB updates"
-msgstr "Actualizaciones de la base de datos"
+#: ../../include/help.php:31
+msgid "Help:"
+msgstr "Ayuda:"
-#: ../../include/widgets.php:1607
-msgid "Plugin Features"
-msgstr "Extensiones"
+#: ../../include/help.php:63
+msgid "Not Found"
+msgstr "No encontrado"
#: ../../util/nconfig.php:34
msgid "Source channel not found."
@@ -13609,66 +13663,55 @@ msgstr "Ajustar el tamaño de la foto del autor de la conversación"
msgid "Set size of followup author photos"
msgstr "Ajustar el tamaño de foto de los seguidores del autor"
-#: ../../boot.php:1178
-#, php-format
-msgctxt "opensearch"
-msgid "Search %1$s (%2$s)"
-msgstr "Buscar %1$s (%2$s)"
-
-#: ../../boot.php:1178
-msgctxt "opensearch"
-msgid "$Projectname"
-msgstr "$Projectname"
-
-#: ../../boot.php:1496
+#: ../../boot.php:1505
#, php-format
msgid "Update %s failed. See error logs."
msgstr "La actualización %s ha fallado. Mire el informe de errores."
-#: ../../boot.php:1499
+#: ../../boot.php:1508
#, php-format
msgid "Update Error at %s"
msgstr "Error de actualización en %s"
-#: ../../boot.php:1703
+#: ../../boot.php:1712
msgid ""
"Create an account to access services and applications within the Hubzilla"
msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla"
-#: ../../boot.php:1724
+#: ../../boot.php:1734
msgid "Login/Email"
msgstr "Inicio de sesión / Correo electrónico"
-#: ../../boot.php:1725
+#: ../../boot.php:1735
msgid "Password"
msgstr "Contraseña"
-#: ../../boot.php:1726
+#: ../../boot.php:1736
msgid "Remember me"
msgstr "Recordarme"
-#: ../../boot.php:1729
+#: ../../boot.php:1739
msgid "Forgot your password?"
msgstr "¿Olvidó su contraseña?"
-#: ../../boot.php:2290
+#: ../../boot.php:2300
msgid "toggle mobile"
msgstr "cambiar a modo móvil"
-#: ../../boot.php:2445
+#: ../../boot.php:2455
msgid "Website SSL certificate is not valid. Please correct."
msgstr "El certificado SSL del sitio web no es válido. Por favor, solucione el problema."
-#: ../../boot.php:2448
+#: ../../boot.php:2458
#, php-format
msgid "[hubzilla] Website SSL error for %s"
msgstr "[hubzilla] Error SSL del sitio web en %s"
-#: ../../boot.php:2565
+#: ../../boot.php:2577
msgid "Cron/Scheduled tasks not running."
msgstr "Las tareas del Planificador/Cron no están funcionando."
-#: ../../boot.php:2569
+#: ../../boot.php:2581
#, php-format
msgid "[hubzilla] Cron tasks not running on %s"
msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s"
diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php
index 6e73cac44..aa1e33c10 100644
--- a/view/es-es/hstrings.php
+++ b/view/es-es/hstrings.php
@@ -21,6 +21,10 @@ App::$strings["Special - Celebrity/Soapbox"] = "Especial - Celebridad / Tribuna
App::$strings["Special - Group Repository"] = "Especial - Repositorio de grupo";
App::$strings["Other"] = "Otro";
App::$strings["Custom/Expert Mode"] = "Modo personalizado/experto";
+App::$strings["__ctx:permcat__ follower"] = "seguidor";
+App::$strings["__ctx:permcat__ contributor"] = "contribuidor";
+App::$strings["__ctx:permcat__ trusted"] = "de confianza";
+App::$strings["__ctx:permcat__ moderator"] = "moderador";
App::$strings["Can view my channel stream and posts"] = "Pueden verse la actividad y publicaciones de mi canal";
App::$strings["Can send me their channel stream and posts"] = "Se me pueden enviar entradas y contenido de un canal";
App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado.";
@@ -28,7 +32,9 @@ App::$strings["Can view my connections"] = "Pueden verse mis conexiones";
App::$strings["Can view my file storage and photos"] = "Pueden verse mi repositorio de ficheros y mis fotos";
App::$strings["Can upload/modify my file storage and photos"] = "Se pueden subir / modificar elementos en mi repositorio de ficheros y fotos";
App::$strings["Can view my channel webpages"] = "Pueden verse las páginas personales de mi canal";
+App::$strings["Can view my wiki pages"] = "Pueden verse mis páginas wiki";
App::$strings["Can create/edit my channel webpages"] = "Pueden crearse / modificarse páginas personales en mi canal";
+App::$strings["Can write to my wiki pages"] = "Se pueden modificar las páginas de mi wiki";
App::$strings["Can post on my channel (wall) page"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)";
App::$strings["Can comment on or like my posts"] = "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'.";
App::$strings["Can send me private mail messages"] = "Se me pueden enviar mensajes privados";
@@ -303,34 +309,6 @@ App::$strings["Debugging"] = "Depuración";
App::$strings["Log file"] = "Fichero de informe";
App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal.";
App::$strings["Log level"] = "Nivel de depuración";
-App::$strings["Plugin %s disabled."] = "Extensión %s desactivada.";
-App::$strings["Plugin %s enabled."] = "Extensión %s activada.";
-App::$strings["Disable"] = "Desactivar";
-App::$strings["Enable"] = "Activar";
-App::$strings["Plugins"] = "Extensiones (plugins)";
-App::$strings["Toggle"] = "Cambiar";
-App::$strings["Settings"] = "Ajustes";
-App::$strings["Author: "] = "Autor:";
-App::$strings["Maintainer: "] = "Mantenedor:";
-App::$strings["Minimum project version: "] = "Versión mínima del proyecto:";
-App::$strings["Maximum project version: "] = "Versión máxima del proyecto:";
-App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:";
-App::$strings["Compatible Server Roles: "] = "Configuraciones compatibles con este servidor:";
-App::$strings["Requires: "] = "Se requiere:";
-App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles";
-App::$strings["Enter the public git repository URL of the plugin repo."] = "Escriba la URL pública del repositorio git del plugin.";
-App::$strings["Plugin repo git URL"] = "URL del repositorio git del plugin";
-App::$strings["Custom repo name"] = "Nombre personalizado del repositorio";
-App::$strings["(optional)"] = "(opcional)";
-App::$strings["Download Plugin Repo"] = "Descargar el repositorio";
-App::$strings["Install new repo"] = "Instalar un nuevo repositorio";
-App::$strings["Install"] = "Instalar";
-App::$strings["Cancel"] = "Cancelar";
-App::$strings["Manage Repos"] = "Gestionar los repositorios";
-App::$strings["Installed Plugin Repositories"] = "Repositorios de los plugins instalados";
-App::$strings["Install a New Plugin Repository"] = "Instalar un nuevo repositorio de plugins";
-App::$strings["Update"] = "Actualizar";
-App::$strings["Switch branch"] = "Cambiar la rama";
App::$strings["New Profile Field"] = "Nuevo campo en el perfil";
App::$strings["Field nickname"] = "Alias del campo";
App::$strings["System name of field"] = "Nombre del campo en el sistema";
@@ -348,13 +326,6 @@ App::$strings["(In addition to basic fields)"] = "(Además de los campos básico
App::$strings["All available fields"] = "Todos los campos disponibles";
App::$strings["Custom Fields"] = "Campos personalizados";
App::$strings["Create Custom Field"] = "Crear un campo personalizado";
-App::$strings["Queue Statistics"] = "Estadísticas de la cola";
-App::$strings["Total Entries"] = "Total de entradas";
-App::$strings["Priority"] = "Prioridad";
-App::$strings["Destination URL"] = "Dirección de destino";
-App::$strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea";
-App::$strings["Empty queue for this hub"] = "Vaciar la cola para este servidor";
-App::$strings["Last known contact"] = "Último contacto conocido";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: ";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
@@ -380,8 +351,14 @@ App::$strings["One site per line. By default embedded content is filtered."] = "
App::$strings["Block embedded HTML from these domains"] = "Bloquear contenido con HTML incorporado desde estos dominios";
App::$strings["Theme settings updated."] = "Ajustes del tema actualizados.";
App::$strings["No themes found."] = "No se han encontrado temas.";
+App::$strings["Disable"] = "Desactivar";
+App::$strings["Enable"] = "Activar";
App::$strings["Screenshot"] = "Instantánea de pantalla";
App::$strings["Themes"] = "Temas";
+App::$strings["Toggle"] = "Cambiar";
+App::$strings["Settings"] = "Ajustes";
+App::$strings["Author: "] = "Autor:";
+App::$strings["Maintainer: "] = "Mantenedor:";
App::$strings["[Experimental]"] = "[Experimental]";
App::$strings["[Unsupported]"] = "[No soportado]";
App::$strings["Password changed for account %d."] = "Ha cambiado la contraseña para la cuenta %d.";
@@ -542,6 +519,35 @@ 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["Plugin %s disabled."] = "Extensión %s desactivada.";
+App::$strings["Plugin %s enabled."] = "Extensión %s activada.";
+App::$strings["Plugins"] = "Extensiones (plugins)";
+App::$strings["Minimum project version: "] = "Versión mínima del proyecto:";
+App::$strings["Maximum project version: "] = "Versión máxima del proyecto:";
+App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:";
+App::$strings["Compatible Server Roles: "] = "Configuraciones compatibles con este servidor:";
+App::$strings["Requires: "] = "Se requiere:";
+App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles";
+App::$strings["Enter the public git repository URL of the plugin repo."] = "Escriba la URL pública del repositorio git del plugin.";
+App::$strings["Plugin repo git URL"] = "URL del repositorio git del plugin";
+App::$strings["Custom repo name"] = "Nombre personalizado del repositorio";
+App::$strings["(optional)"] = "(opcional)";
+App::$strings["Download Plugin Repo"] = "Descargar el repositorio";
+App::$strings["Install new repo"] = "Instalar un nuevo repositorio";
+App::$strings["Install"] = "Instalar";
+App::$strings["Cancel"] = "Cancelar";
+App::$strings["Manage Repos"] = "Gestionar los repositorios";
+App::$strings["Installed Plugin Repositories"] = "Repositorios de los plugins instalados";
+App::$strings["Install a New Plugin Repository"] = "Instalar un nuevo repositorio de plugins";
+App::$strings["Update"] = "Actualizar";
+App::$strings["Switch branch"] = "Cambiar la rama";
+App::$strings["Queue Statistics"] = "Estadísticas de la cola";
+App::$strings["Total Entries"] = "Total de entradas";
+App::$strings["Priority"] = "Prioridad";
+App::$strings["Destination URL"] = "Dirección de destino";
+App::$strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea";
+App::$strings["Empty queue for this hub"] = "Vaciar la cola para este servidor";
+App::$strings["Last known contact"] = "Último contacto conocido";
App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s";
App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s";
App::$strings["Layout Name"] = "Nombre de la plantilla";
@@ -628,8 +634,6 @@ App::$strings["Software"] = "Software";
App::$strings["Ratings"] = "Valoraciones";
App::$strings["Rate"] = "Valorar";
App::$strings["View"] = "Ver";
-App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname";
-App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname ";
App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto.";
App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado.";
App::$strings["Connection updated."] = "Conexión actualizada.";
@@ -733,11 +737,6 @@ App::$strings["Share this file"] = "Compartir este fichero";
App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero";
App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero";
App::$strings["Photos"] = "Fotos";
-App::$strings["Profile Match"] = "Perfil compatible";
-App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal.";
-App::$strings["is interested in:"] = "está interesado en:";
-App::$strings["Connect"] = "Conectar";
-App::$strings["No matches"] = "No se han encontrado perfiles compatibles";
App::$strings["Permissions denied."] = "Permisos denegados.";
App::$strings["l, F j"] = "l j F";
App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original";
@@ -1072,6 +1071,14 @@ App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea en
App::$strings["Make this post private"] = "Convertir en privado este envío";
App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor.";
App::$strings["Post successful."] = "Enviado con éxito.";
+App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original.";
+App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada.";
+App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal.";
+App::$strings["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada.";
+App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar.";
+App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos.";
+App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal.";
+App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web.";
App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada.";
App::$strings["Configuration Editor"] = "Editor de configuración";
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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica.";
@@ -1198,6 +1205,7 @@ App::$strings["Location:"] = "Ubicación:";
App::$strings["Description:"] = "Descripción:";
App::$strings["Hometown:"] = "Lugar de nacimiento:";
App::$strings["About:"] = "Sobre mí:";
+App::$strings["Connect"] = "Conectar";
App::$strings["Public Forum:"] = "Foro público:";
App::$strings["Keywords: "] = "Palabras clave:";
App::$strings["Don't suggest"] = "No sugerir:";
@@ -1243,9 +1251,6 @@ App::$strings["Remove this file"] = "Eliminar este fichero";
App::$strings["Profile Unavailable."] = "Perfil no disponible";
App::$strings["Not found"] = "No encontrado";
App::$strings["Invalid channel"] = "Canal no válido";
-App::$strings["Error retrieving wiki"] = "Error al recuperar el wiki";
-App::$strings["Error creating zip file export folder"] = "Error al crear el fichero comprimido zip de la carpeta a exportar";
-App::$strings["Error downloading wiki: "] = "Error al descargar el wiki: ";
App::$strings["Wikis"] = "Wikis";
App::$strings["Download"] = "Descargar";
App::$strings["Wiki name"] = "Nombre del wiki";
@@ -1271,8 +1276,8 @@ App::$strings["Error getting album"] = "Error al obtener el álbum";
App::$strings["Error creating wiki. Invalid name."] = "Error al crear el wiki: el nombre no es válido.";
App::$strings["Wiki created, but error creating Home page."] = "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio.";
App::$strings["Error creating wiki"] = "Error al crear el wiki";
-App::$strings["Wiki delete permission denied."] = "Se ha denegado el permiso para eliminar la wiki.";
-App::$strings["Error deleting wiki"] = "Se ha producido un error al eliminar la wiki";
+App::$strings["Wiki delete permission denied."] = "Se ha denegado el permiso para eliminar el wiki.";
+App::$strings["Error deleting wiki"] = "Se ha producido un error al eliminar el wiki";
App::$strings["New page created"] = "Se ha creado la nueva página";
App::$strings["Cannot delete Home"] = "No se puede eliminar la página principal";
App::$strings["Current Revision"] = "Revisión actual";
@@ -1337,6 +1342,48 @@ App::$strings["Your technical skill level"] = "Su nivel de habilidad técnica";
App::$strings["Used to provide a member experience matched to your comfort level"] = "Se utiliza para proporcionar la experiencia de los miembros adaptada a su nivel de comodidad";
App::$strings["Email Address:"] = "Dirección de correo electrónico:";
App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales";
+App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles";
+App::$strings["%s - (Experimental)"] = "%s - (Experimental)";
+App::$strings["Display Settings"] = "Ajustes de visualización";
+App::$strings["Theme Settings"] = "Ajustes del tema";
+App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema";
+App::$strings["Content Settings"] = "Ajustes del contenido";
+App::$strings["Display Theme:"] = "Tema gráfico del perfil:";
+App::$strings["Select scheme"] = "Elegir un esquema";
+App::$strings["Mobile Theme:"] = "Tema para el móvil:";
+App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página";
+App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre.";
+App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles";
+App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos";
+App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo";
+App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:";
+App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos";
+App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes";
+App::$strings["Manual conversation updates"] = "Actualizaciones manuales de la conversación";
+App::$strings["Default is automatic, which may increase screen jumping"] = "El valor predeterminado es automático, lo que puede aumentar el salto de pantalla";
+App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original";
+App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)";
+App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal";
+App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)";
+App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog";
+App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)";
+App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura";
+App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)";
+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.";
+App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado.";
+App::$strings["You may also provide <em>dropbox</em> style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "También puede proporcionar, con el estilo <em>dropbox</em>, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: ";
+App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados";
+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["Affinity Slider settings updated."] = "Se han actualizado los ajustes del controlador de afinidad.";
+App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos";
+App::$strings["Default maximum affinity level"] = "Nivel máximo de afinidad por defecto";
+App::$strings["Default minimum affinity level"] = "Nivel mínimo de afinidad por defecto";
+App::$strings["Affinity Slider Settings"] = "Ajustes del controlador de afinidad";
+App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos";
App::$strings["Settings updated."] = "Ajustes actualizados.";
App::$strings["Nobody except yourself"] = "Nadie excepto usted";
App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente";
@@ -1425,44 +1472,6 @@ App::$strings["Personal menu to display in your channel pages"] = "Menú persona
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["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles";
-App::$strings["%s - (Experimental)"] = "%s - (Experimental)";
-App::$strings["Display Settings"] = "Ajustes de visualización";
-App::$strings["Theme Settings"] = "Ajustes del tema";
-App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema";
-App::$strings["Content Settings"] = "Ajustes del contenido";
-App::$strings["Display Theme:"] = "Tema gráfico del perfil:";
-App::$strings["Select scheme"] = "Elegir un esquema";
-App::$strings["Mobile Theme:"] = "Tema para el móvil:";
-App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página";
-App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre.";
-App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles";
-App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos";
-App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo";
-App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:";
-App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos";
-App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes";
-App::$strings["Manual conversation updates"] = "Actualizaciones manuales de la conversación";
-App::$strings["Default is automatic, which may increase screen jumping"] = "El valor predeterminado es automático, lo que puede aumentar el salto de pantalla";
-App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original";
-App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)";
-App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal";
-App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)";
-App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog";
-App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)";
-App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura";
-App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)";
-App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos";
-App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos";
-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.";
-App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado.";
-App::$strings["You may also provide <em>dropbox</em> style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "También puede proporcionar, con el estilo <em>dropbox</em>, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: ";
-App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados";
-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["Tag removed"] = "Etiqueta eliminada.";
App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento.";
App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:";
@@ -1524,14 +1533,6 @@ App::$strings["Expiration"] = "Caducidad";
App::$strings["min"] = "min";
App::$strings["Xchan Lookup"] = "Búsqueda de canales";
App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:";
-App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original.";
-App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada.";
-App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal.";
-App::$strings["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada.";
-App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar.";
-App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos.";
-App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal.";
-App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web.";
App::$strings["Missing room name"] = "Sala de chat sin nombre";
App::$strings["Duplicate room name"] = "Nombre de sala duplicado.";
App::$strings["Invalid room specifier."] = "Especificador de sala no válido.";
@@ -1645,20 +1646,6 @@ App::$strings["Code"] = "Código";
App::$strings["Image"] = "Imagen";
App::$strings["Insert Link"] = "Insertar enlace";
App::$strings["Video"] = "Vídeo";
-App::$strings["(No Title)"] = "(Sin título)";
-App::$strings["Wiki not found."] = "No se ha encontrado la wiki.";
-App::$strings["Destination name already exists"] = "El nombre de destino ya existe";
-App::$strings["Page not found"] = "No se ha encontrado la página";
-App::$strings["Error reading page content"] = "Se ha producido un error al leer el contenido de la página";
-App::$strings["Error reading wiki"] = "Se ha producido un error al leer la wiki";
-App::$strings["Page update failed."] = "Se ha producido un error al actualizar la página.";
-App::$strings["Nothing deleted"] = "No se ha eliminado nada";
-App::$strings["Compare: object not found."] = "No se ha encontrado un objeto para comparar.";
-App::$strings["Page updated"] = "Se ha actualizado la página";
-App::$strings["Untitled"] = "Sin título";
-App::$strings["Wiki resource_id required for git commit"] = "Se necesita Wiki resource_id para el git commit";
-App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta";
-App::$strings["Wiki files deleted successfully"] = "Se han borrado satisfactoriamente los ficheros de la wiki";
App::$strings["Site Admin"] = "Administrador del sitio";
App::$strings["Report Bug"] = "Informe de errores";
App::$strings["View Bookmarks"] = "Ver los marcadores";
@@ -1684,6 +1671,21 @@ App::$strings["Post"] = "Publicación";
App::$strings["Profile Photo"] = "Foto del perfil";
App::$strings["Purchase"] = "Comprar";
App::$strings["Undelete"] = "Recuperar";
+App::$strings["Wiki files deleted successfully"] = "Se han borrado con éxito los ficheros del wiki";
+App::$strings["(No Title)"] = "(Sin título)";
+App::$strings["Wiki page create failed."] = "Se ha producido un error en la creación de la página wiki.";
+App::$strings["Wiki not found."] = "No se ha encontrado el wiki.";
+App::$strings["Destination name already exists"] = "El nombre de destino ya existe";
+App::$strings["Page not found"] = "No se ha encontrado la página";
+App::$strings["Error reading page content"] = "Se ha producido un error al leer el contenido de la página";
+App::$strings["Error reading wiki"] = "Se ha producido un error al leer el wiki";
+App::$strings["Page update failed."] = "Se ha producido un error al actualizar la página.";
+App::$strings["Nothing deleted"] = "No se ha eliminado nada";
+App::$strings["Compare: object not found."] = "No se ha encontrado un objeto para comparar.";
+App::$strings["Page updated"] = "Se ha actualizado la página";
+App::$strings["Untitled"] = "Sin título";
+App::$strings["Wiki resource_id required for git commit"] = "Se necesita Wiki resource_id para el git commit";
+App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta";
App::$strings["Flag Adult Photos"] = "Indicador (\"flag\") de fotos de adultos";
App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Proporcionar una opción de edición de fotos para ocultar las fotos inapropiadas de la vista de álbum predeterminada";
App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "Se trata de un diccionario bastante amplio y completo de acordes de guitarra que enumerará la mayor parte de las formas disponibles para tocar un acorde determinado, partiendo de la base del diapasón hasta unos pocos trastes más allá del traste doce (más allá del cual todo se repite). Se proporcionan un par de afinaciones no convencionales para provecho de los guitarristas con \"slides\" ( barras de acero), etc.";
@@ -1695,6 +1697,8 @@ App::$strings["Tuning"] = "Afinación";
App::$strings["Chord name: example: Em7"] = "Nombre del acorde, por ejemplo: Em7";
App::$strings["Show for left handed stringing"] = "Mostrar para tocadores zurdos";
App::$strings["Quick Reference"] = "Referencia rápida";
+App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado.";
+App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación.";
App::$strings["Diaspora Protocol Settings updated."] = "Los ajustes del protocolo de Diaspora se han actualizado.";
App::$strings["Enable the Diaspora protocol for this channel"] = "Activar el protocolo de Diaspora para este canal";
App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas";
@@ -1825,7 +1829,6 @@ App::$strings["This will import all your Friendica photo albums to this Red chan
App::$strings["Friendica Server base URL"] = "URL base del servidor de Friendica";
App::$strings["Friendica Login Username"] = "Nombre de inicio de sesión en Friendica";
App::$strings["Friendica Login Password"] = "Contraseña de inicio de sesión en Friendica";
-App::$strings["Enable the GNU-Social protocol for this channel"] = "Activar el protocolo de GNU-Social para este canal";
App::$strings["Send email to all members"] = "Enviar un correo electrónico a todos los miembros";
App::$strings["$1%s Administrator"] = "Administrador de $1%s ";
App::$strings["No recipients found."] = "No se han encontrado destinatarios.";
@@ -2282,8 +2285,6 @@ App::$strings["Like us on Hubzilla"] = "Múestrenos su agrado en Hubzilla";
App::$strings["Embed:"] = "Incorporado: ";
App::$strings["Male"] = "Hombre";
App::$strings["Female"] = "Mujer";
-App::$strings["OpenID protocol error. No ID returned."] = "Error de protocolo OpenID. No se recuperó ninguna ID.";
-App::$strings["Login failed."] = "El acceso ha fallado.";
App::$strings["First Name"] = "Nombre";
App::$strings["Last Name"] = "Apellido";
App::$strings["Full Name"] = "Nombre completo";
@@ -2300,6 +2301,8 @@ App::$strings["Birth Day"] = "Día de nacimiento";
App::$strings["Birthdate"] = "Fecha de nacimiento";
App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema al iniciar sesión con el OpenID que proporcionó. Compruebe si el ID está correctamente escrito.";
App::$strings["The error message was:"] = "El mensaje de error ha sido: ";
+App::$strings["OpenID protocol error. No ID returned."] = "Error de protocolo OpenID. No se recuperó ninguna ID.";
+App::$strings["Login failed."] = "El acceso ha fallado.";
App::$strings["Reconnecting %d connections"] = "Reconectando %d conexiones";
App::$strings["Diaspora Reconnect"] = "Reconectar con Diaspora";
App::$strings["Use this form to re-establish Diaspora connections which were initially made from a different hub."] = "Utilice este formulario para restablecer las conexiones de diáspora que se hicieron inicialmente desde un hub diferente.";
@@ -2326,30 +2329,30 @@ App::$strings["Delete member"] = "Eliminar un miembro";
App::$strings["Edit proximity alert"] = "Editar alerta de proximidad";
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):"] = "Se emitirá una alerta de proximidad cuando este miembro esté dentro de un radio determinado respecto a usted.<br><br> Ingrese el radio en metros (0 para deshabilitar):";
App::$strings["distance"] = "distancia";
-App::$strings["Marker proximity alert"] = "Marcador de alerta de proximidad";
+App::$strings["Proximity alert distance (meters)"] = "Distancia (en metros) para la alerta de proximidad";
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):"] = "Se emitirá una alerta de proximidad cuando usted esté dentro de un radio determinado respecto al marcador de localización.<br><br> Ingrese el radio en metros (0 para deshabilitar):";
+App::$strings["Marker proximity alert"] = "Marcador de alerta de proximidad";
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["Install Firefox Sharing Tools"] = "Instalar las herramientas de compartición de Firefox";
+App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname";
+App::$strings["Install Firefox Sharing Tools to this web browser"] = "Instalar las herramientas de compartición de Firefox en este navegador";
+App::$strings["Error retrieving wiki"] = "Error al recuperar el wiki";
+App::$strings["Error creating zip file export folder"] = "Error al crear el fichero comprimido zip de la carpeta a exportar";
+App::$strings["Error downloading wiki: "] = "Error al descargar el wiki: ";
App::$strings["Wiki Pages"] = "Páginas del wiki";
App::$strings["Add new page"] = "Añadir una nueva página";
App::$strings["Page name"] = "Nombre de la página";
App::$strings["Wiki List"] = "Lista de wikis";
-App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado.";
-App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación.";
+App::$strings["Enable the GNU-Social protocol for this channel"] = "Activar el protocolo de GNU-Social para este canal";
+App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Buscar %1\$s (%2\$s)";
+App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
+App::$strings["Search \$Projectname"] = "Buscar \$Projectname";
App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”";
App::$strings["default"] = "por defecto";
App::$strings["Select an alternate language"] = "Seleccionar un idioma alternativo";
-App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i";
-App::$strings["Starts:"] = "Comienza:";
-App::$strings["Finishes:"] = "Finaliza:";
-App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario.";
-App::$strings["Not specified"] = "Sin especificar";
-App::$strings["Needs Action"] = "Necesita de una intervención";
-App::$strings["Completed"] = "Completado/a";
-App::$strings["In Process"] = "En proceso";
-App::$strings["Cancelled"] = "Cancelado/a";
App::$strings["Not a valid email address"] = "Dirección de correo no válida";
App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio.";
App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio.";
@@ -2381,6 +2384,11 @@ App::$strings["want"] = "quiero";
App::$strings["wants"] = "quiere";
App::$strings["likes"] = "gusta de";
App::$strings["dislikes"] = "no gusta de";
+App::$strings["Attachments:"] = "Ficheros adjuntos:";
+App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i";
+App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:";
+App::$strings["Starts:"] = "Comienza:";
+App::$strings["Finishes:"] = "Finaliza:";
App::$strings["Birthday"] = "Cumpleaños";
App::$strings["Age: "] = "Edad:";
App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD";
@@ -2417,8 +2425,6 @@ App::$strings["__ctx:relative_date__ second"] = array(
);
App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s";
App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s";
-App::$strings["guest:"] = "invitado: ";
-App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado";
App::$strings["Frequently"] = "Frecuentemente";
App::$strings["Hourly"] = "Cada hora";
App::$strings["Twice daily"] = "Dos veces al día";
@@ -2479,138 +2485,171 @@ App::$strings["Uncertain"] = "Indeterminado";
App::$strings["It's complicated"] = "Es complicado";
App::$strings["Don't care"] = "No me importa";
App::$strings["Ask me"] = "Pregúnteme";
-App::$strings["Invalid data packet"] = "Paquete de datos no válido";
-App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal";
-App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s";
-App::$strings["invalid target signature"] = "La firma recibida no es válida";
-App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s";
-App::$strings["Logout"] = "Finalizar sesión";
-App::$strings["End this session"] = "Finalizar esta sesión";
-App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones";
-App::$strings["Your profile page"] = "Su página del perfil";
-App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles";
-App::$strings["Edit your profile"] = "Editar su perfil";
-App::$strings["Your photos"] = "Sus fotos";
-App::$strings["Your files"] = "Sus ficheros";
-App::$strings["Your chatrooms"] = "Sus salas de chat";
+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["User '%s' deleted"] = "El usuario '%s' ha sido eliminado";
+App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s";
+App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s";
+App::$strings["poked"] = "ha dado un toque a";
+App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s";
+App::$strings["Categories:"] = "Temas:";
+App::$strings["Filed under:"] = "Archivado bajo:";
+App::$strings["View in context"] = "Mostrar en su contexto";
+App::$strings["remove"] = "eliminar";
+App::$strings["Loading..."] = "Cargando...";
+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.";
+App::$strings["%s doesn't like this."] = "A %s no le gusta esto.";
+App::$strings["<span %1\$s>%2\$d people</span> like this."] = array(
+ 0 => "a <span %1\$s>%2\$d personas</span> le gusta esto.",
+ 1 => "A <span %1\$s>%2\$d personas</span> les gusta esto.",
+);
+App::$strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
+ 0 => "a <span %1\$s>%2\$d personas</span> no les gusta esto.",
+ 1 => "A <span %1\$s>%2\$d personas</span> no les gusta esto.",
+);
+App::$strings["and"] = "y";
+App::$strings[", and %d other people"] = array(
+ 0 => ", y %d persona más",
+ 1 => ", y %d personas más",
+);
+App::$strings["%s like this."] = "A %s le gusta esto.";
+App::$strings["%s don't like this."] = "A %s no le gusta esto.";
+App::$strings["Set your location"] = "Establecer su ubicación";
+App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador";
+App::$strings["Tag term:"] = "Término de la etiqueta:";
+App::$strings["Where are you right now?"] = "¿Donde está ahora?";
+App::$strings["Choose a different album..."] = "Elegir un álbum diferente...";
+App::$strings["Comments enabled"] = "Comentarios habilitados";
+App::$strings["Comments disabled"] = "Comentarios deshabilitados";
+App::$strings["Page link name"] = "Nombre del enlace de la página";
+App::$strings["Post as"] = "Publicar como";
+App::$strings["Toggle voting"] = "Cambiar votación";
+App::$strings["Disable comments"] = "Dehabilitar los comentarios";
+App::$strings["Toggle comments"] = "Activar o desactivar los comentarios";
+App::$strings["Categories (optional, comma-separated list)"] = "Temas (opcional, lista separada por comas)";
+App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación";
+App::$strings["Set publish date"] = "Establecer la fecha de publicación";
+App::$strings["Discover"] = "Descubrir";
+App::$strings["Imported public streams"] = "Contenidos públicos importados";
+App::$strings["Commented Order"] = "Comentarios recientes";
+App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario";
+App::$strings["Posted Order"] = "Publicaciones recientes";
+App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación";
+App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran";
+App::$strings["Activity Stream - by date"] = "Contenido - por fecha";
+App::$strings["Starred"] = "Preferidas";
+App::$strings["Favourite Posts"] = "Publicaciones favoritas";
+App::$strings["Spam"] = "Correo basura";
+App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura";
+App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones";
+App::$strings["Profile Details"] = "Detalles del perfil";
+App::$strings["Photo Albums"] = "Álbumes de fotos";
+App::$strings["Files and Storage"] = "Ficheros y repositorio";
+App::$strings["Chatrooms"] = "Salas de chat";
App::$strings["Bookmarks"] = "Marcadores";
-App::$strings["Your bookmarks"] = "Sus marcadores";
-App::$strings["Your webpages"] = "Sus páginas web";
-App::$strings["Your wikis"] = "Sus wikis";
-App::$strings["Sign in"] = "Acceder";
-App::$strings["Remote authentication"] = "Acceder desde su servidor";
-App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio";
-App::$strings["Get 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["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos";
-App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido";
-App::$strings["Channel Directory"] = "Directorio de canales";
-App::$strings["Your grid"] = "Mi red";
-App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas";
-App::$strings["Channel home"] = "Mi canal";
-App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas";
-App::$strings["Notices"] = "Avisos";
-App::$strings["Notifications"] = "Notificaciones";
-App::$strings["See all notifications"] = "Ver todas las notificaciones";
-App::$strings["Private mail"] = "Correo privado";
-App::$strings["See all private messages"] = "Ver todas los mensajes privados";
-App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos";
+App::$strings["Saved Bookmarks"] = "Marcadores guardados";
+App::$strings["View Webpages"] = "Ver páginas web";
+App::$strings["__ctx:noun__ Attending"] = array(
+ 0 => "Participaré",
+ 1 => "Participaré",
+);
+App::$strings["__ctx:noun__ Not Attending"] = array(
+ 0 => "No participaré",
+ 1 => "No participaré",
+);
+App::$strings["__ctx:noun__ Undecided"] = array(
+ 0 => "Indeciso/a",
+ 1 => "Indecisos/as",
+);
+App::$strings["__ctx:noun__ Agree"] = array(
+ 0 => "De acuerdo",
+ 1 => "De acuerdo",
+);
+App::$strings["__ctx:noun__ Disagree"] = array(
+ 0 => "En desacuerdo",
+ 1 => "En desacuerdo",
+);
+App::$strings["__ctx:noun__ Abstain"] = array(
+ 0 => "se abstiene",
+ 1 => "Se abstienen",
+);
+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["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado.";
+App::$strings["Unable to import element \""] = "No se puede importar un elemento \"";
+App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. ";
+App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario.";
+App::$strings["[no subject]"] = "[sin asunto]";
+App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas.";
+App::$strings["guest:"] = "invitado: ";
+App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado";
+App::$strings["System"] = "Sistema";
+App::$strings["New App"] = "Nueva aplicación (app)";
+App::$strings["Edit Apps"] = "Modificar las aplicaciones";
+App::$strings["Suggestions"] = "Sugerencias";
+App::$strings["See more..."] = "Ver más...";
+App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas.";
+App::$strings["Add New Connection"] = "Añadir nueva conexión";
+App::$strings["Enter channel address"] = "Dirección del canal";
+App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen";
+App::$strings["Notes"] = "Notas";
+App::$strings["Remove term"] = "Eliminar término";
+App::$strings["Saved Searches"] = "Búsquedas guardadas";
+App::$strings["add"] = "añadir";
+App::$strings["Saved Folders"] = "Carpetas guardadas";
+App::$strings["Everything"] = "Todo";
+App::$strings["Archives"] = "Hemeroteca";
+App::$strings["Refresh"] = "Recargar";
+App::$strings["Account settings"] = "Configuración de la cuenta";
+App::$strings["Channel settings"] = "Configuración del canal";
+App::$strings["Additional features"] = "Funcionalidades";
+App::$strings["Feature/Addon settings"] = "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["Premium Channel Settings"] = "Configuración del canal premium";
+App::$strings["Private Mail Menu"] = "Menú de correo privado";
+App::$strings["Combined View"] = "Vista combinada";
App::$strings["Inbox"] = "Bandeja de entrada";
App::$strings["Outbox"] = "Bandeja de salida";
App::$strings["New Message"] = "Nuevo mensaje";
-App::$strings["Event Calendar"] = "Calendario de eventos";
-App::$strings["See all events"] = "Ver todos los eventos";
-App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos";
-App::$strings["Manage Your Channels"] = "Gestionar sus canales";
-App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales";
+App::$strings["Conversations"] = "Conversaciones";
+App::$strings["Received Messages"] = "Mensajes recibidos";
+App::$strings["Sent Messages"] = "Enviar mensajes";
+App::$strings["No messages."] = "Sin mensajes.";
+App::$strings["Delete conversation"] = "Eliminar conversación";
+App::$strings["Events Tools"] = "Gestión de eventos";
+App::$strings["Export Calendar"] = "Exportar el calendario";
+App::$strings["Import Calendar"] = "Importar un calendario";
+App::$strings["Overview"] = "Resumen";
+App::$strings["Chat Members"] = "Miembros del chat";
+App::$strings["__ctx:wiki_history__ Message"] = "Mensaje";
+App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas";
+App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas";
+App::$strings["photo/image"] = "foto/imagen";
+App::$strings["Click to show more"] = "Hacer clic para ver más";
+App::$strings["Rating Tools"] = "Valoraciones";
+App::$strings["Rate Me"] = "Valorar este canal";
+App::$strings["View Ratings"] = "Mostrar las valoraciones";
+App::$strings["Forums"] = "Foros";
+App::$strings["Tasks"] = "Tareas";
+App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación";
+App::$strings["Inspect queue"] = "Examinar la cola";
+App::$strings["DB updates"] = "Actualizaciones de la base de datos";
App::$strings["Admin"] = "Administrador";
-App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio";
-App::$strings["Documentation"] = "Documentación";
-App::$strings["Loading..."] = "Cargando...";
-App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido";
-App::$strings["Please wait..."] = "Espere por favor…";
-App::$strings["General Features"] = "Funcionalidades básicas";
-App::$strings["Multiple Profiles"] = "Múltiples perfiles";
-App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles";
-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";
-App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales";
-App::$strings["Web Pages"] = "Páginas web";
-App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal";
-App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal";
-App::$strings["Private Notes"] = "Notas privadas";
-App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)";
-App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales";
-App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable";
-App::$strings["Photo Location"] = "Ubicación de las fotos";
-App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa.";
-App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas";
-App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados.";
-App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes";
-App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo.";
-App::$strings["Event Timezone Selection"] = "Selección del huso horario del evento";
-App::$strings["Allow event creation in timezones other than your own."] = "Permitir la creación de eventos en husos horarios distintos del suyo.";
-App::$strings["Advanced Directory Search"] = "Búsqueda avanzada en el directorio";
-App::$strings["Allows creation of complex directory search queries"] = "Permitir la creación de consultas complejas en las búsquedas en el directorio";
-App::$strings["Advanced Theme and Layout Settings"] = "Ajustes avanzados de temas y esquemas";
-App::$strings["Allows fine tuning of themes and page layouts"] = "Permitir el ajuste fino de temas y esquemas de páginas";
-App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas";
-App::$strings["Large Photos"] = "Fotos de gran tamaño";
-App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)";
-App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\"";
-App::$strings["Even More Encryption"] = "Más cifrado todavía";
-App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida.";
-App::$strings["Enable Voting Tools"] = "Permitir entradas con votación";
-App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar";
-App::$strings["Disable Comments"] = "Deshabilitar comentarios";
-App::$strings["Provide the option to disable comments for a post"] = "Proporcionar la opción de desactivar los comentarios para una entrada";
-App::$strings["Delayed Posting"] = "Publicación aplazada";
-App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior";
-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["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";
-App::$strings["Privacy Groups"] = "Grupos de canales";
-App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales";
-App::$strings["Saved Searches"] = "Búsquedas guardadas";
-App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización";
-App::$strings["Network Personal Tab"] = "Actividad personal";
-App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado.";
-App::$strings["Network New Tab"] = "Contenido nuevo";
-App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo";
-App::$strings["Affinity Tool"] = "Herramienta de afinidad";
-App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones";
-App::$strings["Show friend and connection suggestions"] = "Mostrar sugerencias de amigos y conexiones";
-App::$strings["Connection Filtering"] = "Filtrado de conexiones";
-App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido";
-App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios";
-App::$strings["Community Tagging"] = "Etiquetas de la comunidad";
-App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes";
-App::$strings["Post Categories"] = "Temas de las entradas";
-App::$strings["Add categories to your posts"] = "Añadir temas a sus publicaciones";
-App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\"";
-App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas";
-App::$strings["Saved Folders"] = "Carpetas guardadas";
-App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas";
-App::$strings["Dislike Posts"] = "Desagrado de publicaciones";
-App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios";
-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["Premium Channel"] = "Canal premium";
-App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal";
+App::$strings["Plugin Features"] = "Extensiones";
+App::$strings["Invalid data packet"] = "Paquete de datos no válido";
+App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal";
+App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s";
+App::$strings["invalid target signature"] = "La firma recibida no es válida";
App::$strings["New Page"] = "Nueva página";
-App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. ";
-App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario.";
-App::$strings["[no subject]"] = "[sin asunto]";
-App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas.";
App::$strings["%d invitation available"] = array(
0 => "%d invitación pendiente",
1 => "%d invitaciones disponibles",
@@ -2622,14 +2661,11 @@ App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Ferná
App::$strings["Random Profile"] = "Perfil aleatorio";
App::$strings["Invite Friends"] = "Invitar a amigos";
App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa";
-App::$strings["Everything"] = "Todo";
App::$strings["%d connection in common"] = array(
0 => "%d conexión en común",
1 => "%d conexiones en común",
);
App::$strings["show more"] = "mostrar más";
-App::$strings["Attachments:"] = "Ficheros adjuntos:";
-App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:";
App::$strings["Delete this item?"] = "¿Borrar este elemento?";
App::$strings["%s show less"] = "%s mostrar menos";
App::$strings["%s expand"] = "%s expandir";
@@ -2710,57 +2746,6 @@ App::$strings["Directory Options"] = "Opciones del directorio";
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["Image/photo"] = "Imagen/foto";
-App::$strings["Encrypted content"] = "Contenido cifrado";
-App::$strings["Install %s element: "] = "Instalar el elemento %s:";
-App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio.";
-App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s";
-App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar";
-App::$strings["spoiler"] = "spoiler";
-App::$strings["$1 wrote:"] = "$1 escribió:";
-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["User '%s' deleted"] = "El usuario '%s' ha sido eliminado";
-App::$strings[" by "] = "por";
-App::$strings[" on "] = "en";
-App::$strings["Embedded content"] = "Contenido incorporado";
-App::$strings["Embedding disabled"] = "Incrustación deshabilitada";
-App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos";
-App::$strings["Empty name"] = "Nombre vacío";
-App::$strings["Name too long"] = "Nombre demasiado largo";
-App::$strings["No account identifier"] = "Ningún identificador de la cuenta";
-App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias).";
-App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro.";
-App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio.";
-App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada";
-App::$strings["Default Profile"] = "Perfil principal";
-App::$strings["Create New Profile"] = "Crear un nuevo perfil";
-App::$strings["Visible to everybody"] = "Visible para todos";
-App::$strings["Gender:"] = "Género:";
-App::$strings["Homepage:"] = "Página personal:";
-App::$strings["Online Now"] = "Ahora en línea";
-App::$strings["Like this channel"] = "Me gusta este canal";
-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["Political Views:"] = "Posición política:";
-App::$strings["Religion:"] = "Religión:";
-App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:";
-App::$strings["Likes:"] = "Me gusta:";
-App::$strings["Dislikes:"] = "No me gusta:";
-App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:";
-App::$strings["My other channels:"] = "Mis otros canales:";
-App::$strings["Musical interests:"] = "Preferencias musicales:";
-App::$strings["Books, literature:"] = "Libros, literatura:";
-App::$strings["Television:"] = "Televisión:";
-App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:";
-App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:";
-App::$strings["Work/employment:"] = "Trabajo:";
-App::$strings["School/education:"] = "Estudios:";
-App::$strings["Like this thing"] = "Me gusta esto";
App::$strings["Item was not found."] = "Elemento no encontrado.";
App::$strings["No source file."] = "Ningún fichero de origen";
App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido.";
@@ -2776,112 +2761,26 @@ App::$strings["Path not found."] = "Ruta no encontrada";
App::$strings["mkdir failed."] = "mkdir ha fallado.";
App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado.";
App::$strings["Empty path"] = "Ruta vacía";
-App::$strings["Logged out."] = "Desconectado/a.";
-App::$strings["Failed authentication"] = "Autenticación fallida.";
-App::$strings[" and "] = " y ";
-App::$strings["public profile"] = "el perfil público";
-App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiado %2\$s a &ldquo;%3\$s&rdquo;";
-App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s";
-App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s.";
-App::$strings["Help:"] = "Ayuda:";
-App::$strings["Not Found"] = "No encontrado";
-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["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe.";
-App::$strings["Protocol disabled."] = "Protocolo deshabilitado.";
-App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado.";
-App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo.";
-App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s";
-App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s";
-App::$strings["poked"] = "ha dado un toque a";
-App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s";
-App::$strings["Categories:"] = "Temas:";
-App::$strings["Filed under:"] = "Archivado bajo:";
-App::$strings["View in context"] = "Mostrar en su contexto";
-App::$strings["remove"] = "eliminar";
-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.";
-App::$strings["%s doesn't like this."] = "A %s no le gusta esto.";
-App::$strings["<span %1\$s>%2\$d people</span> like this."] = array(
- 0 => "a <span %1\$s>%2\$d personas</span> le gusta esto.",
- 1 => "A <span %1\$s>%2\$d personas</span> les gusta esto.",
-);
-App::$strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
- 0 => "a <span %1\$s>%2\$d personas</span> no les gusta esto.",
- 1 => "A <span %1\$s>%2\$d personas</span> no les gusta esto.",
-);
-App::$strings["and"] = "y";
-App::$strings[", and %d other people"] = array(
- 0 => ", y %d persona más",
- 1 => ", y %d personas más",
-);
-App::$strings["%s like this."] = "A %s le gusta esto.";
-App::$strings["%s don't like this."] = "A %s no le gusta esto.";
-App::$strings["Set your location"] = "Establecer su ubicación";
-App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador";
-App::$strings["Tag term:"] = "Término de la etiqueta:";
-App::$strings["Where are you right now?"] = "¿Donde está ahora?";
-App::$strings["Choose a different album..."] = "Elegir un álbum diferente...";
-App::$strings["Comments enabled"] = "Comentarios habilitados";
-App::$strings["Comments disabled"] = "Comentarios deshabilitados";
-App::$strings["Page link name"] = "Nombre del enlace de la página";
-App::$strings["Post as"] = "Publicar como";
-App::$strings["Toggle voting"] = "Cambiar votación";
-App::$strings["Disable comments"] = "Dehabilitar los comentarios";
-App::$strings["Toggle comments"] = "Activar o desactivar los comentarios";
-App::$strings["Categories (optional, comma-separated list)"] = "Temas (opcional, lista separada por comas)";
-App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación";
-App::$strings["Set publish date"] = "Establecer la fecha de publicación";
-App::$strings["Discover"] = "Descubrir";
-App::$strings["Imported public streams"] = "Contenidos públicos importados";
-App::$strings["Commented Order"] = "Comentarios recientes";
-App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario";
-App::$strings["Posted Order"] = "Publicaciones recientes";
-App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación";
-App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran";
-App::$strings["Activity Stream - by date"] = "Contenido - por fecha";
-App::$strings["Starred"] = "Preferidas";
-App::$strings["Favourite Posts"] = "Publicaciones favoritas";
-App::$strings["Spam"] = "Correo basura";
-App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura";
-App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones";
-App::$strings["Profile Details"] = "Detalles del perfil";
-App::$strings["Photo Albums"] = "Álbumes de fotos";
-App::$strings["Files and Storage"] = "Ficheros y repositorio";
-App::$strings["Chatrooms"] = "Salas de chat";
-App::$strings["Saved Bookmarks"] = "Marcadores guardados";
-App::$strings["View Webpages"] = "Ver páginas web";
-App::$strings["__ctx:noun__ Attending"] = array(
- 0 => "Participaré",
- 1 => "Participaré",
-);
-App::$strings["__ctx:noun__ Not Attending"] = array(
- 0 => "No participaré",
- 1 => "No participaré",
-);
-App::$strings["__ctx:noun__ Undecided"] = array(
- 0 => "Indeciso/a",
- 1 => "Indecisos/as",
-);
-App::$strings["__ctx:noun__ Agree"] = array(
- 0 => "De acuerdo",
- 1 => "De acuerdo",
-);
-App::$strings["__ctx:noun__ Disagree"] = array(
- 0 => "En desacuerdo",
- 1 => "En desacuerdo",
-);
-App::$strings["__ctx:noun__ Abstain"] = array(
- 0 => "se abstiene",
- 1 => "Se abstienen",
-);
+App::$strings["view full size"] = "Ver en el tamaño original";
+App::$strings["No Subject"] = "Sin asunto";
+App::$strings["OStatus"] = "OStatus";
+App::$strings["GNU-Social"] = "GNU Social";
+App::$strings["RSS/Atom"] = "RSS/Atom";
+App::$strings["Facebook"] = "Facebook";
+App::$strings["Zot"] = "Zot";
+App::$strings["LinkedIn"] = "LinkedIn";
+App::$strings["XMPP/IM"] = "XMPP/IM";
+App::$strings["MySpace"] = "MySpace";
+App::$strings[" by "] = "por";
+App::$strings[" on "] = "en";
+App::$strings["Embedded content"] = "Contenido incorporado";
+App::$strings["Embedding disabled"] = "Incrustación deshabilitada";
+App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio";
+App::$strings["Image file is empty."] = "El fichero de imagen está vacío. ";
+App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada.";
+App::$strings["a new photo"] = "una nueva foto";
+App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s";
+App::$strings["Upload New Photos"] = "Subir nuevas fotos";
App::$strings["prev"] = "anterior";
App::$strings["first"] = "primera";
App::$strings["last"] = "última";
@@ -2948,29 +2847,119 @@ App::$strings["Export to cloud files"] = "Exportar a la nube de ficheros";
App::$strings["/path/to/export/folder"] = "/ruta/para/exportar/carpeta";
App::$strings["Enter a path to a cloud files destination."] = "Escriba una ruta de destino a la nube de ficheros.";
App::$strings["Specify folder"] = "Especificar una carpeta";
+App::$strings["Logout"] = "Finalizar sesión";
+App::$strings["End this session"] = "Finalizar esta sesión";
+App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones";
+App::$strings["Your profile page"] = "Su página del perfil";
+App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles";
+App::$strings["Edit your profile"] = "Editar su perfil";
+App::$strings["Your photos"] = "Sus fotos";
+App::$strings["Your files"] = "Sus ficheros";
+App::$strings["Your chatrooms"] = "Sus salas de chat";
+App::$strings["Your bookmarks"] = "Sus marcadores";
+App::$strings["Your webpages"] = "Sus páginas web";
+App::$strings["Your wikis"] = "Sus wikis";
+App::$strings["Sign in"] = "Acceder";
+App::$strings["Remote authentication"] = "Acceder desde su servidor";
+App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio";
+App::$strings["Get 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["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos";
+App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido";
+App::$strings["Channel Directory"] = "Directorio de canales";
+App::$strings["Your grid"] = "Mi red";
+App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas";
+App::$strings["Channel home"] = "Mi canal";
+App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas";
+App::$strings["Notices"] = "Avisos";
+App::$strings["Notifications"] = "Notificaciones";
+App::$strings["See all notifications"] = "Ver todas las notificaciones";
+App::$strings["Private mail"] = "Correo privado";
+App::$strings["See all private messages"] = "Ver todas los mensajes privados";
+App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos";
+App::$strings["Event Calendar"] = "Calendario de eventos";
+App::$strings["See all events"] = "Ver todos los eventos";
+App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos";
+App::$strings["Manage Your Channels"] = "Gestionar sus canales";
+App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales";
+App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio";
+App::$strings["Documentation"] = "Documentación";
+App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido";
+App::$strings["Please wait..."] = "Espere por favor…";
+App::$strings["Logged out."] = "Desconectado/a.";
+App::$strings["Failed authentication"] = "Autenticación fallida.";
+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["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe.";
+App::$strings["Protocol disabled."] = "Protocolo deshabilitado.";
+App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado.";
+App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo.";
+App::$strings[" and "] = " y ";
+App::$strings["public profile"] = "el perfil público";
+App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiado %2\$s a &ldquo;%3\$s&rdquo;";
+App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s";
+App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s.";
+App::$strings["Image/photo"] = "Imagen/foto";
+App::$strings["Encrypted content"] = "Contenido cifrado";
+App::$strings["Install %s element: "] = "Instalar el elemento %s:";
+App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio.";
+App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s";
+App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar";
+App::$strings["spoiler"] = "spoiler";
+App::$strings["$1 wrote:"] = "$1 escribió:";
+App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s";
+App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos";
+App::$strings["Empty name"] = "Nombre vacío";
+App::$strings["Name too long"] = "Nombre demasiado largo";
+App::$strings["No account identifier"] = "Ningún identificador de la cuenta";
+App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias).";
+App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro.";
+App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio.";
+App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada";
+App::$strings["Default Profile"] = "Perfil principal";
+App::$strings["Create New Profile"] = "Crear un nuevo perfil";
+App::$strings["Visible to everybody"] = "Visible para todos";
+App::$strings["Gender:"] = "Género:";
+App::$strings["Homepage:"] = "Página personal:";
+App::$strings["Online Now"] = "Ahora en línea";
+App::$strings["Like this channel"] = "Me gusta este canal";
+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["Political Views:"] = "Posición política:";
+App::$strings["Religion:"] = "Religión:";
+App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:";
+App::$strings["Likes:"] = "Me gusta:";
+App::$strings["Dislikes:"] = "No me gusta:";
+App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:";
+App::$strings["My other channels:"] = "Mis otros canales:";
+App::$strings["Musical interests:"] = "Preferencias musicales:";
+App::$strings["Books, literature:"] = "Libros, literatura:";
+App::$strings["Television:"] = "Televisión:";
+App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:";
+App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:";
+App::$strings["Work/employment:"] = "Trabajo:";
+App::$strings["School/education:"] = "Estudios:";
+App::$strings["Like this thing"] = "Me gusta esto";
App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. <strong>Es posible</strong> que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente.";
App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales";
App::$strings["edit"] = "editar";
+App::$strings["Privacy Groups"] = "Grupos de canales";
App::$strings["Edit group"] = "Editar grupo";
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["add"] = "añadir";
-App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales";
-App::$strings["Can view my webpages"] = "Pueden verse mis páginas web";
-App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)";
-App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta";
-App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios";
-App::$strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención";
-App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos";
-App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)";
-App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos";
-App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web";
-App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas";
-App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal";
-App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo.";
-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["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado.";
-App::$strings["Unable to import element \""] = "No se puede importar un elemento \"";
+App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario.";
+App::$strings["Not specified"] = "Sin especificar";
+App::$strings["Needs Action"] = "Necesita de una intervención";
+App::$strings["Completed"] = "Completado/a";
+App::$strings["In Process"] = "En proceso";
+App::$strings["Cancelled"] = "Cancelado/a";
App::$strings["(Unknown)"] = "(Desconocido)";
App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet.";
App::$strings["Visible to you only."] = "Visible sólo para usted.";
@@ -2987,70 +2976,93 @@ App::$strings["profile photo"] = "foto del perfil";
App::$strings["[Edited %s]"] = "[se ha editado %s]";
App::$strings["__ctx:edit_activity__ Post"] = "Publicar";
App::$strings["__ctx:edit_activity__ Comment"] = "Comentar";
-App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio";
-App::$strings["Image file is empty."] = "El fichero de imagen está vacío. ";
-App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada.";
-App::$strings["a new photo"] = "una nueva foto";
-App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s";
-App::$strings["Upload New Photos"] = "Subir nuevas fotos";
-App::$strings["view full size"] = "Ver en el tamaño original";
-App::$strings["No Subject"] = "Sin asunto";
-App::$strings["OStatus"] = "OStatus";
-App::$strings["GNU-Social"] = "GNU Social";
-App::$strings["RSS/Atom"] = "RSS/Atom";
-App::$strings["Facebook"] = "Facebook";
-App::$strings["Zot"] = "Zot";
-App::$strings["LinkedIn"] = "LinkedIn";
-App::$strings["XMPP/IM"] = "XMPP/IM";
-App::$strings["MySpace"] = "MySpace";
-App::$strings["System"] = "Sistema";
-App::$strings["New App"] = "Nueva aplicación (app)";
-App::$strings["Edit Apps"] = "Modificar las aplicaciones";
-App::$strings["Suggestions"] = "Sugerencias";
-App::$strings["See more..."] = "Ver más...";
-App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas.";
-App::$strings["Add New Connection"] = "Añadir nueva conexión";
-App::$strings["Enter channel address"] = "Dirección del canal";
-App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen";
-App::$strings["Notes"] = "Notas";
-App::$strings["Remove term"] = "Eliminar término";
-App::$strings["Archives"] = "Hemeroteca";
-App::$strings["Refresh"] = "Recargar";
-App::$strings["Account settings"] = "Configuración de la cuenta";
-App::$strings["Channel settings"] = "Configuración del canal";
-App::$strings["Additional features"] = "Funcionalidades";
-App::$strings["Feature/Addon settings"] = "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["Premium Channel Settings"] = "Configuración del canal premium";
-App::$strings["Private Mail Menu"] = "Menú de correo privado";
-App::$strings["Combined View"] = "Vista combinada";
-App::$strings["Conversations"] = "Conversaciones";
-App::$strings["Received Messages"] = "Mensajes recibidos";
-App::$strings["Sent Messages"] = "Enviar mensajes";
-App::$strings["No messages."] = "Sin mensajes.";
-App::$strings["Delete conversation"] = "Eliminar conversación";
-App::$strings["Events Tools"] = "Gestión de eventos";
-App::$strings["Export Calendar"] = "Exportar el calendario";
-App::$strings["Import Calendar"] = "Importar un calendario";
-App::$strings["Overview"] = "Resumen";
-App::$strings["Chat Members"] = "Miembros del chat";
-App::$strings["__ctx:wiki_history__ Message"] = "Mensaje";
-App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas";
-App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas";
-App::$strings["photo/image"] = "foto/imagen";
-App::$strings["Click to show more"] = "Hacer clic para ver más";
-App::$strings["Rating Tools"] = "Valoraciones";
-App::$strings["Rate Me"] = "Valorar este canal";
-App::$strings["View Ratings"] = "Mostrar las valoraciones";
-App::$strings["Forums"] = "Foros";
-App::$strings["Tasks"] = "Tareas";
-App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación";
-App::$strings["Inspect queue"] = "Examinar la cola";
-App::$strings["DB updates"] = "Actualizaciones de la base de datos";
-App::$strings["Plugin Features"] = "Extensiones";
+App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales";
+App::$strings["Can view my webpages"] = "Pueden verse mis páginas web";
+App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)";
+App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta";
+App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios";
+App::$strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención";
+App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos";
+App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)";
+App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos";
+App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web";
+App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas";
+App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal";
+App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo.";
+App::$strings["General Features"] = "Funcionalidades básicas";
+App::$strings["Multiple Profiles"] = "Múltiples perfiles";
+App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles";
+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";
+App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales";
+App::$strings["Web Pages"] = "Páginas web";
+App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal";
+App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal";
+App::$strings["Private Notes"] = "Notas privadas";
+App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)";
+App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales";
+App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable";
+App::$strings["Photo Location"] = "Ubicación de las fotos";
+App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa.";
+App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas";
+App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados.";
+App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes";
+App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo.";
+App::$strings["Event Timezone Selection"] = "Selección del huso horario del evento";
+App::$strings["Allow event creation in timezones other than your own."] = "Permitir la creación de eventos en husos horarios distintos del suyo.";
+App::$strings["Advanced Directory Search"] = "Búsqueda avanzada en el directorio";
+App::$strings["Allows creation of complex directory search queries"] = "Permitir la creación de consultas complejas en las búsquedas en el directorio";
+App::$strings["Advanced Theme and Layout Settings"] = "Ajustes avanzados de temas y esquemas";
+App::$strings["Allows fine tuning of themes and page layouts"] = "Permitir el ajuste fino de temas y esquemas de páginas";
+App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas";
+App::$strings["Large Photos"] = "Fotos de gran tamaño";
+App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)";
+App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\"";
+App::$strings["Even More Encryption"] = "Más cifrado todavía";
+App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida.";
+App::$strings["Enable Voting Tools"] = "Permitir entradas con votación";
+App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar";
+App::$strings["Disable Comments"] = "Deshabilitar comentarios";
+App::$strings["Provide the option to disable comments for a post"] = "Proporcionar la opción de desactivar los comentarios para una entrada";
+App::$strings["Delayed Posting"] = "Publicación aplazada";
+App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior";
+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["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";
+App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales";
+App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización";
+App::$strings["Network Personal Tab"] = "Actividad personal";
+App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado.";
+App::$strings["Network New Tab"] = "Contenido nuevo";
+App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo";
+App::$strings["Affinity Tool"] = "Herramienta de afinidad";
+App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones";
+App::$strings["Show friend and connection suggestions"] = "Mostrar sugerencias de amigos y conexiones";
+App::$strings["Connection Filtering"] = "Filtrado de conexiones";
+App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido";
+App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios";
+App::$strings["Community Tagging"] = "Etiquetas de la comunidad";
+App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes";
+App::$strings["Post Categories"] = "Temas de las entradas";
+App::$strings["Add categories to your posts"] = "Añadir temas a sus publicaciones";
+App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\"";
+App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas";
+App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas";
+App::$strings["Dislike Posts"] = "Desagrado de publicaciones";
+App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios";
+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["Premium Channel"] = "Canal premium";
+App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal";
+App::$strings["Help:"] = "Ayuda:";
+App::$strings["Not Found"] = "No encontrado";
App::$strings["Source channel not found."] = "No se ha encontrado el canal de origen.";
App::$strings["Focus (Hubzilla default)"] = "Focus (predefinido)";
App::$strings["Theme settings"] = "Ajustes del tema";
@@ -3085,8 +3097,6 @@ App::$strings["Left align page content"] = "Alinear a la izquierda el contenido
App::$strings["Set minimum opacity of nav bar - to hide it"] = "Ajustar la opacidad mínima de la barra de navegación - para ocultarla";
App::$strings["Set size of conversation author photo"] = "Ajustar el tamaño de la foto del autor de la conversación";
App::$strings["Set size of followup author photos"] = "Ajustar el tamaño de foto de los seguidores del autor";
-App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Buscar %1\$s (%2\$s)";
-App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname";
App::$strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores.";
App::$strings["Update Error at %s"] = "Error de actualización en %s";
App::$strings["Create an account to access services and applications within the Hubzilla"] = "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla";
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index a25ed93bc..7551dfe87 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -252,7 +252,7 @@ header #banner #logo-text {
display: block;
position: fixed;
top: 51px;
- width: 100%;
+ left: 0px;
max-height: 50%;
background: $comment_item_colour;
padding: 20px;
diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl
index 15ddd7f71..19c2b42d5 100755
--- a/view/tpl/settings.tpl
+++ b/view/tpl/settings.tpl
@@ -84,6 +84,10 @@
{{include file="field_checkbox.tpl" field=$blocktags}}
{{include file="field_input.tpl" field=$expire}}
</div>
+ {{if $permcat_enable}}
+ {{include file="field_select.tpl" field=$defpermcat}}
+ {{/if}}
+
{{if $sec_addon}}
{{$sec_addon}}
{{/if}}