mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
translations updates for 2023.03
This commit is contained in:
parent
91bb323a16
commit
1c677722b3
148 changed files with 1875 additions and 2233 deletions
|
@ -9,50 +9,46 @@ 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: 2016-04-18 19:15+0000\n"
|
||||
"Last-Translator: Tupambae.org\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
|
||||
"POT-Creation-Date: 2022-04-29 15:56+0200\n"
|
||||
"PO-Revision-Date: 2014-06-23 13:05+0000\n"
|
||||
"Last-Translator: Tupambae.org, 2016\n"
|
||||
"Language-Team: Spanish (http://app.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"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#: webrtc.php:20
|
||||
#: webrtc.php:18
|
||||
msgid "WebRTC Videochat"
|
||||
msgstr "WebRTC Videochat"
|
||||
|
||||
#: webrtc.php:26
|
||||
#: webrtc.php:24
|
||||
msgid "Save Settings"
|
||||
msgstr "Guardar ajustes"
|
||||
|
||||
#: webrtc.php:27
|
||||
#: webrtc.php:25
|
||||
msgid "WebRTC Base URL"
|
||||
msgstr "WebRTC URL Base"
|
||||
|
||||
#: webrtc.php:27
|
||||
#: webrtc.php:25
|
||||
msgid ""
|
||||
"Page your users will create a WebRTC chat room on. For example you could use"
|
||||
" https://live.mayfirst.org ."
|
||||
msgstr "Pagina donde el usuario creara una habitación de chat.\nPor ejemplo podría usar https://live.mayfirst.org ."
|
||||
|
||||
#: webrtc.php:33
|
||||
msgid "Settings updated."
|
||||
msgstr "Ajustes actualizados."
|
||||
|
||||
#: webrtc.php:47
|
||||
#: webrtc.php:44
|
||||
msgid "Video Chat"
|
||||
msgstr "Video Chat"
|
||||
|
||||
#: webrtc.php:48
|
||||
#: webrtc.php:45
|
||||
msgid ""
|
||||
"WebRTC is a video and audio conferencing tool that works with Firefox "
|
||||
"(version 21 and above) and Chrome/Chromium (version 25 and above). Just "
|
||||
"create a new chat room and send the link to someone you want to chat with."
|
||||
msgstr "WebRTC es una herramienta de vídeo conferencia que funciona con Firefox (versión 21 y arriba) y Chrome/Chromium (versión 25 y arriba). "
|
||||
"WebRTC is a video and audio conferencing tool that works in all modern "
|
||||
"browsers. Just create a new chat room and send the link to someone you want "
|
||||
"to chat with."
|
||||
msgstr ""
|
||||
|
||||
#: webrtc.php:50
|
||||
#: webrtc.php:47
|
||||
msgid ""
|
||||
"Please contact your friendica admin and send a reminder to configure the "
|
||||
"WebRTC addon."
|
||||
|
|
|
@ -3,14 +3,12 @@
|
|||
if(! function_exists("string_plural_select_es")) {
|
||||
function string_plural_select_es($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
|
||||
}}
|
||||
$a->strings['WebRTC Videochat'] = 'WebRTC Videochat';
|
||||
$a->strings['Save Settings'] = 'Guardar ajustes';
|
||||
$a->strings['WebRTC Base URL'] = 'WebRTC URL Base';
|
||||
$a->strings['Page your users will create a WebRTC chat room on. For example you could use https://live.mayfirst.org .'] = 'Pagina donde el usuario creara una habitación de chat.
|
||||
Por ejemplo podría usar https://live.mayfirst.org .';
|
||||
$a->strings['Settings updated.'] = 'Ajustes actualizados.';
|
||||
$a->strings['Video Chat'] = 'Video Chat';
|
||||
$a->strings['WebRTC is a video and audio conferencing tool that works with Firefox (version 21 and above) and Chrome/Chromium (version 25 and above). Just create a new chat room and send the link to someone you want to chat with.'] = 'WebRTC es una herramienta de vídeo conferencia que funciona con Firefox (versión 21 y arriba) y Chrome/Chromium (versión 25 y arriba). ';
|
||||
$a->strings['Please contact your friendica admin and send a reminder to configure the WebRTC addon.'] = 'Por favor contacta a tu administrador de friendica y envíale un recordatorio para configurar el accesorio (addon) WebRTC.';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue