DA DK translation for various addons added THX atjn

This commit is contained in:
Tobias Diekershoff 2022-05-02 12:26:36 +02:00
parent 2fd8b75598
commit 931be19eca
No known key found for this signature in database
GPG key ID: 25FE376FF17694A1
114 changed files with 4446 additions and 0 deletions

View file

@ -0,0 +1,60 @@
# ADDON piwik
# Copyright (C)
# This file is distributed under the same license as the Friendica piwik addon package.
#
#
# Translators:
# Anton <dev@atjn.dk>, 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: 2014-06-23 11:18+0000\n"
"Last-Translator: Anton <dev@atjn.dk>, 2022\n"
"Language-Team: Danish (Denmark) (http://www.transifex.com/Friendica/friendica/language/da_DK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: da_DK\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: piwik.php:87
msgid ""
"This website is tracked using the <a href='http://www.matomo.org'>Matomo</a>"
" analytics tool."
msgstr "Denne hjemmeside er sporet med analyticsværktøjet <a href='http://www.matomo.org'>Matomo</a>."
#: piwik.php:90
#, php-format
msgid ""
"If you do not want that your visits are logged in this way you <a "
"href='%s'>can set a cookie to prevent Matomo / Piwik from tracking further "
"visits of the site</a> (opt-out)."
msgstr "Hvis du ikke vil have at dine besøg bliver logget på denne måde, kan du <a href='%s'>sætte en cookie for at forhindre Matomo / Piwik i at spore yderligere besøg på siden</a> (opt-out)."
#: piwik.php:97
msgid "Save Settings"
msgstr "Gem indstillinger"
#: piwik.php:98
msgid "Matomo (Piwik) Base URL"
msgstr "Matomo (Piwik) Base URL"
#: piwik.php:98
msgid ""
"Absolute path to your Matomo (Piwik) installation. (without protocol "
"(http/s), with trailing slash)"
msgstr "Absolut sti til din Matomo (Piwik) installation. (uden protokol (http/s), med efterfølgende skråstreg)"
#: piwik.php:99
msgid "Site ID"
msgstr "Side ID"
#: piwik.php:100
msgid "Show opt-out cookie link?"
msgstr "Vis opt-out cookie link?"
#: piwik.php:101
msgid "Asynchronous tracking"
msgstr "Asynkron sporing"

View file

@ -0,0 +1,15 @@
<?php
if(! function_exists("string_plural_select_da_dk")) {
function string_plural_select_da_dk($n){
$n = intval($n);
return intval($n != 1);
}}
$a->strings['This website is tracked using the <a href=\'http://www.matomo.org\'>Matomo</a> analytics tool.'] = 'Denne hjemmeside er sporet med analyticsværktøjet <a href=\'http://www.matomo.org\'>Matomo</a>.';
$a->strings['If you do not want that your visits are logged in this way you <a href=\'%s\'>can set a cookie to prevent Matomo / Piwik from tracking further visits of the site</a> (opt-out).'] = 'Hvis du ikke vil have at dine besøg bliver logget på denne måde, kan du <a href=\'%s\'>sætte en cookie for at forhindre Matomo / Piwik i at spore yderligere besøg på siden</a> (opt-out).';
$a->strings['Save Settings'] = 'Gem indstillinger';
$a->strings['Matomo (Piwik) Base URL'] = 'Matomo (Piwik) Base URL';
$a->strings['Absolute path to your Matomo (Piwik) installation. (without protocol (http/s), with trailing slash)'] = 'Absolut sti til din Matomo (Piwik) installation. (uden protokol (http/s), med efterfølgende skråstreg)';
$a->strings['Site ID'] = 'Side ID';
$a->strings['Show opt-out cookie link?'] = 'Vis opt-out cookie link?';
$a->strings['Asynchronous tracking'] = 'Asynkron sporing';