]> git.mxchange.org Git - friendica-addons.git/commitdiff
JS_Upload addon FR translation update THX ButterflyOfFire
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 9 Mar 2020 10:29:45 +0000 (11:29 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 9 Mar 2020 10:29:45 +0000 (11:29 +0100)
js_upload/lang/fr/messages.po [new file with mode: 0644]
js_upload/lang/fr/strings.php

diff --git a/js_upload/lang/fr/messages.po b/js_upload/lang/fr/messages.po
new file mode 100644 (file)
index 0000000..1e6e544
--- /dev/null
@@ -0,0 +1,57 @@
+# ADDON js_upload
+# Copyright (C)
+# This file is distributed under the same license as the Friendica js_upload addon package.
+# 
+# 
+# Translators:
+# ButterflyOfFire, 2020
+# StefOfficiel <pichard.stephane@free.fr>, 2015
+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: 2020-02-27 22:12+0000\n"
+"Last-Translator: ButterflyOfFire\n"
+"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: js_upload.php:43
+msgid "Upload a file"
+msgstr "Téléverser un fichier"
+
+#: js_upload.php:44
+msgid "Drop files here to upload"
+msgstr "Glisser les fichiers ici pour uploader"
+
+#: js_upload.php:45
+msgid "Cancel"
+msgstr "Annuler"
+
+#: js_upload.php:46
+msgid "Failed"
+msgstr ""
+
+#: js_upload.php:303
+msgid "No files were uploaded."
+msgstr ""
+
+#: js_upload.php:309
+msgid "Uploaded file is empty"
+msgstr ""
+
+#: js_upload.php:321
+msgid "Image exceeds size limit of "
+msgstr ""
+
+#: js_upload.php:332
+msgid "File has an invalid extension, it should be one of "
+msgstr ""
+
+#: js_upload.php:343
+msgid "Upload was cancelled, or server error encountered"
+msgstr ""
index fba7cf36e1e89e312c428fb0f09c25bddea248d4..eb0a4d66575aff3cf07d32d012a5f7fb43bbe137 100644 (file)
@@ -1,11 +1,17 @@
-<?php\r
-\r
-$a->strings["Upload a file"] = "Téléverser un fichier";\r
-$a->strings["Drop files here to upload"] = "Déposer des fichiers ici pour les téléverser";\r
-$a->strings["Cancel"] = "Annuler";\r
-$a->strings["Failed"] = "Échec";\r
-$a->strings["No files were uploaded."] = "Aucun fichier n'a été téléversé.";\r
-$a->strings["Uploaded file is empty"] = "Le fichier téléversé est vide";\r
-$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de  ";\r
-$a->strings["File has an invalid extension, it should be one of "] = "Le fichier a une extension invalide, elle devrait être parmi ";\r
-$a->strings["Upload was cancelled, or server error encountered"] = "Téléversement annulé, ou erreur de serveur";\r
+<?php
+
+if(! function_exists("string_plural_select_fr")) {
+function string_plural_select_fr($n){
+       $n = intval($n);
+       return ($n > 1);;
+}}
+;
+$a->strings["Upload a file"] = "Téléverser un fichier";
+$a->strings["Drop files here to upload"] = "Glisser les fichiers ici pour uploader";
+$a->strings["Cancel"] = "Annuler";
+$a->strings["Failed"] = "";
+$a->strings["No files were uploaded."] = "";
+$a->strings["Uploaded file is empty"] = "";
+$a->strings["Image exceeds size limit of "] = "";
+$a->strings["File has an invalid extension, it should be one of "] = "";
+$a->strings["Upload was cancelled, or server error encountered"] = "";