SV addon translation update THX Kristoffer Grundström
This commit is contained in:
parent
5a236d72b6
commit
631b456755
110 changed files with 3910 additions and 274 deletions
58
js_upload/lang/sv/messages.po
Normal file
58
js_upload/lang/sv/messages.po
Normal file
|
@ -0,0 +1,58 @@
|
|||
# ADDON js_upload
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica js_upload addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2022
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-03-23 23:53-0400\n"
|
||||
"PO-Revision-Date: 2022-01-16 00:41+0000\n"
|
||||
"Last-Translator: Kristoffer Grundström <lovaren@gmail.com>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: js_upload.php:34
|
||||
msgid "Select files for upload"
|
||||
msgstr ""
|
||||
|
||||
#: js_upload.php:35
|
||||
msgid "Drop files here to upload"
|
||||
msgstr "Släpp filer här för att ladda upp"
|
||||
|
||||
#: js_upload.php:36
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#: js_upload.php:37
|
||||
msgid "Failed"
|
||||
msgstr "Misslyckades"
|
||||
|
||||
#: js_upload.php:215
|
||||
msgid "No files were uploaded."
|
||||
msgstr "Inga filer laddades upp."
|
||||
|
||||
#: js_upload.php:221
|
||||
msgid "Uploaded file is empty"
|
||||
msgstr "Den uppladdade filen är tom"
|
||||
|
||||
#: js_upload.php:233
|
||||
#, php-format
|
||||
msgid "Image exceeds size limit of %s"
|
||||
msgstr ""
|
||||
|
||||
#: js_upload.php:245
|
||||
#, php-format
|
||||
msgid "File has an invalid extension, it should be one of %s."
|
||||
msgstr ""
|
||||
|
||||
#: js_upload.php:256
|
||||
msgid "Upload was cancelled, or server error encountered"
|
||||
msgstr "Uppladdningen avbröts, eller så uppstod det ett server-fel"
|
|
@ -1,11 +1,13 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Upload a file"] = "Ladda upp en fil";
|
||||
$a->strings["Drop files here to upload"] = "Dra filer som ska laddas upp hit";
|
||||
$a->strings["Cancel"] = "Avbryt";
|
||||
$a->strings["Failed"] = "Misslyckades";
|
||||
$a->strings["No files were uploaded."] = "Inga filer laddades upp.";
|
||||
$a->strings["Uploaded file is empty"] = "Den uppladdade filen är tom";
|
||||
$a->strings["Image exceeds size limit of "] = "Bilden överskrider den tillåtna storleken ";
|
||||
$a->strings["File has an invalid extension, it should be one of "] = "Otillåten filnamnsändelse, det ska vara ";
|
||||
$a->strings["Upload was cancelled, or server error encountered"] = "Serverfel eller avbruten uppladdning";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_sv")) {
|
||||
function string_plural_select_sv($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
$a->strings['Drop files here to upload'] = 'Släpp filer här för att ladda upp';
|
||||
$a->strings['Cancel'] = 'Avbryt';
|
||||
$a->strings['Failed'] = 'Misslyckades';
|
||||
$a->strings['No files were uploaded.'] = 'Inga filer laddades upp.';
|
||||
$a->strings['Uploaded file is empty'] = 'Den uppladdade filen är tom';
|
||||
$a->strings['Upload was cancelled, or server error encountered'] = 'Uppladdningen avbröts, eller så uppstod det ett server-fel';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue