diff --git a/apps/code/catalog.de.i18n b/apps/code/catalog.de.i18n index 99b55f8ea..ee77db34b 100644 --- a/apps/code/catalog.de.i18n +++ b/apps/code/catalog.de.i18n @@ -39,7 +39,6 @@ PythonGamma = "Gamma function" PythonHex = "Convert integer to hexadecimal" PythonImportCmath = "Import cmath module" PythonImportMath = "Import math module" -PythonInput = "Ask an input" PythonInt = "Convert x to an integer" PythonIsFinite = "Check if x is finite" PythonIsInfinite = "Check if x is infinity" diff --git a/apps/code/catalog.en.i18n b/apps/code/catalog.en.i18n index 99b55f8ea..ee77db34b 100644 --- a/apps/code/catalog.en.i18n +++ b/apps/code/catalog.en.i18n @@ -39,7 +39,6 @@ PythonGamma = "Gamma function" PythonHex = "Convert integer to hexadecimal" PythonImportCmath = "Import cmath module" PythonImportMath = "Import math module" -PythonInput = "Ask an input" PythonInt = "Convert x to an integer" PythonIsFinite = "Check if x is finite" PythonIsInfinite = "Check if x is infinity" diff --git a/apps/code/catalog.es.i18n b/apps/code/catalog.es.i18n index 99b55f8ea..ee77db34b 100644 --- a/apps/code/catalog.es.i18n +++ b/apps/code/catalog.es.i18n @@ -39,7 +39,6 @@ PythonGamma = "Gamma function" PythonHex = "Convert integer to hexadecimal" PythonImportCmath = "Import cmath module" PythonImportMath = "Import math module" -PythonInput = "Ask an input" PythonInt = "Convert x to an integer" PythonIsFinite = "Check if x is finite" PythonIsInfinite = "Check if x is infinity" diff --git a/apps/code/catalog.fr.i18n b/apps/code/catalog.fr.i18n index 6b3984c6b..70d7e6fe5 100644 --- a/apps/code/catalog.fr.i18n +++ b/apps/code/catalog.fr.i18n @@ -39,7 +39,6 @@ PythonGamma = "Fonction gamma" PythonHex = "Conversion entier en hexadécimal" PythonImportCmath = "Importation du module cmath" PythonImportMath = "Importation du module math" -PythonInput = "Demande de saisie" PythonInt = "Conversion en entier" PythonIsFinite = "Teste si x est fini" PythonIsInfinite = "Teste si x est infini" diff --git a/apps/code/catalog.pt.i18n b/apps/code/catalog.pt.i18n index 99b55f8ea..ee77db34b 100644 --- a/apps/code/catalog.pt.i18n +++ b/apps/code/catalog.pt.i18n @@ -39,7 +39,6 @@ PythonGamma = "Gamma function" PythonHex = "Convert integer to hexadecimal" PythonImportCmath = "Import cmath module" PythonImportMath = "Import math module" -PythonInput = "Ask an input" PythonInt = "Convert x to an integer" PythonIsFinite = "Check if x is finite" PythonIsInfinite = "Check if x is infinity" diff --git a/apps/code/catalog.universal.i18n b/apps/code/catalog.universal.i18n index 1b778d08a..a5600f3bb 100644 --- a/apps/code/catalog.universal.i18n +++ b/apps/code/catalog.universal.i18n @@ -39,7 +39,6 @@ PythonCommandImportFromMath = "from math import *" PythonCommandHex = "hex(x)" PythonCommandImportCmath = "import cmath" PythonCommandImportMath = "import math" -PythonCommandInput = "input('text')" PythonCommandInt = "int(x)" PythonCommandIsFinite = "isfinite(x)" PythonCommandIsInfinite = "isinf(x)" diff --git a/apps/code/toolbox.cpp b/apps/code/toolbox.cpp index 9ba72d9f2..734c091af 100644 --- a/apps/code/toolbox.cpp +++ b/apps/code/toolbox.cpp @@ -8,7 +8,7 @@ extern "C" { namespace Code { -static constexpr int catalogChildrenCount = 74; +static constexpr int catalogChildrenCount = 73; static constexpr int MathModuleChildrenCount = 42; static constexpr int CMathModuleChildrenCount = 12; static constexpr int conditionsChildrenCount = 9; @@ -156,7 +156,6 @@ const ToolboxMessageTree catalogChildren[catalogChildrenCount] = { ToolboxMessageTree(I18n::Message::PythonCommandHex, I18n::Message::PythonHex, I18n::Message::PythonCommandHex), ToolboxMessageTree(I18n::Message::PythonCommandImportCmath, I18n::Message::PythonImportCmath, I18n::Message::PythonCommandImportCmath), ToolboxMessageTree(I18n::Message::PythonCommandImportMath, I18n::Message::PythonImportMath, I18n::Message::PythonCommandImportMath), - ToolboxMessageTree(I18n::Message::PythonCommandInput, I18n::Message::PythonInput, I18n::Message::PythonCommandInput), ToolboxMessageTree(I18n::Message::PythonCommandInt, I18n::Message::PythonInt, I18n::Message::PythonCommandInt), ToolboxMessageTree(I18n::Message::PythonCommandIsFinite, I18n::Message::PythonIsFinite, I18n::Message::PythonCommandIsFinite), ToolboxMessageTree(I18n::Message::PythonCommandIsInfinite, I18n::Message::PythonIsInfinite, I18n::Message::PythonCommandIsInfinite), diff --git a/apps/code/toolbox.universal.i18n b/apps/code/toolbox.universal.i18n index b4d0ddef3..f546cf39c 100644 --- a/apps/code/toolbox.universal.i18n +++ b/apps/code/toolbox.universal.i18n @@ -1,6 +1,5 @@ MathModule = "math" CmathModule = "cmath" -RandomModule = "RandomModule" ForLoopMenu = "For" IfStatementMenu = "If" WhileLoopMenu = "While"