mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 09:54:27 +02:00
FR translation for the ifttt, newmemberwidge, securemail and webrtc addons added
This commit is contained in:
parent
88d40bc34a
commit
0ecb576ff9
8 changed files with 312 additions and 0 deletions
56
webrtc/lang/fr/messages.po
Normal file
56
webrtc/lang/fr/messages.po
Normal file
|
@ -0,0 +1,56 @@
|
|||
# ADDON webrtc
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica webrtc addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Hypolite Petovan <hypolite@mrpetovan.com>, 2022
|
||||
# StefOfficiel <pichard.stephane@free.fr>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-04-29 15:56+0200\n"
|
||||
"PO-Revision-Date: 2014-06-23 13:05+0000\n"
|
||||
"Last-Translator: Hypolite Petovan <hypolite@mrpetovan.com>, 2022\n"
|
||||
"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#: webrtc.php:18
|
||||
msgid "WebRTC Videochat"
|
||||
msgstr "Tchat vidéo WebRTC"
|
||||
|
||||
#: webrtc.php:24
|
||||
msgid "Save Settings"
|
||||
msgstr "Enregistrer les paramètres"
|
||||
|
||||
#: webrtc.php:25
|
||||
msgid "WebRTC Base URL"
|
||||
msgstr "URL de base WebRTC"
|
||||
|
||||
#: webrtc.php:25
|
||||
msgid ""
|
||||
"Page your users will create a WebRTC chat room on. For example you could use"
|
||||
" https://live.mayfirst.org ."
|
||||
msgstr ""
|
||||
|
||||
#: webrtc.php:44
|
||||
msgid "Video Chat"
|
||||
msgstr "Chat Video"
|
||||
|
||||
#: webrtc.php:45
|
||||
msgid ""
|
||||
"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:47
|
||||
msgid ""
|
||||
"Please contact your friendica admin and send a reminder to configure the "
|
||||
"WebRTC addon."
|
||||
msgstr ""
|
11
webrtc/lang/fr/strings.php
Normal file
11
webrtc/lang/fr/strings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_fr")) {
|
||||
function string_plural_select_fr($n){
|
||||
$n = intval($n);
|
||||
if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
|
||||
}}
|
||||
$a->strings['WebRTC Videochat'] = 'Tchat vidéo WebRTC';
|
||||
$a->strings['Save Settings'] = 'Enregistrer les paramètres';
|
||||
$a->strings['WebRTC Base URL'] = 'URL de base WebRTC';
|
||||
$a->strings['Video Chat'] = 'Chat Video';
|
Loading…
Add table
Add a link
Reference in a new issue