diff options
author | Jacob Moody <moody@posixcafe.org> | 2023-04-25 15:56:43 +0000 |
---|---|---|
committer | Jacob Moody <moody@posixcafe.org> | 2023-04-25 15:56:43 +0000 |
commit | bd2ef36d976db0a842e31af309f0ef1439f30a89 (patch) | |
tree | 1991cc6afed5e89982d927980f077d6d80fdff12 /sys/src | |
parent | 4bad50ce68930c7a1d3136b0970fab73c90483e9 (diff) |
ktrans: correct 'exit' text (thanks Keegan)
終了 is more appropriate then 出口 in this context.
Diffstat (limited to 'sys/src')
-rw-r--r-- | sys/src/cmd/ktrans/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/src/cmd/ktrans/main.c b/sys/src/cmd/ktrans/main.c index bd87992cc..c1885289a 100644 --- a/sys/src/cmd/ktrans/main.c +++ b/sys/src/cmd/ktrans/main.c @@ -386,11 +386,11 @@ displaythread(void*) p.y += f->height; } - p.x = r.min.x - stringwidth(f, "出口")/2; + p.x = r.min.x - stringwidth(f, "終了")/2; p.y = screen->r.max.y - f->height; exitr = Rpt(Pt(0, p.y), screen->r.max); draw(screen, exitr, board, nil, ZP); - string(screen, p, text, ZP, f, "出口"); + string(screen, p, text, ZP, f, "終了"); flushimage(display, 1); break; } |