From 79f6095bcc1963a429f8fd19f67b1a6d201440f9 Mon Sep 17 00:00:00 2001 From: 3d-gussner <3d.gussner@gmail.com> Date: Mon, 26 Apr 2021 11:39:37 +0200 Subject: [PATCH] Add character ruler --- lang/lang-check.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lang/lang-check.py b/lang/lang-check.py index b789d11ad..94ebc439b 100755 --- a/lang/lang-check.py +++ b/lang/lang-check.py @@ -9,7 +9,10 @@ # 9 June 2020, 3d-gussner, Wrap text to 20 char and rows # 9 June 2020, 3d-gussner, colored output # 2 Apr. 2021, 3d-gussner, Fix and improve text warp -# 22 Apr. 2021, DRracer, add English source to output +# 22 Apr. 2021, DRracer , add English source to output +# 23 Apr. 2021, wavexx , improve +# 24 Apr. 2021, wavexx , improve +# 26 Apr. 2021, 3d-gussner, add character ruler ############################################################################# # """Check lang files.""" @@ -51,13 +54,17 @@ def print_truncated(text, cols): def print_source_translation(source, translation, wrapped_source, wrapped_translation, rows, cols): if rows == 1: print(' source text:') + print(' |01234567890123456789|') print_truncated(source, cols) print(' translated text:') + print(' |01234567890123456789|') print_truncated(translation, cols) else: print(' source text:') + print(' |01234567890123456789|') print_wrapped(wrapped_source, rows, cols) print(' translated text:') + print(' |01234567890123456789|') print_wrapped(wrapped_translation, rows, cols) print()