* main.c (load_hint): Don't hardcode copyright years. Use a
translated message.
Этот коммит содержится в:
родитель
01e2780615
Коммит
87da6b9f42
@ -1,5 +1,8 @@
|
|||||||
2002-09-05 Pavel Roskin <proski@gnu.org>
|
2002-09-05 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* main.c (load_hint): Don't hardcode copyright years. Use a
|
||||||
|
translated message.
|
||||||
|
|
||||||
* main.c (midnight_callback): Avoid calling the default DLG_DRAW
|
* main.c (midnight_callback): Avoid calling the default DLG_DRAW
|
||||||
handler. From David Martin <dmartina@excite.com>
|
handler. From David Martin <dmartina@excite.com>
|
||||||
|
|
||||||
|
10
src/main.c
10
src/main.c
@ -1807,7 +1807,8 @@ midnight_callback (struct Dlg_head *h, int id, int msg)
|
|||||||
|
|
||||||
#define xtoolkit_panel_setup()
|
#define xtoolkit_panel_setup()
|
||||||
|
|
||||||
void load_hint (void)
|
void
|
||||||
|
load_hint (void)
|
||||||
{
|
{
|
||||||
char *hint;
|
char *hint;
|
||||||
|
|
||||||
@ -1824,8 +1825,11 @@ void load_hint (void)
|
|||||||
set_hintbar (hint);
|
set_hintbar (hint);
|
||||||
g_free (hint);
|
g_free (hint);
|
||||||
} else {
|
} else {
|
||||||
set_hintbar ("The Midnight Commander " VERSION
|
char text[BUF_SMALL];
|
||||||
" (C) 1995-1997 the Free Software Foundation");
|
|
||||||
|
g_snprintf (text, sizeof (text), _("GNU Midnight Commander %s\n"),
|
||||||
|
VERSION);
|
||||||
|
set_hintbar (text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user