summaryrefslogtreecommitdiff
path: root/src/gmrequest.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-22 14:29:20 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-22 14:29:20 +0200
commit06156b3034353cc1d62b4f825b1fcad799e944eb (patch)
tree26f7476ee50610853ac8fbf0f54c420cfb7cfc99 /src/gmrequest.c
parentd3ab1ae8b92433ec711c1396838b32f2f9f35d7b (diff)
Lang: Began replacing UI strings with IDs
IssueID #192
Diffstat (limited to 'src/gmrequest.c')
-rw-r--r--src/gmrequest.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gmrequest.c b/src/gmrequest.c
index 4631640e..f065f935 100644
--- a/src/gmrequest.c
+++ b/src/gmrequest.c
@@ -395,6 +395,10 @@ static const iBlock *replaceVariables_(const iBlock *block) {
395 repl = range_CStr("Shift+"); 395 repl = range_CStr("Shift+");
396#endif 396#endif
397 } 397 }
398 else {
399 /* Translated string. */
400 repl = range_String(string_Lang(cstr_Rangecc(name)));
401 }
398 remove_Block(replaced, span.start, size_Range(&span)); 402 remove_Block(replaced, span.start, size_Range(&span));
399 insertData_Block(replaced, span.start, repl.start, size_Range(&repl)); 403 insertData_Block(replaced, span.start, repl.start, size_Range(&repl));
400 iZap(m); 404 iZap(m);