Buffer SV translation added THX Bjoessi

This commit is contained in:
Tobias Diekershoff 2019-08-21 15:26:34 +02:00
parent 8ef52c088b
commit 07c3b632f3
2 changed files with 99 additions and 0 deletions

View File

@ -0,0 +1,77 @@
# ADDON buffer
# Copyright (C)
# This file is distributed under the same license as the Friendica buffer addon package.
#
#
# Translators:
# Hypolite Petovan <hypolite@mrpetovan.com>, 2019
# Bjoessi <torbjorn.andersson@syte.se>, 2019
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2019-08-20 08:07+0000\n"
"Last-Translator: Bjoessi <torbjorn.andersson@syte.se>\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"
#: buffer.php:31
msgid "Permission denied."
msgstr "Åtkomst nekad."
#: buffer.php:57 buffer.php:185
msgid "Save Settings"
msgstr "Spara inställningar"
#: buffer.php:59
msgid "Client ID"
msgstr "Klient-ID"
#: buffer.php:60
msgid "Client Secret"
msgstr "Klient hemlig nyckel"
#: buffer.php:67
msgid "Error when registering buffer connection:"
msgstr "Fel vid anslutning till Buffer"
#: buffer.php:86
msgid "You are now authenticated to buffer. "
msgstr "Du är nu autentiserad mot Buffer."
#: buffer.php:87
msgid "return to the connector page"
msgstr "återgå till anslutningssida"
#: buffer.php:103
msgid "Post to Buffer"
msgstr "Inlägg till Buffer"
#: buffer.php:128 buffer.php:132
msgid "Buffer Export"
msgstr "Export till Buffer"
#: buffer.php:142
msgid "Authenticate your Buffer connection"
msgstr "Validera din anslutning mot Buffer"
#: buffer.php:146
msgid "Enable Buffer Post Addon"
msgstr "Aktivera tillägg för Buffer-inlägg"
#: buffer.php:151
msgid "Post to Buffer by default"
msgstr "Lägg in på Buffer som standard"
#: buffer.php:156
msgid "Check to delete this preset"
msgstr "Markera för att ta bort förinställning"
#: buffer.php:165
msgid "Posts are going to all accounts that are enabled by default:"
msgstr "Inlägg skickas som standard till alla konton som är aktiverade:"

View File

@ -0,0 +1,22 @@
<?php
if(! function_exists("string_plural_select_sv")) {
function string_plural_select_sv($n){
$n = intval($n);
return ($n != 1);;
}}
;
$a->strings["Permission denied."] = "Åtkomst nekad.";
$a->strings["Save Settings"] = "Spara inställningar";
$a->strings["Client ID"] = "Klient-ID";
$a->strings["Client Secret"] = "Klient hemlig nyckel";
$a->strings["Error when registering buffer connection:"] = "Fel vid anslutning till Buffer";
$a->strings["You are now authenticated to buffer. "] = "Du är nu autentiserad mot Buffer.";
$a->strings["return to the connector page"] = "återgå till anslutningssida";
$a->strings["Post to Buffer"] = "Inlägg till Buffer";
$a->strings["Buffer Export"] = "Export till Buffer";
$a->strings["Authenticate your Buffer connection"] = "Validera din anslutning mot Buffer";
$a->strings["Enable Buffer Post Addon"] = "Aktivera tillägg för Buffer-inlägg";
$a->strings["Post to Buffer by default"] = "Lägg in på Buffer som standard";
$a->strings["Check to delete this preset"] = "Markera för att ta bort förinställning";
$a->strings["Posts are going to all accounts that are enabled by default:"] = "Inlägg skickas som standard till alla konton som är aktiverade:";