mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 09:54:27 +02:00
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
86
impressum/lang/sv/messages.po
Normal file
86
impressum/lang/sv/messages.po
Normal file
|
@ -0,0 +1,86 @@
|
|||
# ADDON impressum
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica impressum addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Hypolite Petovan <hypolite@mrpetovan.com>, 2019
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2022
|
||||
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: 2022-01-16 00:37+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"
|
||||
|
||||
#: impressum.php:53
|
||||
msgid "Impressum"
|
||||
msgstr "Intryck"
|
||||
|
||||
#: impressum.php:66 impressum.php:68 impressum.php:99
|
||||
msgid "Site Owner"
|
||||
msgstr "Sidans ägare"
|
||||
|
||||
#: impressum.php:66 impressum.php:103
|
||||
msgid "Email Address"
|
||||
msgstr "E-postadress"
|
||||
|
||||
#: impressum.php:71 impressum.php:101
|
||||
msgid "Postal Address"
|
||||
msgstr "Postadress"
|
||||
|
||||
#: impressum.php:77
|
||||
msgid ""
|
||||
"The impressum addon needs to be configured!<br />Please add at least the "
|
||||
"<tt>owner</tt> variable to your config file. For other variables please "
|
||||
"refer to the README file of the addon."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:98
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:99
|
||||
msgid "The page operators name."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Site Owners Profile"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:100
|
||||
msgid "Profile address of the operator."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:101
|
||||
msgid "How to contact the operator via snail mail. You can use BBCode here."
|
||||
msgstr "Hur man kontaktar operatören via snigelpost. Du kan använda BB-kod här."
|
||||
|
||||
#: impressum.php:102
|
||||
msgid "Notes"
|
||||
msgstr "Anteckningar"
|
||||
|
||||
#: impressum.php:102
|
||||
msgid ""
|
||||
"Additional notes that are displayed beneath the contact information. You can"
|
||||
" use BBCode here."
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:103
|
||||
msgid "How to contact the operator via email. (will be displayed obfuscated)"
|
||||
msgstr ""
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Footer note"
|
||||
msgstr "Fotnotering"
|
||||
|
||||
#: impressum.php:104
|
||||
msgid "Text for the footer. You can use BBCode here."
|
||||
msgstr ""
|
|
@ -1,4 +1,14 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Settings updated."] = "Inställningarna har uppdaterats.";
|
||||
$a->strings["Submit"] = "Spara";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_sv")) {
|
||||
function string_plural_select_sv($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
$a->strings['Impressum'] = 'Intryck';
|
||||
$a->strings['Site Owner'] = 'Sidans ägare';
|
||||
$a->strings['Email Address'] = 'E-postadress';
|
||||
$a->strings['Postal Address'] = 'Postadress';
|
||||
$a->strings['How to contact the operator via snail mail. You can use BBCode here.'] = 'Hur man kontaktar operatören via snigelpost. Du kan använda BB-kod här.';
|
||||
$a->strings['Notes'] = 'Anteckningar';
|
||||
$a->strings['Footer note'] = 'Fotnotering';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue