diff options
Diffstat (limited to 'mod/thewire/languages')
-rw-r--r-- | mod/thewire/languages/en.php | 60 | ||||
-rw-r--r-- | mod/thewire/languages/es.php | 58 |
2 files changed, 118 insertions, 0 deletions
diff --git a/mod/thewire/languages/en.php b/mod/thewire/languages/en.php new file mode 100644 index 000000000..9716fc060 --- /dev/null +++ b/mod/thewire/languages/en.php @@ -0,0 +1,60 @@ +<?php +/** + * The Wire English language file + */ + +$english = array( + + /** + * Menu items and titles + */ + 'thewire' => "The Wire", + 'thewire:everyone' => "All wire posts", + 'thewire:user' => "%s's wire posts", + 'thewire:friends' => "Friends' wire posts", + 'thewire:reply' => "Reply", + 'thewire:replying' => "Replying to %s (@%s) who wrote", + 'thewire:thread' => "Thread", + 'thewire:charleft' => "characters remaining", + 'thewire:tags' => "Wire posts tagged with '%s'", + 'thewire:noposts' => "No wire posts yet", + 'item:object:thewire' => "Wire posts", + 'thewire:update' => 'Update', + + 'thewire:previous' => "Previous", + 'thewire:hide' => "Hide", + 'thewire:previous:help' => "View previous post", + 'thewire:hide:help' => "Hide previous post", + + /** + * The wire river + */ + 'river:create:object:thewire' => "%s posted to the %s", + 'thewire:wire' => 'wire', + + /** + * Wire widget + */ + 'thewire:widget:desc' => 'Display your latest wire posts', + 'thewire:num' => 'Number of posts to display', + 'thewire:moreposts' => 'More wire posts', + + /** + * Status messages + */ + 'thewire:posted' => "Your message was successfully posted to the wire.", + 'thewire:deleted' => "The wire post was successfully deleted.", + 'thewire:blank' => "Sorry, you need to enter some text before we can post this.", + 'thewire:notfound' => "Sorry, we could not find the specified wire post.", + 'thewire:notdeleted' => "Sorry. We could not delete this wire post.", + + /** + * Notifications + */ + 'thewire:notify:subject' => "New wire post", + 'thewire:notify:reply' => '%s responded to %s on the wire:', + 'thewire:notify:post' => '%s posted on the wire:', + +); + +add_translation("en", $english); diff --git a/mod/thewire/languages/es.php b/mod/thewire/languages/es.php new file mode 100644 index 000000000..edddf297f --- /dev/null +++ b/mod/thewire/languages/es.php @@ -0,0 +1,58 @@ +<?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);
+
+?>
|