From 4709767ce3646adbe84e8f9a06824edcfd55aa64 Mon Sep 17 00:00:00 2001 From: UndeadMaelys Date: Mon, 17 May 2021 06:58:04 +0200 Subject: [PATCH] Added some spaces to better the view --- jatranuge.lua | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/jatranuge.lua b/jatranuge.lua index 7d2564c..e8fc025 100644 --- a/jatranuge.lua +++ b/jatranuge.lua @@ -196,23 +196,23 @@ end -- PROGRAM START -print("Specific Mode?") -print(" (0) Arabic") -print(" (1) Japanese Romaji") -print(" (2) Japanese Kana") -print(" (3) Japanese Kanji") +print(" Specific Mode?") +print(" (0) Arabic") +print(" (1) Japanese Romaji") +print(" (2) Japanese Kana") +print(" (3) Japanese Kanji") setmode = io.read() -print("Tiers of 10 colored? (Y/n)") +print(" Tiers of 10 colored? (Y/n)") coloriz = io.read() -print("Show equivalences? (Y/n)") +print(" Show equivalences? (Y/n)") skip = io.read() -print("Ready?") +print(" Ready?") io.read() if string.upper(coloriz) == "N" then @@ -250,7 +250,7 @@ while 1 do -- ASK print("") e, d, c, b, a = GetNumber(number,arabic_script) - print( + print(" ".. Colorize( e, COLOR.HighGreen).. Colorize( d, COLOR.HighPurple).. Colorize( c, COLOR.HighRed).. @@ -302,6 +302,7 @@ while 1 do Colorize( b, COLOR.HighYellow).. Colorize( a, COLOR.HighCyan) ) + print("") io.read() end end