瀏覽代碼

Fix character ruler for too many rows

3d-gussner 3 年之前
父節點
當前提交
c11e06b2d4
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lang/lang-check.py

+ 2 - 2
lang/lang-check.py

@@ -61,10 +61,10 @@ def print_source_translation(source, translation, wrapped_source, wrapped_transl
         print_truncated(translation, cols)
     else:
         print(' source text:')
-        print('   |01234567890123456789|')
+        print('     |01234567890123456789|')
         print_wrapped(wrapped_source, rows, cols)
         print(' translated text:')
-        print('   |01234567890123456789|')
+        print('     |01234567890123456789|')
         print_wrapped(wrapped_translation, rows, cols)
     print()