diff options
author | joe <rbo@gmx.us> | 2025-09-01 11:14:49 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-09-01 11:14:49 +0200 |
commit | fbf92ec019b8c25268623078b49ae60153c25df8 (patch) | |
tree | 0a1d96e8044a5600b8a18c016cd01be7d1c6c2db | |
parent | capital update (diff) | |
download | hardflip-rdr.tar.gz hardflip-rdr.tar.bz2 hardflip-rdr.tar.xz hardflip-rdr.tar.zst hardflip-rdr.zip |
uprdr
-rw-r--r-- | src/i_ui.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/i_ui.go b/src/i_ui.go index 915631d..57a8a1e 100644 --- a/src/i_ui.go +++ b/src/i_ui.go @@ -296,11 +296,11 @@ func i_draw_welcome_box(ui HardUI) { if l < l_max { l = l_max }; if r > r_max { r = r_max } i_draw_text(ui.s, l, line, r, line, ui.style[DEF_STYLE], text) if line += 2; line > b_max { return } - text = `Welcome to hardflip!` + text = `welcome to hardflip!` l, r = ui.dim[W] / 2 - len(text) / 2, ui.dim[W] / 2 + len(text) / 2 + 1 if l < l_max { l = l_max }; if r > r_max { r = r_max } i_draw_text(ui.s, l, line, r, line, ui.style[DEF_STYLE], text) - text = `Please select the gpg key ID to be used` + text = `please select the gpg key ID to be used` if line += 1; line > b_max { return } l, r = ui.dim[W] / 2 - len(text) / 2, ui.dim[W] / 2 + len(text) / 2 + 1 if l < l_max { l = l_max }; if r > r_max { r = r_max } @@ -310,12 +310,12 @@ func i_draw_welcome_box(ui HardUI) { l, r = ui.dim[W] / 2 - len(text) / 2, ui.dim[W] / 2 + len(text) / 2 + 1 if l < l_max { l = l_max }; if r > r_max { r = r_max } i_draw_text(ui.s, l, line, r, line, ui.style[DEF_STYLE], text) - text = `Set gpg key can be modified in the config file` + text = `set gpg key can be modified in the config file` if line += 1; line > b_max { return } l, r = ui.dim[W] / 2 - len(text) / 2, ui.dim[W] / 2 + len(text) / 2 + 1 if l < l_max { l = l_max }; if r > r_max { r = r_max } i_draw_text(ui.s, l, line, r, line, ui.style[DEF_STYLE], text) - text = `If you don't want to use GnuPG for password` + text = `if you don't want to use GnuPG for password` if line += 2; line > b_max { return } l, r = ui.dim[W] / 2 - len(text) / 2, ui.dim[W] / 2 + len(text) / 2 + 1 if l < l_max { l = l_max }; if r > r_max { r = r_max } |