1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 14:56:39 +02:00

core: update translations

This commit is contained in:
Sébastien Helleu
2023-08-28 17:47:21 +02:00
parent cc2b44a8ec
commit a16b3d25ce
16 changed files with 531 additions and 203 deletions
+2 -2
View File
@@ -9500,8 +9500,8 @@ command_init ()
" || suspend"),
N_(" get: display system info\n"
" rlimit: display resource limits "
"(see /help weechat.startup.sys_rlimit and man getrlimit)\n"
" rusage: display resource usage (see man getrusage)\n"
"(see /help weechat.startup.sys_rlimit and \"man getrlimit\")\n"
" rusage: display resource usage (see \"man getrusage\")\n"
"suspend: suspend WeeChat and go back to the shell, by sending "
"signal SIGTSTP to the WeeChat process"),
"get rlimit|rusage"
+2 -4
View File
@@ -269,8 +269,7 @@ sys_display_rlimit ()
}
#else /* HAVE_SYS_RESOURCE_H */
gui_chat_printf (NULL,
_("System function \"%s\" is not available "
"on this system"),
_("System function \"%s\" is not available"),
"getrlimit");
#endif /* HAVE_SYS_RESOURCE_H */
}
@@ -338,8 +337,7 @@ sys_display_rusage ()
gui_chat_printf (NULL, " ru_nivcsw : %ld", usage.ru_nivcsw);
#else /* HAVE_SYS_RESOURCE_H */
gui_chat_printf (NULL,
_("System function \"%s\" is not available "
"on this system"),
_("System function \"%s\" is not available"),
"getrusage");
#endif /* HAVE_SYS_RESOURCE_H */
}