From cdfa028521f1292d84eac7dbf530b4b6b87007cd Mon Sep 17 00:00:00 2001 From: Leah Amelia Chen Date: Thu, 27 Feb 2025 08:38:06 +0100 Subject: [PATCH] gtk: use language-neutral arrows for resize overlays The meaning of "c" and "r" can be somewhat cryptic to non-native English speakers as it may not be immediately obvious that "c" stands for "columns", and "r" stands for "rows". I propose replacing them with left-right and up-down double-headed arrows that convey the same meaning, but in a truly language-neutral manner. Related to #2357 --- src/apprt/gtk/ResizeOverlay.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apprt/gtk/ResizeOverlay.zig b/src/apprt/gtk/ResizeOverlay.zig index 7a02e2bc4..c9a33cb04 100644 --- a/src/apprt/gtk/ResizeOverlay.zig +++ b/src/apprt/gtk/ResizeOverlay.zig @@ -114,7 +114,7 @@ fn gtkUpdate(ud: ?*anyopaque) callconv(.C) c_int { var buf: [32]u8 = undefined; const text = std.fmt.bufPrintZ( &buf, - "{d}c ⨯ {d}r", + "{d} ↔ ⨯ {d} ↕", .{ grid_size.columns, grid_size.rows,