blockbot addon BG translation added THX Rafael Kalachev

This commit is contained in:
Tobias Diekershoff 2021-02-01 07:01:32 +01:00
parent 5a3bd4d35b
commit 65f51cbdda
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,42 @@
# ADDON blockbot
# Copyright (C)
# This file is distributed under the same license as the Friendica blockbot addon package.
#
#
# Translators:
# Rafael Kalachev <kalachev.rafael@gmail.com>, 2021
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-08-07 09:03+0200\n"
"PO-Revision-Date: 2019-08-07 07:43+0000\n"
"Last-Translator: Rafael Kalachev <kalachev.rafael@gmail.com>, 2021\n"
"Language-Team: Bulgarian (https://www.transifex.com/Friendica/teams/12172/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"
#: blockbot.php:35
msgid "Save Settings"
msgstr "Запази настройките"
#: blockbot.php:36
msgid "Allow \"good\" crawlers"
msgstr "Разреши \"добри\" обхождащи роботи за уеб страници"
#: blockbot.php:37
msgid "Block GabSocial"
msgstr "Блокирай GabSocial"
#: blockbot.php:38
msgid "Training mode"
msgstr "Тренировъчен режим"
#: blockbot.php:46
msgid "Settings updated."
msgstr "Настройките са обновени"

View File

@ -0,0 +1,13 @@
<?php
if(! function_exists("string_plural_select_bg")) {
function string_plural_select_bg($n){
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["Save Settings"] = "Запази настройките";
$a->strings["Allow \"good\" crawlers"] = "Разреши \"добри\" обхождащи роботи за уеб страници";
$a->strings["Block GabSocial"] = "Блокирай GabSocial";
$a->strings["Training mode"] = "Тренировъчен режим";
$a->strings["Settings updated."] = "Настройките са обновени";