forked from friendica/deprecated-addons
new file: windowsphonepush/lang/C/messages.po
new file: windowsphonepush/lang/ar/messages.po new file: windowsphonepush/lang/ar/strings.php new file: windowsphonepush/lang/cs/messages.po new file: windowsphonepush/lang/cs/strings.php new file: windowsphonepush/lang/da-dk/messages.po new file: windowsphonepush/lang/da-dk/strings.php new file: windowsphonepush/lang/de/messages.po new file: windowsphonepush/lang/de/strings.php new file: windowsphonepush/lang/es/messages.po new file: windowsphonepush/lang/es/strings.php new file: windowsphonepush/lang/fi-fi/messages.po new file: windowsphonepush/lang/fi-fi/strings.php new file: windowsphonepush/lang/fr/messages.po new file: windowsphonepush/lang/fr/strings.php new file: windowsphonepush/lang/hu/messages.po new file: windowsphonepush/lang/hu/strings.php new file: windowsphonepush/lang/it/messages.po new file: windowsphonepush/lang/it/strings.php new file: windowsphonepush/lang/nl/messages.po new file: windowsphonepush/lang/nl/strings.php new file: windowsphonepush/lang/pl/messages.po new file: windowsphonepush/lang/pl/strings.php new file: windowsphonepush/lang/ro/messages.po new file: windowsphonepush/lang/ro/strings.php new file: windowsphonepush/lang/sv/messages.po new file: windowsphonepush/lang/sv/strings.php new file: windowsphonepush/lang/zh-cn/messages.po new file: windowsphonepush/lang/zh-cn/strings.php new file: windowsphonepush/templates/settings.tpl new file: windowsphonepush/windowsphonepush.php
This commit is contained in:
parent
3686a143f9
commit
06fcd69f2e
31 changed files with 1164 additions and 0 deletions
38
windowsphonepush/lang/fr/messages.po
Normal file
38
windowsphonepush/lang/fr/messages.po
Normal file
|
@ -0,0 +1,38 @@
|
|||
# ADDON windowsphonepush
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica windowsphonepush addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Hypolite Petovan <hypolite@mrpetovan.com>, 2022
|
||||
# Marie Olive <lacellule101@gmail.com>, 2018
|
||||
# Tubuntu, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:16-0500\n"
|
||||
"PO-Revision-Date: 2014-10-31 13:43+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"
|
||||
|
||||
#: windowsphonepush.php:102
|
||||
msgid "Enable WindowsPhonePush Addon"
|
||||
msgstr "Activer l'extension WindowsPhonePush"
|
||||
|
||||
#: windowsphonepush.php:103
|
||||
msgid "Push text of new item"
|
||||
msgstr "Pousse le texte du nouvel élément"
|
||||
|
||||
#: windowsphonepush.php:104
|
||||
msgid "Device URL"
|
||||
msgstr "URL de périphérique"
|
||||
|
||||
#: windowsphonepush.php:109
|
||||
msgid "WindowsPhonePush Settings"
|
||||
msgstr "Paramètres WindowsPhonePush"
|
11
windowsphonepush/lang/fr/strings.php
Normal file
11
windowsphonepush/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['Enable WindowsPhonePush Addon'] = 'Activer l\'extension WindowsPhonePush';
|
||||
$a->strings['Push text of new item'] = 'Pousse le texte du nouvel élément';
|
||||
$a->strings['Device URL'] = 'URL de périphérique';
|
||||
$a->strings['WindowsPhonePush Settings'] = 'Paramètres WindowsPhonePush';
|
Loading…
Add table
Add a link
Reference in a new issue