[apps/code/i18N] Alphabetical rearrangement

This commit is contained in:
Léa Saviot
2020-01-20 11:28:22 +01:00
parent 373409b50e
commit 8742ea9d25
3 changed files with 4 additions and 4 deletions

View File

@@ -56,8 +56,8 @@ PythonImportMath = "Import math module"
PythonImportTurtle = "Import turtle module"
PythonImportFromCmath = "Import cmath module"
PythonImportFromKandinsky = "Import kandinsky module"
PythonImportFromRandom = "Import random module"
PythonImportFromMath = "Import math module"
PythonImportFromRandom = "Import random module"
PythonImportFromTurtle = "Import turtle module"
PythonIndex = "Index of the first occurrence"
PythonInput = "Prompt a value"

View File

@@ -54,14 +54,14 @@ PythonCommandHex = "hex(x)"
PythonCommandImag = "z.imag"
PythonCommandImagWithoutArg = "\x11.imag"
PythonCommandImportFromCmath = "from cmath import *"
PythonCommandImportFromMath = "from math import *"
PythonCommandImportFromKandinsky = "from kandinsky import *"
PythonCommandImportFromMath = "from math import *"
PythonCommandImportFromRandom = "from random import *"
PythonCommandImportFromTurtle = "from turtle import *"
PythonCommandImportCmath = "import cmath"
PythonCommandImportKandinsky = "import kandinsky"
PythonCommandImportRandom = "import random"
PythonCommandImportMath = "import math"
PythonCommandImportRandom = "import random"
PythonCommandImportTurtle = "import turtle"
PythonCommandIndex = "index(x,start,end)"
PythonCommandInput = "input(\"text\")"

View File

@@ -1,6 +1,6 @@
MathModule = "math"
CmathModule = "cmath"
KandinskyModule = "kandinsky"
MathModule = "math"
TurtleModule = "turtle"
ForLoopMenu = "For"
IfStatementMenu = "If"