diff options
author | Sem <sembrestels@riseup.net> | 2012-05-07 07:54:17 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-05-07 07:54:17 +0200 |
commit | c8c493cfda4891e53401d8759ee40fcd4d5a7b0e (patch) | |
tree | 68718b64795bab068964d5965f4d65f9aeee6677 /languages/es/es.thewire.php | |
parent | fa486d8086514366ee69cece81234ce47de3400b (diff) | |
download | elgg-c8c493cfda4891e53401d8759ee40fcd4d5a7b0e.tar.gz elgg-c8c493cfda4891e53401d8759ee40fcd4d5a7b0e.tar.bz2 |
Updated spanish language to 100%.
Diffstat (limited to 'languages/es/es.thewire.php')
-rw-r--r-- | languages/es/es.thewire.php | 96 |
1 files changed, 38 insertions, 58 deletions
diff --git a/languages/es/es.thewire.php b/languages/es/es.thewire.php index edddf297f..7845050f4 100644 --- a/languages/es/es.thewire.php +++ b/languages/es/es.thewire.php @@ -1,58 +1,38 @@ -<?php
-
-$spanish = array(
-
- /**
- * Menu items and titles
- */
- 'thewire' => "Tweets",
- 'thewire:everyone' => "Todos los tweets",
- 'thewire:user' => "Tweets de %s",
- 'thewire:friends' => "Tweets de amigos",
- 'thewire:reply' => "Responder",
- 'thewire:replying' => "Responder a %s (@%s) quien escribe",
- 'thewire:thread' => "Debate",
- 'thewire:charleft' => "caracteres restantes",
- 'thewire:tags' => "Tweets que coinciden con el tag '%s'",
- 'thewire:noposts' => "No hay tweets aún",
- 'item:object:thewire' => "Tweets",
- 'thewire:update' => 'Actualizar',
-
- 'thewire:previous' => "Anterior",
- 'thewire:hide' => "Ocultar",
- 'thewire:previous:help' => "Ver publicación anterior",
- 'thewire:hide:help' => "Ocultar publicación anterior",
-
- /**
- * The wire river
- */
- 'river:create:object:thewire' => "%s publicó un nuevo %s",
- 'thewire:wire' => 'tweet',
-
- /**
- * Wire widget
- */
- 'thewire:widget:desc' => 'Mostrar tus últimos tweets',
- 'thewire:num' => 'Cantidad de comentarios a mostrar',
- 'thewire:moreposts' => 'Más tweets',
-
- /**
- * Status messages
- */
- 'thewire:posted' => "El mensaje se publicó correctamente.",
- 'thewire:deleted' => "El mensaje se eliminó correctamente.",
- 'thewire:blank' => "Debe ingresar contenido para poder publicar.",
- 'thewire:notfound' => "Lo sentimos, no se pudo encontrar la publicación solicitada.",
- 'thewire:notdeleted' => "Lo sentimos, no se pudo eliminar el tweet.",
-
- /**
- * Notifications
- */
- 'thewire:notify:subject' => "Nuevo tweet",
- 'thewire:notify:reply' => '%s respondió a %s con un tweet:',
- 'thewire:notify:post' => '%s publicó un nuevo tweet:',
-);
-
-add_translation("es",$spanish);
-
-?>
+ + +<?php +$es = array ( + 'thewire' => 'Telegramas', + 'thewire:everyone' => 'Todos los telegramas', + 'thewire:user' => 'Telegramas de %s', + 'thewire:friends' => 'Telegramas de amigos', + 'thewire:tags' => 'Telegramas que coinciden con el tag \'%s\'', + 'thewire:noposts' => 'No hay telegramas aún', + 'item:object:thewire' => 'Telegramas', + 'thewire:by' => 'Telegrama mandado por %s', + 'river:create:object:thewire' => '%s mandó un nuevo %s', + 'thewire:wire' => 'telegrama', + 'thewire:widget:desc' => 'Mostrar tus últimos telegramas', + 'thewire:num' => 'Cantidad de telegramas a mostrar', + 'thewire:moreposts' => 'Más telegramas', + 'thewire:notfound' => 'Lo sentimos, no se pudo encontrar el telegrama solicitado.', + 'thewire:notdeleted' => 'Lo sentimos, no se pudo eliminar el telegrama.', + 'thewire:notify:subject' => 'Nuevo telegrama', + 'thewire:notify:reply' => '%s respondió a %s con un telegrama:', + 'thewire:notify:post' => '%s publicó un nuevo telegrama:', + 'thewire:reply' => 'Responder', + 'thewire:replying' => 'Responder a %s (@%s) quien escribe', + 'thewire:thread' => 'Debate', + 'thewire:charleft' => 'caracteres restantes', + 'thewire:update' => 'Actualizar', + 'thewire:previous' => 'Anterior', + 'thewire:hide' => 'Ocultar', + 'thewire:previous:help' => 'Ver publicación anterior', + 'thewire:hide:help' => 'Ocultar publicación anterior', + 'thewire:posted' => 'El mensaje se publicó correctamente.', + 'thewire:deleted' => 'El mensaje se eliminó correctamente.', + 'thewire:blank' => 'Debe ingresar contenido para poder publicar.', +); + +add_translation("es", $es); + |