Fix missing translation macros.

This commit is contained in:
Milan Broz
2021-11-10 13:28:29 +01:00
parent 7086c414bc
commit a364355c16
6 changed files with 11 additions and 10 deletions

View File

@@ -116,8 +116,9 @@ static int _dialog(const char *msg, void *usrptr, int default_answer)
set_int_block(0);
if (isatty(STDIN_FILENO)) {
log_std("\nWARNING!\n========\n");
log_std("%s\n\nAre you sure? (Type 'yes' in capital letters): ", msg);
log_std(_("\nWARNING!\n========\n"));
/* TRANSLATORS: User must type "YES" (in capital letters), do not translate this word. */
log_std(_("%s\n\nAre you sure? (Type 'yes' in capital letters): "), msg);
fflush(stdout);
if(getline(&answer, &size, stdin) == -1) {
r = 0;