diff --git a/top/top.c b/top/top.c index 39c511ad..9f8d5d30 100644 --- a/top/top.c +++ b/top/top.c @@ -5010,7 +5010,7 @@ static int bot_focus_str (const char *hdr, const char *str) { memset(Bot_buf, '\0', sizeof(Bot_buf)); n = strlen(str); if (n >= sizeof(Bot_buf)) n = sizeof(Bot_buf) - 1; - if (!*str || !strcmp(str, "-")) strcpy(Bot_buf, "n/a"); + if (!*str || !strcmp(str, "-")) strcpy(Bot_buf, N_txt(X_BOT_nodata_txt)); else memccpy(Bot_buf, str, '\0', n); Bot_rsvd = 1 + BOT_RSVD + ((strlen(Bot_buf) - utf8_delta(Bot_buf)) / Screen_cols); if (Bot_rsvd > maxRSVD) Bot_rsvd = maxRSVD; @@ -5062,7 +5062,7 @@ static int bot_focus_strv (const char *hdr, const char **strv) { if (n >= sizeof(Bot_buf)) n = sizeof(Bot_buf) - 1; memcpy(Bot_buf, strv[0], n); if (!Bot_buf[0] || (!strcmp(Bot_buf, "-") && n <= sizeof(char *))) - strcpy(Bot_buf, "n/a"); + strcpy(Bot_buf, N_txt(X_BOT_nodata_txt)); for (nsav= 0, p = Bot_buf, x = 0; strv[nsav] != NULL; nsav++) { p += strlen(strv[nsav]) + 1; if ((p - Bot_buf) >= sizeof(Bot_buf)) diff --git a/top/top_nls.c b/top/top_nls.c index e539c5c0..fe5fab60 100644 --- a/top/top_nls.c +++ b/top/top_nls.c @@ -595,6 +595,7 @@ static void build_norm_nlstab (void) { Norm_nlstab[X_BOT_ctlgrp_fmt] = _("control groups for pid %d, %s"); Norm_nlstab[X_BOT_envirn_fmt] = _("environment for pid %d, %s"); Norm_nlstab[X_BOT_namesp_fmt] = _("namespaces for pid %d, %s"); + Norm_nlstab[X_BOT_nodata_txt] = _("n/a"); Norm_nlstab[X_BOT_supgrp_fmt] = _("supplementary groups for pid %d, %s"); Norm_nlstab[X_BOT_msglog_txt] = _("message log, last 10 messages:"); } diff --git a/top/top_nls.h b/top/top_nls.h index 6a116ccb..22fffa9c 100644 --- a/top/top_nls.h +++ b/top/top_nls.h @@ -86,8 +86,8 @@ enum norm_nls { XTRA_badflds_fmt, XTRA_fixwide_fmt, XTRA_modebad_txt, XTRA_size2up_txt, XTRA_vforest_fmt, XTRA_warncfg_txt, XTRA_warnold_txt, XTRA_winsize_txt, X_BOT_cmdlin_fmt, X_BOT_ctlgrp_fmt, X_BOT_envirn_fmt, X_BOT_msglog_txt, - X_BOT_namesp_fmt, X_BOT_supgrp_fmt, X_RESTRICTED_txt, X_SEMAPHORES_fmt, - X_THREADINGS_fmt, + X_BOT_namesp_fmt, X_BOT_nodata_txt, X_BOT_supgrp_fmt, X_RESTRICTED_txt, + X_SEMAPHORES_fmt, X_THREADINGS_fmt, YINSP_demo01_txt, YINSP_demo02_txt, YINSP_demo03_txt, YINSP_deqfmt_txt, YINSP_deqtyp_txt, YINSP_dstory_txt, YINSP_failed_fmt, YINSP_noent1_txt, YINSP_noent2_txt, YINSP_pidbad_fmt,