mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-05-16 12:30:09 +02:00
Properly print already-translated TRANS-type system variables in TRANSLATE GENERATE output.
Remind unit tests / tests (push) Successful in 36s
Remind unit tests / tests (push) Successful in 36s
This commit is contained in:
@@ -1268,13 +1268,13 @@ void GenerateSysvarTranslationTemplates(void)
|
||||
continue;
|
||||
}
|
||||
printf("SET $%s ", SysVarArr[i].name);
|
||||
print_escaped_string_helper(stdout, msg, 1);
|
||||
print_escaped_string_helper(stdout, tr(msg), 1);
|
||||
printf("\n");
|
||||
} else if (!strcmp(SysVarArr[i].name, "Hplu") ||
|
||||
!strcmp(SysVarArr[i].name, "Mplu")) {
|
||||
msg = * (char const **) SysVarArr[i].value;
|
||||
printf("SET $%s ", SysVarArr[i].name);
|
||||
print_escaped_string_helper(stdout, msg, 1);
|
||||
print_escaped_string_helper(stdout, tr(msg), 1);
|
||||
printf("\n");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user