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:
Jim Warner
2022-06-15 00:00:00 -05:00
committed by Craig Small
parent 1a28b4cb8d
commit 3fa1f4c34c
3 changed files with 9 additions and 10 deletions

View File

@@ -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));