]> git.mxchange.org Git - friendica-addons.git/blob - webrtc/lang/fr/strings.php
FR translation of various addons updated
[friendica-addons.git] / webrtc / lang / fr / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_fr")) {
4 function string_plural_select_fr($n){
5         $n = intval($n);
6         if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else  { return 2; }
7 }}
8 $a->strings['WebRTC Videochat'] = 'Tchat vidéo WebRTC';
9 $a->strings['Save Settings'] = 'Enregistrer les paramètres';
10 $a->strings['WebRTC Base URL'] = 'URL de base WebRTC';
11 $a->strings['Page your users will create a WebRTC chat room on. For example you could use https://live.mayfirst.org .'] = 'La page sur laquelle vos utilisateurs créeront un salon de discussion WebRTC. Par exemple, vous pouvez utiliser https://live.mayfirst.org .';
12 $a->strings['Video Chat'] = 'Chat Video';
13 $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 est un outil de conférence audio et vidéo qui fonctionne sur tous les navigateurs web modernes. Il faut seulement créer un nouveau salon de discussion et envoyer le lien à quelqu\'un avec qui vous souhaitez discuter.';
14 $a->strings['Please contact your friendica admin and send a reminder to configure the WebRTC addon.'] = 'Merci de contacter votre admin Friendica et lui envoyer un rappel pour configurer l\'extension WebRTC.';