mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
DE: added translations for the addons from transifex
This commit is contained in:
parent
3705632bd1
commit
f6460497e3
90 changed files with 3771 additions and 516 deletions
54
qcomment/lang/de/messages.po
Normal file
54
qcomment/lang/de/messages.po
Normal file
|
@ -0,0 +1,54 @@
|
|||
# ADDON qcomment
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica qcomment addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# bavatar <tobias.diekershoff@gmx.net>, 2014
|
||||
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: 2014-07-08 19:24+0000\n"
|
||||
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/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"
|
||||
|
||||
#: qcomment.php:51
|
||||
msgid ":-)"
|
||||
msgstr ":-)"
|
||||
|
||||
#: qcomment.php:51
|
||||
msgid ":-("
|
||||
msgstr ":-("
|
||||
|
||||
#: qcomment.php:51
|
||||
msgid "lol"
|
||||
msgstr "lol"
|
||||
|
||||
#: qcomment.php:54
|
||||
msgid "Quick Comment Settings"
|
||||
msgstr "Schnell-Kommentar Einstellungen"
|
||||
|
||||
#: qcomment.php:56
|
||||
msgid ""
|
||||
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
|
||||
" provide simple replies."
|
||||
msgstr "Kurz-Kommentare findet man in der Nähe der Kommentar-Boxen. Ein Klick darauf erstellt einfache Antworten."
|
||||
|
||||
#: qcomment.php:57
|
||||
msgid "Enter quick comments, one per line"
|
||||
msgstr "Gib einen Schnell-Kommentar pro Zeile ein"
|
||||
|
||||
#: qcomment.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Einstellungen speichern"
|
||||
|
||||
#: qcomment.php:75
|
||||
msgid "Quick Comment settings saved."
|
||||
msgstr "Schnell-Kommentare Einstellungen gespeichert"
|
|
@ -1,10 +1,15 @@
|
|||
<?php
|
||||
|
||||
$a->strings[":-)"] = ":-)";
|
||||
$a->strings[":-("] = ":-(";
|
||||
$a->strings["lol"] = "lol";
|
||||
$a->strings["Quick Comment Settings"] = "Schnell-Kommentar Einstellungen";
|
||||
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Kurzkommentare findet man in der Nähe der Kommentarboxen. Ein Klick darauf erstellt einfache Antworten.";
|
||||
$a->strings["Enter quick comments, one per line"] = "Gib einen Schnell-Kommentar pro Zeile ein";
|
||||
$a->strings["Submit"] = "Senden";
|
||||
$a->strings["Quick Comment settings saved."] = "Schnell-Kommentare Einstellungen gespeichert";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_de")) {
|
||||
function string_plural_select_de($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings[":-)"] = ":-)";
|
||||
$a->strings[":-("] = ":-(";
|
||||
$a->strings["lol"] = "lol";
|
||||
$a->strings["Quick Comment Settings"] = "Schnell-Kommentar Einstellungen";
|
||||
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Kurz-Kommentare findet man in der Nähe der Kommentar-Boxen. Ein Klick darauf erstellt einfache Antworten.";
|
||||
$a->strings["Enter quick comments, one per line"] = "Gib einen Schnell-Kommentar pro Zeile ein";
|
||||
$a->strings["Save Settings"] = "Einstellungen speichern";
|
||||
$a->strings["Quick Comment settings saved."] = "Schnell-Kommentare Einstellungen gespeichert";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue