From 2ab7680dd288a8f9496dcd587dbf02d7b72d4470 Mon Sep 17 00:00:00 2001 From: Fredokun Date: Wed, 2 Dec 2020 15:34:44 +0100 Subject: [PATCH] better error message for tuple assignment (aka the JCB2 commit) --- mrpython/typechecking/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mrpython/typechecking/translate.py b/mrpython/typechecking/translate.py index 3159f9c..b7f09fa 100644 --- a/mrpython/typechecking/translate.py +++ b/mrpython/typechecking/translate.py @@ -79,7 +79,7 @@ def set_translator_locale(locale_key): , "The signature of function '{}' contains some characters at the end that I do not understand: {}" : { 'fr' : "La signature de la fonction '{}' contient des caractères que je ne comprends pas à la fin: {}" } , "Assignment problem" : { 'fr' : "Problème d'affectation" } - , "This assignment to variable '{}' is forbidden in Python101." : { 'fr' : "Cette affectation de la variable '{}' n'est pas permise en Python101 (uniquement disponible en mode expert)." } + , "This assignment to variable '{}' is forbidden in Python101." : { 'fr' : "Cette affectation de la variable '{}' n'est pas permise en mode étudiant, il faut déclarer une nouvelle variable (sinon passez en mode expert)." } , "Expecting type '{}' but found '{}': there is a risk of imprecision (but it's maybe not a bug)" : { 'fr' : "J'attends le type '{}' mais j'ai trouvé '{}': il y a un risque d'imprécision (mais ce n'est peut-être pas une erreur)" } , "Imprecise typing" : { 'fr' : "Typage imprécis" } , "Expression in instruction position" : { 'fr' : "Expression en position instruction" }