BG translation added to smileybutton addon THX Rafael Kalachev

This commit is contained in:
Tobias Diekershoff 2021-02-01 07:19:31 +01:00
parent 65f51cbdda
commit f3a81a170e
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,36 @@
# ADDON smileybutton
# Copyright (C)
# This file is distributed under the same license as the Friendica smileybutton addon package.
#
#
# Translators:
# Rafael Kalachev <kalachev.rafael@gmail.com>, 2021
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-23 14:45+0200\n"
"PO-Revision-Date: 2021-01-14 07:24+0000\n"
"Last-Translator: Rafael Kalachev <kalachev.rafael@gmail.com>\n"
"Language-Team: Bulgarian (http://www.transifex.com/Friendica/friendica/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: smileybutton.php:269
msgid "Smileybutton settings"
msgstr "Настройки на бутона с усмивки."
#: smileybutton.php:272
msgid "You can hide the button and show the smilies directly."
msgstr "Можете да скриете бутона и да покажете усмивките директно."
#: smileybutton.php:274
msgid "Hide the button"
msgstr "Скрий бутона"
#: smileybutton.php:281
msgid "Save Settings"
msgstr "Запази настройките"

View File

@ -0,0 +1,12 @@
<?php
if(! function_exists("string_plural_select_bg")) {
function string_plural_select_bg($n){
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["Smileybutton settings"] = "Настройки на бутона с усмивки.";
$a->strings["You can hide the button and show the smilies directly."] = "Можете да скриете бутона и да покажете усмивките директно.";
$a->strings["Hide the button"] = "Скрий бутона";
$a->strings["Save Settings"] = "Запази настройките";