]> git.mxchange.org Git - friendica-addons.git/blob - webrtc/lang/es/strings.php
Unify "Capability"
[friendica-addons.git] / webrtc / lang / es / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_es")) {
4 function string_plural_select_es($n){
5         $n = intval($n);
6         if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else  { return 2; }
7 }}
8 $a->strings['WebRTC Videochat'] = 'WebRTC Videochat';
9 $a->strings['Save Settings'] = 'Guardar ajustes';
10 $a->strings['WebRTC Base URL'] = 'WebRTC URL Base';
11 $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.
12 Por ejemplo podría usar https://live.mayfirst.org .';
13 $a->strings['Video Chat'] = 'Video Chat';
14 $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.';