mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 17:08:48 +00:00
ES translation work THX Albert
This commit is contained in:
parent
673705dcca
commit
631c7724b6
51 changed files with 1981 additions and 227 deletions
56
js_upload/lang/es/messages.po
Normal file
56
js_upload/lang/es/messages.po
Normal file
|
@ -0,0 +1,56 @@
|
|||
# ADDON js_upload
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica js_upload 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 18:59+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"
|
||||
|
||||
#: js_upload.php:43
|
||||
msgid "Upload a file"
|
||||
msgstr "Subir un archivo"
|
||||
|
||||
#: js_upload.php:44
|
||||
msgid "Drop files here to upload"
|
||||
msgstr "Soltar archivos aquí para subir"
|
||||
|
||||
#: js_upload.php:45
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: js_upload.php:46
|
||||
msgid "Failed"
|
||||
msgstr "Fallido"
|
||||
|
||||
#: js_upload.php:303
|
||||
msgid "No files were uploaded."
|
||||
msgstr "No se subió ningún archivo."
|
||||
|
||||
#: js_upload.php:309
|
||||
msgid "Uploaded file is empty"
|
||||
msgstr "El archivo subido está vacío"
|
||||
|
||||
#: js_upload.php:321
|
||||
msgid "Image exceeds size limit of "
|
||||
msgstr "La imagen excede el tamaño de"
|
||||
|
||||
#: js_upload.php:332
|
||||
msgid "File has an invalid extension, it should be one of "
|
||||
msgstr "El archivo tiene una extensión inválida, debería ser una de"
|
||||
|
||||
#: js_upload.php:343
|
||||
msgid "Upload was cancelled, or server error encountered"
|
||||
msgstr "La subida fue cancelada, o el servidor tuvo un error"
|
|
@ -1,11 +1,16 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Upload a file"] = "Subir un archivo";
|
||||
$a->strings["Drop files here to upload"] = "Arrastra los archivos aquí para subirlos";
|
||||
$a->strings["Cancel"] = "Cancelar";
|
||||
$a->strings["Failed"] = "Falló";
|
||||
$a->strings["No files were uploaded."] = "No se han subido archivos aún.";
|
||||
$a->strings["Uploaded file is empty"] = "El archivo subido está vacío";
|
||||
$a->strings["Image exceeds size limit of "] = "La imagen supera tamaño límite de ";
|
||||
$a->strings["File has an invalid extension, it should be one of "] = "El archivo tiene una extensión no válida, debería ser una de ";
|
||||
$a->strings["Upload was cancelled, or server error encountered"] = "La subida ha sido cancelada, o se encontró un error del servidor";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_es")) {
|
||||
function string_plural_select_es($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Upload a file"] = "Subir un archivo";
|
||||
$a->strings["Drop files here to upload"] = "Soltar archivos aquí para subir";
|
||||
$a->strings["Cancel"] = "Cancelar";
|
||||
$a->strings["Failed"] = "Fallido";
|
||||
$a->strings["No files were uploaded."] = "No se subió ningún archivo.";
|
||||
$a->strings["Uploaded file is empty"] = "El archivo subido está vacío";
|
||||
$a->strings["Image exceeds size limit of "] = "La imagen excede el tamaño de";
|
||||
$a->strings["File has an invalid extension, it should be one of "] = "El archivo tiene una extensión inválida, debería ser una de";
|
||||
$a->strings["Upload was cancelled, or server error encountered"] = "La subida fue cancelada, o el servidor tuvo un error";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue