DE addon translation update

This commit is contained in:
Tobias Diekershoff 2022-01-22 18:52:57 +01:00
parent 484482a4ce
commit 1e60ac18cf
80 changed files with 972 additions and 996 deletions

View file

@ -0,0 +1,26 @@
# ADDON viewsrc
# Copyright (C)
# This file is distributed under the same license as the Friendica viewsrc addon package.
#
#
# Translators:
# Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2018
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-01 18:16+0100\n"
"PO-Revision-Date: 2018-03-20 07:26+0000\n"
"Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2018\n"
"Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: viewsrc.php:49
msgid "View Source"
msgstr "Quelle ansehen"

View file

@ -1,3 +1,8 @@
<?php
$a->strings["View Source"] = "Quelle ansehen";
<?php
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
$n = intval($n);
return intval($n != 1);
}}
$a->strings['View Source'] = 'Quelle ansehen';