From 885bd09598667aac1e6cdbff82dd236bbcaf86e4 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 1 Jan 2017 22:05:24 +0100 Subject: [PATCH 01/11] Bugfix: fix the frio poke template --- view/theme/frio/templates/poke_content.tpl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/view/theme/frio/templates/poke_content.tpl b/view/theme/frio/templates/poke_content.tpl index 02c7f3a83d..6fb3b399b1 100644 --- a/view/theme/frio/templates/poke_content.tpl +++ b/view/theme/frio/templates/poke_content.tpl @@ -6,10 +6,9 @@
-
+ {{* The input field with the recipient name*}}
@@ -17,6 +16,7 @@
+ {{* The drop-down list with different actions *}}
+ {{* The checkbox to select if the "poke message" should be private *}}
@@ -41,7 +42,7 @@
-
+
From 8c579735f9fedf85c2bdb99a738aca55cf114d00 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 1 Jan 2017 21:21:16 +0000 Subject: [PATCH 02/11] Diaspora: Add a mention when doing a thread reply --- mod/item.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/item.php b/mod/item.php index b902f1e354..0a53c4266e 100644 --- a/mod/item.php +++ b/mod/item.php @@ -568,8 +568,8 @@ function item_post(&$a) { * add a statusnet style reply tag if the original post was from there * and we are replying, and there isn't one already */ - - if($parent AND ($parent_contact['network'] === NETWORK_OSTATUS)) { + if ($parent AND (($parent_contact['network'] == NETWORK_OSTATUS) OR + (($parent_item['uri'] != $thr_parent) AND ($parent_contact['network'] == NETWORK_DIASPORA)))) { if ($parent_contact['id'] != "") $contact = '@'.$parent_contact['nick'].'+'.$parent_contact['id']; else From 8aaf09f9ee50995b126fdd885e7399cdb94d21a1 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 1 Jan 2017 23:18:42 +0000 Subject: [PATCH 03/11] Automatically add a Diaspora mention --- include/bb2diaspora.php | 35 +++++++++++++++++++++++++++++++---- mod/item.php | 28 +++++++++++----------------- 2 files changed, 42 insertions(+), 21 deletions(-) diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 842dbf0b1c..53e9ebfd04 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -69,6 +69,28 @@ function diaspora2bb($s) { return $s; } +/** + * @brief Callback function to replace a Friendica style mention in a mention for Diaspora + * + * @param array $match Matching values for the callback + * @return text Replaced mention + */ +function diaspora_mentions($match) { + + $contact = get_contact_details_by_url($match[3]); + + if (!isset($contact['addr'])) { + $contact = Probe::uri($match[3]); + } + + if (!isset($contact['addr'])) { + return $match[0]; + } + + $mention = '@{'.$match[2].'; '.$contact['addr'].'}'; + return $mention; +} + function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) { $a = get_app(); @@ -108,8 +130,8 @@ function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) { } else $Text = bbcode($Text, $preserve_nl, false, 4); - // mask some special HTML chars from conversation to markdown - $Text = str_replace(array('<','>','&'),array('&_lt_;','&_gt_;','&_amp_;'),$Text); + // mask some special HTML chars from conversation to markdown + $Text = str_replace(array('<','>','&'),array('&_lt_;','&_gt_;','&_amp_;'),$Text); // If a link is followed by a quote then there should be a newline before it // Maybe we should make this newline at every time before a quote. @@ -120,8 +142,8 @@ function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) { // Now convert HTML to Markdown $Text = new HTML_To_Markdown($Text); - // unmask the special chars back to HTML - $Text = str_replace(array('&_lt_;','&_gt_;','&_amp_;'),array('<','>','&'),$Text); + // unmask the special chars back to HTML + $Text = str_replace(array('&_lt_;','&_gt_;','&_amp_;'),array('<','>','&'),$Text); $a->save_timestamp($stamp1, "parser"); @@ -132,6 +154,11 @@ function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) { // the Diaspora signature verification and cause the item to disappear $Text = trim($Text); + if ($fordiaspora) { + $URLSearchString = "^\[\]"; + $Text = preg_replace_callback("/([@]\[(.*?)\])\(([$URLSearchString]*)\)/ism", 'diaspora_mentions', $Text); + } + call_hooks('bb2diaspora',$Text); return $Text; diff --git a/mod/item.php b/mod/item.php index 0a53c4266e..7101440ef8 100644 --- a/mod/item.php +++ b/mod/item.php @@ -95,8 +95,7 @@ function item_post(&$a) { $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", intval($parent) ); - } - elseif ($parent_uri && local_user()) { + } elseif ($parent_uri && local_user()) { // This is coming from an API source, and we are logged in $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($parent_uri), @@ -104,6 +103,8 @@ function item_post(&$a) { ); } + $thr_parent_item = $r[0]; + // if this isn't the real parent of the conversation, find it if (dbm::is_result($r)) { $parid = $r[0]['parent']; @@ -139,18 +140,9 @@ function item_post(&$a) { // If the contact id doesn't fit with the contact, then set the contact to null $thrparent = q("SELECT `author-link`, `network` FROM `item` WHERE `uri` = '%s' LIMIT 1", dbesc($thr_parent)); - if (count($thrparent) AND ($thrparent[0]["network"] === NETWORK_OSTATUS) + if (count($thrparent) AND in_array($thrparent[0]["network"], array(NETWORK_OSTATUS, NETWORK_DIASPORA)) AND (normalise_link($parent_contact["url"]) != normalise_link($thrparent[0]["author-link"]))) { - $parent_contact = null; - - $r = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1", - dbesc(normalise_link($thrparent[0]["author-link"]))); - if (dbm::is_result($r)) { - $parent_contact = $r[0]; - $parent_contact["thumb"] = $parent_contact["photo"]; - $parent_contact["micro"] = $parent_contact["photo"]; - unset($parent_contact["id"]); - } + $parent_contact = get_contact_details_by_url($thrparent[0]["author-link"]); if (!isset($parent_contact["nick"])) { require_once("include/Scrape.php"); @@ -569,11 +561,13 @@ function item_post(&$a) { * and we are replying, and there isn't one already */ if ($parent AND (($parent_contact['network'] == NETWORK_OSTATUS) OR - (($parent_item['uri'] != $thr_parent) AND ($parent_contact['network'] == NETWORK_DIASPORA)))) { - if ($parent_contact['id'] != "") - $contact = '@'.$parent_contact['nick'].'+'.$parent_contact['id']; - else + (($parent_item['uri'] != $thr_parent) AND ($thr_parent_item['network'] == NETWORK_DIASPORA)))) { + + if ($thr_parent_item['network'] != NETWORK_DIASPORA) { $contact = '@[url='.$parent_contact['url'].']'.$parent_contact['nick'].'[/url]'; + } else { + $contact = '@[url='.$parent_contact['url'].']'.$parent_contact['name'].'[/url]'; + } if (!in_array($contact,$tags)) { $body = $contact.' '.$body; From 212f78386dd8760a7e750c4dfed2b75f278d1324 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 1 Jan 2017 23:35:34 +0000 Subject: [PATCH 04/11] Deactivated the auto mention - we should do it differently. --- mod/item.php | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/mod/item.php b/mod/item.php index 7101440ef8..31d1a4acac 100644 --- a/mod/item.php +++ b/mod/item.php @@ -560,14 +560,8 @@ function item_post(&$a) { * add a statusnet style reply tag if the original post was from there * and we are replying, and there isn't one already */ - if ($parent AND (($parent_contact['network'] == NETWORK_OSTATUS) OR - (($parent_item['uri'] != $thr_parent) AND ($thr_parent_item['network'] == NETWORK_DIASPORA)))) { - - if ($thr_parent_item['network'] != NETWORK_DIASPORA) { - $contact = '@[url='.$parent_contact['url'].']'.$parent_contact['nick'].'[/url]'; - } else { - $contact = '@[url='.$parent_contact['url'].']'.$parent_contact['name'].'[/url]'; - } + if ($parent AND ($parent_contact['network'] == NETWORK_OSTATUS)) { + $contact = '@[url='.$parent_contact['url'].']'.$parent_contact['nick'].'[/url]'; if (!in_array($contact,$tags)) { $body = $contact.' '.$body; From 79b5eb63db5020564d5d868f0a48d273001fd18a Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 1 Jan 2017 23:37:29 +0000 Subject: [PATCH 05/11] Some more reverts --- mod/item.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/item.php b/mod/item.php index 31d1a4acac..8290acb9e6 100644 --- a/mod/item.php +++ b/mod/item.php @@ -140,7 +140,7 @@ function item_post(&$a) { // If the contact id doesn't fit with the contact, then set the contact to null $thrparent = q("SELECT `author-link`, `network` FROM `item` WHERE `uri` = '%s' LIMIT 1", dbesc($thr_parent)); - if (count($thrparent) AND in_array($thrparent[0]["network"], array(NETWORK_OSTATUS, NETWORK_DIASPORA)) + if (count($thrparent) AND ($thrparent[0]["network"] === NETWORK_OSTATUS) AND (normalise_link($parent_contact["url"]) != normalise_link($thrparent[0]["author-link"]))) { $parent_contact = get_contact_details_by_url($thrparent[0]["author-link"]); From db2d0e009503539b134fd43837d440028d5b8de7 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 1 Jan 2017 23:38:32 +0000 Subject: [PATCH 06/11] removal of useless variable --- mod/item.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/mod/item.php b/mod/item.php index 8290acb9e6..9e38382cc3 100644 --- a/mod/item.php +++ b/mod/item.php @@ -103,8 +103,6 @@ function item_post(&$a) { ); } - $thr_parent_item = $r[0]; - // if this isn't the real parent of the conversation, find it if (dbm::is_result($r)) { $parid = $r[0]['parent']; From 9a6478b273e1fb9866948baa92b101d765f6264a Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 2 Jan 2017 07:00:44 +0000 Subject: [PATCH 07/11] Don't be greedy. --- include/bb2diaspora.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index 53e9ebfd04..6ddbb6ef30 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -156,7 +156,7 @@ function bb2diaspora($Text,$preserve_nl = false, $fordiaspora = true) { if ($fordiaspora) { $URLSearchString = "^\[\]"; - $Text = preg_replace_callback("/([@]\[(.*?)\])\(([$URLSearchString]*)\)/ism", 'diaspora_mentions', $Text); + $Text = preg_replace_callback("/([@]\[(.*?)\])\(([$URLSearchString]*?)\)/ism", 'diaspora_mentions', $Text); } call_hooks('bb2diaspora',$Text); From e74cee1e428a2ec369a67fe9944f88bcb60402ff Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 2 Jan 2017 08:22:39 +0100 Subject: [PATCH 08/11] DE translation of the core --- view/lang/de/messages.po | 8 ++++---- view/lang/de/strings.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index dc69f40a8d..56f4369083 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -22,7 +22,7 @@ # Matthias Moritz , 2012 # Oliver , 2015 # Oliver , 2012 -# rabuzarus , 2016 +# rabuzarus , 2016-2017 # Sennewood , 2013 # Sennewood , 2012-2013 # silke m , 2015 @@ -36,8 +36,8 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-12-19 07:46+0100\n" -"PO-Revision-Date: 2016-12-19 11:19+0000\n" -"Last-Translator: Tobias Diekershoff \n" +"PO-Revision-Date: 2017-01-01 21:19+0000\n" +"Last-Translator: rabuzarus \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -5796,7 +5796,7 @@ msgstr "Browser alle xx Sekunden aktualisieren" #: mod/settings.php:1003 msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten." +msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten." #: mod/settings.php:1004 msgid "Number of items to display per page:" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index 67af0eb7ef..86fa4057fb 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -1337,7 +1337,7 @@ $a->strings["Mobile Theme:"] = "Mobiles Theme"; $a->strings["Suppress warning of insecure networks"] = "Warnung wegen unsicheren Netzwerken unterdrücken"; $a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."; $a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten."; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."; $a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; $a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; From e301dc7607092ea02d9b4d759d8a8c330dc7f827 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 2 Jan 2017 08:22:52 +0100 Subject: [PATCH 09/11] ES translation of the core --- view/lang/es/messages.po | 10117 +++++++++++++++++++------------------ view/lang/es/strings.php | 2633 +++++----- 2 files changed, 6387 insertions(+), 6363 deletions(-) diff --git a/view/lang/es/messages.po b/view/lang/es/messages.po index 679995c095..ec04800226 100644 --- a/view/lang/es/messages.po +++ b/view/lang/es/messages.po @@ -35,8 +35,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-06 08:42+0100\n" -"PO-Revision-Date: 2016-12-07 12:42+0000\n" +"POT-Creation-Date: 2016-12-19 07:46+0100\n" +"PO-Revision-Date: 2016-12-28 11:37+0000\n" "Last-Translator: Albert\n" "Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n" "MIME-Version: 1.0\n" @@ -45,185 +45,6 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: boot.php:970 -msgid "Delete this item?" -msgstr "¿Eliminar este elemento?" - -#: boot.php:971 mod/content.php:727 mod/content.php:945 mod/photos.php:1589 -#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 -#: object/Item.php:719 -msgid "Comment" -msgstr "Comentar" - -#: boot.php:972 include/contact_widgets.php:242 include/ForumManager.php:119 -#: include/items.php:2241 mod/content.php:624 object/Item.php:432 -#: view/theme/vier/theme.php:260 -msgid "show more" -msgstr "ver más" - -#: boot.php:973 -msgid "show fewer" -msgstr "ver menos" - -#: boot.php:1655 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Falló la actualización de %s. Mira los registros de errores." - -#: boot.php:1767 -msgid "Create a New Account" -msgstr "Crear una nueva cuenta" - -#: boot.php:1768 include/nav.php:109 mod/register.php:289 -msgid "Register" -msgstr "Registrarse" - -#: boot.php:1792 include/nav.php:78 view/theme/frio/theme.php:246 -msgid "Logout" -msgstr "Salir" - -#: boot.php:1793 include/nav.php:95 mod/bookmarklet.php:12 -msgid "Login" -msgstr "Acceder" - -#: boot.php:1795 mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Apodo o Correo electrónico: " - -#: boot.php:1796 -msgid "Password: " -msgstr "Contraseña: " - -#: boot.php:1797 -msgid "Remember me" -msgstr "Recordarme" - -#: boot.php:1800 -msgid "Or login using OpenID: " -msgstr "O inicia sesión usando OpenID: " - -#: boot.php:1806 -msgid "Forgot your password?" -msgstr "¿Olvidaste la contraseña?" - -#: boot.php:1807 mod/lostpass.php:109 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: boot.php:1809 -msgid "Website Terms of Service" -msgstr "Términos de uso del sitio" - -#: boot.php:1810 -msgid "terms of service" -msgstr "Términos de uso" - -#: boot.php:1812 -msgid "Website Privacy Policy" -msgstr "Política de privacidad del sitio" - -#: boot.php:1813 -msgid "privacy policy" -msgstr "Política de privacidad" - -#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 -msgid "Miscellaneous" -msgstr "Varios" - -#: include/datetime.php:183 include/identity.php:629 -msgid "Birthday:" -msgstr "Fecha de nacimiento:" - -#: include/datetime.php:185 mod/profiles.php:728 -msgid "Age: " -msgstr "Edad: " - -#: include/datetime.php:187 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD o MM-DD" - -#: include/datetime.php:341 -msgid "never" -msgstr "nunca" - -#: include/datetime.php:347 -msgid "less than a second ago" -msgstr "hace menos de un segundo" - -#: include/datetime.php:350 -msgid "year" -msgstr "año" - -#: include/datetime.php:350 -msgid "years" -msgstr "años" - -#: include/datetime.php:351 include/event.php:480 mod/events.php:389 -#: mod/cal.php:284 -msgid "month" -msgstr "mes" - -#: include/datetime.php:351 -msgid "months" -msgstr "meses" - -#: include/datetime.php:352 include/event.php:481 mod/events.php:390 -#: mod/cal.php:285 -msgid "week" -msgstr "semana" - -#: include/datetime.php:352 -msgid "weeks" -msgstr "semanas" - -#: include/datetime.php:353 include/event.php:482 mod/events.php:391 -#: mod/cal.php:286 -msgid "day" -msgstr "día" - -#: include/datetime.php:353 -msgid "days" -msgstr "días" - -#: include/datetime.php:354 -msgid "hour" -msgstr "hora" - -#: include/datetime.php:354 -msgid "hours" -msgstr "horas" - -#: include/datetime.php:355 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:355 -msgid "minutes" -msgstr "minutos" - -#: include/datetime.php:356 -msgid "second" -msgstr "segundo" - -#: include/datetime.php:356 -msgid "seconds" -msgstr "segundos" - -#: include/datetime.php:365 -#, php-format -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" - -#: include/datetime.php:572 -#, php-format -msgid "%s's birthday" -msgstr "Cumpleaños de %s" - -#: include/datetime.php:573 include/dfrn.php:1109 -#, php-format -msgid "Happy Birthday %s" -msgstr "Feliz cumpleaños %s" - #: include/contact_widgets.php:6 msgid "Add New Contact" msgstr "Añadir nuevo contacto" @@ -236,8 +57,9 @@ msgstr "Escribe la dirección o página web" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel" -#: include/contact_widgets.php:10 include/identity.php:218 mod/dirfind.php:201 -#: mod/match.php:87 mod/allfriends.php:82 mod/suggest.php:101 +#: include/contact_widgets.php:10 include/identity.php:218 +#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87 +#: mod/suggest.php:101 msgid "Connect" msgstr "Conectar" @@ -256,10 +78,9 @@ msgstr "Buscar personas" msgid "Enter name or interest" msgstr "Introduzce nombre o intereses" -#: include/contact_widgets.php:32 include/conversation.php:981 -#: include/Contact.php:361 mod/dirfind.php:204 mod/match.php:72 -#: mod/allfriends.php:66 mod/contacts.php:602 mod/follow.php:103 -#: mod/suggest.php:83 +#: include/contact_widgets.php:32 include/Contact.php:354 +#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204 +#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103 msgid "Connect/Follow" msgstr "Conectar/Seguir" @@ -315,80 +136,682 @@ msgid_plural "%d contacts in common" msgstr[0] "%d contacto en común" msgstr[1] "%d contactos en común" -#: include/NotificationsManager.php:153 -msgid "System" -msgstr "Sistema" +#: include/contact_widgets.php:242 include/ForumManager.php:119 +#: include/items.php:2245 mod/content.php:624 object/Item.php:432 +#: view/theme/vier/theme.php:260 boot.php:972 +msgid "show more" +msgstr "ver más" -#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:411 -#: view/theme/frio/theme.php:256 -msgid "Network" -msgstr "Red" +#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025 +#: view/theme/vier/theme.php:255 +msgid "Forums" +msgstr "Foros" -#: include/NotificationsManager.php:167 mod/profiles.php:703 -#: mod/network.php:846 -msgid "Personal" -msgstr "Personal" +#: include/ForumManager.php:116 view/theme/vier/theme.php:257 +msgid "External link to forum" +msgstr "Enlace externo al foro" -#: include/NotificationsManager.php:174 include/nav.php:105 -#: include/nav.php:161 -msgid "Home" -msgstr "Inicio" +#: include/profile_selectors.php:6 +msgid "Male" +msgstr "Hombre" -#: include/NotificationsManager.php:181 include/nav.php:166 -msgid "Introductions" -msgstr "Presentaciones" +#: include/profile_selectors.php:6 +msgid "Female" +msgstr "Mujer" -#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 +#: include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Actualmente Hombre" + +#: include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Actualmente Mujer" + +#: include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Mayormente Hombre" + +#: include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Mayormente Mujer" + +#: include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgenérico" + +#: include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Bisexual" + +#: include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transexual" + +#: include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodita" + +#: include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" + +#: include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Sin especificar" + +#: include/profile_selectors.php:6 +msgid "Other" +msgstr "Otro" + +#: include/profile_selectors.php:6 include/conversation.php:1487 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indeciso" + +#: include/profile_selectors.php:23 +msgid "Males" +msgstr "Hombres" + +#: include/profile_selectors.php:23 +msgid "Females" +msgstr "Mujeres" + +#: include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbiana" + +#: include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Sin preferencias" + +#: include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexual" + +#: include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexual" + +#: include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Célibe" + +#: include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Virgen" + +#: include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Desviado" + +#: include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetichista" + +#: include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Orgiástico" + +#: include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asexual" + +#: include/profile_selectors.php:42 +msgid "Single" +msgstr "Soltero" + +#: include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Solitario" + +#: include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponible" + +#: include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "No disponible" + +#: include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Enamorado" + +#: include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Loco/a por alguien" + +#: include/profile_selectors.php:42 +msgid "Dating" +msgstr "De citas" + +#: include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infiel" + +#: include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Adicto al sexo" + +#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284 +msgid "Friends" +msgstr "Amigos" + +#: include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amigos con beneficios" + +#: include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Comprometido/a" + +#: include/profile_selectors.php:42 +msgid "Married" +msgstr "Casado/a" + +#: include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Casado imaginario" + +#: include/profile_selectors.php:42 +msgid "Partners" +msgstr "Socios" + +#: include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Cohabitando" + +#: include/profile_selectors.php:42 +msgid "Common law" +msgstr "Pareja de hecho" + +#: include/profile_selectors.php:42 +msgid "Happy" +msgstr "Feliz" + +#: include/profile_selectors.php:42 +msgid "Not looking" +msgstr "No busca relación" + +#: include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Traicionado/a" + +#: include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separado/a" + +#: include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Inestable" + +#: include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorciado/a" + +#: include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Divorciado imaginario" + +#: include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Viudo/a" + +#: include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incierto" + +#: include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Es complicado" + +#: include/profile_selectors.php:42 +msgid "Don't care" +msgstr "No te importa" + +#: include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Pregúntame" + +#: include/dba_pdo.php:72 include/dba.php:56 #, php-format -msgid "%s commented on %s's post" -msgstr "%s comentó la publicación de %s" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No se puede encontrar información DNS para la base de datos del servidor '%s'" -#: include/NotificationsManager.php:243 +#: include/auth.php:45 +msgid "Logged out." +msgstr "Sesión finalizada" + +#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 +msgid "Login failed." +msgstr "Accesso fallido." + +#: include/auth.php:132 include/user.php:75 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." + +#: include/auth.php:132 include/user.php:75 +msgid "The error message was:" +msgstr "El mensaje del error fue:" + +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente." + +#: include/group.php:209 +msgid "Default privacy group for new contacts" +msgstr "Grupo por defecto para nuevos contactos" + +#: include/group.php:242 +msgid "Everybody" +msgstr "Todo el mundo" + +#: include/group.php:265 +msgid "edit" +msgstr "editar" + +#: include/group.php:286 mod/newmember.php:61 +msgid "Groups" +msgstr "Grupos" + +#: include/group.php:288 +msgid "Edit groups" +msgstr "Editar grupo" + +#: include/group.php:290 +msgid "Edit group" +msgstr "Editar grupo" + +#: include/group.php:291 +msgid "Create a new group" +msgstr "Crear un nuevo grupo" + +#: include/group.php:292 mod/group.php:94 mod/group.php:178 +msgid "Group Name: " +msgstr "Nombre del grupo: " + +#: include/group.php:294 +msgid "Contacts not in any group" +msgstr "Contactos sin grupo" + +#: include/group.php:296 mod/network.php:201 +msgid "add" +msgstr "añadir" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Desconocido | No clasificado" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Bloquear inmediatamente" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Sospechoso, spammer, auto-publicidad" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Le conozco, sin opinión" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, probablemente inofensivo" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Buena reputación, tiene mi confianza" + +#: include/contact_selectors.php:56 mod/admin.php:890 +msgid "Frequently" +msgstr "Frequentemente" + +#: include/contact_selectors.php:57 mod/admin.php:891 +msgid "Hourly" +msgstr "Cada hora" + +#: include/contact_selectors.php:58 mod/admin.php:892 +msgid "Twice daily" +msgstr "Dos veces al día" + +#: include/contact_selectors.php:59 mod/admin.php:893 +msgid "Daily" +msgstr "Diariamente" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Semanalmente" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensualmente" + +#: include/contact_selectors.php:76 mod/dfrn_request.php:868 +msgid "Friendica" +msgstr "Friendica" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 +msgid "Email" +msgstr "Correo electrónico" + +#: include/contact_selectors.php:80 mod/settings.php:842 +#: mod/dfrn_request.php:870 +msgid "Diaspora" +msgstr "Diaspora*" + +#: include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Conector Diaspora" + +#: include/contact_selectors.php:91 +msgid "GNU Social" +msgstr "GNUsocial (OStatus)" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Hubzilla/Redmatrix" +msgstr "Hubzilla/Redmatrix" + +#: include/acl_selectors.php:327 +msgid "Post to Email" +msgstr "Publicar mediante correo electrónico" + +#: include/acl_selectors.php:332 #, php-format -msgid "%s created a new post" -msgstr "%s creó una nueva publicación" +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Conectores deshabilitados, ya que \"%s\" es habilitado." -#: include/NotificationsManager.php:256 +#: include/acl_selectors.php:333 mod/settings.php:1181 +msgid "Hide your profile details from unknown viewers?" +msgstr "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?" + +#: include/acl_selectors.php:338 +msgid "Visible to everybody" +msgstr "Visible para cualquiera" + +#: include/acl_selectors.php:339 view/theme/vier/config.php:103 +msgid "show" +msgstr "mostrar" + +#: include/acl_selectors.php:340 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "no mostrar" + +#: include/acl_selectors.php:346 mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: dirección de correo electrónico" + +#: include/acl_selectors.php:347 mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com" + +#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 +#: mod/photos.php:1535 +msgid "Permissions" +msgstr "Permisos" + +#: include/acl_selectors.php:350 +msgid "Close" +msgstr "Cerrado" + +#: include/like.php:163 include/conversation.php:130 +#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87 +#: mod/tagger.php:62 +msgid "photo" +msgstr "foto" + +#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125 +#: include/conversation.php:134 include/conversation.php:261 +#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62 +msgid "status" +msgstr "estado" + +#: include/like.php:165 include/conversation.php:122 +#: include/conversation.php:258 include/text.php:1802 +msgid "event" +msgstr "evento" + +#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141 #, php-format -msgid "%s liked %s's post" -msgstr "A %s le gusta la publicación de %s" +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s le gusta %3$s de %2$s" -#: include/NotificationsManager.php:267 +#: include/like.php:184 include/conversation.php:144 #, php-format -msgid "%s disliked %s's post" -msgstr "A %s no le gusta la publicación de %s" +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s no le gusta %3$s de %2$s" -#: include/NotificationsManager.php:278 +#: include/like.php:186 #, php-format -msgid "%s is attending %s's event" -msgstr "%s está asistiendo al evento %s's" +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s atenderá %2$s's %3$s" -#: include/NotificationsManager.php:289 +#: include/like.php:188 #, php-format -msgid "%s is not attending %s's event" -msgstr "%s no está asistiendo al evento %s's" +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s no atenderá %2$s's %3$s" -#: include/NotificationsManager.php:300 +#: include/like.php:190 #, php-format -msgid "%s may attend %s's event" -msgstr "%s podría asistir al evento %s's" +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s puede que atienda %2$s's %3$s" -#: include/NotificationsManager.php:315 +#: include/message.php:15 include/message.php:173 +msgid "[no subject]" +msgstr "[sin asunto]" + +#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056 +#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218 +#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478 +msgid "Wall Photos" +msgstr "Foto del Muro" + +#: include/plugin.php:526 include/plugin.php:528 +msgid "Click here to upgrade." +msgstr "Pulsa aquí para actualizar." + +#: include/plugin.php:534 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Esta acción excede los límites permitidos por tu subscripción." + +#: include/plugin.php:539 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está permitida para tu subscripción." + +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Error decodificando el archivo de cuenta" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? " + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Error! No puedo consultar el apodo" + +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "%s is now friends with %s" -msgstr "%s es ahora es amigo de %s" +msgid "User '%s' already exists on this server!" +msgstr "La cuenta '%s' ya existe en este servidor!" -#: include/NotificationsManager.php:748 -msgid "Friend Suggestion" -msgstr "Propuestas de amistad" +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Error al crear la cuenta" -#: include/NotificationsManager.php:781 -msgid "Friend/Connect Request" -msgstr "Solicitud de Amistad/Conexión" +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Error de creación del perfil de la cuenta" -#: include/NotificationsManager.php:781 -msgid "New Follower" -msgstr "Nuevo seguidor" +#: include/uimport.php:222 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contactos no encontrado" +msgstr[1] "%d contactos no importado" + +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña." + +#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705 +msgid "Miscellaneous" +msgstr "Varios" + +#: include/datetime.php:183 include/identity.php:629 +msgid "Birthday:" +msgstr "Fecha de nacimiento:" + +#: include/datetime.php:185 mod/profiles.php:728 +msgid "Age: " +msgstr "Edad: " + +#: include/datetime.php:187 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD o MM-DD" + +#: include/datetime.php:341 +msgid "never" +msgstr "nunca" + +#: include/datetime.php:347 +msgid "less than a second ago" +msgstr "hace menos de un segundo" + +#: include/datetime.php:350 +msgid "year" +msgstr "año" + +#: include/datetime.php:350 +msgid "years" +msgstr "años" + +#: include/datetime.php:351 include/event.php:480 mod/cal.php:284 +#: mod/events.php:389 +msgid "month" +msgstr "mes" + +#: include/datetime.php:351 +msgid "months" +msgstr "meses" + +#: include/datetime.php:352 include/event.php:481 mod/cal.php:285 +#: mod/events.php:390 +msgid "week" +msgstr "semana" + +#: include/datetime.php:352 +msgid "weeks" +msgstr "semanas" + +#: include/datetime.php:353 include/event.php:482 mod/cal.php:286 +#: mod/events.php:391 +msgid "day" +msgstr "día" + +#: include/datetime.php:353 +msgid "days" +msgstr "días" + +#: include/datetime.php:354 +msgid "hour" +msgstr "hora" + +#: include/datetime.php:354 +msgid "hours" +msgstr "horas" + +#: include/datetime.php:355 +msgid "minute" +msgstr "minuto" + +#: include/datetime.php:355 +msgid "minutes" +msgstr "minutos" + +#: include/datetime.php:356 +msgid "second" +msgstr "segundo" + +#: include/datetime.php:356 +msgid "seconds" +msgstr "segundos" + +#: include/datetime.php:365 +#, php-format +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" + +#: include/datetime.php:572 +#, php-format +msgid "%s's birthday" +msgstr "Cumpleaños de %s" + +#: include/datetime.php:573 include/dfrn.php:1109 +#, php-format +msgid "Happy Birthday %s" +msgstr "Feliz cumpleaños %s" #: include/enotify.php:24 msgid "Friendica Notification" @@ -687,110 +1110,23 @@ msgstr "Nombre completo:\t%1$s\\nUbicación del sitio:\t%2$s\\nLogin Nombre:\t%3 msgid "Please visit %s to approve or reject the request." msgstr "Por favor visita %s para aprobar o negar la solicitud." -#: include/plugin.php:526 include/plugin.php:528 -msgid "Click here to upgrade." -msgstr "Pulsa aquí para actualizar." - -#: include/plugin.php:534 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Esta acción excede los límites permitidos por tu subscripción." - -#: include/plugin.php:539 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está permitida para tu subscripción." - -#: include/ForumManager.php:114 include/text.php:1025 include/nav.php:131 -#: view/theme/vier/theme.php:255 -msgid "Forums" -msgstr "Foros" - -#: include/ForumManager.php:116 view/theme/vier/theme.php:257 -msgid "External link to forum" -msgstr "Enlace externo al foro" - -#: include/diaspora.php:1402 include/conversation.php:141 include/like.php:182 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s le gusta %3$s de %2$s" - -#: include/diaspora.php:1406 include/conversation.php:125 -#: include/conversation.php:134 include/conversation.php:261 -#: include/conversation.php:270 include/like.php:163 mod/tagger.php:62 -#: mod/subthread.php:87 -msgid "status" -msgstr "estado" - -#: include/diaspora.php:1958 -msgid "Sharing notification from Diaspora network" -msgstr "Compartir notificaciones con la red Diaspora*" - -#: include/diaspora.php:2864 -msgid "Attachments:" -msgstr "Archivos adjuntos:" - -#: include/dfrn.php:1108 -#, php-format -msgid "%s\\'s birthday" -msgstr "%s\\'s cumpleaños" - -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Error decodificando el archivo de cuenta" - -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? " - -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Error! No puedo consultar el apodo" - -#: include/uimport.php:120 include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "La cuenta '%s' ya existe en este servidor!" - -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Error al crear la cuenta" - -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "Error de creación del perfil de la cuenta" - -#: include/uimport.php:222 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contactos no encontrado" -msgstr[1] "%d contactos no importado" - -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña." - -#: include/dba.php:56 include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No se puede encontrar información DNS para la base de datos del servidor '%s'" - -#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12 +#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" #: include/event.php:33 include/event.php:51 include/event.php:487 -#: include/bb2diaspora.php:154 +#: include/bb2diaspora.php:158 msgid "Starts:" msgstr "Inicio:" #: include/event.php:36 include/event.php:57 include/event.php:488 -#: include/bb2diaspora.php:162 +#: include/bb2diaspora.php:166 msgid "Finishes:" msgstr "Final:" #: include/event.php:39 include/event.php:63 include/event.php:489 -#: include/identity.php:328 include/bb2diaspora.php:170 -#: mod/notifications.php:232 mod/events.php:494 mod/directory.php:137 +#: include/bb2diaspora.php:174 include/identity.php:328 +#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494 #: mod/contacts.php:628 msgid "Location:" msgstr "Localización:" @@ -943,7 +1279,7 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: include/event.php:479 mod/events.php:388 mod/cal.php:283 +#: include/event.php:479 mod/cal.php:283 mod/events.php:388 msgid "today" msgstr "hoy" @@ -963,7 +1299,7 @@ msgstr "l, F j" msgid "Edit event" msgstr "Editar evento" -#: include/event.php:615 include/text.php:1536 include/text.php:1543 +#: include/event.php:615 include/text.php:1532 include/text.php:1539 msgid "link to source" msgstr "Enlace al original" @@ -979,6 +1315,297 @@ msgstr "Exportar calendario como ical" msgid "Export calendar as csv" msgstr "Exportar calendario como csv" +#: include/nav.php:35 mod/navigation.php:19 +msgid "Nothing new here" +msgstr "Nada nuevo por aquí" + +#: include/nav.php:39 mod/navigation.php:23 +msgid "Clear notifications" +msgstr "Limpiar notificaciones" + +#: include/nav.php:40 include/text.php:1015 +msgid "@name, !forum, #tags, content" +msgstr "@name, !forum, #tags, contenido" + +#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792 +msgid "Logout" +msgstr "Salir" + +#: include/nav.php:78 view/theme/frio/theme.php:246 +msgid "End this session" +msgstr "Cerrar la sesión" + +#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637 +#: mod/contacts.php:833 view/theme/frio/theme.php:249 +msgid "Status" +msgstr "Estado" + +#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 +msgid "Your posts and conversations" +msgstr "Tus publicaciones y conversaciones" + +#: include/nav.php:82 include/identity.php:605 include/identity.php:691 +#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32 +#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250 +msgid "Profile" +msgstr "Perfil" + +#: include/nav.php:82 view/theme/frio/theme.php:250 +msgid "Your profile page" +msgstr "Tu página de perfil" + +#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32 +#: view/theme/frio/theme.php:251 +msgid "Photos" +msgstr "Fotografías" + +#: include/nav.php:83 view/theme/frio/theme.php:251 +msgid "Your photos" +msgstr "Tus fotos" + +#: include/nav.php:84 include/identity.php:738 include/identity.php:741 +#: view/theme/frio/theme.php:252 +msgid "Videos" +msgstr "Videos" + +#: include/nav.php:84 view/theme/frio/theme.php:252 +msgid "Your videos" +msgstr "Tus videos" + +#: include/nav.php:85 include/nav.php:149 include/identity.php:750 +#: include/identity.php:761 mod/cal.php:275 mod/events.php:379 +#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 +msgid "Events" +msgstr "Eventos" + +#: include/nav.php:85 view/theme/frio/theme.php:253 +msgid "Your events" +msgstr "Tus eventos" + +#: include/nav.php:86 +msgid "Personal notes" +msgstr "Notas personales" + +#: include/nav.php:86 +msgid "Your personal notes" +msgstr "Tus notas personales" + +#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793 +msgid "Login" +msgstr "Acceder" + +#: include/nav.php:95 +msgid "Sign in" +msgstr "Date de alta" + +#: include/nav.php:105 include/nav.php:161 +#: include/NotificationsManager.php:174 +msgid "Home" +msgstr "Inicio" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Página de inicio" + +#: include/nav.php:109 mod/register.php:289 boot.php:1768 +msgid "Register" +msgstr "Registrarse" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Crea una cuenta" + +#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 +msgid "Help" +msgstr "Ayuda" + +#: include/nav.php:115 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: include/nav.php:119 +msgid "Apps" +msgstr "Aplicaciones" + +#: include/nav.php:119 +msgid "Addon applications, utilities, games" +msgstr "Aplicaciones, utilidades, juegos" + +#: include/nav.php:123 include/text.php:1012 mod/search.php:149 +msgid "Search" +msgstr "Buscar" + +#: include/nav.php:123 +msgid "Search site content" +msgstr " Busca contenido en la página" + +#: include/nav.php:126 include/text.php:1020 +msgid "Full Text" +msgstr "Texto completo" + +#: include/nav.php:127 include/text.php:1021 +msgid "Tags" +msgstr "Tags" + +#: include/nav.php:128 include/nav.php:192 include/identity.php:783 +#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792 +#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260 +msgid "Contacts" +msgstr "Contactos" + +#: include/nav.php:143 include/nav.php:145 mod/community.php:36 +msgid "Community" +msgstr "Comunidad" + +#: include/nav.php:143 +msgid "Conversations on this site" +msgstr "Conversaciones en este sitio" + +#: include/nav.php:145 +msgid "Conversations on the network" +msgstr "Conversaciones en la red" + +#: include/nav.php:149 include/identity.php:753 include/identity.php:764 +#: view/theme/frio/theme.php:257 +msgid "Events and Calendar" +msgstr "Eventos y Calendario" + +#: include/nav.php:152 +msgid "Directory" +msgstr "Directorio" + +#: include/nav.php:152 +msgid "People directory" +msgstr "Directorio de usuarios" + +#: include/nav.php:154 +msgid "Information" +msgstr "Información" + +#: include/nav.php:154 +msgid "Information about this friendica instance" +msgstr "Información sobre esta instancia de friendica" + +#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411 +#: view/theme/frio/theme.php:256 +msgid "Network" +msgstr "Red" + +#: include/nav.php:158 view/theme/frio/theme.php:256 +msgid "Conversations from your friends" +msgstr "Conversaciones de tus amigos" + +#: include/nav.php:159 +msgid "Network Reset" +msgstr "Reseteo de la red" + +#: include/nav.php:159 +msgid "Load Network page with no filters" +msgstr "Cargar pagina de redes sin filtros" + +#: include/nav.php:166 include/NotificationsManager.php:181 +msgid "Introductions" +msgstr "Presentaciones" + +#: include/nav.php:166 +msgid "Friend Requests" +msgstr "Solicitudes de amistad" + +#: include/nav.php:169 mod/notifications.php:96 +msgid "Notifications" +msgstr "Notificaciones" + +#: include/nav.php:170 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" + +#: include/nav.php:171 mod/settings.php:902 +msgid "Mark as seen" +msgstr "Marcar como leído" + +#: include/nav.php:171 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones del sistema como leídas" + +#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 +msgid "Messages" +msgstr "Mensajes" + +#: include/nav.php:175 view/theme/frio/theme.php:258 +msgid "Private mail" +msgstr "Correo privado" + +#: include/nav.php:176 +msgid "Inbox" +msgstr "Entrada" + +#: include/nav.php:177 +msgid "Outbox" +msgstr "Enviados" + +#: include/nav.php:178 mod/message.php:16 +msgid "New Message" +msgstr "Nuevo mensaje" + +#: include/nav.php:181 +msgid "Manage" +msgstr "Administrar" + +#: include/nav.php:181 +msgid "Manage other pages" +msgstr "Administrar otras páginas" + +#: include/nav.php:184 mod/settings.php:81 +msgid "Delegations" +msgstr "Delegaciones" + +#: include/nav.php:184 mod/delegate.php:130 +msgid "Delegate Page Management" +msgstr "Delegar la administración de la página" + +#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111 +#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259 +msgid "Settings" +msgstr "Configuración" + +#: include/nav.php:186 view/theme/frio/theme.php:259 +msgid "Account settings" +msgstr "Configuración de tu cuenta" + +#: include/nav.php:189 include/identity.php:282 +msgid "Profiles" +msgstr "Perfiles" + +#: include/nav.php:189 +msgid "Manage/Edit Profiles" +msgstr "Manejar/editar Perfiles" + +#: include/nav.php:192 view/theme/frio/theme.php:260 +msgid "Manage/edit friends and contacts" +msgstr "Administrar/editar amigos y contactos" + +#: include/nav.php:197 mod/admin.php:186 +msgid "Admin" +msgstr "Admin" + +#: include/nav.php:197 +msgid "Site setup and configuration" +msgstr "Opciones y configuración del sitio" + +#: include/nav.php:200 +msgid "Navigation" +msgstr "Navegación" + +#: include/nav.php:200 +msgid "Site map" +msgstr "Mapa del sitio" + +#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 +#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 +#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 +msgid "Contact Photos" +msgstr "Foto del contacto" + #: include/security.php:22 msgid "Welcome " msgstr "Bienvenido " @@ -997,556 +1624,194 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo." -#: include/profile_selectors.php:6 -msgid "Male" -msgstr "Hombre" +#: include/NotificationsManager.php:153 +msgid "System" +msgstr "Sistema" -#: include/profile_selectors.php:6 -msgid "Female" -msgstr "Mujer" +#: include/NotificationsManager.php:167 mod/profiles.php:703 +#: mod/network.php:845 +msgid "Personal" +msgstr "Personal" -#: include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actualmente Hombre" - -#: include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actualmente Mujer" - -#: include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Mayormente Hombre" - -#: include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Mayormente Mujer" - -#: include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgenérico" - -#: include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Bisexual" - -#: include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexual" - -#: include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" - -#: include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Sin especificar" - -#: include/profile_selectors.php:6 -msgid "Other" -msgstr "Otro" - -#: include/profile_selectors.php:6 include/conversation.php:1487 -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indeciso" - -#: include/profile_selectors.php:23 -msgid "Males" -msgstr "Hombres" - -#: include/profile_selectors.php:23 -msgid "Females" -msgstr "Mujeres" - -#: include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbiana" - -#: include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Sin preferencias" - -#: include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexual" - -#: include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" - -#: include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Célibe" - -#: include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Virgen" - -#: include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Desviado" - -#: include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetichista" - -#: include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Orgiástico" - -#: include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Asexual" - -#: include/profile_selectors.php:42 -msgid "Single" -msgstr "Soltero" - -#: include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitario" - -#: include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponible" - -#: include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "No disponible" - -#: include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Enamorado" - -#: include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Loco/a por alguien" - -#: include/profile_selectors.php:42 -msgid "Dating" -msgstr "De citas" - -#: include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infiel" - -#: include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Adicto al sexo" - -#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303 -msgid "Friends" -msgstr "Amigos" - -#: include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amigos con beneficios" - -#: include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Comprometido/a" - -#: include/profile_selectors.php:42 -msgid "Married" -msgstr "Casado/a" - -#: include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Casado imaginario" - -#: include/profile_selectors.php:42 -msgid "Partners" -msgstr "Socios" - -#: include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Cohabitando" - -#: include/profile_selectors.php:42 -msgid "Common law" -msgstr "Pareja de hecho" - -#: include/profile_selectors.php:42 -msgid "Happy" -msgstr "Feliz" - -#: include/profile_selectors.php:42 -msgid "Not looking" -msgstr "No busca relación" - -#: include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Traicionado/a" - -#: include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separado/a" - -#: include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Inestable" - -#: include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorciado/a" - -#: include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Divorciado imaginario" - -#: include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Viudo/a" - -#: include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incierto" - -#: include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Es complicado" - -#: include/profile_selectors.php:42 -msgid "Don't care" -msgstr "No te importa" - -#: include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Pregúntame" - -#: include/items.php:1571 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 -msgid "[Name Withheld]" -msgstr "[Nombre oculto]" - -#: include/items.php:1926 mod/viewsrc.php:15 mod/admin.php:234 -#: mod/admin.php:1471 mod/admin.php:1705 mod/display.php:103 -#: mod/display.php:279 mod/display.php:478 mod/notice.php:15 -msgid "Item not found." -msgstr "Elemento no encontrado." - -#: include/items.php:1965 -msgid "Do you really want to delete this item?" -msgstr "¿Realmente quieres borrar este objeto?" - -#: include/items.php:1967 mod/profiles.php:648 mod/profiles.php:651 -#: mod/profiles.php:677 mod/contacts.php:442 mod/follow.php:110 -#: mod/suggest.php:29 mod/dfrn_request.php:862 mod/register.php:245 -#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177 -#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192 -#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230 -#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233 -#: mod/settings.php:1234 mod/api.php:105 mod/message.php:217 -msgid "Yes" -msgstr "Sí" - -#: include/items.php:1970 include/conversation.php:1283 mod/fbrowser.php:101 -#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/videos.php:128 -#: mod/photos.php:235 mod/photos.php:322 mod/contacts.php:445 -#: mod/follow.php:121 mod/suggest.php:32 mod/editpost.php:148 -#: mod/dfrn_request.php:876 mod/settings.php:679 mod/settings.php:705 -#: mod/message.php:220 -msgid "Cancel" -msgstr "Cancelar" - -#: include/items.php:2130 index.php:401 mod/regmod.php:110 mod/dirfind.php:11 -#: mod/notifications.php:71 mod/dfrn_confirm.php:61 mod/wall_upload.php:77 -#: mod/wall_upload.php:80 mod/fsuggest.php:78 mod/notes.php:22 -#: mod/events.php:190 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15 -#: mod/invite.php:101 mod/viewcontacts.php:45 mod/crepair.php:100 -#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/allfriends.php:12 -#: mod/cal.php:304 mod/repair_ostatus.php:9 mod/delegate.php:12 -#: mod/profiles.php:166 mod/profiles.php:605 mod/poke.php:150 -#: mod/photos.php:159 mod/photos.php:1072 mod/attach.php:33 -#: mod/contacts.php:350 mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 -#: mod/suggest.php:58 mod/display.php:475 mod/common.php:18 mod/mood.php:114 -#: mod/editpost.php:10 mod/network.php:4 mod/group.php:19 -#: mod/profile_photo.php:19 mod/profile_photo.php:175 -#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/register.php:42 -#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/api.php:26 mod/api.php:31 mod/item.php:198 -#: mod/item.php:210 mod/ostatus_subscribe.php:9 mod/message.php:46 -#: mod/message.php:182 mod/manage.php:96 -msgid "Permission denied." -msgstr "Permiso denegado." - -#: include/items.php:2235 -msgid "Archives" -msgstr "Archivos" - -#: include/text.php:304 -msgid "newer" -msgstr "más nuevo" - -#: include/text.php:306 -msgid "older" -msgstr "más antiguo" - -#: include/text.php:311 -msgid "prev" -msgstr "ant." - -#: include/text.php:313 -msgid "first" -msgstr "primera" - -#: include/text.php:345 -msgid "last" -msgstr "última" - -#: include/text.php:348 -msgid "next" -msgstr "sig." - -#: include/text.php:403 -msgid "Loading more entries..." -msgstr "Cargar mas entradas .." - -#: include/text.php:404 -msgid "The end" -msgstr "El fin" - -#: include/text.php:889 -msgid "No contacts" -msgstr "Sin contactos" - -#: include/text.php:912 +#: include/NotificationsManager.php:234 include/NotificationsManager.php:244 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Contacto" -msgstr[1] "%d Contactos" +msgid "%s commented on %s's post" +msgstr "%s comentó la publicación de %s" -#: include/text.php:925 -msgid "View Contacts" -msgstr "Ver contactos" - -#: include/text.php:1012 include/nav.php:123 mod/search.php:149 -msgid "Search" -msgstr "Buscar" - -#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 -#: mod/editpost.php:109 -msgid "Save" -msgstr "Guardar" - -#: include/text.php:1015 include/nav.php:40 -msgid "@name, !forum, #tags, content" -msgstr "@name, !forum, #tags, contenido" - -#: include/text.php:1020 include/nav.php:126 -msgid "Full Text" -msgstr "Texto completo" - -#: include/text.php:1021 include/nav.php:127 -msgid "Tags" -msgstr "Tags" - -#: include/text.php:1022 include/identity.php:783 include/identity.php:786 -#: include/nav.php:128 include/nav.php:192 mod/viewcontacts.php:116 -#: mod/contacts.php:792 mod/contacts.php:853 view/theme/frio/theme.php:260 -msgid "Contacts" -msgstr "Contactos" - -#: include/text.php:1076 -msgid "poke" -msgstr "tocar" - -#: include/text.php:1076 -msgid "poked" -msgstr "tocó a" - -#: include/text.php:1077 -msgid "ping" -msgstr "hacer \"ping\"" - -#: include/text.php:1077 -msgid "pinged" -msgstr "hizo \"ping\" a" - -#: include/text.php:1078 -msgid "prod" -msgstr "empujar" - -#: include/text.php:1078 -msgid "prodded" -msgstr "empujó a" - -#: include/text.php:1079 -msgid "slap" -msgstr "abofetear" - -#: include/text.php:1079 -msgid "slapped" -msgstr "abofeteó a" - -#: include/text.php:1080 -msgid "finger" -msgstr "meter dedo" - -#: include/text.php:1080 -msgid "fingered" -msgstr "le metió un dedo a" - -#: include/text.php:1081 -msgid "rebuff" -msgstr "desairar" - -#: include/text.php:1081 -msgid "rebuffed" -msgstr "desairó a" - -#: include/text.php:1095 -msgid "happy" -msgstr "feliz" - -#: include/text.php:1096 -msgid "sad" -msgstr "triste" - -#: include/text.php:1097 -msgid "mellow" -msgstr "sentimental" - -#: include/text.php:1098 -msgid "tired" -msgstr "cansado" - -#: include/text.php:1099 -msgid "perky" -msgstr "alegre" - -#: include/text.php:1100 -msgid "angry" -msgstr "furioso" - -#: include/text.php:1101 -msgid "stupified" -msgstr "estupefacto" - -#: include/text.php:1102 -msgid "puzzled" -msgstr "extrañado" - -#: include/text.php:1103 -msgid "interested" -msgstr "interesado" - -#: include/text.php:1104 -msgid "bitter" -msgstr "rencoroso" - -#: include/text.php:1105 -msgid "cheerful" -msgstr "jovial" - -#: include/text.php:1106 -msgid "alive" -msgstr "vivo" - -#: include/text.php:1107 -msgid "annoyed" -msgstr "enojado" - -#: include/text.php:1108 -msgid "anxious" -msgstr "ansioso" - -#: include/text.php:1109 -msgid "cranky" -msgstr "irritable" - -#: include/text.php:1110 -msgid "disturbed" -msgstr "perturbado" - -#: include/text.php:1111 -msgid "frustrated" -msgstr "frustrado" - -#: include/text.php:1112 -msgid "motivated" -msgstr "motivado" - -#: include/text.php:1113 -msgid "relaxed" -msgstr "relajado" - -#: include/text.php:1114 -msgid "surprised" -msgstr "sorprendido" - -#: include/text.php:1328 mod/videos.php:380 -msgid "View Video" -msgstr "Ver vídeo" - -#: include/text.php:1360 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1392 include/text.php:1404 -msgid "Click to open/close" -msgstr "Pulsa para abrir/cerrar" - -#: include/text.php:1530 -msgid "View on separate page" -msgstr "Ver en pagina aparte" - -#: include/text.php:1531 -msgid "view on separate page" -msgstr "ver en pagina aparte" - -#: include/text.php:1806 include/conversation.php:122 -#: include/conversation.php:258 include/like.php:165 -msgid "event" -msgstr "evento" - -#: include/text.php:1808 include/conversation.php:130 -#: include/conversation.php:266 include/like.php:163 mod/tagger.php:62 -#: mod/subthread.php:87 -msgid "photo" -msgstr "foto" - -#: include/text.php:1810 -msgid "activity" -msgstr "Actividad" - -#: include/text.php:1812 mod/content.php:623 object/Item.php:431 -#: object/Item.php:444 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "Comentario" - -#: include/text.php:1813 -msgid "post" -msgstr "Publicación" - -#: include/text.php:1981 -msgid "Item filed" -msgstr "Elemento archivado" - -#: include/conversation.php:144 include/like.php:184 +#: include/NotificationsManager.php:243 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s no le gusta %3$s de %2$s" +msgid "%s created a new post" +msgstr "%s creó una nueva publicación" + +#: include/NotificationsManager.php:256 +#, php-format +msgid "%s liked %s's post" +msgstr "A %s le gusta la publicación de %s" + +#: include/NotificationsManager.php:267 +#, php-format +msgid "%s disliked %s's post" +msgstr "A %s no le gusta la publicación de %s" + +#: include/NotificationsManager.php:278 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s está asistiendo al evento %s's" + +#: include/NotificationsManager.php:289 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s no está asistiendo al evento %s's" + +#: include/NotificationsManager.php:300 +#, php-format +msgid "%s may attend %s's event" +msgstr "%s podría asistir al evento %s's" + +#: include/NotificationsManager.php:315 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s es ahora es amigo de %s" + +#: include/NotificationsManager.php:748 +msgid "Friend Suggestion" +msgstr "Propuestas de amistad" + +#: include/NotificationsManager.php:781 +msgid "Friend/Connect Request" +msgstr "Solicitud de Amistad/Conexión" + +#: include/NotificationsManager.php:781 +msgid "New Follower" +msgstr "Nuevo seguidor" + +#: include/dbstructure.php:26 +#, php-format +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\tLos desarolladores de friendica publicaron una actualización %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido." + +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "El mensaje de error es\n[pre]%s[/pre]" + +#: include/dbstructure.php:183 +msgid "Errors encountered creating database tables." +msgstr "Se han encontrados errores creando las tablas de la base de datos." + +#: include/dbstructure.php:260 +msgid "Errors encountered performing database changes." +msgstr "Errores encontrados al ejecutar cambios en la base de datos." + +#: include/delivery.php:446 +msgid "(no subject)" +msgstr "(sin asunto)" + +#: include/diaspora.php:1958 +msgid "Sharing notification from Diaspora network" +msgstr "Compartir notificaciones con la red Diaspora*" + +#: include/diaspora.php:2864 +msgid "Attachments:" +msgstr "Archivos adjuntos:" + +#: include/network.php:595 +msgid "view full size" +msgstr "Ver a tamaño completo" + +#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398 +#: include/conversation.php:968 include/conversation.php:984 +#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203 +#: mod/match.php:71 mod/suggest.php:82 +msgid "View Profile" +msgstr "Ver perfil" + +#: include/Contact.php:397 include/conversation.php:967 +msgid "View Status" +msgstr "Ver estado" + +#: include/Contact.php:399 include/conversation.php:969 +msgid "View Photos" +msgstr "Ver fotos" + +#: include/Contact.php:400 include/conversation.php:970 +msgid "Network Posts" +msgstr "Publicaciones en la red" + +#: include/Contact.php:401 include/conversation.php:971 +msgid "View Contact" +msgstr "Ver contacto" + +#: include/Contact.php:402 +msgid "Drop Contact" +msgstr "Eliminar contacto" + +#: include/Contact.php:403 include/conversation.php:972 +msgid "Send PM" +msgstr "Enviar mensaje privado" + +#: include/Contact.php:404 include/conversation.php:976 +msgid "Poke" +msgstr "Toque" + +#: include/Contact.php:775 +msgid "Organisation" +msgstr "Organización" + +#: include/Contact.php:778 +msgid "News" +msgstr "Noticias" + +#: include/Contact.php:781 +msgid "Forum" +msgstr "Foro" + +#: include/api.php:1018 +#, php-format +msgid "Daily posting limit of %d posts reached. The post was rejected." +msgstr "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada." + +#: include/api.php:1038 +#, php-format +msgid "Weekly posting limit of %d posts reached. The post was rejected." +msgstr "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada." + +#: include/api.php:1059 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada." + +#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058 +msgid "Image/photo" +msgstr "Imagen/Foto" + +#: include/bbcode.php:467 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:1017 include/bbcode.php:1037 +msgid "$1 wrote:" +msgstr "$1 escribió:" + +#: include/bbcode.php:1066 include/bbcode.php:1067 +msgid "Encrypted content" +msgstr "Contenido cifrado" + +#: include/bbcode.php:1169 +msgid "Invalid source protocol" +msgstr "Protocolo de fuente inválido" + +#: include/bbcode.php:1179 +msgid "Invalid link protocol" +msgstr "Protocolo de enlace inválido" #: include/conversation.php:147 #, php-format @@ -1622,9 +1887,9 @@ msgstr "Puede que atienda" msgid "Select" msgstr "Seleccionar" -#: include/conversation.php:709 mod/admin.php:1414 mod/content.php:454 -#: mod/content.php:759 mod/photos.php:1682 mod/contacts.php:808 -#: mod/contacts.php:1016 mod/group.php:171 mod/settings.php:741 +#: include/conversation.php:709 mod/group.php:171 mod/content.php:454 +#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741 +#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007 #: object/Item.php:134 msgid "Delete" msgstr "Eliminar" @@ -1654,9 +1919,9 @@ msgid "View in context" msgstr "Verlo en contexto" #: include/conversation.php:791 include/conversation.php:1264 -#: mod/content.php:515 mod/content.php:948 mod/photos.php:1570 #: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356 -#: mod/message.php:548 object/Item.php:406 +#: mod/message.php:548 mod/content.php:515 mod/content.php:948 +#: mod/photos.php:1570 object/Item.php:406 msgid "Please wait" msgstr "Por favor, espera" @@ -1672,37 +1937,6 @@ msgstr "Eliminar el elemento seleccionado" msgid "Follow Thread" msgstr "Seguir publicacion" -#: include/conversation.php:967 include/Contact.php:404 -msgid "View Status" -msgstr "Ver estado" - -#: include/conversation.php:968 include/conversation.php:984 -#: include/Contact.php:347 include/Contact.php:360 include/Contact.php:405 -#: mod/dirfind.php:203 mod/directory.php:155 mod/match.php:71 -#: mod/allfriends.php:65 mod/suggest.php:82 -msgid "View Profile" -msgstr "Ver perfil" - -#: include/conversation.php:969 include/Contact.php:406 -msgid "View Photos" -msgstr "Ver fotos" - -#: include/conversation.php:970 include/Contact.php:407 -msgid "Network Posts" -msgstr "Publicaciones en la red" - -#: include/conversation.php:971 include/Contact.php:408 -msgid "View Contact" -msgstr "Ver contacto" - -#: include/conversation.php:972 include/Contact.php:410 -msgid "Send PM" -msgstr "Enviar mensaje privado" - -#: include/conversation.php:976 include/Contact.php:411 -msgid "Poke" -msgstr "Toque" - #: include/conversation.php:1097 #, php-format msgid "%s likes this." @@ -1904,12 +2138,21 @@ msgstr "permisos" msgid "Public post" msgstr "Publicación pública" -#: include/conversation.php:1279 mod/events.php:504 mod/content.php:737 -#: mod/photos.php:1591 mod/photos.php:1639 mod/photos.php:1725 -#: mod/editpost.php:145 object/Item.php:729 +#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737 +#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639 +#: mod/photos.php:1725 object/Item.php:729 msgid "Preview" msgstr "Vista previa" +#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101 +#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148 +#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235 +#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705 +#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876 +#: mod/follow.php:121 +msgid "Cancel" +msgstr "Cancelar" + #: include/conversation.php:1289 msgid "Post to Groups" msgstr "Publicar hacia grupos" @@ -1952,745 +2195,10 @@ msgid_plural "Not Attending" msgstr[0] "No atendiendo" msgstr[1] "No atendiendo" -#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62 -#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211 -#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807 -msgid "Contact Photos" -msgstr "Foto del contacto" - -#: include/identity.php:42 -msgid "Requested account is not available." -msgstr "La cuenta solicitada no está disponible." - -#: include/identity.php:51 mod/profile.php:21 -msgid "Requested profile is not available." -msgstr "El perfil solicitado no está disponible." - -#: include/identity.php:95 include/identity.php:311 include/identity.php:688 -msgid "Edit profile" -msgstr "Editar perfil" - -#: include/identity.php:251 -msgid "Atom feed" -msgstr "Atom feed" - -#: include/identity.php:282 include/nav.php:189 -msgid "Profiles" -msgstr "Perfiles" - -#: include/identity.php:282 -msgid "Manage/edit profiles" -msgstr "Administrar/editar perfiles" - -#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 -msgid "Change profile photo" -msgstr "Cambiar foto del perfil" - -#: include/identity.php:288 mod/profiles.php:796 -msgid "Create New Profile" -msgstr "Crear nuevo perfil" - -#: include/identity.php:298 mod/profiles.php:785 -msgid "Profile Image" -msgstr "Imagen del Perfil" - -#: include/identity.php:301 mod/profiles.php:787 -msgid "visible to everybody" -msgstr "Visible para todos" - -#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 -msgid "Edit visibility" -msgstr "Editar visibilidad" - -#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 -#: mod/directory.php:139 -msgid "Gender:" -msgstr "Género:" - -#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 -msgid "Status:" -msgstr "Estado:" - -#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 -msgid "Homepage:" -msgstr "Página de inicio:" - -#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 -#: mod/directory.php:145 mod/contacts.php:632 -msgid "About:" -msgstr "Acerca de:" - -#: include/identity.php:339 mod/contacts.php:630 -msgid "XMPP:" -msgstr "XMPP:" - -#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 -msgid "Network:" -msgstr "Red:" - -#: include/identity.php:451 include/identity.php:535 -msgid "g A l F d" -msgstr "g A l F d" - -#: include/identity.php:452 include/identity.php:536 -msgid "F d" -msgstr "F d" - -#: include/identity.php:497 include/identity.php:582 -msgid "[today]" -msgstr "[hoy]" - -#: include/identity.php:509 -msgid "Birthday Reminders" -msgstr "Recordatorios de cumpleaños" - -#: include/identity.php:510 -msgid "Birthdays this week:" -msgstr "Cumpleaños esta semana:" - -#: include/identity.php:569 -msgid "[No description]" -msgstr "[Sin descripción]" - -#: include/identity.php:593 -msgid "Event Reminders" -msgstr "Recordatorios de eventos" - -#: include/identity.php:594 -msgid "Events this week:" -msgstr "Eventos de esta semana:" - -#: include/identity.php:605 include/identity.php:691 include/identity.php:722 -#: include/nav.php:82 mod/profperm.php:104 mod/contacts.php:639 -#: mod/contacts.php:841 mod/newmember.php:32 view/theme/frio/theme.php:250 -msgid "Profile" -msgstr "Perfil" - -#: include/identity.php:614 mod/settings.php:1279 -msgid "Full Name:" -msgstr "Nombre completo:" - -#: include/identity.php:621 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:622 -msgid "j F" -msgstr "j F" - -#: include/identity.php:633 -msgid "Age:" -msgstr "Edad:" - -#: include/identity.php:642 +#: include/dfrn.php:1108 #, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" - -#: include/identity.php:645 mod/profiles.php:710 -msgid "Sexual Preference:" -msgstr "Preferencia sexual:" - -#: include/identity.php:649 mod/profiles.php:737 -msgid "Hometown:" -msgstr "Ciudad de origen:" - -#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 -#: mod/follow.php:134 -msgid "Tags:" -msgstr "Etiquetas:" - -#: include/identity.php:653 mod/profiles.php:738 -msgid "Political Views:" -msgstr "Ideas políticas:" - -#: include/identity.php:655 -msgid "Religion:" -msgstr "Religión:" - -#: include/identity.php:659 -msgid "Hobbies/Interests:" -msgstr "Aficiones/Intereses:" - -#: include/identity.php:661 mod/profiles.php:742 -msgid "Likes:" -msgstr "Me gusta:" - -#: include/identity.php:663 mod/profiles.php:743 -msgid "Dislikes:" -msgstr "No me gusta:" - -#: include/identity.php:666 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y Redes sociales:" - -#: include/identity.php:668 -msgid "Musical interests:" -msgstr "Intereses musicales:" - -#: include/identity.php:670 -msgid "Books, literature:" -msgstr "Libros, literatura:" - -#: include/identity.php:672 -msgid "Television:" -msgstr "Televisión:" - -#: include/identity.php:674 -msgid "Film/dance/culture/entertainment:" -msgstr "Películas/baile/cultura/entretenimiento:" - -#: include/identity.php:676 -msgid "Love/Romance:" -msgstr "Amor/Romance:" - -#: include/identity.php:678 -msgid "Work/employment:" -msgstr "Trabajo/ocupación:" - -#: include/identity.php:680 -msgid "School/education:" -msgstr "Escuela/estudios:" - -#: include/identity.php:684 -msgid "Forums:" -msgstr "Foros:" - -#: include/identity.php:692 mod/events.php:507 -msgid "Basic" -msgstr "Basic" - -#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 -#: mod/contacts.php:870 -msgid "Advanced" -msgstr "Avanzado" - -#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637 -#: mod/contacts.php:833 view/theme/frio/theme.php:249 -msgid "Status" -msgstr "Estado" - -#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:143 -msgid "Status Messages and Posts" -msgstr "Mensajes de Estado y Publicaciones" - -#: include/identity.php:725 mod/contacts.php:844 -msgid "Profile Details" -msgstr "Detalles del Perfil" - -#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32 -#: view/theme/frio/theme.php:251 -msgid "Photos" -msgstr "Fotografías" - -#: include/identity.php:733 mod/photos.php:87 -msgid "Photo Albums" -msgstr "Álbum de Fotos" - -#: include/identity.php:738 include/identity.php:741 include/nav.php:84 -#: view/theme/frio/theme.php:252 -msgid "Videos" -msgstr "Videos" - -#: include/identity.php:750 include/identity.php:761 include/nav.php:85 -#: include/nav.php:149 mod/events.php:379 mod/cal.php:275 -#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257 -msgid "Events" -msgstr "Eventos" - -#: include/identity.php:753 include/identity.php:764 include/nav.php:149 -#: view/theme/frio/theme.php:257 -msgid "Events and Calendar" -msgstr "Eventos y Calendario" - -#: include/identity.php:772 mod/notes.php:46 -msgid "Personal Notes" -msgstr "Notas personales" - -#: include/identity.php:775 -msgid "Only You Can See This" -msgstr "Únicamente tú puedes ver esto" - -#: include/follow.php:77 mod/dfrn_request.php:509 -msgid "Disallowed profile URL." -msgstr "Dirección de perfil no permitida." - -#: include/follow.php:82 -msgid "Connect URL missing." -msgstr "Falta el conector URL." - -#: include/follow.php:109 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Este sitio no está configurado para permitir la comunicación con otras redes." - -#: include/follow.php:110 include/follow.php:130 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." - -#: include/follow.php:128 -msgid "The profile address specified does not provide adequate information." -msgstr "La dirección del perfil especificado no proporciona información adecuada." - -#: include/follow.php:132 -msgid "An author or name was not found." -msgstr "No se ha encontrado un autor o nombre." - -#: include/follow.php:134 -msgid "No browser URL could be matched to this address." -msgstr "Ninguna dirección concuerda con la suministrada." - -#: include/follow.php:136 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto." - -#: include/follow.php:137 -msgid "Use mailto: in front of address to force email check." -msgstr "Escribe mailto: al principio de la dirección para forzar el envío." - -#: include/follow.php:143 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." - -#: include/follow.php:153 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." - -#: include/follow.php:254 -msgid "Unable to retrieve contact information." -msgstr "No ha sido posible recibir la información del contacto." - -#: include/follow.php:287 -msgid "following" -msgstr "siguiendo" - -#: include/Contact.php:105 -msgid "stopped following" -msgstr "dejó de seguir" - -#: include/Contact.php:409 -msgid "Drop Contact" -msgstr "Eliminar contacto" - -#: include/Contact.php:784 -msgid "Organisation" -msgstr "Organización" - -#: include/Contact.php:787 -msgid "News" -msgstr "Noticias" - -#: include/Contact.php:790 -msgid "Forum" -msgstr "Foro" - -#: include/oembed.php:264 -msgid "Embedded content" -msgstr "Contenido integrado" - -#: include/oembed.php:272 -msgid "Embedding disabled" -msgstr "Contenido incrustrado desabilitado" - -#: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056 -msgid "Image/photo" -msgstr "Imagen/Foto" - -#: include/bbcode.php:465 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: include/bbcode.php:1015 include/bbcode.php:1035 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: include/bbcode.php:1064 include/bbcode.php:1065 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Desconocido | No clasificado" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Bloquear inmediatamente" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Sospechoso, spammer, auto-publicidad" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Le conozco, sin opinión" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, probablemente inofensivo" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Buena reputación, tiene mi confianza" - -#: include/contact_selectors.php:56 mod/admin.php:890 -msgid "Frequently" -msgstr "Frequentemente" - -#: include/contact_selectors.php:57 mod/admin.php:891 -msgid "Hourly" -msgstr "Cada hora" - -#: include/contact_selectors.php:58 mod/admin.php:892 -msgid "Twice daily" -msgstr "Dos veces al día" - -#: include/contact_selectors.php:59 mod/admin.php:893 -msgid "Daily" -msgstr "Diariamente" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Semanalmente" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensualmente" - -#: include/contact_selectors.php:76 mod/dfrn_request.php:868 -msgid "Friendica" -msgstr "Friendica" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440 -msgid "Email" -msgstr "Correo electrónico" - -#: include/contact_selectors.php:80 mod/dfrn_request.php:870 -#: mod/settings.php:842 -msgid "Diaspora" -msgstr "Diaspora*" - -#: include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Conector Diaspora" - -#: include/contact_selectors.php:91 -msgid "GNU Social" -msgstr "GNUsocial (OStatus)" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Hubzilla/Redmatrix" -msgstr "Hubzilla/Redmatrix" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\tLos desarolladores de friendica publicaron una actualización %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido." - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "El mensaje de error es\n[pre]%s[/pre]" - -#: include/dbstructure.php:183 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrados errores creando las tablas de la base de datos." - -#: include/dbstructure.php:260 -msgid "Errors encountered performing database changes." -msgstr "Errores encontrados al ejecutar cambios en la base de datos." - -#: include/auth.php:45 -msgid "Logged out." -msgstr "Sesión finalizada" - -#: include/auth.php:116 include/auth.php:178 mod/openid.php:100 -msgid "Login failed." -msgstr "Accesso fallido." - -#: include/auth.php:132 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." - -#: include/auth.php:132 include/user.php:75 -msgid "The error message was:" -msgstr "El mensaje del error fue:" - -#: include/network.php:595 -msgid "view full size" -msgstr "Ver a tamaño completo" - -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente." - -#: include/group.php:209 -msgid "Default privacy group for new contacts" -msgstr "Grupo por defecto para nuevos contactos" - -#: include/group.php:242 -msgid "Everybody" -msgstr "Todo el mundo" - -#: include/group.php:265 -msgid "edit" -msgstr "editar" - -#: include/group.php:286 mod/newmember.php:61 -msgid "Groups" -msgstr "Grupos" - -#: include/group.php:288 -msgid "Edit groups" -msgstr "Editar grupo" - -#: include/group.php:290 -msgid "Edit group" -msgstr "Editar grupo" - -#: include/group.php:291 -msgid "Create a new group" -msgstr "Crear un nuevo grupo" - -#: include/group.php:292 mod/group.php:94 mod/group.php:178 -msgid "Group Name: " -msgstr "Nombre del grupo: " - -#: include/group.php:294 -msgid "Contacts not in any group" -msgstr "Contactos sin grupo" - -#: include/group.php:296 mod/network.php:201 -msgid "add" -msgstr "añadir" - -#: include/Photo.php:1040 include/Photo.php:1056 include/Photo.php:1064 -#: include/Photo.php:1089 include/message.php:145 mod/wall_upload.php:218 -#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477 -msgid "Wall Photos" -msgstr "Foto del Muro" - -#: include/delivery.php:446 -msgid "(no subject)" -msgstr "(sin asunto)" - -#: include/user.php:39 mod/settings.php:373 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." - -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Se necesita invitación." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "No se puede verificar la invitación." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Dirección OpenID no válida" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Por favor, introduce la información necesaria." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Por favor, usa un nombre más corto." - -#: include/user.php:98 -msgid "Name too short." -msgstr "El nombre es demasiado corto." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "No parece que ese sea tu nombre completo." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "No es una dirección de correo electrónico válida." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "No se puede utilizar este correo electrónico." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "El apodo solo puede contener \"a-z\", \"0-9\" y \"_\"." - -#: include/user.php:147 include/user.php:245 -msgid "Nickname is already registered. Please choose another." -msgstr "Apodo ya registrado. Por favor, elije otro." - -#: include/user.php:157 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro." - -#: include/user.php:173 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado." - -#: include/user.php:231 -msgid "An error occurred during registration. Please try again." -msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo." - -#: include/user.php:256 view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "predeterminado" - -#: include/user.php:266 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo." - -#: include/user.php:345 include/user.php:352 include/user.php:359 -#: mod/photos.php:66 mod/photos.php:180 mod/photos.php:751 mod/photos.php:1211 -#: mod/photos.php:1232 mod/photos.php:1819 mod/profile_photo.php:74 -#: mod/profile_photo.php:81 mod/profile_photo.php:88 mod/profile_photo.php:210 -#: mod/profile_photo.php:302 mod/profile_photo.php:311 -msgid "Profile Photos" -msgstr "Foto del perfil" - -#: include/user.php:390 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\t" -msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrarse en %2$s. Su cuenta está pendiente de aprobación por el administrador.\n\t" - -#: include/user.php:400 -#, php-format -msgid "Registration at %s" -msgstr "Registro en %s" - -#: include/user.php:410 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrar en %2$s. Su cuenta ha sido creada.\n\t" - -#: include/user.php:414 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3$s\n\t\t\tNombre de la cuenta:\t\t%1$s\n\t\t\tContraseña:\t\t%5$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %2$s." - -#: include/user.php:446 mod/admin.php:1213 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles de registro para %s" - -#: include/api.php:1018 -#, php-format -msgid "Daily posting limit of %d posts reached. The post was rejected." -msgstr "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada." - -#: include/api.php:1038 -#, php-format -msgid "Weekly posting limit of %d posts reached. The post was rejected." -msgstr "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada." - -#: include/api.php:1059 -#, php-format -msgid "Monthly posting limit of %d posts reached. The post was rejected." -msgstr "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada." +msgid "%s\\'s birthday" +msgstr "%s\\'s cumpleaños" #: include/features.php:70 msgid "General Features" @@ -2895,326 +2403,719 @@ msgstr "Ajustes avanzados del perfil" msgid "Show visitors public community forums at the Advanced Profile Page" msgstr "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles." -#: include/nav.php:35 mod/navigation.php:19 -msgid "Nothing new here" -msgstr "Nada nuevo por aquí" +#: include/follow.php:81 mod/dfrn_request.php:509 +msgid "Disallowed profile URL." +msgstr "Dirección de perfil no permitida." -#: include/nav.php:39 mod/navigation.php:23 -msgid "Clear notifications" -msgstr "Limpiar notificaciones" +#: include/follow.php:86 +msgid "Connect URL missing." +msgstr "Falta el conector URL." -#: include/nav.php:78 view/theme/frio/theme.php:246 -msgid "End this session" -msgstr "Cerrar la sesión" +#: include/follow.php:113 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Este sitio no está configurado para permitir la comunicación con otras redes." -#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249 -msgid "Your posts and conversations" -msgstr "Tus publicaciones y conversaciones" +#: include/follow.php:114 include/follow.php:134 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." -#: include/nav.php:82 view/theme/frio/theme.php:250 -msgid "Your profile page" -msgstr "Tu página de perfil" +#: include/follow.php:132 +msgid "The profile address specified does not provide adequate information." +msgstr "La dirección del perfil especificado no proporciona información adecuada." -#: include/nav.php:83 view/theme/frio/theme.php:251 -msgid "Your photos" -msgstr "Tus fotos" +#: include/follow.php:136 +msgid "An author or name was not found." +msgstr "No se ha encontrado un autor o nombre." -#: include/nav.php:84 view/theme/frio/theme.php:252 -msgid "Your videos" -msgstr "Tus videos" +#: include/follow.php:138 +msgid "No browser URL could be matched to this address." +msgstr "Ninguna dirección concuerda con la suministrada." -#: include/nav.php:85 view/theme/frio/theme.php:253 -msgid "Your events" -msgstr "Tus eventos" +#: include/follow.php:140 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto." -#: include/nav.php:86 -msgid "Personal notes" +#: include/follow.php:141 +msgid "Use mailto: in front of address to force email check." +msgstr "Escribe mailto: al principio de la dirección para forzar el envío." + +#: include/follow.php:147 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." + +#: include/follow.php:157 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." + +#: include/follow.php:258 +msgid "Unable to retrieve contact information." +msgstr "No ha sido posible recibir la información del contacto." + +#: include/identity.php:42 +msgid "Requested account is not available." +msgstr "La cuenta solicitada no está disponible." + +#: include/identity.php:51 mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "El perfil solicitado no está disponible." + +#: include/identity.php:95 include/identity.php:311 include/identity.php:688 +msgid "Edit profile" +msgstr "Editar perfil" + +#: include/identity.php:251 +msgid "Atom feed" +msgstr "Atom feed" + +#: include/identity.php:282 +msgid "Manage/edit profiles" +msgstr "Administrar/editar perfiles" + +#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795 +msgid "Change profile photo" +msgstr "Cambiar foto del perfil" + +#: include/identity.php:288 mod/profiles.php:796 +msgid "Create New Profile" +msgstr "Crear nuevo perfil" + +#: include/identity.php:298 mod/profiles.php:785 +msgid "Profile Image" +msgstr "Imagen del Perfil" + +#: include/identity.php:301 mod/profiles.php:787 +msgid "visible to everybody" +msgstr "Visible para todos" + +#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788 +msgid "Edit visibility" +msgstr "Editar visibilidad" + +#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238 +#: mod/directory.php:139 +msgid "Gender:" +msgstr "Género:" + +#: include/identity.php:333 include/identity.php:636 mod/directory.php:141 +msgid "Status:" +msgstr "Estado:" + +#: include/identity.php:335 include/identity.php:647 mod/directory.php:143 +msgid "Homepage:" +msgstr "Página de inicio:" + +#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234 +#: mod/directory.php:145 mod/contacts.php:632 +msgid "About:" +msgstr "Acerca de:" + +#: include/identity.php:339 mod/contacts.php:630 +msgid "XMPP:" +msgstr "XMPP:" + +#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50 +msgid "Network:" +msgstr "Red:" + +#: include/identity.php:451 include/identity.php:535 +msgid "g A l F d" +msgstr "g A l F d" + +#: include/identity.php:452 include/identity.php:536 +msgid "F d" +msgstr "F d" + +#: include/identity.php:497 include/identity.php:582 +msgid "[today]" +msgstr "[hoy]" + +#: include/identity.php:509 +msgid "Birthday Reminders" +msgstr "Recordatorios de cumpleaños" + +#: include/identity.php:510 +msgid "Birthdays this week:" +msgstr "Cumpleaños esta semana:" + +#: include/identity.php:569 +msgid "[No description]" +msgstr "[Sin descripción]" + +#: include/identity.php:593 +msgid "Event Reminders" +msgstr "Recordatorios de eventos" + +#: include/identity.php:594 +msgid "Events this week:" +msgstr "Eventos de esta semana:" + +#: include/identity.php:614 mod/settings.php:1279 +msgid "Full Name:" +msgstr "Nombre completo:" + +#: include/identity.php:621 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:622 +msgid "j F" +msgstr "j F" + +#: include/identity.php:633 +msgid "Age:" +msgstr "Edad:" + +#: include/identity.php:642 +#, php-format +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" + +#: include/identity.php:645 mod/profiles.php:710 +msgid "Sexual Preference:" +msgstr "Preferencia sexual:" + +#: include/identity.php:649 mod/profiles.php:737 +msgid "Hometown:" +msgstr "Ciudad de origen:" + +#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634 +#: mod/follow.php:134 +msgid "Tags:" +msgstr "Etiquetas:" + +#: include/identity.php:653 mod/profiles.php:738 +msgid "Political Views:" +msgstr "Ideas políticas:" + +#: include/identity.php:655 +msgid "Religion:" +msgstr "Religión:" + +#: include/identity.php:659 +msgid "Hobbies/Interests:" +msgstr "Aficiones/Intereses:" + +#: include/identity.php:661 mod/profiles.php:742 +msgid "Likes:" +msgstr "Me gusta:" + +#: include/identity.php:663 mod/profiles.php:743 +msgid "Dislikes:" +msgstr "No me gusta:" + +#: include/identity.php:666 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y Redes sociales:" + +#: include/identity.php:668 +msgid "Musical interests:" +msgstr "Intereses musicales:" + +#: include/identity.php:670 +msgid "Books, literature:" +msgstr "Libros, literatura:" + +#: include/identity.php:672 +msgid "Television:" +msgstr "Televisión:" + +#: include/identity.php:674 +msgid "Film/dance/culture/entertainment:" +msgstr "Películas/baile/cultura/entretenimiento:" + +#: include/identity.php:676 +msgid "Love/Romance:" +msgstr "Amor/Romance:" + +#: include/identity.php:678 +msgid "Work/employment:" +msgstr "Trabajo/ocupación:" + +#: include/identity.php:680 +msgid "School/education:" +msgstr "Escuela/estudios:" + +#: include/identity.php:684 +msgid "Forums:" +msgstr "Foros:" + +#: include/identity.php:692 mod/events.php:507 +msgid "Basic" +msgstr "Basic" + +#: include/identity.php:693 mod/events.php:508 mod/admin.php:959 +#: mod/contacts.php:870 +msgid "Advanced" +msgstr "Avanzado" + +#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142 +msgid "Status Messages and Posts" +msgstr "Mensajes de Estado y Publicaciones" + +#: include/identity.php:725 mod/contacts.php:844 +msgid "Profile Details" +msgstr "Detalles del Perfil" + +#: include/identity.php:733 mod/photos.php:87 +msgid "Photo Albums" +msgstr "Álbum de Fotos" + +#: include/identity.php:772 mod/notes.php:46 +msgid "Personal Notes" msgstr "Notas personales" -#: include/nav.php:86 -msgid "Your personal notes" -msgstr "Tus notas personales" +#: include/identity.php:775 +msgid "Only You Can See This" +msgstr "Únicamente tú puedes ver esto" -#: include/nav.php:95 -msgid "Sign in" -msgstr "Date de alta" +#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746 +msgid "[Name Withheld]" +msgstr "[Nombre oculto]" -#: include/nav.php:105 -msgid "Home Page" -msgstr "Página de inicio" +#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15 +#: mod/display.php:103 mod/display.php:279 mod/display.php:478 +#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705 +msgid "Item not found." +msgstr "Elemento no encontrado." -#: include/nav.php:109 -msgid "Create an account" -msgstr "Crea una cuenta" +#: include/items.php:1969 +msgid "Do you really want to delete this item?" +msgstr "¿Realmente quieres borrar este objeto?" -#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298 -msgid "Help" -msgstr "Ayuda" +#: include/items.php:1971 mod/api.php:105 mod/message.php:217 +#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677 +#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110 +msgid "Yes" +msgstr "Sí" -#: include/nav.php:115 -msgid "Help and documentation" -msgstr "Ayuda y documentación" +#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23 +#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101 +#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33 +#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9 +#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103 +#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9 +#: mod/message.php:46 mod/message.php:182 mod/manage.php:96 +#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150 +#: mod/profile_photo.php:19 mod/profile_photo.php:175 +#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110 +#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605 +#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11 +#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58 +#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42 +#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665 +#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77 +#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61 +#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199 +#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401 +msgid "Permission denied." +msgstr "Permiso denegado." -#: include/nav.php:119 -msgid "Apps" -msgstr "Aplicaciones" +#: include/items.php:2239 +msgid "Archives" +msgstr "Archivos" -#: include/nav.php:119 -msgid "Addon applications, utilities, games" -msgstr "Aplicaciones, utilidades, juegos" +#: include/oembed.php:264 +msgid "Embedded content" +msgstr "Contenido integrado" -#: include/nav.php:123 -msgid "Search site content" -msgstr " Busca contenido en la página" +#: include/oembed.php:272 +msgid "Embedding disabled" +msgstr "Contenido incrustrado desabilitado" -#: include/nav.php:143 include/nav.php:145 mod/community.php:36 -msgid "Community" -msgstr "Comunidad" - -#: include/nav.php:143 -msgid "Conversations on this site" -msgstr "Conversaciones en este sitio" - -#: include/nav.php:145 -msgid "Conversations on the network" -msgstr "Conversaciones en la red" - -#: include/nav.php:152 -msgid "Directory" -msgstr "Directorio" - -#: include/nav.php:152 -msgid "People directory" -msgstr "Directorio de usuarios" - -#: include/nav.php:154 -msgid "Information" -msgstr "Información" - -#: include/nav.php:154 -msgid "Information about this friendica instance" -msgstr "Información sobre esta instancia de friendica" - -#: include/nav.php:158 view/theme/frio/theme.php:256 -msgid "Conversations from your friends" -msgstr "Conversaciones de tus amigos" - -#: include/nav.php:159 -msgid "Network Reset" -msgstr "Reseteo de la red" - -#: include/nav.php:159 -msgid "Load Network page with no filters" -msgstr "Cargar pagina de redes sin filtros" - -#: include/nav.php:166 -msgid "Friend Requests" -msgstr "Solicitudes de amistad" - -#: include/nav.php:169 mod/notifications.php:96 -msgid "Notifications" -msgstr "Notificaciones" - -#: include/nav.php:170 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" - -#: include/nav.php:171 mod/settings.php:902 -msgid "Mark as seen" -msgstr "Marcar como leído" - -#: include/nav.php:171 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones del sistema como leídas" - -#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258 -msgid "Messages" -msgstr "Mensajes" - -#: include/nav.php:175 view/theme/frio/theme.php:258 -msgid "Private mail" -msgstr "Correo privado" - -#: include/nav.php:176 -msgid "Inbox" -msgstr "Entrada" - -#: include/nav.php:177 -msgid "Outbox" -msgstr "Enviados" - -#: include/nav.php:178 mod/message.php:16 -msgid "New Message" -msgstr "Nuevo mensaje" - -#: include/nav.php:181 -msgid "Manage" -msgstr "Administrar" - -#: include/nav.php:181 -msgid "Manage other pages" -msgstr "Administrar otras páginas" - -#: include/nav.php:184 mod/settings.php:81 -msgid "Delegations" -msgstr "Delegaciones" - -#: include/nav.php:184 mod/delegate.php:130 -msgid "Delegate Page Management" -msgstr "Delegar la administración de la página" - -#: include/nav.php:186 mod/admin.php:1524 mod/admin.php:1782 -#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:259 -msgid "Settings" -msgstr "Configuración" - -#: include/nav.php:186 view/theme/frio/theme.php:259 -msgid "Account settings" -msgstr "Configuración de tu cuenta" - -#: include/nav.php:189 -msgid "Manage/Edit Profiles" -msgstr "Manejar/editar Perfiles" - -#: include/nav.php:192 view/theme/frio/theme.php:260 -msgid "Manage/edit friends and contacts" -msgstr "Administrar/editar amigos y contactos" - -#: include/nav.php:197 mod/admin.php:186 -msgid "Admin" -msgstr "Admin" - -#: include/nav.php:197 -msgid "Site setup and configuration" -msgstr "Opciones y configuración del sitio" - -#: include/nav.php:200 -msgid "Navigation" -msgstr "Navegación" - -#: include/nav.php:200 -msgid "Site map" -msgstr "Mapa del sitio" - -#: include/like.php:186 +#: include/ostatus.php:1825 #, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s atenderá %2$s's %3$s" +msgid "%s is now following %s." +msgstr "%s sigue ahora a %s." -#: include/like.php:188 +#: include/ostatus.php:1826 +msgid "following" +msgstr "siguiendo" + +#: include/ostatus.php:1829 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s no atenderá %2$s's %3$s" +msgid "%s stopped following %s." +msgstr "%s dejó de seguir a %s." -#: include/like.php:190 +#: include/ostatus.php:1830 +msgid "stopped following" +msgstr "dejó de seguir" + +#: include/text.php:304 +msgid "newer" +msgstr "más nuevo" + +#: include/text.php:306 +msgid "older" +msgstr "más antiguo" + +#: include/text.php:311 +msgid "prev" +msgstr "ant." + +#: include/text.php:313 +msgid "first" +msgstr "primera" + +#: include/text.php:345 +msgid "last" +msgstr "última" + +#: include/text.php:348 +msgid "next" +msgstr "sig." + +#: include/text.php:403 +msgid "Loading more entries..." +msgstr "Cargar mas entradas .." + +#: include/text.php:404 +msgid "The end" +msgstr "El fin" + +#: include/text.php:889 +msgid "No contacts" +msgstr "Sin contactos" + +#: include/text.php:912 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s puede que atienda %2$s's %3$s" +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Contacto" +msgstr[1] "%d Contactos" -#: include/acl_selectors.php:327 -msgid "Post to Email" -msgstr "Publicar mediante correo electrónico" +#: include/text.php:925 +msgid "View Contacts" +msgstr "Ver contactos" -#: include/acl_selectors.php:332 +#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31 +#: mod/editpost.php:109 +msgid "Save" +msgstr "Guardar" + +#: include/text.php:1076 +msgid "poke" +msgstr "tocar" + +#: include/text.php:1076 +msgid "poked" +msgstr "tocó a" + +#: include/text.php:1077 +msgid "ping" +msgstr "hacer \"ping\"" + +#: include/text.php:1077 +msgid "pinged" +msgstr "hizo \"ping\" a" + +#: include/text.php:1078 +msgid "prod" +msgstr "empujar" + +#: include/text.php:1078 +msgid "prodded" +msgstr "empujó a" + +#: include/text.php:1079 +msgid "slap" +msgstr "abofetear" + +#: include/text.php:1079 +msgid "slapped" +msgstr "abofeteó a" + +#: include/text.php:1080 +msgid "finger" +msgstr "meter dedo" + +#: include/text.php:1080 +msgid "fingered" +msgstr "le metió un dedo a" + +#: include/text.php:1081 +msgid "rebuff" +msgstr "desairar" + +#: include/text.php:1081 +msgid "rebuffed" +msgstr "desairó a" + +#: include/text.php:1095 +msgid "happy" +msgstr "feliz" + +#: include/text.php:1096 +msgid "sad" +msgstr "triste" + +#: include/text.php:1097 +msgid "mellow" +msgstr "sentimental" + +#: include/text.php:1098 +msgid "tired" +msgstr "cansado" + +#: include/text.php:1099 +msgid "perky" +msgstr "alegre" + +#: include/text.php:1100 +msgid "angry" +msgstr "furioso" + +#: include/text.php:1101 +msgid "stupified" +msgstr "estupefacto" + +#: include/text.php:1102 +msgid "puzzled" +msgstr "extrañado" + +#: include/text.php:1103 +msgid "interested" +msgstr "interesado" + +#: include/text.php:1104 +msgid "bitter" +msgstr "rencoroso" + +#: include/text.php:1105 +msgid "cheerful" +msgstr "jovial" + +#: include/text.php:1106 +msgid "alive" +msgstr "vivo" + +#: include/text.php:1107 +msgid "annoyed" +msgstr "enojado" + +#: include/text.php:1108 +msgid "anxious" +msgstr "ansioso" + +#: include/text.php:1109 +msgid "cranky" +msgstr "irritable" + +#: include/text.php:1110 +msgid "disturbed" +msgstr "perturbado" + +#: include/text.php:1111 +msgid "frustrated" +msgstr "frustrado" + +#: include/text.php:1112 +msgid "motivated" +msgstr "motivado" + +#: include/text.php:1113 +msgid "relaxed" +msgstr "relajado" + +#: include/text.php:1114 +msgid "surprised" +msgstr "sorprendido" + +#: include/text.php:1324 mod/videos.php:380 +msgid "View Video" +msgstr "Ver vídeo" + +#: include/text.php:1356 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1388 include/text.php:1400 +msgid "Click to open/close" +msgstr "Pulsa para abrir/cerrar" + +#: include/text.php:1526 +msgid "View on separate page" +msgstr "Ver en pagina aparte" + +#: include/text.php:1527 +msgid "view on separate page" +msgstr "ver en pagina aparte" + +#: include/text.php:1806 +msgid "activity" +msgstr "Actividad" + +#: include/text.php:1808 mod/content.php:623 object/Item.php:431 +#: object/Item.php:444 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "Comentario" + +#: include/text.php:1809 +msgid "post" +msgstr "Publicación" + +#: include/text.php:1977 +msgid "Item filed" +msgstr "Elemento archivado" + +#: include/user.php:39 mod/settings.php:373 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." + +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Se necesita invitación." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "No se puede verificar la invitación." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Dirección OpenID no válida" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Por favor, introduce la información necesaria." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Por favor, usa un nombre más corto." + +#: include/user.php:98 +msgid "Name too short." +msgstr "El nombre es demasiado corto." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "No parece que ese sea tu nombre completo." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "No es una dirección de correo electrónico válida." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "No se puede utilizar este correo electrónico." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "El apodo solo puede contener \"a-z\", \"0-9\" y \"_\"." + +#: include/user.php:147 include/user.php:245 +msgid "Nickname is already registered. Please choose another." +msgstr "Apodo ya registrado. Por favor, elije otro." + +#: include/user.php:157 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro." + +#: include/user.php:173 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado." + +#: include/user.php:231 +msgid "An error occurred during registration. Please try again." +msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo." + +#: include/user.php:256 view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "predeterminado" + +#: include/user.php:266 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo." + +#: include/user.php:326 include/user.php:333 include/user.php:340 +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180 +#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232 +#: mod/photos.php:1819 +msgid "Profile Photos" +msgstr "Foto del perfil" + +#: include/user.php:414 #, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Conectores deshabilitados, ya que \"%s\" es habilitado." +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\t" +msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrarse en %2$s. Su cuenta está pendiente de aprobación por el administrador.\n\t" -#: include/acl_selectors.php:333 mod/settings.php:1181 -msgid "Hide your profile details from unknown viewers?" -msgstr "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?" - -#: include/acl_selectors.php:338 -msgid "Visible to everybody" -msgstr "Visible para cualquiera" - -#: include/acl_selectors.php:339 view/theme/vier/config.php:103 -msgid "show" -msgstr "mostrar" - -#: include/acl_selectors.php:340 view/theme/vier/config.php:103 -msgid "don't show" -msgstr "no mostrar" - -#: include/acl_selectors.php:346 mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: dirección de correo electrónico" - -#: include/acl_selectors.php:347 mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com" - -#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156 -#: mod/photos.php:1535 -msgid "Permissions" -msgstr "Permisos" - -#: include/acl_selectors.php:350 -msgid "Close" -msgstr "Cerrado" - -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[sin asunto]" - -#: index.php:244 mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Tienes que estar registrado para tener acceso a los accesorios." - -#: index.php:288 mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 -#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 -msgid "Not Found" -msgstr "No se ha encontrado" - -#: index.php:291 mod/help.php:56 -msgid "Page not found." -msgstr "Página no encontrada." - -#: index.php:400 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "Permiso denegado" - -#: index.php:451 -msgid "toggle mobile" -msgstr "Cambiar a versión móvil" - -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Cuenta aprobada." - -#: mod/regmod.php:92 +#: include/user.php:424 #, php-format -msgid "Registration revoked for %s" -msgstr "Registro anulado para %s" +msgid "Registration at %s" +msgstr "Registro en %s" -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Por favor accede." +#: include/user.php:434 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrar en %2$s. Su cuenta ha sido creada.\n\t" + +#: include/user.php:438 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3$s\n\t\t\tNombre de la cuenta:\t\t%1$s\n\t\t\tContraseña:\t\t%5$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %2$s." + +#: include/user.php:470 mod/admin.php:1213 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles de registro para %s" #: mod/oexchange.php:25 msgid "Post successful." msgstr "¡Publicado!" -#: mod/update_community.php:19 mod/update_notes.php:36 -#: mod/update_display.php:23 mod/update_profile.php:35 -#: mod/update_network.php:27 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenido incrustado - recarga la página para verlo]" - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Buscar perfiles - %s" - -#: mod/dirfind.php:47 -#, php-format -msgid "Forum Search - %s" -msgstr "Búsqueda de foro - %s" - -#: mod/dirfind.php:240 mod/match.php:107 -msgid "No matches" -msgstr "Sin conincidencias" - #: mod/viewsrc.php:7 msgid "Access denied." msgstr "Acceso denegado." @@ -3236,9 +3137,9 @@ msgstr "Notificaciones del sistema" msgid "Remove term" msgstr "Eliminar término" -#: mod/search.php:93 mod/search.php:99 mod/directory.php:37 -#: mod/viewcontacts.php:35 mod/videos.php:194 mod/photos.php:944 -#: mod/display.php:200 mod/community.php:22 mod/dfrn_request.php:791 +#: mod/search.php:93 mod/search.php:99 mod/community.php:22 +#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944 +#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35 msgid "Public access denied." msgstr "Acceso público denegado." @@ -3268,210 +3169,6 @@ msgstr "Objetos taggeado con: %s" msgid "Results for: %s" msgstr "Resultados para: %s" -#: mod/notifications.php:35 -msgid "Invalid request identifier." -msgstr "Solicitud de identificación no válida." - -#: mod/notifications.php:44 mod/notifications.php:180 -#: mod/notifications.php:252 -msgid "Discard" -msgstr "Descartar" - -#: mod/notifications.php:60 mod/notifications.php:179 -#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 -#: mod/contacts.php:1000 -msgid "Ignore" -msgstr "Ignorar" - -#: mod/notifications.php:105 -msgid "Network Notifications" -msgstr "Notificaciones de Red" - -#: mod/notifications.php:117 -msgid "Personal Notifications" -msgstr "Notificaciones personales" - -#: mod/notifications.php:123 -msgid "Home Notifications" -msgstr "Notificaciones de Inicio" - -#: mod/notifications.php:152 -msgid "Show Ignored Requests" -msgstr "Mostrar peticiones ignoradas" - -#: mod/notifications.php:152 -msgid "Hide Ignored Requests" -msgstr "Ocultar peticiones ignoradas" - -#: mod/notifications.php:164 mod/notifications.php:222 -msgid "Notification type: " -msgstr "Tipo de notificación: " - -#: mod/notifications.php:167 -#, php-format -msgid "suggested by %s" -msgstr "sugerido por %s" - -#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 -msgid "Hide this contact from others" -msgstr "Ocultar este contacto a los demás." - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "Post a new friend activity" -msgstr "Publica tu nueva amistad" - -#: mod/notifications.php:173 mod/notifications.php:240 -msgid "if applicable" -msgstr "Si corresponde" - -#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 -msgid "Approve" -msgstr "Aprobar" - -#: mod/notifications.php:195 -msgid "Claims to be known to you: " -msgstr "Dice conocerte: " - -#: mod/notifications.php:196 -msgid "yes" -msgstr "sí" - -#: mod/notifications.php:196 -msgid "no" -msgstr "no" - -#: mod/notifications.php:197 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "¿Deberá la coneccion ser bidireccional?\n\"Amigo\" implica que permitas la lectura y subscribas a las publicaciones del contacto.\n\"Admirador\" significa que permitas la lectura de tus publicaciones pero que no quieras ver sus publicaciones.\n\nAprobar como:" - -#: mod/notifications.php:200 -msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "¿Deberá la coneccion ser bidireccional?\n\"Amigo\" implica que permitas la lectura y subscribas a las publicaciones del contacto.\n\"Sharer\" significa que permitas la lectura de tus publicaciones pero que no quieras ver sus publicaciones.\n\nAprobar como:" - -#: mod/notifications.php:209 -msgid "Friend" -msgstr "Amigo" - -#: mod/notifications.php:210 -msgid "Sharer" -msgstr "Lector" - -#: mod/notifications.php:210 -msgid "Fan/Admirer" -msgstr "Fan/Admirador" - -#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 -msgid "Profile URL" -msgstr "URL Perfil" - -#: mod/notifications.php:260 -msgid "No introductions." -msgstr "Sin presentaciones." - -#: mod/notifications.php:299 -msgid "Show unread" -msgstr "Mostrar no leído" - -#: mod/notifications.php:299 -msgid "Show all" -msgstr "Mostrar todo" - -#: mod/notifications.php:305 -#, php-format -msgid "No more %s notifications." -msgstr "No más notificaciones de %s." - -#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134 -#: mod/profiles.php:180 mod/profiles.php:617 -msgid "Profile not found." -msgstr "Perfil no encontrado." - -#: mod/dfrn_confirm.php:126 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:114 -msgid "Contact not found." -msgstr "Contacto no encontrado." - -#: mod/dfrn_confirm.php:127 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada." - -#: mod/dfrn_confirm.php:246 -msgid "Response from remote site was not understood." -msgstr "La respuesta desde el sitio remoto no ha sido entendida." - -#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 -msgid "Unexpected response from remote site: " -msgstr "Respuesta inesperada desde el sitio remoto: " - -#: mod/dfrn_confirm.php:269 -msgid "Confirmation completed successfully." -msgstr "Confirmación completada con éxito." - -#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 -msgid "Remote site reported: " -msgstr "El sito remoto informó: " - -#: mod/dfrn_confirm.php:283 -msgid "Temporary failure. Please wait and try again." -msgstr "Error temporal. Por favor, espere y vuelva a intentarlo." - -#: mod/dfrn_confirm.php:290 -msgid "Introduction failed or was revoked." -msgstr "La presentación ha fallado o ha sido anulada." - -#: mod/dfrn_confirm.php:419 -msgid "Unable to set contact photo." -msgstr "Imposible establecer la foto del contacto." - -#: mod/dfrn_confirm.php:557 -#, php-format -msgid "No user record found for '%s' " -msgstr "No se ha encontrado a ningún '%s' " - -#: mod/dfrn_confirm.php:567 -msgid "Our site encryption key is apparently messed up." -msgstr "Nuestra clave de cifrado del sitio es aparentemente un lío." - -#: mod/dfrn_confirm.php:578 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Se ha proporcionado una dirección vacía o no hemos podido descifrarla." - -#: mod/dfrn_confirm.php:599 -msgid "Contact record was not found for you on our site." -msgstr "El contacto no se ha encontrado en nuestra base de datos." - -#: mod/dfrn_confirm.php:613 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "La clave pública del sitio no está disponible en los datos del contacto para %s." - -#: mod/dfrn_confirm.php:633 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo." - -#: mod/dfrn_confirm.php:644 -msgid "Unable to set your contact credentials on our system." -msgstr "No se puede establecer las credenciales de tu contacto en nuestro sistema." - -#: mod/dfrn_confirm.php:703 -msgid "Unable to update your contact profile details on our system" -msgstr "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema" - -#: mod/dfrn_confirm.php:775 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s se ha unido a %2$s" - #: mod/friendica.php:70 msgid "This is Friendica, version" msgstr "Esto es Friendica, versión" @@ -3560,6 +3257,10 @@ msgid "" "Password reset failed." msgstr "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña." +#: mod/lostpass.php:109 boot.php:1807 +msgid "Password Reset" +msgstr "Restablecer la contraseña" + #: mod/lostpass.php:110 msgid "Your password has been reset as requested." msgstr "Tu contraseña ha sido restablecida como solicitaste." @@ -3622,6 +3323,10 @@ msgid "" "your email for further instructions." msgstr "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales." +#: mod/lostpass.php:161 boot.php:1795 +msgid "Nickname or Email: " +msgstr "Apodo o Correo electrónico: " + #: mod/lostpass.php:162 msgid "Reset" msgstr "Restablecer" @@ -3634,50 +3339,14 @@ msgstr "Nigún perfil" msgid "Help:" msgstr "Ayuda:" -#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 -#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17 -#: mod/wall_attach.php:25 mod/wall_attach.php:76 -msgid "Invalid request." -msgstr "Consulta invalida" +#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12 +#: mod/fetch.php:39 mod/fetch.php:48 index.php:288 +msgid "Not Found" +msgstr "No se ha encontrado" -#: mod/wall_upload.php:151 mod/photos.php:786 mod/profile_photo.php:150 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La imagen excede el limite de %s" - -#: mod/wall_upload.php:188 mod/photos.php:826 mod/profile_photo.php:159 -msgid "Unable to process image." -msgstr "Imposible procesar la imagen." - -#: mod/wall_upload.php:221 mod/photos.php:853 mod/profile_photo.php:307 -msgid "Image upload failed." -msgstr "Error al subir la imagen." - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Solicitud de amistad enviada." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugerencias de amistad" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Recomienda un amigo a %s" - -#: mod/fsuggest.php:107 mod/events.php:506 mod/invite.php:140 -#: mod/crepair.php:154 mod/content.php:728 mod/profiles.php:688 -#: mod/poke.php:199 mod/photos.php:1104 mod/photos.php:1226 -#: mod/photos.php:1539 mod/photos.php:1590 mod/photos.php:1638 -#: mod/photos.php:1724 mod/install.php:272 mod/install.php:312 -#: mod/contacts.php:577 mod/mood.php:137 mod/localtime.php:45 -#: mod/message.php:357 mod/message.php:547 mod/manage.php:143 -#: object/Item.php:720 view/theme/frio/config.php:59 -#: view/theme/quattro/config.php:64 view/theme/vier/config.php:107 -#: view/theme/duepuntozero/config.php:59 -msgid "Submit" -msgstr "Envíar" +#: mod/help.php:56 index.php:291 +msgid "Page not found." +msgstr "Página no encontrada." #: mod/lockview.php:31 mod/lockview.php:39 msgid "Remote privacy information not available." @@ -3687,94 +3356,6 @@ msgstr "Privacidad de la información remota no disponible." msgid "Visible to:" msgstr "Visible para:" -#: mod/events.php:95 mod/events.php:97 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de su comienzo." - -#: mod/events.php:104 mod/events.php:106 -msgid "Event title and start time are required." -msgstr "Título del evento y hora de inicio requeridas." - -#: mod/events.php:380 mod/cal.php:276 -msgid "View" -msgstr "Vista" - -#: mod/events.php:381 -msgid "Create New Event" -msgstr "Crea un evento nuevo" - -#: mod/events.php:382 mod/cal.php:277 -msgid "Previous" -msgstr "Previo" - -#: mod/events.php:383 mod/cal.php:278 mod/install.php:231 -msgid "Next" -msgstr "Siguiente" - -#: mod/events.php:392 mod/cal.php:287 -msgid "list" -msgstr "lista" - -#: mod/events.php:482 -msgid "Event details" -msgstr "Detalles del evento" - -#: mod/events.php:483 -msgid "Starting date and Title are required." -msgstr "Se requiere fecha de comienzo y titulo" - -#: mod/events.php:484 mod/events.php:485 -msgid "Event Starts:" -msgstr "Inicio del evento:" - -#: mod/events.php:484 mod/events.php:496 mod/profiles.php:716 -msgid "Required" -msgstr "Obligatorio" - -#: mod/events.php:486 mod/events.php:502 -msgid "Finish date/time is not known or not relevant" -msgstr "La fecha/hora de finalización no es conocida o es irrelevante." - -#: mod/events.php:488 mod/events.php:489 -msgid "Event Finishes:" -msgstr "Finalización del evento:" - -#: mod/events.php:490 mod/events.php:503 -msgid "Adjust for viewer timezone" -msgstr "Ajuste de zona horaria" - -#: mod/events.php:492 -msgid "Description:" -msgstr "Descripción:" - -#: mod/events.php:496 mod/events.php:498 -msgid "Title:" -msgstr "Título:" - -#: mod/events.php:499 mod/events.php:500 -msgid "Share this event" -msgstr "Comparte este evento" - -#: mod/directory.php:197 view/theme/vier/theme.php:201 -msgid "Global Directory" -msgstr "Directorio global" - -#: mod/directory.php:199 -msgid "Find on this site" -msgstr "Buscar en este sitio" - -#: mod/directory.php:201 -msgid "Results for:" -msgstr "Resultados para:" - -#: mod/directory.php:203 -msgid "Site Directory" -msgstr "Directorio del sitio" - -#: mod/directory.php:210 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas pueden que estén ocultas)." - #: mod/openid.php:24 msgid "OpenID protocol error. No ID returned." msgstr "Error de protocolo OpenID. ID no devuelta." @@ -3825,13 +3406,13 @@ msgid "" "select \"Export account\"" msgstr "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\"" -#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586 -#: mod/contacts.php:939 +#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930 +#: mod/viewcontacts.php:97 #, php-format msgid "Visit %s's profile [%s]" msgstr "Ver el perfil de %s [%s]" -#: mod/nogroup.php:42 mod/contacts.php:940 +#: mod/nogroup.php:42 mod/contacts.php:931 msgid "Edit contact" msgstr "Modificar contacto" @@ -3839,18 +3420,6 @@ msgstr "Modificar contacto" msgid "Contacts who are not members of a group" msgstr "Contactos sin grupo" -#: mod/match.php:33 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado." - -#: mod/match.php:86 -msgid "is interested in:" -msgstr "estás interesado en:" - -#: mod/match.php:100 -msgid "Profile Match" -msgstr "Coincidencias de Perfil" - #: mod/uexport.php:29 msgid "Export account" msgstr "Exportar cuenta" @@ -3973,13 +3542,25 @@ msgid "" "important, please visit http://friendica.com" msgstr "Para más información sobre el Proyecto Friendica y sobre por qué pensamos que es algo importante, visita http://friendica.com" +#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357 +#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154 +#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 +#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104 +#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590 +#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577 +#: mod/install.php:272 mod/install.php:312 object/Item.php:720 +#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Envíar" + #: mod/fbrowser.php:133 msgid "Files" msgstr "Archivos" -#: mod/maintenance.php:9 -msgid "System down for maintenance" -msgstr "Servicio suspendido por mantenimiento" +#: mod/profperm.php:19 mod/group.php:72 index.php:400 +msgid "Permission denied" +msgstr "Permiso denegado" #: mod/profperm.php:25 mod/profperm.php:56 msgid "Invalid profile identifier." @@ -4001,9 +3582,627 @@ msgstr "Visible para" msgid "All Contacts (with secure profile access)" msgstr "Todos los contactos (con perfil de acceso seguro)" -#: mod/viewcontacts.php:72 -msgid "No contacts." -msgstr "Ningún contacto." +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Etiqueta eliminada" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selecciona una etiqueta para eliminar: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Eliminar" + +#: mod/repair_ostatus.php:14 +msgid "Resubscribing to OStatus contacts" +msgstr "Resubscribir a contactos de OStatus" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "error" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "hecho!" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "Mantén esta ventana abierta hasta que el proceso ha terminado." + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "No se han localizado delegados potenciales de la página." + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Administradores actuales de la página" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Delegados actuales de la página" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Delegados potenciales" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Añadir" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Sin entradas." + +#: mod/credits.php:16 +msgid "Credits" +msgstr "Creditos" + +#: mod/credits.php:17 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! " + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- seleccionar -" + +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s está siguiendo las %3$s de %2$s" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Elemento no disponible." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Elemento no encontrado." + +#: mod/apps.php:7 index.php:244 +msgid "You must be logged in to use addons. " +msgstr "Tienes que estar registrado para tener acceso a los accesorios." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Aplicaciones" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Sin aplicaciones" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "No extendido" + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bienvenido a Friendica " + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Listado de nuevos miembros" + +#: mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá." + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Empezando" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Visita guiada a Friendica" + +#: mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Ir a tus ajustes" + +#: mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres." + +#: mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." + +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707 +msgid "Upload Profile Photo" +msgstr "Subir foto del Perfil" + +#: mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editar tu perfil" + +#: mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Palabras clave del perfil" + +#: mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Conectando" + +#: mod/newmember.php:51 +msgid "Importing Emails" +msgstr "Importando correos electrónicos" + +#: mod/newmember.php:51 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico." + +#: mod/newmember.php:53 +msgid "Go to Your Contacts Page" +msgstr "Ir a tu página de contactos" + +#: mod/newmember.php:53 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"." + +#: mod/newmember.php:55 +msgid "Go to Your Site's Directory" +msgstr "Ir al directorio de tu sitio" + +#: mod/newmember.php:55 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario." + +#: mod/newmember.php:57 +msgid "Finding New People" +msgstr "Encontrando nueva gente" + +#: mod/newmember.php:57 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." + +#: mod/newmember.php:65 +msgid "Group Your Contacts" +msgstr "Agrupa tus contactos" + +#: mod/newmember.php:65 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red." + +#: mod/newmember.php:68 +msgid "Why Aren't My Posts Public?" +msgstr "¿Por qué mis publicaciones no son públicas?" + +#: mod/newmember.php:68 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba." + +#: mod/newmember.php:73 +msgid "Getting Help" +msgstr "Consiguiendo ayuda" + +#: mod/newmember.php:77 +msgid "Go to the Help Section" +msgstr "Ir a la sección de ayuda" + +#: mod/newmember.php:77 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Eliminar mi cuenta" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduce tu contraseña para la verificación:" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Elemento no encontrado" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Editar publicación" + +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Conversión horária" + +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos." + +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Tiempo UTC: %s" + +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Zona horaria actual: %s" + +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Zona horaria local convertida: %s" + +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Por favor, selecciona tu zona horaria:" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "La publicación fue creada" + +#: mod/group.php:29 +msgid "Group created." +msgstr "Grupo creado." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Imposible crear el grupo." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Grupo no encontrado." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "El nombre del grupo ha cambiado." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Guardar grupo" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Crea un grupo de contactos/amigos." + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Grupo eliminado." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "No se puede eliminar el grupo." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Editor de grupos" + +#: mod/group.php:190 +msgid "Members" +msgstr "Miembros" + +#: mod/group.php:192 mod/contacts.php:692 +msgid "All Contacts" +msgstr "Todos los contactos" + +#: mod/group.php:193 mod/content.php:130 mod/network.php:496 +msgid "Group is empty" +msgstr "El grupo está vacío" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado." + +#: mod/wallmessage.php:56 mod/message.php:71 +msgid "No recipient selected." +msgstr "Ningún destinatario seleccionado" + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Imposible comprobar tu servidor de inicio." + +#: mod/wallmessage.php:62 mod/message.php:78 +msgid "Message could not be sent." +msgstr "El mensaje no ha podido ser enviado." + +#: mod/wallmessage.php:65 mod/message.php:81 +msgid "Message collection failure." +msgstr "Fallo en la recolección de mensajes." + +#: mod/wallmessage.php:68 mod/message.php:84 +msgid "Message sent." +msgstr "Mensaje enviado." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Sin receptor." + +#: mod/wallmessage.php:142 mod/message.php:341 +msgid "Send Private Message" +msgstr "Enviar mensaje privado" + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos." + +#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 +msgid "To:" +msgstr "Para:" + +#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 +msgid "Subject:" +msgstr "Asunto:" + +#: mod/share.php:38 +msgid "link" +msgstr "enlace" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizar la conexión de la aplicación" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Regresa a tu aplicación e introduce este código de seguridad:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Inicia sesión para continuar." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" + +#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652 +#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163 +#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181 +#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198 +#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231 +#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234 +#: mod/dfrn_request.php:862 mod/follow.php:110 +msgid "No" +msgstr "No" + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Texto fuente (bbcode):" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Fuente (Diaspora) para pasar a BBcode:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Entrada: " + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (raw HTML): " + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Fuente (formato Diaspora): " + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/ostatus_subscribe.php:14 +msgid "Subscribing to OStatus contacts" +msgstr "Subscribir a los contactos de OStatus" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "Sin suministro de datos de contacto." + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "No se ha podido conseguir la información del contacto." + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "No se ha podido conseguir datos de amigos para contactar." + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "exito!" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "fallido!" + +#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245 +msgid "ignored" +msgstr "ignorado" + +#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s te da la bienvenida a %2$s" + +#: mod/message.php:75 +msgid "Unable to locate contact information." +msgstr "No se puede encontrar información del contacto." + +#: mod/message.php:215 +msgid "Do you really want to delete this message?" +msgstr "¿Estás seguro de que quieres borrar este mensaje?" + +#: mod/message.php:235 +msgid "Message deleted." +msgstr "Mensaje eliminado." + +#: mod/message.php:266 +msgid "Conversation removed." +msgstr "Conversación eliminada." + +#: mod/message.php:383 +msgid "No messages." +msgstr "No hay mensajes." + +#: mod/message.php:426 +msgid "Message not available." +msgstr "Mensaje no disponibile." + +#: mod/message.php:503 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: mod/message.php:529 mod/message.php:609 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: mod/message.php:531 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " + +#: mod/message.php:535 +msgid "Send Reply" +msgstr "Enviar respuesta" + +#: mod/message.php:579 +#, php-format +msgid "Unknown sender - %s" +msgstr "Remitente desconocido - %s" + +#: mod/message.php:581 +#, php-format +msgid "You and %s" +msgstr "Tú y %s" + +#: mod/message.php:583 +#, php-format +msgid "%s and You" +msgstr "%s y Tú" + +#: mod/message.php:612 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:615 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mensaje" +msgstr[1] "%d mensajes" + +#: mod/manage.php:139 +msgid "Manage Identities and/or Pages" +msgstr "Administrar identidades y/o páginas" + +#: mod/manage.php:140 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" + +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Selecciona una identidad a gestionar:" #: mod/crepair.php:87 msgid "Contact settings applied." @@ -4013,6 +4212,11 @@ msgstr "Contacto configurado con éxito." msgid "Contact update failed." msgstr "Error al actualizar el Contacto." +#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92 +#: mod/dfrn_confirm.php:126 +msgid "Contact not found." +msgstr "Contacto no encontrado." + #: mod/crepair.php:120 msgid "" "WARNING: This is highly advanced and if you enter incorrect" @@ -4059,9 +4263,8 @@ msgid "" "entries from this contact." msgstr "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta." -#: mod/crepair.php:165 mod/admin.php:1396 mod/admin.php:1409 -#: mod/admin.php:1422 mod/admin.php:1438 mod/settings.php:680 -#: mod/settings.php:706 +#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706 +#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438 msgid "Name" msgstr "Nombre" @@ -4097,33 +4300,1966 @@ msgstr "Dirección del Sondeo/Fuentes" msgid "New photo from this URL" msgstr "Nueva foto de esta dirección" -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Etiqueta eliminada" +#: mod/content.php:119 mod/network.php:469 +msgid "No such group" +msgstr "Ningún grupo" -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta" +#: mod/content.php:135 mod/network.php:500 +#, php-format +msgid "Group: %s" +msgstr "Grupo: %s" -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecciona una etiqueta para eliminar: " +#: mod/content.php:325 object/Item.php:95 +msgid "This entry was edited" +msgstr "Esta entrada fue editada" -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Eliminar" +#: mod/content.php:621 object/Item.php:429 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" -#: mod/ping.php:261 -msgid "{0} wants to be your friend" -msgstr "{0} quiere ser tu amigo" +#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 +msgid "Private Message" +msgstr "Mensaje privado" -#: mod/ping.php:276 -msgid "{0} sent you a message" -msgstr "{0} te ha enviado un mensaje" +#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 +msgid "I like this (toggle)" +msgstr "Me gusta esto (cambiar)" -#: mod/ping.php:291 -msgid "{0} requested registration" -msgstr "{0} solicitudes de registro" +#: mod/content.php:702 object/Item.php:263 +msgid "like" +msgstr "me gusta" + +#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" + +#: mod/content.php:703 object/Item.php:264 +msgid "dislike" +msgstr "no me gusta" + +#: mod/content.php:705 object/Item.php:266 +msgid "Share this" +msgstr "Compartir esto" + +#: mod/content.php:705 object/Item.php:266 +msgid "share" +msgstr "compartir" + +#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 +#: mod/photos.php:1721 object/Item.php:717 +msgid "This is you" +msgstr "Este eres tú" + +#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589 +#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403 +#: object/Item.php:719 boot.php:971 +msgid "Comment" +msgstr "Comentar" + +#: mod/content.php:729 object/Item.php:721 +msgid "Bold" +msgstr "Negrita" + +#: mod/content.php:730 object/Item.php:722 +msgid "Italic" +msgstr "Cursiva" + +#: mod/content.php:731 object/Item.php:723 +msgid "Underline" +msgstr "Subrayado" + +#: mod/content.php:732 object/Item.php:724 +msgid "Quote" +msgstr "Cita" + +#: mod/content.php:733 object/Item.php:725 +msgid "Code" +msgstr "Código" + +#: mod/content.php:734 object/Item.php:726 +msgid "Image" +msgstr "Imagen" + +#: mod/content.php:735 object/Item.php:727 +msgid "Link" +msgstr "Enlace" + +#: mod/content.php:736 object/Item.php:728 +msgid "Video" +msgstr "Vídeo" + +#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 +#: object/Item.php:124 +msgid "Edit" +msgstr "Editar" + +#: mod/content.php:771 object/Item.php:227 +msgid "add star" +msgstr "Añadir estrella" + +#: mod/content.php:772 object/Item.php:228 +msgid "remove star" +msgstr "Quitar estrella" + +#: mod/content.php:773 object/Item.php:229 +msgid "toggle star status" +msgstr "Añadir a destacados" + +#: mod/content.php:776 object/Item.php:232 +msgid "starred" +msgstr "marcados con estrellas" + +#: mod/content.php:777 mod/content.php:798 object/Item.php:252 +msgid "add tag" +msgstr "añadir etiqueta" + +#: mod/content.php:787 object/Item.php:240 +msgid "ignore thread" +msgstr "ignorar publicación" + +#: mod/content.php:788 object/Item.php:241 +msgid "unignore thread" +msgstr "revertir ignorar publicacion" + +#: mod/content.php:789 object/Item.php:242 +msgid "toggle ignore status" +msgstr "cambiar estatus de observación" + +#: mod/content.php:803 object/Item.php:137 +msgid "save to folder" +msgstr "grabado en directorio" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will attend" +msgstr "Voy a estar presente" + +#: mod/content.php:848 object/Item.php:201 +msgid "I will not attend" +msgstr "No voy a estar presente" + +#: mod/content.php:848 object/Item.php:201 +msgid "I might attend" +msgstr "Puede que voy a estar presente" + +#: mod/content.php:912 object/Item.php:369 +msgid "to" +msgstr "a" + +#: mod/content.php:913 object/Item.php:371 +msgid "Wall-to-Wall" +msgstr "Muro-A-Muro" + +#: mod/content.php:914 object/Item.php:372 +msgid "via Wall-To-Wall:" +msgstr "via Muro-A-Muro:" + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Solicitud de amistad enviada." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Sugerencias de amistad" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Recomienda un amigo a %s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Ánimo" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Coloca tu ánimo actual y cuéntaselo a tus amigos" + +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Toque/Empujón" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "da un toque, empujón o similar a alguien" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Receptor" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Elige qué desea hacer con el receptor" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Hacer esta publicación privada" + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Imagen recibida, pero ha fallado al recortarla." + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:314 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." + +#: mod/profile_photo.php:124 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." + +#: mod/profile_photo.php:134 +msgid "Unable to process image" +msgstr "Imposible procesar la imagen" + +#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "La imagen excede el limite de %s" + +#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188 +msgid "Unable to process image." +msgstr "Imposible procesar la imagen." + +#: mod/profile_photo.php:248 +msgid "Upload File:" +msgstr "Subir archivo:" + +#: mod/profile_photo.php:249 +msgid "Select a profile:" +msgstr "Elige un perfil:" + +#: mod/profile_photo.php:251 +msgid "Upload" +msgstr "Subir" + +#: mod/profile_photo.php:254 +msgid "or" +msgstr "o" + +#: mod/profile_photo.php:254 +msgid "skip this step" +msgstr "saltar este paso" + +#: mod/profile_photo.php:254 +msgid "select a photo from your photo albums" +msgstr "elige una foto de tus álbumes" + +#: mod/profile_photo.php:268 +msgid "Crop Image" +msgstr "Recortar imagen" + +#: mod/profile_photo.php:269 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." + +#: mod/profile_photo.php:271 +msgid "Done Editing" +msgstr "Editado" + +#: mod/profile_photo.php:305 +msgid "Image uploaded successfully." +msgstr "Imagen subida con éxito." + +#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221 +msgid "Image upload failed." +msgstr "Error al subir la imagen." + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Cuenta aprobada." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registro anulado para %s" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Por favor accede." + +#: mod/notifications.php:35 +msgid "Invalid request identifier." +msgstr "Solicitud de identificación no válida." + +#: mod/notifications.php:44 mod/notifications.php:180 +#: mod/notifications.php:252 +msgid "Discard" +msgstr "Descartar" + +#: mod/notifications.php:60 mod/notifications.php:179 +#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806 +#: mod/contacts.php:991 +msgid "Ignore" +msgstr "Ignorar" + +#: mod/notifications.php:105 +msgid "Network Notifications" +msgstr "Notificaciones de Red" + +#: mod/notifications.php:117 +msgid "Personal Notifications" +msgstr "Notificaciones personales" + +#: mod/notifications.php:123 +msgid "Home Notifications" +msgstr "Notificaciones de Inicio" + +#: mod/notifications.php:152 +msgid "Show Ignored Requests" +msgstr "Mostrar peticiones ignoradas" + +#: mod/notifications.php:152 +msgid "Hide Ignored Requests" +msgstr "Ocultar peticiones ignoradas" + +#: mod/notifications.php:164 mod/notifications.php:222 +msgid "Notification type: " +msgstr "Tipo de notificación: " + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "sugerido por %s" + +#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613 +msgid "Hide this contact from others" +msgstr "Ocultar este contacto a los demás." + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "Post a new friend activity" +msgstr "Publica tu nueva amistad" + +#: mod/notifications.php:173 mod/notifications.php:240 +msgid "if applicable" +msgstr "Si corresponde" + +#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412 +msgid "Approve" +msgstr "Aprobar" + +#: mod/notifications.php:195 +msgid "Claims to be known to you: " +msgstr "Dice conocerte: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "sí" + +#: mod/notifications.php:196 +msgid "no" +msgstr "no" + +#: mod/notifications.php:197 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "¿Deberá la coneccion ser bidireccional?\n\"Amigo\" implica que permitas la lectura y subscribas a las publicaciones del contacto.\n\"Admirador\" significa que permitas la lectura de tus publicaciones pero que no quieras ver sus publicaciones.\n\nAprobar como:" + +#: mod/notifications.php:200 +msgid "" +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Sharer\" means that you " +"allow to read but you do not want to read theirs. Approve as: " +msgstr "¿Deberá la coneccion ser bidireccional?\n\"Amigo\" implica que permitas la lectura y subscribas a las publicaciones del contacto.\n\"Sharer\" significa que permitas la lectura de tus publicaciones pero que no quieras ver sus publicaciones.\n\nAprobar como:" + +#: mod/notifications.php:209 +msgid "Friend" +msgstr "Amigo" + +#: mod/notifications.php:210 +msgid "Sharer" +msgstr "Lector" + +#: mod/notifications.php:210 +msgid "Fan/Admirer" +msgstr "Fan/Admirador" + +#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126 +msgid "Profile URL" +msgstr "URL Perfil" + +#: mod/notifications.php:260 +msgid "No introductions." +msgstr "Sin presentaciones." + +#: mod/notifications.php:299 +msgid "Show unread" +msgstr "Mostrar no leído" + +#: mod/notifications.php:299 +msgid "Show all" +msgstr "Mostrar todo" + +#: mod/notifications.php:305 +#, php-format +msgid "No more %s notifications." +msgstr "No más notificaciones de %s." + +#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180 +#: mod/profiles.php:617 mod/dfrn_confirm.php:70 +msgid "Profile not found." +msgstr "Perfil no encontrado." + +#: mod/profiles.php:38 +msgid "Profile deleted." +msgstr "Perfil eliminado." + +#: mod/profiles.php:56 mod/profiles.php:90 +msgid "Profile-" +msgstr "Perfil-" + +#: mod/profiles.php:75 mod/profiles.php:118 +msgid "New profile created." +msgstr "Nuevo perfil creado." + +#: mod/profiles.php:96 +msgid "Profile unavailable to clone." +msgstr "Imposible duplicar el perfil." + +#: mod/profiles.php:190 +msgid "Profile Name is required." +msgstr "Se necesita un nombre de perfil." + +#: mod/profiles.php:338 +msgid "Marital Status" +msgstr "Estado civil" + +#: mod/profiles.php:342 +msgid "Romantic Partner" +msgstr "Pareja sentimental" + +#: mod/profiles.php:354 +msgid "Work/Employment" +msgstr "Trabajo/estudios" + +#: mod/profiles.php:357 +msgid "Religion" +msgstr "Religión" + +#: mod/profiles.php:361 +msgid "Political Views" +msgstr "Preferencias políticas" + +#: mod/profiles.php:365 +msgid "Gender" +msgstr "Género" + +#: mod/profiles.php:369 +msgid "Sexual Preference" +msgstr "Orientación sexual" + +#: mod/profiles.php:373 +msgid "XMPP" +msgstr "XMPP" + +#: mod/profiles.php:377 +msgid "Homepage" +msgstr "Página de inicio" + +#: mod/profiles.php:381 mod/profiles.php:702 +msgid "Interests" +msgstr "Intereses" + +#: mod/profiles.php:385 +msgid "Address" +msgstr "Dirección" + +#: mod/profiles.php:392 mod/profiles.php:698 +msgid "Location" +msgstr "Ubicación" + +#: mod/profiles.php:477 +msgid "Profile updated." +msgstr "Perfil actualizado." + +#: mod/profiles.php:564 +msgid " and " +msgstr " y " + +#: mod/profiles.php:572 +msgid "public profile" +msgstr "perfil público" + +#: mod/profiles.php:575 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s cambió su %2$s a “%3$s”" + +#: mod/profiles.php:576 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Visita %1$s's %2$s" + +#: mod/profiles.php:579 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s tiene una actualización %2$s, cambiando %3$s." + +#: mod/profiles.php:645 +msgid "Hide contacts and friends:" +msgstr "Ocultar contactos y amigos" + +#: mod/profiles.php:650 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "¿Ocultar tu lista de contactos/amigos en este perfil?" + +#: mod/profiles.php:674 +msgid "Show more profile fields:" +msgstr "Mostrar mas campos del perfil:" + +#: mod/profiles.php:686 +msgid "Profile Actions" +msgstr "Acciones de perfil" + +#: mod/profiles.php:687 +msgid "Edit Profile Details" +msgstr "Editar detalles de tu perfil" + +#: mod/profiles.php:689 +msgid "Change Profile Photo" +msgstr "Cambiar imagen del Perfil" + +#: mod/profiles.php:690 +msgid "View this profile" +msgstr "Ver este perfil" + +#: mod/profiles.php:692 +msgid "Create a new profile using these settings" +msgstr "¿Crear un nuevo perfil con esta configuración?" + +#: mod/profiles.php:693 +msgid "Clone this profile" +msgstr "Clonar este perfil" + +#: mod/profiles.php:694 +msgid "Delete this profile" +msgstr "Eliminar este perfil" + +#: mod/profiles.php:696 +msgid "Basic information" +msgstr "Información básica" + +#: mod/profiles.php:697 +msgid "Profile picture" +msgstr "Imagen del perfil" + +#: mod/profiles.php:699 +msgid "Preferences" +msgstr "Preferencias" + +#: mod/profiles.php:700 +msgid "Status information" +msgstr "Información del estatus" + +#: mod/profiles.php:701 +msgid "Additional information" +msgstr "Información addicional" + +#: mod/profiles.php:704 +msgid "Relation" +msgstr "Relación" + +#: mod/profiles.php:708 +msgid "Your Gender:" +msgstr "Género:" + +#: mod/profiles.php:709 +msgid " Marital Status:" +msgstr " Estado civil:" + +#: mod/profiles.php:711 +msgid "Example: fishing photography software" +msgstr "Ejemplo: pesca fotografía software" + +#: mod/profiles.php:716 +msgid "Profile Name:" +msgstr "Nombres del perfil:" + +#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496 +msgid "Required" +msgstr "Obligatorio" + +#: mod/profiles.php:718 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Éste es tu perfil público.
Puede ser visto por cualquier usuario de internet." + +#: mod/profiles.php:719 +msgid "Your Full Name:" +msgstr "Tu nombre completo:" + +#: mod/profiles.php:720 +msgid "Title/Description:" +msgstr "Título/Descrición:" + +#: mod/profiles.php:723 +msgid "Street Address:" +msgstr "Dirección" + +#: mod/profiles.php:724 +msgid "Locality/City:" +msgstr "Localidad/Ciudad:" + +#: mod/profiles.php:725 +msgid "Region/State:" +msgstr "Región/Estado:" + +#: mod/profiles.php:726 +msgid "Postal/Zip Code:" +msgstr "Código postal:" + +#: mod/profiles.php:727 +msgid "Country:" +msgstr "País" + +#: mod/profiles.php:731 +msgid "Who: (if applicable)" +msgstr "¿Quién? (si es aplicable)" + +#: mod/profiles.php:731 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Ejemplos: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:732 +msgid "Since [date]:" +msgstr "Desde [fecha]:" + +#: mod/profiles.php:734 +msgid "Tell us about yourself..." +msgstr "Háblanos sobre ti..." + +#: mod/profiles.php:735 +msgid "XMPP (Jabber) address:" +msgstr "Dirección XMPP (Jabber):" + +#: mod/profiles.php:735 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "La dirección XMPP será propagada entre sus contactos para que puedan seguirle." + +#: mod/profiles.php:736 +msgid "Homepage URL:" +msgstr "Dirección de tu página:" + +#: mod/profiles.php:739 +msgid "Religious Views:" +msgstr "Creencias religiosas:" + +#: mod/profiles.php:740 +msgid "Public Keywords:" +msgstr "Palabras clave públicas:" + +#: mod/profiles.php:740 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" + +#: mod/profiles.php:741 +msgid "Private Keywords:" +msgstr "Palabras clave privadas:" + +#: mod/profiles.php:741 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" + +#: mod/profiles.php:744 +msgid "Musical interests" +msgstr "Gustos musicales" + +#: mod/profiles.php:745 +msgid "Books, literature" +msgstr "Libros, literatura" + +#: mod/profiles.php:746 +msgid "Television" +msgstr "Televisión" + +#: mod/profiles.php:747 +msgid "Film/dance/culture/entertainment" +msgstr "Películas/baile/cultura/entretenimiento" + +#: mod/profiles.php:748 +msgid "Hobbies/Interests" +msgstr "Aficiones/Intereses" + +#: mod/profiles.php:749 +msgid "Love/romance" +msgstr "Amor/Romance" + +#: mod/profiles.php:750 +msgid "Work/employment" +msgstr "Trabajo/ocupación" + +#: mod/profiles.php:751 +msgid "School/education" +msgstr "Escuela/estudios" + +#: mod/profiles.php:752 +msgid "Contact information and Social Networks" +msgstr "Informacioń de contacto y Redes sociales" + +#: mod/profiles.php:794 +msgid "Edit/Manage Profiles" +msgstr "Editar/Administrar perfiles" + +#: mod/allfriends.php:43 +msgid "No friends to display." +msgstr "No hay amigos para mostrar." + +#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "El acceso a este perfil ha sido restringido." + +#: mod/cal.php:276 mod/events.php:380 +msgid "View" +msgstr "Vista" + +#: mod/cal.php:277 mod/events.php:382 +msgid "Previous" +msgstr "Previo" + +#: mod/cal.php:278 mod/events.php:383 mod/install.php:231 +msgid "Next" +msgstr "Siguiente" + +#: mod/cal.php:287 mod/events.php:392 +msgid "list" +msgstr "lista" + +#: mod/cal.php:297 +msgid "User not found" +msgstr "Usuario no encontrado" + +#: mod/cal.php:313 +msgid "This calendar format is not supported" +msgstr "Este formato de calendario no se soporta" + +#: mod/cal.php:315 +msgid "No exportable data found" +msgstr "No se ha encontrado información exportable" + +#: mod/cal.php:330 +msgid "calendar" +msgstr "calendario" + +#: mod/common.php:86 +msgid "No contacts in common." +msgstr "Sin contactos en común." + +#: mod/common.php:134 mod/contacts.php:863 +msgid "Common Friends" +msgstr "Amigos comunes" + +#: mod/community.php:27 +msgid "Not available." +msgstr "No disponible" + +#: mod/directory.php:197 view/theme/vier/theme.php:201 +msgid "Global Directory" +msgstr "Directorio global" + +#: mod/directory.php:199 +msgid "Find on this site" +msgstr "Buscar en este sitio" + +#: mod/directory.php:201 +msgid "Results for:" +msgstr "Resultados para:" + +#: mod/directory.php:203 +msgid "Site Directory" +msgstr "Directorio del sitio" + +#: mod/directory.php:210 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas pueden que estén ocultas)." + +#: mod/dirfind.php:36 +#, php-format +msgid "People Search - %s" +msgstr "Buscar perfiles - %s" + +#: mod/dirfind.php:47 +#, php-format +msgid "Forum Search - %s" +msgstr "Búsqueda de foro - %s" + +#: mod/dirfind.php:240 mod/match.php:107 +msgid "No matches" +msgstr "Sin conincidencias" + +#: mod/display.php:473 +msgid "Item has been removed." +msgstr "El elemento ha sido eliminado." + +#: mod/events.php:95 mod/events.php:97 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de su comienzo." + +#: mod/events.php:104 mod/events.php:106 +msgid "Event title and start time are required." +msgstr "Título del evento y hora de inicio requeridas." + +#: mod/events.php:381 +msgid "Create New Event" +msgstr "Crea un evento nuevo" + +#: mod/events.php:482 +msgid "Event details" +msgstr "Detalles del evento" + +#: mod/events.php:483 +msgid "Starting date and Title are required." +msgstr "Se requiere fecha de comienzo y titulo" + +#: mod/events.php:484 mod/events.php:485 +msgid "Event Starts:" +msgstr "Inicio del evento:" + +#: mod/events.php:486 mod/events.php:502 +msgid "Finish date/time is not known or not relevant" +msgstr "La fecha/hora de finalización no es conocida o es irrelevante." + +#: mod/events.php:488 mod/events.php:489 +msgid "Event Finishes:" +msgstr "Finalización del evento:" + +#: mod/events.php:490 mod/events.php:503 +msgid "Adjust for viewer timezone" +msgstr "Ajuste de zona horaria" + +#: mod/events.php:492 +msgid "Description:" +msgstr "Descripción:" + +#: mod/events.php:496 mod/events.php:498 +msgid "Title:" +msgstr "Título:" + +#: mod/events.php:499 mod/events.php:500 +msgid "Share this event" +msgstr "Comparte este evento" + +#: mod/maintenance.php:9 +msgid "System down for maintenance" +msgstr "Servicio suspendido por mantenimiento" + +#: mod/match.php:33 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado." + +#: mod/match.php:86 +msgid "is interested in:" +msgstr "estás interesado en:" + +#: mod/match.php:100 +msgid "Profile Match" +msgstr "Coincidencias de Perfil" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Consejos para nuevos miembros" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "¿Estás seguro de que quieres borrar esta sugerencia?" + +#: mod/suggest.php:71 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas." + +#: mod/suggest.php:84 mod/suggest.php:104 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" + +#: mod/update_community.php:19 mod/update_display.php:23 +#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenido incrustado - recarga la página para verlo]" + +#: mod/photos.php:88 mod/photos.php:1856 +msgid "Recent Photos" +msgstr "Fotos recientes" + +#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" + +#: mod/photos.php:105 mod/settings.php:36 +msgid "everybody" +msgstr "todos" + +#: mod/photos.php:169 +msgid "Contact information unavailable" +msgstr "Información del contacto no disponible" + +#: mod/photos.php:190 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 +msgid "Delete Album" +msgstr "Eliminar álbum" + +#: mod/photos.php:230 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" + +#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 +msgid "Delete Photo" +msgstr "Eliminar foto" + +#: mod/photos.php:317 +msgid "Do you really want to delete this photo?" +msgstr "¿Estás seguro de que quieres borrar esta foto?" + +#: mod/photos.php:688 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s fue etiquetado en %2$s por %3$s" + +#: mod/photos.php:688 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:794 +msgid "Image file is empty." +msgstr "El archivo de imagen está vacío." + +#: mod/photos.php:954 +msgid "No photos selected" +msgstr "Ninguna foto seleccionada" + +#: mod/photos.php:1054 mod/videos.php:305 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Has usado %1$.2f MB de %2$.2f MB de tu álbum de fotos." + +#: mod/photos.php:1148 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: mod/photos.php:1152 mod/photos.php:1222 +msgid "New album name: " +msgstr "Nombre del nuevo álbum: " + +#: mod/photos.php:1153 +msgid "or existing album name: " +msgstr "o nombre de un álbum existente: " + +#: mod/photos.php:1154 +msgid "Do not show a status post for this upload" +msgstr "No actualizar tu estado con este envío" + +#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 +msgid "Show to Groups" +msgstr "Mostrar a los Grupos" + +#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 +msgid "Show to Contacts" +msgstr "Mostrar a los Contactos" + +#: mod/photos.php:1167 +msgid "Private Photo" +msgstr "Foto Privada" + +#: mod/photos.php:1168 +msgid "Public Photo" +msgstr "Foto Pública" + +#: mod/photos.php:1234 +msgid "Edit Album" +msgstr "Modificar álbum" + +#: mod/photos.php:1240 +msgid "Show Newest First" +msgstr "Mostrar más nuevos primero" + +#: mod/photos.php:1242 +msgid "Show Oldest First" +msgstr "Mostrar más antiguos primero" + +#: mod/photos.php:1269 mod/photos.php:1841 +msgid "View Photo" +msgstr "Ver foto" + +#: mod/photos.php:1315 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." + +#: mod/photos.php:1317 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Ver foto" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Modificar foto" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Ver a tamaño completo" + +#: mod/photos.php:1484 +msgid "Tags: " +msgstr "Etiquetas: " + +#: mod/photos.php:1487 +msgid "[Remove any tag]" +msgstr "[Borrar todas las etiquetas]" + +#: mod/photos.php:1526 +msgid "New album name" +msgstr "Nuevo nombre del álbum" + +#: mod/photos.php:1527 +msgid "Caption" +msgstr "Título" + +#: mod/photos.php:1528 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" + +#: mod/photos.php:1528 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" + +#: mod/photos.php:1529 +msgid "Do not rotate" +msgstr "No rotar" + +#: mod/photos.php:1530 +msgid "Rotate CW (right)" +msgstr "Girar a la derecha" + +#: mod/photos.php:1531 +msgid "Rotate CCW (left)" +msgstr "Girar a la izquierda" + +#: mod/photos.php:1546 +msgid "Private photo" +msgstr "Foto privada" + +#: mod/photos.php:1547 +msgid "Public photo" +msgstr "Foto pública" + +#: mod/photos.php:1770 +msgid "Map" +msgstr "Mapa" + +#: mod/photos.php:1847 mod/videos.php:387 +msgid "View Album" +msgstr "Ver Álbum" + +#: mod/register.php:93 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Te has registrado con éxito. Por favor, consulta tu correo para más información." + +#: mod/register.php:98 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio." + +#: mod/register.php:105 +msgid "Registration successful." +msgstr "Registro exitoso." + +#: mod/register.php:111 +msgid "Your registration can not be processed." +msgstr "Tu registro no se puede procesar." + +#: mod/register.php:160 +msgid "Your registration is pending approval by the site owner." +msgstr "Tu registro está pendiente de aprobación por el propietario del sitio." + +#: mod/register.php:226 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"." + +#: mod/register.php:227 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." + +#: mod/register.php:228 +msgid "Your OpenID (optional): " +msgstr "Tu OpenID (opcional):" + +#: mod/register.php:242 +msgid "Include your profile in member directory?" +msgstr "¿Incluir tu perfil en el directorio de miembros?" + +#: mod/register.php:267 +msgid "Note for the admin" +msgstr "Nota para el administrador" + +#: mod/register.php:267 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo" + +#: mod/register.php:268 +msgid "Membership on this site is by invitation only." +msgstr "Sitio solo accesible mediante invitación." + +#: mod/register.php:269 +msgid "Your invitation ID: " +msgstr "ID de tu invitación: " + +#: mod/register.php:272 mod/admin.php:956 +msgid "Registration" +msgstr "Registro" + +#: mod/register.php:280 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "Nombre completo (ej. Joe Smith, real o real aparente):" + +#: mod/register.php:281 +msgid "Your Email Address: " +msgstr "Tu dirección de correo: " + +#: mod/register.php:283 mod/settings.php:1271 +msgid "New Password:" +msgstr "Contraseña nueva:" + +#: mod/register.php:283 +msgid "Leave empty for an auto generated password." +msgstr "Dejar vacío para autogenerar una contraseña" + +#: mod/register.php:284 mod/settings.php:1272 +msgid "Confirm:" +msgstr "Confirmar:" + +#: mod/register.php:285 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@$nombredelsitio\"." + +#: mod/register.php:286 +msgid "Choose a nickname: " +msgstr "Escoge un apodo: " + +#: mod/register.php:296 +msgid "Import your profile to this friendica instance" +msgstr "Importar tu perfil a esta instancia de friendica" + +#: mod/settings.php:43 mod/admin.php:1396 +msgid "Account" +msgstr "Cuenta" + +#: mod/settings.php:52 mod/admin.php:160 +msgid "Additional features" +msgstr "Características adicionales" + +#: mod/settings.php:60 +msgid "Display" +msgstr "Interfaz del usuario" + +#: mod/settings.php:67 mod/settings.php:886 +msgid "Social Networks" +msgstr "Redes sociales" + +#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 +msgid "Plugins" +msgstr "Módulos" + +#: mod/settings.php:88 +msgid "Connected apps" +msgstr "Aplicaciones conectadas" + +#: mod/settings.php:102 +msgid "Remove account" +msgstr "Eliminar cuenta" + +#: mod/settings.php:155 +msgid "Missing some important data!" +msgstr "¡Faltan algunos datos importantes!" + +#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804 +msgid "Update" +msgstr "Actualizar" + +#: mod/settings.php:269 +msgid "Failed to connect with email account using the settings provided." +msgstr "Error al conectar con la cuenta de correo mediante la configuración suministrada." + +#: mod/settings.php:274 +msgid "Email settings updated." +msgstr "Configuración de correo actualizada." + +#: mod/settings.php:289 +msgid "Features updated" +msgstr "Actualizaciones" + +#: mod/settings.php:359 +msgid "Relocate message has been send to your contacts" +msgstr "Mensaje de reubicación ha sido enviado a sus contactos." + +#: mod/settings.php:378 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "No se permiten contraseñas vacías. La contraseña no ha sido modificada." + +#: mod/settings.php:386 +msgid "Wrong password." +msgstr "Contraseña incorrecta" + +#: mod/settings.php:397 +msgid "Password changed." +msgstr "Contraseña modificada." + +#: mod/settings.php:399 +msgid "Password update failed. Please try again." +msgstr "La actualización de la contraseña ha fallado. Por favor, prueba otra vez." + +#: mod/settings.php:479 +msgid " Please use a shorter name." +msgstr " Usa un nombre más corto." + +#: mod/settings.php:481 +msgid " Name too short." +msgstr " Nombre demasiado corto." + +#: mod/settings.php:490 +msgid "Wrong Password" +msgstr "Contraseña incorrecta" + +#: mod/settings.php:495 +msgid " Not valid email." +msgstr " Correo no válido." + +#: mod/settings.php:501 +msgid " Cannot change to that email." +msgstr " No se puede usar ese correo." + +#: mod/settings.php:557 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto." + +#: mod/settings.php:561 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad." + +#: mod/settings.php:601 +msgid "Settings updated." +msgstr "Configuración actualizada." + +#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 +msgid "Add application" +msgstr "Agregar aplicación" + +#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835 +#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264 +#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 +#: mod/admin.php:2055 +msgid "Save Settings" +msgstr "Guardar configuración" + +#: mod/settings.php:681 mod/settings.php:707 +msgid "Consumer Key" +msgstr "Clave del consumidor" + +#: mod/settings.php:682 mod/settings.php:708 +msgid "Consumer Secret" +msgstr "Secreto del consumidor" + +#: mod/settings.php:683 mod/settings.php:709 +msgid "Redirect" +msgstr "Redirigir" + +#: mod/settings.php:684 mod/settings.php:710 +msgid "Icon url" +msgstr "Dirección del ícono" + +#: mod/settings.php:695 +msgid "You can't edit this application." +msgstr "No puedes editar esta aplicación." + +#: mod/settings.php:738 +msgid "Connected Apps" +msgstr "Aplicaciones conectadas" + +#: mod/settings.php:742 +msgid "Client key starts with" +msgstr "Clave de cliente comienza por" + +#: mod/settings.php:743 +msgid "No name" +msgstr "Sin nombre" + +#: mod/settings.php:744 +msgid "Remove authorization" +msgstr "Suprimir la autorización" + +#: mod/settings.php:756 +msgid "No Plugin settings configured" +msgstr "No se ha configurado ningún módulo" + +#: mod/settings.php:764 +msgid "Plugin Settings" +msgstr "Configuración de los módulos" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "Off" +msgstr "Apagado" + +#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045 +msgid "On" +msgstr "Encendido" + +#: mod/settings.php:786 +msgid "Additional Features" +msgstr "Características adicionales" + +#: mod/settings.php:796 mod/settings.php:800 +msgid "General Social Media Settings" +msgstr "Configuración general de social media " + +#: mod/settings.php:806 +msgid "Disable intelligent shortening" +msgstr "Deshabilitar recorte inteligente de URL" + +#: mod/settings.php:808 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica." + +#: mod/settings.php:814 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones " + +#: mod/settings.php:816 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario." + +#: mod/settings.php:822 +msgid "Default group for OStatus contacts" +msgstr "Grupo por defecto para contactos OStatus" + +#: mod/settings.php:828 +msgid "Your legacy GNU Social account" +msgstr "Tu cuenta GNU social conectada" + +#: mod/settings.php:830 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Si agrega su viejo nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. " + +#: mod/settings.php:833 +msgid "Repair OStatus subscriptions" +msgstr "Reparar subscripciones de OStatus" + +#: mod/settings.php:842 mod/settings.php:843 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "El soporte integrado de conexión con %s está %s" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "enabled" +msgstr "habilitado" + +#: mod/settings.php:842 mod/settings.php:843 +msgid "disabled" +msgstr "deshabilitado" + +#: mod/settings.php:843 +msgid "GNU Social (OStatus)" +msgstr "GNUsocial (OStatus)" + +#: mod/settings.php:879 +msgid "Email access is disabled on this site." +msgstr "El acceso por correo está deshabilitado en esta web." + +#: mod/settings.php:891 +msgid "Email/Mailbox Setup" +msgstr "Configuración del correo/buzón" + +#: mod/settings.php:892 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón." + +#: mod/settings.php:893 +msgid "Last successful email check:" +msgstr "Última comprobación del correo con éxito:" + +#: mod/settings.php:895 +msgid "IMAP server name:" +msgstr "Nombre del servidor IMAP:" + +#: mod/settings.php:896 +msgid "IMAP port:" +msgstr "Puerto IMAP:" + +#: mod/settings.php:897 +msgid "Security:" +msgstr "Seguridad:" + +#: mod/settings.php:897 mod/settings.php:902 +msgid "None" +msgstr "Ninguna" + +#: mod/settings.php:898 +msgid "Email login name:" +msgstr "Nombre de usuario:" + +#: mod/settings.php:899 +msgid "Email password:" +msgstr "Contraseña:" + +#: mod/settings.php:900 +msgid "Reply-to address:" +msgstr "Dirección de respuesta:" + +#: mod/settings.php:901 +msgid "Send public posts to all email contacts:" +msgstr "Enviar publicaciones públicas a todos los contactos de correo:" + +#: mod/settings.php:902 +msgid "Action after import:" +msgstr "Acción después de importar:" + +#: mod/settings.php:902 +msgid "Move to folder" +msgstr "Mover a un directorio" + +#: mod/settings.php:903 +msgid "Move to folder:" +msgstr "Mover al directorio:" + +#: mod/settings.php:934 mod/admin.php:862 +msgid "No special theme for mobile devices" +msgstr "No hay tema especial para dispositivos móviles" + +#: mod/settings.php:994 +msgid "Display Settings" +msgstr "Configuración Tema/Visualización" + +#: mod/settings.php:1000 mod/settings.php:1023 +msgid "Display Theme:" +msgstr "Utilizar tema:" + +#: mod/settings.php:1001 +msgid "Mobile Theme:" +msgstr "Tema móvil:" + +#: mod/settings.php:1002 +msgid "Suppress warning of insecure networks" +msgstr "Suprimir el aviso de redes inseguras" + +#: mod/settings.php:1002 +msgid "" +"Should the system suppress the warning that the current group contains " +"members of networks that can't receive non public postings." +msgstr "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas." + +#: mod/settings.php:1003 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" + +#: mod/settings.php:1003 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar." + +#: mod/settings.php:1004 +msgid "Number of items to display per page:" +msgstr "Número de elementos a mostrar por página:" + +#: mod/settings.php:1004 mod/settings.php:1005 +msgid "Maximum of 100 items" +msgstr "Máximo 100 elementos" + +#: mod/settings.php:1005 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Cantidad de objetos a visualizar cuando se usa un movil" + +#: mod/settings.php:1006 +msgid "Don't show emoticons" +msgstr "No mostrar emoticones" + +#: mod/settings.php:1007 +msgid "Calendar" +msgstr "Calendario" + +#: mod/settings.php:1008 +msgid "Beginning of week:" +msgstr "Principio de la semana:" + +#: mod/settings.php:1009 +msgid "Don't show notices" +msgstr "No mostrara avisos" + +#: mod/settings.php:1010 +msgid "Infinite scroll" +msgstr "pagina infinita (sroll)" + +#: mod/settings.php:1011 +msgid "Automatic updates only at the top of the network page" +msgstr "Actualizaciones automaticas solo estando al principio de la pagina" + +#: mod/settings.php:1012 +msgid "Bandwith Saver Mode" +msgstr "Modo de guardado de ancho de banda" + +#: mod/settings.php:1012 +msgid "" +"When enabled, embedded content is not displayed on automatic updates, they " +"only show on page reload." +msgstr "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas." + +#: mod/settings.php:1014 +msgid "General Theme Settings" +msgstr "Ajustes generales de tema" + +#: mod/settings.php:1015 +msgid "Custom Theme Settings" +msgstr "Ajustes personalizados de tema" + +#: mod/settings.php:1016 +msgid "Content Settings" +msgstr "Ajustes de contenido" + +#: mod/settings.php:1017 view/theme/frio/config.php:61 +#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 +#: view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Configuración del Tema" + +#: mod/settings.php:1099 +msgid "Account Types" +msgstr "Tipos de cuenta" + +#: mod/settings.php:1100 +msgid "Personal Page Subtypes" +msgstr "Subtipos de página personal" + +#: mod/settings.php:1101 +msgid "Community Forum Subtypes" +msgstr "Subtipos de foro de comunidad" + +#: mod/settings.php:1108 +msgid "Personal Page" +msgstr "Página personal" + +#: mod/settings.php:1109 +msgid "This account is a regular personal profile" +msgstr "Esta cuenta es un perfil personal corriente" + +#: mod/settings.php:1112 +msgid "Organisation Page" +msgstr "Página de organización" + +#: mod/settings.php:1113 +msgid "This account is a profile for an organisation" +msgstr "Esta cuenta es un perfil de una organización" + +#: mod/settings.php:1116 +msgid "News Page" +msgstr "Página de noticias" + +#: mod/settings.php:1117 +msgid "This account is a news account/reflector" +msgstr "Esta cuenta es una cuenta de noticias/reflectora" + +#: mod/settings.php:1120 +msgid "Community Forum" +msgstr "Foro de la comunidad" + +#: mod/settings.php:1121 +msgid "" +"This account is a community forum where people can discuss with each other" +msgstr "Esta cuenta es un foro de comunidad donde la gente puede debatir con otros" + +#: mod/settings.php:1124 +msgid "Normal Account Page" +msgstr "Página de cuenta normal" + +#: mod/settings.php:1125 +msgid "This account is a normal personal profile" +msgstr "Esta cuenta es el perfil personal normal" + +#: mod/settings.php:1128 +msgid "Soapbox Page" +msgstr "Página de tribuna" + +#: mod/settings.php:1129 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de solo-lectura" + +#: mod/settings.php:1132 +msgid "Public Forum" +msgstr "Foro público" + +#: mod/settings.php:1133 +msgid "Automatically approve all contact requests" +msgstr "Aprovar autimáticamente todas las solicitudes de contacto" + +#: mod/settings.php:1136 +msgid "Automatic Friend Page" +msgstr "Página de Amistad autómatica" + +#: mod/settings.php:1137 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Aceptar automáticamente todas las solicitudes de conexión/amistad como amigos" + +#: mod/settings.php:1140 +msgid "Private Forum [Experimental]" +msgstr "Foro privado [Experimental]" + +#: mod/settings.php:1141 +msgid "Private forum - approved members only" +msgstr "Foro privado - solo miembros" + +#: mod/settings.php:1153 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1153 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." + +#: mod/settings.php:1163 +msgid "Publish your default profile in your local site directory?" +msgstr "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?" + +#: mod/settings.php:1169 +msgid "Publish your default profile in the global social directory?" +msgstr "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?" + +#: mod/settings.php:1177 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?" + +#: mod/settings.php:1181 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Si habilitado, enviar temas públicos a a Diaspora* y otras redes no es posible. " + +#: mod/settings.php:1186 +msgid "Allow friends to post to your profile page?" +msgstr "¿Permites que tus amigos publiquen en tu página de perfil?" + +#: mod/settings.php:1192 +msgid "Allow friends to tag your posts?" +msgstr "¿Permites a los amigos etiquetar tus publicaciones?" + +#: mod/settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?" + +#: mod/settings.php:1204 +msgid "Permit unknown people to send you private mail?" +msgstr "¿Permites que desconocidos te manden correos privados?" + +#: mod/settings.php:1212 +msgid "Profile is not published." +msgstr "El perfil no está publicado." + +#: mod/settings.php:1220 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Su dirección de identidad es '%s' o '%s'." + +#: mod/settings.php:1227 +msgid "Automatically expire posts after this many days:" +msgstr "Las publicaciones expirarán automáticamente después de estos días:" + +#: mod/settings.php:1227 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán" + +#: mod/settings.php:1228 +msgid "Advanced expiration settings" +msgstr "Configuración avanzada de expiración" + +#: mod/settings.php:1229 +msgid "Advanced Expiration" +msgstr "Expiración avanzada" + +#: mod/settings.php:1230 +msgid "Expire posts:" +msgstr "¿Expiran las publicaciones?" + +#: mod/settings.php:1231 +msgid "Expire personal notes:" +msgstr "¿Expiran las notas personales?" + +#: mod/settings.php:1232 +msgid "Expire starred posts:" +msgstr "¿Expiran los favoritos?" + +#: mod/settings.php:1233 +msgid "Expire photos:" +msgstr "¿Expiran las fotografías?" + +#: mod/settings.php:1234 +msgid "Only expire posts by others:" +msgstr "Solo expiran los mensajes de los demás:" + +#: mod/settings.php:1262 +msgid "Account Settings" +msgstr "Configuración de la cuenta" + +#: mod/settings.php:1270 +msgid "Password Settings" +msgstr "Configuración de la contraseña" + +#: mod/settings.php:1272 +msgid "Leave password fields blank unless changing" +msgstr "Deja la contraseña en blanco si no quieres cambiarla" + +#: mod/settings.php:1273 +msgid "Current Password:" +msgstr "Contraseña actual:" + +#: mod/settings.php:1273 mod/settings.php:1274 +msgid "Your current password to confirm the changes" +msgstr "Su contraseña actual para confirmar los cambios." + +#: mod/settings.php:1274 +msgid "Password:" +msgstr "Contraseña:" + +#: mod/settings.php:1278 +msgid "Basic Settings" +msgstr "Configuración básica" + +#: mod/settings.php:1280 +msgid "Email Address:" +msgstr "Dirección de correo:" + +#: mod/settings.php:1281 +msgid "Your Timezone:" +msgstr "Zona horaria:" + +#: mod/settings.php:1282 +msgid "Your Language:" +msgstr "Tu idioma:" + +#: mod/settings.php:1282 +msgid "" +"Set the language we use to show you friendica interface and to send you " +"emails" +msgstr "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo." + +#: mod/settings.php:1283 +msgid "Default Post Location:" +msgstr "Localización predeterminada:" + +#: mod/settings.php:1284 +msgid "Use Browser Location:" +msgstr "Usar localización del navegador:" + +#: mod/settings.php:1287 +msgid "Security and Privacy Settings" +msgstr "Configuración de seguridad y privacidad" + +#: mod/settings.php:1289 +msgid "Maximum Friend Requests/Day:" +msgstr "Máximo número de peticiones de amistad por día:" + +#: mod/settings.php:1289 mod/settings.php:1319 +msgid "(to prevent spam abuse)" +msgstr "(para prevenir el abuso de spam)" + +#: mod/settings.php:1290 +msgid "Default Post Permissions" +msgstr "Permisos por defecto para las publicaciones" + +#: mod/settings.php:1291 +msgid "(click to open/close)" +msgstr "(pulsa para abrir/cerrar)" + +#: mod/settings.php:1302 +msgid "Default Private Post" +msgstr "Publicación Privada por defecto" + +#: mod/settings.php:1303 +msgid "Default Public Post" +msgstr "Publicación Pública por defecto" + +#: mod/settings.php:1307 +msgid "Default Permissions for New Posts" +msgstr "Permisos por defecto para nuevas publicaciones" + +#: mod/settings.php:1319 +msgid "Maximum private messages per day from unknown people:" +msgstr "Número máximo de mensajes diarios para desconocidos:" + +#: mod/settings.php:1322 +msgid "Notification Settings" +msgstr "Configuración de notificaciones" + +#: mod/settings.php:1323 +msgid "By default post a status message when:" +msgstr "Publicar en tu estado cuando:" + +#: mod/settings.php:1324 +msgid "accepting a friend request" +msgstr "aceptes una solicitud de amistad" + +#: mod/settings.php:1325 +msgid "joining a forum/community" +msgstr "te unas a un foro/comunidad" + +#: mod/settings.php:1326 +msgid "making an interesting profile change" +msgstr "hagas un cambio interesante en tu perfil" + +#: mod/settings.php:1327 +msgid "Send a notification email when:" +msgstr "Enviar notificación por correo cuando:" + +#: mod/settings.php:1328 +msgid "You receive an introduction" +msgstr "Recibas una presentación" + +#: mod/settings.php:1329 +msgid "Your introductions are confirmed" +msgstr "Tu presentación sea confirmada" + +#: mod/settings.php:1330 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en el muro de mi perfil" + +#: mod/settings.php:1331 +msgid "Someone writes a followup comment" +msgstr "Algien escriba en un comentario que sigo" + +#: mod/settings.php:1332 +msgid "You receive a private message" +msgstr "Recibas un mensaje privado" + +#: mod/settings.php:1333 +msgid "You receive a friend suggestion" +msgstr "Recibas una sugerencia de amistad" + +#: mod/settings.php:1334 +msgid "You are tagged in a post" +msgstr "Seas etiquetado en una publicación" + +#: mod/settings.php:1335 +msgid "You are poked/prodded/etc. in a post" +msgstr "Te han tocado/empujado/etc. en una publicación" + +#: mod/settings.php:1337 +msgid "Activate desktop notifications" +msgstr "Activar notificaciones en pantalla." + +#: mod/settings.php:1337 +msgid "Show desktop popup on new notifications" +msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." + +#: mod/settings.php:1339 +msgid "Text-only notification emails" +msgstr "Notificaciones e-mail de solo texto" + +#: mod/settings.php:1341 +msgid "Send text only notification emails, without the html part" +msgstr "Enviar las notificaciones por correo con formato de solo texto sin html." + +#: mod/settings.php:1343 +msgid "Advanced Account/Page Type Settings" +msgstr "Configuración avanzada de tipo de Cuenta/Página" + +#: mod/settings.php:1344 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" + +#: mod/settings.php:1347 +msgid "Relocate" +msgstr "Relocalizar" + +#: mod/settings.php:1348 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)" + +#: mod/settings.php:1349 +msgid "Resend relocate message to contacts" +msgstr "Reenviar mensaje de relocalización a los contactos" + +#: mod/videos.php:120 +msgid "Do you really want to delete this video?" +msgstr "Realmente quieres eliminar este vídeo?" + +#: mod/videos.php:125 +msgid "Delete Video" +msgstr "Borrar vídeo" + +#: mod/videos.php:204 +msgid "No videos selected" +msgstr "Ningún vídeo seleccionado" + +#: mod/videos.php:396 +msgid "Recent Videos" +msgstr "Vídeos recientes" + +#: mod/videos.php:398 +msgid "Upload New Videos" +msgstr "Subir nuevos vídeos" + +#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76 +#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86 +#: mod/wall_upload.php:122 mod/wall_upload.php:125 +msgid "Invalid request." +msgstr "Consulta invalida" + +#: mod/wall_attach.php:94 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite." + +#: mod/wall_attach.php:94 +msgid "Or - did you try to upload an empty file?" +msgstr "Si no - intento de subir un archivo vacío?" + +#: mod/wall_attach.php:105 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "El archivo excede el limite de tamaño de %s" + +#: mod/wall_attach.php:156 mod/wall_attach.php:172 +msgid "File upload failed." +msgstr "Ha fallado la subida del archivo." #: mod/admin.php:92 msgid "Theme settings updated." @@ -4137,18 +6273,10 @@ msgstr "Sitio" msgid "Users" msgstr "Usuarios" -#: mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582 mod/settings.php:74 -msgid "Plugins" -msgstr "Módulos" - #: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830 msgid "Themes" msgstr "Temas" -#: mod/admin.php:160 mod/settings.php:52 -msgid "Additional features" -msgstr "Características adicionales" - #: mod/admin.php:161 msgid "DB updates" msgstr "Actualizaciones de la Base de Datos" @@ -4321,10 +6449,6 @@ msgstr "RINO2 precisa la extensión mcrypt para funcionar. " msgid "Site settings updated." msgstr "Configuración de actualización." -#: mod/admin.php:862 mod/settings.php:934 -msgid "No special theme for mobile devices" -msgstr "No hay tema especial para dispositivos móviles" - #: mod/admin.php:881 msgid "No community page" msgstr "No hay pagina de comunidad" @@ -4401,17 +6525,6 @@ msgstr "Forzar todos los enlaces a utilizar SSL" msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Certificación personal, usa SSL solo para enlaces locales (no recomendado)" -#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905 -#: mod/admin.php:2055 mod/settings.php:678 mod/settings.php:788 -#: mod/settings.php:835 mod/settings.php:904 mod/settings.php:996 -#: mod/settings.php:1264 -msgid "Save Settings" -msgstr "Guardar configuración" - -#: mod/admin.php:956 mod/register.php:272 -msgid "Registration" -msgstr "Registro" - #: mod/admin.php:957 msgid "File upload" msgstr "Subida de archivo" @@ -5181,7 +7294,7 @@ msgid "" "You should only enable this option if you cannot utilize cron/scheduled jobs" " on your server. The worker background process needs to be activated for " "this." -msgstr "" +msgstr "Cuando está habilitado, el proceso de Trabajador se activa cuando se ejecuta el acceso de respaldo (ej. mensajes siendo entregados). En páginas más pequeñas usted puede querer llamar a yourdomain.tld/worker en una base regular mediante un trabajo cron externo. Sólo debería habilitar esta opción si no puede utilizar trabajos cron/scheduled en su servidor. El proceso de trabajador en segundo plano necesita ser activado para eso." #: mod/admin.php:1084 msgid "Update has been marked successful" @@ -5321,10 +7434,6 @@ msgstr "Último acceso" msgid "Last item" msgstr "Último elemento" -#: mod/admin.php:1396 mod/settings.php:43 -msgid "Account" -msgstr "Cuenta" - #: mod/admin.php:1405 msgid "Add User" msgstr "Agregar usuario" @@ -5358,12 +7467,12 @@ msgid "Deny" msgstr "Denegado" #: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805 -#: mod/contacts.php:992 +#: mod/contacts.php:983 msgid "Block" msgstr "Bloquear" #: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805 -#: mod/contacts.php:992 +#: mod/contacts.php:983 msgid "Unblock" msgstr "Desbloquear" @@ -5525,14 +7634,6 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Para habilitar la documentación de los errores PHP y las advertencias se puede agregar lo siguiente al archivo .htconfig.php de la instalación (ftp). La dirección definido en el 'error_log' es relativo al directorio friendica principal (top-level directory) y debe de ser habilitado para la escritura por el servidor web. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, '0' para deshabilitarlo." -#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778 -msgid "Off" -msgstr "Apagado" - -#: mod/admin.php:2044 mod/admin.php:2045 mod/settings.php:778 -msgid "On" -msgstr "Encendido" - #: mod/admin.php:2045 #, php-format msgid "Lock feature %s" @@ -5542,806 +7643,584 @@ msgstr "Trancar opción %s " msgid "Manage Additional Features" msgstr "Administrar opciones adicionales" -#: mod/wall_attach.php:94 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite." - -#: mod/wall_attach.php:94 -msgid "Or - did you try to upload an empty file?" -msgstr "Si no - intento de subir un archivo vacío?" - -#: mod/wall_attach.php:105 +#: mod/contacts.php:128 #, php-format -msgid "File exceeds size limit of %s" -msgstr "El archivo excede el limite de tamaño de %s" +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d contacto editado." +msgstr[1] "%d contacts edited." -#: mod/wall_attach.php:156 mod/wall_attach.php:172 -msgid "File upload failed." -msgstr "Ha fallado la subida del archivo." +#: mod/contacts.php:159 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "No se pudo acceder a los datos del contacto." -#: mod/allfriends.php:43 -msgid "No friends to display." -msgstr "No hay amigos para mostrar." +#: mod/contacts.php:173 +msgid "Could not locate selected profile." +msgstr "No se pudo encontrar el perfil seleccionado." -#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "El acceso a este perfil ha sido restringido." +#: mod/contacts.php:206 +msgid "Contact updated." +msgstr "Contacto actualizado." -#: mod/cal.php:297 -msgid "User not found" -msgstr "Usuario no encontrado" +#: mod/contacts.php:208 mod/dfrn_request.php:583 +msgid "Failed to update contact record." +msgstr "Error al actualizar el contacto." -#: mod/cal.php:313 -msgid "This calendar format is not supported" -msgstr "Este formato de calendario no se soporta" +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "El contacto ha sido bloqueado" -#: mod/cal.php:315 -msgid "No exportable data found" -msgstr "No se ha encontrado información exportable" +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "El contacto ha sido desbloqueado" -#: mod/cal.php:330 -msgid "calendar" -msgstr "calendario" +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "El contacto ha sido ignorado" -#: mod/content.php:119 mod/network.php:469 -msgid "No such group" -msgstr "Ningún grupo" +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "El contacto ya no está ignorado" -#: mod/content.php:130 mod/network.php:496 mod/group.php:193 -msgid "Group is empty" -msgstr "El grupo está vacío" +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "El contacto ha sido archivado" -#: mod/content.php:135 mod/network.php:500 +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "El contacto ya no está archivado" + +#: mod/contacts.php:437 +msgid "Drop contact" +msgstr "Eliminar contacto" + +#: mod/contacts.php:440 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "¿Estás seguro de que quieres eliminar este contacto?" + +#: mod/contacts.php:457 +msgid "Contact has been removed." +msgstr "El contacto ha sido eliminado" + +#: mod/contacts.php:498 #, php-format -msgid "Group: %s" -msgstr "Grupo: %s" +msgid "You are mutual friends with %s" +msgstr "Ahora tienes una amistad mutua con %s" -#: mod/content.php:325 object/Item.php:95 -msgid "This entry was edited" -msgstr "Esta entrada fue editada" - -#: mod/content.php:621 object/Item.php:429 +#: mod/contacts.php:502 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" +msgid "You are sharing with %s" +msgstr "Estás compartiendo con %s" -#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Mensaje privado" +#: mod/contacts.php:507 +#, php-format +msgid "%s is sharing with you" +msgstr "%s está compartiendo contigo" -#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263 -msgid "I like this (toggle)" -msgstr "Me gusta esto (cambiar)" +#: mod/contacts.php:527 +msgid "Private communications are not available for this contact." +msgstr "Las comunicaciones privadas no está disponibles para este contacto." -#: mod/content.php:702 object/Item.php:263 -msgid "like" -msgstr "me gusta" +#: mod/contacts.php:534 +msgid "(Update was successful)" +msgstr "(La actualización se ha completado)" -#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" +#: mod/contacts.php:534 +msgid "(Update was not successful)" +msgstr "(La actualización no se ha completado)" -#: mod/content.php:703 object/Item.php:264 -msgid "dislike" -msgstr "no me gusta" +#: mod/contacts.php:536 mod/contacts.php:964 +msgid "Suggest friends" +msgstr "Sugerir amigos" -#: mod/content.php:705 object/Item.php:266 -msgid "Share this" -msgstr "Compartir esto" +#: mod/contacts.php:540 +#, php-format +msgid "Network type: %s" +msgstr "Tipo de red: %s" -#: mod/content.php:705 object/Item.php:266 -msgid "share" -msgstr "compartir" +#: mod/contacts.php:553 +msgid "Communications lost with this contact!" +msgstr "¡Se ha perdido la comunicación con este contacto!" -#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635 -#: mod/photos.php:1721 object/Item.php:717 -msgid "This is you" -msgstr "Este eres tú" +#: mod/contacts.php:556 +msgid "Fetch further information for feeds" +msgstr "Recaudar informacion complementaria de los feeds" -#: mod/content.php:729 object/Item.php:721 -msgid "Bold" -msgstr "Negrita" +#: mod/contacts.php:557 +msgid "Fetch information" +msgstr "Recaudar informacion" -#: mod/content.php:730 object/Item.php:722 -msgid "Italic" -msgstr "Cursiva" +#: mod/contacts.php:557 +msgid "Fetch information and keywords" +msgstr "Recaudar informacion y palabras claves" -#: mod/content.php:731 object/Item.php:723 -msgid "Underline" -msgstr "Subrayado" +#: mod/contacts.php:575 +msgid "Contact" +msgstr "Contacto" -#: mod/content.php:732 object/Item.php:724 -msgid "Quote" -msgstr "Cita" +#: mod/contacts.php:578 +msgid "Profile Visibility" +msgstr "Visibilidad del Perfil" -#: mod/content.php:733 object/Item.php:725 -msgid "Code" -msgstr "Código" - -#: mod/content.php:734 object/Item.php:726 -msgid "Image" -msgstr "Imagen" - -#: mod/content.php:735 object/Item.php:727 -msgid "Link" -msgstr "Enlace" - -#: mod/content.php:736 object/Item.php:728 -msgid "Video" -msgstr "Vídeo" - -#: mod/content.php:746 mod/settings.php:740 object/Item.php:122 -#: object/Item.php:124 -msgid "Edit" -msgstr "Editar" - -#: mod/content.php:771 object/Item.php:227 -msgid "add star" -msgstr "Añadir estrella" - -#: mod/content.php:772 object/Item.php:228 -msgid "remove star" -msgstr "Quitar estrella" - -#: mod/content.php:773 object/Item.php:229 -msgid "toggle star status" -msgstr "Añadir a destacados" - -#: mod/content.php:776 object/Item.php:232 -msgid "starred" -msgstr "marcados con estrellas" - -#: mod/content.php:777 mod/content.php:798 object/Item.php:252 -msgid "add tag" -msgstr "añadir etiqueta" - -#: mod/content.php:787 object/Item.php:240 -msgid "ignore thread" -msgstr "ignorar publicación" - -#: mod/content.php:788 object/Item.php:241 -msgid "unignore thread" -msgstr "revertir ignorar publicacion" - -#: mod/content.php:789 object/Item.php:242 -msgid "toggle ignore status" -msgstr "cambiar estatus de observación" - -#: mod/content.php:792 mod/ostatus_subscribe.php:69 object/Item.php:245 -msgid "ignored" -msgstr "ignorado" - -#: mod/content.php:803 object/Item.php:137 -msgid "save to folder" -msgstr "grabado en directorio" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will attend" -msgstr "Voy a estar presente" - -#: mod/content.php:848 object/Item.php:201 -msgid "I will not attend" -msgstr "No voy a estar presente" - -#: mod/content.php:848 object/Item.php:201 -msgid "I might attend" -msgstr "Puede que voy a estar presente" - -#: mod/content.php:912 object/Item.php:369 -msgid "to" -msgstr "a" - -#: mod/content.php:913 object/Item.php:371 -msgid "Wall-to-Wall" -msgstr "Muro-A-Muro" - -#: mod/content.php:914 object/Item.php:372 -msgid "via Wall-To-Wall:" -msgstr "via Muro-A-Muro:" - -#: mod/repair_ostatus.php:14 -msgid "Resubscribing to OStatus contacts" -msgstr "Resubscribir a contactos de OStatus" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "error" - -#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 -msgid "Done" -msgstr "hecho!" - -#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 -msgid "Keep this window open until done." -msgstr "Mantén esta ventana abierta hasta que el proceso ha terminado." - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "No se han localizado delegados potenciales de la página." - -#: mod/delegate.php:132 +#: mod/contacts.php:579 +#, php-format msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura." -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Administradores actuales de la página" +#: mod/contacts.php:580 +msgid "Contact Information / Notes" +msgstr "Información del Contacto / Notas" -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Delegados actuales de la página" +#: mod/contacts.php:581 +msgid "Edit contact notes" +msgstr "Editar notas del contacto" -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Delegados potenciales" +#: mod/contacts.php:587 +msgid "Block/Unblock contact" +msgstr "Boquear/Desbloquear contacto" -#: mod/delegate.php:140 -msgid "Add" -msgstr "Añadir" +#: mod/contacts.php:588 +msgid "Ignore contact" +msgstr "Ignorar contacto" -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Sin entradas." +#: mod/contacts.php:589 +msgid "Repair URL settings" +msgstr "Configuración de reparación de la dirección" -#: mod/videos.php:120 -msgid "Do you really want to delete this video?" -msgstr "Realmente quieres eliminar este vídeo?" +#: mod/contacts.php:590 +msgid "View conversations" +msgstr "Ver conversaciones" -#: mod/videos.php:125 -msgid "Delete Video" -msgstr "Borrar vídeo" +#: mod/contacts.php:596 +msgid "Last update:" +msgstr "Última actualización:" -#: mod/videos.php:204 -msgid "No videos selected" -msgstr "Ningún vídeo seleccionado" +#: mod/contacts.php:598 +msgid "Update public posts" +msgstr "Actualizar publicaciones públicas" -#: mod/videos.php:305 mod/photos.php:1054 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." +#: mod/contacts.php:600 mod/contacts.php:974 +msgid "Update now" +msgstr "Actualizar ahora" -#: mod/videos.php:387 mod/photos.php:1847 -msgid "View Album" -msgstr "Ver Álbum" +#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991 +msgid "Unignore" +msgstr "Quitar de Ignorados" -#: mod/videos.php:396 -msgid "Recent Videos" -msgstr "Vídeos recientes" +#: mod/contacts.php:610 +msgid "Currently blocked" +msgstr "Bloqueados" -#: mod/videos.php:398 -msgid "Upload New Videos" -msgstr "Subir nuevos vídeos" +#: mod/contacts.php:611 +msgid "Currently ignored" +msgstr "Ignorados" -#: mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Perfil eliminado." +#: mod/contacts.php:612 +msgid "Currently archived" +msgstr "Archivados" -#: mod/profiles.php:56 mod/profiles.php:90 -msgid "Profile-" -msgstr "Perfil-" - -#: mod/profiles.php:75 mod/profiles.php:118 -msgid "New profile created." -msgstr "Nuevo perfil creado." - -#: mod/profiles.php:96 -msgid "Profile unavailable to clone." -msgstr "Imposible duplicar el perfil." - -#: mod/profiles.php:190 -msgid "Profile Name is required." -msgstr "Se necesita un nombre de perfil." - -#: mod/profiles.php:338 -msgid "Marital Status" -msgstr "Estado civil" - -#: mod/profiles.php:342 -msgid "Romantic Partner" -msgstr "Pareja sentimental" - -#: mod/profiles.php:354 -msgid "Work/Employment" -msgstr "Trabajo/estudios" - -#: mod/profiles.php:357 -msgid "Religion" -msgstr "Religión" - -#: mod/profiles.php:361 -msgid "Political Views" -msgstr "Preferencias políticas" - -#: mod/profiles.php:365 -msgid "Gender" -msgstr "Género" - -#: mod/profiles.php:369 -msgid "Sexual Preference" -msgstr "Orientación sexual" - -#: mod/profiles.php:373 -msgid "XMPP" -msgstr "XMPP" - -#: mod/profiles.php:377 -msgid "Homepage" -msgstr "Página de inicio" - -#: mod/profiles.php:381 mod/profiles.php:702 -msgid "Interests" -msgstr "Intereses" - -#: mod/profiles.php:385 -msgid "Address" -msgstr "Dirección" - -#: mod/profiles.php:392 mod/profiles.php:698 -msgid "Location" -msgstr "Ubicación" - -#: mod/profiles.php:477 -msgid "Profile updated." -msgstr "Perfil actualizado." - -#: mod/profiles.php:564 -msgid " and " -msgstr " y " - -#: mod/profiles.php:572 -msgid "public profile" -msgstr "perfil público" - -#: mod/profiles.php:575 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s cambió su %2$s a “%3$s”" - -#: mod/profiles.php:576 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Visita %1$s's %2$s" - -#: mod/profiles.php:579 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s tiene una actualización %2$s, cambiando %3$s." - -#: mod/profiles.php:645 -msgid "Hide contacts and friends:" -msgstr "Ocultar contactos y amigos" - -#: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677 -#: mod/follow.php:110 mod/dfrn_request.php:862 mod/register.php:246 -#: mod/settings.php:1163 mod/settings.php:1169 mod/settings.php:1177 -#: mod/settings.php:1181 mod/settings.php:1186 mod/settings.php:1192 -#: mod/settings.php:1198 mod/settings.php:1204 mod/settings.php:1230 -#: mod/settings.php:1231 mod/settings.php:1232 mod/settings.php:1233 -#: mod/settings.php:1234 mod/api.php:106 -msgid "No" -msgstr "No" - -#: mod/profiles.php:650 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "¿Ocultar tu lista de contactos/amigos en este perfil?" - -#: mod/profiles.php:674 -msgid "Show more profile fields:" -msgstr "Mostrar mas campos del perfil:" - -#: mod/profiles.php:686 -msgid "Profile Actions" -msgstr "Acciones de perfil" - -#: mod/profiles.php:687 -msgid "Edit Profile Details" -msgstr "Editar detalles de tu perfil" - -#: mod/profiles.php:689 -msgid "Change Profile Photo" -msgstr "Cambiar imagen del Perfil" - -#: mod/profiles.php:690 -msgid "View this profile" -msgstr "Ver este perfil" - -#: mod/profiles.php:692 -msgid "Create a new profile using these settings" -msgstr "¿Crear un nuevo perfil con esta configuración?" - -#: mod/profiles.php:693 -msgid "Clone this profile" -msgstr "Clonar este perfil" - -#: mod/profiles.php:694 -msgid "Delete this profile" -msgstr "Eliminar este perfil" - -#: mod/profiles.php:696 -msgid "Basic information" -msgstr "Información básica" - -#: mod/profiles.php:697 -msgid "Profile picture" -msgstr "Imagen del perfil" - -#: mod/profiles.php:699 -msgid "Preferences" -msgstr "Preferencias" - -#: mod/profiles.php:700 -msgid "Status information" -msgstr "Información del estatus" - -#: mod/profiles.php:701 -msgid "Additional information" -msgstr "Información addicional" - -#: mod/profiles.php:704 -msgid "Relation" -msgstr "Relación" - -#: mod/profiles.php:707 mod/newmember.php:36 mod/profile_photo.php:250 -msgid "Upload Profile Photo" -msgstr "Subir foto del Perfil" - -#: mod/profiles.php:708 -msgid "Your Gender:" -msgstr "Género:" - -#: mod/profiles.php:709 -msgid " Marital Status:" -msgstr " Estado civil:" - -#: mod/profiles.php:711 -msgid "Example: fishing photography software" -msgstr "Ejemplo: pesca fotografía software" - -#: mod/profiles.php:716 -msgid "Profile Name:" -msgstr "Nombres del perfil:" - -#: mod/profiles.php:718 +#: mod/contacts.php:613 msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Éste es tu perfil público.
Puede ser visto por cualquier usuario de internet." +"Replies/likes to your public posts may still be visible" +msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles." -#: mod/profiles.php:719 -msgid "Your Full Name:" -msgstr "Tu nombre completo:" +#: mod/contacts.php:614 +msgid "Notification for new posts" +msgstr "Notificacion de nuevos temas." -#: mod/profiles.php:720 -msgid "Title/Description:" -msgstr "Título/Descrición:" +#: mod/contacts.php:614 +msgid "Send a notification of every new post of this contact" +msgstr "Enviar una notificacion por nuevos temas de este contacto." -#: mod/profiles.php:723 -msgid "Street Address:" -msgstr "Dirección" +#: mod/contacts.php:617 +msgid "Blacklisted keywords" +msgstr "Lista negra de palabras" -#: mod/profiles.php:724 -msgid "Locality/City:" -msgstr "Localidad/Ciudad:" - -#: mod/profiles.php:725 -msgid "Region/State:" -msgstr "Región/Estado:" - -#: mod/profiles.php:726 -msgid "Postal/Zip Code:" -msgstr "Código postal:" - -#: mod/profiles.php:727 -msgid "Country:" -msgstr "País" - -#: mod/profiles.php:731 -msgid "Who: (if applicable)" -msgstr "¿Quién? (si es aplicable)" - -#: mod/profiles.php:731 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Ejemplos: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:732 -msgid "Since [date]:" -msgstr "Desde [fecha]:" - -#: mod/profiles.php:734 -msgid "Tell us about yourself..." -msgstr "Háblanos sobre ti..." - -#: mod/profiles.php:735 -msgid "XMPP (Jabber) address:" -msgstr "Dirección XMPP (Jabber):" - -#: mod/profiles.php:735 +#: mod/contacts.php:617 msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "La dirección XMPP será propagada entre sus contactos para que puedan seguirle." +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado" -#: mod/profiles.php:736 -msgid "Homepage URL:" -msgstr "Dirección de tu página:" +#: mod/contacts.php:635 +msgid "Actions" +msgstr "Acciones" -#: mod/profiles.php:739 -msgid "Religious Views:" -msgstr "Creencias religiosas:" +#: mod/contacts.php:638 +msgid "Contact Settings" +msgstr "Ajustes del contacto" -#: mod/profiles.php:740 -msgid "Public Keywords:" -msgstr "Palabras clave públicas:" +#: mod/contacts.php:684 +msgid "Suggestions" +msgstr "Sugerencias" -#: mod/profiles.php:740 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" +#: mod/contacts.php:687 +msgid "Suggest potential friends" +msgstr "Amistades potenciales sugeridas" -#: mod/profiles.php:741 -msgid "Private Keywords:" -msgstr "Palabras clave privadas:" +#: mod/contacts.php:695 +msgid "Show all contacts" +msgstr "Mostrar todos los contactos" -#: mod/profiles.php:741 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" +#: mod/contacts.php:700 +msgid "Unblocked" +msgstr "Desbloqueados" -#: mod/profiles.php:744 -msgid "Musical interests" -msgstr "Gustos musicales" +#: mod/contacts.php:703 +msgid "Only show unblocked contacts" +msgstr "Mostrar solo contactos sin bloquear" -#: mod/profiles.php:745 -msgid "Books, literature" -msgstr "Libros, literatura" +#: mod/contacts.php:709 +msgid "Blocked" +msgstr "Bloqueados" -#: mod/profiles.php:746 -msgid "Television" -msgstr "Televisión" +#: mod/contacts.php:712 +msgid "Only show blocked contacts" +msgstr "Mostrar solo contactos bloqueados" -#: mod/profiles.php:747 -msgid "Film/dance/culture/entertainment" -msgstr "Películas/baile/cultura/entretenimiento" +#: mod/contacts.php:718 +msgid "Ignored" +msgstr "Ignorados" -#: mod/profiles.php:748 -msgid "Hobbies/Interests" -msgstr "Aficiones/Intereses" +#: mod/contacts.php:721 +msgid "Only show ignored contacts" +msgstr "Mostrar solo contactos ignorados" -#: mod/profiles.php:749 -msgid "Love/romance" -msgstr "Amor/Romance" +#: mod/contacts.php:727 +msgid "Archived" +msgstr "Archivados" -#: mod/profiles.php:750 -msgid "Work/employment" -msgstr "Trabajo/ocupación" +#: mod/contacts.php:730 +msgid "Only show archived contacts" +msgstr "Mostrar solo contactos archivados" -#: mod/profiles.php:751 -msgid "School/education" -msgstr "Escuela/estudios" +#: mod/contacts.php:736 +msgid "Hidden" +msgstr "Ocultos" -#: mod/profiles.php:752 -msgid "Contact information and Social Networks" -msgstr "Informacioń de contacto y Redes sociales" +#: mod/contacts.php:739 +msgid "Only show hidden contacts" +msgstr "Mostrar solo contactos ocultos" -#: mod/profiles.php:794 -msgid "Edit/Manage Profiles" -msgstr "Editar/Administrar perfiles" +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Buscar en tus contactos" -#: mod/credits.php:16 -msgid "Credits" -msgstr "Creditos" +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Archive" +msgstr "Archivo" -#: mod/credits.php:17 +#: mod/contacts.php:807 mod/contacts.php:999 +msgid "Unarchive" +msgstr "Sin archivar" + +#: mod/contacts.php:810 +msgid "Batch Actions" +msgstr "Accones en lote" + +#: mod/contacts.php:856 +msgid "View all contacts" +msgstr "Ver todos los contactos" + +#: mod/contacts.php:866 +msgid "View all common friends" +msgstr "Ver todos los conocidos en común " + +#: mod/contacts.php:873 +msgid "Advanced Contact Settings" +msgstr "Configuración avanzada" + +#: mod/contacts.php:907 +msgid "Mutual Friendship" +msgstr "Amistad recíproca" + +#: mod/contacts.php:911 +msgid "is a fan of yours" +msgstr "es tu fan" + +#: mod/contacts.php:915 +msgid "you are a fan of" +msgstr "eres fan de" + +#: mod/contacts.php:985 +msgid "Toggle Blocked status" +msgstr "Cambiar bloqueados" + +#: mod/contacts.php:993 +msgid "Toggle Ignored status" +msgstr "Cambiar ignorados" + +#: mod/contacts.php:1001 +msgid "Toggle Archive status" +msgstr "Cambiar archivados" + +#: mod/contacts.php:1009 +msgid "Delete contact" +msgstr "Eliminar contacto" + +#: mod/dfrn_confirm.php:127 msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! " +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada." -#: mod/filer.php:30 -msgid "- select -" -msgstr "- seleccionar -" +#: mod/dfrn_confirm.php:246 +msgid "Response from remote site was not understood." +msgstr "La respuesta desde el sitio remoto no ha sido entendida." -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Toque/Empujón" +#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260 +msgid "Unexpected response from remote site: " +msgstr "Respuesta inesperada desde el sitio remoto: " -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "da un toque, empujón o similar a alguien" +#: mod/dfrn_confirm.php:269 +msgid "Confirmation completed successfully." +msgstr "Confirmación completada con éxito." -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Receptor" +#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292 +msgid "Remote site reported: " +msgstr "El sito remoto informó: " -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Elige qué desea hacer con el receptor" +#: mod/dfrn_confirm.php:283 +msgid "Temporary failure. Please wait and try again." +msgstr "Error temporal. Por favor, espere y vuelva a intentarlo." -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Hacer esta publicación privada" +#: mod/dfrn_confirm.php:290 +msgid "Introduction failed or was revoked." +msgstr "La presentación ha fallado o ha sido anulada." -#: mod/photos.php:88 mod/photos.php:1856 -msgid "Recent Photos" -msgstr "Fotos recientes" +#: mod/dfrn_confirm.php:419 +msgid "Unable to set contact photo." +msgstr "Imposible establecer la foto del contacto." -#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" - -#: mod/photos.php:105 mod/settings.php:36 -msgid "everybody" -msgstr "todos" - -#: mod/photos.php:169 -msgid "Contact information unavailable" -msgstr "Información del contacto no disponible" - -#: mod/photos.php:190 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227 -msgid "Delete Album" -msgstr "Eliminar álbum" - -#: mod/photos.php:230 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" - -#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540 -msgid "Delete Photo" -msgstr "Eliminar foto" - -#: mod/photos.php:317 -msgid "Do you really want to delete this photo?" -msgstr "¿Estás seguro de que quieres borrar esta foto?" - -#: mod/photos.php:688 +#: mod/dfrn_confirm.php:557 #, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s fue etiquetado en %2$s por %3$s" +msgid "No user record found for '%s' " +msgstr "No se ha encontrado a ningún '%s' " -#: mod/photos.php:688 -msgid "a photo" -msgstr "una foto" +#: mod/dfrn_confirm.php:567 +msgid "Our site encryption key is apparently messed up." +msgstr "Nuestra clave de cifrado del sitio es aparentemente un lío." -#: mod/photos.php:794 -msgid "Image file is empty." -msgstr "El archivo de imagen está vacío." +#: mod/dfrn_confirm.php:578 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Se ha proporcionado una dirección vacía o no hemos podido descifrarla." -#: mod/photos.php:954 -msgid "No photos selected" -msgstr "Ninguna foto seleccionada" +#: mod/dfrn_confirm.php:599 +msgid "Contact record was not found for you on our site." +msgstr "El contacto no se ha encontrado en nuestra base de datos." -#: mod/photos.php:1114 +#: mod/dfrn_confirm.php:613 #, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Has usado %1$.2f MB de %2$.2f MB de tu álbum de fotos." +msgid "Site public key not available in contact record for URL %s." +msgstr "La clave pública del sitio no está disponible en los datos del contacto para %s." -#: mod/photos.php:1148 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: mod/photos.php:1152 mod/photos.php:1222 -msgid "New album name: " -msgstr "Nombre del nuevo álbum: " - -#: mod/photos.php:1153 -msgid "or existing album name: " -msgstr "o nombre de un álbum existente: " - -#: mod/photos.php:1154 -msgid "Do not show a status post for this upload" -msgstr "No actualizar tu estado con este envío" - -#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300 -msgid "Show to Groups" -msgstr "Mostrar a los Grupos" - -#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301 -msgid "Show to Contacts" -msgstr "Mostrar a los Contactos" - -#: mod/photos.php:1167 -msgid "Private Photo" -msgstr "Foto Privada" - -#: mod/photos.php:1168 -msgid "Public Photo" -msgstr "Foto Pública" - -#: mod/photos.php:1234 -msgid "Edit Album" -msgstr "Modificar álbum" - -#: mod/photos.php:1240 -msgid "Show Newest First" -msgstr "Mostrar más nuevos primero" - -#: mod/photos.php:1242 -msgid "Show Oldest First" -msgstr "Mostrar más antiguos primero" - -#: mod/photos.php:1269 mod/photos.php:1841 -msgid "View Photo" -msgstr "Ver foto" - -#: mod/photos.php:1315 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." - -#: mod/photos.php:1317 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Ver foto" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Modificar foto" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Ver a tamaño completo" - -#: mod/photos.php:1484 -msgid "Tags: " -msgstr "Etiquetas: " - -#: mod/photos.php:1487 -msgid "[Remove any tag]" -msgstr "[Borrar todas las etiquetas]" - -#: mod/photos.php:1526 -msgid "New album name" -msgstr "Nuevo nombre del álbum" - -#: mod/photos.php:1527 -msgid "Caption" -msgstr "Título" - -#: mod/photos.php:1528 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: mod/photos.php:1528 +#: mod/dfrn_confirm.php:633 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo." -#: mod/photos.php:1529 -msgid "Do not rotate" -msgstr "No rotar" +#: mod/dfrn_confirm.php:644 +msgid "Unable to set your contact credentials on our system." +msgstr "No se puede establecer las credenciales de tu contacto en nuestro sistema." -#: mod/photos.php:1530 -msgid "Rotate CW (right)" -msgstr "Girar a la derecha" +#: mod/dfrn_confirm.php:703 +msgid "Unable to update your contact profile details on our system" +msgstr "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema" -#: mod/photos.php:1531 -msgid "Rotate CCW (left)" -msgstr "Girar a la izquierda" +#: mod/dfrn_confirm.php:775 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s se ha unido a %2$s" -#: mod/photos.php:1546 -msgid "Private photo" -msgstr "Foto privada" +#: mod/dfrn_request.php:101 +msgid "This introduction has already been accepted." +msgstr "Esta presentación ya ha sido aceptada." -#: mod/photos.php:1547 -msgid "Public photo" -msgstr "Foto pública" +#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 +msgid "Profile location is not valid or does not contain profile information." +msgstr "La dirección del perfil no es válida o no contiene información del perfil." -#: mod/photos.php:1770 -msgid "Map" -msgstr "Mapa" +#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Aviso: La dirección del perfil no tiene un nombre de propietario identificable." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 +msgid "Warning: profile location has no profile photo." +msgstr "Aviso: la dirección del perfil no tiene foto de perfil." + +#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "no se encontró %d parámetro requerido en el lugar determinado" +msgstr[1] "no se encontraron %d parámetros requeridos en el lugar determinado" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "Presentación completa." + +#: mod/dfrn_request.php:222 +msgid "Unrecoverable protocol error." +msgstr "Error de protocolo irrecuperable." + +#: mod/dfrn_request.php:250 +msgid "Profile unavailable." +msgstr "Perfil no disponible." + +#: mod/dfrn_request.php:277 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha recibido demasiadas solicitudes de conexión hoy." + +#: mod/dfrn_request.php:278 +msgid "Spam protection measures have been invoked." +msgstr "Han sido activadas las medidas de protección contra spam." + +#: mod/dfrn_request.php:279 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas." + +#: mod/dfrn_request.php:341 +msgid "Invalid locator" +msgstr "Localizador no válido" + +#: mod/dfrn_request.php:350 +msgid "Invalid email address." +msgstr "Dirección de correo incorrecta" + +#: mod/dfrn_request.php:375 +msgid "This account has not been configured for email. Request failed." +msgstr "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud." + +#: mod/dfrn_request.php:478 +msgid "You have already introduced yourself here." +msgstr "Ya te has presentado aquí." + +#: mod/dfrn_request.php:482 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Al parecer, ya eres amigo de %s." + +#: mod/dfrn_request.php:503 +msgid "Invalid profile URL." +msgstr "Dirección de perfil no válida." + +#: mod/dfrn_request.php:604 +msgid "Your introduction has been sent." +msgstr "Tu presentación ha sido enviada." + +#: mod/dfrn_request.php:644 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema." + +#: mod/dfrn_request.php:664 +msgid "Please login to confirm introduction." +msgstr "Inicia sesión para confirmar la presentación." + +#: mod/dfrn_request.php:674 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Sesión iniciada con la identificación incorrecta. Entra en este perfil." + +#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 +msgid "Confirm" +msgstr "Confirmar" + +#: mod/dfrn_request.php:700 +msgid "Hide this contact" +msgstr "Ocultar este contacto" + +#: mod/dfrn_request.php:703 +#, php-format +msgid "Welcome home %s." +msgstr "Bienvenido a casa %s" + +#: mod/dfrn_request.php:704 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Por favor, confirma tu solicitud de presentación/conexión con %s." + +#: mod/dfrn_request.php:833 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:" + +#: mod/dfrn_request.php:854 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "Si aun no eres miembro de la red social libre seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo" + +#: mod/dfrn_request.php:859 +msgid "Friend/Connection Request" +msgstr "Solicitud de Amistad/Conexión" + +#: mod/dfrn_request.php:860 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:861 mod/follow.php:109 +msgid "Please answer the following:" +msgstr "Por favor responde lo siguiente:" + +#: mod/dfrn_request.php:862 mod/follow.php:110 +#, php-format +msgid "Does %s know you?" +msgstr "¿%s te conoce?" + +#: mod/dfrn_request.php:866 mod/follow.php:111 +msgid "Add a personal note:" +msgstr "Añade una nota personal:" + +#: mod/dfrn_request.php:869 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Web Social Federada" + +#: mod/dfrn_request.php:871 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora." + +#: mod/dfrn_request.php:872 mod/follow.php:117 +msgid "Your Identity Address:" +msgstr "Dirección de tu perfil:" + +#: mod/dfrn_request.php:875 mod/follow.php:19 +msgid "Submit Request" +msgstr "Enviar solicitud" + +#: mod/follow.php:30 +msgid "You already added this contact." +msgstr "Ya has añadido este contacto." + +#: mod/follow.php:39 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado." + +#: mod/follow.php:46 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado." + +#: mod/follow.php:53 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado." + +#: mod/follow.php:180 +msgid "Contact added" +msgstr "Contacto añadido" #: mod/install.php:139 msgid "Friendica Communications Server - Setup" @@ -6365,7 +8244,7 @@ msgid "" "or mysql." msgstr "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql." -#: mod/install.php:161 mod/install.php:230 mod/install.php:602 +#: mod/install.php:161 mod/install.php:230 mod/install.php:607 msgid "Please see the file \"INSTALL.txt\"." msgstr "Por favor, consulta el archivo \"INSTALL.txt\"." @@ -6671,642 +8550,69 @@ msgstr "La reescritura de la dirección en .htaccess no funcionó. Revisa la con msgid "Url rewrite is working" msgstr "Reescribiendo la dirección..." -#: mod/install.php:551 +#: mod/install.php:552 +msgid "ImageMagick PHP extension is not installed" +msgstr "No está instalada la extensión ImageMagick PHP" + +#: mod/install.php:555 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP extension is installed" -#: mod/install.php:553 +#: mod/install.php:557 msgid "ImageMagick supports GIF" msgstr "ImageMagick supporta GIF" -#: mod/install.php:561 +#: mod/install.php:566 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web." -#: mod/install.php:600 +#: mod/install.php:605 msgid "

What next

" msgstr "

¿Ahora qué?

" -#: mod/install.php:601 +#: mod/install.php:606 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." msgstr "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo" -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está siguiendo las %3$s de %2$s" +#: mod/item.php:116 +msgid "Unable to locate original post." +msgstr "No se puede encontrar la publicación original." -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Elemento no disponible." +#: mod/item.php:341 +msgid "Empty post discarded." +msgstr "Publicación vacía descartada." -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Elemento no encontrado." +#: mod/item.php:902 +msgid "System error. Post not saved." +msgstr "Error del sistema. Mensaje no guardado." -#: mod/contacts.php:128 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d contacto editado." -msgstr[1] "%d contacts edited." - -#: mod/contacts.php:159 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "No se pudo acceder a los datos del contacto." - -#: mod/contacts.php:173 -msgid "Could not locate selected profile." -msgstr "No se pudo encontrar el perfil seleccionado." - -#: mod/contacts.php:206 -msgid "Contact updated." -msgstr "Contacto actualizado." - -#: mod/contacts.php:208 mod/dfrn_request.php:583 -msgid "Failed to update contact record." -msgstr "Error al actualizar el contacto." - -#: mod/contacts.php:389 -msgid "Contact has been blocked" -msgstr "El contacto ha sido bloqueado" - -#: mod/contacts.php:389 -msgid "Contact has been unblocked" -msgstr "El contacto ha sido desbloqueado" - -#: mod/contacts.php:400 -msgid "Contact has been ignored" -msgstr "El contacto ha sido ignorado" - -#: mod/contacts.php:400 -msgid "Contact has been unignored" -msgstr "El contacto ya no está ignorado" - -#: mod/contacts.php:412 -msgid "Contact has been archived" -msgstr "El contacto ha sido archivado" - -#: mod/contacts.php:412 -msgid "Contact has been unarchived" -msgstr "El contacto ya no está archivado" - -#: mod/contacts.php:437 -msgid "Drop contact" -msgstr "Eliminar contacto" - -#: mod/contacts.php:440 mod/contacts.php:801 -msgid "Do you really want to delete this contact?" -msgstr "¿Estás seguro de que quieres eliminar este contacto?" - -#: mod/contacts.php:457 -msgid "Contact has been removed." -msgstr "El contacto ha sido eliminado" - -#: mod/contacts.php:498 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Ahora tienes una amistad mutua con %s" - -#: mod/contacts.php:502 -#, php-format -msgid "You are sharing with %s" -msgstr "Estás compartiendo con %s" - -#: mod/contacts.php:507 -#, php-format -msgid "%s is sharing with you" -msgstr "%s está compartiendo contigo" - -#: mod/contacts.php:527 -msgid "Private communications are not available for this contact." -msgstr "Las comunicaciones privadas no está disponibles para este contacto." - -#: mod/contacts.php:534 -msgid "(Update was successful)" -msgstr "(La actualización se ha completado)" - -#: mod/contacts.php:534 -msgid "(Update was not successful)" -msgstr "(La actualización no se ha completado)" - -#: mod/contacts.php:536 mod/contacts.php:973 -msgid "Suggest friends" -msgstr "Sugerir amigos" - -#: mod/contacts.php:540 -#, php-format -msgid "Network type: %s" -msgstr "Tipo de red: %s" - -#: mod/contacts.php:553 -msgid "Communications lost with this contact!" -msgstr "¡Se ha perdido la comunicación con este contacto!" - -#: mod/contacts.php:556 -msgid "Fetch further information for feeds" -msgstr "Recaudar informacion complementaria de los feeds" - -#: mod/contacts.php:557 -msgid "Fetch information" -msgstr "Recaudar informacion" - -#: mod/contacts.php:557 -msgid "Fetch information and keywords" -msgstr "Recaudar informacion y palabras claves" - -#: mod/contacts.php:575 -msgid "Contact" -msgstr "Contacto" - -#: mod/contacts.php:578 -msgid "Profile Visibility" -msgstr "Visibilidad del Perfil" - -#: mod/contacts.php:579 +#: mod/item.php:992 #, php-format msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Este mensaje te lo ha enviado %s, miembro de la red social Friendica." -#: mod/contacts.php:580 -msgid "Contact Information / Notes" -msgstr "Información del Contacto / Notas" - -#: mod/contacts.php:581 -msgid "Edit contact notes" -msgstr "Editar notas del contacto" - -#: mod/contacts.php:587 -msgid "Block/Unblock contact" -msgstr "Boquear/Desbloquear contacto" - -#: mod/contacts.php:588 -msgid "Ignore contact" -msgstr "Ignorar contacto" - -#: mod/contacts.php:589 -msgid "Repair URL settings" -msgstr "Configuración de reparación de la dirección" - -#: mod/contacts.php:590 -msgid "View conversations" -msgstr "Ver conversaciones" - -#: mod/contacts.php:596 -msgid "Last update:" -msgstr "Última actualización:" - -#: mod/contacts.php:598 -msgid "Update public posts" -msgstr "Actualizar publicaciones públicas" - -#: mod/contacts.php:600 mod/contacts.php:983 -msgid "Update now" -msgstr "Actualizar ahora" - -#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000 -msgid "Unignore" -msgstr "Quitar de Ignorados" - -#: mod/contacts.php:610 -msgid "Currently blocked" -msgstr "Bloqueados" - -#: mod/contacts.php:611 -msgid "Currently ignored" -msgstr "Ignorados" - -#: mod/contacts.php:612 -msgid "Currently archived" -msgstr "Archivados" - -#: mod/contacts.php:613 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles." - -#: mod/contacts.php:614 -msgid "Notification for new posts" -msgstr "Notificacion de nuevos temas." - -#: mod/contacts.php:614 -msgid "Send a notification of every new post of this contact" -msgstr "Enviar una notificacion por nuevos temas de este contacto." - -#: mod/contacts.php:617 -msgid "Blacklisted keywords" -msgstr "Lista negra de palabras" - -#: mod/contacts.php:617 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado" - -#: mod/contacts.php:635 -msgid "Actions" -msgstr "Acciones" - -#: mod/contacts.php:638 -msgid "Contact Settings" -msgstr "Ajustes del contacto" - -#: mod/contacts.php:684 -msgid "Suggestions" -msgstr "Sugerencias" - -#: mod/contacts.php:687 -msgid "Suggest potential friends" -msgstr "Amistades potenciales sugeridas" - -#: mod/contacts.php:692 mod/group.php:192 -msgid "All Contacts" -msgstr "Todos los contactos" - -#: mod/contacts.php:695 -msgid "Show all contacts" -msgstr "Mostrar todos los contactos" - -#: mod/contacts.php:700 -msgid "Unblocked" -msgstr "Desbloqueados" - -#: mod/contacts.php:703 -msgid "Only show unblocked contacts" -msgstr "Mostrar solo contactos sin bloquear" - -#: mod/contacts.php:709 -msgid "Blocked" -msgstr "Bloqueados" - -#: mod/contacts.php:712 -msgid "Only show blocked contacts" -msgstr "Mostrar solo contactos bloqueados" - -#: mod/contacts.php:718 -msgid "Ignored" -msgstr "Ignorados" - -#: mod/contacts.php:721 -msgid "Only show ignored contacts" -msgstr "Mostrar solo contactos ignorados" - -#: mod/contacts.php:727 -msgid "Archived" -msgstr "Archivados" - -#: mod/contacts.php:730 -msgid "Only show archived contacts" -msgstr "Mostrar solo contactos archivados" - -#: mod/contacts.php:736 -msgid "Hidden" -msgstr "Ocultos" - -#: mod/contacts.php:739 -msgid "Only show hidden contacts" -msgstr "Mostrar solo contactos ocultos" - -#: mod/contacts.php:796 -msgid "Search your contacts" -msgstr "Buscar en tus contactos" - -#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:704 -msgid "Update" -msgstr "Actualizar" - -#: mod/contacts.php:807 mod/contacts.php:1008 -msgid "Archive" -msgstr "Archivo" - -#: mod/contacts.php:807 mod/contacts.php:1008 -msgid "Unarchive" -msgstr "Sin archivar" - -#: mod/contacts.php:810 -msgid "Batch Actions" -msgstr "Accones en lote" - -#: mod/contacts.php:856 -msgid "View all contacts" -msgstr "Ver todos los contactos" - -#: mod/contacts.php:863 mod/common.php:134 -msgid "Common Friends" -msgstr "Amigos comunes" - -#: mod/contacts.php:866 -msgid "View all common friends" -msgstr "Ver todos los conocidos en común " - -#: mod/contacts.php:873 -msgid "Advanced Contact Settings" -msgstr "Configuración avanzada" - -#: mod/contacts.php:916 -msgid "Mutual Friendship" -msgstr "Amistad recíproca" - -#: mod/contacts.php:920 -msgid "is a fan of yours" -msgstr "es tu fan" - -#: mod/contacts.php:924 -msgid "you are a fan of" -msgstr "eres fan de" - -#: mod/contacts.php:994 -msgid "Toggle Blocked status" -msgstr "Cambiar bloqueados" - -#: mod/contacts.php:1002 -msgid "Toggle Ignored status" -msgstr "Cambiar ignorados" - -#: mod/contacts.php:1010 -msgid "Toggle Archive status" -msgstr "Cambiar archivados" - -#: mod/contacts.php:1018 -msgid "Delete contact" -msgstr "Eliminar contacto" - -#: mod/follow.php:19 mod/dfrn_request.php:875 -msgid "Submit Request" -msgstr "Enviar solicitud" - -#: mod/follow.php:30 -msgid "You already added this contact." -msgstr "Ya has añadido este contacto." - -#: mod/follow.php:39 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado." - -#: mod/follow.php:46 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado." - -#: mod/follow.php:53 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado." - -#: mod/follow.php:109 mod/dfrn_request.php:861 -msgid "Please answer the following:" -msgstr "Por favor responde lo siguiente:" - -#: mod/follow.php:110 mod/dfrn_request.php:862 +#: mod/item.php:994 #, php-format -msgid "Does %s know you?" -msgstr "¿%s te conoce?" +msgid "You may visit them online at %s" +msgstr "Los puedes visitar en línea en %s" -#: mod/follow.php:111 mod/dfrn_request.php:866 -msgid "Add a personal note:" -msgstr "Añade una nota personal:" - -#: mod/follow.php:117 mod/dfrn_request.php:872 -msgid "Your Identity Address:" -msgstr "Dirección de tu perfil:" - -#: mod/follow.php:180 -msgid "Contact added" -msgstr "Contacto añadido" - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Aplicaciones" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Sin aplicaciones" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "¿Estás seguro de que quieres borrar esta sugerencia?" - -#: mod/suggest.php:71 +#: mod/item.php:995 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas." +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." -#: mod/suggest.php:84 mod/suggest.php:104 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: mod/p.php:9 -msgid "Not Extended" -msgstr "No extendido" - -#: mod/display.php:473 -msgid "Item has been removed." -msgstr "El elemento ha sido eliminado." - -#: mod/common.php:86 -msgid "No contacts in common." -msgstr "Sin contactos en común." - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Bienvenido a Friendica " - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Listado de nuevos miembros" - -#: mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá." - -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "Empezando" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Visita guiada a Friendica" - -#: mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Ir a tus ajustes" - -#: mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres." - -#: mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." - -#: mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no." - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editar tu perfil" - -#: mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos." - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Palabras clave del perfil" - -#: mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos." - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "Conectando" - -#: mod/newmember.php:51 -msgid "Importing Emails" -msgstr "Importando correos electrónicos" - -#: mod/newmember.php:51 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico." - -#: mod/newmember.php:53 -msgid "Go to Your Contacts Page" -msgstr "Ir a tu página de contactos" - -#: mod/newmember.php:53 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"." - -#: mod/newmember.php:55 -msgid "Go to Your Site's Directory" -msgstr "Ir al directorio de tu sitio" - -#: mod/newmember.php:55 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario." - -#: mod/newmember.php:57 -msgid "Finding New People" -msgstr "Encontrando nueva gente" - -#: mod/newmember.php:57 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." - -#: mod/newmember.php:65 -msgid "Group Your Contacts" -msgstr "Agrupa tus contactos" - -#: mod/newmember.php:65 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red." - -#: mod/newmember.php:68 -msgid "Why Aren't My Posts Public?" -msgstr "¿Por qué mis publicaciones no son públicas?" - -#: mod/newmember.php:68 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba." - -#: mod/newmember.php:73 -msgid "Getting Help" -msgstr "Consiguiendo ayuda" - -#: mod/newmember.php:77 -msgid "Go to the Help Section" -msgstr "Ir a la sección de ayuda" - -#: mod/newmember.php:77 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." - -#: mod/removeme.php:46 mod/removeme.php:49 -msgid "Remove My Account" -msgstr "Eliminar mi cuenta" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduce tu contraseña para la verificación:" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Ánimo" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Coloca tu ánimo actual y cuéntaselo a tus amigos" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Elemento no encontrado" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Editar publicación" +#: mod/item.php:999 +#, php-format +msgid "%s posted an update." +msgstr "%s ha publicado una actualización." #: mod/network.php:398 #, php-format @@ -7331,1405 +8637,65 @@ msgstr "Los mensajes privados a esta persona corren el riesgo de ser mostrados p msgid "Invalid contact." msgstr "Contacto erróneo." -#: mod/network.php:827 +#: mod/network.php:826 msgid "Commented Order" msgstr "Orden de comentarios" -#: mod/network.php:830 +#: mod/network.php:829 msgid "Sort by Comment Date" msgstr "Ordenar por fecha de comentarios" -#: mod/network.php:835 +#: mod/network.php:834 msgid "Posted Order" msgstr "Orden de publicación" -#: mod/network.php:838 +#: mod/network.php:837 msgid "Sort by Post Date" msgstr "Ordenar por fecha de publicación" -#: mod/network.php:849 +#: mod/network.php:848 msgid "Posts that mention or involve you" msgstr "Publicaciones que te mencionan o involucran" -#: mod/network.php:857 +#: mod/network.php:856 msgid "New" msgstr "Nuevo" -#: mod/network.php:860 +#: mod/network.php:859 msgid "Activity Stream - by date" msgstr "Corriente de actividad por fecha" -#: mod/network.php:868 +#: mod/network.php:867 msgid "Shared Links" msgstr "Enlaces compartidos" -#: mod/network.php:871 +#: mod/network.php:870 msgid "Interesting Links" msgstr "Enlaces interesantes" -#: mod/network.php:879 +#: mod/network.php:878 msgid "Starred" msgstr "Favoritos" -#: mod/network.php:882 +#: mod/network.php:881 msgid "Favourite Posts" msgstr "Publicaciones favoritas" -#: mod/community.php:27 -msgid "Not available." -msgstr "No disponible" +#: mod/ping.php:261 +msgid "{0} wants to be your friend" +msgstr "{0} quiere ser tu amigo" -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Conversión horária" +#: mod/ping.php:276 +msgid "{0} sent you a message" +msgstr "{0} te ha enviado un mensaje" -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos." +#: mod/ping.php:291 +msgid "{0} requested registration" +msgstr "{0} solicitudes de registro" -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "Tiempo UTC: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Zona horaria actual: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Zona horaria local convertida: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Por favor, selecciona tu zona horaria:" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "La publicación fue creada" - -#: mod/group.php:29 -msgid "Group created." -msgstr "Grupo creado." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Imposible crear el grupo." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Grupo no encontrado." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "El nombre del grupo ha cambiado." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Guardar grupo" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Crea un grupo de contactos/amigos." - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Grupo eliminado." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "No se puede eliminar el grupo." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Editor de grupos" - -#: mod/group.php:190 -msgid "Members" -msgstr "Miembros" - -#: mod/dfrn_request.php:101 -msgid "This introduction has already been accepted." -msgstr "Esta presentación ya ha sido aceptada." - -#: mod/dfrn_request.php:124 mod/dfrn_request.php:520 -msgid "Profile location is not valid or does not contain profile information." -msgstr "La dirección del perfil no es válida o no contiene información del perfil." - -#: mod/dfrn_request.php:129 mod/dfrn_request.php:525 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Aviso: La dirección del perfil no tiene un nombre de propietario identificable." - -#: mod/dfrn_request.php:131 mod/dfrn_request.php:527 -msgid "Warning: profile location has no profile photo." -msgstr "Aviso: la dirección del perfil no tiene foto de perfil." - -#: mod/dfrn_request.php:134 mod/dfrn_request.php:530 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "no se encontró %d parámetro requerido en el lugar determinado" -msgstr[1] "no se encontraron %d parámetros requeridos en el lugar determinado" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "Presentación completa." - -#: mod/dfrn_request.php:222 -msgid "Unrecoverable protocol error." -msgstr "Error de protocolo irrecuperable." - -#: mod/dfrn_request.php:250 -msgid "Profile unavailable." -msgstr "Perfil no disponible." - -#: mod/dfrn_request.php:277 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha recibido demasiadas solicitudes de conexión hoy." - -#: mod/dfrn_request.php:278 -msgid "Spam protection measures have been invoked." -msgstr "Han sido activadas las medidas de protección contra spam." - -#: mod/dfrn_request.php:279 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas." - -#: mod/dfrn_request.php:341 -msgid "Invalid locator" -msgstr "Localizador no válido" - -#: mod/dfrn_request.php:350 -msgid "Invalid email address." -msgstr "Dirección de correo incorrecta" - -#: mod/dfrn_request.php:375 -msgid "This account has not been configured for email. Request failed." -msgstr "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud." - -#: mod/dfrn_request.php:478 -msgid "You have already introduced yourself here." -msgstr "Ya te has presentado aquí." - -#: mod/dfrn_request.php:482 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Al parecer, ya eres amigo de %s." - -#: mod/dfrn_request.php:503 -msgid "Invalid profile URL." -msgstr "Dirección de perfil no válida." - -#: mod/dfrn_request.php:604 -msgid "Your introduction has been sent." -msgstr "Tu presentación ha sido enviada." - -#: mod/dfrn_request.php:644 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema." - -#: mod/dfrn_request.php:664 -msgid "Please login to confirm introduction." -msgstr "Inicia sesión para confirmar la presentación." - -#: mod/dfrn_request.php:674 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Sesión iniciada con la identificación incorrecta. Entra en este perfil." - -#: mod/dfrn_request.php:688 mod/dfrn_request.php:705 -msgid "Confirm" -msgstr "Confirmar" - -#: mod/dfrn_request.php:700 -msgid "Hide this contact" -msgstr "Ocultar este contacto" - -#: mod/dfrn_request.php:703 -#, php-format -msgid "Welcome home %s." -msgstr "Bienvenido a casa %s" - -#: mod/dfrn_request.php:704 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Por favor, confirma tu solicitud de presentación/conexión con %s." - -#: mod/dfrn_request.php:833 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:" - -#: mod/dfrn_request.php:854 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " -"join us today." -msgstr "Si aun no eres miembro de la red social libre seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo" - -#: mod/dfrn_request.php:859 -msgid "Friend/Connection Request" -msgstr "Solicitud de Amistad/Conexión" - -#: mod/dfrn_request.php:860 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:869 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Web Social Federada" - -#: mod/dfrn_request.php:871 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora." - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Imagen recibida, pero ha fallado al recortarla." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:314 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." - -#: mod/profile_photo.php:124 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." - -#: mod/profile_photo.php:134 -msgid "Unable to process image" -msgstr "Imposible procesar la imagen" - -#: mod/profile_photo.php:248 -msgid "Upload File:" -msgstr "Subir archivo:" - -#: mod/profile_photo.php:249 -msgid "Select a profile:" -msgstr "Elige un perfil:" - -#: mod/profile_photo.php:251 -msgid "Upload" -msgstr "Subir" - -#: mod/profile_photo.php:254 -msgid "or" -msgstr "o" - -#: mod/profile_photo.php:254 -msgid "skip this step" -msgstr "saltar este paso" - -#: mod/profile_photo.php:254 -msgid "select a photo from your photo albums" -msgstr "elige una foto de tus álbumes" - -#: mod/profile_photo.php:268 -msgid "Crop Image" -msgstr "Recortar imagen" - -#: mod/profile_photo.php:269 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." - -#: mod/profile_photo.php:271 -msgid "Done Editing" -msgstr "Editado" - -#: mod/profile_photo.php:305 -msgid "Image uploaded successfully." -msgstr "Imagen subida con éxito." - -#: mod/register.php:93 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Te has registrado con éxito. Por favor, consulta tu correo para más información." - -#: mod/register.php:98 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio." - -#: mod/register.php:105 -msgid "Registration successful." -msgstr "Registro exitoso." - -#: mod/register.php:111 -msgid "Your registration can not be processed." -msgstr "Tu registro no se puede procesar." - -#: mod/register.php:160 -msgid "Your registration is pending approval by the site owner." -msgstr "Tu registro está pendiente de aprobación por el propietario del sitio." - -#: mod/register.php:226 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"." - -#: mod/register.php:227 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." - -#: mod/register.php:228 -msgid "Your OpenID (optional): " -msgstr "Tu OpenID (opcional):" - -#: mod/register.php:242 -msgid "Include your profile in member directory?" -msgstr "¿Incluir tu perfil en el directorio de miembros?" - -#: mod/register.php:267 -msgid "Note for the admin" -msgstr "Nota para el administrador" - -#: mod/register.php:267 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo" - -#: mod/register.php:268 -msgid "Membership on this site is by invitation only." -msgstr "Sitio solo accesible mediante invitación." - -#: mod/register.php:269 -msgid "Your invitation ID: " -msgstr "ID de tu invitación: " - -#: mod/register.php:280 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "Nombre completo (ej. Joe Smith, real o real aparente):" - -#: mod/register.php:281 -msgid "Your Email Address: " -msgstr "Tu dirección de correo: " - -#: mod/register.php:283 mod/settings.php:1271 -msgid "New Password:" -msgstr "Contraseña nueva:" - -#: mod/register.php:283 -msgid "Leave empty for an auto generated password." -msgstr "Dejar vacío para autogenerar una contraseña" - -#: mod/register.php:284 mod/settings.php:1272 -msgid "Confirm:" -msgstr "Confirmar:" - -#: mod/register.php:285 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@$nombredelsitio\"." - -#: mod/register.php:286 -msgid "Choose a nickname: " -msgstr "Escoge un apodo: " - -#: mod/register.php:296 -msgid "Import your profile to this friendica instance" -msgstr "Importar tu perfil a esta instancia de friendica" - -#: mod/settings.php:60 -msgid "Display" -msgstr "Interfaz del usuario" - -#: mod/settings.php:67 mod/settings.php:886 -msgid "Social Networks" -msgstr "Redes sociales" - -#: mod/settings.php:88 -msgid "Connected apps" -msgstr "Aplicaciones conectadas" - -#: mod/settings.php:102 -msgid "Remove account" -msgstr "Eliminar cuenta" - -#: mod/settings.php:155 -msgid "Missing some important data!" -msgstr "¡Faltan algunos datos importantes!" - -#: mod/settings.php:269 -msgid "Failed to connect with email account using the settings provided." -msgstr "Error al conectar con la cuenta de correo mediante la configuración suministrada." - -#: mod/settings.php:274 -msgid "Email settings updated." -msgstr "Configuración de correo actualizada." - -#: mod/settings.php:289 -msgid "Features updated" -msgstr "Actualizaciones" - -#: mod/settings.php:359 -msgid "Relocate message has been send to your contacts" -msgstr "Mensaje de reubicación ha sido enviado a sus contactos." - -#: mod/settings.php:378 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "No se permiten contraseñas vacías. La contraseña no ha sido modificada." - -#: mod/settings.php:386 -msgid "Wrong password." -msgstr "Contraseña incorrecta" - -#: mod/settings.php:397 -msgid "Password changed." -msgstr "Contraseña modificada." - -#: mod/settings.php:399 -msgid "Password update failed. Please try again." -msgstr "La actualización de la contraseña ha fallado. Por favor, prueba otra vez." - -#: mod/settings.php:479 -msgid " Please use a shorter name." -msgstr " Usa un nombre más corto." - -#: mod/settings.php:481 -msgid " Name too short." -msgstr " Nombre demasiado corto." - -#: mod/settings.php:490 -msgid "Wrong Password" -msgstr "Contraseña incorrecta" - -#: mod/settings.php:495 -msgid " Not valid email." -msgstr " Correo no válido." - -#: mod/settings.php:501 -msgid " Cannot change to that email." -msgstr " No se puede usar ese correo." - -#: mod/settings.php:557 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto." - -#: mod/settings.php:561 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad." - -#: mod/settings.php:601 -msgid "Settings updated." -msgstr "Configuración actualizada." - -#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739 -msgid "Add application" -msgstr "Agregar aplicación" - -#: mod/settings.php:681 mod/settings.php:707 -msgid "Consumer Key" -msgstr "Clave del consumidor" - -#: mod/settings.php:682 mod/settings.php:708 -msgid "Consumer Secret" -msgstr "Secreto del consumidor" - -#: mod/settings.php:683 mod/settings.php:709 -msgid "Redirect" -msgstr "Redirigir" - -#: mod/settings.php:684 mod/settings.php:710 -msgid "Icon url" -msgstr "Dirección del ícono" - -#: mod/settings.php:695 -msgid "You can't edit this application." -msgstr "No puedes editar esta aplicación." - -#: mod/settings.php:738 -msgid "Connected Apps" -msgstr "Aplicaciones conectadas" - -#: mod/settings.php:742 -msgid "Client key starts with" -msgstr "Clave de cliente comienza por" - -#: mod/settings.php:743 -msgid "No name" -msgstr "Sin nombre" - -#: mod/settings.php:744 -msgid "Remove authorization" -msgstr "Suprimir la autorización" - -#: mod/settings.php:756 -msgid "No Plugin settings configured" -msgstr "No se ha configurado ningún módulo" - -#: mod/settings.php:764 -msgid "Plugin Settings" -msgstr "Configuración de los módulos" - -#: mod/settings.php:786 -msgid "Additional Features" -msgstr "Características adicionales" - -#: mod/settings.php:796 mod/settings.php:800 -msgid "General Social Media Settings" -msgstr "Configuración general de social media " - -#: mod/settings.php:806 -msgid "Disable intelligent shortening" -msgstr "Deshabilitar recorte inteligente de URL" - -#: mod/settings.php:808 -msgid "" -"Normally the system tries to find the best link to add to shortened posts. " -"If this option is enabled then every shortened post will always point to the" -" original friendica post." -msgstr "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica." - -#: mod/settings.php:814 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones " - -#: mod/settings.php:816 -msgid "" -"If you receive a message from an unknown OStatus user, this option decides " -"what to do. If it is checked, a new contact will be created for every " -"unknown user." -msgstr "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario." - -#: mod/settings.php:822 -msgid "Default group for OStatus contacts" -msgstr "Grupo por defecto para contactos OStatus" - -#: mod/settings.php:828 -msgid "Your legacy GNU Social account" -msgstr "Tu cuenta GNU social conectada" - -#: mod/settings.php:830 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Si agrega su viejo nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. " - -#: mod/settings.php:833 -msgid "Repair OStatus subscriptions" -msgstr "Reparar subscripciones de OStatus" - -#: mod/settings.php:842 mod/settings.php:843 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "El soporte integrado de conexión con %s está %s" - -#: mod/settings.php:842 mod/settings.php:843 -msgid "enabled" -msgstr "habilitado" - -#: mod/settings.php:842 mod/settings.php:843 -msgid "disabled" -msgstr "deshabilitado" - -#: mod/settings.php:843 -msgid "GNU Social (OStatus)" -msgstr "GNUsocial (OStatus)" - -#: mod/settings.php:879 -msgid "Email access is disabled on this site." -msgstr "El acceso por correo está deshabilitado en esta web." - -#: mod/settings.php:891 -msgid "Email/Mailbox Setup" -msgstr "Configuración del correo/buzón" - -#: mod/settings.php:892 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón." - -#: mod/settings.php:893 -msgid "Last successful email check:" -msgstr "Última comprobación del correo con éxito:" - -#: mod/settings.php:895 -msgid "IMAP server name:" -msgstr "Nombre del servidor IMAP:" - -#: mod/settings.php:896 -msgid "IMAP port:" -msgstr "Puerto IMAP:" - -#: mod/settings.php:897 -msgid "Security:" -msgstr "Seguridad:" - -#: mod/settings.php:897 mod/settings.php:902 -msgid "None" -msgstr "Ninguna" - -#: mod/settings.php:898 -msgid "Email login name:" -msgstr "Nombre de usuario:" - -#: mod/settings.php:899 -msgid "Email password:" -msgstr "Contraseña:" - -#: mod/settings.php:900 -msgid "Reply-to address:" -msgstr "Dirección de respuesta:" - -#: mod/settings.php:901 -msgid "Send public posts to all email contacts:" -msgstr "Enviar publicaciones públicas a todos los contactos de correo:" - -#: mod/settings.php:902 -msgid "Action after import:" -msgstr "Acción después de importar:" - -#: mod/settings.php:902 -msgid "Move to folder" -msgstr "Mover a un directorio" - -#: mod/settings.php:903 -msgid "Move to folder:" -msgstr "Mover al directorio:" - -#: mod/settings.php:994 -msgid "Display Settings" -msgstr "Configuración Tema/Visualización" - -#: mod/settings.php:1000 mod/settings.php:1023 -msgid "Display Theme:" -msgstr "Utilizar tema:" - -#: mod/settings.php:1001 -msgid "Mobile Theme:" -msgstr "Tema móvil:" - -#: mod/settings.php:1002 -msgid "Suppress warning of insecure networks" -msgstr "Suprimir el aviso de redes inseguras" - -#: mod/settings.php:1002 -msgid "" -"Should the system suppress the warning that the current group contains " -"members of networks that can't receive non public postings." -msgstr "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas." - -#: mod/settings.php:1003 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" - -#: mod/settings.php:1003 -msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar." - -#: mod/settings.php:1004 -msgid "Number of items to display per page:" -msgstr "Número de elementos a mostrar por página:" - -#: mod/settings.php:1004 mod/settings.php:1005 -msgid "Maximum of 100 items" -msgstr "Máximo 100 elementos" - -#: mod/settings.php:1005 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Cantidad de objetos a visualizar cuando se usa un movil" - -#: mod/settings.php:1006 -msgid "Don't show emoticons" -msgstr "No mostrar emoticones" - -#: mod/settings.php:1007 -msgid "Calendar" -msgstr "Calendario" - -#: mod/settings.php:1008 -msgid "Beginning of week:" -msgstr "Principio de la semana:" - -#: mod/settings.php:1009 -msgid "Don't show notices" -msgstr "No mostrara avisos" - -#: mod/settings.php:1010 -msgid "Infinite scroll" -msgstr "pagina infinita (sroll)" - -#: mod/settings.php:1011 -msgid "Automatic updates only at the top of the network page" -msgstr "Actualizaciones automaticas solo estando al principio de la pagina" - -#: mod/settings.php:1012 -msgid "Bandwith Saver Mode" -msgstr "Modo de guardado de ancho de banda" - -#: mod/settings.php:1012 -msgid "" -"When enabled, embedded content is not displayed on automatic updates, they " -"only show on page reload." -msgstr "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas." - -#: mod/settings.php:1014 -msgid "General Theme Settings" -msgstr "Ajustes generales de tema" - -#: mod/settings.php:1015 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados de tema" - -#: mod/settings.php:1016 -msgid "Content Settings" -msgstr "Ajustes de contenido" - -#: mod/settings.php:1017 view/theme/frio/config.php:61 -#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109 -#: view/theme/duepuntozero/config.php:61 -msgid "Theme settings" -msgstr "Configuración del Tema" - -#: mod/settings.php:1099 -msgid "Account Types" -msgstr "Tipos de cuenta" - -#: mod/settings.php:1100 -msgid "Personal Page Subtypes" -msgstr "Subtipos de página personal" - -#: mod/settings.php:1101 -msgid "Community Forum Subtypes" -msgstr "Subtipos de foro de comunidad" - -#: mod/settings.php:1108 -msgid "Personal Page" -msgstr "Página personal" - -#: mod/settings.php:1109 -msgid "This account is a regular personal profile" -msgstr "Esta cuenta es un perfil personal corriente" - -#: mod/settings.php:1112 -msgid "Organisation Page" -msgstr "Página de organización" - -#: mod/settings.php:1113 -msgid "This account is a profile for an organisation" -msgstr "Esta cuenta es un perfil de una organización" - -#: mod/settings.php:1116 -msgid "News Page" -msgstr "Página de noticias" - -#: mod/settings.php:1117 -msgid "This account is a news account/reflector" -msgstr "Esta cuenta es una cuenta de noticias/reflectora" - -#: mod/settings.php:1120 -msgid "Community Forum" -msgstr "Foro de la comunidad" - -#: mod/settings.php:1121 -msgid "" -"This account is a community forum where people can discuss with each other" -msgstr "Esta cuenta es un foro de comunidad donde la gente puede debatir con otros" - -#: mod/settings.php:1124 -msgid "Normal Account Page" -msgstr "Página de cuenta normal" - -#: mod/settings.php:1125 -msgid "This account is a normal personal profile" -msgstr "Esta cuenta es el perfil personal normal" - -#: mod/settings.php:1128 -msgid "Soapbox Page" -msgstr "Página de tribuna" - -#: mod/settings.php:1129 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de solo-lectura" - -#: mod/settings.php:1132 -msgid "Public Forum" -msgstr "Foro público" - -#: mod/settings.php:1133 -msgid "Automatically approve all contact requests" -msgstr "Aprovar autimáticamente todas las solicitudes de contacto" - -#: mod/settings.php:1136 -msgid "Automatic Friend Page" -msgstr "Página de Amistad autómatica" - -#: mod/settings.php:1137 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Aceptar automáticamente todas las solicitudes de conexión/amistad como amigos" - -#: mod/settings.php:1140 -msgid "Private Forum [Experimental]" -msgstr "Foro privado [Experimental]" - -#: mod/settings.php:1141 -msgid "Private forum - approved members only" -msgstr "Foro privado - solo miembros" - -#: mod/settings.php:1153 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1153 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." - -#: mod/settings.php:1163 -msgid "Publish your default profile in your local site directory?" -msgstr "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?" - -#: mod/settings.php:1169 -msgid "Publish your default profile in the global social directory?" -msgstr "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?" - -#: mod/settings.php:1177 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?" - -#: mod/settings.php:1181 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "Si habilitado, enviar temas públicos a a Diaspora* y otras redes no es posible. " - -#: mod/settings.php:1186 -msgid "Allow friends to post to your profile page?" -msgstr "¿Permites que tus amigos publiquen en tu página de perfil?" - -#: mod/settings.php:1192 -msgid "Allow friends to tag your posts?" -msgstr "¿Permites a los amigos etiquetar tus publicaciones?" - -#: mod/settings.php:1198 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?" - -#: mod/settings.php:1204 -msgid "Permit unknown people to send you private mail?" -msgstr "¿Permites que desconocidos te manden correos privados?" - -#: mod/settings.php:1212 -msgid "Profile is not published." -msgstr "El perfil no está publicado." - -#: mod/settings.php:1220 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Su dirección de identidad es '%s' o '%s'." - -#: mod/settings.php:1227 -msgid "Automatically expire posts after this many days:" -msgstr "Las publicaciones expirarán automáticamente después de estos días:" - -#: mod/settings.php:1227 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán" - -#: mod/settings.php:1228 -msgid "Advanced expiration settings" -msgstr "Configuración avanzada de expiración" - -#: mod/settings.php:1229 -msgid "Advanced Expiration" -msgstr "Expiración avanzada" - -#: mod/settings.php:1230 -msgid "Expire posts:" -msgstr "¿Expiran las publicaciones?" - -#: mod/settings.php:1231 -msgid "Expire personal notes:" -msgstr "¿Expiran las notas personales?" - -#: mod/settings.php:1232 -msgid "Expire starred posts:" -msgstr "¿Expiran los favoritos?" - -#: mod/settings.php:1233 -msgid "Expire photos:" -msgstr "¿Expiran las fotografías?" - -#: mod/settings.php:1234 -msgid "Only expire posts by others:" -msgstr "Solo expiran los mensajes de los demás:" - -#: mod/settings.php:1262 -msgid "Account Settings" -msgstr "Configuración de la cuenta" - -#: mod/settings.php:1270 -msgid "Password Settings" -msgstr "Configuración de la contraseña" - -#: mod/settings.php:1272 -msgid "Leave password fields blank unless changing" -msgstr "Deja la contraseña en blanco si no quieres cambiarla" - -#: mod/settings.php:1273 -msgid "Current Password:" -msgstr "Contraseña actual:" - -#: mod/settings.php:1273 mod/settings.php:1274 -msgid "Your current password to confirm the changes" -msgstr "Su contraseña actual para confirmar los cambios." - -#: mod/settings.php:1274 -msgid "Password:" -msgstr "Contraseña:" - -#: mod/settings.php:1278 -msgid "Basic Settings" -msgstr "Configuración básica" - -#: mod/settings.php:1280 -msgid "Email Address:" -msgstr "Dirección de correo:" - -#: mod/settings.php:1281 -msgid "Your Timezone:" -msgstr "Zona horaria:" - -#: mod/settings.php:1282 -msgid "Your Language:" -msgstr "Tu idioma:" - -#: mod/settings.php:1282 -msgid "" -"Set the language we use to show you friendica interface and to send you " -"emails" -msgstr "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo." - -#: mod/settings.php:1283 -msgid "Default Post Location:" -msgstr "Localización predeterminada:" - -#: mod/settings.php:1284 -msgid "Use Browser Location:" -msgstr "Usar localización del navegador:" - -#: mod/settings.php:1287 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" - -#: mod/settings.php:1289 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo número de peticiones de amistad por día:" - -#: mod/settings.php:1289 mod/settings.php:1319 -msgid "(to prevent spam abuse)" -msgstr "(para prevenir el abuso de spam)" - -#: mod/settings.php:1290 -msgid "Default Post Permissions" -msgstr "Permisos por defecto para las publicaciones" - -#: mod/settings.php:1291 -msgid "(click to open/close)" -msgstr "(pulsa para abrir/cerrar)" - -#: mod/settings.php:1302 -msgid "Default Private Post" -msgstr "Publicación Privada por defecto" - -#: mod/settings.php:1303 -msgid "Default Public Post" -msgstr "Publicación Pública por defecto" - -#: mod/settings.php:1307 -msgid "Default Permissions for New Posts" -msgstr "Permisos por defecto para nuevas publicaciones" - -#: mod/settings.php:1319 -msgid "Maximum private messages per day from unknown people:" -msgstr "Número máximo de mensajes diarios para desconocidos:" - -#: mod/settings.php:1322 -msgid "Notification Settings" -msgstr "Configuración de notificaciones" - -#: mod/settings.php:1323 -msgid "By default post a status message when:" -msgstr "Publicar en tu estado cuando:" - -#: mod/settings.php:1324 -msgid "accepting a friend request" -msgstr "aceptes una solicitud de amistad" - -#: mod/settings.php:1325 -msgid "joining a forum/community" -msgstr "te unas a un foro/comunidad" - -#: mod/settings.php:1326 -msgid "making an interesting profile change" -msgstr "hagas un cambio interesante en tu perfil" - -#: mod/settings.php:1327 -msgid "Send a notification email when:" -msgstr "Enviar notificación por correo cuando:" - -#: mod/settings.php:1328 -msgid "You receive an introduction" -msgstr "Recibas una presentación" - -#: mod/settings.php:1329 -msgid "Your introductions are confirmed" -msgstr "Tu presentación sea confirmada" - -#: mod/settings.php:1330 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en el muro de mi perfil" - -#: mod/settings.php:1331 -msgid "Someone writes a followup comment" -msgstr "Algien escriba en un comentario que sigo" - -#: mod/settings.php:1332 -msgid "You receive a private message" -msgstr "Recibas un mensaje privado" - -#: mod/settings.php:1333 -msgid "You receive a friend suggestion" -msgstr "Recibas una sugerencia de amistad" - -#: mod/settings.php:1334 -msgid "You are tagged in a post" -msgstr "Seas etiquetado en una publicación" - -#: mod/settings.php:1335 -msgid "You are poked/prodded/etc. in a post" -msgstr "Te han tocado/empujado/etc. en una publicación" - -#: mod/settings.php:1337 -msgid "Activate desktop notifications" -msgstr "Activar notificaciones en pantalla." - -#: mod/settings.php:1337 -msgid "Show desktop popup on new notifications" -msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." - -#: mod/settings.php:1339 -msgid "Text-only notification emails" -msgstr "Notificaciones e-mail de solo texto" - -#: mod/settings.php:1341 -msgid "Send text only notification emails, without the html part" -msgstr "Enviar las notificaciones por correo con formato de solo texto sin html." - -#: mod/settings.php:1343 -msgid "Advanced Account/Page Type Settings" -msgstr "Configuración avanzada de tipo de Cuenta/Página" - -#: mod/settings.php:1344 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" - -#: mod/settings.php:1347 -msgid "Relocate" -msgstr "Relocalizar" - -#: mod/settings.php:1348 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)" - -#: mod/settings.php:1349 -msgid "Resend relocate message to contacts" -msgstr "Reenviar mensaje de relocalización a los contactos" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado." - -#: mod/wallmessage.php:56 mod/message.php:71 -msgid "No recipient selected." -msgstr "Ningún destinatario seleccionado" - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Imposible comprobar tu servidor de inicio." - -#: mod/wallmessage.php:62 mod/message.php:78 -msgid "Message could not be sent." -msgstr "El mensaje no ha podido ser enviado." - -#: mod/wallmessage.php:65 mod/message.php:81 -msgid "Message collection failure." -msgstr "Fallo en la recolección de mensajes." - -#: mod/wallmessage.php:68 mod/message.php:84 -msgid "Message sent." -msgstr "Mensaje enviado." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Sin receptor." - -#: mod/wallmessage.php:142 mod/message.php:341 -msgid "Send Private Message" -msgstr "Enviar mensaje privado" - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos." - -#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536 -msgid "To:" -msgstr "Para:" - -#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538 -msgid "Subject:" -msgstr "Asunto:" - -#: mod/share.php:38 -msgid "link" -msgstr "enlace" - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizar la conexión de la aplicación" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Regresa a tu aplicación e introduce este código de seguridad:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Inicia sesión para continuar." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Texto fuente (bbcode):" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Fuente (Diaspora) para pasar a BBcode:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Entrada: " - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (raw HTML): " - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Fuente (formato Diaspora): " - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/item.php:116 -msgid "Unable to locate original post." -msgstr "No se puede encontrar la publicación original." - -#: mod/item.php:340 -msgid "Empty post discarded." -msgstr "Publicación vacía descartada." - -#: mod/item.php:898 -msgid "System error. Post not saved." -msgstr "Error del sistema. Mensaje no guardado." - -#: mod/item.php:988 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Este mensaje te lo ha enviado %s, miembro de la red social Friendica." - -#: mod/item.php:990 -#, php-format -msgid "You may visit them online at %s" -msgstr "Los puedes visitar en línea en %s" - -#: mod/item.php:991 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." - -#: mod/item.php:995 -#, php-format -msgid "%s posted an update." -msgstr "%s ha publicado una actualización." - -#: mod/ostatus_subscribe.php:14 -msgid "Subscribing to OStatus contacts" -msgstr "Subscribir a los contactos de OStatus" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "Sin suministro de datos de contacto." - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "No se ha podido conseguir la información del contacto." - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "No se ha podido conseguir datos de amigos para contactar." - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "exito!" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "fallido!" - -#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s te da la bienvenida a %2$s" - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Consejos para nuevos miembros" - -#: mod/message.php:75 -msgid "Unable to locate contact information." -msgstr "No se puede encontrar información del contacto." - -#: mod/message.php:215 -msgid "Do you really want to delete this message?" -msgstr "¿Estás seguro de que quieres borrar este mensaje?" - -#: mod/message.php:235 -msgid "Message deleted." -msgstr "Mensaje eliminado." - -#: mod/message.php:266 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: mod/message.php:383 -msgid "No messages." -msgstr "No hay mensajes." - -#: mod/message.php:426 -msgid "Message not available." -msgstr "Mensaje no disponibile." - -#: mod/message.php:503 -msgid "Delete message" -msgstr "Borrar mensaje" - -#: mod/message.php:529 mod/message.php:609 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: mod/message.php:531 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " - -#: mod/message.php:535 -msgid "Send Reply" -msgstr "Enviar respuesta" - -#: mod/message.php:579 -#, php-format -msgid "Unknown sender - %s" -msgstr "Remitente desconocido - %s" - -#: mod/message.php:581 -#, php-format -msgid "You and %s" -msgstr "Tú y %s" - -#: mod/message.php:583 -#, php-format -msgid "%s and You" -msgstr "%s y Tú" - -#: mod/message.php:612 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:615 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d mensaje" -msgstr[1] "%d mensajes" - -#: mod/manage.php:139 -msgid "Manage Identities and/or Pages" -msgstr "Administrar identidades y/o páginas" - -#: mod/manage.php:140 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" - -#: mod/manage.php:141 -msgid "Select an identity to manage: " -msgstr "Selecciona una identidad a gestionar:" +#: mod/viewcontacts.php:72 +msgid "No contacts." +msgstr "Ningún contacto." #: object/Item.php:370 msgid "via" @@ -8767,14 +8733,6 @@ msgstr "Reajustar al mejor tamaño" msgid "Resize to best fit and retain aspect ratio." msgstr "Reajustar al mejor tamaño y conservar proporción" -#: view/theme/frio/theme.php:229 -msgid "Guest" -msgstr "Invitado" - -#: view/theme/frio/theme.php:235 -msgid "Visitor" -msgstr "Visitante" - #: view/theme/frio/config.php:42 msgid "Default" msgstr "Por defecto" @@ -8815,6 +8773,14 @@ msgstr "Transparencia de contenido de fondo" msgid "Set the background image" msgstr "Seleccionar la imagen de fondo" +#: view/theme/frio/theme.php:229 +msgid "Guest" +msgstr "Invitado" + +#: view/theme/frio/theme.php:235 +msgid "Visitor" +msgstr "Visitante" + #: view/theme/quattro/config.php:67 msgid "Alignment" msgstr "Alineación" @@ -8906,3 +8872,56 @@ msgstr "slackr" #: view/theme/duepuntozero/config.php:62 msgid "Variations" msgstr "Variaciones" + +#: boot.php:970 +msgid "Delete this item?" +msgstr "¿Eliminar este elemento?" + +#: boot.php:973 +msgid "show fewer" +msgstr "ver menos" + +#: boot.php:1655 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Falló la actualización de %s. Mira los registros de errores." + +#: boot.php:1767 +msgid "Create a New Account" +msgstr "Crear una nueva cuenta" + +#: boot.php:1796 +msgid "Password: " +msgstr "Contraseña: " + +#: boot.php:1797 +msgid "Remember me" +msgstr "Recordarme" + +#: boot.php:1800 +msgid "Or login using OpenID: " +msgstr "O inicia sesión usando OpenID: " + +#: boot.php:1806 +msgid "Forgot your password?" +msgstr "¿Olvidaste la contraseña?" + +#: boot.php:1809 +msgid "Website Terms of Service" +msgstr "Términos de uso del sitio" + +#: boot.php:1810 +msgid "terms of service" +msgstr "Términos de uso" + +#: boot.php:1812 +msgid "Website Privacy Policy" +msgstr "Política de privacidad del sitio" + +#: boot.php:1813 +msgid "privacy policy" +msgstr "Política de privacidad" + +#: index.php:451 +msgid "toggle mobile" +msgstr "Cambiar a versión móvil" diff --git a/view/lang/es/strings.php b/view/lang/es/strings.php index f733f465a8..d8c0e84fde 100644 --- a/view/lang/es/strings.php +++ b/view/lang/es/strings.php @@ -5,48 +5,6 @@ function string_plural_select_es($n){ return ($n != 1);; }} ; -$a->strings["Delete this item?"] = "¿Eliminar este elemento?"; -$a->strings["Comment"] = "Comentar"; -$a->strings["show more"] = "ver más"; -$a->strings["show fewer"] = "ver menos"; -$a->strings["Update %s failed. See error logs."] = "Falló la actualización de %s. Mira los registros de errores."; -$a->strings["Create a New Account"] = "Crear una nueva cuenta"; -$a->strings["Register"] = "Registrarse"; -$a->strings["Logout"] = "Salir"; -$a->strings["Login"] = "Acceder"; -$a->strings["Nickname or Email: "] = "Apodo o Correo electrónico: "; -$a->strings["Password: "] = "Contraseña: "; -$a->strings["Remember me"] = "Recordarme"; -$a->strings["Or login using OpenID: "] = "O inicia sesión usando OpenID: "; -$a->strings["Forgot your password?"] = "¿Olvidaste la contraseña?"; -$a->strings["Password Reset"] = "Restablecer la contraseña"; -$a->strings["Website Terms of Service"] = "Términos de uso del sitio"; -$a->strings["terms of service"] = "Términos de uso"; -$a->strings["Website Privacy Policy"] = "Política de privacidad del sitio"; -$a->strings["privacy policy"] = "Política de privacidad"; -$a->strings["Miscellaneous"] = "Varios"; -$a->strings["Birthday:"] = "Fecha de nacimiento:"; -$a->strings["Age: "] = "Edad: "; -$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; -$a->strings["never"] = "nunca"; -$a->strings["less than a second ago"] = "hace menos de un segundo"; -$a->strings["year"] = "año"; -$a->strings["years"] = "años"; -$a->strings["month"] = "mes"; -$a->strings["months"] = "meses"; -$a->strings["week"] = "semana"; -$a->strings["weeks"] = "semanas"; -$a->strings["day"] = "día"; -$a->strings["days"] = "días"; -$a->strings["hour"] = "hora"; -$a->strings["hours"] = "horas"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minutos"; -$a->strings["second"] = "segundo"; -$a->strings["seconds"] = "segundos"; -$a->strings["%1\$d %2\$s ago"] = "hace %1\$d %2\$s"; -$a->strings["%s's birthday"] = "Cumpleaños de %s"; -$a->strings["Happy Birthday %s"] = "Feliz cumpleaños %s"; $a->strings["Add New Contact"] = "Añadir nuevo contacto"; $a->strings["Enter address or web location"] = "Escribe la dirección o página web"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel"; @@ -73,158 +31,9 @@ $a->strings["%d contact in common"] = array( 0 => "%d contacto en común", 1 => "%d contactos en común", ); -$a->strings["System"] = "Sistema"; -$a->strings["Network"] = "Red"; -$a->strings["Personal"] = "Personal"; -$a->strings["Home"] = "Inicio"; -$a->strings["Introductions"] = "Presentaciones"; -$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s"; -$a->strings["%s created a new post"] = "%s creó una nueva publicación"; -$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s"; -$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s"; -$a->strings["%s is attending %s's event"] = "%s está asistiendo al evento %s's"; -$a->strings["%s is not attending %s's event"] = "%s no está asistiendo al evento %s's"; -$a->strings["%s may attend %s's event"] = "%s podría asistir al evento %s's"; -$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s"; -$a->strings["Friend Suggestion"] = "Propuestas de amistad"; -$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión"; -$a->strings["New Follower"] = "Nuevo seguidor"; -$a->strings["Friendica Notification"] = "Notificación de Friendica"; -$a->strings["Thank You,"] = "Gracias,"; -$a->strings["%s Administrator"] = "%s Administrador"; -$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador"; -$a->strings["noreply"] = "no responder"; -$a->strings["%s "] = "%s "; -$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificación] Nuevo correo recibido de %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s te ha enviado un mensaje privado desde %2\$s."; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s te ha enviado %2\$s."; -$a->strings["a private message"] = "un mensaje privado"; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor, visita %s para ver y/o responder a tus mensajes privados."; -$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s]a %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentó en [url=%2\$s] %4\$s de %3\$s[/url]"; -$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s] tu %3\$s[/url]"; -$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificación] Comentario en la conversación de #%1\$d por %2\$s"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s ha comentado en una conversación/elemento que sigues."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Por favor, visita %s para ver y/o responder a la conversación."; -$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notificación] %s publicó en tu muro"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicó en tu perfil de %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicó en [url=%2\$s]tu muro[/url]"; -$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificación] %s te ha nombrado"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s te ha nombrado en %2\$s"; -$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]te nombró[/url]."; -$a->strings["[Friendica:Notify] %s shared a new post"] = "[Notificacion Friendica] %s compartio una nueva publicacion"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartió un nuevo tema en %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartió una publicación[/url]."; -$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s te dio un toque"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s te dio un toque en %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]te dio un toque[/url]."; -$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificación] %s ha etiquetado tu publicación"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha etiquetado tu publicación en %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha etiquetado [url=%2\$s]tu publicación[/url]"; -$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificación] Presentación recibida"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Has recibido una presentación de '%1\$s' en %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Has recibido [url=%1\$s]una presentación[/url] de %2\$s."; -$a->strings["You may visit their profile at %s"] = "Puedes visitar su perfil en %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s para aceptar o rechazar la presentación por favor."; -$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Notificación:Friendica] Un nuevo contacto comparte contigo"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s comparte con tigo en %2\$s"; -$a->strings["[Friendica:Notify] You have a new follower"] = "[Notificación:Friendica] Tienes un nuevo seguidor"; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Tienes un nuevo seguidor en %2\$s : %1\$s"; -$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notificación] Sugerencia de amigo recibida"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Has recibido una sugerencia de amigo de '%1\$s' en %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Has recibido [url=%1\$s]una sugerencia de amigo[/url] en %2\$s de %3\$s."; -$a->strings["Name:"] = "Nombre: "; -$a->strings["Photo:"] = "Foto: "; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s para aceptar o rechazar la sugerencia por favor."; -$a->strings["[Friendica:Notify] Connection accepted"] = "[Notificación:Friendica] Conexión aceptada"; -$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' acepto tu consulta de conexión %2\$s"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hacepto tu [url=%1\$s]consulta de conexión[/url]."; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ahora tiene amigos en común y puede intercambiar actualizaciones de estado, fotos y email sin restricción."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Por favor visite %s si desea hacer algún cambio a su relación."; -$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' eligió de aceptarte como fan/hincha lo que restringe algunas formas de comunicación - tales como mensajes privados y algunas interacciones de los perfiles. Si esto es una pagina de celebridad o comunidad, estas configuraciones se adoptaron automáticamente."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' puede elegir extender esto en una relación más permisiva o ambidireccional en el futuro."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Por favor visita %s si es preciso de hacer algún cambio a la relación con este contacto."; -$a->strings["[Friendica System:Notify] registration request"] = "[Notificacion:Friendica] consulta de registro"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Recibiste una consulta de registro de '%1\$s' en %2\$s"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Recibiste una [url=%1\$s]consulta de registro[/url] from %2\$s."; -$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nombre completo:\t%1\$s\\nUbicación del sitio:\t%2\$s\\nLogin Nombre:\t%3\$s (%4\$s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Por favor visita %s para aprobar o negar la solicitud."; -$a->strings["Click here to upgrade."] = "Pulsa aquí para actualizar."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Esta acción excede los límites permitidos por tu subscripción."; -$a->strings["This action is not available under your subscription plan."] = "Esta acción no está permitida para tu subscripción."; +$a->strings["show more"] = "ver más"; $a->strings["Forums"] = "Foros"; $a->strings["External link to forum"] = "Enlace externo al foro"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; -$a->strings["status"] = "estado"; -$a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*"; -$a->strings["Attachments:"] = "Archivos adjuntos:"; -$a->strings["%s\\'s birthday"] = "%s\\'s cumpleaños"; -$a->strings["Error decoding account file"] = "Error decodificando el archivo de cuenta"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? "; -$a->strings["Error! Cannot check nickname"] = "Error! No puedo consultar el apodo"; -$a->strings["User '%s' already exists on this server!"] = "La cuenta '%s' ya existe en este servidor!"; -$a->strings["User creation error"] = "Error al crear la cuenta"; -$a->strings["User profile creation error"] = "Error de creación del perfil de la cuenta"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contactos no encontrado", - 1 => "%d contactos no importado", -); -$a->strings["Done. You can now login with your username and password"] = "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña."; -$a->strings["Cannot locate DNS info for database server '%s'"] = "No se puede encontrar información DNS para la base de datos del servidor '%s'"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Starts:"] = "Inicio:"; -$a->strings["Finishes:"] = "Final:"; -$a->strings["Location:"] = "Localización:"; -$a->strings["Sun"] = "Dom"; -$a->strings["Mon"] = "Lun"; -$a->strings["Tue"] = "Mar"; -$a->strings["Wed"] = "Mie"; -$a->strings["Thu"] = "Jue"; -$a->strings["Fri"] = "Vie"; -$a->strings["Sat"] = "Sab"; -$a->strings["Sunday"] = "Domingo"; -$a->strings["Monday"] = "Lunes"; -$a->strings["Tuesday"] = "Martes"; -$a->strings["Wednesday"] = "Miércoles"; -$a->strings["Thursday"] = "Jueves"; -$a->strings["Friday"] = "Viernes"; -$a->strings["Saturday"] = "Sábado"; -$a->strings["Jan"] = "Ene"; -$a->strings["Feb"] = "Feb"; -$a->strings["Mar"] = "Mar"; -$a->strings["Apr"] = "Abr"; -$a->strings["May"] = "Mayo"; -$a->strings["Jun"] = "Jun"; -$a->strings["Jul"] = "Jul"; -$a->strings["Aug"] = "Ago"; -$a->strings["Sept"] = "Sept"; -$a->strings["Oct"] = "Oct"; -$a->strings["Nov"] = "Nov"; -$a->strings["Dec"] = "Dec"; -$a->strings["January"] = "Enero"; -$a->strings["February"] = "Febrero"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Abril"; -$a->strings["June"] = "Junio"; -$a->strings["July"] = "Julio"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Septiembre"; -$a->strings["October"] = "Octubre"; -$a->strings["November"] = "Noviembre"; -$a->strings["December"] = "Diciembre"; -$a->strings["today"] = "hoy"; -$a->strings["all-day"] = "todo el día"; -$a->strings["No events to display"] = "No hay eventos a mostrar"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editar evento"; -$a->strings["link to source"] = "Enlace al original"; -$a->strings["Export"] = "Exportar"; -$a->strings["Export calendar as ical"] = "Exportar calendario como ical"; -$a->strings["Export calendar as csv"] = "Exportar calendario como csv"; -$a->strings["Welcome "] = "Bienvenido "; -$a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil."; -$a->strings["Welcome back "] = "Bienvenido de nuevo "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."; $a->strings["Male"] = "Hombre"; $a->strings["Female"] = "Mujer"; $a->strings["Currently Male"] = "Actualmente Hombre"; @@ -286,80 +95,332 @@ $a->strings["Uncertain"] = "Incierto"; $a->strings["It's complicated"] = "Es complicado"; $a->strings["Don't care"] = "No te importa"; $a->strings["Ask me"] = "Pregúntame"; -$a->strings["[Name Withheld]"] = "[Nombre oculto]"; -$a->strings["Item not found."] = "Elemento no encontrado."; -$a->strings["Do you really want to delete this item?"] = "¿Realmente quieres borrar este objeto?"; -$a->strings["Yes"] = "Sí"; -$a->strings["Cancel"] = "Cancelar"; -$a->strings["Permission denied."] = "Permiso denegado."; -$a->strings["Archives"] = "Archivos"; -$a->strings["newer"] = "más nuevo"; -$a->strings["older"] = "más antiguo"; -$a->strings["prev"] = "ant."; -$a->strings["first"] = "primera"; -$a->strings["last"] = "última"; -$a->strings["next"] = "sig."; -$a->strings["Loading more entries..."] = "Cargar mas entradas .."; -$a->strings["The end"] = "El fin"; -$a->strings["No contacts"] = "Sin contactos"; -$a->strings["%d Contact"] = array( - 0 => "%d Contacto", - 1 => "%d Contactos", +$a->strings["Cannot locate DNS info for database server '%s'"] = "No se puede encontrar información DNS para la base de datos del servidor '%s'"; +$a->strings["Logged out."] = "Sesión finalizada"; +$a->strings["Login failed."] = "Accesso fallido."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente."; +$a->strings["The error message was:"] = "El mensaje del error fue:"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente."; +$a->strings["Default privacy group for new contacts"] = "Grupo por defecto para nuevos contactos"; +$a->strings["Everybody"] = "Todo el mundo"; +$a->strings["edit"] = "editar"; +$a->strings["Groups"] = "Grupos"; +$a->strings["Edit groups"] = "Editar grupo"; +$a->strings["Edit group"] = "Editar grupo"; +$a->strings["Create a new group"] = "Crear un nuevo grupo"; +$a->strings["Group Name: "] = "Nombre del grupo: "; +$a->strings["Contacts not in any group"] = "Contactos sin grupo"; +$a->strings["add"] = "añadir"; +$a->strings["Unknown | Not categorised"] = "Desconocido | No clasificado"; +$a->strings["Block immediately"] = "Bloquear inmediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Sospechoso, spammer, auto-publicidad"; +$a->strings["Known to me, but no opinion"] = "Le conozco, sin opinión"; +$a->strings["OK, probably harmless"] = "OK, probablemente inofensivo"; +$a->strings["Reputable, has my trust"] = "Buena reputación, tiene mi confianza"; +$a->strings["Frequently"] = "Frequentemente"; +$a->strings["Hourly"] = "Cada hora"; +$a->strings["Twice daily"] = "Dos veces al día"; +$a->strings["Daily"] = "Diariamente"; +$a->strings["Weekly"] = "Semanalmente"; +$a->strings["Monthly"] = "Mensualmente"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "Correo electrónico"; +$a->strings["Diaspora"] = "Diaspora*"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Conector Diaspora"; +$a->strings["GNU Social"] = "GNUsocial (OStatus)"; +$a->strings["App.net"] = "App.net"; +$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; +$a->strings["Post to Email"] = "Publicar mediante correo electrónico"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores deshabilitados, ya que \"%s\" es habilitado."; +$a->strings["Hide your profile details from unknown viewers?"] = "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?"; +$a->strings["Visible to everybody"] = "Visible para cualquiera"; +$a->strings["show"] = "mostrar"; +$a->strings["don't show"] = "no mostrar"; +$a->strings["CC: email addresses"] = "CC: dirección de correo electrónico"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com"; +$a->strings["Permissions"] = "Permisos"; +$a->strings["Close"] = "Cerrado"; +$a->strings["photo"] = "foto"; +$a->strings["status"] = "estado"; +$a->strings["event"] = "evento"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s"; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s"; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s puede que atienda %2\$s's %3\$s"; +$a->strings["[no subject]"] = "[sin asunto]"; +$a->strings["Wall Photos"] = "Foto del Muro"; +$a->strings["Click here to upgrade."] = "Pulsa aquí para actualizar."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Esta acción excede los límites permitidos por tu subscripción."; +$a->strings["This action is not available under your subscription plan."] = "Esta acción no está permitida para tu subscripción."; +$a->strings["Error decoding account file"] = "Error decodificando el archivo de cuenta"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? "; +$a->strings["Error! Cannot check nickname"] = "Error! No puedo consultar el apodo"; +$a->strings["User '%s' already exists on this server!"] = "La cuenta '%s' ya existe en este servidor!"; +$a->strings["User creation error"] = "Error al crear la cuenta"; +$a->strings["User profile creation error"] = "Error de creación del perfil de la cuenta"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contactos no encontrado", + 1 => "%d contactos no importado", ); -$a->strings["View Contacts"] = "Ver contactos"; -$a->strings["Search"] = "Buscar"; -$a->strings["Save"] = "Guardar"; +$a->strings["Done. You can now login with your username and password"] = "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña."; +$a->strings["Miscellaneous"] = "Varios"; +$a->strings["Birthday:"] = "Fecha de nacimiento:"; +$a->strings["Age: "] = "Edad: "; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; +$a->strings["never"] = "nunca"; +$a->strings["less than a second ago"] = "hace menos de un segundo"; +$a->strings["year"] = "año"; +$a->strings["years"] = "años"; +$a->strings["month"] = "mes"; +$a->strings["months"] = "meses"; +$a->strings["week"] = "semana"; +$a->strings["weeks"] = "semanas"; +$a->strings["day"] = "día"; +$a->strings["days"] = "días"; +$a->strings["hour"] = "hora"; +$a->strings["hours"] = "horas"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minutos"; +$a->strings["second"] = "segundo"; +$a->strings["seconds"] = "segundos"; +$a->strings["%1\$d %2\$s ago"] = "hace %1\$d %2\$s"; +$a->strings["%s's birthday"] = "Cumpleaños de %s"; +$a->strings["Happy Birthday %s"] = "Feliz cumpleaños %s"; +$a->strings["Friendica Notification"] = "Notificación de Friendica"; +$a->strings["Thank You,"] = "Gracias,"; +$a->strings["%s Administrator"] = "%s Administrador"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador"; +$a->strings["noreply"] = "no responder"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificación] Nuevo correo recibido de %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s te ha enviado un mensaje privado desde %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s te ha enviado %2\$s."; +$a->strings["a private message"] = "un mensaje privado"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor, visita %s para ver y/o responder a tus mensajes privados."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentó en [url=%2\$s] %4\$s de %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s] tu %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificación] Comentario en la conversación de #%1\$d por %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s ha comentado en una conversación/elemento que sigues."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Por favor, visita %s para ver y/o responder a la conversación."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notificación] %s publicó en tu muro"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicó en tu perfil de %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicó en [url=%2\$s]tu muro[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificación] %s te ha nombrado"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s te ha nombrado en %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]te nombró[/url]."; +$a->strings["[Friendica:Notify] %s shared a new post"] = "[Notificacion Friendica] %s compartio una nueva publicacion"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartió un nuevo tema en %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartió una publicación[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s te dio un toque"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s te dio un toque en %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]te dio un toque[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificación] %s ha etiquetado tu publicación"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha etiquetado tu publicación en %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha etiquetado [url=%2\$s]tu publicación[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificación] Presentación recibida"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Has recibido una presentación de '%1\$s' en %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Has recibido [url=%1\$s]una presentación[/url] de %2\$s."; +$a->strings["You may visit their profile at %s"] = "Puedes visitar su perfil en %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s para aceptar o rechazar la presentación por favor."; +$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Notificación:Friendica] Un nuevo contacto comparte contigo"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s comparte con tigo en %2\$s"; +$a->strings["[Friendica:Notify] You have a new follower"] = "[Notificación:Friendica] Tienes un nuevo seguidor"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Tienes un nuevo seguidor en %2\$s : %1\$s"; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notificación] Sugerencia de amigo recibida"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Has recibido una sugerencia de amigo de '%1\$s' en %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Has recibido [url=%1\$s]una sugerencia de amigo[/url] en %2\$s de %3\$s."; +$a->strings["Name:"] = "Nombre: "; +$a->strings["Photo:"] = "Foto: "; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s para aceptar o rechazar la sugerencia por favor."; +$a->strings["[Friendica:Notify] Connection accepted"] = "[Notificación:Friendica] Conexión aceptada"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' acepto tu consulta de conexión %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hacepto tu [url=%1\$s]consulta de conexión[/url]."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ahora tiene amigos en común y puede intercambiar actualizaciones de estado, fotos y email sin restricción."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Por favor visite %s si desea hacer algún cambio a su relación."; +$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' eligió de aceptarte como fan/hincha lo que restringe algunas formas de comunicación - tales como mensajes privados y algunas interacciones de los perfiles. Si esto es una pagina de celebridad o comunidad, estas configuraciones se adoptaron automáticamente."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' puede elegir extender esto en una relación más permisiva o ambidireccional en el futuro."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Por favor visita %s si es preciso de hacer algún cambio a la relación con este contacto."; +$a->strings["[Friendica System:Notify] registration request"] = "[Notificacion:Friendica] consulta de registro"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Recibiste una consulta de registro de '%1\$s' en %2\$s"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Recibiste una [url=%1\$s]consulta de registro[/url] from %2\$s."; +$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nombre completo:\t%1\$s\\nUbicación del sitio:\t%2\$s\\nLogin Nombre:\t%3\$s (%4\$s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Por favor visita %s para aprobar o negar la solicitud."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Starts:"] = "Inicio:"; +$a->strings["Finishes:"] = "Final:"; +$a->strings["Location:"] = "Localización:"; +$a->strings["Sun"] = "Dom"; +$a->strings["Mon"] = "Lun"; +$a->strings["Tue"] = "Mar"; +$a->strings["Wed"] = "Mie"; +$a->strings["Thu"] = "Jue"; +$a->strings["Fri"] = "Vie"; +$a->strings["Sat"] = "Sab"; +$a->strings["Sunday"] = "Domingo"; +$a->strings["Monday"] = "Lunes"; +$a->strings["Tuesday"] = "Martes"; +$a->strings["Wednesday"] = "Miércoles"; +$a->strings["Thursday"] = "Jueves"; +$a->strings["Friday"] = "Viernes"; +$a->strings["Saturday"] = "Sábado"; +$a->strings["Jan"] = "Ene"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "Mar"; +$a->strings["Apr"] = "Abr"; +$a->strings["May"] = "Mayo"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Jul"; +$a->strings["Aug"] = "Ago"; +$a->strings["Sept"] = "Sept"; +$a->strings["Oct"] = "Oct"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dec"; +$a->strings["January"] = "Enero"; +$a->strings["February"] = "Febrero"; +$a->strings["March"] = "Marzo"; +$a->strings["April"] = "Abril"; +$a->strings["June"] = "Junio"; +$a->strings["July"] = "Julio"; +$a->strings["August"] = "Agosto"; +$a->strings["September"] = "Septiembre"; +$a->strings["October"] = "Octubre"; +$a->strings["November"] = "Noviembre"; +$a->strings["December"] = "Diciembre"; +$a->strings["today"] = "hoy"; +$a->strings["all-day"] = "todo el día"; +$a->strings["No events to display"] = "No hay eventos a mostrar"; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Editar evento"; +$a->strings["link to source"] = "Enlace al original"; +$a->strings["Export"] = "Exportar"; +$a->strings["Export calendar as ical"] = "Exportar calendario como ical"; +$a->strings["Export calendar as csv"] = "Exportar calendario como csv"; +$a->strings["Nothing new here"] = "Nada nuevo por aquí"; +$a->strings["Clear notifications"] = "Limpiar notificaciones"; $a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, contenido"; +$a->strings["Logout"] = "Salir"; +$a->strings["End this session"] = "Cerrar la sesión"; +$a->strings["Status"] = "Estado"; +$a->strings["Your posts and conversations"] = "Tus publicaciones y conversaciones"; +$a->strings["Profile"] = "Perfil"; +$a->strings["Your profile page"] = "Tu página de perfil"; +$a->strings["Photos"] = "Fotografías"; +$a->strings["Your photos"] = "Tus fotos"; +$a->strings["Videos"] = "Videos"; +$a->strings["Your videos"] = "Tus videos"; +$a->strings["Events"] = "Eventos"; +$a->strings["Your events"] = "Tus eventos"; +$a->strings["Personal notes"] = "Notas personales"; +$a->strings["Your personal notes"] = "Tus notas personales"; +$a->strings["Login"] = "Acceder"; +$a->strings["Sign in"] = "Date de alta"; +$a->strings["Home"] = "Inicio"; +$a->strings["Home Page"] = "Página de inicio"; +$a->strings["Register"] = "Registrarse"; +$a->strings["Create an account"] = "Crea una cuenta"; +$a->strings["Help"] = "Ayuda"; +$a->strings["Help and documentation"] = "Ayuda y documentación"; +$a->strings["Apps"] = "Aplicaciones"; +$a->strings["Addon applications, utilities, games"] = "Aplicaciones, utilidades, juegos"; +$a->strings["Search"] = "Buscar"; +$a->strings["Search site content"] = " Busca contenido en la página"; $a->strings["Full Text"] = "Texto completo"; $a->strings["Tags"] = "Tags"; $a->strings["Contacts"] = "Contactos"; -$a->strings["poke"] = "tocar"; -$a->strings["poked"] = "tocó a"; -$a->strings["ping"] = "hacer \"ping\""; -$a->strings["pinged"] = "hizo \"ping\" a"; -$a->strings["prod"] = "empujar"; -$a->strings["prodded"] = "empujó a"; -$a->strings["slap"] = "abofetear"; -$a->strings["slapped"] = "abofeteó a"; -$a->strings["finger"] = "meter dedo"; -$a->strings["fingered"] = "le metió un dedo a"; -$a->strings["rebuff"] = "desairar"; -$a->strings["rebuffed"] = "desairó a"; -$a->strings["happy"] = "feliz"; -$a->strings["sad"] = "triste"; -$a->strings["mellow"] = "sentimental"; -$a->strings["tired"] = "cansado"; -$a->strings["perky"] = "alegre"; -$a->strings["angry"] = "furioso"; -$a->strings["stupified"] = "estupefacto"; -$a->strings["puzzled"] = "extrañado"; -$a->strings["interested"] = "interesado"; -$a->strings["bitter"] = "rencoroso"; -$a->strings["cheerful"] = "jovial"; -$a->strings["alive"] = "vivo"; -$a->strings["annoyed"] = "enojado"; -$a->strings["anxious"] = "ansioso"; -$a->strings["cranky"] = "irritable"; -$a->strings["disturbed"] = "perturbado"; -$a->strings["frustrated"] = "frustrado"; -$a->strings["motivated"] = "motivado"; -$a->strings["relaxed"] = "relajado"; -$a->strings["surprised"] = "sorprendido"; -$a->strings["View Video"] = "Ver vídeo"; -$a->strings["bytes"] = "bytes"; -$a->strings["Click to open/close"] = "Pulsa para abrir/cerrar"; -$a->strings["View on separate page"] = "Ver en pagina aparte"; -$a->strings["view on separate page"] = "ver en pagina aparte"; -$a->strings["event"] = "evento"; -$a->strings["photo"] = "foto"; -$a->strings["activity"] = "Actividad"; -$a->strings["comment"] = array( - 0 => "", - 1 => "Comentario", -); -$a->strings["post"] = "Publicación"; -$a->strings["Item filed"] = "Elemento archivado"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; +$a->strings["Community"] = "Comunidad"; +$a->strings["Conversations on this site"] = "Conversaciones en este sitio"; +$a->strings["Conversations on the network"] = "Conversaciones en la red"; +$a->strings["Events and Calendar"] = "Eventos y Calendario"; +$a->strings["Directory"] = "Directorio"; +$a->strings["People directory"] = "Directorio de usuarios"; +$a->strings["Information"] = "Información"; +$a->strings["Information about this friendica instance"] = "Información sobre esta instancia de friendica"; +$a->strings["Network"] = "Red"; +$a->strings["Conversations from your friends"] = "Conversaciones de tus amigos"; +$a->strings["Network Reset"] = "Reseteo de la red"; +$a->strings["Load Network page with no filters"] = "Cargar pagina de redes sin filtros"; +$a->strings["Introductions"] = "Presentaciones"; +$a->strings["Friend Requests"] = "Solicitudes de amistad"; +$a->strings["Notifications"] = "Notificaciones"; +$a->strings["See all notifications"] = "Ver todas las notificaciones"; +$a->strings["Mark as seen"] = "Marcar como leído"; +$a->strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; +$a->strings["Messages"] = "Mensajes"; +$a->strings["Private mail"] = "Correo privado"; +$a->strings["Inbox"] = "Entrada"; +$a->strings["Outbox"] = "Enviados"; +$a->strings["New Message"] = "Nuevo mensaje"; +$a->strings["Manage"] = "Administrar"; +$a->strings["Manage other pages"] = "Administrar otras páginas"; +$a->strings["Delegations"] = "Delegaciones"; +$a->strings["Delegate Page Management"] = "Delegar la administración de la página"; +$a->strings["Settings"] = "Configuración"; +$a->strings["Account settings"] = "Configuración de tu cuenta"; +$a->strings["Profiles"] = "Perfiles"; +$a->strings["Manage/Edit Profiles"] = "Manejar/editar Perfiles"; +$a->strings["Manage/edit friends and contacts"] = "Administrar/editar amigos y contactos"; +$a->strings["Admin"] = "Admin"; +$a->strings["Site setup and configuration"] = "Opciones y configuración del sitio"; +$a->strings["Navigation"] = "Navegación"; +$a->strings["Site map"] = "Mapa del sitio"; +$a->strings["Contact Photos"] = "Foto del contacto"; +$a->strings["Welcome "] = "Bienvenido "; +$a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil."; +$a->strings["Welcome back "] = "Bienvenido de nuevo "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."; +$a->strings["System"] = "Sistema"; +$a->strings["Personal"] = "Personal"; +$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s"; +$a->strings["%s created a new post"] = "%s creó una nueva publicación"; +$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s"; +$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s"; +$a->strings["%s is attending %s's event"] = "%s está asistiendo al evento %s's"; +$a->strings["%s is not attending %s's event"] = "%s no está asistiendo al evento %s's"; +$a->strings["%s may attend %s's event"] = "%s podría asistir al evento %s's"; +$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s"; +$a->strings["Friend Suggestion"] = "Propuestas de amistad"; +$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión"; +$a->strings["New Follower"] = "Nuevo seguidor"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tLos desarolladores de friendica publicaron una actualización %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "El mensaje de error es\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Se han encontrados errores creando las tablas de la base de datos."; +$a->strings["Errors encountered performing database changes."] = "Errores encontrados al ejecutar cambios en la base de datos."; +$a->strings["(no subject)"] = "(sin asunto)"; +$a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*"; +$a->strings["Attachments:"] = "Archivos adjuntos:"; +$a->strings["view full size"] = "Ver a tamaño completo"; +$a->strings["View Profile"] = "Ver perfil"; +$a->strings["View Status"] = "Ver estado"; +$a->strings["View Photos"] = "Ver fotos"; +$a->strings["Network Posts"] = "Publicaciones en la red"; +$a->strings["View Contact"] = "Ver contacto"; +$a->strings["Drop Contact"] = "Eliminar contacto"; +$a->strings["Send PM"] = "Enviar mensaje privado"; +$a->strings["Poke"] = "Toque"; +$a->strings["Organisation"] = "Organización"; +$a->strings["News"] = "Noticias"; +$a->strings["Forum"] = "Foro"; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada."; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada."; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada."; +$a->strings["Image/photo"] = "Imagen/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["$1 wrote:"] = "$1 escribió:"; +$a->strings["Encrypted content"] = "Contenido cifrado"; +$a->strings["Invalid source protocol"] = "Protocolo de fuente inválido"; +$a->strings["Invalid link protocol"] = "Protocolo de enlace inválido"; $a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s"; $a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s"; $a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s atenderá quizás %2\$s's %3\$s"; @@ -388,13 +449,6 @@ $a->strings["Please wait"] = "Por favor, espera"; $a->strings["remove"] = "eliminar"; $a->strings["Delete Selected Items"] = "Eliminar el elemento seleccionado"; $a->strings["Follow Thread"] = "Seguir publicacion"; -$a->strings["View Status"] = "Ver estado"; -$a->strings["View Profile"] = "Ver perfil"; -$a->strings["View Photos"] = "Ver fotos"; -$a->strings["Network Posts"] = "Publicaciones en la red"; -$a->strings["View Contact"] = "Ver contacto"; -$a->strings["Send PM"] = "Enviar mensaje privado"; -$a->strings["Poke"] = "Toque"; $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 attends."] = "%s atiende."; @@ -441,6 +495,7 @@ $a->strings["Permission settings"] = "Configuración de permisos"; $a->strings["permissions"] = "permisos"; $a->strings["Public post"] = "Publicación pública"; $a->strings["Preview"] = "Vista previa"; +$a->strings["Cancel"] = "Cancelar"; $a->strings["Post to Groups"] = "Publicar hacia grupos"; $a->strings["Post to Contacts"] = "Publicar hacia contactos"; $a->strings["Private post"] = "Publicación privada"; @@ -459,169 +514,7 @@ $a->strings["Not Attending"] = array( 0 => "No atendiendo", 1 => "No atendiendo", ); -$a->strings["Contact Photos"] = "Foto del contacto"; -$a->strings["Requested account is not available."] = "La cuenta solicitada no está disponible."; -$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; -$a->strings["Edit profile"] = "Editar perfil"; -$a->strings["Atom feed"] = "Atom feed"; -$a->strings["Profiles"] = "Perfiles"; -$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; -$a->strings["Change profile photo"] = "Cambiar foto del perfil"; -$a->strings["Create New Profile"] = "Crear nuevo perfil"; -$a->strings["Profile Image"] = "Imagen del Perfil"; -$a->strings["visible to everybody"] = "Visible para todos"; -$a->strings["Edit visibility"] = "Editar visibilidad"; -$a->strings["Gender:"] = "Género:"; -$a->strings["Status:"] = "Estado:"; -$a->strings["Homepage:"] = "Página de inicio:"; -$a->strings["About:"] = "Acerca de:"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Network:"] = "Red:"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["[today]"] = "[hoy]"; -$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; -$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:"; -$a->strings["[No description]"] = "[Sin descripción]"; -$a->strings["Event Reminders"] = "Recordatorios de eventos"; -$a->strings["Events this week:"] = "Eventos de esta semana:"; -$a->strings["Profile"] = "Perfil"; -$a->strings["Full Name:"] = "Nombre completo:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Age:"] = "Edad:"; -$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -$a->strings["Sexual Preference:"] = "Preferencia sexual:"; -$a->strings["Hometown:"] = "Ciudad de origen:"; -$a->strings["Tags:"] = "Etiquetas:"; -$a->strings["Political Views:"] = "Ideas políticas:"; -$a->strings["Religion:"] = "Religión:"; -$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:"; -$a->strings["Likes:"] = "Me gusta:"; -$a->strings["Dislikes:"] = "No me gusta:"; -$a->strings["Contact information and Social Networks:"] = "Información de contacto y Redes sociales:"; -$a->strings["Musical interests:"] = "Intereses musicales:"; -$a->strings["Books, literature:"] = "Libros, literatura:"; -$a->strings["Television:"] = "Televisión:"; -$a->strings["Film/dance/culture/entertainment:"] = "Películas/baile/cultura/entretenimiento:"; -$a->strings["Love/Romance:"] = "Amor/Romance:"; -$a->strings["Work/employment:"] = "Trabajo/ocupación:"; -$a->strings["School/education:"] = "Escuela/estudios:"; -$a->strings["Forums:"] = "Foros:"; -$a->strings["Basic"] = "Basic"; -$a->strings["Advanced"] = "Avanzado"; -$a->strings["Status"] = "Estado"; -$a->strings["Status Messages and Posts"] = "Mensajes de Estado y Publicaciones"; -$a->strings["Profile Details"] = "Detalles del Perfil"; -$a->strings["Photos"] = "Fotografías"; -$a->strings["Photo Albums"] = "Álbum de Fotos"; -$a->strings["Videos"] = "Videos"; -$a->strings["Events"] = "Eventos"; -$a->strings["Events and Calendar"] = "Eventos y Calendario"; -$a->strings["Personal Notes"] = "Notas personales"; -$a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto"; -$a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida."; -$a->strings["Connect URL missing."] = "Falta el conector URL."; -$a->strings["This site is not configured to allow communications with other networks."] = "Este sitio no está configurado para permitir la comunicación con otras redes."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "No se ha descubierto protocolos de comunicación o fuentes compatibles."; -$a->strings["The profile address specified does not provide adequate information."] = "La dirección del perfil especificado no proporciona información adecuada."; -$a->strings["An author or name was not found."] = "No se ha encontrado un autor o nombre."; -$a->strings["No browser URL could be matched to this address."] = "Ninguna dirección concuerda con la suministrada."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto."; -$a->strings["Use mailto: in front of address to force email check."] = "Escribe mailto: al principio de la dirección para forzar el envío."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas."; -$a->strings["Unable to retrieve contact information."] = "No ha sido posible recibir la información del contacto."; -$a->strings["following"] = "siguiendo"; -$a->strings["stopped following"] = "dejó de seguir"; -$a->strings["Drop Contact"] = "Eliminar contacto"; -$a->strings["Organisation"] = "Organización"; -$a->strings["News"] = "Noticias"; -$a->strings["Forum"] = "Foro"; -$a->strings["Embedded content"] = "Contenido integrado"; -$a->strings["Embedding disabled"] = "Contenido incrustrado desabilitado"; -$a->strings["Image/photo"] = "Imagen/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 escribió:"; -$a->strings["Encrypted content"] = "Contenido cifrado"; -$a->strings["Unknown | Not categorised"] = "Desconocido | No clasificado"; -$a->strings["Block immediately"] = "Bloquear inmediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Sospechoso, spammer, auto-publicidad"; -$a->strings["Known to me, but no opinion"] = "Le conozco, sin opinión"; -$a->strings["OK, probably harmless"] = "OK, probablemente inofensivo"; -$a->strings["Reputable, has my trust"] = "Buena reputación, tiene mi confianza"; -$a->strings["Frequently"] = "Frequentemente"; -$a->strings["Hourly"] = "Cada hora"; -$a->strings["Twice daily"] = "Dos veces al día"; -$a->strings["Daily"] = "Diariamente"; -$a->strings["Weekly"] = "Semanalmente"; -$a->strings["Monthly"] = "Mensualmente"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "Correo electrónico"; -$a->strings["Diaspora"] = "Diaspora*"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Conector Diaspora"; -$a->strings["GNU Social"] = "GNUsocial (OStatus)"; -$a->strings["App.net"] = "App.net"; -$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tLos desarolladores de friendica publicaron una actualización %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "El mensaje de error es\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Se han encontrados errores creando las tablas de la base de datos."; -$a->strings["Errors encountered performing database changes."] = "Errores encontrados al ejecutar cambios en la base de datos."; -$a->strings["Logged out."] = "Sesión finalizada"; -$a->strings["Login failed."] = "Accesso fallido."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente."; -$a->strings["The error message was:"] = "El mensaje del error fue:"; -$a->strings["view full size"] = "Ver a tamaño completo"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente."; -$a->strings["Default privacy group for new contacts"] = "Grupo por defecto para nuevos contactos"; -$a->strings["Everybody"] = "Todo el mundo"; -$a->strings["edit"] = "editar"; -$a->strings["Groups"] = "Grupos"; -$a->strings["Edit groups"] = "Editar grupo"; -$a->strings["Edit group"] = "Editar grupo"; -$a->strings["Create a new group"] = "Crear un nuevo grupo"; -$a->strings["Group Name: "] = "Nombre del grupo: "; -$a->strings["Contacts not in any group"] = "Contactos sin grupo"; -$a->strings["add"] = "añadir"; -$a->strings["Wall Photos"] = "Foto del Muro"; -$a->strings["(no subject)"] = "(sin asunto)"; -$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada."; -$a->strings["An invitation is required."] = "Se necesita invitación."; -$a->strings["Invitation could not be verified."] = "No se puede verificar la invitación."; -$a->strings["Invalid OpenID url"] = "Dirección OpenID no válida"; -$a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria."; -$a->strings["Please use a shorter name."] = "Por favor, usa un nombre más corto."; -$a->strings["Name too short."] = "El nombre es demasiado corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "No parece que ese sea tu nombre completo."; -$a->strings["Your email domain is not among those allowed on this site."] = "Tu dominio de correo no se encuentra entre los permitidos en este sitio."; -$a->strings["Not a valid email address."] = "No es una dirección de correo electrónico válida."; -$a->strings["Cannot use that email."] = "No se puede utilizar este correo electrónico."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "El apodo solo puede contener \"a-z\", \"0-9\" y \"_\"."; -$a->strings["Nickname is already registered. Please choose another."] = "Apodo ya registrado. Por favor, elije otro."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR GRAVE: La generación de claves de seguridad ha fallado."; -$a->strings["An error occurred during registration. Please try again."] = "Se produjo un error durante el registro. Por favor, inténtalo de nuevo."; -$a->strings["default"] = "predeterminado"; -$a->strings["An error occurred creating your default profile. Please try again."] = "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo."; -$a->strings["Profile Photos"] = "Foto del perfil"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrarse en %2\$s. Su cuenta está pendiente de aprobación por el administrador.\n\t"; -$a->strings["Registration at %s"] = "Registro en %s"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrar en %2\$s. Su cuenta ha sido creada.\n\t"; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3\$s\n\t\t\tNombre de la cuenta:\t\t%1\$s\n\t\t\tContraseña:\t\t%5\$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %2\$s."; -$a->strings["Registration details for %s"] = "Detalles de registro para %s"; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada."; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada."; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada."; +$a->strings["%s\\'s birthday"] = "%s\\'s cumpleaños"; $a->strings["General Features"] = "Opciones generales"; $a->strings["Multiple Profiles"] = "Perfiles multiples"; $a->strings["Ability to create multiple profiles"] = "Capacidad de crear perfiles multiples. Cada pagina/perfil/usuario puede tener diferentes perfiles/apariencias. Las mismas pueden ser visibles para determinados contactos seleccionados dentro de la red friendica."; @@ -672,83 +565,167 @@ $a->strings["Mute Post Notifications"] = "Silenciar notificaciones de una public $a->strings["Ability to mute notifications for a thread"] = "Habilidad de silenciar notificaciones sobre nuevos comentarios en una publicación."; $a->strings["Advanced Profile Settings"] = "Ajustes avanzados del perfil"; $a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles."; -$a->strings["Nothing new here"] = "Nada nuevo por aquí"; -$a->strings["Clear notifications"] = "Limpiar notificaciones"; -$a->strings["End this session"] = "Cerrar la sesión"; -$a->strings["Your posts and conversations"] = "Tus publicaciones y conversaciones"; -$a->strings["Your profile page"] = "Tu página de perfil"; -$a->strings["Your photos"] = "Tus fotos"; -$a->strings["Your videos"] = "Tus videos"; -$a->strings["Your events"] = "Tus eventos"; -$a->strings["Personal notes"] = "Notas personales"; -$a->strings["Your personal notes"] = "Tus notas personales"; -$a->strings["Sign in"] = "Date de alta"; -$a->strings["Home Page"] = "Página de inicio"; -$a->strings["Create an account"] = "Crea una cuenta"; -$a->strings["Help"] = "Ayuda"; -$a->strings["Help and documentation"] = "Ayuda y documentación"; -$a->strings["Apps"] = "Aplicaciones"; -$a->strings["Addon applications, utilities, games"] = "Aplicaciones, utilidades, juegos"; -$a->strings["Search site content"] = " Busca contenido en la página"; -$a->strings["Community"] = "Comunidad"; -$a->strings["Conversations on this site"] = "Conversaciones en este sitio"; -$a->strings["Conversations on the network"] = "Conversaciones en la red"; -$a->strings["Directory"] = "Directorio"; -$a->strings["People directory"] = "Directorio de usuarios"; -$a->strings["Information"] = "Información"; -$a->strings["Information about this friendica instance"] = "Información sobre esta instancia de friendica"; -$a->strings["Conversations from your friends"] = "Conversaciones de tus amigos"; -$a->strings["Network Reset"] = "Reseteo de la red"; -$a->strings["Load Network page with no filters"] = "Cargar pagina de redes sin filtros"; -$a->strings["Friend Requests"] = "Solicitudes de amistad"; -$a->strings["Notifications"] = "Notificaciones"; -$a->strings["See all notifications"] = "Ver todas las notificaciones"; -$a->strings["Mark as seen"] = "Marcar como leído"; -$a->strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; -$a->strings["Messages"] = "Mensajes"; -$a->strings["Private mail"] = "Correo privado"; -$a->strings["Inbox"] = "Entrada"; -$a->strings["Outbox"] = "Enviados"; -$a->strings["New Message"] = "Nuevo mensaje"; -$a->strings["Manage"] = "Administrar"; -$a->strings["Manage other pages"] = "Administrar otras páginas"; -$a->strings["Delegations"] = "Delegaciones"; -$a->strings["Delegate Page Management"] = "Delegar la administración de la página"; -$a->strings["Settings"] = "Configuración"; -$a->strings["Account settings"] = "Configuración de tu cuenta"; -$a->strings["Manage/Edit Profiles"] = "Manejar/editar Perfiles"; -$a->strings["Manage/edit friends and contacts"] = "Administrar/editar amigos y contactos"; -$a->strings["Admin"] = "Admin"; -$a->strings["Site setup and configuration"] = "Opciones y configuración del sitio"; -$a->strings["Navigation"] = "Navegación"; -$a->strings["Site map"] = "Mapa del sitio"; -$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s"; -$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s"; -$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s puede que atienda %2\$s's %3\$s"; -$a->strings["Post to Email"] = "Publicar mediante correo electrónico"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores deshabilitados, ya que \"%s\" es habilitado."; -$a->strings["Hide your profile details from unknown viewers?"] = "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?"; -$a->strings["Visible to everybody"] = "Visible para cualquiera"; -$a->strings["show"] = "mostrar"; -$a->strings["don't show"] = "no mostrar"; -$a->strings["CC: email addresses"] = "CC: dirección de correo electrónico"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com"; -$a->strings["Permissions"] = "Permisos"; -$a->strings["Close"] = "Cerrado"; -$a->strings["[no subject]"] = "[sin asunto]"; -$a->strings["You must be logged in to use addons. "] = "Tienes que estar registrado para tener acceso a los accesorios."; -$a->strings["Not Found"] = "No se ha encontrado"; -$a->strings["Page not found."] = "Página no encontrada."; -$a->strings["Permission denied"] = "Permiso denegado"; -$a->strings["toggle mobile"] = "Cambiar a versión móvil"; -$a->strings["Account approved."] = "Cuenta aprobada."; -$a->strings["Registration revoked for %s"] = "Registro anulado para %s"; -$a->strings["Please login."] = "Por favor accede."; +$a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida."; +$a->strings["Connect URL missing."] = "Falta el conector URL."; +$a->strings["This site is not configured to allow communications with other networks."] = "Este sitio no está configurado para permitir la comunicación con otras redes."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "No se ha descubierto protocolos de comunicación o fuentes compatibles."; +$a->strings["The profile address specified does not provide adequate information."] = "La dirección del perfil especificado no proporciona información adecuada."; +$a->strings["An author or name was not found."] = "No se ha encontrado un autor o nombre."; +$a->strings["No browser URL could be matched to this address."] = "Ninguna dirección concuerda con la suministrada."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto."; +$a->strings["Use mailto: in front of address to force email check."] = "Escribe mailto: al principio de la dirección para forzar el envío."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas."; +$a->strings["Unable to retrieve contact information."] = "No ha sido posible recibir la información del contacto."; +$a->strings["Requested account is not available."] = "La cuenta solicitada no está disponible."; +$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; +$a->strings["Edit profile"] = "Editar perfil"; +$a->strings["Atom feed"] = "Atom feed"; +$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; +$a->strings["Change profile photo"] = "Cambiar foto del perfil"; +$a->strings["Create New Profile"] = "Crear nuevo perfil"; +$a->strings["Profile Image"] = "Imagen del Perfil"; +$a->strings["visible to everybody"] = "Visible para todos"; +$a->strings["Edit visibility"] = "Editar visibilidad"; +$a->strings["Gender:"] = "Género:"; +$a->strings["Status:"] = "Estado:"; +$a->strings["Homepage:"] = "Página de inicio:"; +$a->strings["About:"] = "Acerca de:"; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Network:"] = "Red:"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[hoy]"; +$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; +$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:"; +$a->strings["[No description]"] = "[Sin descripción]"; +$a->strings["Event Reminders"] = "Recordatorios de eventos"; +$a->strings["Events this week:"] = "Eventos de esta semana:"; +$a->strings["Full Name:"] = "Nombre completo:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "Edad:"; +$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +$a->strings["Sexual Preference:"] = "Preferencia sexual:"; +$a->strings["Hometown:"] = "Ciudad de origen:"; +$a->strings["Tags:"] = "Etiquetas:"; +$a->strings["Political Views:"] = "Ideas políticas:"; +$a->strings["Religion:"] = "Religión:"; +$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:"; +$a->strings["Likes:"] = "Me gusta:"; +$a->strings["Dislikes:"] = "No me gusta:"; +$a->strings["Contact information and Social Networks:"] = "Información de contacto y Redes sociales:"; +$a->strings["Musical interests:"] = "Intereses musicales:"; +$a->strings["Books, literature:"] = "Libros, literatura:"; +$a->strings["Television:"] = "Televisión:"; +$a->strings["Film/dance/culture/entertainment:"] = "Películas/baile/cultura/entretenimiento:"; +$a->strings["Love/Romance:"] = "Amor/Romance:"; +$a->strings["Work/employment:"] = "Trabajo/ocupación:"; +$a->strings["School/education:"] = "Escuela/estudios:"; +$a->strings["Forums:"] = "Foros:"; +$a->strings["Basic"] = "Basic"; +$a->strings["Advanced"] = "Avanzado"; +$a->strings["Status Messages and Posts"] = "Mensajes de Estado y Publicaciones"; +$a->strings["Profile Details"] = "Detalles del Perfil"; +$a->strings["Photo Albums"] = "Álbum de Fotos"; +$a->strings["Personal Notes"] = "Notas personales"; +$a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto"; +$a->strings["[Name Withheld]"] = "[Nombre oculto]"; +$a->strings["Item not found."] = "Elemento no encontrado."; +$a->strings["Do you really want to delete this item?"] = "¿Realmente quieres borrar este objeto?"; +$a->strings["Yes"] = "Sí"; +$a->strings["Permission denied."] = "Permiso denegado."; +$a->strings["Archives"] = "Archivos"; +$a->strings["Embedded content"] = "Contenido integrado"; +$a->strings["Embedding disabled"] = "Contenido incrustrado desabilitado"; +$a->strings["%s is now following %s."] = "%s sigue ahora a %s."; +$a->strings["following"] = "siguiendo"; +$a->strings["%s stopped following %s."] = "%s dejó de seguir a %s."; +$a->strings["stopped following"] = "dejó de seguir"; +$a->strings["newer"] = "más nuevo"; +$a->strings["older"] = "más antiguo"; +$a->strings["prev"] = "ant."; +$a->strings["first"] = "primera"; +$a->strings["last"] = "última"; +$a->strings["next"] = "sig."; +$a->strings["Loading more entries..."] = "Cargar mas entradas .."; +$a->strings["The end"] = "El fin"; +$a->strings["No contacts"] = "Sin contactos"; +$a->strings["%d Contact"] = array( + 0 => "%d Contacto", + 1 => "%d Contactos", +); +$a->strings["View Contacts"] = "Ver contactos"; +$a->strings["Save"] = "Guardar"; +$a->strings["poke"] = "tocar"; +$a->strings["poked"] = "tocó a"; +$a->strings["ping"] = "hacer \"ping\""; +$a->strings["pinged"] = "hizo \"ping\" a"; +$a->strings["prod"] = "empujar"; +$a->strings["prodded"] = "empujó a"; +$a->strings["slap"] = "abofetear"; +$a->strings["slapped"] = "abofeteó a"; +$a->strings["finger"] = "meter dedo"; +$a->strings["fingered"] = "le metió un dedo a"; +$a->strings["rebuff"] = "desairar"; +$a->strings["rebuffed"] = "desairó a"; +$a->strings["happy"] = "feliz"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "sentimental"; +$a->strings["tired"] = "cansado"; +$a->strings["perky"] = "alegre"; +$a->strings["angry"] = "furioso"; +$a->strings["stupified"] = "estupefacto"; +$a->strings["puzzled"] = "extrañado"; +$a->strings["interested"] = "interesado"; +$a->strings["bitter"] = "rencoroso"; +$a->strings["cheerful"] = "jovial"; +$a->strings["alive"] = "vivo"; +$a->strings["annoyed"] = "enojado"; +$a->strings["anxious"] = "ansioso"; +$a->strings["cranky"] = "irritable"; +$a->strings["disturbed"] = "perturbado"; +$a->strings["frustrated"] = "frustrado"; +$a->strings["motivated"] = "motivado"; +$a->strings["relaxed"] = "relajado"; +$a->strings["surprised"] = "sorprendido"; +$a->strings["View Video"] = "Ver vídeo"; +$a->strings["bytes"] = "bytes"; +$a->strings["Click to open/close"] = "Pulsa para abrir/cerrar"; +$a->strings["View on separate page"] = "Ver en pagina aparte"; +$a->strings["view on separate page"] = "ver en pagina aparte"; +$a->strings["activity"] = "Actividad"; +$a->strings["comment"] = array( + 0 => "", + 1 => "Comentario", +); +$a->strings["post"] = "Publicación"; +$a->strings["Item filed"] = "Elemento archivado"; +$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada."; +$a->strings["An invitation is required."] = "Se necesita invitación."; +$a->strings["Invitation could not be verified."] = "No se puede verificar la invitación."; +$a->strings["Invalid OpenID url"] = "Dirección OpenID no válida"; +$a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria."; +$a->strings["Please use a shorter name."] = "Por favor, usa un nombre más corto."; +$a->strings["Name too short."] = "El nombre es demasiado corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "No parece que ese sea tu nombre completo."; +$a->strings["Your email domain is not among those allowed on this site."] = "Tu dominio de correo no se encuentra entre los permitidos en este sitio."; +$a->strings["Not a valid email address."] = "No es una dirección de correo electrónico válida."; +$a->strings["Cannot use that email."] = "No se puede utilizar este correo electrónico."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "El apodo solo puede contener \"a-z\", \"0-9\" y \"_\"."; +$a->strings["Nickname is already registered. Please choose another."] = "Apodo ya registrado. Por favor, elije otro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR GRAVE: La generación de claves de seguridad ha fallado."; +$a->strings["An error occurred during registration. Please try again."] = "Se produjo un error durante el registro. Por favor, inténtalo de nuevo."; +$a->strings["default"] = "predeterminado"; +$a->strings["An error occurred creating your default profile. Please try again."] = "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo."; +$a->strings["Profile Photos"] = "Foto del perfil"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrarse en %2\$s. Su cuenta está pendiente de aprobación por el administrador.\n\t"; +$a->strings["Registration at %s"] = "Registro en %s"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrar en %2\$s. Su cuenta ha sido creada.\n\t"; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3\$s\n\t\t\tNombre de la cuenta:\t\t%1\$s\n\t\t\tContraseña:\t\t%5\$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a %2\$s."; +$a->strings["Registration details for %s"] = "Detalles de registro para %s"; $a->strings["Post successful."] = "¡Publicado!"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]"; -$a->strings["People Search - %s"] = "Buscar perfiles - %s"; -$a->strings["Forum Search - %s"] = "Búsqueda de foro - %s"; -$a->strings["No matches"] = "Sin conincidencias"; $a->strings["Access denied."] = "Acceso denegado."; $a->strings["Welcome to %s"] = "Bienvenido a %s"; $a->strings["No more system notifications."] = "No hay más notificaciones del sistema."; @@ -761,6 +738,316 @@ $a->strings["Only one search per minute is permitted for not logged in users."] $a->strings["No results."] = "Sin resultados."; $a->strings["Items tagged with: %s"] = "Objetos taggeado con: %s"; $a->strings["Results for: %s"] = "Resultados para: %s"; +$a->strings["This is Friendica, version"] = "Esto es Friendica, versión"; +$a->strings["running at web location"] = "ejecutándose en la dirección web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Por favor, visita Friendica.com para saber más sobre el proyecto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Reporte de fallos y problemas: por favor visita"; +$a->strings["the bugtracker at github"] = "aviso de fallas (bugs) en github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugerencias, elogios, donaciones, etc. por favor manda un correo a Info arroba Friendica punto com"; +$a->strings["Installed plugins/addons/apps:"] = "Módulos/extensiones/aplicaciones instalados:"; +$a->strings["No installed plugins/addons/apps"] = "Módulos/extensiones/aplicaciones no instalados"; +$a->strings["No valid account found."] = "No se ha encontrado ninguna cuenta válida"; +$a->strings["Password reset request issued. Check your email."] = "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tEstimado %1\$s,\n\t\t\tUna consulta llego recientemente a \"%2\$s\" para renovar su\n\t\tcontraseña. Para confirmar esta solicitud por favor seleccione el enlace de verificación mas \n\t\tabajo o copie a pegue el mismo en la barra de dirección de su navegador.\n\n\t\tSi NO ha solicitado este cambio por favor NO SIGA este enlace\n\t\tproporcionado y ignore o borre este mail.\n\n\t\tSu contraseña no sera cambiada hasta que podamos verificar que usted haza\n\t\tsolicitado este cambio.."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSiga este enlace para verificar su identidad:\n\n\t\t%1\$s\n\n\t\tA continuación recibirá un mensaje consecutivo conteniendo la nueva contraseña.\n\t\tPodrá cambiar la contraseña después de haber accedido a la cuenta.\n\n\t\tLos detalles del acceso son las siguientes:\n\n\t\tDirección del sitio:\t%2\$s\n\t\tNombre de la cuenta:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Contraseña restablecida enviada a %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña."; +$a->strings["Password Reset"] = "Restablecer la contraseña"; +$a->strings["Your password has been reset as requested."] = "Tu contraseña ha sido restablecida como solicitaste."; +$a->strings["Your new password is"] = "Tu nueva contraseña es"; +$a->strings["Save or copy your new password - and then"] = "Guarda o copia tu nueva contraseña y luego"; +$a->strings["click here to login"] = "pulsa aquí para acceder"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tEstimado %1\$s,\n\t\t\t\t\tSu contraseña ha cambiado como solicitado. Por favor guarde esta\n\t\t\t\tinformación para sus documentación (o cambie su contraseña inmediatamente a\n\t\t\t\talgo que pueda recordar).\n\t\t"; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tSus datos de acceso son las siguientes:\n\n\t\t\t\tDirección del sitio:\t%1\$s\n\t\t\t\tNombre de cuenta:\t%2\$s\n\t\t\t\tContraseña:\t%3\$s\n\n\t\t\t\tPodrá cambiar esta contraseña después de ingresar al sitio en su pagina de configuración.\n\t\t\t"; +$a->strings["Your password has been changed at %s"] = "Tu contraseña se ha cambiado por %s"; +$a->strings["Forgot your Password?"] = "¿Olvidaste tu contraseña?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales."; +$a->strings["Nickname or Email: "] = "Apodo o Correo electrónico: "; +$a->strings["Reset"] = "Restablecer"; +$a->strings["No profile"] = "Nigún perfil"; +$a->strings["Help:"] = "Ayuda:"; +$a->strings["Not Found"] = "No se ha encontrado"; +$a->strings["Page not found."] = "Página no encontrada."; +$a->strings["Remote privacy information not available."] = "Privacidad de la información remota no disponible."; +$a->strings["Visible to:"] = "Visible para:"; +$a->strings["OpenID protocol error. No ID returned."] = "Error de protocolo OpenID. ID no devuelta."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Cuenta no encontrada y el registro OpenID no está permitido en ese sitio."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor."; +$a->strings["Import"] = "Importar"; +$a->strings["Move account"] = "Mover cuenta"; +$a->strings["You can import an account from another Friendica server."] = "Puedes importar una cuenta desde otro servidor de Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*"; +$a->strings["Account file"] = "Archivo de la cuenta"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\""; +$a->strings["Visit %s's profile [%s]"] = "Ver el perfil de %s [%s]"; +$a->strings["Edit contact"] = "Modificar contacto"; +$a->strings["Contacts who are not members of a group"] = "Contactos sin grupo"; +$a->strings["Export account"] = "Exportar cuenta"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor."; +$a->strings["Export all"] = "Exportar todo"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exporta la información de tu cuenta, contactos y lo demás en JSON. Puede ser un archivo bastante grande, por lo que llevará tiempo. Úsalo para hacer una copia de seguridad completa de tu cuenta (las fotos no se exportarán)"; +$a->strings["Export personal data"] = "Exportación de datos personales"; +$a->strings["Total invitation limit exceeded."] = "Límite total de invitaciones excedido."; +$a->strings["%s : Not a valid email address."] = "%s : No es una dirección de correo válida."; +$a->strings["Please join us on Friendica"] = "Únete a nosotros en Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio."; +$a->strings["%s : Message delivery failed."] = "%s : Ha fallado la entrega del mensaje."; +$a->strings["%d message sent."] = array( + 0 => "%d mensaje enviado.", + 1 => "%d mensajes enviados.", +); +$a->strings["You have no more invitations available"] = "No tienes más invitaciones disponibles"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros."; +$a->strings["Send invitations"] = "Enviar invitaciones"; +$a->strings["Enter email addresses, one per line:"] = "Introduce las direcciones de correo, una por línea:"; +$a->strings["Your message:"] = "Tu mensaje:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Tienes que proporcionar el siguiente código: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para más información sobre el Proyecto Friendica y sobre por qué pensamos que es algo importante, visita http://friendica.com"; +$a->strings["Submit"] = "Envíar"; +$a->strings["Files"] = "Archivos"; +$a->strings["Permission denied"] = "Permiso denegado"; +$a->strings["Invalid profile identifier."] = "Identificador de perfil no válido."; +$a->strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +$a->strings["Click on a contact to add or remove."] = "Pulsa en un contacto para añadirlo o eliminarlo."; +$a->strings["Visible To"] = "Visible para"; +$a->strings["All Contacts (with secure profile access)"] = "Todos los contactos (con perfil de acceso seguro)"; +$a->strings["Tag removed"] = "Etiqueta eliminada"; +$a->strings["Remove Item Tag"] = "Eliminar etiqueta"; +$a->strings["Select a tag to remove: "] = "Selecciona una etiqueta para eliminar: "; +$a->strings["Remove"] = "Eliminar"; +$a->strings["Resubscribing to OStatus contacts"] = "Resubscribir a contactos de OStatus"; +$a->strings["Error"] = "error"; +$a->strings["Done"] = "hecho!"; +$a->strings["Keep this window open until done."] = "Mantén esta ventana abierta hasta que el proceso ha terminado."; +$a->strings["No potential page delegates located."] = "No se han localizado delegados potenciales de la página."; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente."; +$a->strings["Existing Page Managers"] = "Administradores actuales de la página"; +$a->strings["Existing Page Delegates"] = "Delegados actuales de la página"; +$a->strings["Potential Delegates"] = "Delegados potenciales"; +$a->strings["Add"] = "Añadir"; +$a->strings["No entries."] = "Sin entradas."; +$a->strings["Credits"] = "Creditos"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! "; +$a->strings["- select -"] = "- seleccionar -"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo las %3\$s de %2\$s"; +$a->strings["Item not available."] = "Elemento no disponible."; +$a->strings["Item was not found."] = "Elemento no encontrado."; +$a->strings["You must be logged in to use addons. "] = "Tienes que estar registrado para tener acceso a los accesorios."; +$a->strings["Applications"] = "Aplicaciones"; +$a->strings["No installed applications."] = "Sin aplicaciones"; +$a->strings["Not Extended"] = "No extendido"; +$a->strings["Welcome to Friendica"] = "Bienvenido a Friendica "; +$a->strings["New Member Checklist"] = "Listado de nuevos miembros"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá."; +$a->strings["Getting Started"] = "Empezando"; +$a->strings["Friendica Walk-Through"] = "Visita guiada a Friendica"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte."; +$a->strings["Go to Your Settings"] = "Ir a tus ajustes"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo."; +$a->strings["Upload Profile Photo"] = "Subir foto del Perfil"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no."; +$a->strings["Edit Your Profile"] = "Editar tu perfil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos."; +$a->strings["Profile Keywords"] = "Palabras clave del perfil"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos."; +$a->strings["Connecting"] = "Conectando"; +$a->strings["Importing Emails"] = "Importando correos electrónicos"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico."; +$a->strings["Go to Your Contacts Page"] = "Ir a tu página de contactos"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"."; +$a->strings["Go to Your Site's Directory"] = "Ir al directorio de tu sitio"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario."; +$a->strings["Finding New People"] = "Encontrando nueva gente"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas."; +$a->strings["Group Your Contacts"] = "Agrupa tus contactos"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red."; +$a->strings["Why Aren't My Posts Public?"] = "¿Por qué mis publicaciones no son públicas?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba."; +$a->strings["Getting Help"] = "Consiguiendo ayuda"; +$a->strings["Go to the Help Section"] = "Ir a la sección de ayuda"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda."; +$a->strings["Remove My Account"] = "Eliminar mi cuenta"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer."; +$a->strings["Please enter your password for verification:"] = "Por favor, introduce tu contraseña para la verificación:"; +$a->strings["Item not found"] = "Elemento no encontrado"; +$a->strings["Edit post"] = "Editar publicación"; +$a->strings["Time Conversion"] = "Conversión horária"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos."; +$a->strings["UTC time: %s"] = "Tiempo UTC: %s"; +$a->strings["Current timezone: %s"] = "Zona horaria actual: %s"; +$a->strings["Converted localtime: %s"] = "Zona horaria local convertida: %s"; +$a->strings["Please select your timezone:"] = "Por favor, selecciona tu zona horaria:"; +$a->strings["The post was created"] = "La publicación fue creada"; +$a->strings["Group created."] = "Grupo creado."; +$a->strings["Could not create group."] = "Imposible crear el grupo."; +$a->strings["Group not found."] = "Grupo no encontrado."; +$a->strings["Group name changed."] = "El nombre del grupo ha cambiado."; +$a->strings["Save Group"] = "Guardar grupo"; +$a->strings["Create a group of contacts/friends."] = "Crea un grupo de contactos/amigos."; +$a->strings["Group removed."] = "Grupo eliminado."; +$a->strings["Unable to remove group."] = "No se puede eliminar el grupo."; +$a->strings["Group Editor"] = "Editor de grupos"; +$a->strings["Members"] = "Miembros"; +$a->strings["All Contacts"] = "Todos los contactos"; +$a->strings["Group is empty"] = "El grupo está vacío"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado."; +$a->strings["No recipient selected."] = "Ningún destinatario seleccionado"; +$a->strings["Unable to check your home location."] = "Imposible comprobar tu servidor de inicio."; +$a->strings["Message could not be sent."] = "El mensaje no ha podido ser enviado."; +$a->strings["Message collection failure."] = "Fallo en la recolección de mensajes."; +$a->strings["Message sent."] = "Mensaje enviado."; +$a->strings["No recipient."] = "Sin receptor."; +$a->strings["Send Private Message"] = "Enviar mensaje privado"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos."; +$a->strings["To:"] = "Para:"; +$a->strings["Subject:"] = "Asunto:"; +$a->strings["link"] = "enlace"; +$a->strings["Authorize application connection"] = "Autorizar la conexión de la aplicación"; +$a->strings["Return to your app and insert this Securty Code:"] = "Regresa a tu aplicación e introduce este código de seguridad:"; +$a->strings["Please login to continue."] = "Inicia sesión para continuar."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?"; +$a->strings["No"] = "No"; +$a->strings["Source (bbcode) text:"] = "Texto fuente (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Fuente (Diaspora) para pasar a BBcode:"; +$a->strings["Source input: "] = "Entrada: "; +$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Fuente (formato Diaspora): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Subscribing to OStatus contacts"] = "Subscribir a los contactos de OStatus"; +$a->strings["No contact provided."] = "Sin suministro de datos de contacto."; +$a->strings["Couldn't fetch information for contact."] = "No se ha podido conseguir la información del contacto."; +$a->strings["Couldn't fetch friends for contact."] = "No se ha podido conseguir datos de amigos para contactar."; +$a->strings["success"] = "exito!"; +$a->strings["failed"] = "fallido!"; +$a->strings["ignored"] = "ignorado"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s te da la bienvenida a %2\$s"; +$a->strings["Unable to locate contact information."] = "No se puede encontrar información del contacto."; +$a->strings["Do you really want to delete this message?"] = "¿Estás seguro de que quieres borrar este mensaje?"; +$a->strings["Message deleted."] = "Mensaje eliminado."; +$a->strings["Conversation removed."] = "Conversación eliminada."; +$a->strings["No messages."] = "No hay mensajes."; +$a->strings["Message not available."] = "Mensaje no disponibile."; +$a->strings["Delete message"] = "Borrar mensaje"; +$a->strings["Delete conversation"] = "Eliminar conversación"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. "; +$a->strings["Send Reply"] = "Enviar respuesta"; +$a->strings["Unknown sender - %s"] = "Remitente desconocido - %s"; +$a->strings["You and %s"] = "Tú y %s"; +$a->strings["%s and You"] = "%s y Tú"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d mensaje", + 1 => "%d mensajes", +); +$a->strings["Manage Identities and/or Pages"] = "Administrar identidades y/o páginas"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar"; +$a->strings["Select an identity to manage: "] = "Selecciona una identidad a gestionar:"; +$a->strings["Contact settings applied."] = "Contacto configurado con éxito."; +$a->strings["Contact update failed."] = "Error al actualizar el Contacto."; +$a->strings["Contact not found."] = "Contacto no encontrado."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página."; +$a->strings["No mirroring"] = "No espejar"; +$a->strings["Mirror as forwarded posting"] = "Espejar como reenvio"; +$a->strings["Mirror as my own posting"] = "Espejar como publicación propia"; +$a->strings["Return to contact editor"] = "Volver al editor de contactos"; +$a->strings["Refetch contact data"] = "Volver a solicitar datos del contacto."; +$a->strings["Remote Self"] = "Perfil remoto"; +$a->strings["Mirror postings from this contact"] = "Espejar publicaciones de este contacto"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta."; +$a->strings["Name"] = "Nombre"; +$a->strings["Account Nickname"] = "Apodo de la cuenta"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Etiqueta - Sobrescribe el Nombre/Apodo"; +$a->strings["Account URL"] = "Dirección de la cuenta"; +$a->strings["Friend Request URL"] = "Dirección de la solicitud de amistad"; +$a->strings["Friend Confirm URL"] = "Dirección de confirmación de tu amigo "; +$a->strings["Notification Endpoint URL"] = "Dirección URL de la notificación"; +$a->strings["Poll/Feed URL"] = "Dirección del Sondeo/Fuentes"; +$a->strings["New photo from this URL"] = "Nueva foto de esta dirección"; +$a->strings["No such group"] = "Ningún grupo"; +$a->strings["Group: %s"] = "Grupo: %s"; +$a->strings["This entry was edited"] = "Esta entrada fue editada"; +$a->strings["%d comment"] = array( + 0 => "%d comentario", + 1 => "%d comentarios", +); +$a->strings["Private Message"] = "Mensaje privado"; +$a->strings["I like this (toggle)"] = "Me gusta esto (cambiar)"; +$a->strings["like"] = "me gusta"; +$a->strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; +$a->strings["dislike"] = "no me gusta"; +$a->strings["Share this"] = "Compartir esto"; +$a->strings["share"] = "compartir"; +$a->strings["This is you"] = "Este eres tú"; +$a->strings["Comment"] = "Comentar"; +$a->strings["Bold"] = "Negrita"; +$a->strings["Italic"] = "Cursiva"; +$a->strings["Underline"] = "Subrayado"; +$a->strings["Quote"] = "Cita"; +$a->strings["Code"] = "Código"; +$a->strings["Image"] = "Imagen"; +$a->strings["Link"] = "Enlace"; +$a->strings["Video"] = "Vídeo"; +$a->strings["Edit"] = "Editar"; +$a->strings["add star"] = "Añadir estrella"; +$a->strings["remove star"] = "Quitar estrella"; +$a->strings["toggle star status"] = "Añadir a destacados"; +$a->strings["starred"] = "marcados con estrellas"; +$a->strings["add tag"] = "añadir etiqueta"; +$a->strings["ignore thread"] = "ignorar publicación"; +$a->strings["unignore thread"] = "revertir ignorar publicacion"; +$a->strings["toggle ignore status"] = "cambiar estatus de observación"; +$a->strings["save to folder"] = "grabado en directorio"; +$a->strings["I will attend"] = "Voy a estar presente"; +$a->strings["I will not attend"] = "No voy a estar presente"; +$a->strings["I might attend"] = "Puede que voy a estar presente"; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Muro-A-Muro"; +$a->strings["via Wall-To-Wall:"] = "via Muro-A-Muro:"; +$a->strings["Friend suggestion sent."] = "Solicitud de amistad enviada."; +$a->strings["Suggest Friends"] = "Sugerencias de amistad"; +$a->strings["Suggest a friend for %s"] = "Recomienda un amigo a %s"; +$a->strings["Mood"] = "Ánimo"; +$a->strings["Set your current mood and tell your friends"] = "Coloca tu ánimo actual y cuéntaselo a tus amigos"; +$a->strings["Poke/Prod"] = "Toque/Empujón"; +$a->strings["poke, prod or do other things to somebody"] = "da un toque, empujón o similar a alguien"; +$a->strings["Recipient"] = "Receptor"; +$a->strings["Choose what you wish to do to recipient"] = "Elige qué desea hacer con el receptor"; +$a->strings["Make this post private"] = "Hacer esta publicación privada"; +$a->strings["Image uploaded but image cropping failed."] = "Imagen recibida, pero ha fallado al recortarla."; +$a->strings["Image size reduction [%s] failed."] = "Ha fallado la reducción de las dimensiones de la imagen [%s]."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente."; +$a->strings["Unable to process image"] = "Imposible procesar la imagen"; +$a->strings["Image exceeds size limit of %s"] = "La imagen excede el limite de %s"; +$a->strings["Unable to process image."] = "Imposible procesar la imagen."; +$a->strings["Upload File:"] = "Subir archivo:"; +$a->strings["Select a profile:"] = "Elige un perfil:"; +$a->strings["Upload"] = "Subir"; +$a->strings["or"] = "o"; +$a->strings["skip this step"] = "saltar este paso"; +$a->strings["select a photo from your photo albums"] = "elige una foto de tus álbumes"; +$a->strings["Crop Image"] = "Recortar imagen"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajusta el recorte de la imagen para optimizarla."; +$a->strings["Done Editing"] = "Editado"; +$a->strings["Image uploaded successfully."] = "Imagen subida con éxito."; +$a->strings["Image upload failed."] = "Error al subir la imagen."; +$a->strings["Account approved."] = "Cuenta aprobada."; +$a->strings["Registration revoked for %s"] = "Registro anulado para %s"; +$a->strings["Please login."] = "Por favor accede."; $a->strings["Invalid request identifier."] = "Solicitud de identificación no válida."; $a->strings["Discard"] = "Descartar"; $a->strings["Ignore"] = "Ignorar"; @@ -789,167 +1076,384 @@ $a->strings["Show unread"] = "Mostrar no leído"; $a->strings["Show all"] = "Mostrar todo"; $a->strings["No more %s notifications."] = "No más notificaciones de %s."; $a->strings["Profile not found."] = "Perfil no encontrado."; -$a->strings["Contact not found."] = "Contacto no encontrado."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada."; -$a->strings["Response from remote site was not understood."] = "La respuesta desde el sitio remoto no ha sido entendida."; -$a->strings["Unexpected response from remote site: "] = "Respuesta inesperada desde el sitio remoto: "; -$a->strings["Confirmation completed successfully."] = "Confirmación completada con éxito."; -$a->strings["Remote site reported: "] = "El sito remoto informó: "; -$a->strings["Temporary failure. Please wait and try again."] = "Error temporal. Por favor, espere y vuelva a intentarlo."; -$a->strings["Introduction failed or was revoked."] = "La presentación ha fallado o ha sido anulada."; -$a->strings["Unable to set contact photo."] = "Imposible establecer la foto del contacto."; -$a->strings["No user record found for '%s' "] = "No se ha encontrado a ningún '%s' "; -$a->strings["Our site encryption key is apparently messed up."] = "Nuestra clave de cifrado del sitio es aparentemente un lío."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Se ha proporcionado una dirección vacía o no hemos podido descifrarla."; -$a->strings["Contact record was not found for you on our site."] = "El contacto no se ha encontrado en nuestra base de datos."; -$a->strings["Site public key not available in contact record for URL %s."] = "La clave pública del sitio no está disponible en los datos del contacto para %s."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo."; -$a->strings["Unable to set your contact credentials on our system."] = "No se puede establecer las credenciales de tu contacto en nuestro sistema."; -$a->strings["Unable to update your contact profile details on our system"] = "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s se ha unido a %2\$s"; -$a->strings["This is Friendica, version"] = "Esto es Friendica, versión"; -$a->strings["running at web location"] = "ejecutándose en la dirección web"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Por favor, visita Friendica.com para saber más sobre el proyecto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Reporte de fallos y problemas: por favor visita"; -$a->strings["the bugtracker at github"] = "aviso de fallas (bugs) en github"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugerencias, elogios, donaciones, etc. por favor manda un correo a Info arroba Friendica punto com"; -$a->strings["Installed plugins/addons/apps:"] = "Módulos/extensiones/aplicaciones instalados:"; -$a->strings["No installed plugins/addons/apps"] = "Módulos/extensiones/aplicaciones no instalados"; -$a->strings["No valid account found."] = "No se ha encontrado ninguna cuenta válida"; -$a->strings["Password reset request issued. Check your email."] = "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tEstimado %1\$s,\n\t\t\tUna consulta llego recientemente a \"%2\$s\" para renovar su\n\t\tcontraseña. Para confirmar esta solicitud por favor seleccione el enlace de verificación mas \n\t\tabajo o copie a pegue el mismo en la barra de dirección de su navegador.\n\n\t\tSi NO ha solicitado este cambio por favor NO SIGA este enlace\n\t\tproporcionado y ignore o borre este mail.\n\n\t\tSu contraseña no sera cambiada hasta que podamos verificar que usted haza\n\t\tsolicitado este cambio.."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSiga este enlace para verificar su identidad:\n\n\t\t%1\$s\n\n\t\tA continuación recibirá un mensaje consecutivo conteniendo la nueva contraseña.\n\t\tPodrá cambiar la contraseña después de haber accedido a la cuenta.\n\n\t\tLos detalles del acceso son las siguientes:\n\n\t\tDirección del sitio:\t%2\$s\n\t\tNombre de la cuenta:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Contraseña restablecida enviada a %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña."; -$a->strings["Your password has been reset as requested."] = "Tu contraseña ha sido restablecida como solicitaste."; -$a->strings["Your new password is"] = "Tu nueva contraseña es"; -$a->strings["Save or copy your new password - and then"] = "Guarda o copia tu nueva contraseña y luego"; -$a->strings["click here to login"] = "pulsa aquí para acceder"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tEstimado %1\$s,\n\t\t\t\t\tSu contraseña ha cambiado como solicitado. Por favor guarde esta\n\t\t\t\tinformación para sus documentación (o cambie su contraseña inmediatamente a\n\t\t\t\talgo que pueda recordar).\n\t\t"; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tSus datos de acceso son las siguientes:\n\n\t\t\t\tDirección del sitio:\t%1\$s\n\t\t\t\tNombre de cuenta:\t%2\$s\n\t\t\t\tContraseña:\t%3\$s\n\n\t\t\t\tPodrá cambiar esta contraseña después de ingresar al sitio en su pagina de configuración.\n\t\t\t"; -$a->strings["Your password has been changed at %s"] = "Tu contraseña se ha cambiado por %s"; -$a->strings["Forgot your Password?"] = "¿Olvidaste tu contraseña?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales."; -$a->strings["Reset"] = "Restablecer"; -$a->strings["No profile"] = "Nigún perfil"; -$a->strings["Help:"] = "Ayuda:"; -$a->strings["Invalid request."] = "Consulta invalida"; -$a->strings["Image exceeds size limit of %s"] = "La imagen excede el limite de %s"; -$a->strings["Unable to process image."] = "Imposible procesar la imagen."; -$a->strings["Image upload failed."] = "Error al subir la imagen."; -$a->strings["Friend suggestion sent."] = "Solicitud de amistad enviada."; -$a->strings["Suggest Friends"] = "Sugerencias de amistad"; -$a->strings["Suggest a friend for %s"] = "Recomienda un amigo a %s"; -$a->strings["Submit"] = "Envíar"; -$a->strings["Remote privacy information not available."] = "Privacidad de la información remota no disponible."; -$a->strings["Visible to:"] = "Visible para:"; -$a->strings["Event can not end before it has started."] = "Un evento no puede terminar antes de su comienzo."; -$a->strings["Event title and start time are required."] = "Título del evento y hora de inicio requeridas."; +$a->strings["Profile deleted."] = "Perfil eliminado."; +$a->strings["Profile-"] = "Perfil-"; +$a->strings["New profile created."] = "Nuevo perfil creado."; +$a->strings["Profile unavailable to clone."] = "Imposible duplicar el perfil."; +$a->strings["Profile Name is required."] = "Se necesita un nombre de perfil."; +$a->strings["Marital Status"] = "Estado civil"; +$a->strings["Romantic Partner"] = "Pareja sentimental"; +$a->strings["Work/Employment"] = "Trabajo/estudios"; +$a->strings["Religion"] = "Religión"; +$a->strings["Political Views"] = "Preferencias políticas"; +$a->strings["Gender"] = "Género"; +$a->strings["Sexual Preference"] = "Orientación sexual"; +$a->strings["XMPP"] = "XMPP"; +$a->strings["Homepage"] = "Página de inicio"; +$a->strings["Interests"] = "Intereses"; +$a->strings["Address"] = "Dirección"; +$a->strings["Location"] = "Ubicación"; +$a->strings["Profile updated."] = "Perfil actualizado."; +$a->strings[" and "] = " y "; +$a->strings["public profile"] = "perfil público"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s cambió su %2\$s a “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Visita %1\$s's %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s tiene una actualización %2\$s, cambiando %3\$s."; +$a->strings["Hide contacts and friends:"] = "Ocultar contactos y amigos"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "¿Ocultar tu lista de contactos/amigos en este perfil?"; +$a->strings["Show more profile fields:"] = "Mostrar mas campos del perfil:"; +$a->strings["Profile Actions"] = "Acciones de perfil"; +$a->strings["Edit Profile Details"] = "Editar detalles de tu perfil"; +$a->strings["Change Profile Photo"] = "Cambiar imagen del Perfil"; +$a->strings["View this profile"] = "Ver este perfil"; +$a->strings["Create a new profile using these settings"] = "¿Crear un nuevo perfil con esta configuración?"; +$a->strings["Clone this profile"] = "Clonar este perfil"; +$a->strings["Delete this profile"] = "Eliminar este perfil"; +$a->strings["Basic information"] = "Información básica"; +$a->strings["Profile picture"] = "Imagen del perfil"; +$a->strings["Preferences"] = "Preferencias"; +$a->strings["Status information"] = "Información del estatus"; +$a->strings["Additional information"] = "Información addicional"; +$a->strings["Relation"] = "Relación"; +$a->strings["Your Gender:"] = "Género:"; +$a->strings[" Marital Status:"] = " Estado civil:"; +$a->strings["Example: fishing photography software"] = "Ejemplo: pesca fotografía software"; +$a->strings["Profile Name:"] = "Nombres del perfil:"; +$a->strings["Required"] = "Obligatorio"; +$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Éste es tu perfil público.
Puede ser visto por cualquier usuario de internet."; +$a->strings["Your Full Name:"] = "Tu nombre completo:"; +$a->strings["Title/Description:"] = "Título/Descrición:"; +$a->strings["Street Address:"] = "Dirección"; +$a->strings["Locality/City:"] = "Localidad/Ciudad:"; +$a->strings["Region/State:"] = "Región/Estado:"; +$a->strings["Postal/Zip Code:"] = "Código postal:"; +$a->strings["Country:"] = "País"; +$a->strings["Who: (if applicable)"] = "¿Quién? (si es aplicable)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Ejemplos: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Desde [fecha]:"; +$a->strings["Tell us about yourself..."] = "Háblanos sobre ti..."; +$a->strings["XMPP (Jabber) address:"] = "Dirección XMPP (Jabber):"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "La dirección XMPP será propagada entre sus contactos para que puedan seguirle."; +$a->strings["Homepage URL:"] = "Dirección de tu página:"; +$a->strings["Religious Views:"] = "Creencias religiosas:"; +$a->strings["Public Keywords:"] = "Palabras clave públicas:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)"; +$a->strings["Private Keywords:"] = "Palabras clave privadas:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilizadas para buscar perfiles, nunca se muestra a otros)"; +$a->strings["Musical interests"] = "Gustos musicales"; +$a->strings["Books, literature"] = "Libros, literatura"; +$a->strings["Television"] = "Televisión"; +$a->strings["Film/dance/culture/entertainment"] = "Películas/baile/cultura/entretenimiento"; +$a->strings["Hobbies/Interests"] = "Aficiones/Intereses"; +$a->strings["Love/romance"] = "Amor/Romance"; +$a->strings["Work/employment"] = "Trabajo/ocupación"; +$a->strings["School/education"] = "Escuela/estudios"; +$a->strings["Contact information and Social Networks"] = "Informacioń de contacto y Redes sociales"; +$a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfiles"; +$a->strings["No friends to display."] = "No hay amigos para mostrar."; +$a->strings["Access to this profile has been restricted."] = "El acceso a este perfil ha sido restringido."; $a->strings["View"] = "Vista"; -$a->strings["Create New Event"] = "Crea un evento nuevo"; $a->strings["Previous"] = "Previo"; $a->strings["Next"] = "Siguiente"; $a->strings["list"] = "lista"; +$a->strings["User not found"] = "Usuario no encontrado"; +$a->strings["This calendar format is not supported"] = "Este formato de calendario no se soporta"; +$a->strings["No exportable data found"] = "No se ha encontrado información exportable"; +$a->strings["calendar"] = "calendario"; +$a->strings["No contacts in common."] = "Sin contactos en común."; +$a->strings["Common Friends"] = "Amigos comunes"; +$a->strings["Not available."] = "No disponible"; +$a->strings["Global Directory"] = "Directorio global"; +$a->strings["Find on this site"] = "Buscar en este sitio"; +$a->strings["Results for:"] = "Resultados para:"; +$a->strings["Site Directory"] = "Directorio del sitio"; +$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas)."; +$a->strings["People Search - %s"] = "Buscar perfiles - %s"; +$a->strings["Forum Search - %s"] = "Búsqueda de foro - %s"; +$a->strings["No matches"] = "Sin conincidencias"; +$a->strings["Item has been removed."] = "El elemento ha sido eliminado."; +$a->strings["Event can not end before it has started."] = "Un evento no puede terminar antes de su comienzo."; +$a->strings["Event title and start time are required."] = "Título del evento y hora de inicio requeridas."; +$a->strings["Create New Event"] = "Crea un evento nuevo"; $a->strings["Event details"] = "Detalles del evento"; $a->strings["Starting date and Title are required."] = "Se requiere fecha de comienzo y titulo"; $a->strings["Event Starts:"] = "Inicio del evento:"; -$a->strings["Required"] = "Obligatorio"; $a->strings["Finish date/time is not known or not relevant"] = "La fecha/hora de finalización no es conocida o es irrelevante."; $a->strings["Event Finishes:"] = "Finalización del evento:"; $a->strings["Adjust for viewer timezone"] = "Ajuste de zona horaria"; $a->strings["Description:"] = "Descripción:"; $a->strings["Title:"] = "Título:"; $a->strings["Share this event"] = "Comparte este evento"; -$a->strings["Global Directory"] = "Directorio global"; -$a->strings["Find on this site"] = "Buscar en este sitio"; -$a->strings["Results for:"] = "Resultados para:"; -$a->strings["Site Directory"] = "Directorio del sitio"; -$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas)."; -$a->strings["OpenID protocol error. No ID returned."] = "Error de protocolo OpenID. ID no devuelta."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Cuenta no encontrada y el registro OpenID no está permitido en ese sitio."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor."; -$a->strings["Import"] = "Importar"; -$a->strings["Move account"] = "Mover cuenta"; -$a->strings["You can import an account from another Friendica server."] = "Puedes importar una cuenta desde otro servidor de Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Esta característica es experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*"; -$a->strings["Account file"] = "Archivo de la cuenta"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar el perfil vaya a \"Configuracion -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\""; -$a->strings["Visit %s's profile [%s]"] = "Ver el perfil de %s [%s]"; -$a->strings["Edit contact"] = "Modificar contacto"; -$a->strings["Contacts who are not members of a group"] = "Contactos sin grupo"; +$a->strings["System down for maintenance"] = "Servicio suspendido por mantenimiento"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado."; $a->strings["is interested in:"] = "estás interesado en:"; $a->strings["Profile Match"] = "Coincidencias de Perfil"; -$a->strings["Export account"] = "Exportar cuenta"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor."; -$a->strings["Export all"] = "Exportar todo"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exporta la información de tu cuenta, contactos y lo demás en JSON. Puede ser un archivo bastante grande, por lo que llevará tiempo. Úsalo para hacer una copia de seguridad completa de tu cuenta (las fotos no se exportarán)"; -$a->strings["Export personal data"] = "Exportación de datos personales"; -$a->strings["Total invitation limit exceeded."] = "Límite total de invitaciones excedido."; -$a->strings["%s : Not a valid email address."] = "%s : No es una dirección de correo válida."; -$a->strings["Please join us on Friendica"] = "Únete a nosotros en Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio."; -$a->strings["%s : Message delivery failed."] = "%s : Ha fallado la entrega del mensaje."; -$a->strings["%d message sent."] = array( - 0 => "%d mensaje enviado.", - 1 => "%d mensajes enviados.", -); -$a->strings["You have no more invitations available"] = "No tienes más invitaciones disponibles"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros."; -$a->strings["Send invitations"] = "Enviar invitaciones"; -$a->strings["Enter email addresses, one per line:"] = "Introduce las direcciones de correo, una por línea:"; -$a->strings["Your message:"] = "Tu mensaje:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Tienes que proporcionar el siguiente código: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para más información sobre el Proyecto Friendica y sobre por qué pensamos que es algo importante, visita http://friendica.com"; -$a->strings["Files"] = "Archivos"; -$a->strings["System down for maintenance"] = "Servicio suspendido por mantenimiento"; -$a->strings["Invalid profile identifier."] = "Identificador de perfil no válido."; -$a->strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -$a->strings["Click on a contact to add or remove."] = "Pulsa en un contacto para añadirlo o eliminarlo."; -$a->strings["Visible To"] = "Visible para"; -$a->strings["All Contacts (with secure profile access)"] = "Todos los contactos (con perfil de acceso seguro)"; -$a->strings["No contacts."] = "Ningún contacto."; -$a->strings["Contact settings applied."] = "Contacto configurado con éxito."; -$a->strings["Contact update failed."] = "Error al actualizar el Contacto."; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página."; -$a->strings["No mirroring"] = "No espejar"; -$a->strings["Mirror as forwarded posting"] = "Espejar como reenvio"; -$a->strings["Mirror as my own posting"] = "Espejar como publicación propia"; -$a->strings["Return to contact editor"] = "Volver al editor de contactos"; -$a->strings["Refetch contact data"] = "Volver a solicitar datos del contacto."; -$a->strings["Remote Self"] = "Perfil remoto"; -$a->strings["Mirror postings from this contact"] = "Espejar publicaciones de este contacto"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta."; -$a->strings["Name"] = "Nombre"; -$a->strings["Account Nickname"] = "Apodo de la cuenta"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Etiqueta - Sobrescribe el Nombre/Apodo"; -$a->strings["Account URL"] = "Dirección de la cuenta"; -$a->strings["Friend Request URL"] = "Dirección de la solicitud de amistad"; -$a->strings["Friend Confirm URL"] = "Dirección de confirmación de tu amigo "; -$a->strings["Notification Endpoint URL"] = "Dirección URL de la notificación"; -$a->strings["Poll/Feed URL"] = "Dirección del Sondeo/Fuentes"; -$a->strings["New photo from this URL"] = "Nueva foto de esta dirección"; -$a->strings["Tag removed"] = "Etiqueta eliminada"; -$a->strings["Remove Item Tag"] = "Eliminar etiqueta"; -$a->strings["Select a tag to remove: "] = "Selecciona una etiqueta para eliminar: "; -$a->strings["Remove"] = "Eliminar"; -$a->strings["{0} wants to be your friend"] = "{0} quiere ser tu amigo"; -$a->strings["{0} sent you a message"] = "{0} te ha enviado un mensaje"; -$a->strings["{0} requested registration"] = "{0} solicitudes de registro"; +$a->strings["Tips for New Members"] = "Consejos para nuevos miembros"; +$a->strings["Do you really want to delete this suggestion?"] = "¿Estás seguro de que quieres borrar esta sugerencia?"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas."; +$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]"; +$a->strings["Recent Photos"] = "Fotos recientes"; +$a->strings["Upload New Photos"] = "Subir nuevas fotos"; +$a->strings["everybody"] = "todos"; +$a->strings["Contact information unavailable"] = "Información del contacto no disponible"; +$a->strings["Album not found."] = "Álbum no encontrado."; +$a->strings["Delete Album"] = "Eliminar álbum"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "¿Estás seguro de quieres borrar este álbum y todas sus fotos?"; +$a->strings["Delete Photo"] = "Eliminar foto"; +$a->strings["Do you really want to delete this photo?"] = "¿Estás seguro de que quieres borrar esta foto?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s fue etiquetado en %2\$s por %3\$s"; +$a->strings["a photo"] = "una foto"; +$a->strings["Image file is empty."] = "El archivo de imagen está vacío."; +$a->strings["No photos selected"] = "Ninguna foto seleccionada"; +$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Has usado %1$.2f MB de %2$.2f MB de tu álbum de fotos."; +$a->strings["Upload Photos"] = "Subir fotos"; +$a->strings["New album name: "] = "Nombre del nuevo álbum: "; +$a->strings["or existing album name: "] = "o nombre de un álbum existente: "; +$a->strings["Do not show a status post for this upload"] = "No actualizar tu estado con este envío"; +$a->strings["Show to Groups"] = "Mostrar a los Grupos"; +$a->strings["Show to Contacts"] = "Mostrar a los Contactos"; +$a->strings["Private Photo"] = "Foto Privada"; +$a->strings["Public Photo"] = "Foto Pública"; +$a->strings["Edit Album"] = "Modificar álbum"; +$a->strings["Show Newest First"] = "Mostrar más nuevos primero"; +$a->strings["Show Oldest First"] = "Mostrar más antiguos primero"; +$a->strings["View Photo"] = "Ver foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; +$a->strings["Photo not available"] = "Foto no disponible"; +$a->strings["View photo"] = "Ver foto"; +$a->strings["Edit photo"] = "Modificar foto"; +$a->strings["Use as profile photo"] = "Usar como foto del perfil"; +$a->strings["View Full Size"] = "Ver a tamaño completo"; +$a->strings["Tags: "] = "Etiquetas: "; +$a->strings["[Remove any tag]"] = "[Borrar todas las etiquetas]"; +$a->strings["New album name"] = "Nuevo nombre del álbum"; +$a->strings["Caption"] = "Título"; +$a->strings["Add a Tag"] = "Añadir una etiqueta"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "No rotar"; +$a->strings["Rotate CW (right)"] = "Girar a la derecha"; +$a->strings["Rotate CCW (left)"] = "Girar a la izquierda"; +$a->strings["Private photo"] = "Foto privada"; +$a->strings["Public photo"] = "Foto pública"; +$a->strings["Map"] = "Mapa"; +$a->strings["View Album"] = "Ver Álbum"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Te has registrado con éxito. Por favor, consulta tu correo para más información."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio."; +$a->strings["Registration successful."] = "Registro exitoso."; +$a->strings["Your registration can not be processed."] = "Tu registro no se puede procesar."; +$a->strings["Your registration is pending approval by the site owner."] = "Tu registro está pendiente de aprobación por el propietario del sitio."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos."; +$a->strings["Your OpenID (optional): "] = "Tu OpenID (opcional):"; +$a->strings["Include your profile in member directory?"] = "¿Incluir tu perfil en el directorio de miembros?"; +$a->strings["Note for the admin"] = "Nota para el administrador"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo"; +$a->strings["Membership on this site is by invitation only."] = "Sitio solo accesible mediante invitación."; +$a->strings["Your invitation ID: "] = "ID de tu invitación: "; +$a->strings["Registration"] = "Registro"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Nombre completo (ej. Joe Smith, real o real aparente):"; +$a->strings["Your Email Address: "] = "Tu dirección de correo: "; +$a->strings["New Password:"] = "Contraseña nueva:"; +$a->strings["Leave empty for an auto generated password."] = "Dejar vacío para autogenerar una contraseña"; +$a->strings["Confirm:"] = "Confirmar:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@\$nombredelsitio\"."; +$a->strings["Choose a nickname: "] = "Escoge un apodo: "; +$a->strings["Import your profile to this friendica instance"] = "Importar tu perfil a esta instancia de friendica"; +$a->strings["Account"] = "Cuenta"; +$a->strings["Additional features"] = "Características adicionales"; +$a->strings["Display"] = "Interfaz del usuario"; +$a->strings["Social Networks"] = "Redes sociales"; +$a->strings["Plugins"] = "Módulos"; +$a->strings["Connected apps"] = "Aplicaciones conectadas"; +$a->strings["Remove account"] = "Eliminar cuenta"; +$a->strings["Missing some important data!"] = "¡Faltan algunos datos importantes!"; +$a->strings["Update"] = "Actualizar"; +$a->strings["Failed to connect with email account using the settings provided."] = "Error al conectar con la cuenta de correo mediante la configuración suministrada."; +$a->strings["Email settings updated."] = "Configuración de correo actualizada."; +$a->strings["Features updated"] = "Actualizaciones"; +$a->strings["Relocate message has been send to your contacts"] = "Mensaje de reubicación ha sido enviado a sus contactos."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no ha sido modificada."; +$a->strings["Wrong password."] = "Contraseña incorrecta"; +$a->strings["Password changed."] = "Contraseña modificada."; +$a->strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, prueba otra vez."; +$a->strings[" Please use a shorter name."] = " Usa un nombre más corto."; +$a->strings[" Name too short."] = " Nombre demasiado corto."; +$a->strings["Wrong Password"] = "Contraseña incorrecta"; +$a->strings[" Not valid email."] = " Correo no válido."; +$a->strings[" Cannot change to that email."] = " No se puede usar ese correo."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad."; +$a->strings["Settings updated."] = "Configuración actualizada."; +$a->strings["Add application"] = "Agregar aplicación"; +$a->strings["Save Settings"] = "Guardar configuración"; +$a->strings["Consumer Key"] = "Clave del consumidor"; +$a->strings["Consumer Secret"] = "Secreto del consumidor"; +$a->strings["Redirect"] = "Redirigir"; +$a->strings["Icon url"] = "Dirección del ícono"; +$a->strings["You can't edit this application."] = "No puedes editar esta aplicación."; +$a->strings["Connected Apps"] = "Aplicaciones conectadas"; +$a->strings["Client key starts with"] = "Clave de cliente comienza por"; +$a->strings["No name"] = "Sin nombre"; +$a->strings["Remove authorization"] = "Suprimir la autorización"; +$a->strings["No Plugin settings configured"] = "No se ha configurado ningún módulo"; +$a->strings["Plugin Settings"] = "Configuración de los módulos"; +$a->strings["Off"] = "Apagado"; +$a->strings["On"] = "Encendido"; +$a->strings["Additional Features"] = "Características adicionales"; +$a->strings["General Social Media Settings"] = "Configuración general de social media "; +$a->strings["Disable intelligent shortening"] = "Deshabilitar recorte inteligente de URL"; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica."; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones "; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario."; +$a->strings["Default group for OStatus contacts"] = "Grupo por defecto para contactos OStatus"; +$a->strings["Your legacy GNU Social account"] = "Tu cuenta GNU social conectada"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Si agrega su viejo nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. "; +$a->strings["Repair OStatus subscriptions"] = "Reparar subscripciones de OStatus"; +$a->strings["Built-in support for %s connectivity is %s"] = "El soporte integrado de conexión con %s está %s"; +$a->strings["enabled"] = "habilitado"; +$a->strings["disabled"] = "deshabilitado"; +$a->strings["GNU Social (OStatus)"] = "GNUsocial (OStatus)"; +$a->strings["Email access is disabled on this site."] = "El acceso por correo está deshabilitado en esta web."; +$a->strings["Email/Mailbox Setup"] = "Configuración del correo/buzón"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón."; +$a->strings["Last successful email check:"] = "Última comprobación del correo con éxito:"; +$a->strings["IMAP server name:"] = "Nombre del servidor IMAP:"; +$a->strings["IMAP port:"] = "Puerto IMAP:"; +$a->strings["Security:"] = "Seguridad:"; +$a->strings["None"] = "Ninguna"; +$a->strings["Email login name:"] = "Nombre de usuario:"; +$a->strings["Email password:"] = "Contraseña:"; +$a->strings["Reply-to address:"] = "Dirección de respuesta:"; +$a->strings["Send public posts to all email contacts:"] = "Enviar publicaciones públicas a todos los contactos de correo:"; +$a->strings["Action after import:"] = "Acción después de importar:"; +$a->strings["Move to folder"] = "Mover a un directorio"; +$a->strings["Move to folder:"] = "Mover al directorio:"; +$a->strings["No special theme for mobile devices"] = "No hay tema especial para dispositivos móviles"; +$a->strings["Display Settings"] = "Configuración Tema/Visualización"; +$a->strings["Display Theme:"] = "Utilizar tema:"; +$a->strings["Mobile Theme:"] = "Tema móvil:"; +$a->strings["Suppress warning of insecure networks"] = "Suprimir el aviso de redes inseguras"; +$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas."; +$a->strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimo 10 segundos. Ingrese -1 para deshabilitar."; +$a->strings["Number of items to display per page:"] = "Número de elementos a mostrar por página:"; +$a->strings["Maximum of 100 items"] = "Máximo 100 elementos"; +$a->strings["Number of items to display per page when viewed from mobile device:"] = "Cantidad de objetos a visualizar cuando se usa un movil"; +$a->strings["Don't show emoticons"] = "No mostrar emoticones"; +$a->strings["Calendar"] = "Calendario"; +$a->strings["Beginning of week:"] = "Principio de la semana:"; +$a->strings["Don't show notices"] = "No mostrara avisos"; +$a->strings["Infinite scroll"] = "pagina infinita (sroll)"; +$a->strings["Automatic updates only at the top of the network page"] = "Actualizaciones automaticas solo estando al principio de la pagina"; +$a->strings["Bandwith Saver Mode"] = "Modo de guardado de ancho de banda"; +$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas."; +$a->strings["General Theme Settings"] = "Ajustes generales de tema"; +$a->strings["Custom Theme Settings"] = "Ajustes personalizados de tema"; +$a->strings["Content Settings"] = "Ajustes de contenido"; +$a->strings["Theme settings"] = "Configuración del Tema"; +$a->strings["Account Types"] = "Tipos de cuenta"; +$a->strings["Personal Page Subtypes"] = "Subtipos de página personal"; +$a->strings["Community Forum Subtypes"] = "Subtipos de foro de comunidad"; +$a->strings["Personal Page"] = "Página personal"; +$a->strings["This account is a regular personal profile"] = "Esta cuenta es un perfil personal corriente"; +$a->strings["Organisation Page"] = "Página de organización"; +$a->strings["This account is a profile for an organisation"] = "Esta cuenta es un perfil de una organización"; +$a->strings["News Page"] = "Página de noticias"; +$a->strings["This account is a news account/reflector"] = "Esta cuenta es una cuenta de noticias/reflectora"; +$a->strings["Community Forum"] = "Foro de la comunidad"; +$a->strings["This account is a community forum where people can discuss with each other"] = "Esta cuenta es un foro de comunidad donde la gente puede debatir con otros"; +$a->strings["Normal Account Page"] = "Página de cuenta normal"; +$a->strings["This account is a normal personal profile"] = "Esta cuenta es el perfil personal normal"; +$a->strings["Soapbox Page"] = "Página de tribuna"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de solo-lectura"; +$a->strings["Public Forum"] = "Foro público"; +$a->strings["Automatically approve all contact requests"] = "Aprovar autimáticamente todas las solicitudes de contacto"; +$a->strings["Automatic Friend Page"] = "Página de Amistad autómatica"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Aceptar automáticamente todas las solicitudes de conexión/amistad como amigos"; +$a->strings["Private Forum [Experimental]"] = "Foro privado [Experimental]"; +$a->strings["Private forum - approved members only"] = "Foro privado - solo miembros"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir a este OpenID acceder a esta cuenta."; +$a->strings["Publish your default profile in your local site directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?"; +$a->strings["Publish your default profile in the global social directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?"; +$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Si habilitado, enviar temas públicos a a Diaspora* y otras redes no es posible. "; +$a->strings["Allow friends to post to your profile page?"] = "¿Permites que tus amigos publiquen en tu página de perfil?"; +$a->strings["Allow friends to tag your posts?"] = "¿Permites a los amigos etiquetar tus publicaciones?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?"; +$a->strings["Permit unknown people to send you private mail?"] = "¿Permites que desconocidos te manden correos privados?"; +$a->strings["Profile is not published."] = "El perfil no está publicado."; +$a->strings["Your Identity Address is '%s' or '%s'."] = "Su dirección de identidad es '%s' o '%s'."; +$a->strings["Automatically expire posts after this many days:"] = "Las publicaciones expirarán automáticamente después de estos días:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán"; +$a->strings["Advanced expiration settings"] = "Configuración avanzada de expiración"; +$a->strings["Advanced Expiration"] = "Expiración avanzada"; +$a->strings["Expire posts:"] = "¿Expiran las publicaciones?"; +$a->strings["Expire personal notes:"] = "¿Expiran las notas personales?"; +$a->strings["Expire starred posts:"] = "¿Expiran los favoritos?"; +$a->strings["Expire photos:"] = "¿Expiran las fotografías?"; +$a->strings["Only expire posts by others:"] = "Solo expiran los mensajes de los demás:"; +$a->strings["Account Settings"] = "Configuración de la cuenta"; +$a->strings["Password Settings"] = "Configuración de la contraseña"; +$a->strings["Leave password fields blank unless changing"] = "Deja la contraseña en blanco si no quieres cambiarla"; +$a->strings["Current Password:"] = "Contraseña actual:"; +$a->strings["Your current password to confirm the changes"] = "Su contraseña actual para confirmar los cambios."; +$a->strings["Password:"] = "Contraseña:"; +$a->strings["Basic Settings"] = "Configuración básica"; +$a->strings["Email Address:"] = "Dirección de correo:"; +$a->strings["Your Timezone:"] = "Zona horaria:"; +$a->strings["Your Language:"] = "Tu idioma:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo."; +$a->strings["Default Post Location:"] = "Localización predeterminada:"; +$a->strings["Use Browser Location:"] = "Usar localización del navegador:"; +$a->strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; +$a->strings["Maximum Friend Requests/Day:"] = "Máximo número de peticiones de amistad por día:"; +$a->strings["(to prevent spam abuse)"] = "(para prevenir el abuso de spam)"; +$a->strings["Default Post Permissions"] = "Permisos por defecto para las publicaciones"; +$a->strings["(click to open/close)"] = "(pulsa para abrir/cerrar)"; +$a->strings["Default Private Post"] = "Publicación Privada por defecto"; +$a->strings["Default Public Post"] = "Publicación Pública por defecto"; +$a->strings["Default Permissions for New Posts"] = "Permisos por defecto para nuevas publicaciones"; +$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensajes diarios para desconocidos:"; +$a->strings["Notification Settings"] = "Configuración de notificaciones"; +$a->strings["By default post a status message when:"] = "Publicar en tu estado cuando:"; +$a->strings["accepting a friend request"] = "aceptes una solicitud de amistad"; +$a->strings["joining a forum/community"] = "te unas a un foro/comunidad"; +$a->strings["making an interesting profile change"] = "hagas un cambio interesante en tu perfil"; +$a->strings["Send a notification email when:"] = "Enviar notificación por correo cuando:"; +$a->strings["You receive an introduction"] = "Recibas una presentación"; +$a->strings["Your introductions are confirmed"] = "Tu presentación sea confirmada"; +$a->strings["Someone writes on your profile wall"] = "Alguien escriba en el muro de mi perfil"; +$a->strings["Someone writes a followup comment"] = "Algien escriba en un comentario que sigo"; +$a->strings["You receive a private message"] = "Recibas un mensaje privado"; +$a->strings["You receive a friend suggestion"] = "Recibas una sugerencia de amistad"; +$a->strings["You are tagged in a post"] = "Seas etiquetado en una publicación"; +$a->strings["You are poked/prodded/etc. in a post"] = "Te han tocado/empujado/etc. en una publicación"; +$a->strings["Activate desktop notifications"] = "Activar notificaciones en pantalla."; +$a->strings["Show desktop popup on new notifications"] = "Mostrar notificaciones emergentes en caso de nuevos eventos."; +$a->strings["Text-only notification emails"] = "Notificaciones e-mail de solo texto"; +$a->strings["Send text only notification emails, without the html part"] = "Enviar las notificaciones por correo con formato de solo texto sin html."; +$a->strings["Advanced Account/Page Type Settings"] = "Configuración avanzada de tipo de Cuenta/Página"; +$a->strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta para situaciones especiales"; +$a->strings["Relocate"] = "Relocalizar"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)"; +$a->strings["Resend relocate message to contacts"] = "Reenviar mensaje de relocalización a los contactos"; +$a->strings["Do you really want to delete this video?"] = "Realmente quieres eliminar este vídeo?"; +$a->strings["Delete Video"] = "Borrar vídeo"; +$a->strings["No videos selected"] = "Ningún vídeo seleccionado"; +$a->strings["Recent Videos"] = "Vídeos recientes"; +$a->strings["Upload New Videos"] = "Subir nuevos vídeos"; +$a->strings["Invalid request."] = "Consulta invalida"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."; +$a->strings["Or - did you try to upload an empty file?"] = "Si no - intento de subir un archivo vacío?"; +$a->strings["File exceeds size limit of %s"] = "El archivo excede el limite de tamaño de %s"; +$a->strings["File upload failed."] = "Ha fallado la subida del archivo."; $a->strings["Theme settings updated."] = "Configuración de la apariencia actualizada."; $a->strings["Site"] = "Sitio"; $a->strings["Users"] = "Usuarios"; -$a->strings["Plugins"] = "Módulos"; $a->strings["Themes"] = "Temas"; -$a->strings["Additional features"] = "Características adicionales"; $a->strings["DB updates"] = "Actualizaciones de la Base de Datos"; $a->strings["Inspect Queue"] = "Inspeccionar cola"; $a->strings["Federation Statistics"] = "Estadísticas de federación"; @@ -988,7 +1492,6 @@ $a->strings["Active plugins"] = "Módulos activos"; $a->strings["Can not parse base url. Must have at least ://"] = "No se puede resolver la direccion URL base.\nDeberá tener al menos ://"; $a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 precisa la extensión mcrypt para funcionar. "; $a->strings["Site settings updated."] = "Configuración de actualización."; -$a->strings["No special theme for mobile devices"] = "No hay tema especial para dispositivos móviles"; $a->strings["No community page"] = "No hay pagina de comunidad"; $a->strings["Public postings from users of this site"] = "Temas públicos de perfiles de este sitio."; $a->strings["Global community page"] = "Pagina global de comunidad"; @@ -1008,8 +1511,6 @@ $a->strings["Open"] = "Abierto"; $a->strings["No SSL policy, links will track page SSL state"] = "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página"; $a->strings["Force all links to use SSL"] = "Forzar todos los enlaces a utilizar SSL"; $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificación personal, usa SSL solo para enlaces locales (no recomendado)"; -$a->strings["Save Settings"] = "Guardar configuración"; -$a->strings["Registration"] = "Registro"; $a->strings["File upload"] = "Subida de archivo"; $a->strings["Policies"] = "Políticas"; $a->strings["Auto Discovered Contact Directory"] = "Directorio de contactos descubierto automáticamente"; @@ -1170,7 +1671,7 @@ $a->strings["Enable this if your system doesn't allow the use of 'proc_open'. Th $a->strings["Enable fastlane"] = "Habilitar ascenso rápido"; $a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad."; $a->strings["Enable frontend worker"] = "Habilitar trabajador de interfaz"; -$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = ""; +$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "Cuando está habilitado, el proceso de Trabajador se activa cuando se ejecuta el acceso de respaldo (ej. mensajes siendo entregados). En páginas más pequeñas usted puede querer llamar a yourdomain.tld/worker en una base regular mediante un trabajo cron externo. Sólo debería habilitar esta opción si no puede utilizar trabajos cron/scheduled en su servidor. El proceso de trabajador en segundo plano necesita ser activado para eso."; $a->strings["Update has been marked successful"] = "La actualización se ha completado con éxito"; $a->strings["Database structure update %s was successfully applied."] = "Actualización de base de datos %s fue aplicada con éxito."; $a->strings["Executing of database structure update %s failed with error: %s"] = "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s"; @@ -1200,7 +1701,6 @@ $a->strings["User '%s' blocked"] = "Usuario '%s' bloqueado'"; $a->strings["Register date"] = "Fecha de registro"; $a->strings["Last login"] = "Último acceso"; $a->strings["Last item"] = "Último elemento"; -$a->strings["Account"] = "Cuenta"; $a->strings["Add User"] = "Agregar usuario"; $a->strings["select all"] = "seleccionar todo"; $a->strings["User registrations waiting for confirm"] = "Registro de usuarios esperando confirmación"; @@ -1246,206 +1746,148 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve $a->strings["Log level"] = "Nivel de registro"; $a->strings["PHP logging"] = "PHP logging"; $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Para habilitar la documentación de los errores PHP y las advertencias se puede agregar lo siguiente al archivo .htconfig.php de la instalación (ftp). La dirección definido en el 'error_log' es relativo al directorio friendica principal (top-level directory) y debe de ser habilitado para la escritura por el servidor web. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, '0' para deshabilitarlo."; -$a->strings["Off"] = "Apagado"; -$a->strings["On"] = "Encendido"; $a->strings["Lock feature %s"] = "Trancar opción %s "; $a->strings["Manage Additional Features"] = "Administrar opciones adicionales"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."; -$a->strings["Or - did you try to upload an empty file?"] = "Si no - intento de subir un archivo vacío?"; -$a->strings["File exceeds size limit of %s"] = "El archivo excede el limite de tamaño de %s"; -$a->strings["File upload failed."] = "Ha fallado la subida del archivo."; -$a->strings["No friends to display."] = "No hay amigos para mostrar."; -$a->strings["Access to this profile has been restricted."] = "El acceso a este perfil ha sido restringido."; -$a->strings["User not found"] = "Usuario no encontrado"; -$a->strings["This calendar format is not supported"] = "Este formato de calendario no se soporta"; -$a->strings["No exportable data found"] = "No se ha encontrado información exportable"; -$a->strings["calendar"] = "calendario"; -$a->strings["No such group"] = "Ningún grupo"; -$a->strings["Group is empty"] = "El grupo está vacío"; -$a->strings["Group: %s"] = "Grupo: %s"; -$a->strings["This entry was edited"] = "Esta entrada fue editada"; -$a->strings["%d comment"] = array( - 0 => "%d comentario", - 1 => "%d comentarios", +$a->strings["%d contact edited."] = array( + 0 => "%d contacto editado.", + 1 => "%d contacts edited.", ); -$a->strings["Private Message"] = "Mensaje privado"; -$a->strings["I like this (toggle)"] = "Me gusta esto (cambiar)"; -$a->strings["like"] = "me gusta"; -$a->strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; -$a->strings["dislike"] = "no me gusta"; -$a->strings["Share this"] = "Compartir esto"; -$a->strings["share"] = "compartir"; -$a->strings["This is you"] = "Este eres tú"; -$a->strings["Bold"] = "Negrita"; -$a->strings["Italic"] = "Cursiva"; -$a->strings["Underline"] = "Subrayado"; -$a->strings["Quote"] = "Cita"; -$a->strings["Code"] = "Código"; -$a->strings["Image"] = "Imagen"; -$a->strings["Link"] = "Enlace"; -$a->strings["Video"] = "Vídeo"; -$a->strings["Edit"] = "Editar"; -$a->strings["add star"] = "Añadir estrella"; -$a->strings["remove star"] = "Quitar estrella"; -$a->strings["toggle star status"] = "Añadir a destacados"; -$a->strings["starred"] = "marcados con estrellas"; -$a->strings["add tag"] = "añadir etiqueta"; -$a->strings["ignore thread"] = "ignorar publicación"; -$a->strings["unignore thread"] = "revertir ignorar publicacion"; -$a->strings["toggle ignore status"] = "cambiar estatus de observación"; -$a->strings["ignored"] = "ignorado"; -$a->strings["save to folder"] = "grabado en directorio"; -$a->strings["I will attend"] = "Voy a estar presente"; -$a->strings["I will not attend"] = "No voy a estar presente"; -$a->strings["I might attend"] = "Puede que voy a estar presente"; -$a->strings["to"] = "a"; -$a->strings["Wall-to-Wall"] = "Muro-A-Muro"; -$a->strings["via Wall-To-Wall:"] = "via Muro-A-Muro:"; -$a->strings["Resubscribing to OStatus contacts"] = "Resubscribir a contactos de OStatus"; -$a->strings["Error"] = "error"; -$a->strings["Done"] = "hecho!"; -$a->strings["Keep this window open until done."] = "Mantén esta ventana abierta hasta que el proceso ha terminado."; -$a->strings["No potential page delegates located."] = "No se han localizado delegados potenciales de la página."; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente."; -$a->strings["Existing Page Managers"] = "Administradores actuales de la página"; -$a->strings["Existing Page Delegates"] = "Delegados actuales de la página"; -$a->strings["Potential Delegates"] = "Delegados potenciales"; -$a->strings["Add"] = "Añadir"; -$a->strings["No entries."] = "Sin entradas."; -$a->strings["Do you really want to delete this video?"] = "Realmente quieres eliminar este vídeo?"; -$a->strings["Delete Video"] = "Borrar vídeo"; -$a->strings["No videos selected"] = "Ningún vídeo seleccionado"; -$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; -$a->strings["View Album"] = "Ver Álbum"; -$a->strings["Recent Videos"] = "Vídeos recientes"; -$a->strings["Upload New Videos"] = "Subir nuevos vídeos"; -$a->strings["Profile deleted."] = "Perfil eliminado."; -$a->strings["Profile-"] = "Perfil-"; -$a->strings["New profile created."] = "Nuevo perfil creado."; -$a->strings["Profile unavailable to clone."] = "Imposible duplicar el perfil."; -$a->strings["Profile Name is required."] = "Se necesita un nombre de perfil."; -$a->strings["Marital Status"] = "Estado civil"; -$a->strings["Romantic Partner"] = "Pareja sentimental"; -$a->strings["Work/Employment"] = "Trabajo/estudios"; -$a->strings["Religion"] = "Religión"; -$a->strings["Political Views"] = "Preferencias políticas"; -$a->strings["Gender"] = "Género"; -$a->strings["Sexual Preference"] = "Orientación sexual"; -$a->strings["XMPP"] = "XMPP"; -$a->strings["Homepage"] = "Página de inicio"; -$a->strings["Interests"] = "Intereses"; -$a->strings["Address"] = "Dirección"; -$a->strings["Location"] = "Ubicación"; -$a->strings["Profile updated."] = "Perfil actualizado."; -$a->strings[" and "] = " y "; -$a->strings["public profile"] = "perfil público"; -$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s cambió su %2\$s a “%3\$s”"; -$a->strings[" - Visit %1\$s's %2\$s"] = " - Visita %1\$s's %2\$s"; -$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s tiene una actualización %2\$s, cambiando %3\$s."; -$a->strings["Hide contacts and friends:"] = "Ocultar contactos y amigos"; -$a->strings["No"] = "No"; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "¿Ocultar tu lista de contactos/amigos en este perfil?"; -$a->strings["Show more profile fields:"] = "Mostrar mas campos del perfil:"; -$a->strings["Profile Actions"] = "Acciones de perfil"; -$a->strings["Edit Profile Details"] = "Editar detalles de tu perfil"; -$a->strings["Change Profile Photo"] = "Cambiar imagen del Perfil"; -$a->strings["View this profile"] = "Ver este perfil"; -$a->strings["Create a new profile using these settings"] = "¿Crear un nuevo perfil con esta configuración?"; -$a->strings["Clone this profile"] = "Clonar este perfil"; -$a->strings["Delete this profile"] = "Eliminar este perfil"; -$a->strings["Basic information"] = "Información básica"; -$a->strings["Profile picture"] = "Imagen del perfil"; -$a->strings["Preferences"] = "Preferencias"; -$a->strings["Status information"] = "Información del estatus"; -$a->strings["Additional information"] = "Información addicional"; -$a->strings["Relation"] = "Relación"; -$a->strings["Upload Profile Photo"] = "Subir foto del Perfil"; -$a->strings["Your Gender:"] = "Género:"; -$a->strings[" Marital Status:"] = " Estado civil:"; -$a->strings["Example: fishing photography software"] = "Ejemplo: pesca fotografía software"; -$a->strings["Profile Name:"] = "Nombres del perfil:"; -$a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Éste es tu perfil público.
Puede ser visto por cualquier usuario de internet."; -$a->strings["Your Full Name:"] = "Tu nombre completo:"; -$a->strings["Title/Description:"] = "Título/Descrición:"; -$a->strings["Street Address:"] = "Dirección"; -$a->strings["Locality/City:"] = "Localidad/Ciudad:"; -$a->strings["Region/State:"] = "Región/Estado:"; -$a->strings["Postal/Zip Code:"] = "Código postal:"; -$a->strings["Country:"] = "País"; -$a->strings["Who: (if applicable)"] = "¿Quién? (si es aplicable)"; -$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Ejemplos: cathy123, Cathy Williams, cathy@example.com"; -$a->strings["Since [date]:"] = "Desde [fecha]:"; -$a->strings["Tell us about yourself..."] = "Háblanos sobre ti..."; -$a->strings["XMPP (Jabber) address:"] = "Dirección XMPP (Jabber):"; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "La dirección XMPP será propagada entre sus contactos para que puedan seguirle."; -$a->strings["Homepage URL:"] = "Dirección de tu página:"; -$a->strings["Religious Views:"] = "Creencias religiosas:"; -$a->strings["Public Keywords:"] = "Palabras clave públicas:"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)"; -$a->strings["Private Keywords:"] = "Palabras clave privadas:"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilizadas para buscar perfiles, nunca se muestra a otros)"; -$a->strings["Musical interests"] = "Gustos musicales"; -$a->strings["Books, literature"] = "Libros, literatura"; -$a->strings["Television"] = "Televisión"; -$a->strings["Film/dance/culture/entertainment"] = "Películas/baile/cultura/entretenimiento"; -$a->strings["Hobbies/Interests"] = "Aficiones/Intereses"; -$a->strings["Love/romance"] = "Amor/Romance"; -$a->strings["Work/employment"] = "Trabajo/ocupación"; -$a->strings["School/education"] = "Escuela/estudios"; -$a->strings["Contact information and Social Networks"] = "Informacioń de contacto y Redes sociales"; -$a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfiles"; -$a->strings["Credits"] = "Creditos"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! "; -$a->strings["- select -"] = "- seleccionar -"; -$a->strings["Poke/Prod"] = "Toque/Empujón"; -$a->strings["poke, prod or do other things to somebody"] = "da un toque, empujón o similar a alguien"; -$a->strings["Recipient"] = "Receptor"; -$a->strings["Choose what you wish to do to recipient"] = "Elige qué desea hacer con el receptor"; -$a->strings["Make this post private"] = "Hacer esta publicación privada"; -$a->strings["Recent Photos"] = "Fotos recientes"; -$a->strings["Upload New Photos"] = "Subir nuevas fotos"; -$a->strings["everybody"] = "todos"; -$a->strings["Contact information unavailable"] = "Información del contacto no disponible"; -$a->strings["Album not found."] = "Álbum no encontrado."; -$a->strings["Delete Album"] = "Eliminar álbum"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "¿Estás seguro de quieres borrar este álbum y todas sus fotos?"; -$a->strings["Delete Photo"] = "Eliminar foto"; -$a->strings["Do you really want to delete this photo?"] = "¿Estás seguro de que quieres borrar esta foto?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s fue etiquetado en %2\$s por %3\$s"; -$a->strings["a photo"] = "una foto"; -$a->strings["Image file is empty."] = "El archivo de imagen está vacío."; -$a->strings["No photos selected"] = "Ninguna foto seleccionada"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Has usado %1$.2f MB de %2$.2f MB de tu álbum de fotos."; -$a->strings["Upload Photos"] = "Subir fotos"; -$a->strings["New album name: "] = "Nombre del nuevo álbum: "; -$a->strings["or existing album name: "] = "o nombre de un álbum existente: "; -$a->strings["Do not show a status post for this upload"] = "No actualizar tu estado con este envío"; -$a->strings["Show to Groups"] = "Mostrar a los Grupos"; -$a->strings["Show to Contacts"] = "Mostrar a los Contactos"; -$a->strings["Private Photo"] = "Foto Privada"; -$a->strings["Public Photo"] = "Foto Pública"; -$a->strings["Edit Album"] = "Modificar álbum"; -$a->strings["Show Newest First"] = "Mostrar más nuevos primero"; -$a->strings["Show Oldest First"] = "Mostrar más antiguos primero"; -$a->strings["View Photo"] = "Ver foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; -$a->strings["Photo not available"] = "Foto no disponible"; -$a->strings["View photo"] = "Ver foto"; -$a->strings["Edit photo"] = "Modificar foto"; -$a->strings["Use as profile photo"] = "Usar como foto del perfil"; -$a->strings["View Full Size"] = "Ver a tamaño completo"; -$a->strings["Tags: "] = "Etiquetas: "; -$a->strings["[Remove any tag]"] = "[Borrar todas las etiquetas]"; -$a->strings["New album name"] = "Nuevo nombre del álbum"; -$a->strings["Caption"] = "Título"; -$a->strings["Add a Tag"] = "Añadir una etiqueta"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "No rotar"; -$a->strings["Rotate CW (right)"] = "Girar a la derecha"; -$a->strings["Rotate CCW (left)"] = "Girar a la izquierda"; -$a->strings["Private photo"] = "Foto privada"; -$a->strings["Public photo"] = "Foto pública"; -$a->strings["Map"] = "Mapa"; +$a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto."; +$a->strings["Could not locate selected profile."] = "No se pudo encontrar el perfil seleccionado."; +$a->strings["Contact updated."] = "Contacto actualizado."; +$a->strings["Failed to update contact record."] = "Error al actualizar el contacto."; +$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado"; +$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado"; +$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado"; +$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado"; +$a->strings["Contact has been archived"] = "El contacto ha sido archivado"; +$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado"; +$a->strings["Drop contact"] = "Eliminar contacto"; +$a->strings["Do you really want to delete this contact?"] = "¿Estás seguro de que quieres eliminar este contacto?"; +$a->strings["Contact has been removed."] = "El contacto ha sido eliminado"; +$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s"; +$a->strings["You are sharing with %s"] = "Estás compartiendo con %s"; +$a->strings["%s is sharing with you"] = "%s está compartiendo contigo"; +$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto."; +$a->strings["(Update was successful)"] = "(La actualización se ha completado)"; +$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)"; +$a->strings["Suggest friends"] = "Sugerir amigos"; +$a->strings["Network type: %s"] = "Tipo de red: %s"; +$a->strings["Communications lost with this contact!"] = "¡Se ha perdido la comunicación con este contacto!"; +$a->strings["Fetch further information for feeds"] = "Recaudar informacion complementaria de los feeds"; +$a->strings["Fetch information"] = "Recaudar informacion"; +$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves"; +$a->strings["Contact"] = "Contacto"; +$a->strings["Profile Visibility"] = "Visibilidad del Perfil"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura."; +$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas"; +$a->strings["Edit contact notes"] = "Editar notas del contacto"; +$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto"; +$a->strings["Ignore contact"] = "Ignorar contacto"; +$a->strings["Repair URL settings"] = "Configuración de reparación de la dirección"; +$a->strings["View conversations"] = "Ver conversaciones"; +$a->strings["Last update:"] = "Última actualización:"; +$a->strings["Update public posts"] = "Actualizar publicaciones públicas"; +$a->strings["Update now"] = "Actualizar ahora"; +$a->strings["Unignore"] = "Quitar de Ignorados"; +$a->strings["Currently blocked"] = "Bloqueados"; +$a->strings["Currently ignored"] = "Ignorados"; +$a->strings["Currently archived"] = "Archivados"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles."; +$a->strings["Notification for new posts"] = "Notificacion de nuevos temas."; +$a->strings["Send a notification of every new post of this contact"] = "Enviar una notificacion por nuevos temas de este contacto."; +$a->strings["Blacklisted keywords"] = "Lista negra de palabras"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado"; +$a->strings["Actions"] = "Acciones"; +$a->strings["Contact Settings"] = "Ajustes del contacto"; +$a->strings["Suggestions"] = "Sugerencias"; +$a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas"; +$a->strings["Show all contacts"] = "Mostrar todos los contactos"; +$a->strings["Unblocked"] = "Desbloqueados"; +$a->strings["Only show unblocked contacts"] = "Mostrar solo contactos sin bloquear"; +$a->strings["Blocked"] = "Bloqueados"; +$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados"; +$a->strings["Ignored"] = "Ignorados"; +$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados"; +$a->strings["Archived"] = "Archivados"; +$a->strings["Only show archived contacts"] = "Mostrar solo contactos archivados"; +$a->strings["Hidden"] = "Ocultos"; +$a->strings["Only show hidden contacts"] = "Mostrar solo contactos ocultos"; +$a->strings["Search your contacts"] = "Buscar en tus contactos"; +$a->strings["Archive"] = "Archivo"; +$a->strings["Unarchive"] = "Sin archivar"; +$a->strings["Batch Actions"] = "Accones en lote"; +$a->strings["View all contacts"] = "Ver todos los contactos"; +$a->strings["View all common friends"] = "Ver todos los conocidos en común "; +$a->strings["Advanced Contact Settings"] = "Configuración avanzada"; +$a->strings["Mutual Friendship"] = "Amistad recíproca"; +$a->strings["is a fan of yours"] = "es tu fan"; +$a->strings["you are a fan of"] = "eres fan de"; +$a->strings["Toggle Blocked status"] = "Cambiar bloqueados"; +$a->strings["Toggle Ignored status"] = "Cambiar ignorados"; +$a->strings["Toggle Archive status"] = "Cambiar archivados"; +$a->strings["Delete contact"] = "Eliminar contacto"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada."; +$a->strings["Response from remote site was not understood."] = "La respuesta desde el sitio remoto no ha sido entendida."; +$a->strings["Unexpected response from remote site: "] = "Respuesta inesperada desde el sitio remoto: "; +$a->strings["Confirmation completed successfully."] = "Confirmación completada con éxito."; +$a->strings["Remote site reported: "] = "El sito remoto informó: "; +$a->strings["Temporary failure. Please wait and try again."] = "Error temporal. Por favor, espere y vuelva a intentarlo."; +$a->strings["Introduction failed or was revoked."] = "La presentación ha fallado o ha sido anulada."; +$a->strings["Unable to set contact photo."] = "Imposible establecer la foto del contacto."; +$a->strings["No user record found for '%s' "] = "No se ha encontrado a ningún '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Nuestra clave de cifrado del sitio es aparentemente un lío."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Se ha proporcionado una dirección vacía o no hemos podido descifrarla."; +$a->strings["Contact record was not found for you on our site."] = "El contacto no se ha encontrado en nuestra base de datos."; +$a->strings["Site public key not available in contact record for URL %s."] = "La clave pública del sitio no está disponible en los datos del contacto para %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo."; +$a->strings["Unable to set your contact credentials on our system."] = "No se puede establecer las credenciales de tu contacto en nuestro sistema."; +$a->strings["Unable to update your contact profile details on our system"] = "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s se ha unido a %2\$s"; +$a->strings["This introduction has already been accepted."] = "Esta presentación ya ha sido aceptada."; +$a->strings["Profile location is not valid or does not contain profile information."] = "La dirección del perfil no es válida o no contiene información del perfil."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: La dirección del perfil no tiene un nombre de propietario identificable."; +$a->strings["Warning: profile location has no profile photo."] = "Aviso: la dirección del perfil no tiene foto de perfil."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "no se encontró %d parámetro requerido en el lugar determinado", + 1 => "no se encontraron %d parámetros requeridos en el lugar determinado", +); +$a->strings["Introduction complete."] = "Presentación completa."; +$a->strings["Unrecoverable protocol error."] = "Error de protocolo irrecuperable."; +$a->strings["Profile unavailable."] = "Perfil no disponible."; +$a->strings["%s has received too many connection requests today."] = "%s ha recibido demasiadas solicitudes de conexión hoy."; +$a->strings["Spam protection measures have been invoked."] = "Han sido activadas las medidas de protección contra spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas."; +$a->strings["Invalid locator"] = "Localizador no válido"; +$a->strings["Invalid email address."] = "Dirección de correo incorrecta"; +$a->strings["This account has not been configured for email. Request failed."] = "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud."; +$a->strings["You have already introduced yourself here."] = "Ya te has presentado aquí."; +$a->strings["Apparently you are already friends with %s."] = "Al parecer, ya eres amigo de %s."; +$a->strings["Invalid profile URL."] = "Dirección de perfil no válida."; +$a->strings["Your introduction has been sent."] = "Tu presentación ha sido enviada."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema."; +$a->strings["Please login to confirm introduction."] = "Inicia sesión para confirmar la presentación."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesión iniciada con la identificación incorrecta. Entra en este perfil."; +$a->strings["Confirm"] = "Confirmar"; +$a->strings["Hide this contact"] = "Ocultar este contacto"; +$a->strings["Welcome home %s."] = "Bienvenido a casa %s"; +$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirma tu solicitud de presentación/conexión con %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Si aun no eres miembro de la red social libre seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo"; +$a->strings["Friend/Connection Request"] = "Solicitud de Amistad/Conexión"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Por favor responde lo siguiente:"; +$a->strings["Does %s know you?"] = "¿%s te conoce?"; +$a->strings["Add a personal note:"] = "Añade una nota personal:"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Web Social Federada"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora."; +$a->strings["Your Identity Address:"] = "Dirección de tu perfil:"; +$a->strings["Submit Request"] = "Enviar solicitud"; +$a->strings["You already added this contact."] = "Ya has añadido este contacto."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "No se pudo detectar el tipo de red. Contacto no puede ser agregado."; +$a->strings["Contact added"] = "Contacto añadido"; $a->strings["Friendica Communications Server - Setup"] = "Servidor de comunicación Friendica - Configuración"; $a->strings["Could not connect to database."] = "No es posible la conexión con la base de datos."; $a->strings["Could not create table."] = "No se puede crear la tabla."; @@ -1516,151 +1958,19 @@ $a->strings["Note: as a security measure, you should give the web server write a $a->strings["view/smarty3 is writable"] = "Se puede escribir en /view/smarty3"; $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración."; $a->strings["Url rewrite is working"] = "Reescribiendo la dirección..."; +$a->strings["ImageMagick PHP extension is not installed"] = "No está instalada la extensión ImageMagick PHP"; $a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed"; $a->strings["ImageMagick supports GIF"] = "ImageMagick supporta GIF"; $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web."; $a->strings["

What next

"] = "

¿Ahora qué?

"; $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo las %3\$s de %2\$s"; -$a->strings["Item not available."] = "Elemento no disponible."; -$a->strings["Item was not found."] = "Elemento no encontrado."; -$a->strings["%d contact edited."] = array( - 0 => "%d contacto editado.", - 1 => "%d contacts edited.", -); -$a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto."; -$a->strings["Could not locate selected profile."] = "No se pudo encontrar el perfil seleccionado."; -$a->strings["Contact updated."] = "Contacto actualizado."; -$a->strings["Failed to update contact record."] = "Error al actualizar el contacto."; -$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado"; -$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado"; -$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado"; -$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado"; -$a->strings["Contact has been archived"] = "El contacto ha sido archivado"; -$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado"; -$a->strings["Drop contact"] = "Eliminar contacto"; -$a->strings["Do you really want to delete this contact?"] = "¿Estás seguro de que quieres eliminar este contacto?"; -$a->strings["Contact has been removed."] = "El contacto ha sido eliminado"; -$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s"; -$a->strings["You are sharing with %s"] = "Estás compartiendo con %s"; -$a->strings["%s is sharing with you"] = "%s está compartiendo contigo"; -$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto."; -$a->strings["(Update was successful)"] = "(La actualización se ha completado)"; -$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)"; -$a->strings["Suggest friends"] = "Sugerir amigos"; -$a->strings["Network type: %s"] = "Tipo de red: %s"; -$a->strings["Communications lost with this contact!"] = "¡Se ha perdido la comunicación con este contacto!"; -$a->strings["Fetch further information for feeds"] = "Recaudar informacion complementaria de los feeds"; -$a->strings["Fetch information"] = "Recaudar informacion"; -$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves"; -$a->strings["Contact"] = "Contacto"; -$a->strings["Profile Visibility"] = "Visibilidad del Perfil"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura."; -$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas"; -$a->strings["Edit contact notes"] = "Editar notas del contacto"; -$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto"; -$a->strings["Ignore contact"] = "Ignorar contacto"; -$a->strings["Repair URL settings"] = "Configuración de reparación de la dirección"; -$a->strings["View conversations"] = "Ver conversaciones"; -$a->strings["Last update:"] = "Última actualización:"; -$a->strings["Update public posts"] = "Actualizar publicaciones públicas"; -$a->strings["Update now"] = "Actualizar ahora"; -$a->strings["Unignore"] = "Quitar de Ignorados"; -$a->strings["Currently blocked"] = "Bloqueados"; -$a->strings["Currently ignored"] = "Ignorados"; -$a->strings["Currently archived"] = "Archivados"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles."; -$a->strings["Notification for new posts"] = "Notificacion de nuevos temas."; -$a->strings["Send a notification of every new post of this contact"] = "Enviar una notificacion por nuevos temas de este contacto."; -$a->strings["Blacklisted keywords"] = "Lista negra de palabras"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado"; -$a->strings["Actions"] = "Acciones"; -$a->strings["Contact Settings"] = "Ajustes del contacto"; -$a->strings["Suggestions"] = "Sugerencias"; -$a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas"; -$a->strings["All Contacts"] = "Todos los contactos"; -$a->strings["Show all contacts"] = "Mostrar todos los contactos"; -$a->strings["Unblocked"] = "Desbloqueados"; -$a->strings["Only show unblocked contacts"] = "Mostrar solo contactos sin bloquear"; -$a->strings["Blocked"] = "Bloqueados"; -$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados"; -$a->strings["Ignored"] = "Ignorados"; -$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados"; -$a->strings["Archived"] = "Archivados"; -$a->strings["Only show archived contacts"] = "Mostrar solo contactos archivados"; -$a->strings["Hidden"] = "Ocultos"; -$a->strings["Only show hidden contacts"] = "Mostrar solo contactos ocultos"; -$a->strings["Search your contacts"] = "Buscar en tus contactos"; -$a->strings["Update"] = "Actualizar"; -$a->strings["Archive"] = "Archivo"; -$a->strings["Unarchive"] = "Sin archivar"; -$a->strings["Batch Actions"] = "Accones en lote"; -$a->strings["View all contacts"] = "Ver todos los contactos"; -$a->strings["Common Friends"] = "Amigos comunes"; -$a->strings["View all common friends"] = "Ver todos los conocidos en común "; -$a->strings["Advanced Contact Settings"] = "Configuración avanzada"; -$a->strings["Mutual Friendship"] = "Amistad recíproca"; -$a->strings["is a fan of yours"] = "es tu fan"; -$a->strings["you are a fan of"] = "eres fan de"; -$a->strings["Toggle Blocked status"] = "Cambiar bloqueados"; -$a->strings["Toggle Ignored status"] = "Cambiar ignorados"; -$a->strings["Toggle Archive status"] = "Cambiar archivados"; -$a->strings["Delete contact"] = "Eliminar contacto"; -$a->strings["Submit Request"] = "Enviar solicitud"; -$a->strings["You already added this contact."] = "Ya has añadido este contacto."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "No se pudo detectar el tipo de red. Contacto no puede ser agregado."; -$a->strings["Please answer the following:"] = "Por favor responde lo siguiente:"; -$a->strings["Does %s know you?"] = "¿%s te conoce?"; -$a->strings["Add a personal note:"] = "Añade una nota personal:"; -$a->strings["Your Identity Address:"] = "Dirección de tu perfil:"; -$a->strings["Contact added"] = "Contacto añadido"; -$a->strings["Applications"] = "Aplicaciones"; -$a->strings["No installed applications."] = "Sin aplicaciones"; -$a->strings["Do you really want to delete this suggestion?"] = "¿Estás seguro de que quieres borrar esta sugerencia?"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas."; -$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; -$a->strings["Not Extended"] = "No extendido"; -$a->strings["Item has been removed."] = "El elemento ha sido eliminado."; -$a->strings["No contacts in common."] = "Sin contactos en común."; -$a->strings["Welcome to Friendica"] = "Bienvenido a Friendica "; -$a->strings["New Member Checklist"] = "Listado de nuevos miembros"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá."; -$a->strings["Getting Started"] = "Empezando"; -$a->strings["Friendica Walk-Through"] = "Visita guiada a Friendica"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte."; -$a->strings["Go to Your Settings"] = "Ir a tus ajustes"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo."; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no."; -$a->strings["Edit Your Profile"] = "Editar tu perfil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos."; -$a->strings["Profile Keywords"] = "Palabras clave del perfil"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos."; -$a->strings["Connecting"] = "Conectando"; -$a->strings["Importing Emails"] = "Importando correos electrónicos"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico."; -$a->strings["Go to Your Contacts Page"] = "Ir a tu página de contactos"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"."; -$a->strings["Go to Your Site's Directory"] = "Ir al directorio de tu sitio"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario."; -$a->strings["Finding New People"] = "Encontrando nueva gente"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas."; -$a->strings["Group Your Contacts"] = "Agrupa tus contactos"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red."; -$a->strings["Why Aren't My Posts Public?"] = "¿Por qué mis publicaciones no son públicas?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba."; -$a->strings["Getting Help"] = "Consiguiendo ayuda"; -$a->strings["Go to the Help Section"] = "Ir a la sección de ayuda"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda."; -$a->strings["Remove My Account"] = "Eliminar mi cuenta"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer."; -$a->strings["Please enter your password for verification:"] = "Por favor, introduce tu contraseña para la verificación:"; -$a->strings["Mood"] = "Ánimo"; -$a->strings["Set your current mood and tell your friends"] = "Coloca tu ánimo actual y cuéntaselo a tus amigos"; -$a->strings["Item not found"] = "Elemento no encontrado"; -$a->strings["Edit post"] = "Editar publicación"; +$a->strings["Unable to locate original post."] = "No se puede encontrar la publicación original."; +$a->strings["Empty post discarded."] = "Publicación vacía descartada."; +$a->strings["System error. Post not saved."] = "Error del sistema. Mensaje no guardado."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Este mensaje te lo ha enviado %s, miembro de la red social Friendica."; +$a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes."; +$a->strings["%s posted an update."] = "%s ha publicado una actualización."; $a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array( 0 => "Aviso: Este grupo contiene %s miembro de una red que no permite mensajes públicos.", 1 => "Aviso: Este grupo contiene %s miembros de una red que no permite mensajes públicos.", @@ -1679,328 +1989,10 @@ $a->strings["Shared Links"] = "Enlaces compartidos"; $a->strings["Interesting Links"] = "Enlaces interesantes"; $a->strings["Starred"] = "Favoritos"; $a->strings["Favourite Posts"] = "Publicaciones favoritas"; -$a->strings["Not available."] = "No disponible"; -$a->strings["Time Conversion"] = "Conversión horária"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofrece este servicio para compartir eventos con otros servidores de la red friendica y amigos en zonas de horarios desconocidos."; -$a->strings["UTC time: %s"] = "Tiempo UTC: %s"; -$a->strings["Current timezone: %s"] = "Zona horaria actual: %s"; -$a->strings["Converted localtime: %s"] = "Zona horaria local convertida: %s"; -$a->strings["Please select your timezone:"] = "Por favor, selecciona tu zona horaria:"; -$a->strings["The post was created"] = "La publicación fue creada"; -$a->strings["Group created."] = "Grupo creado."; -$a->strings["Could not create group."] = "Imposible crear el grupo."; -$a->strings["Group not found."] = "Grupo no encontrado."; -$a->strings["Group name changed."] = "El nombre del grupo ha cambiado."; -$a->strings["Save Group"] = "Guardar grupo"; -$a->strings["Create a group of contacts/friends."] = "Crea un grupo de contactos/amigos."; -$a->strings["Group removed."] = "Grupo eliminado."; -$a->strings["Unable to remove group."] = "No se puede eliminar el grupo."; -$a->strings["Group Editor"] = "Editor de grupos"; -$a->strings["Members"] = "Miembros"; -$a->strings["This introduction has already been accepted."] = "Esta presentación ya ha sido aceptada."; -$a->strings["Profile location is not valid or does not contain profile information."] = "La dirección del perfil no es válida o no contiene información del perfil."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: La dirección del perfil no tiene un nombre de propietario identificable."; -$a->strings["Warning: profile location has no profile photo."] = "Aviso: la dirección del perfil no tiene foto de perfil."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "no se encontró %d parámetro requerido en el lugar determinado", - 1 => "no se encontraron %d parámetros requeridos en el lugar determinado", -); -$a->strings["Introduction complete."] = "Presentación completa."; -$a->strings["Unrecoverable protocol error."] = "Error de protocolo irrecuperable."; -$a->strings["Profile unavailable."] = "Perfil no disponible."; -$a->strings["%s has received too many connection requests today."] = "%s ha recibido demasiadas solicitudes de conexión hoy."; -$a->strings["Spam protection measures have been invoked."] = "Han sido activadas las medidas de protección contra spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas."; -$a->strings["Invalid locator"] = "Localizador no válido"; -$a->strings["Invalid email address."] = "Dirección de correo incorrecta"; -$a->strings["This account has not been configured for email. Request failed."] = "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud."; -$a->strings["You have already introduced yourself here."] = "Ya te has presentado aquí."; -$a->strings["Apparently you are already friends with %s."] = "Al parecer, ya eres amigo de %s."; -$a->strings["Invalid profile URL."] = "Dirección de perfil no válida."; -$a->strings["Your introduction has been sent."] = "Tu presentación ha sido enviada."; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema."; -$a->strings["Please login to confirm introduction."] = "Inicia sesión para confirmar la presentación."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesión iniciada con la identificación incorrecta. Entra en este perfil."; -$a->strings["Confirm"] = "Confirmar"; -$a->strings["Hide this contact"] = "Ocultar este contacto"; -$a->strings["Welcome home %s."] = "Bienvenido a casa %s"; -$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirma tu solicitud de presentación/conexión con %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Si aun no eres miembro de la red social libre seguí este enlace para encontrara un sitio disponible de friendica y acompañanos hoy mismo"; -$a->strings["Friend/Connection Request"] = "Solicitud de Amistad/Conexión"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Web Social Federada"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora."; -$a->strings["Image uploaded but image cropping failed."] = "Imagen recibida, pero ha fallado al recortarla."; -$a->strings["Image size reduction [%s] failed."] = "Ha fallado la reducción de las dimensiones de la imagen [%s]."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente."; -$a->strings["Unable to process image"] = "Imposible procesar la imagen"; -$a->strings["Upload File:"] = "Subir archivo:"; -$a->strings["Select a profile:"] = "Elige un perfil:"; -$a->strings["Upload"] = "Subir"; -$a->strings["or"] = "o"; -$a->strings["skip this step"] = "saltar este paso"; -$a->strings["select a photo from your photo albums"] = "elige una foto de tus álbumes"; -$a->strings["Crop Image"] = "Recortar imagen"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajusta el recorte de la imagen para optimizarla."; -$a->strings["Done Editing"] = "Editado"; -$a->strings["Image uploaded successfully."] = "Imagen subida con éxito."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Te has registrado con éxito. Por favor, consulta tu correo para más información."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta:
login: %s
contraseña: %s

Puede cambiar su contraseña después de ingresar al sitio."; -$a->strings["Registration successful."] = "Registro exitoso."; -$a->strings["Your registration can not be processed."] = "Tu registro no se puede procesar."; -$a->strings["Your registration is pending approval by the site owner."] = "Tu registro está pendiente de aprobación por el propietario del sitio."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos."; -$a->strings["Your OpenID (optional): "] = "Tu OpenID (opcional):"; -$a->strings["Include your profile in member directory?"] = "¿Incluir tu perfil en el directorio de miembros?"; -$a->strings["Note for the admin"] = "Nota para el administrador"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo"; -$a->strings["Membership on this site is by invitation only."] = "Sitio solo accesible mediante invitación."; -$a->strings["Your invitation ID: "] = "ID de tu invitación: "; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Nombre completo (ej. Joe Smith, real o real aparente):"; -$a->strings["Your Email Address: "] = "Tu dirección de correo: "; -$a->strings["New Password:"] = "Contraseña nueva:"; -$a->strings["Leave empty for an auto generated password."] = "Dejar vacío para autogenerar una contraseña"; -$a->strings["Confirm:"] = "Confirmar:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@\$nombredelsitio\"."; -$a->strings["Choose a nickname: "] = "Escoge un apodo: "; -$a->strings["Import your profile to this friendica instance"] = "Importar tu perfil a esta instancia de friendica"; -$a->strings["Display"] = "Interfaz del usuario"; -$a->strings["Social Networks"] = "Redes sociales"; -$a->strings["Connected apps"] = "Aplicaciones conectadas"; -$a->strings["Remove account"] = "Eliminar cuenta"; -$a->strings["Missing some important data!"] = "¡Faltan algunos datos importantes!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Error al conectar con la cuenta de correo mediante la configuración suministrada."; -$a->strings["Email settings updated."] = "Configuración de correo actualizada."; -$a->strings["Features updated"] = "Actualizaciones"; -$a->strings["Relocate message has been send to your contacts"] = "Mensaje de reubicación ha sido enviado a sus contactos."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no ha sido modificada."; -$a->strings["Wrong password."] = "Contraseña incorrecta"; -$a->strings["Password changed."] = "Contraseña modificada."; -$a->strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, prueba otra vez."; -$a->strings[" Please use a shorter name."] = " Usa un nombre más corto."; -$a->strings[" Name too short."] = " Nombre demasiado corto."; -$a->strings["Wrong Password"] = "Contraseña incorrecta"; -$a->strings[" Not valid email."] = " Correo no válido."; -$a->strings[" Cannot change to that email."] = " No se puede usar ese correo."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad."; -$a->strings["Settings updated."] = "Configuración actualizada."; -$a->strings["Add application"] = "Agregar aplicación"; -$a->strings["Consumer Key"] = "Clave del consumidor"; -$a->strings["Consumer Secret"] = "Secreto del consumidor"; -$a->strings["Redirect"] = "Redirigir"; -$a->strings["Icon url"] = "Dirección del ícono"; -$a->strings["You can't edit this application."] = "No puedes editar esta aplicación."; -$a->strings["Connected Apps"] = "Aplicaciones conectadas"; -$a->strings["Client key starts with"] = "Clave de cliente comienza por"; -$a->strings["No name"] = "Sin nombre"; -$a->strings["Remove authorization"] = "Suprimir la autorización"; -$a->strings["No Plugin settings configured"] = "No se ha configurado ningún módulo"; -$a->strings["Plugin Settings"] = "Configuración de los módulos"; -$a->strings["Additional Features"] = "Características adicionales"; -$a->strings["General Social Media Settings"] = "Configuración general de social media "; -$a->strings["Disable intelligent shortening"] = "Deshabilitar recorte inteligente de URL"; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica."; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones "; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario."; -$a->strings["Default group for OStatus contacts"] = "Grupo por defecto para contactos OStatus"; -$a->strings["Your legacy GNU Social account"] = "Tu cuenta GNU social conectada"; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Si agrega su viejo nombre de perfil GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. "; -$a->strings["Repair OStatus subscriptions"] = "Reparar subscripciones de OStatus"; -$a->strings["Built-in support for %s connectivity is %s"] = "El soporte integrado de conexión con %s está %s"; -$a->strings["enabled"] = "habilitado"; -$a->strings["disabled"] = "deshabilitado"; -$a->strings["GNU Social (OStatus)"] = "GNUsocial (OStatus)"; -$a->strings["Email access is disabled on this site."] = "El acceso por correo está deshabilitado en esta web."; -$a->strings["Email/Mailbox Setup"] = "Configuración del correo/buzón"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón."; -$a->strings["Last successful email check:"] = "Última comprobación del correo con éxito:"; -$a->strings["IMAP server name:"] = "Nombre del servidor IMAP:"; -$a->strings["IMAP port:"] = "Puerto IMAP:"; -$a->strings["Security:"] = "Seguridad:"; -$a->strings["None"] = "Ninguna"; -$a->strings["Email login name:"] = "Nombre de usuario:"; -$a->strings["Email password:"] = "Contraseña:"; -$a->strings["Reply-to address:"] = "Dirección de respuesta:"; -$a->strings["Send public posts to all email contacts:"] = "Enviar publicaciones públicas a todos los contactos de correo:"; -$a->strings["Action after import:"] = "Acción después de importar:"; -$a->strings["Move to folder"] = "Mover a un directorio"; -$a->strings["Move to folder:"] = "Mover al directorio:"; -$a->strings["Display Settings"] = "Configuración Tema/Visualización"; -$a->strings["Display Theme:"] = "Utilizar tema:"; -$a->strings["Mobile Theme:"] = "Tema móvil:"; -$a->strings["Suppress warning of insecure networks"] = "Suprimir el aviso de redes inseguras"; -$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas."; -$a->strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimo 10 segundos. Ingrese -1 para deshabilitar."; -$a->strings["Number of items to display per page:"] = "Número de elementos a mostrar por página:"; -$a->strings["Maximum of 100 items"] = "Máximo 100 elementos"; -$a->strings["Number of items to display per page when viewed from mobile device:"] = "Cantidad de objetos a visualizar cuando se usa un movil"; -$a->strings["Don't show emoticons"] = "No mostrar emoticones"; -$a->strings["Calendar"] = "Calendario"; -$a->strings["Beginning of week:"] = "Principio de la semana:"; -$a->strings["Don't show notices"] = "No mostrara avisos"; -$a->strings["Infinite scroll"] = "pagina infinita (sroll)"; -$a->strings["Automatic updates only at the top of the network page"] = "Actualizaciones automaticas solo estando al principio de la pagina"; -$a->strings["Bandwith Saver Mode"] = "Modo de guardado de ancho de banda"; -$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas."; -$a->strings["General Theme Settings"] = "Ajustes generales de tema"; -$a->strings["Custom Theme Settings"] = "Ajustes personalizados de tema"; -$a->strings["Content Settings"] = "Ajustes de contenido"; -$a->strings["Theme settings"] = "Configuración del Tema"; -$a->strings["Account Types"] = "Tipos de cuenta"; -$a->strings["Personal Page Subtypes"] = "Subtipos de página personal"; -$a->strings["Community Forum Subtypes"] = "Subtipos de foro de comunidad"; -$a->strings["Personal Page"] = "Página personal"; -$a->strings["This account is a regular personal profile"] = "Esta cuenta es un perfil personal corriente"; -$a->strings["Organisation Page"] = "Página de organización"; -$a->strings["This account is a profile for an organisation"] = "Esta cuenta es un perfil de una organización"; -$a->strings["News Page"] = "Página de noticias"; -$a->strings["This account is a news account/reflector"] = "Esta cuenta es una cuenta de noticias/reflectora"; -$a->strings["Community Forum"] = "Foro de la comunidad"; -$a->strings["This account is a community forum where people can discuss with each other"] = "Esta cuenta es un foro de comunidad donde la gente puede debatir con otros"; -$a->strings["Normal Account Page"] = "Página de cuenta normal"; -$a->strings["This account is a normal personal profile"] = "Esta cuenta es el perfil personal normal"; -$a->strings["Soapbox Page"] = "Página de tribuna"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de solo-lectura"; -$a->strings["Public Forum"] = "Foro público"; -$a->strings["Automatically approve all contact requests"] = "Aprovar autimáticamente todas las solicitudes de contacto"; -$a->strings["Automatic Friend Page"] = "Página de Amistad autómatica"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Aceptar automáticamente todas las solicitudes de conexión/amistad como amigos"; -$a->strings["Private Forum [Experimental]"] = "Foro privado [Experimental]"; -$a->strings["Private forum - approved members only"] = "Foro privado - solo miembros"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir a este OpenID acceder a esta cuenta."; -$a->strings["Publish your default profile in your local site directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?"; -$a->strings["Publish your default profile in the global social directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?"; -$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Si habilitado, enviar temas públicos a a Diaspora* y otras redes no es posible. "; -$a->strings["Allow friends to post to your profile page?"] = "¿Permites que tus amigos publiquen en tu página de perfil?"; -$a->strings["Allow friends to tag your posts?"] = "¿Permites a los amigos etiquetar tus publicaciones?"; -$a->strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?"; -$a->strings["Permit unknown people to send you private mail?"] = "¿Permites que desconocidos te manden correos privados?"; -$a->strings["Profile is not published."] = "El perfil no está publicado."; -$a->strings["Your Identity Address is '%s' or '%s'."] = "Su dirección de identidad es '%s' o '%s'."; -$a->strings["Automatically expire posts after this many days:"] = "Las publicaciones expirarán automáticamente después de estos días:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán"; -$a->strings["Advanced expiration settings"] = "Configuración avanzada de expiración"; -$a->strings["Advanced Expiration"] = "Expiración avanzada"; -$a->strings["Expire posts:"] = "¿Expiran las publicaciones?"; -$a->strings["Expire personal notes:"] = "¿Expiran las notas personales?"; -$a->strings["Expire starred posts:"] = "¿Expiran los favoritos?"; -$a->strings["Expire photos:"] = "¿Expiran las fotografías?"; -$a->strings["Only expire posts by others:"] = "Solo expiran los mensajes de los demás:"; -$a->strings["Account Settings"] = "Configuración de la cuenta"; -$a->strings["Password Settings"] = "Configuración de la contraseña"; -$a->strings["Leave password fields blank unless changing"] = "Deja la contraseña en blanco si no quieres cambiarla"; -$a->strings["Current Password:"] = "Contraseña actual:"; -$a->strings["Your current password to confirm the changes"] = "Su contraseña actual para confirmar los cambios."; -$a->strings["Password:"] = "Contraseña:"; -$a->strings["Basic Settings"] = "Configuración básica"; -$a->strings["Email Address:"] = "Dirección de correo:"; -$a->strings["Your Timezone:"] = "Zona horaria:"; -$a->strings["Your Language:"] = "Tu idioma:"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo."; -$a->strings["Default Post Location:"] = "Localización predeterminada:"; -$a->strings["Use Browser Location:"] = "Usar localización del navegador:"; -$a->strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; -$a->strings["Maximum Friend Requests/Day:"] = "Máximo número de peticiones de amistad por día:"; -$a->strings["(to prevent spam abuse)"] = "(para prevenir el abuso de spam)"; -$a->strings["Default Post Permissions"] = "Permisos por defecto para las publicaciones"; -$a->strings["(click to open/close)"] = "(pulsa para abrir/cerrar)"; -$a->strings["Default Private Post"] = "Publicación Privada por defecto"; -$a->strings["Default Public Post"] = "Publicación Pública por defecto"; -$a->strings["Default Permissions for New Posts"] = "Permisos por defecto para nuevas publicaciones"; -$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensajes diarios para desconocidos:"; -$a->strings["Notification Settings"] = "Configuración de notificaciones"; -$a->strings["By default post a status message when:"] = "Publicar en tu estado cuando:"; -$a->strings["accepting a friend request"] = "aceptes una solicitud de amistad"; -$a->strings["joining a forum/community"] = "te unas a un foro/comunidad"; -$a->strings["making an interesting profile change"] = "hagas un cambio interesante en tu perfil"; -$a->strings["Send a notification email when:"] = "Enviar notificación por correo cuando:"; -$a->strings["You receive an introduction"] = "Recibas una presentación"; -$a->strings["Your introductions are confirmed"] = "Tu presentación sea confirmada"; -$a->strings["Someone writes on your profile wall"] = "Alguien escriba en el muro de mi perfil"; -$a->strings["Someone writes a followup comment"] = "Algien escriba en un comentario que sigo"; -$a->strings["You receive a private message"] = "Recibas un mensaje privado"; -$a->strings["You receive a friend suggestion"] = "Recibas una sugerencia de amistad"; -$a->strings["You are tagged in a post"] = "Seas etiquetado en una publicación"; -$a->strings["You are poked/prodded/etc. in a post"] = "Te han tocado/empujado/etc. en una publicación"; -$a->strings["Activate desktop notifications"] = "Activar notificaciones en pantalla."; -$a->strings["Show desktop popup on new notifications"] = "Mostrar notificaciones emergentes en caso de nuevos eventos."; -$a->strings["Text-only notification emails"] = "Notificaciones e-mail de solo texto"; -$a->strings["Send text only notification emails, without the html part"] = "Enviar las notificaciones por correo con formato de solo texto sin html."; -$a->strings["Advanced Account/Page Type Settings"] = "Configuración avanzada de tipo de Cuenta/Página"; -$a->strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta para situaciones especiales"; -$a->strings["Relocate"] = "Relocalizar"; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)"; -$a->strings["Resend relocate message to contacts"] = "Reenviar mensaje de relocalización a los contactos"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado."; -$a->strings["No recipient selected."] = "Ningún destinatario seleccionado"; -$a->strings["Unable to check your home location."] = "Imposible comprobar tu servidor de inicio."; -$a->strings["Message could not be sent."] = "El mensaje no ha podido ser enviado."; -$a->strings["Message collection failure."] = "Fallo en la recolección de mensajes."; -$a->strings["Message sent."] = "Mensaje enviado."; -$a->strings["No recipient."] = "Sin receptor."; -$a->strings["Send Private Message"] = "Enviar mensaje privado"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos."; -$a->strings["To:"] = "Para:"; -$a->strings["Subject:"] = "Asunto:"; -$a->strings["link"] = "enlace"; -$a->strings["Authorize application connection"] = "Autorizar la conexión de la aplicación"; -$a->strings["Return to your app and insert this Securty Code:"] = "Regresa a tu aplicación e introduce este código de seguridad:"; -$a->strings["Please login to continue."] = "Inicia sesión para continuar."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?"; -$a->strings["Source (bbcode) text:"] = "Texto fuente (bbcode):"; -$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Fuente (Diaspora) para pasar a BBcode:"; -$a->strings["Source input: "] = "Entrada: "; -$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): "; -$a->strings["bb2html: "] = "bb2html: "; -$a->strings["bb2html2bb: "] = "bb2html2bb: "; -$a->strings["bb2md: "] = "bb2md: "; -$a->strings["bb2md2html: "] = "bb2md2html: "; -$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; -$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; -$a->strings["Source input (Diaspora format): "] = "Fuente (formato Diaspora): "; -$a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Unable to locate original post."] = "No se puede encontrar la publicación original."; -$a->strings["Empty post discarded."] = "Publicación vacía descartada."; -$a->strings["System error. Post not saved."] = "Error del sistema. Mensaje no guardado."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Este mensaje te lo ha enviado %s, miembro de la red social Friendica."; -$a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes."; -$a->strings["%s posted an update."] = "%s ha publicado una actualización."; -$a->strings["Subscribing to OStatus contacts"] = "Subscribir a los contactos de OStatus"; -$a->strings["No contact provided."] = "Sin suministro de datos de contacto."; -$a->strings["Couldn't fetch information for contact."] = "No se ha podido conseguir la información del contacto."; -$a->strings["Couldn't fetch friends for contact."] = "No se ha podido conseguir datos de amigos para contactar."; -$a->strings["success"] = "exito!"; -$a->strings["failed"] = "fallido!"; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s te da la bienvenida a %2\$s"; -$a->strings["Tips for New Members"] = "Consejos para nuevos miembros"; -$a->strings["Unable to locate contact information."] = "No se puede encontrar información del contacto."; -$a->strings["Do you really want to delete this message?"] = "¿Estás seguro de que quieres borrar este mensaje?"; -$a->strings["Message deleted."] = "Mensaje eliminado."; -$a->strings["Conversation removed."] = "Conversación eliminada."; -$a->strings["No messages."] = "No hay mensajes."; -$a->strings["Message not available."] = "Mensaje no disponibile."; -$a->strings["Delete message"] = "Borrar mensaje"; -$a->strings["Delete conversation"] = "Eliminar conversación"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. "; -$a->strings["Send Reply"] = "Enviar respuesta"; -$a->strings["Unknown sender - %s"] = "Remitente desconocido - %s"; -$a->strings["You and %s"] = "Tú y %s"; -$a->strings["%s and You"] = "%s y Tú"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d mensaje", - 1 => "%d mensajes", -); -$a->strings["Manage Identities and/or Pages"] = "Administrar identidades y/o páginas"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar"; -$a->strings["Select an identity to manage: "] = "Selecciona una identidad a gestionar:"; +$a->strings["{0} wants to be your friend"] = "{0} quiere ser tu amigo"; +$a->strings["{0} sent you a message"] = "{0} te ha enviado un mensaje"; +$a->strings["{0} requested registration"] = "{0} solicitudes de registro"; +$a->strings["No contacts."] = "Ningún contacto."; $a->strings["via"] = "vía"; $a->strings["Repeat the image"] = "Repetir la imagen"; $a->strings["Will repeat your image to fill the background."] = "Repetirá su imagen para llenar el fondo"; @@ -2010,8 +2002,6 @@ $a->strings["Resize fill and-clip"] = "Reajustar llenado y clip"; $a->strings["Resize to fill and retain aspect ratio."] = "Reajustar para llenar y conservar proporción"; $a->strings["Resize best fit"] = "Reajustar al mejor tamaño"; $a->strings["Resize to best fit and retain aspect ratio."] = "Reajustar al mejor tamaño y conservar proporción"; -$a->strings["Guest"] = "Invitado"; -$a->strings["Visitor"] = "Visitante"; $a->strings["Default"] = "Por defecto"; $a->strings["Note: "] = "Nota:"; $a->strings["Check image permissions if all users are allowed to visit the image"] = "Compruebe los permisos de imagen si se les permite a todos los usuarios visitar la imagen"; @@ -2022,6 +2012,8 @@ $a->strings["Link color"] = "Color de enlace"; $a->strings["Set the background color"] = "Seleccionar el color de fondo"; $a->strings["Content background transparency"] = "Transparencia de contenido de fondo"; $a->strings["Set the background image"] = "Seleccionar la imagen de fondo"; +$a->strings["Guest"] = "Invitado"; +$a->strings["Visitor"] = "Visitante"; $a->strings["Alignment"] = "Alineación"; $a->strings["Left"] = "Izquierda"; $a->strings["Center"] = "Centrado"; @@ -2045,3 +2037,16 @@ $a->strings["darkzero"] = "darkzero"; $a->strings["comix"] = "comix"; $a->strings["slackr"] = "slackr"; $a->strings["Variations"] = "Variaciones"; +$a->strings["Delete this item?"] = "¿Eliminar este elemento?"; +$a->strings["show fewer"] = "ver menos"; +$a->strings["Update %s failed. See error logs."] = "Falló la actualización de %s. Mira los registros de errores."; +$a->strings["Create a New Account"] = "Crear una nueva cuenta"; +$a->strings["Password: "] = "Contraseña: "; +$a->strings["Remember me"] = "Recordarme"; +$a->strings["Or login using OpenID: "] = "O inicia sesión usando OpenID: "; +$a->strings["Forgot your password?"] = "¿Olvidaste la contraseña?"; +$a->strings["Website Terms of Service"] = "Términos de uso del sitio"; +$a->strings["terms of service"] = "Términos de uso"; +$a->strings["Website Privacy Policy"] = "Política de privacidad del sitio"; +$a->strings["privacy policy"] = "Política de privacidad"; +$a->strings["toggle mobile"] = "Cambiar a versión móvil"; From 5bef39189bb42949ddd37f7c16358112be2233ac Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Mon, 2 Jan 2017 13:38:10 +0100 Subject: [PATCH 10/11] Bugfix: Frio css - add z-index to badges --- view/theme/frio/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 1c602898e6..6f1fcf74ad 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -270,6 +270,7 @@ a#item-delete-selected { vertical-align: baseline; background-color: $link_color; border-radius: 4px; + z-index: 1; } aside .badge { opacity: 0.7; From b783a98a9f3e38a367d333da7942171904a1a6ea Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 3 Jan 2017 10:42:11 +0100 Subject: [PATCH 11/11] DE translations THX Rabuzarus --- view/lang/de/messages.po | 4 ++-- view/lang/de/strings.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index 56f4369083..665a0f9645 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -36,7 +36,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-12-19 07:46+0100\n" -"PO-Revision-Date: 2017-01-01 21:19+0000\n" +"PO-Revision-Date: 2017-01-02 17:16+0000\n" "Last-Translator: rabuzarus \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -7756,7 +7756,7 @@ msgstr "Beziehe Information und Schlüsselworte" #: mod/contacts.php:575 msgid "Contact" -msgstr "Kontakt: " +msgstr "Kontakt" #: mod/contacts.php:578 msgid "Profile Visibility" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index 86fa4057fb..4d27608f6f 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -1777,7 +1777,7 @@ $a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem $a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; $a->strings["Fetch information"] = "Beziehe Information"; $a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; -$a->strings["Contact"] = "Kontakt: "; +$a->strings["Contact"] = "Kontakt"; $a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; $a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";