';
+ }
+
+
+
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
Binary files /dev/null and b/doc/context/es-es/admin/plugins/assets/addon_repo_gui_1.png 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 @@
+
+
General
+
Esta página gestiona qué plugins (también llamados addons o complementos) están instalados.
+
Gestión de los repositorios
+
Si su servidor web tiene los permisos de escritura necesarios, verá un botón etiquetado como Gestión de repositorios,
+ que abre un panel de control para administrar qué repositorios de plugins están instalados. Estos repositorios están
+ almacenados en extend/addon/[nombre del repositorio]/. El repositorio de plugins oficial de Hubzilla
+ se puede añadir escribiendo la URL del repositorio
+ https://github.com/redmatrix/hubzilla-addons.git
+ y eligiendo un nombre para el repositorio como oficial. Debería ver este repositorio en una lista parecida
+ a esta:
+
+
+
\ 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 @@
+
+
General
+
+ Al registar cuenta en Hubzilla, también ha creado un perfil y un canal.
+
+
Cuenta
+
+ Tiene una cuenta. Esta consta de su correo electrónico y su contraseña. Mediante su cuenta, accede a su
+ perfil y su canal. 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.
+
+
Perfil
+
+ 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
+ muchos más perfiles. 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.Piense en su perfil como la información básica
+ básica que acerca de usted mismo muestra a otra gente,
+
+
Canal
+
+ Durante el registro, creó su primer canal. 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 segundo canal 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 perfiles...) 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. :) Piense en un canal como en diferentes espacios dedicados a diferentes temas en los que puede hablar con diferentes
+ personas.
+
+
\ 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 @@
+
+
General
+
+ Al registar cuenta en Hubzilla, también ha creado un perfil y un canal.
+
+
Cuenta
+
+ Tiene una cuenta. Esta consta de su correo electrónico y su contraseña. Mediante su cuenta, accede a su
+ perfil y su canal. 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.
+
+
Perfil
+
+ 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
+ muchos más perfiles. 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.Piense en su perfil como la información básica
+ básica que acerca de usted mismo muestra a otra gente,
+
+
Canal
+
+ Durante el registro, creó su primer canal. 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 segundo canal 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 perfiles...) 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. :) Piense en un canal como en diferentes espacios dedicados a diferentes temas en los que puede hablar con diferentes
+ personas.
+
+
\ 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 @@
+
+
General
+
+ Al registar cuenta en Hubzilla, también ha creado un perfil y un canal.
+
+
Cuenta
+
+ Tiene una cuenta. Esta consta de su correo electrónico y su contraseña. Mediante su cuenta, accede a su
+ perfil y su canal. 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.
+
+
Perfil
+
+ 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
+ muchos más perfiles. 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.Piense en su perfil como la información básica
+ básica que acerca de usted mismo muestra a otra gente,
+
+
Canal
+
+ Durante el registro, creó su primer canal. 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 segundo canal 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 perfiles...) 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. :) Piense en un canal como en diferentes espacios dedicados a diferentes temas en los que puede hablar con diferentes
+ personas.
+
+
\ 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 @@
+
+ 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.).
+
+
Crear un token
+
+ 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.
+
+
Compartir un token
+
+ 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.
+
+ Ejemplo: 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.
+
+
\ 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 @@
+
+
General
+
Puede crear sitios web modulares, con identidad propia, compuestos de elementos compartibles.
+
Páginas
+
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 asociada, y su contenido se construye a partir de una colección de bloques.
Las herramientas de portabilidad de sitios web le permiten importar y exportar múltiples elementos de páginas web (páginas, plantillas, bloques). Puede importar tanto de un fichero zip como de una carpeta de ficheros existente en la nube. Puede exportar 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. Leer más...
+
\ 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 .= '' . "\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(''),
+ 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(''),
+ 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 \n"
"Language-Team: LANGUAGE \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
-msgid "This connection's primary address is"
+#: ../../Zotlabs/Module/Connedit.php:822
+msgid "Permission role"
msgstr ""
-#: ../../Zotlabs/Module/Connedit.php:825
-msgid "Available locations:"
+#: ../../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:830
+msgid "Available locations:"
+msgstr ""
+
+#: ../../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 privacy settings, which have higher priority than "
"individual settings. You can not 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 privacy settings, 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,6 +6349,446 @@ msgstr ""
msgid "Remove this account including all its channels"
msgstr ""
+#: ../../Zotlabs/Module/Settings/Tokens.php:31
+#, php-format
+msgid "This channel is limited to %d tokens"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:37
+msgid "Name and Password are required."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:77
+msgid "Token saved."
+msgstr ""
+
+#: ../../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 ""
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:115
+msgid ""
+"You may also provide dropbox style access links to friends and "
+"associates by adding the Login Password to any specific site URL as shown. "
+"Examples:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:658
+msgid "Guest Access Tokens"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:157
+msgid "Login Name"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:158
+msgid "Login Password"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Tokens.php:159
+msgid "Expires (yyyy-mm-dd)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Featured.php:20
+msgid "Affinity Slider settings updated."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Featured.php:34
+msgid "No feature settings configured"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Featured.php:41
+msgid "Default maximum affinity level"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Featured.php:46
+msgid "Default minimum affinity level"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Featured.php:50
+msgid "Affinity Slider Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Featured.php:60
+msgid "Feature/Addon Settings"
+msgstr ""
+
+#: ../../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
+#: ../../extend/addon/addon/piwik/piwik.php:116
+#: ../../extend/addon/addon/twitter/twitter.php:766
+#: ../../extend/addon/addon/xmpp/xmpp.php:102
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:82
+msgid "Settings updated."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:309
+msgid "Nobody except yourself"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:310
+msgid "Only those you specifically allow"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:311
+msgid "Approved connections"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:312
+msgid "Any connections"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:313
+msgid "Anybody on this website"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:314
+msgid "Anybody in this network"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:315
+msgid "Anybody authenticated"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:316
+msgid "Anybody on the internet"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:392
+msgid "Publish your default profile in the network directory"
+msgstr ""
+
+#: ../../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:406
+msgid "Your channel address is"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:409
+msgid "Your files/photos are accessible via WebDAV at"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:458
+msgid "Channel Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:465
+msgid "Basic Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:466
+#: ../../include/channel.php:1255
+msgid "Full Name:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:468
+msgid "Your Timezone:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:469
+msgid "Default Post Location:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:469
+msgid "Geographical location to display on your posts"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:470
+msgid "Use Browser Location:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:472
+msgid "Adult Content"
+msgstr ""
+
+#: ../../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:474
+msgid "Security and Privacy Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:477
+msgid "Your permissions are already configured. Click to view/adjust"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:479
+msgid "Hide my online presence"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:479
+msgid "Prevents displaying in your profile that you are online"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:481
+msgid "Simple Privacy Settings:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:482
+msgid ""
+"Very Public - extremely permissive (should be used with caution)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:483
+msgid ""
+"Typical - default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:484
+msgid "Private - default private, never open or public"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:485
+msgid "Blocked - default blocked to/from everybody"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:487
+msgid "Allow others to tag your posts"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:487
+msgid ""
+"Often used by the community to retro-actively flag inappropriate content"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:489
+msgid "Channel Permission Limits"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:491
+msgid "Expire other channel content after this many days"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:491
+msgid "0 or blank to use the website limit."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:491
+#, php-format
+msgid "This website expires after %d days."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:491
+msgid "This website does not expire imported content."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:491
+msgid "The website limit takes precedence if lower than your limit."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:492
+msgid "Maximum Friend Requests/Day:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:492
+msgid "May reduce spam activity"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:493
+msgid "Default Access Control List (ACL)"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:495
+msgid "Use my default audience setting for the type of object published"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:502
+msgid "Channel permissions category:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:508
+msgid "Maximum private messages per day from unknown people:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:508
+msgid "Useful to reduce spamming"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:511
+msgid "Notification Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:512
+msgid "By default post a status message when:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:513
+msgid "accepting a friend request"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:514
+msgid "joining a forum/community"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:515
+msgid "making an interesting profile change"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:516
+msgid "Send a notification email when:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:517
+msgid "You receive a connection request"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:518
+msgid "Your connections are confirmed"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:519
+msgid "Someone writes on your profile wall"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:520
+msgid "Someone writes a followup comment"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:521
+msgid "You receive a private message"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:522
+msgid "You receive a friend suggestion"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:523
+msgid "You are tagged in a post"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:524
+msgid "You are poked/prodded/etc. in a post"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:526
+msgid "Someone likes your post/comment"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:529
+msgid "Show visual notifications including:"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:531
+msgid "Unseen grid activity"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:532
+msgid "Unseen channel activity"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:533
+msgid "Unseen private messages"
+msgstr ""
+
+#: ../../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:534
+msgid "Upcoming events"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:535
+msgid "Events today"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:536
+msgid "Upcoming birthdays"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:536
+msgid "Not available in all themes"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:537
+msgid "System (personal) notifications"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:538
+msgid "System info messages"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:539
+msgid "System critical alerts"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:540
+msgid "New connections"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:541
+msgid "System Registrations"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:542
+msgid ""
+"Also show new wall posts, private messages and connections under Notices"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:544
+msgid "Notify me of events this many days in advance"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:544
+msgid "Must be greater than 0"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:550
+msgid "Advanced Account/Page Type Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:551
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:553
+msgid "Miscellaneous Settings"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:554
+msgid "Default photo upload folder"
+msgstr ""
+
+#: ../../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:555
+msgid "Default file upload folder"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:557
+msgid "Personal menu to display in your channel pages"
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:559
+msgid "Remove this channel."
+msgstr ""
+
+#: ../../Zotlabs/Module/Settings/Channel.php:560
+msgid "Firefox Share $Projectname provider"
+msgstr ""
+
+#: ../../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 ""
@@ -6439,7 +6865,7 @@ msgid "Manual conversation updates"
msgstr ""
#: ../../Zotlabs/Module/Settings/Display.php:209
-msgid "Default is automatic, which may increase screen jumping"
+msgid "Default is on, turning this off may increase screen jumping"
msgstr ""
#: ../../Zotlabs/Module/Settings/Display.php:210
@@ -6476,444 +6902,22 @@ msgstr ""
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"
+#: ../../Zotlabs/Module/Settings/Permcats.php:37
+msgid "Permission category saved."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Tokens.php:37
-msgid "Name and Password are required."
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:77
-msgid "Token saved."
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:113
+#: ../../Zotlabs/Module/Settings/Permcats.php:63
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."
+"Use this form to create permission rules for various classes of people or "
+"connections."
msgstr ""
-#: ../../Zotlabs/Module/Settings/Tokens.php:115
-msgid ""
-"You may also provide dropbox style access links to friends and "
-"associates by adding the Login Password to any specific site URL as shown. "
-"Examples:"
+#: ../../Zotlabs/Module/Settings/Permcats.php:96 ../../include/widgets.php:666
+msgid "Permission Categories"
msgstr ""
-#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:658
-msgid "Guest Access Tokens"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:157
-msgid "Login Name"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:158
-msgid "Login Password"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Tokens.php:159
-msgid "Expires (yyyy-mm-dd)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Featured.php:20
-msgid "Affinity Slider settings updated."
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Featured.php:34
-msgid "No feature settings configured"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Featured.php:41
-msgid "Default maximum affinity level"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Featured.php:46
-msgid "Default minimum affinity level"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Featured.php:50
-msgid "Affinity Slider Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Featured.php:60
-msgid "Feature/Addon Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:246
-#: ../../extend/addon/addon/logrot/logrot.php:54
-#: ../../extend/addon/addon/msgfooter/msgfooter.php:54
-#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:184
-#: ../../extend/addon/addon/piwik/piwik.php:116
-#: ../../extend/addon/addon/twitter/twitter.php:766
-#: ../../extend/addon/addon/xmpp/xmpp.php:102
-#: ../../extend/addon/addon/rendezvous/rendezvous.php:82
-msgid "Settings updated."
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:307
-msgid "Nobody except yourself"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:308
-msgid "Only those you specifically allow"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:309
-msgid "Approved connections"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:310
-msgid "Any connections"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:311
-msgid "Anybody on this website"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:312
-msgid "Anybody in this network"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:313
-msgid "Anybody authenticated"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:314
-msgid "Anybody on the internet"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:390
-msgid "Publish your default profile in the network directory"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:395
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:404
-msgid "Your channel address is"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:407
-msgid "Your files/photos are accessible via WebDAV at"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:456
-msgid "Channel Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:463
-msgid "Basic Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:464
-#: ../../include/channel.php:1250
-msgid "Full Name:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:466
-msgid "Your Timezone:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:467
-msgid "Default Post Location:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:467
-msgid "Geographical location to display on your posts"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:468
-msgid "Use Browser Location:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:470
-msgid "Adult Content"
-msgstr ""
-
-#: ../../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 ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:472
-msgid "Security and Privacy Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:475
-msgid "Your permissions are already configured. Click to view/adjust"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:477
-msgid "Hide my online presence"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:477
-msgid "Prevents displaying in your profile that you are online"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:479
-msgid "Simple Privacy Settings:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:480
-msgid ""
-"Very Public - extremely permissive (should be used with caution)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:481
-msgid ""
-"Typical - default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:482
-msgid "Private - default private, never open or public"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:483
-msgid "Blocked - default blocked to/from everybody"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:485
-msgid "Allow others to tag your posts"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:485
-msgid ""
-"Often used by the community to retro-actively flag inappropriate content"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:487
-msgid "Channel Permission Limits"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:489
-msgid "Expire other channel content after this many days"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:489
-msgid "0 or blank to use the website limit."
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:489
-#, php-format
-msgid "This website expires after %d days."
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:489
-msgid "This website does not expire imported content."
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:489
-msgid "The website limit takes precedence if lower than your limit."
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:490
-msgid "Maximum Friend Requests/Day:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:490
-msgid "May reduce spam activity"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:491
-msgid "Default Access Control List (ACL)"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:493
-msgid "Use my default audience setting for the type of object published"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:500
-msgid "Channel permissions category:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:506
-msgid "Maximum private messages per day from unknown people:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:506
-msgid "Useful to reduce spamming"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:509
-msgid "Notification Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:510
-msgid "By default post a status message when:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:511
-msgid "accepting a friend request"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:512
-msgid "joining a forum/community"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:513
-msgid "making an interesting profile change"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:514
-msgid "Send a notification email when:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:515
-msgid "You receive a connection request"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:516
-msgid "Your connections are confirmed"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:517
-msgid "Someone writes on your profile wall"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:518
-msgid "Someone writes a followup comment"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:519
-msgid "You receive a private message"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:520
-msgid "You receive a friend suggestion"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:521
-msgid "You are tagged in a post"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:522
-msgid "You are poked/prodded/etc. in a post"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:524
-msgid "Someone likes your post/comment"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:527
-msgid "Show visual notifications including:"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:529
-msgid "Unseen grid activity"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:530
-msgid "Unseen channel activity"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:531
-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:538
-#: ../../extend/addon/addon/jappixmini/jappixmini.php:343
-msgid "Recommended"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:532
-msgid "Upcoming events"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:533
-msgid "Events today"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:534
-msgid "Upcoming birthdays"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:534
-msgid "Not available in all themes"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:535
-msgid "System (personal) notifications"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:536
-msgid "System info messages"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:537
-msgid "System critical alerts"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:538
-msgid "New connections"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:539
-msgid "System Registrations"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:540
-msgid ""
-"Also show new wall posts, private messages and connections under Notices"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:542
-msgid "Notify me of events this many days in advance"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:542
-msgid "Must be greater than 0"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:548
-msgid "Advanced Account/Page Type Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:549
-msgid "Change the behaviour of this account for special situations"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:551
-msgid "Miscellaneous Settings"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:552
-msgid "Default photo upload folder"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:552
-#: ../../Zotlabs/Module/Settings/Channel.php:553
-msgid "%Y - current year, %m - current month"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:553
-msgid "Default file upload folder"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:555
-msgid "Personal menu to display in your channel pages"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:557
-msgid "Remove this channel."
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:558
-msgid "Firefox Share $Projectname provider"
-msgstr ""
-
-#: ../../Zotlabs/Module/Settings/Channel.php:559
-msgid "Start calendar week on monday"
+#: ../../Zotlabs/Module/Settings/Permcats.php:104
+msgid "Permission Name"
msgstr ""
#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98
@@ -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"
-msgstr ""
-
-#: ../../include/nav.php:93
-msgid "Edit your profile"
-msgstr ""
-
-#: ../../include/nav.php:95
-msgid "Your photos"
-msgstr ""
-
-#: ../../include/nav.php:96
-msgid "Your files"
-msgstr ""
-
-#: ../../include/nav.php:99
-msgid "Your chatrooms"
-msgstr ""
-
-#: ../../include/nav.php:105
-msgid "Your bookmarks"
-msgstr ""
-
-#: ../../include/nav.php:109
-msgid "Your webpages"
-msgstr ""
-
-#: ../../include/nav.php:111
-msgid "Your wikis"
-msgstr ""
-
-#: ../../include/nav.php:116
-msgid "Sign in"
-msgstr ""
-
-#: ../../include/nav.php:133
msgid "Remote authentication"
msgstr ""
-#: ../../include/nav.php:133
+#: ../../include/nav.php:88
msgid "Click to authenticate to your home hub"
msgstr ""
-#: ../../include/nav.php:145
+#: ../../include/nav.php:99 ../../include/nav.php:140 ../../boot.php:1731
+msgid "Logout"
+msgstr ""
+
+#: ../../include/nav.php:99 ../../include/nav.php:140
+msgid "End this session"
+msgstr ""
+
+#: ../../include/nav.php:103
+msgid "Your profile page"
+msgstr ""
+
+#: ../../include/nav.php:105
+msgid "Manage/Edit profiles"
+msgstr ""
+
+#: ../../include/nav.php:107
+msgid "Edit your profile"
+msgstr ""
+
+#: ../../include/nav.php:130
+msgid "Sign in"
+msgstr ""
+
+#: ../../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
-msgid "Mark all channel notifications seen"
-msgstr ""
-
-#: ../../include/nav.php:194
-msgid "Notices"
-msgstr ""
-
-#: ../../include/nav.php:194
-msgid "Notifications"
-msgstr ""
-
-#: ../../include/nav.php:195
-msgid "See all notifications"
-msgstr ""
-
-#: ../../include/nav.php:198
-msgid "Private mail"
-msgstr ""
-
#: ../../include/nav.php:199
-msgid "See all private messages"
+msgid "View your channel home"
msgstr ""
#: ../../include/nav.php:200
-msgid "Mark all private messages seen"
+msgid "Mark all channel notifications seen"
msgstr ""
#: ../../include/nav.php:206
-msgid "Event Calendar"
+msgid "Notices"
+msgstr ""
+
+#: ../../include/nav.php:206
+msgid "Notifications"
msgstr ""
#: ../../include/nav.php:207
-msgid "See all events"
+msgid "View all notifications"
msgstr ""
-#: ../../include/nav.php:208
-msgid "Mark all events seen"
+#: ../../include/nav.php:210
+msgid "Private mail"
msgstr ""
#: ../../include/nav.php:211
+msgid "View your private messages"
+msgstr ""
+
+#: ../../include/nav.php:212
+msgid "Mark all private messages seen"
+msgstr ""
+
+#: ../../include/nav.php:218
+msgid "Event Calendar"
+msgstr ""
+
+#: ../../include/nav.php:219
+msgid "View events"
+msgstr ""
+
+#: ../../include/nav.php:220
+msgid "Mark all events seen"
+msgstr ""
+
+#: ../../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 \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á, 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 %2$s"
msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s"
-#: ../../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 "
"%2$s"
msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s"
-#: ../../Zotlabs/Module/Uexport.php:65
+#: ../../Zotlabs/Module/Uexport.php:68
#, php-format
msgid ""
"These content files may be imported or restored by visiting extremely permissive (should be used with caution)"
-msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:478
-msgid ""
-"Typical - default public, privacy when desired (similar to social "
-"network permissions but with improved privacy)"
-msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:479
-msgid "Private - default private, never open or public"
-msgstr "Privado - por defecto, privado, nunca abierto o público"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:480
-msgid "Blocked - default blocked to/from everybody"
-msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:482
-msgid "Allow others to tag your posts"
-msgstr "Permitir a otros etiquetar sus publicaciones"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:482
-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
-msgid "Channel Permission Limits"
-msgstr "Límites de los permisos del canal"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:486
-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
-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
-#, 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
-msgid "This website does not expire imported content."
-msgstr "Este sitio web no caduca el contenido importado."
-
-#: ../../Zotlabs/Module/Settings/Channel.php:486
-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
-msgid "Maximum Friend Requests/Day:"
-msgstr "Máximo de solicitudes de amistad por día:"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:487
-msgid "May reduce spam activity"
-msgstr "Podría reducir la actividad de spam"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:488
-msgid "Default Access Control List (ACL)"
-msgstr "Lista de control de acceso (ACL) por defecto"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:490
-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
-msgid "Channel permissions category:"
-msgstr "Categoría de los permisos del canal:"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:503
-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
-msgid "Useful to reduce spamming"
-msgstr "Útil para reducir el envío de correo no deseado"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:506
-msgid "Notification Settings"
-msgstr "Configuración de las notificaciones"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:507
-msgid "By default post a status message when:"
-msgstr "Por defecto, enviar un mensaje de estado cuando:"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:508
-msgid "accepting a friend request"
-msgstr "Acepte una solicitud de amistad"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:509
-msgid "joining a forum/community"
-msgstr "al unirse a un foro o comunidad"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:510
-msgid "making an interesting profile change"
-msgstr "Realice un cambio interesante en su perfil"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:511
-msgid "Send a notification email when:"
-msgstr "Enviar una notificación por correo electrónico cuando:"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:512
-msgid "You receive a connection request"
-msgstr "Reciba una solicitud de conexión"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:513
-msgid "Your connections are confirmed"
-msgstr "Sus conexiones hayan sido confirmadas"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:514
-msgid "Someone writes on your profile wall"
-msgstr "Alguien escriba en la página de su perfil (\"muro\")"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:515
-msgid "Someone writes a followup comment"
-msgstr "Alguien escriba un comentario sobre sus publicaciones"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:516
-msgid "You receive a private message"
-msgstr "Reciba un mensaje privado"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:517
-msgid "You receive a friend suggestion"
-msgstr "Reciba una sugerencia de amistad"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:518
-msgid "You are tagged in a post"
-msgstr "Usted sea etiquetado en una publicación"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:519
-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
-msgid "Someone likes your post/comment"
-msgstr "Alguien muestre agrado por su entrada o comentario"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:524
-msgid "Show visual notifications including:"
-msgstr "Mostrar notificaciones visuales que incluyan:"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:526
-msgid "Unseen grid activity"
-msgstr "Nueva actividad en la red"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:527
-msgid "Unseen channel activity"
-msgstr "Actividad no vista en el canal"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:528
-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
-#: ../../extend/addon/addon/jappixmini/jappixmini.php:343
-msgid "Recommended"
-msgstr "Recomendado"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:529
-msgid "Upcoming events"
-msgstr "Próximos eventos"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:530
-msgid "Events today"
-msgstr "Eventos de hoy"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:531
-msgid "Upcoming birthdays"
-msgstr "Próximos cumpleaños"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:531
-msgid "Not available in all themes"
-msgstr "No disponible en todos los temas"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:532
-msgid "System (personal) notifications"
-msgstr "Notificaciones del sistema (personales)"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:533
-msgid "System info messages"
-msgstr "Mensajes de información del sistema"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:534
-msgid "System critical alerts"
-msgstr "Alertas críticas del sistema"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:535
-msgid "New connections"
-msgstr "Nuevas conexiones"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:536
-msgid "System Registrations"
-msgstr "Registros del sistema"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:537
-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
-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
-msgid "Must be greater than 0"
-msgstr "Debe ser mayor que 0"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:541
-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
-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
-msgid "Miscellaneous Settings"
-msgstr "Ajustes diversos"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:545
-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
-msgid "%Y - current year, %m - current month"
-msgstr "%Y - año en curso, %m - mes actual"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:546
-msgid "Default file upload folder"
-msgstr "Carpeta por defecto de los ficheros subidos"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:548
-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
-msgid "Remove this channel."
-msgstr "Eliminar este canal."
-
-#: ../../Zotlabs/Module/Settings/Channel.php:551
-msgid "Firefox Share $Projectname provider"
-msgstr "Servicio de compartición de Firefox: proveedor $Projectname"
-
-#: ../../Zotlabs/Module/Settings/Channel.php:552
-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"
@@ -6838,14 +6490,6 @@ msgstr "Pulsar para expandir el contenido que exceda de esta altura"
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"
@@ -6873,7 +6517,7 @@ msgid ""
"Examples:"
msgstr "También puede proporcionar, con el estilo dropbox, 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
+#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:658
msgid "Guest Access Tokens"
msgstr "Tokens de acceso para invitados"
@@ -6889,6 +6533,403 @@ msgstr "Contraseña de inicio de sesión"
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
+#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:184
+#: ../../extend/addon/addon/piwik/piwik.php:116
+#: ../../extend/addon/addon/twitter/twitter.php:766
+#: ../../extend/addon/addon/xmpp/xmpp.php:102
+#: ../../extend/addon/addon/rendezvous/rendezvous.php:82
+msgid "Settings updated."
+msgstr "Ajustes actualizados."
+
+#: ../../Zotlabs/Module/Settings/Channel.php:307
+msgid "Nobody except yourself"
+msgstr "Nadie excepto usted"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:308
+msgid "Only those you specifically allow"
+msgstr "Solo aquellos a los que usted permita explícitamente"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:309
+msgid "Approved connections"
+msgstr "Conexiones aprobadas"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:310
+msgid "Any connections"
+msgstr "Cualquier conexión"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:311
+msgid "Anybody on this website"
+msgstr "Cualquiera en este sitio web"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:312
+msgid "Anybody in this network"
+msgstr "Cualquiera en esta red"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:313
+msgid "Anybody authenticated"
+msgstr "Cualquiera que esté autenticado"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:314
+msgid "Anybody on the internet"
+msgstr "Cualquiera en internet"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:390
+msgid "Publish your default profile in the network directory"
+msgstr "Publicar su perfil principal en el directorio de la red"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:395
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:404
+msgid "Your channel address is"
+msgstr "Su dirección de canal es"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:407
+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:456
+msgid "Channel Settings"
+msgstr "Ajustes del canal"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:463
+msgid "Basic Settings"
+msgstr "Configuración básica"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:464
+#: ../../include/channel.php:1250
+msgid "Full Name:"
+msgstr "Nombre completo:"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:466
+msgid "Your Timezone:"
+msgstr "Su huso horario:"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:467
+msgid "Default Post Location:"
+msgstr "Localización geográfica predeterminada para sus publicaciones:"
+
+#: ../../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:468
+msgid "Use Browser Location:"
+msgstr "Usar la localización geográfica del navegador:"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:470
+msgid "Adult Content"
+msgstr "Contenido solo para adultos"
+
+#: ../../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:472
+msgid "Security and Privacy Settings"
+msgstr "Configuración de seguridad y privacidad"
+
+#: ../../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:477
+msgid "Hide my online presence"
+msgstr "Ocultar mi presencia en línea"
+
+#: ../../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:479
+msgid "Simple Privacy Settings:"
+msgstr "Configuración de privacidad sencilla:"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:480
+msgid ""
+"Very Public - extremely permissive (should be used with caution)"
+msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:481
+msgid ""
+"Typical - default public, privacy when desired (similar to social "
+"network permissions but with improved privacy)"
+msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:482
+msgid "Private - default private, never open or public"
+msgstr "Privado - por defecto, privado, nunca abierto o público"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:483
+msgid "Blocked - default blocked to/from everybody"
+msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera"
+
+#: ../../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: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:487
+msgid "Channel Permission Limits"
+msgstr "Límites de los permisos del canal"
+
+#: ../../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: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: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:489
+msgid "This website does not expire imported content."
+msgstr "Este sitio web no caduca el contenido importado."
+
+#: ../../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:490
+msgid "Maximum Friend Requests/Day:"
+msgstr "Máximo de solicitudes de amistad por día:"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:490
+msgid "May reduce spam activity"
+msgstr "Podría reducir la actividad de spam"
+
+#: ../../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: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:500
+msgid "Channel permissions category:"
+msgstr "Categoría de los permisos del canal:"
+
+#: ../../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:506
+msgid "Useful to reduce spamming"
+msgstr "Útil para reducir el envío de correo no deseado"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:509
+msgid "Notification Settings"
+msgstr "Configuración de las notificaciones"
+
+#: ../../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:511
+msgid "accepting a friend request"
+msgstr "Acepte una solicitud de amistad"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:512
+msgid "joining a forum/community"
+msgstr "al unirse a un foro o comunidad"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:513
+msgid "making an interesting profile change"
+msgstr "Realice un cambio interesante en su perfil"
+
+#: ../../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:515
+msgid "You receive a connection request"
+msgstr "Reciba una solicitud de conexión"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:516
+msgid "Your connections are confirmed"
+msgstr "Sus conexiones hayan sido confirmadas"
+
+#: ../../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:518
+msgid "Someone writes a followup comment"
+msgstr "Alguien escriba un comentario sobre sus publicaciones"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:519
+msgid "You receive a private message"
+msgstr "Reciba un mensaje privado"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:520
+msgid "You receive a friend suggestion"
+msgstr "Reciba una sugerencia de amistad"
+
+#: ../../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: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:524
+msgid "Someone likes your post/comment"
+msgstr "Alguien muestre agrado por su entrada o comentario"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:527
+msgid "Show visual notifications including:"
+msgstr "Mostrar notificaciones visuales que incluyan:"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:529
+msgid "Unseen grid activity"
+msgstr "Nueva actividad en la red"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:530
+msgid "Unseen channel activity"
+msgstr "Actividad no vista en el canal"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:531
+msgid "Unseen private messages"
+msgstr "Mensajes privados no leídos"
+
+#: ../../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:532
+msgid "Upcoming events"
+msgstr "Próximos eventos"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:533
+msgid "Events today"
+msgstr "Eventos de hoy"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:534
+msgid "Upcoming birthdays"
+msgstr "Próximos cumpleaños"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:534
+msgid "Not available in all themes"
+msgstr "No disponible en todos los temas"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:535
+msgid "System (personal) notifications"
+msgstr "Notificaciones del sistema (personales)"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:536
+msgid "System info messages"
+msgstr "Mensajes de información del sistema"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:537
+msgid "System critical alerts"
+msgstr "Alertas críticas del sistema"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:538
+msgid "New connections"
+msgstr "Nuevas conexiones"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:539
+msgid "System Registrations"
+msgstr "Registros del sistema"
+
+#: ../../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: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:542
+msgid "Must be greater than 0"
+msgstr "Debe ser mayor que 0"
+
+#: ../../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: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:551
+msgid "Miscellaneous Settings"
+msgstr "Ajustes diversos"
+
+#: ../../Zotlabs/Module/Settings/Channel.php:552
+msgid "Default photo upload folder"
+msgstr "Carpeta por defecto de las fotos subidas"
+
+#: ../../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:553
+msgid "Default file upload folder"
+msgstr "Carpeta por defecto de los ficheros subidos"
+
+#: ../../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:557
+msgid "Remove this channel."
+msgstr "Eliminar este canal."
+
+#: ../../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:559
+msgid "Start calendar week on monday"
+msgstr "Comenzar el calendario semanal por el lunes"
+
#: ../../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.