mirror of
https://github.com/moodle/moodle.git
synced 2025-01-29 19:50:14 +01:00
bcf7ee7a97
Good start! Thanks, Sebastien.
19 lines
639 B
PHP
19 lines
639 B
PHP
<?PHP // $Id$
|
|
|
|
#------------------------------------------------------------
|
|
$string[modulename] = "Question";
|
|
$string[modulenameplural] = "Questions";
|
|
#------------------------------------------------------------
|
|
|
|
$string[answered] = "Répondu";
|
|
$string[choice1] = "Première réponse";
|
|
$string[choice2] = "Seconde réponse";
|
|
$string[choicename] = "Nom de la question";
|
|
$string[choicetext] = "Texte de la question";
|
|
$string[notanswered] = "Pas encore répondu";
|
|
$string[responses] = "Réponses";
|
|
$string[responsesto] = "Réponses à \$a";
|
|
$string[savemychoice] = "Enregistrer ma réponse";
|
|
$string[viewallresponses] = "Voire les \$a réponses";
|
|
?>
|