diff --git a/apps/code/catalog.de.i18n b/apps/code/catalog.de.i18n index f290531e9..10ad38dae 100644 --- a/apps/code/catalog.de.i18n +++ b/apps/code/catalog.de.i18n @@ -8,6 +8,7 @@ PythonSymbolExp = "Bitwise exclusive or" PythonVerticalBar = "Bitwise or" PythonImag = "Imaginary part of z" PythonReal = "Real part of z" +PythonSingleQuote = "Single quote" PythonAbs = "Absolute value/Magnitude" PythonAcos = "Arc cosine" PythonAcosh = "Arc hyperbolic cosine" diff --git a/apps/code/catalog.en.i18n b/apps/code/catalog.en.i18n index f290531e9..10ad38dae 100644 --- a/apps/code/catalog.en.i18n +++ b/apps/code/catalog.en.i18n @@ -8,6 +8,7 @@ PythonSymbolExp = "Bitwise exclusive or" PythonVerticalBar = "Bitwise or" PythonImag = "Imaginary part of z" PythonReal = "Real part of z" +PythonSingleQuote = "Single quote" PythonAbs = "Absolute value/Magnitude" PythonAcos = "Arc cosine" PythonAcosh = "Arc hyperbolic cosine" diff --git a/apps/code/catalog.es.i18n b/apps/code/catalog.es.i18n index f290531e9..10ad38dae 100644 --- a/apps/code/catalog.es.i18n +++ b/apps/code/catalog.es.i18n @@ -8,6 +8,7 @@ PythonSymbolExp = "Bitwise exclusive or" PythonVerticalBar = "Bitwise or" PythonImag = "Imaginary part of z" PythonReal = "Real part of z" +PythonSingleQuote = "Single quote" PythonAbs = "Absolute value/Magnitude" PythonAcos = "Arc cosine" PythonAcosh = "Arc hyperbolic cosine" diff --git a/apps/code/catalog.fr.i18n b/apps/code/catalog.fr.i18n index 3c46944b9..bb2d43644 100644 --- a/apps/code/catalog.fr.i18n +++ b/apps/code/catalog.fr.i18n @@ -8,6 +8,7 @@ PythonSymbolExp = "Ou exclusif logique" PythonVerticalBar = "Ou logique" PythonImag = "Partie imaginaire de z" PythonReal = "Partie réelle de z" +PythonSingleQuote = "Apostrophe" PythonAbs = "Valeur absolue/Module" PythonAcos = "Arc cosinus" PythonAcosh = "Arc cosinus hyperbolique" diff --git a/apps/code/catalog.pt.i18n b/apps/code/catalog.pt.i18n index f290531e9..ce4f9b340 100644 --- a/apps/code/catalog.pt.i18n +++ b/apps/code/catalog.pt.i18n @@ -6,6 +6,7 @@ PythonTab = "Tabulation" PythonAmpersand = "Bitwise and" PythonSymbolExp = "Bitwise exclusive or" PythonVerticalBar = "Bitwise or" +PythonSingleQuote = "Single quote" PythonImag = "Imaginary part of z" PythonReal = "Real part of z" PythonAbs = "Absolute value/Magnitude" diff --git a/apps/code/catalog.universal.i18n b/apps/code/catalog.universal.i18n index 2fd925345..819906c7c 100644 --- a/apps/code/catalog.universal.i18n +++ b/apps/code/catalog.universal.i18n @@ -6,6 +6,7 @@ PythonCommandPercent = "%" PythonCommandSymbolExp = "^" PythonCommandVerticalBar = "|" PythonCommand1J = "1j" +PythonCommandSingleQuote = "'x'" PythonCommandAbs = "abs(x)" PythonCommandAcos = "acos(x)" PythonCommandAcosh = "acosh(x)" diff --git a/apps/code/python_toolbox.cpp b/apps/code/python_toolbox.cpp index a159e3f26..82c68d0bc 100644 --- a/apps/code/python_toolbox.cpp +++ b/apps/code/python_toolbox.cpp @@ -8,7 +8,7 @@ extern "C" { namespace Code { -static constexpr int catalogChildrenCount = 82; +static constexpr int catalogChildrenCount = 83; static constexpr int MathModuleChildrenCount = 43; static constexpr int KandinskyModuleChildrenCount = 7; static constexpr int CMathModuleChildrenCount = 13; @@ -138,6 +138,7 @@ const ToolboxMessageTree catalogChildren[catalogChildrenCount] = { ToolboxMessageTree(I18n::Message::PythonCommandAmpersand, I18n::Message::PythonAmpersand, I18n::Message::PythonCommandAmpersand), ToolboxMessageTree(I18n::Message::PythonCommandSymbolExp, I18n::Message::PythonSymbolExp, I18n::Message::PythonCommandSymbolExp), ToolboxMessageTree(I18n::Message::PythonCommandVerticalBar, I18n::Message::PythonVerticalBar, I18n::Message::PythonCommandVerticalBar), + ToolboxMessageTree(I18n::Message::PythonCommandSingleQuote, I18n::Message::PythonSingleQuote, I18n::Message::PythonCommandSingleQuote), ToolboxMessageTree(I18n::Message::PythonCommandAbs, I18n::Message::PythonAbs, I18n::Message::PythonCommandAbs), ToolboxMessageTree(I18n::Message::PythonCommandAcos, I18n::Message::PythonAcos, I18n::Message::PythonCommandAcos), ToolboxMessageTree(I18n::Message::PythonCommandAcosh, I18n::Message::PythonAcosh, I18n::Message::PythonCommandAcosh),