]> git.mxchange.org Git - friendica-addons.git/blob - tictac/lang/fr/strings.php
Merge pull request 'HU and IT translation updates' (#1371) from tobias/friendica...
[friendica-addons.git] / tictac / 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['Three Dimensional Tic-Tac-Toe'] = 'Morpion tri-dimensionnel';
9 $a->strings['3D Tic-Tac-Toe'] = 'Morpion 3D';
10 $a->strings['New game'] = 'Nouvelle partie';
11 $a->strings['New game with handicap'] = 'Nouvelle partie avec handicap';
12 $a->strings['Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '] = 'Le morpion tri-dimensionnel est comme le jeu traditionnel, si ce n\'est qu\'il se joue sur plusieurs niveaux simultanément.';
13 $a->strings['In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.'] = 'Dans ce cas, il y a trois niveaux. Vous pouvez gagner en alignant trois signes à la suite sur n\'importe quel niveau, aussi bien vers le haut, vers le bas, qu\'en diagonale à travers les différents niveaux.';
14 $a->strings['The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.'] = 'Le jeu avec handicap désactive la position centrale du niveau du milieu car le joueur occupant cette case a souvent un avantage disproportionné.';
15 $a->strings['You go first...'] = 'Vous commencez...';
16 $a->strings['I\'m going first this time...'] = 'Je commence cette fois-ci...';
17 $a->strings['You won!'] = 'Vous avez gagné !';
18 $a->strings['"Cat" game!'] = 'Match nul !';
19 $a->strings['I won!'] = 'J’ai gagné !';