friendica-addons/tictac/lang/fr/strings.php

10 lines
232 B
PHP
Raw Normal View History

<?php
if(! function_exists("string_plural_select_fr")) {
function string_plural_select_fr($n){
$n = intval($n);
return intval($n > 1);
}}
2021-10-10 06:27:53 +00:00
$a->strings['You won!'] = 'Vous avez gagné !';
$a->strings['I won!'] = 'Jai gagné !';