ES translation work THX Albert

This commit is contained in:
Tobias Diekershoff 2016-11-18 07:57:19 +01:00
parent 673705dcca
commit 631c7724b6
51 changed files with 1981 additions and 227 deletions

View file

@ -0,0 +1,54 @@
# ADDON qcomment
# Copyright (C)
# This file is distributed under the same license as the Friendica qcomment addon package.
#
#
# Translators:
# Albert, 2016
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2016-11-17 22:22+0000\n"
"Last-Translator: Albert\n"
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: qcomment.php:51
msgid ":-)"
msgstr ":-)"
#: qcomment.php:51
msgid ":-("
msgstr ":-("
#: qcomment.php:51
msgid "lol"
msgstr "LOL"
#: qcomment.php:54
msgid "Quick Comment Settings"
msgstr "Ajustes de Comentario Rápido"
#: qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
" provide simple replies."
msgstr "Los comentarios rápidos están junto a las cajas de comentario, a veces ocultos. Click sobre ellos para proveer respuestas simples."
#: qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr "Introducir comentarios rápidos, uno por línea"
#: qcomment.php:61
msgid "Submit"
msgstr "Enviar"
#: qcomment.php:75
msgid "Quick Comment settings saved."
msgstr "Ajustes de Comentario Rápido guardados."

View file

@ -1,10 +1,15 @@
<?php
$a->strings[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "XD";
$a->strings["Quick Comment Settings"] = "Configuración de Qcomment";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Qcomments son comentarios rápidos que se encuentran cerca del cuadro de texto, a veces ocultos. Pulsa en ellos para dar respuestas simples.";
$a->strings["Enter quick comments, one per line"] = "Introduce comentarios rápidos, uno por línea";
$a->strings["Submit"] = "Envíar";
$a->strings["Quick Comment settings saved."] = "Configuración de Qcomment guardada.";
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
}}
;
$a->strings[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "LOL";
$a->strings["Quick Comment Settings"] = "Ajustes de Comentario Rápido";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Los comentarios rápidos están junto a las cajas de comentario, a veces ocultos. Click sobre ellos para proveer respuestas simples.";
$a->strings["Enter quick comments, one per line"] = "Introducir comentarios rápidos, uno por línea";
$a->strings["Submit"] = "Enviar";
$a->strings["Quick Comment settings saved."] = "Ajustes de Comentario Rápido guardados.";