mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
ES translation work THX Albert
This commit is contained in:
parent
673705dcca
commit
631c7724b6
51 changed files with 1981 additions and 227 deletions
70
remote_permissions/lang/es/messages.po
Normal file
70
remote_permissions/lang/es/messages.po
Normal file
|
@ -0,0 +1,70 @@
|
|||
# ADDON remote_permissions
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica remote_permissions addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Albert, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: 2016-11-17 22:30+0000\n"
|
||||
"Last-Translator: Albert\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/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"
|
||||
|
||||
#: remote_permissions.php:45
|
||||
msgid "Remote Permissions Settings"
|
||||
msgstr "Ajustes de Permisos Remotos"
|
||||
|
||||
#: remote_permissions.php:46
|
||||
msgid ""
|
||||
"Allow recipients of your private posts to see the other recipients of the "
|
||||
"posts"
|
||||
msgstr "Permitir a los destinatarios de sus publicaciones privadas ver a los otros destinatarios de sus publicaciones"
|
||||
|
||||
#: remote_permissions.php:48 remote_permissions.php:196
|
||||
msgid "Submit"
|
||||
msgstr "Enviar"
|
||||
|
||||
#: remote_permissions.php:58
|
||||
msgid "Remote Permissions settings updated."
|
||||
msgstr "Ajustes de Permisos Remotos actualizados."
|
||||
|
||||
#: remote_permissions.php:124
|
||||
msgid "Visible to:"
|
||||
msgstr "Visible para:"
|
||||
|
||||
#: remote_permissions.php:178
|
||||
msgid "Visible to"
|
||||
msgstr "Visible para"
|
||||
|
||||
#: remote_permissions.php:178
|
||||
msgid "may only be a partial list"
|
||||
msgstr "puede ser sólo una lista parcial"
|
||||
|
||||
#: remote_permissions.php:197
|
||||
msgid "Global"
|
||||
msgstr "Global"
|
||||
|
||||
#: remote_permissions.php:197
|
||||
msgid "The posts of every user on this server show the post recipients"
|
||||
msgstr "Las entradas de cada usuario de este servidor muestran a los destinatarios de la entrada"
|
||||
|
||||
#: remote_permissions.php:198
|
||||
msgid "Individual"
|
||||
msgstr "Individuo"
|
||||
|
||||
#: remote_permissions.php:198
|
||||
msgid "Each user chooses whether his/her posts show the post recipients"
|
||||
msgstr "Cada usuario elige si sus entradas muestran a los destinatarios de la entrada"
|
||||
|
||||
#: remote_permissions.php:205
|
||||
msgid "Settings updated."
|
||||
msgstr "Ajustes actualizados."
|
|
@ -1,14 +1,19 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Remote Permissions Settings"] = "";
|
||||
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
|
||||
$a->strings["Submit"] = "Envíar";
|
||||
$a->strings["Remote Permissions settings updated."] = "";
|
||||
$a->strings["Visible to:"] = "Visible para:";
|
||||
$a->strings["Visible to"] = "";
|
||||
$a->strings["may only be a partial list"] = "";
|
||||
$a->strings["Global"] = "";
|
||||
$a->strings["The posts of every user on this server show the post recipients"] = "";
|
||||
$a->strings["Individual"] = "";
|
||||
$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
|
||||
$a->strings["Settings updated."] = "Configuración actualizada.";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_es")) {
|
||||
function string_plural_select_es($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Remote Permissions Settings"] = "Ajustes de Permisos Remotos";
|
||||
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Permitir a los destinatarios de sus publicaciones privadas ver a los otros destinatarios de sus publicaciones";
|
||||
$a->strings["Submit"] = "Enviar";
|
||||
$a->strings["Remote Permissions settings updated."] = "Ajustes de Permisos Remotos actualizados.";
|
||||
$a->strings["Visible to:"] = "Visible para:";
|
||||
$a->strings["Visible to"] = "Visible para";
|
||||
$a->strings["may only be a partial list"] = "puede ser sólo una lista parcial";
|
||||
$a->strings["Global"] = "Global";
|
||||
$a->strings["The posts of every user on this server show the post recipients"] = "Las entradas de cada usuario de este servidor muestran a los destinatarios de la entrada";
|
||||
$a->strings["Individual"] = "Individuo";
|
||||
$a->strings["Each user chooses whether his/her posts show the post recipients"] = "Cada usuario elige si sus entradas muestran a los destinatarios de la entrada";
|
||||
$a->strings["Settings updated."] = "Ajustes actualizados.";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue