Merge pull request #929 from tobiasd/20191229-markdownCS

[markdown] added CS translation THX Aditoo
This commit is contained in:
Michael Vogel 2019-12-29 19:36:43 +01:00 committed by GitHub
commit 6b128e5f17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,39 @@
# ADDON markdown
# Copyright (C)
# This file is distributed under the same license as the Friendica markdown addon package.
#
#
# Translators:
# Aditoo, 2019
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-12-26 10:04+0000\n"
"PO-Revision-Date: 2019-12-27 06:41+0000\n"
"Last-Translator: Aditoo, 2019\n"
"Language-Team: Czech (https://www.transifex.com/Friendica/teams/12172/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: markdown.php:32
msgid "Markdown"
msgstr "Markdown"
#: markdown.php:33
msgid "Enable Markdown parsing"
msgstr ""
#: markdown.php:33
msgid ""
"If enabled, self created items will additionally be parsed via Markdown."
msgstr ""
#: markdown.php:34
msgid "Save Settings"
msgstr "Uložit nastavení"

View File

@ -0,0 +1,12 @@
<?php
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
$n = intval($n);
return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
}}
;
$a->strings["Markdown"] = "Markdown";
$a->strings["Enable Markdown parsing"] = "";
$a->strings["If enabled, self created items will additionally be parsed via Markdown."] = "";
$a->strings["Save Settings"] = "Uložit nastavení";