mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-04 18:02:58 +00:00
14 lines
1.2 KiB
PHP
14 lines
1.2 KiB
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_it")) {
|
|
function string_plural_select_it($n){
|
|
$n = intval($n);
|
|
if ($n == 1) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
|
|
}}
|
|
$a->strings['WebRTC Videochat'] = 'Chat video WebRTC';
|
|
$a->strings['Save Settings'] = 'Salva Impostazioni';
|
|
$a->strings['WebRTC Base URL'] = 'Indirizzo base WebRTC';
|
|
$a->strings['Page your users will create a WebRTC chat room on. For example you could use https://live.mayfirst.org .'] = 'Indirizzo della pagina che i tuoi utenti utilizzeranno per creare una chat rom WebRTC. Per esempio potresti usare https://live.mayfirst.org .';
|
|
$a->strings['Video Chat'] = 'Chat Video';
|
|
$a->strings['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.'] = 'WebRTC è uno strumento di conferenza video e audio che funziona in tutti i browser moderni. Ti basta creare una nuova stanza di conversazione e inviare il collegamento a qualcuno con il quale vuoi parlare.';
|
|
$a->strings['Please contact your friendica admin and send a reminder to configure the WebRTC addon.'] = 'Contatta il tuo amministratore Friendica e ricordagli di configurare il plugin WebRTC.';
|