mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-02 16:11:09 +00:00
19 lines
1.3 KiB
PHP
19 lines
1.3 KiB
PHP
<?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['Post to Wordpress'] = 'Publier sur Wordpress';
|
||
$a->strings['Enable Wordpress Post Addon'] = 'Activer l\'extension WordPress';
|
||
$a->strings['Wordpress username'] = 'Nom d\'utilisateur WordPress';
|
||
$a->strings['Wordpress password'] = 'Mot de passe WordPress';
|
||
$a->strings['WordPress API URL'] = 'URL de l\'API WordPress';
|
||
$a->strings['Post to Wordpress by default'] = 'Publier sur WordPress par défaut';
|
||
$a->strings['Provide a backlink to the Friendica post'] = 'Fournit un rétrolien vers la publication Friendica';
|
||
$a->strings['Text for the backlink, e.g. Read the original post and comment stream on Friendica.'] = 'Le texte du rétrolien, par exemple Lire la publication d\'origine et le fil de commentaires sur Friendica.';
|
||
$a->strings['Don\'t post messages that are too short'] = 'Ne pas publier de message trop court';
|
||
$a->strings['Wordpress Export'] = 'Export WordPress';
|
||
$a->strings['Read the original post and comment stream on Friendica'] = 'Lire la publication d\'origine et le fil de commentaires sur Friendica';
|
||
$a->strings['Post from Friendica'] = 'Publier depuis Friendica';
|