forked from friendica/friendica-addons
added ES translation for blockbot addon THX Julio Cova
This commit is contained in:
parent
c675cd4cb2
commit
b9310fecfb
42
blockbot/lang/es/messages.po
Normal file
42
blockbot/lang/es/messages.po
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
# ADDON blockbot
|
||||||
|
# Copyright (C)
|
||||||
|
# This file is distributed under the same license as the Friendica blockbot addon package.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Julio Cova, 2019
|
||||||
|
#
|
||||||
|
#, 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: Julio Cova, 2019\n"
|
||||||
|
"Language-Team: Spanish (https://www.transifex.com/Friendica/teams/12172/es/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: es\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: blockbot.php:35
|
||||||
|
msgid "Save Settings"
|
||||||
|
msgstr "Guardar ajustes"
|
||||||
|
|
||||||
|
#: blockbot.php:36
|
||||||
|
msgid "Allow \"good\" crawlers"
|
||||||
|
msgstr "Permitir rastreadores web \"buenos\""
|
||||||
|
|
||||||
|
#: blockbot.php:37
|
||||||
|
msgid "Block GabSocial"
|
||||||
|
msgstr "Bloquear GabSocial"
|
||||||
|
|
||||||
|
#: blockbot.php:38
|
||||||
|
msgid "Training mode"
|
||||||
|
msgstr "Modo de entrenamiento"
|
||||||
|
|
||||||
|
#: blockbot.php:46
|
||||||
|
msgid "Settings updated."
|
||||||
|
msgstr "Ajustes actualizados."
|
13
blockbot/lang/es/strings.php
Normal file
13
blockbot/lang/es/strings.php
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if(! function_exists("string_plural_select_es")) {
|
||||||
|
function string_plural_select_es($n){
|
||||||
|
$n = intval($n);
|
||||||
|
return ($n != 1);;
|
||||||
|
}}
|
||||||
|
;
|
||||||
|
$a->strings["Save Settings"] = "Guardar ajustes";
|
||||||
|
$a->strings["Allow \"good\" crawlers"] = "Permitir rastreadores web \"buenos\"";
|
||||||
|
$a->strings["Block GabSocial"] = "Bloquear GabSocial";
|
||||||
|
$a->strings["Training mode"] = "Modo de entrenamiento";
|
||||||
|
$a->strings["Settings updated."] = "Ajustes actualizados.";
|
Loading…
Reference in a new issue