ES translation of the viewsrc addon updated THX Senex Petrovic

This commit is contained in:
Tobias Diekershoff 2021-04-06 06:42:47 +02:00
parent a537f280e7
commit 1299914d43
2 changed files with 35 additions and 3 deletions

View File

@ -0,0 +1,26 @@
# ADDON viewsrc
# Copyright (C)
# This file is distributed under the same license as the Friendica viewsrc addon package.
#
#
# Translators:
# Senex Petrovic <javierruizo@hotmail.com>, 2021
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-01 18:16+0100\n"
"PO-Revision-Date: 2018-03-20 07:26+0000\n"
"Last-Translator: Senex Petrovic <javierruizo@hotmail.com>, 2021\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"
#: viewsrc.php:49
msgid "View Source"
msgstr "Ver fuente"

View File

@ -1,3 +1,9 @@
<?php
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["View Source"] = "Ver fuente";