top: don't make translatable text subject to a #define <=== port of newlib b587d946
______________________________ original newlib message While it is acceptable to make text usage conditional, one must never make the text itself conditional. After all, the translators must be presented with all of the text so the opportunity to translate it is never lost. [ one wonders who the idiot was that did this anyway ] Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
@@ -5675,7 +5675,11 @@ static void keys_global (int ch) {
|
||||
break;
|
||||
case 'Y':
|
||||
if (!Inspect.total)
|
||||
ioline(N_txt(YINSP_noents_txt));
|
||||
#ifndef INSP_OFFDEMO
|
||||
ioline(N_txt(YINSP_noent1_txt));
|
||||
#else
|
||||
ioline(N_txt(YINSP_noent2_txt));
|
||||
#endif
|
||||
else {
|
||||
def = w->ppt[w->begtask]->tid;
|
||||
pid = get_int(fmtmk(N_fmt(YINSP_pidsee_fmt), def));
|
||||
|
||||
Reference in New Issue
Block a user