js upload addon HU translation added THX Balázs Úr

This commit is contained in:
Tobias Diekershoff 2021-03-28 20:00:47 +02:00
parent a3b873647c
commit 2ed46eeefe
2 changed files with 73 additions and 0 deletions

View 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:
# Balázs Úr, 2020-2021
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
"PO-Revision-Date: 2021-03-23 01:46+0000\n"
"Last-Translator: Balázs Úr\n"
"Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: js_upload.php:33
msgid "Select files for upload"
msgstr "Fájlok kijelölése a feltöltéshez"
#: js_upload.php:34
msgid "Drop files here to upload"
msgstr "Húzzon ide fájlokat a feltöltéshez"
#: js_upload.php:35
msgid "Cancel"
msgstr "Mégse"
#: js_upload.php:36
msgid "Failed"
msgstr "Sikertelen"
#: js_upload.php:214
msgid "No files were uploaded."
msgstr "Nem lettek fájlok feltöltve."
#: js_upload.php:220
msgid "Uploaded file is empty"
msgstr "A feltöltött fájl üres"
#: js_upload.php:232
msgid "Image exceeds size limit of "
msgstr "A kép meghaladja a beállított méretkorlátot: "
#: js_upload.php:246
msgid "File has an invalid extension, it should be one of "
msgstr "A fájlnak érvénytelen kiterjesztése van, ezek egyikének kellene lennie: "
#: js_upload.php:257
msgid "Upload was cancelled, or server error encountered"
msgstr "A feltöltés meg lett szakítva vagy kiszolgálóhiba történt"

View File

@ -0,0 +1,17 @@
<?php
if(! function_exists("string_plural_select_hu")) {
function string_plural_select_hu($n){
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["Select files for upload"] = "Fájlok kijelölése a feltöltéshez";
$a->strings["Drop files here to upload"] = "Húzzon ide fájlokat a feltöltéshez";
$a->strings["Cancel"] = "Mégse";
$a->strings["Failed"] = "Sikertelen";
$a->strings["No files were uploaded."] = "Nem lettek fájlok feltöltve.";
$a->strings["Uploaded file is empty"] = "A feltöltött fájl üres";
$a->strings["Image exceeds size limit of "] = "A kép meghaladja a beállított méretkorlátot: ";
$a->strings["File has an invalid extension, it should be one of "] = "A fájlnak érvénytelen kiterjesztése van, ezek egyikének kellene lennie: ";
$a->strings["Upload was cancelled, or server error encountered"] = "A feltöltés meg lett szakítva vagy kiszolgálóhiba történt";