Merge https://github.com/redmatrix/redmatrix into pending_merge
Conflicts: include/zot.php install/schema_mysql.sql install/schema_postgres.sql install/update.php mod/zfinger.php
This commit is contained in:
commit
ea37882b95
2
boot.php
2
boot.php
@ -50,7 +50,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' );
|
|||||||
define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'H');
|
define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'H');
|
||||||
define ( 'ZOT_REVISION', 1 );
|
define ( 'ZOT_REVISION', 1 );
|
||||||
|
|
||||||
define ( 'DB_UPDATE_VERSION', 1157 );
|
define ( 'DB_UPDATE_VERSION', 1158 );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Constant with a HTML line break.
|
* @brief Constant with a HTML line break.
|
||||||
|
@ -2739,6 +2739,7 @@ function import_site($arr, $pubkey) {
|
|||||||
$sellpage = htmlspecialchars($arr['sellpage'],ENT_COMPAT,'UTF-8',false);
|
$sellpage = htmlspecialchars($arr['sellpage'],ENT_COMPAT,'UTF-8',false);
|
||||||
$site_location = htmlspecialchars($arr['location'],ENT_COMPAT,'UTF-8',false);
|
$site_location = htmlspecialchars($arr['location'],ENT_COMPAT,'UTF-8',false);
|
||||||
$site_realm = htmlspecialchars($arr['realm'],ENT_COMPAT,'UTF-8',false);
|
$site_realm = htmlspecialchars($arr['realm'],ENT_COMPAT,'UTF-8',false);
|
||||||
|
$site_project = htmlspecialchars($arr['project'],ENT_COMPAT,'UTF-8',false);
|
||||||
|
|
||||||
// You can have one and only one primary directory per realm.
|
// You can have one and only one primary directory per realm.
|
||||||
// Downgrade any others claiming to be primary. As they have
|
// Downgrade any others claiming to be primary. As they have
|
||||||
@ -2757,13 +2758,15 @@ function import_site($arr, $pubkey) {
|
|||||||
|| ($siterecord['site_sellpage'] != $sellpage)
|
|| ($siterecord['site_sellpage'] != $sellpage)
|
||||||
|| ($siterecord['site_location'] != $site_location)
|
|| ($siterecord['site_location'] != $site_location)
|
||||||
|| ($siterecord['site_register'] != $register_policy)
|
|| ($siterecord['site_register'] != $register_policy)
|
||||||
|
|| ($siterecord['site_project'] != $site_project)
|
||||||
|| ($siterecord['site_realm'] != $site_realm)) {
|
|| ($siterecord['site_realm'] != $site_realm)) {
|
||||||
$update = true;
|
$update = true;
|
||||||
|
|
||||||
// logger('import_site: input: ' . print_r($arr,true));
|
// logger('import_site: input: ' . print_r($arr,true));
|
||||||
// logger('import_site: stored: ' . print_r($siterecord,true));
|
// logger('import_site: stored: ' . print_r($siterecord,true));
|
||||||
|
|
||||||
$r = q("update site set site_dead = 0, site_location = '%s', site_flags = %d, site_access = %d, site_directory = '%s', site_register = %d, site_update = '%s', site_sellpage = '%s', site_realm = '%s', site_type = %d
|
|
||||||
|
$r = q("update site set site_dead = 0, site_location = '%s', site_flags = %d, site_access = %d, site_directory = '%s', site_register = %d, site_update = '%s', site_sellpage = '%s', site_realm = '%s', site_type = %d, site_project = '%s'
|
||||||
where site_url = '%s'",
|
where site_url = '%s'",
|
||||||
dbesc($site_location),
|
dbesc($site_location),
|
||||||
intval($site_directory),
|
intval($site_directory),
|
||||||
@ -2774,6 +2777,7 @@ function import_site($arr, $pubkey) {
|
|||||||
dbesc($sellpage),
|
dbesc($sellpage),
|
||||||
dbesc($site_realm),
|
dbesc($site_realm),
|
||||||
intval(SITE_TYPE_ZOT),
|
intval(SITE_TYPE_ZOT),
|
||||||
|
dbesc($site_project),
|
||||||
dbesc($url)
|
dbesc($url)
|
||||||
);
|
);
|
||||||
if(! $r) {
|
if(! $r) {
|
||||||
@ -2790,8 +2794,9 @@ function import_site($arr, $pubkey) {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$update = true;
|
$update = true;
|
||||||
$r = q("insert into site ( site_location, site_url, site_access, site_flags, site_update, site_directory, site_register, site_sellpage, site_realm, site_type )
|
|
||||||
values ( '%s', '%s', %d, %d, '%s', '%s', %d, '%s', '%s', %d )",
|
$r = q("insert into site ( site_location, site_url, site_access, site_flags, site_update, site_directory, site_register, site_sellpage, site_realm, site_type, site_project )
|
||||||
|
values ( '%s', '%s', %d, %d, '%s', '%s', %d, '%s', '%s', %d, '%s' )",
|
||||||
dbesc($site_location),
|
dbesc($site_location),
|
||||||
dbesc($url),
|
dbesc($url),
|
||||||
intval($access_policy),
|
intval($access_policy),
|
||||||
@ -2801,7 +2806,8 @@ function import_site($arr, $pubkey) {
|
|||||||
intval($register_policy),
|
intval($register_policy),
|
||||||
dbesc($sellpage),
|
dbesc($sellpage),
|
||||||
dbesc($site_realm),
|
dbesc($site_realm),
|
||||||
intval(SITE_TYPE_ZOT)
|
intval(SITE_TYPE_ZOT),
|
||||||
|
dbesc($site_project)
|
||||||
);
|
);
|
||||||
if(! $r) {
|
if(! $r) {
|
||||||
logger('import_site: record create failed. ' . print_r($arr,true));
|
logger('import_site: record create failed. ' . print_r($arr,true));
|
||||||
@ -3810,6 +3816,7 @@ function zotinfo($arr) {
|
|||||||
$ret['site']['sellpage'] = get_config('system','sellpage');
|
$ret['site']['sellpage'] = get_config('system','sellpage');
|
||||||
$ret['site']['location'] = get_config('system','site_location');
|
$ret['site']['location'] = get_config('system','site_location');
|
||||||
$ret['site']['realm'] = get_directory_realm();
|
$ret['site']['realm'] = get_directory_realm();
|
||||||
|
$ret['site']['project'] = PLATFORM_NAME;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1134,6 +1134,7 @@ CREATE TABLE IF NOT EXISTS `site` (
|
|||||||
`site_valid` smallint NOT NULL DEFAULT '0',
|
`site_valid` smallint NOT NULL DEFAULT '0',
|
||||||
`site_dead` smallint NOT NULL DEFAULT '0',
|
`site_dead` smallint NOT NULL DEFAULT '0',
|
||||||
`site_type` smallint NOT NULL DEFAULT '0',
|
`site_type` smallint NOT NULL DEFAULT '0',
|
||||||
|
`site_project` char(255) NOT NULL DEFAULT '',
|
||||||
PRIMARY KEY (`site_url`),
|
PRIMARY KEY (`site_url`),
|
||||||
KEY `site_flags` (`site_flags`),
|
KEY `site_flags` (`site_flags`),
|
||||||
KEY `site_update` (`site_update`),
|
KEY `site_update` (`site_update`),
|
||||||
@ -1145,7 +1146,8 @@ CREATE TABLE IF NOT EXISTS `site` (
|
|||||||
KEY `site_realm` (`site_realm`),
|
KEY `site_realm` (`site_realm`),
|
||||||
KEY `site_valid` (`site_valid`),
|
KEY `site_valid` (`site_valid`),
|
||||||
KEY `site_dead` (`site_dead`),
|
KEY `site_dead` (`site_dead`),
|
||||||
KEY `site_type` (`site_type`)
|
KEY `site_type` (`site_type`),
|
||||||
|
KEY `site_project` (`site_project`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `source` (
|
CREATE TABLE IF NOT EXISTS `source` (
|
||||||
|
@ -1125,6 +1125,7 @@ CREATE TABLE "site" (
|
|||||||
"site_valid" smallint NOT NULL DEFAULT '0',
|
"site_valid" smallint NOT NULL DEFAULT '0',
|
||||||
"site_dead" smallint NOT NULL DEFAULT '0',
|
"site_dead" smallint NOT NULL DEFAULT '0',
|
||||||
"site_type" smallint NOT NULL DEFAULT '0',
|
"site_type" smallint NOT NULL DEFAULT '0',
|
||||||
|
"site_project" text NOT NULL DEFAULT '',
|
||||||
PRIMARY KEY ("site_url")
|
PRIMARY KEY ("site_url")
|
||||||
);
|
);
|
||||||
create index "site_flags" on site ("site_flags");
|
create index "site_flags" on site ("site_flags");
|
||||||
@ -1137,6 +1138,7 @@ create index "site_realm" on site ("site_realm");
|
|||||||
create index "site_valid" on site ("site_valid");
|
create index "site_valid" on site ("site_valid");
|
||||||
create index "site_dead" on site ("site_dead");
|
create index "site_dead" on site ("site_dead");
|
||||||
create index "site_type" on site ("site_type");
|
create index "site_type" on site ("site_type");
|
||||||
|
create index "site_project" on site ("site_project");
|
||||||
|
|
||||||
CREATE TABLE "source" (
|
CREATE TABLE "source" (
|
||||||
"src_id" serial NOT NULL,
|
"src_id" serial NOT NULL,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
define( 'UPDATE_VERSION' , 1157 );
|
define( 'UPDATE_VERSION' , 1158 );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -1907,3 +1907,13 @@ function update_r1156() {
|
|||||||
return UPDATE_FAILED;
|
return UPDATE_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function update_r1157() {
|
||||||
|
$r1 = q("alter table site add site_project char(255) not null default '' ");
|
||||||
|
$r2 = q("create index site_project on site ( site_project ) ");
|
||||||
|
if($r1 && $r2)
|
||||||
|
return UPDATE_SUCCESS;
|
||||||
|
return UPDATE_FAILED;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,5 +9,4 @@ function zfinger_init(&$a) {
|
|||||||
$x = zotinfo($_REQUEST);
|
$x = zotinfo($_REQUEST);
|
||||||
json_return_and_die($x);
|
json_return_and_die($x);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
2015-10-17.1188
|
2015-10-19.1190
|
||||||
|
@ -13,8 +13,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Redmatrix\n"
|
"Project-Id-Version: Redmatrix\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2015-10-02 00:04-0700\n"
|
"POT-Creation-Date: 2015-10-17 16:47-0700\n"
|
||||||
"PO-Revision-Date: 2015-10-04 08:23+0000\n"
|
"PO-Revision-Date: 2015-10-18 15:17+0000\n"
|
||||||
"Last-Translator: Manuel Jiménez Friaza <mjfriaza@openmailbox.org>\n"
|
"Last-Translator: Manuel Jiménez Friaza <mjfriaza@openmailbox.org>\n"
|
||||||
"Language-Team: Spanish (http://www.transifex.com/Friendica/red-matrix/language/es/)\n"
|
"Language-Team: Spanish (http://www.transifex.com/Friendica/red-matrix/language/es/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -422,7 +422,7 @@ msgstr "Creado"
|
|||||||
msgid "Edited"
|
msgid "Edited"
|
||||||
msgstr "Editado"
|
msgstr "Editado"
|
||||||
|
|
||||||
#: ../../include/api.php:1234
|
#: ../../include/api.php:1267
|
||||||
msgid "Public Timeline"
|
msgid "Public Timeline"
|
||||||
msgstr "Cronología pública"
|
msgstr "Cronología pública"
|
||||||
|
|
||||||
@ -660,7 +660,7 @@ msgstr "Guardar"
|
|||||||
|
|
||||||
#: ../../include/text.php:990
|
#: ../../include/text.php:990
|
||||||
msgid "poke"
|
msgid "poke"
|
||||||
msgstr "dar un toque"
|
msgstr "un toque"
|
||||||
|
|
||||||
#: ../../include/text.php:990 ../../include/conversation.php:243
|
#: ../../include/text.php:990 ../../include/conversation.php:243
|
||||||
msgid "poked"
|
msgid "poked"
|
||||||
@ -668,7 +668,7 @@ msgstr "ha recibido un toque"
|
|||||||
|
|
||||||
#: ../../include/text.php:991
|
#: ../../include/text.php:991
|
||||||
msgid "ping"
|
msgid "ping"
|
||||||
msgstr "avisar"
|
msgstr "un \"ping\""
|
||||||
|
|
||||||
#: ../../include/text.php:991
|
#: ../../include/text.php:991
|
||||||
msgid "pinged"
|
msgid "pinged"
|
||||||
@ -692,19 +692,19 @@ msgstr "abofeteado/a"
|
|||||||
|
|
||||||
#: ../../include/text.php:994
|
#: ../../include/text.php:994
|
||||||
msgid "finger"
|
msgid "finger"
|
||||||
msgstr "señalar"
|
msgstr "un \"finger\""
|
||||||
|
|
||||||
#: ../../include/text.php:994
|
#: ../../include/text.php:994
|
||||||
msgid "fingered"
|
msgid "fingered"
|
||||||
msgstr "señalado/a"
|
msgstr "ha recibido un \"finger\""
|
||||||
|
|
||||||
#: ../../include/text.php:995
|
#: ../../include/text.php:995
|
||||||
msgid "rebuff"
|
msgid "rebuff"
|
||||||
msgstr "desairar"
|
msgstr "un rechazo"
|
||||||
|
|
||||||
#: ../../include/text.php:995
|
#: ../../include/text.php:995
|
||||||
msgid "rebuffed"
|
msgid "rebuffed"
|
||||||
msgstr "desairado/a"
|
msgstr "ha sido rechazado/a"
|
||||||
|
|
||||||
#: ../../include/text.php:1005
|
#: ../../include/text.php:1005
|
||||||
msgid "happy"
|
msgid "happy"
|
||||||
@ -834,7 +834,8 @@ msgstr "marzo"
|
|||||||
msgid "April"
|
msgid "April"
|
||||||
msgstr "abril"
|
msgstr "abril"
|
||||||
|
|
||||||
#: ../../include/text.php:1201
|
#: ../../include/text.php:1201 ../../mod/uexport.php:58
|
||||||
|
#: ../../mod/uexport.php:59
|
||||||
msgid "May"
|
msgid "May"
|
||||||
msgstr "mayo"
|
msgstr "mayo"
|
||||||
|
|
||||||
@ -926,7 +927,7 @@ msgstr "evento"
|
|||||||
#: ../../include/conversation.php:148 ../../mod/like.php:349
|
#: ../../include/conversation.php:148 ../../mod/like.php:349
|
||||||
#: ../../mod/subthread.php:72 ../../mod/subthread.php:174
|
#: ../../mod/subthread.php:72 ../../mod/subthread.php:174
|
||||||
msgid "status"
|
msgid "status"
|
||||||
msgstr "estado"
|
msgstr "el mensaje de estado"
|
||||||
|
|
||||||
#: ../../include/text.php:1892 ../../include/conversation.php:150
|
#: ../../include/text.php:1892 ../../include/conversation.php:150
|
||||||
#: ../../mod/tagger.php:53
|
#: ../../mod/tagger.php:53
|
||||||
@ -1380,7 +1381,7 @@ msgstr "Editar una aplicación personal"
|
|||||||
|
|
||||||
#: ../../include/widgets.php:136 ../../include/widgets.php:175
|
#: ../../include/widgets.php:136 ../../include/widgets.php:175
|
||||||
#: ../../include/Contact.php:107 ../../include/conversation.php:956
|
#: ../../include/Contact.php:107 ../../include/conversation.php:956
|
||||||
#: ../../include/identity.php:933 ../../mod/directory.php:316
|
#: ../../include/identity.php:956 ../../mod/directory.php:316
|
||||||
#: ../../mod/match.php:64 ../../mod/suggest.php:52
|
#: ../../mod/match.php:64 ../../mod/suggest.php:52
|
||||||
msgid "Connect"
|
msgid "Connect"
|
||||||
msgstr "Conectar"
|
msgstr "Conectar"
|
||||||
@ -1557,7 +1558,7 @@ msgid "Finishes:"
|
|||||||
msgstr "Finaliza:"
|
msgstr "Finaliza:"
|
||||||
|
|
||||||
#: ../../include/event.php:50 ../../include/bb2diaspora.php:481
|
#: ../../include/event.php:50 ../../include/bb2diaspora.php:481
|
||||||
#: ../../include/identity.php:984 ../../mod/directory.php:302
|
#: ../../include/identity.php:1007 ../../mod/directory.php:302
|
||||||
#: ../../mod/events.php:684
|
#: ../../mod/events.php:684
|
||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr "Ubicación:"
|
msgstr "Ubicación:"
|
||||||
@ -1603,12 +1604,12 @@ msgstr "%1$s, %2$s ha comentado sobre [zrl=%3$s]%4$s[/zrl]"
|
|||||||
#: ../../include/enotify.php:166
|
#: ../../include/enotify.php:166
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
|
msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]"
|
||||||
msgstr "%1$s, %2$s ha comentado sobre el [zrl=%3$s]%5$s de %4$s[/zrl]"
|
msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%5$s de %4$s[/zrl]"
|
||||||
|
|
||||||
#: ../../include/enotify.php:175
|
#: ../../include/enotify.php:175
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
|
msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]"
|
||||||
msgstr "%1$s, %2$s ha comentado [zrl=%3$s]su %4$s[/zrl]"
|
msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s creado por usted[/zrl]"
|
||||||
|
|
||||||
#: ../../include/enotify.php:186
|
#: ../../include/enotify.php:186
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -1665,7 +1666,7 @@ msgstr "[Red:Aviso] %1$s le ha dado un toque"
|
|||||||
#: ../../include/enotify.php:239
|
#: ../../include/enotify.php:239
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s, %2$s poked you at %3$s"
|
msgid "%1$s, %2$s poked you at %3$s"
|
||||||
msgstr "%1$s, %2$s le dio un toque sobre %3$s"
|
msgstr "%1$s, %2$s le dio un toque en %3$s"
|
||||||
|
|
||||||
#: ../../include/enotify.php:240
|
#: ../../include/enotify.php:240
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -1680,7 +1681,7 @@ msgstr "[Red:Aviso] %s etiquetó su entrada"
|
|||||||
#: ../../include/enotify.php:257
|
#: ../../include/enotify.php:257
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s, %2$s tagged your post at %3$s"
|
msgid "%1$s, %2$s tagged your post at %3$s"
|
||||||
msgstr "%1$s, %2$s ha etiquetado su publicación sobre %3$s"
|
msgstr "%1$s, %2$s ha etiquetado su publicación en %3$s"
|
||||||
|
|
||||||
#: ../../include/enotify.php:258
|
#: ../../include/enotify.php:258
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -1862,7 +1863,7 @@ msgid "View all"
|
|||||||
msgstr "Ver todo"
|
msgstr "Ver todo"
|
||||||
|
|
||||||
#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396
|
#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396
|
||||||
#: ../../include/conversation.php:1712 ../../include/identity.php:1243
|
#: ../../include/conversation.php:1712 ../../include/identity.php:1266
|
||||||
#: ../../mod/photos.php:1019
|
#: ../../mod/photos.php:1019
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Like"
|
msgid "Like"
|
||||||
@ -2114,7 +2115,7 @@ msgstr "Editar perfiles"
|
|||||||
msgid "Manage/Edit profiles"
|
msgid "Manage/Edit profiles"
|
||||||
msgstr "Administrar/editar perfiles"
|
msgstr "Administrar/editar perfiles"
|
||||||
|
|
||||||
#: ../../include/nav.php:95 ../../include/identity.php:956
|
#: ../../include/nav.php:95 ../../include/identity.php:979
|
||||||
msgid "Edit Profile"
|
msgid "Edit Profile"
|
||||||
msgstr "Editar perfil"
|
msgstr "Editar perfil"
|
||||||
|
|
||||||
@ -2416,7 +2417,7 @@ msgstr "Pueden verse mis conexiones"
|
|||||||
|
|
||||||
#: ../../include/permissions.php:30
|
#: ../../include/permissions.php:30
|
||||||
msgid "Can view my file storage"
|
msgid "Can view my file storage"
|
||||||
msgstr "Pueden verse mis ficheros compartidos"
|
msgstr "Puede verse mi repositorio de ficheros"
|
||||||
|
|
||||||
#: ../../include/permissions.php:31
|
#: ../../include/permissions.php:31
|
||||||
msgid "Can view my webpages"
|
msgid "Can view my webpages"
|
||||||
@ -2464,7 +2465,7 @@ msgstr "Se puede charlar conmigo (cuando esté disponible)"
|
|||||||
|
|
||||||
#: ../../include/permissions.php:43
|
#: ../../include/permissions.php:43
|
||||||
msgid "Can write to my file storage"
|
msgid "Can write to my file storage"
|
||||||
msgstr "Puede escribirse en mi carpeta de ficheros"
|
msgstr "Puede escribirse en mi repositorio de ficheros"
|
||||||
|
|
||||||
#: ../../include/permissions.php:44
|
#: ../../include/permissions.php:44
|
||||||
msgid "Can edit my webpages"
|
msgid "Can edit my webpages"
|
||||||
@ -2589,12 +2590,12 @@ msgstr "Abstención"
|
|||||||
#: ../../include/conversation.php:585 ../../mod/photos.php:998
|
#: ../../include/conversation.php:585 ../../mod/photos.php:998
|
||||||
msgctxt "title"
|
msgctxt "title"
|
||||||
msgid "Attending"
|
msgid "Attending"
|
||||||
msgstr "Participar"
|
msgstr "Participaré"
|
||||||
|
|
||||||
#: ../../include/conversation.php:585 ../../mod/photos.php:998
|
#: ../../include/conversation.php:585 ../../mod/photos.php:998
|
||||||
msgctxt "title"
|
msgctxt "title"
|
||||||
msgid "Not attending"
|
msgid "Not attending"
|
||||||
msgstr "No participar"
|
msgstr "No participaré"
|
||||||
|
|
||||||
#: ../../include/conversation.php:585 ../../mod/photos.php:998
|
#: ../../include/conversation.php:585 ../../mod/photos.php:998
|
||||||
msgctxt "title"
|
msgctxt "title"
|
||||||
@ -2636,7 +2637,7 @@ msgstr "Seguir el hilo"
|
|||||||
|
|
||||||
#: ../../include/conversation.php:952
|
#: ../../include/conversation.php:952
|
||||||
msgid "View Status"
|
msgid "View Status"
|
||||||
msgstr "Ver estado"
|
msgstr "Estado actual"
|
||||||
|
|
||||||
#: ../../include/conversation.php:954
|
#: ../../include/conversation.php:954
|
||||||
msgid "View Photos"
|
msgid "View Photos"
|
||||||
@ -2656,7 +2657,7 @@ msgstr "Enviar Mensaje Privado"
|
|||||||
|
|
||||||
#: ../../include/conversation.php:959 ../../include/apps.php:145
|
#: ../../include/conversation.php:959 ../../include/apps.php:145
|
||||||
msgid "Poke"
|
msgid "Poke"
|
||||||
msgstr "Dar un toque"
|
msgstr "Toques y otras cosas"
|
||||||
|
|
||||||
#: ../../include/conversation.php:1073
|
#: ../../include/conversation.php:1073
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -2946,7 +2947,7 @@ msgstr "Álbumes de fotos"
|
|||||||
|
|
||||||
#: ../../include/conversation.php:1623
|
#: ../../include/conversation.php:1623
|
||||||
msgid "Files and Storage"
|
msgid "Files and Storage"
|
||||||
msgstr "Ficheros y carpetas"
|
msgstr "Repositorio de ficheros"
|
||||||
|
|
||||||
#: ../../include/conversation.php:1633 ../../include/conversation.php:1636
|
#: ../../include/conversation.php:1633 ../../include/conversation.php:1636
|
||||||
msgid "Chatrooms"
|
msgid "Chatrooms"
|
||||||
@ -2965,14 +2966,14 @@ msgctxt "noun"
|
|||||||
msgid "Attending"
|
msgid "Attending"
|
||||||
msgid_plural "Attending"
|
msgid_plural "Attending"
|
||||||
msgstr[0] "Asistir"
|
msgstr[0] "Asistir"
|
||||||
msgstr[1] "Participar"
|
msgstr[1] "Participaré"
|
||||||
|
|
||||||
#: ../../include/conversation.php:1721
|
#: ../../include/conversation.php:1721
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Not Attending"
|
msgid "Not Attending"
|
||||||
msgid_plural "Not Attending"
|
msgid_plural "Not Attending"
|
||||||
msgstr[0] "No asistir"
|
msgstr[0] "No asistir"
|
||||||
msgstr[1] "No participar"
|
msgstr[1] "No participaré"
|
||||||
|
|
||||||
#: ../../include/conversation.php:1724
|
#: ../../include/conversation.php:1724
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
@ -3045,14 +3046,14 @@ msgstr "Visible para las conexiones permitidas."
|
|||||||
msgid "Visible to specific connections."
|
msgid "Visible to specific connections."
|
||||||
msgstr "Visible para conexiones específicas."
|
msgstr "Visible para conexiones específicas."
|
||||||
|
|
||||||
#: ../../include/items.php:4286 ../../mod/thing.php:74
|
#: ../../include/items.php:4310 ../../mod/thing.php:74
|
||||||
#: ../../mod/filestorage.php:27 ../../mod/viewsrc.php:20
|
#: ../../mod/filestorage.php:27 ../../mod/viewsrc.php:20
|
||||||
#: ../../mod/admin.php:167 ../../mod/admin.php:1025 ../../mod/admin.php:1225
|
#: ../../mod/admin.php:167 ../../mod/admin.php:1025 ../../mod/admin.php:1225
|
||||||
#: ../../mod/display.php:36
|
#: ../../mod/display.php:36
|
||||||
msgid "Item not found."
|
msgid "Item not found."
|
||||||
msgstr "Elemento no encontrado."
|
msgstr "Elemento no encontrado."
|
||||||
|
|
||||||
#: ../../include/items.php:4359 ../../include/attach.php:137
|
#: ../../include/items.php:4383 ../../include/attach.php:137
|
||||||
#: ../../include/attach.php:184 ../../include/attach.php:247
|
#: ../../include/attach.php:184 ../../include/attach.php:247
|
||||||
#: ../../include/attach.php:261 ../../include/attach.php:305
|
#: ../../include/attach.php:261 ../../include/attach.php:305
|
||||||
#: ../../include/attach.php:319 ../../include/attach.php:350
|
#: ../../include/attach.php:319 ../../include/attach.php:350
|
||||||
@ -3095,26 +3096,26 @@ msgstr "Elemento no encontrado."
|
|||||||
msgid "Permission denied."
|
msgid "Permission denied."
|
||||||
msgstr "Acceso denegado."
|
msgstr "Acceso denegado."
|
||||||
|
|
||||||
#: ../../include/items.php:4763 ../../mod/group.php:38 ../../mod/group.php:140
|
#: ../../include/items.php:4787 ../../mod/group.php:38 ../../mod/group.php:140
|
||||||
#: ../../mod/bulksetclose.php:51
|
#: ../../mod/bulksetclose.php:51
|
||||||
msgid "Collection not found."
|
msgid "Collection not found."
|
||||||
msgstr "Colección no encontrada."
|
msgstr "Colección no encontrada."
|
||||||
|
|
||||||
#: ../../include/items.php:4779
|
#: ../../include/items.php:4803
|
||||||
msgid "Collection is empty."
|
msgid "Collection is empty."
|
||||||
msgstr "La colección está vacía."
|
msgstr "La colección está vacía."
|
||||||
|
|
||||||
#: ../../include/items.php:4786
|
#: ../../include/items.php:4810
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Collection: %s"
|
msgid "Collection: %s"
|
||||||
msgstr "Colección: %s"
|
msgstr "Colección: %s"
|
||||||
|
|
||||||
#: ../../include/items.php:4796 ../../mod/connedit.php:674
|
#: ../../include/items.php:4820 ../../mod/connedit.php:674
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Connection: %s"
|
msgid "Connection: %s"
|
||||||
msgstr "Conexión: %s"
|
msgstr "Conexión: %s"
|
||||||
|
|
||||||
#: ../../include/items.php:4798
|
#: ../../include/items.php:4822
|
||||||
msgid "Connection not found."
|
msgid "Connection not found."
|
||||||
msgstr "Conexión no encontrada"
|
msgstr "Conexión no encontrada"
|
||||||
|
|
||||||
@ -3324,11 +3325,11 @@ msgstr "No ha sido posible recuperar la identidad creada"
|
|||||||
msgid "Default Profile"
|
msgid "Default Profile"
|
||||||
msgstr "Perfil principal"
|
msgstr "Perfil principal"
|
||||||
|
|
||||||
#: ../../include/identity.php:736
|
#: ../../include/identity.php:759
|
||||||
msgid "Requested channel is not available."
|
msgid "Requested channel is not available."
|
||||||
msgstr "El canal solicitado no está disponible."
|
msgstr "El canal solicitado no está disponible."
|
||||||
|
|
||||||
#: ../../include/identity.php:783 ../../mod/profile.php:16
|
#: ../../include/identity.php:806 ../../mod/profile.php:16
|
||||||
#: ../../mod/achievements.php:11 ../../mod/webpages.php:29
|
#: ../../mod/achievements.php:11 ../../mod/webpages.php:29
|
||||||
#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29
|
#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29
|
||||||
#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
|
#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
|
||||||
@ -3337,193 +3338,193 @@ msgstr "El canal solicitado no está disponible."
|
|||||||
msgid "Requested profile is not available."
|
msgid "Requested profile is not available."
|
||||||
msgstr "El perfil solicitado no está disponible."
|
msgstr "El perfil solicitado no está disponible."
|
||||||
|
|
||||||
#: ../../include/identity.php:946 ../../mod/profiles.php:774
|
#: ../../include/identity.php:969 ../../mod/profiles.php:774
|
||||||
msgid "Change profile photo"
|
msgid "Change profile photo"
|
||||||
msgstr "Cambiar foto de perfil"
|
msgstr "Cambiar foto de perfil"
|
||||||
|
|
||||||
#: ../../include/identity.php:952
|
#: ../../include/identity.php:975
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr "Perfiles"
|
msgstr "Perfiles"
|
||||||
|
|
||||||
#: ../../include/identity.php:952
|
#: ../../include/identity.php:975
|
||||||
msgid "Manage/edit profiles"
|
msgid "Manage/edit profiles"
|
||||||
msgstr "Administrar/editar perfiles"
|
msgstr "Administrar/editar perfiles"
|
||||||
|
|
||||||
#: ../../include/identity.php:953 ../../mod/profiles.php:775
|
#: ../../include/identity.php:976 ../../mod/profiles.php:775
|
||||||
msgid "Create New Profile"
|
msgid "Create New Profile"
|
||||||
msgstr "Crear nuevo perfil"
|
msgstr "Crear nuevo perfil"
|
||||||
|
|
||||||
#: ../../include/identity.php:968 ../../mod/profiles.php:786
|
#: ../../include/identity.php:991 ../../mod/profiles.php:786
|
||||||
msgid "Profile Image"
|
msgid "Profile Image"
|
||||||
msgstr "Imagen de perfil"
|
msgstr "Imagen de perfil"
|
||||||
|
|
||||||
#: ../../include/identity.php:971
|
#: ../../include/identity.php:994
|
||||||
msgid "visible to everybody"
|
msgid "visible to everybody"
|
||||||
msgstr "visible para cualquiera"
|
msgstr "visible para cualquiera"
|
||||||
|
|
||||||
#: ../../include/identity.php:972 ../../mod/profiles.php:669
|
#: ../../include/identity.php:995 ../../mod/profiles.php:669
|
||||||
#: ../../mod/profiles.php:790
|
#: ../../mod/profiles.php:790
|
||||||
msgid "Edit visibility"
|
msgid "Edit visibility"
|
||||||
msgstr "Editar visibilidad"
|
msgstr "Editar visibilidad"
|
||||||
|
|
||||||
#: ../../include/identity.php:988 ../../include/identity.php:1227
|
#: ../../include/identity.php:1011 ../../include/identity.php:1250
|
||||||
msgid "Gender:"
|
msgid "Gender:"
|
||||||
msgstr "Género:"
|
msgstr "Género:"
|
||||||
|
|
||||||
#: ../../include/identity.php:989 ../../include/identity.php:1271
|
#: ../../include/identity.php:1012 ../../include/identity.php:1294
|
||||||
msgid "Status:"
|
msgid "Status:"
|
||||||
msgstr "Estado:"
|
msgstr "Estado:"
|
||||||
|
|
||||||
#: ../../include/identity.php:990 ../../include/identity.php:1282
|
#: ../../include/identity.php:1013 ../../include/identity.php:1305
|
||||||
msgid "Homepage:"
|
msgid "Homepage:"
|
||||||
msgstr "Página personal:"
|
msgstr "Página personal:"
|
||||||
|
|
||||||
#: ../../include/identity.php:991
|
#: ../../include/identity.php:1014
|
||||||
msgid "Online Now"
|
msgid "Online Now"
|
||||||
msgstr "Ahora en línea"
|
msgstr "Ahora en línea"
|
||||||
|
|
||||||
#: ../../include/identity.php:1074 ../../include/identity.php:1152
|
#: ../../include/identity.php:1097 ../../include/identity.php:1175
|
||||||
#: ../../mod/ping.php:324
|
#: ../../mod/ping.php:324
|
||||||
msgid "g A l F d"
|
msgid "g A l F d"
|
||||||
msgstr "g A l d F"
|
msgstr "g A l d F"
|
||||||
|
|
||||||
#: ../../include/identity.php:1075 ../../include/identity.php:1153
|
#: ../../include/identity.php:1098 ../../include/identity.php:1176
|
||||||
msgid "F d"
|
msgid "F d"
|
||||||
msgstr "d F"
|
msgstr "d F"
|
||||||
|
|
||||||
#: ../../include/identity.php:1120 ../../include/identity.php:1192
|
#: ../../include/identity.php:1143 ../../include/identity.php:1215
|
||||||
#: ../../mod/ping.php:346
|
#: ../../mod/ping.php:346
|
||||||
msgid "[today]"
|
msgid "[today]"
|
||||||
msgstr "[hoy]"
|
msgstr "[hoy]"
|
||||||
|
|
||||||
#: ../../include/identity.php:1131
|
#: ../../include/identity.php:1154
|
||||||
msgid "Birthday Reminders"
|
msgid "Birthday Reminders"
|
||||||
msgstr "Recordatorios de cumpleaños"
|
msgstr "Recordatorios de cumpleaños"
|
||||||
|
|
||||||
#: ../../include/identity.php:1132
|
#: ../../include/identity.php:1155
|
||||||
msgid "Birthdays this week:"
|
msgid "Birthdays this week:"
|
||||||
msgstr "Cumpleaños esta semana:"
|
msgstr "Cumpleaños esta semana:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1185
|
#: ../../include/identity.php:1208
|
||||||
msgid "[No description]"
|
msgid "[No description]"
|
||||||
msgstr "[Sin descripción]"
|
msgstr "[Sin descripción]"
|
||||||
|
|
||||||
#: ../../include/identity.php:1203
|
#: ../../include/identity.php:1226
|
||||||
msgid "Event Reminders"
|
msgid "Event Reminders"
|
||||||
msgstr "Recordatorios de eventos"
|
msgstr "Recordatorios de eventos"
|
||||||
|
|
||||||
#: ../../include/identity.php:1204
|
#: ../../include/identity.php:1227
|
||||||
msgid "Events this week:"
|
msgid "Events this week:"
|
||||||
msgstr "Eventos de esta semana:"
|
msgstr "Eventos de esta semana:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1217 ../../include/identity.php:1334
|
#: ../../include/identity.php:1240 ../../include/identity.php:1357
|
||||||
#: ../../include/apps.php:138 ../../mod/profperm.php:112
|
#: ../../include/apps.php:138 ../../mod/profperm.php:112
|
||||||
msgid "Profile"
|
msgid "Profile"
|
||||||
msgstr "Perfil"
|
msgstr "Perfil"
|
||||||
|
|
||||||
#: ../../include/identity.php:1225 ../../mod/settings.php:1056
|
#: ../../include/identity.php:1248 ../../mod/settings.php:1056
|
||||||
msgid "Full Name:"
|
msgid "Full Name:"
|
||||||
msgstr "Nombre completo:"
|
msgstr "Nombre completo:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1232
|
#: ../../include/identity.php:1255
|
||||||
msgid "Like this channel"
|
msgid "Like this channel"
|
||||||
msgstr "Me gusta este canal"
|
msgstr "Me gusta este canal"
|
||||||
|
|
||||||
#: ../../include/identity.php:1256
|
#: ../../include/identity.php:1279
|
||||||
msgid "j F, Y"
|
msgid "j F, Y"
|
||||||
msgstr "j F Y"
|
msgstr "j F Y"
|
||||||
|
|
||||||
#: ../../include/identity.php:1257
|
#: ../../include/identity.php:1280
|
||||||
msgid "j F"
|
msgid "j F"
|
||||||
msgstr "j F"
|
msgstr "j F"
|
||||||
|
|
||||||
#: ../../include/identity.php:1264
|
#: ../../include/identity.php:1287
|
||||||
msgid "Birthday:"
|
msgid "Birthday:"
|
||||||
msgstr "Cumpleaños:"
|
msgstr "Cumpleaños:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1268 ../../mod/directory.php:297
|
#: ../../include/identity.php:1291 ../../mod/directory.php:297
|
||||||
msgid "Age:"
|
msgid "Age:"
|
||||||
msgstr "Edad:"
|
msgstr "Edad:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1277
|
#: ../../include/identity.php:1300
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "for %1$d %2$s"
|
msgid "for %1$d %2$s"
|
||||||
msgstr "por %1$d %2$s"
|
msgstr "por %1$d %2$s"
|
||||||
|
|
||||||
#: ../../include/identity.php:1280 ../../mod/profiles.php:691
|
#: ../../include/identity.php:1303 ../../mod/profiles.php:691
|
||||||
msgid "Sexual Preference:"
|
msgid "Sexual Preference:"
|
||||||
msgstr "Orientación sexual:"
|
msgstr "Orientación sexual:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1284 ../../mod/directory.php:313
|
#: ../../include/identity.php:1307 ../../mod/directory.php:313
|
||||||
#: ../../mod/profiles.php:693
|
#: ../../mod/profiles.php:693
|
||||||
msgid "Hometown:"
|
msgid "Hometown:"
|
||||||
msgstr "Ciudad de origen:"
|
msgstr "Ciudad de origen:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1286
|
#: ../../include/identity.php:1309
|
||||||
msgid "Tags:"
|
msgid "Tags:"
|
||||||
msgstr "Etiquetas:"
|
msgstr "Etiquetas:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1288 ../../mod/profiles.php:694
|
#: ../../include/identity.php:1311 ../../mod/profiles.php:694
|
||||||
msgid "Political Views:"
|
msgid "Political Views:"
|
||||||
msgstr "Posición política:"
|
msgstr "Posición política:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1290
|
#: ../../include/identity.php:1313
|
||||||
msgid "Religion:"
|
msgid "Religion:"
|
||||||
msgstr "Religión:"
|
msgstr "Religión:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1292 ../../mod/directory.php:315
|
#: ../../include/identity.php:1315 ../../mod/directory.php:315
|
||||||
msgid "About:"
|
msgid "About:"
|
||||||
msgstr "Sobre mí:"
|
msgstr "Sobre mí:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1294
|
#: ../../include/identity.php:1317
|
||||||
msgid "Hobbies/Interests:"
|
msgid "Hobbies/Interests:"
|
||||||
msgstr "Aficciones/Intereses:"
|
msgstr "Aficciones/Intereses:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1296 ../../mod/profiles.php:697
|
#: ../../include/identity.php:1319 ../../mod/profiles.php:697
|
||||||
msgid "Likes:"
|
msgid "Likes:"
|
||||||
msgstr "Me gusta:"
|
msgstr "Me gusta:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1298 ../../mod/profiles.php:698
|
#: ../../include/identity.php:1321 ../../mod/profiles.php:698
|
||||||
msgid "Dislikes:"
|
msgid "Dislikes:"
|
||||||
msgstr "No me gusta:"
|
msgstr "No me gusta:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1300
|
#: ../../include/identity.php:1323
|
||||||
msgid "Contact information and Social Networks:"
|
msgid "Contact information and Social Networks:"
|
||||||
msgstr "Información de contacto y redes sociales:"
|
msgstr "Información de contacto y redes sociales:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1302
|
#: ../../include/identity.php:1325
|
||||||
msgid "My other channels:"
|
msgid "My other channels:"
|
||||||
msgstr "Mis otros canales:"
|
msgstr "Mis otros canales:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1304
|
#: ../../include/identity.php:1327
|
||||||
msgid "Musical interests:"
|
msgid "Musical interests:"
|
||||||
msgstr "Intereses musicales:"
|
msgstr "Intereses musicales:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1306
|
#: ../../include/identity.php:1329
|
||||||
msgid "Books, literature:"
|
msgid "Books, literature:"
|
||||||
msgstr "Libros, literatura:"
|
msgstr "Libros, literatura:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1308
|
#: ../../include/identity.php:1331
|
||||||
msgid "Television:"
|
msgid "Television:"
|
||||||
msgstr "Televisión:"
|
msgstr "Televisión:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1310
|
#: ../../include/identity.php:1333
|
||||||
msgid "Film/dance/culture/entertainment:"
|
msgid "Film/dance/culture/entertainment:"
|
||||||
msgstr "Cine/danza/cultura/entretenimiento:"
|
msgstr "Cine/danza/cultura/entretenimiento:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1312
|
#: ../../include/identity.php:1335
|
||||||
msgid "Love/Romance:"
|
msgid "Love/Romance:"
|
||||||
msgstr "Vida sentimental/amorosa:"
|
msgstr "Vida sentimental/amorosa:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1314
|
#: ../../include/identity.php:1337
|
||||||
msgid "Work/employment:"
|
msgid "Work/employment:"
|
||||||
msgstr "Trabajo:"
|
msgstr "Trabajo:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1316
|
#: ../../include/identity.php:1339
|
||||||
msgid "School/education:"
|
msgid "School/education:"
|
||||||
msgstr "Estudios:"
|
msgstr "Estudios:"
|
||||||
|
|
||||||
#: ../../include/identity.php:1336
|
#: ../../include/identity.php:1359
|
||||||
msgid "Like this thing"
|
msgid "Like this thing"
|
||||||
msgstr "Me gusta esto"
|
msgstr "Me gusta esto"
|
||||||
|
|
||||||
@ -4273,7 +4274,7 @@ msgstr "Omitir este paso"
|
|||||||
|
|
||||||
#: ../../mod/profile_photo.php:366
|
#: ../../mod/profile_photo.php:366
|
||||||
msgid "select a photo from your photo albums"
|
msgid "select a photo from your photo albums"
|
||||||
msgstr "Seleccione una foto de sus álbumes de fotos"
|
msgstr "Seleccione una foto de sus álbumes"
|
||||||
|
|
||||||
#: ../../mod/profile_photo.php:382
|
#: ../../mod/profile_photo.php:382
|
||||||
msgid "Crop Image"
|
msgid "Crop Image"
|
||||||
@ -4610,7 +4611,7 @@ msgstr "Extensiones/Aplicaciones instaladas:"
|
|||||||
msgid "No installed plugins/addons/apps"
|
msgid "No installed plugins/addons/apps"
|
||||||
msgstr "Extensiones/Aplicaciones no instaladas:"
|
msgstr "Extensiones/Aplicaciones no instaladas:"
|
||||||
|
|
||||||
#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:64
|
#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:66
|
||||||
msgid "$Projectname"
|
msgid "$Projectname"
|
||||||
msgstr "$Projectname"
|
msgstr "$Projectname"
|
||||||
|
|
||||||
@ -4875,12 +4876,12 @@ msgstr "El acceso a este elemento está restringido."
|
|||||||
#: ../../mod/photos.php:535
|
#: ../../mod/photos.php:535
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$.2f MB of %2$.2f MB photo storage used."
|
msgid "%1$.2f MB of %2$.2f MB photo storage used."
|
||||||
msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."
|
msgstr "%1$.2f MB de %2$.2f MB usados de la capacidad de almacenamiento de fotos."
|
||||||
|
|
||||||
#: ../../mod/photos.php:538
|
#: ../../mod/photos.php:538
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$.2f MB photo storage used."
|
msgid "%1$.2f MB photo storage used."
|
||||||
msgstr "%1$.2f MB de almacenamiento de fotos utilizado."
|
msgstr "%1$.2f MB utilizados de la capacidad de almacenamiento de fotos."
|
||||||
|
|
||||||
#: ../../mod/photos.php:562
|
#: ../../mod/photos.php:562
|
||||||
msgid "Upload Photos"
|
msgid "Upload Photos"
|
||||||
@ -5787,7 +5788,7 @@ msgstr "Servidor no encontrado"
|
|||||||
|
|
||||||
#: ../../mod/poke.php:159
|
#: ../../mod/poke.php:159
|
||||||
msgid "Poke/Prod"
|
msgid "Poke/Prod"
|
||||||
msgstr "Dar un toque/Incitar"
|
msgstr "Toque/Incitación"
|
||||||
|
|
||||||
#: ../../mod/poke.php:160
|
#: ../../mod/poke.php:160
|
||||||
msgid "poke, prod or do other things to somebody"
|
msgid "poke, prod or do other things to somebody"
|
||||||
@ -6534,31 +6535,6 @@ msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo
|
|||||||
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
msgid "%1$s tagged %2$s's %3$s with %4$s"
|
||||||
msgstr "%1$s ha etiquetado la %3$s de %2$s con %4$s"
|
msgstr "%1$s ha etiquetado la %3$s de %2$s con %4$s"
|
||||||
|
|
||||||
#: ../../mod/uexport.php:45 ../../mod/uexport.php:46
|
|
||||||
msgid "Export Channel"
|
|
||||||
msgstr "Exportar el canal"
|
|
||||||
|
|
||||||
#: ../../mod/uexport.php:47
|
|
||||||
msgid ""
|
|
||||||
"Export your basic channel information to a small 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 hub, but\tdoes not contain your "
|
|
||||||
"content."
|
|
||||||
msgstr "Exportar la base de datos de su canal a un pequeño fichero. Este podrá servir como una copia de seguridad de sus conexiones, permisos, perfil y datos básicos, que podrá importar a un nuevo canal, pero sin sus contenidos."
|
|
||||||
|
|
||||||
#: ../../mod/uexport.php:48
|
|
||||||
msgid "Export Content"
|
|
||||||
msgstr "Exportar contenidos"
|
|
||||||
|
|
||||||
#: ../../mod/uexport.php:49
|
|
||||||
msgid ""
|
|
||||||
"Export your channel information and all the content to a JSON backup. This "
|
|
||||||
"backs up all of your connections, permissions, profile data and all of your "
|
|
||||||
"content, but is generally not suitable for importing a channel to a new hub "
|
|
||||||
"as this file may be VERY large. Please be patient - it may take several "
|
|
||||||
"minutes for this download to begin."
|
|
||||||
msgstr "Exportar toda la información del canal y todo su contenido a un fichero JSON. Este contendrá todas sus conexiones, permisos, información del perfil y todo su contenido, Sin embargo, a menudo, no será una buena solución para importarlo en una nueva instancia, pues el fichero será MUY voluminoso. Por favor, tenga paciencia - pueden pasar muchos minutos antes de que comience la carga."
|
|
||||||
|
|
||||||
#: ../../mod/viewconnections.php:62
|
#: ../../mod/viewconnections.php:62
|
||||||
msgid "No connections."
|
msgid "No connections."
|
||||||
msgstr "Sin conexiones."
|
msgstr "Sin conexiones."
|
||||||
@ -7989,7 +7965,7 @@ msgstr "Usted ha sido etiquetado en una publicación"
|
|||||||
|
|
||||||
#: ../../mod/settings.php:1109
|
#: ../../mod/settings.php:1109
|
||||||
msgid "You are poked/prodded/etc. in a post"
|
msgid "You are poked/prodded/etc. in a post"
|
||||||
msgstr "Recibir un toque o incitación en una publicación"
|
msgstr "Reciba un toque o incitación en una entrada"
|
||||||
|
|
||||||
#: ../../mod/settings.php:1112
|
#: ../../mod/settings.php:1112
|
||||||
msgid "Show visual notifications including:"
|
msgid "Show visual notifications including:"
|
||||||
@ -8171,6 +8147,114 @@ msgstr "Eliminar conversación"
|
|||||||
msgid "D, d M Y - g:i A"
|
msgid "D, d M Y - g:i A"
|
||||||
msgstr "D d M Y - G:i"
|
msgstr "D d M Y - G:i"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:50 ../../mod/uexport.php:51
|
||||||
|
msgid "Export Channel"
|
||||||
|
msgstr "Exportar el canal"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:52
|
||||||
|
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."
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:53
|
||||||
|
msgid "Export Content"
|
||||||
|
msgstr "Exportar contenidos"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:54
|
||||||
|
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 "
|
||||||
|
"connections, permissions, profile data and several months of posts. This "
|
||||||
|
"file may be VERY large. Please be patient - it may take several minutes for"
|
||||||
|
" 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."
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:55
|
||||||
|
msgid "Export your posts from a given year or month:"
|
||||||
|
msgstr "Exporta sus entradas de un año o mes determinados."
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:57
|
||||||
|
msgid ""
|
||||||
|
"You may also export your posts and conversations for a particular year or "
|
||||||
|
"month. Click on one of the recent years or months below."
|
||||||
|
msgstr "También puede exportar sus entradas y conversaciones de un año o mes en particular. Hágalo en primer lugar con uno de los años o meses más recientes."
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Jan"
|
||||||
|
msgstr "Ene"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Feb"
|
||||||
|
msgstr "Feb"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Mar"
|
||||||
|
msgstr "Mar"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Apr"
|
||||||
|
msgstr "Abr"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Jun"
|
||||||
|
msgstr "Jun"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Jul"
|
||||||
|
msgstr "Jul"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Aug"
|
||||||
|
msgstr "Ago"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Sep"
|
||||||
|
msgstr "Sep"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Oct"
|
||||||
|
msgstr "Oct"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Nov"
|
||||||
|
msgstr "Nov"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:58 ../../mod/uexport.php:59
|
||||||
|
msgid "Dec"
|
||||||
|
msgstr "Dic"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:60
|
||||||
|
msgid ""
|
||||||
|
"If the export fails (possibly due to memory exhaustion on your server hub), "
|
||||||
|
"please try again selecting a more limited date range."
|
||||||
|
msgstr "Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, inténtelo de nuevo seleccionando un rango de fechas más pequeño."
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Or adjust the date in your browser location bar to select other dates. For "
|
||||||
|
"example the year 2013; <a href=\"%1$s/2013\">%1$s/2013</a> or the month "
|
||||||
|
"September 2013; <a href=\"%1$s/2013/9\">%1$s/2013/9</a>"
|
||||||
|
msgstr "Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Por ejemlo, el año 2013: <a href=\"%1$s/2013\">%1$s/2013</a> o el mes de septiembre de 2013: <a href=\"%1$s/2013/9\">%1$s/2013/9</a>"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:62
|
||||||
|
msgid "Please visit"
|
||||||
|
msgstr "Por favor, visite"
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:62
|
||||||
|
msgid "on another hub to import the backup files(s)."
|
||||||
|
msgstr "en otro servidor hub para importar el fichero (s) de copia de seguridad."
|
||||||
|
|
||||||
|
#: ../../mod/uexport.php:63
|
||||||
|
msgid ""
|
||||||
|
"We advise you to clone the channel on the new hub first and than to import "
|
||||||
|
"the backup file(s) (from the same channel) in chronological order. Importing"
|
||||||
|
" the backup files into another channel will certainly give permission "
|
||||||
|
"issues."
|
||||||
|
msgstr "Aviso: al clonar el canal en un nuevo servidor hub, en primer lugar tiene que importar el fichero (s) con las copias de seguridad (desde el mismo canal) en orden cronológico. Importar los ficheros de copia de seguridad en otro canal le dará, con toda seguridad, problemas de permisos."
|
||||||
|
|
||||||
#: ../../mod/mood.php:131
|
#: ../../mod/mood.php:131
|
||||||
msgid "Set your current mood and tell your friends"
|
msgid "Set your current mood and tell your friends"
|
||||||
msgstr "Describir su estado de ánimo para comunicárselo a sus amigos"
|
msgstr "Describir su estado de ánimo para comunicárselo a sus amigos"
|
||||||
@ -8504,7 +8588,7 @@ msgstr "Mensaje eliminado."
|
|||||||
|
|
||||||
#: ../../mod/mail.php:156
|
#: ../../mod/mail.php:156
|
||||||
msgid "Message recalled."
|
msgid "Message recalled."
|
||||||
msgstr "Mensaje recuperado."
|
msgstr "Mensaje revocado."
|
||||||
|
|
||||||
#: ../../mod/mail.php:225
|
#: ../../mod/mail.php:225
|
||||||
msgid "Send Private Message"
|
msgid "Send Private Message"
|
||||||
@ -8532,11 +8616,11 @@ msgstr "Mensaje eliminado"
|
|||||||
|
|
||||||
#: ../../mod/mail.php:313
|
#: ../../mod/mail.php:313
|
||||||
msgid "Recall message"
|
msgid "Recall message"
|
||||||
msgstr "Recuperar el mensaje"
|
msgstr "Revocar el mensaje"
|
||||||
|
|
||||||
#: ../../mod/mail.php:315
|
#: ../../mod/mail.php:315
|
||||||
msgid "Message has been recalled."
|
msgid "Message has been recalled."
|
||||||
msgstr "El mensaje ha sido recuperado."
|
msgstr "El mensaje ha sido revocado."
|
||||||
|
|
||||||
#: ../../mod/mail.php:332
|
#: ../../mod/mail.php:332
|
||||||
msgid "Private Conversation"
|
msgid "Private Conversation"
|
||||||
@ -8686,7 +8770,7 @@ msgstr "Descripción del formato"
|
|||||||
msgid "Download PDL file"
|
msgid "Download PDL file"
|
||||||
msgstr "Descargar el fichero PDL"
|
msgstr "Descargar el fichero PDL"
|
||||||
|
|
||||||
#: ../../mod/home.php:73
|
#: ../../mod/home.php:75
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Welcome to %s"
|
msgid "Welcome to %s"
|
||||||
msgstr "Bienvenido a %s"
|
msgstr "Bienvenido a %s"
|
||||||
@ -8897,11 +8981,11 @@ msgstr "Ancho de la sección"
|
|||||||
|
|
||||||
#: ../../view/theme/apw/php/config.php:289
|
#: ../../view/theme/apw/php/config.php:289
|
||||||
msgid "Left offset of the aside"
|
msgid "Left offset of the aside"
|
||||||
msgstr "Desplazamiento izquierdo del lateral"
|
msgstr "Desplazamiento izquierdo del panel lateral"
|
||||||
|
|
||||||
#: ../../view/theme/apw/php/config.php:290
|
#: ../../view/theme/apw/php/config.php:290
|
||||||
msgid "Right offset of the aside element"
|
msgid "Right offset of the aside element"
|
||||||
msgstr "Desplazamiento derecho del elemento lateral"
|
msgstr "Desplazamiento derecho del elemento del panel lateral"
|
||||||
|
|
||||||
#: ../../view/theme/redbasic/php/config.php:82
|
#: ../../view/theme/redbasic/php/config.php:82
|
||||||
msgid "Light (Red Matrix default)"
|
msgid "Light (Red Matrix default)"
|
||||||
@ -9073,7 +9157,7 @@ msgstr "[red] Error SSL del sitio web en %s"
|
|||||||
|
|
||||||
#: ../../boot.php:2352
|
#: ../../boot.php:2352
|
||||||
msgid "Cron/Scheduled tasks not running."
|
msgid "Cron/Scheduled tasks not running."
|
||||||
msgstr "Las tareas del Planificador/Cron no se están funcionando."
|
msgstr "Las tareas del Planificador/Cron no están funcionando."
|
||||||
|
|
||||||
#: ../../boot.php:2356
|
#: ../../boot.php:2356
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -145,18 +145,18 @@ $a->strings["%d Connection"] = array(
|
|||||||
$a->strings["View Connections"] = "Ver conexiones";
|
$a->strings["View Connections"] = "Ver conexiones";
|
||||||
$a->strings["Search"] = "Buscar";
|
$a->strings["Search"] = "Buscar";
|
||||||
$a->strings["Save"] = "Guardar";
|
$a->strings["Save"] = "Guardar";
|
||||||
$a->strings["poke"] = "dar un toque";
|
$a->strings["poke"] = "un toque";
|
||||||
$a->strings["poked"] = "ha recibido un toque";
|
$a->strings["poked"] = "ha recibido un toque";
|
||||||
$a->strings["ping"] = "avisar";
|
$a->strings["ping"] = "un \"ping\"";
|
||||||
$a->strings["pinged"] = "avisado/a";
|
$a->strings["pinged"] = "avisado/a";
|
||||||
$a->strings["prod"] = "incitar";
|
$a->strings["prod"] = "incitar";
|
||||||
$a->strings["prodded"] = "incitado/a";
|
$a->strings["prodded"] = "incitado/a";
|
||||||
$a->strings["slap"] = "abofetear";
|
$a->strings["slap"] = "abofetear";
|
||||||
$a->strings["slapped"] = "abofeteado/a";
|
$a->strings["slapped"] = "abofeteado/a";
|
||||||
$a->strings["finger"] = "señalar";
|
$a->strings["finger"] = "un \"finger\"";
|
||||||
$a->strings["fingered"] = "señalado/a";
|
$a->strings["fingered"] = "ha recibido un \"finger\"";
|
||||||
$a->strings["rebuff"] = "desairar";
|
$a->strings["rebuff"] = "un rechazo";
|
||||||
$a->strings["rebuffed"] = "desairado/a";
|
$a->strings["rebuffed"] = "ha sido rechazado/a";
|
||||||
$a->strings["happy"] = "feliz";
|
$a->strings["happy"] = "feliz";
|
||||||
$a->strings["sad"] = "triste";
|
$a->strings["sad"] = "triste";
|
||||||
$a->strings["mellow"] = "amable";
|
$a->strings["mellow"] = "amable";
|
||||||
@ -210,7 +210,7 @@ $a->strings["Page content type"] = "Tipo de contenido de página";
|
|||||||
$a->strings["Select an alternate language"] = "Selecciona un idioma alternativo";
|
$a->strings["Select an alternate language"] = "Selecciona un idioma alternativo";
|
||||||
$a->strings["photo"] = "foto";
|
$a->strings["photo"] = "foto";
|
||||||
$a->strings["event"] = "evento";
|
$a->strings["event"] = "evento";
|
||||||
$a->strings["status"] = "estado";
|
$a->strings["status"] = "el mensaje de estado";
|
||||||
$a->strings["comment"] = "comentario";
|
$a->strings["comment"] = "comentario";
|
||||||
$a->strings["activity"] = "actividad";
|
$a->strings["activity"] = "actividad";
|
||||||
$a->strings["Design Tools"] = "Herramientas de diseño";
|
$a->strings["Design Tools"] = "Herramientas de diseño";
|
||||||
@ -365,8 +365,8 @@ $a->strings["%1\$s sent you %2\$s."] = "%1\$s le envió %2\$s.";
|
|||||||
$a->strings["a private message"] = "un mensaje privado";
|
$a->strings["a private message"] = "un mensaje privado";
|
||||||
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado.";
|
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado.";
|
||||||
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado sobre [zrl=%3\$s]%4\$s[/zrl]";
|
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado sobre [zrl=%3\$s]%4\$s[/zrl]";
|
||||||
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado sobre el [zrl=%3\$s]%5\$s de %4\$s[/zrl]";
|
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl]";
|
||||||
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]su %4\$s[/zrl]";
|
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]";
|
||||||
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d";
|
$a->strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d";
|
||||||
$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentó un elemento/conversación que ha estado siguiendo.";
|
$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentó un elemento/conversación que ha estado siguiendo.";
|
||||||
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s";
|
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s";
|
||||||
@ -377,10 +377,10 @@ $a->strings["[Red:Notify] %s tagged you"] = "[Red:Aviso] %s le etiquetó";
|
|||||||
$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le etiquetó en %3\$s";
|
$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le etiquetó en %3\$s";
|
||||||
$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl].";
|
$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl].";
|
||||||
$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Aviso] %1\$s le ha dado un toque";
|
$a->strings["[Red:Notify] %1\$s poked you"] = "[Red:Aviso] %1\$s le ha dado un toque";
|
||||||
$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le dio un toque sobre %3\$s";
|
$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le dio un toque en %3\$s";
|
||||||
$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le dio un toque[/zrl].";
|
$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le dio un toque[/zrl].";
|
||||||
$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Aviso] %s etiquetó su entrada";
|
$a->strings["[Red:Notify] %s tagged your post"] = "[Red:Aviso] %s etiquetó su entrada";
|
||||||
$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación sobre %3\$s";
|
$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s";
|
||||||
$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]";
|
$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]";
|
||||||
$a->strings["[Red:Notify] Introduction received"] = "[Red:Aviso] Solicitud de conexión recibida";
|
$a->strings["[Red:Notify] Introduction received"] = "[Red:Aviso] Solicitud de conexión recibida";
|
||||||
$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s";
|
$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s";
|
||||||
@ -557,7 +557,7 @@ $a->strings["Can view my normal stream and posts"] = "Pueden verse mi flujo de a
|
|||||||
$a->strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado.";
|
$a->strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado.";
|
||||||
$a->strings["Can view my photo albums"] = "Pueden verse mis álbumes de fotos";
|
$a->strings["Can view my photo albums"] = "Pueden verse mis álbumes de fotos";
|
||||||
$a->strings["Can view my connections"] = "Pueden verse mis conexiones";
|
$a->strings["Can view my connections"] = "Pueden verse mis conexiones";
|
||||||
$a->strings["Can view my file storage"] = "Pueden verse mis ficheros compartidos";
|
$a->strings["Can view my file storage"] = "Puede verse mi repositorio de ficheros";
|
||||||
$a->strings["Can view my webpages"] = "Pueden verse mis páginas web";
|
$a->strings["Can view my webpages"] = "Pueden verse mis páginas web";
|
||||||
$a->strings["Can send me their channel stream and posts"] = "Me pueden enviar sus entradas y flujo de actividad su canal";
|
$a->strings["Can send me their channel stream and posts"] = "Me pueden enviar sus entradas y flujo de actividad su canal";
|
||||||
$a->strings["Can post on my channel page (\"wall\")"] = "Pueden crear entradas en mi página de inicio del canal (“muro”)";
|
$a->strings["Can post on my channel page (\"wall\")"] = "Pueden crear entradas en mi página de inicio del canal (“muro”)";
|
||||||
@ -569,7 +569,7 @@ $a->strings["Profiles and things other than posts/comments"] = "Perfiles y otras
|
|||||||
$a->strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención";
|
$a->strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención";
|
||||||
$a->strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foro o grupos";
|
$a->strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foro o grupos";
|
||||||
$a->strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)";
|
$a->strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)";
|
||||||
$a->strings["Can write to my file storage"] = "Puede escribirse en mi carpeta de ficheros";
|
$a->strings["Can write to my file storage"] = "Puede escribirse en mi repositorio de ficheros";
|
||||||
$a->strings["Can edit my webpages"] = "Puede editar mis páginas web";
|
$a->strings["Can edit my webpages"] = "Puede editar mis páginas web";
|
||||||
$a->strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados";
|
$a->strings["Can source my public posts in derived channels"] = "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados";
|
||||||
$a->strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas";
|
$a->strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas";
|
||||||
@ -596,8 +596,8 @@ $a->strings["__ctx:title__ Dislikes"] = "No me gusta";
|
|||||||
$a->strings["__ctx:title__ Agree"] = "De acuerdo";
|
$a->strings["__ctx:title__ Agree"] = "De acuerdo";
|
||||||
$a->strings["__ctx:title__ Disagree"] = "En desacuerdo";
|
$a->strings["__ctx:title__ Disagree"] = "En desacuerdo";
|
||||||
$a->strings["__ctx:title__ Abstain"] = "Abstención";
|
$a->strings["__ctx:title__ Abstain"] = "Abstención";
|
||||||
$a->strings["__ctx:title__ Attending"] = "Participar";
|
$a->strings["__ctx:title__ Attending"] = "Participaré";
|
||||||
$a->strings["__ctx:title__ Not attending"] = "No participar";
|
$a->strings["__ctx:title__ Not attending"] = "No participaré";
|
||||||
$a->strings["__ctx:title__ Might attend"] = "Quizá participe";
|
$a->strings["__ctx:title__ Might attend"] = "Quizá participe";
|
||||||
$a->strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s";
|
$a->strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s";
|
||||||
$a->strings["Categories:"] = "Categorías:";
|
$a->strings["Categories:"] = "Categorías:";
|
||||||
@ -607,12 +607,12 @@ $a->strings["remove"] = "eliminar";
|
|||||||
$a->strings["Delete Selected Items"] = "Eliminar elementos seleccionados";
|
$a->strings["Delete Selected Items"] = "Eliminar elementos seleccionados";
|
||||||
$a->strings["View Source"] = "Ver la fuente original de la entrada";
|
$a->strings["View Source"] = "Ver la fuente original de la entrada";
|
||||||
$a->strings["Follow Thread"] = "Seguir el hilo";
|
$a->strings["Follow Thread"] = "Seguir el hilo";
|
||||||
$a->strings["View Status"] = "Ver estado";
|
$a->strings["View Status"] = "Estado actual";
|
||||||
$a->strings["View Photos"] = "Ver fotos";
|
$a->strings["View Photos"] = "Ver fotos";
|
||||||
$a->strings["Matrix Activity"] = "Actividad en la red de esta conexión";
|
$a->strings["Matrix Activity"] = "Actividad en la red de esta conexión";
|
||||||
$a->strings["Edit Contact"] = "Editar contacto";
|
$a->strings["Edit Contact"] = "Editar contacto";
|
||||||
$a->strings["Send PM"] = "Enviar Mensaje Privado";
|
$a->strings["Send PM"] = "Enviar Mensaje Privado";
|
||||||
$a->strings["Poke"] = "Dar un toque";
|
$a->strings["Poke"] = "Toques y otras cosas";
|
||||||
$a->strings["%s likes this."] = "a %s le gusta esto.";
|
$a->strings["%s likes this."] = "a %s le gusta esto.";
|
||||||
$a->strings["%s doesn't like this."] = "a %s no le gusta esto.";
|
$a->strings["%s doesn't like this."] = "a %s no le gusta esto.";
|
||||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
||||||
@ -683,17 +683,17 @@ $a->strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones";
|
|||||||
$a->strings["About"] = "Sobre mí";
|
$a->strings["About"] = "Sobre mí";
|
||||||
$a->strings["Profile Details"] = "Detalles del perfil";
|
$a->strings["Profile Details"] = "Detalles del perfil";
|
||||||
$a->strings["Photo Albums"] = "Álbumes de fotos";
|
$a->strings["Photo Albums"] = "Álbumes de fotos";
|
||||||
$a->strings["Files and Storage"] = "Ficheros y carpetas";
|
$a->strings["Files and Storage"] = "Repositorio de ficheros";
|
||||||
$a->strings["Chatrooms"] = "Salas de chat";
|
$a->strings["Chatrooms"] = "Salas de chat";
|
||||||
$a->strings["Saved Bookmarks"] = "Marcadores guardados";
|
$a->strings["Saved Bookmarks"] = "Marcadores guardados";
|
||||||
$a->strings["Manage Webpages"] = "Administrar páginas web";
|
$a->strings["Manage Webpages"] = "Administrar páginas web";
|
||||||
$a->strings["__ctx:noun__ Attending"] = array(
|
$a->strings["__ctx:noun__ Attending"] = array(
|
||||||
0 => "Asistir",
|
0 => "Asistir",
|
||||||
1 => "Participar",
|
1 => "Participaré",
|
||||||
);
|
);
|
||||||
$a->strings["__ctx:noun__ Not Attending"] = array(
|
$a->strings["__ctx:noun__ Not Attending"] = array(
|
||||||
0 => "No asistir",
|
0 => "No asistir",
|
||||||
1 => "No participar",
|
1 => "No participaré",
|
||||||
);
|
);
|
||||||
$a->strings["__ctx:noun__ Undecided"] = array(
|
$a->strings["__ctx:noun__ Undecided"] = array(
|
||||||
0 => "Indeciso/a",
|
0 => "Indeciso/a",
|
||||||
@ -1007,7 +1007,7 @@ $a->strings["Select a profile:"] = "Seleccionar un perfil:";
|
|||||||
$a->strings["Upload Profile Photo"] = "Subir foto de perfil";
|
$a->strings["Upload Profile Photo"] = "Subir foto de perfil";
|
||||||
$a->strings["or"] = "o";
|
$a->strings["or"] = "o";
|
||||||
$a->strings["skip this step"] = "Omitir este paso";
|
$a->strings["skip this step"] = "Omitir este paso";
|
||||||
$a->strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes de fotos";
|
$a->strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes";
|
||||||
$a->strings["Crop Image"] = "Recortar imagen";
|
$a->strings["Crop Image"] = "Recortar imagen";
|
||||||
$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima.";
|
$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima.";
|
||||||
$a->strings["Done Editing"] = "Edición completada";
|
$a->strings["Done Editing"] = "Edición completada";
|
||||||
@ -1149,8 +1149,8 @@ $a->strings["Delete Album"] = "Borrar álbum";
|
|||||||
$a->strings["Delete Photo"] = "Borrar foto";
|
$a->strings["Delete Photo"] = "Borrar foto";
|
||||||
$a->strings["No photos selected"] = "No hay fotos seleccionadas";
|
$a->strings["No photos selected"] = "No hay fotos seleccionadas";
|
||||||
$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido.";
|
$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido.";
|
||||||
$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado.";
|
$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB usados de la capacidad de almacenamiento de fotos.";
|
||||||
$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado.";
|
$a->strings["%1$.2f MB photo storage used."] = "%1$.2f MB utilizados de la capacidad de almacenamiento de fotos.";
|
||||||
$a->strings["Upload Photos"] = "Subir fotos";
|
$a->strings["Upload Photos"] = "Subir fotos";
|
||||||
$a->strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum";
|
$a->strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum";
|
||||||
$a->strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente";
|
$a->strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente";
|
||||||
@ -1370,7 +1370,7 @@ $a->strings["Friend suggestion sent."] = "Enviar sugerencia a un amigo.";
|
|||||||
$a->strings["Suggest Friends"] = "Sugerir amigos";
|
$a->strings["Suggest Friends"] = "Sugerir amigos";
|
||||||
$a->strings["Suggest a friend for %s"] = "Sugerir un amigo a %s";
|
$a->strings["Suggest a friend for %s"] = "Sugerir un amigo a %s";
|
||||||
$a->strings["Hub not found."] = "Servidor no encontrado";
|
$a->strings["Hub not found."] = "Servidor no encontrado";
|
||||||
$a->strings["Poke/Prod"] = "Dar un toque/Incitar";
|
$a->strings["Poke/Prod"] = "Toque/Incitación";
|
||||||
$a->strings["poke, prod or do other things to somebody"] = "dar un toque, incitar u otras cosas a alguien";
|
$a->strings["poke, prod or do other things to somebody"] = "dar un toque, incitar u otras cosas a alguien";
|
||||||
$a->strings["Recipient"] = "Destinatario";
|
$a->strings["Recipient"] = "Destinatario";
|
||||||
$a->strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario";
|
$a->strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario";
|
||||||
@ -1538,10 +1538,6 @@ $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for t
|
|||||||
$a->strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta.";
|
$a->strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta.";
|
||||||
$a->strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente.";
|
$a->strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente.";
|
||||||
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado la %3\$s de %2\$s con %4\$s";
|
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado la %3\$s de %2\$s con %4\$s";
|
||||||
$a->strings["Export Channel"] = "Exportar el canal";
|
|
||||||
$a->strings["Export your basic channel information to a small 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 hub, but\tdoes not contain your content."] = "Exportar la base de datos de su canal a un pequeño fichero. Este podrá servir como una copia de seguridad de sus conexiones, permisos, perfil y datos básicos, que podrá importar a un nuevo canal, pero sin sus contenidos.";
|
|
||||||
$a->strings["Export Content"] = "Exportar contenidos";
|
|
||||||
$a->strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportar toda la información del canal y todo su contenido a un fichero JSON. Este contendrá todas sus conexiones, permisos, información del perfil y todo su contenido, Sin embargo, a menudo, no será una buena solución para importarlo en una nueva instancia, pues el fichero será MUY voluminoso. Por favor, tenga paciencia - pueden pasar muchos minutos antes de que comience la carga.";
|
|
||||||
$a->strings["No connections."] = "Sin conexiones.";
|
$a->strings["No connections."] = "Sin conexiones.";
|
||||||
$a->strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]";
|
$a->strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]";
|
||||||
$a->strings["invalid target signature"] = "La firma recibida no es válida";
|
$a->strings["invalid target signature"] = "La firma recibida no es válida";
|
||||||
@ -1888,7 +1884,7 @@ $a->strings["Someone writes a followup comment"] = "Alguien escriba un comentari
|
|||||||
$a->strings["You receive a private message"] = "Reciba un mensaje privado";
|
$a->strings["You receive a private message"] = "Reciba un mensaje privado";
|
||||||
$a->strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad";
|
$a->strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad";
|
||||||
$a->strings["You are tagged in a post"] = "Usted ha sido etiquetado en una publicación";
|
$a->strings["You are tagged in a post"] = "Usted ha sido etiquetado en una publicación";
|
||||||
$a->strings["You are poked/prodded/etc. in a post"] = "Recibir un toque o incitación en una publicación";
|
$a->strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una entrada";
|
||||||
$a->strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:";
|
$a->strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:";
|
||||||
$a->strings["Unseen matrix activity"] = "Actividad no vista en la red";
|
$a->strings["Unseen matrix activity"] = "Actividad no vista en la red";
|
||||||
$a->strings["Unseen channel activity"] = "Actividad no vista en el canal";
|
$a->strings["Unseen channel activity"] = "Actividad no vista en el canal";
|
||||||
@ -1933,6 +1929,28 @@ $a->strings["Conversation removed."] = "Conversación eliminada.";
|
|||||||
$a->strings["No messages."] = "Sin mensajes.";
|
$a->strings["No messages."] = "Sin mensajes.";
|
||||||
$a->strings["Delete conversation"] = "Eliminar conversación";
|
$a->strings["Delete conversation"] = "Eliminar conversación";
|
||||||
$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
|
$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
|
||||||
|
$a->strings["Export Channel"] = "Exportar el canal";
|
||||||
|
$a->strings["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."] = "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.";
|
||||||
|
$a->strings["Export Content"] = "Exportar contenidos";
|
||||||
|
$a->strings["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 connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "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.";
|
||||||
|
$a->strings["Export your posts from a given year or month:"] = "Exporta sus entradas de un año o mes determinados.";
|
||||||
|
$a->strings["You may also export your posts and conversations for a particular year or month. Click on one of the recent years or months below."] = "También puede exportar sus entradas y conversaciones de un año o mes en particular. Hágalo en primer lugar con uno de los años o meses más recientes.";
|
||||||
|
$a->strings["Jan"] = "Ene";
|
||||||
|
$a->strings["Feb"] = "Feb";
|
||||||
|
$a->strings["Mar"] = "Mar";
|
||||||
|
$a->strings["Apr"] = "Abr";
|
||||||
|
$a->strings["Jun"] = "Jun";
|
||||||
|
$a->strings["Jul"] = "Jul";
|
||||||
|
$a->strings["Aug"] = "Ago";
|
||||||
|
$a->strings["Sep"] = "Sep";
|
||||||
|
$a->strings["Oct"] = "Oct";
|
||||||
|
$a->strings["Nov"] = "Nov";
|
||||||
|
$a->strings["Dec"] = "Dic";
|
||||||
|
$a->strings["If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, inténtelo de nuevo seleccionando un rango de fechas más pequeño.";
|
||||||
|
$a->strings["Or adjust the date in your browser location bar to select other dates. For example the year 2013; <a href=\"%1\$s/2013\">%1\$s/2013</a> or the month September 2013; <a href=\"%1\$s/2013/9\">%1\$s/2013/9</a>"] = "Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Por ejemlo, el año 2013: <a href=\"%1\$s/2013\">%1\$s/2013</a> o el mes de septiembre de 2013: <a href=\"%1\$s/2013/9\">%1\$s/2013/9</a>";
|
||||||
|
$a->strings["Please visit"] = "Por favor, visite";
|
||||||
|
$a->strings["on another hub to import the backup files(s)."] = "en otro servidor hub para importar el fichero (s) de copia de seguridad.";
|
||||||
|
$a->strings["We advise you to clone the channel on the new hub first and than to import the backup file(s) (from the same channel) in chronological order. Importing the backup files into another channel will certainly give permission issues."] = "Aviso: al clonar el canal en un nuevo servidor hub, en primer lugar tiene que importar el fichero (s) con las copias de seguridad (desde el mismo canal) en orden cronológico. Importar los ficheros de copia de seguridad en otro canal le dará, con toda seguridad, problemas de permisos.";
|
||||||
$a->strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos";
|
$a->strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos";
|
||||||
$a->strings["Total votes"] = "Total de votos";
|
$a->strings["Total votes"] = "Total de votos";
|
||||||
$a->strings["Average Rating"] = "Valoración media";
|
$a->strings["Average Rating"] = "Valoración media";
|
||||||
@ -2009,15 +2027,15 @@ $a->strings["Unable to communicate with requested channel."] = "Imposible comuni
|
|||||||
$a->strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado.";
|
$a->strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado.";
|
||||||
$a->strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló.";
|
$a->strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló.";
|
||||||
$a->strings["Message deleted."] = "Mensaje eliminado.";
|
$a->strings["Message deleted."] = "Mensaje eliminado.";
|
||||||
$a->strings["Message recalled."] = "Mensaje recuperado.";
|
$a->strings["Message recalled."] = "Mensaje revocado.";
|
||||||
$a->strings["Send Private Message"] = "Enviar un mensaje privado";
|
$a->strings["Send Private Message"] = "Enviar un mensaje privado";
|
||||||
$a->strings["To:"] = "Para:";
|
$a->strings["To:"] = "Para:";
|
||||||
$a->strings["Subject:"] = "Asunto:";
|
$a->strings["Subject:"] = "Asunto:";
|
||||||
$a->strings["Send"] = "Enviar";
|
$a->strings["Send"] = "Enviar";
|
||||||
$a->strings["Message not found."] = "No se encuentra el mensaje.";
|
$a->strings["Message not found."] = "No se encuentra el mensaje.";
|
||||||
$a->strings["Delete message"] = "Mensaje eliminado";
|
$a->strings["Delete message"] = "Mensaje eliminado";
|
||||||
$a->strings["Recall message"] = "Recuperar el mensaje";
|
$a->strings["Recall message"] = "Revocar el mensaje";
|
||||||
$a->strings["Message has been recalled."] = "El mensaje ha sido recuperado.";
|
$a->strings["Message has been recalled."] = "El mensaje ha sido revocado.";
|
||||||
$a->strings["Private Conversation"] = "Conversación privada";
|
$a->strings["Private Conversation"] = "Conversación privada";
|
||||||
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero <strong>puede</strong> responder desde la página de perfil del remitente.";
|
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero <strong>puede</strong> responder desde la página de perfil del remitente.";
|
||||||
$a->strings["Send Reply"] = "Responder";
|
$a->strings["Send Reply"] = "Responder";
|
||||||
@ -2102,8 +2120,8 @@ $a->strings["Item float"] = "Elemento flotante";
|
|||||||
$a->strings["Left offset of the section element"] = "Desplazamiento izquierdo del elemento de la sección";
|
$a->strings["Left offset of the section element"] = "Desplazamiento izquierdo del elemento de la sección";
|
||||||
$a->strings["Right offset of the section element"] = "Desplazamiento derecho del elemento de la sección";
|
$a->strings["Right offset of the section element"] = "Desplazamiento derecho del elemento de la sección";
|
||||||
$a->strings["Section width"] = "Ancho de la sección";
|
$a->strings["Section width"] = "Ancho de la sección";
|
||||||
$a->strings["Left offset of the aside"] = "Desplazamiento izquierdo del lateral";
|
$a->strings["Left offset of the aside"] = "Desplazamiento izquierdo del panel lateral";
|
||||||
$a->strings["Right offset of the aside element"] = "Desplazamiento derecho del elemento lateral";
|
$a->strings["Right offset of the aside element"] = "Desplazamiento derecho del elemento del panel lateral";
|
||||||
$a->strings["Light (Red Matrix default)"] = "Ligero (predeterminado de RedMatrix)";
|
$a->strings["Light (Red Matrix default)"] = "Ligero (predeterminado de RedMatrix)";
|
||||||
$a->strings["Select scheme"] = "Elegir un esquema";
|
$a->strings["Select scheme"] = "Elegir un esquema";
|
||||||
$a->strings["Narrow navbar"] = "Estrechar la barra de navegación";
|
$a->strings["Narrow navbar"] = "Estrechar la barra de navegación";
|
||||||
@ -2145,5 +2163,5 @@ $a->strings["Forgot your password?"] = "¿Olvidó su contraseña?";
|
|||||||
$a->strings["toggle mobile"] = "cambiar a modo móvil";
|
$a->strings["toggle mobile"] = "cambiar a modo móvil";
|
||||||
$a->strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, corríjalo.";
|
$a->strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, corríjalo.";
|
||||||
$a->strings["[red] Website SSL error for %s"] = "[red] Error SSL del sitio web en %s";
|
$a->strings["[red] Website SSL error for %s"] = "[red] Error SSL del sitio web en %s";
|
||||||
$a->strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no se están funcionando.";
|
$a->strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no están funcionando.";
|
||||||
$a->strings["[red] Cron tasks not running on %s"] = "[red] Las tareas de Cron no están funcionando en %s";
|
$a->strings["[red] Cron tasks not running on %s"] = "[red] Las tareas de Cron no están funcionando en %s";
|
||||||
|
11699
view/nl/messages.po
11699
view/nl/messages.po
File diff suppressed because it is too large
Load Diff
2875
view/nl/strings.php
2875
view/nl/strings.php
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user