mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 18:14:25 +03:00
2001-01-08 Szabolcs Ban <shooby@gnome.hu>
* lib/mc.hlp.hu: Added Hungarian help file from tothb1@freemail.hu, Janos.Zana@elfiz2.kee.hu, maci@integrity.hu, mfh47@freemail.hu * lib/Makefile.am: Added LOCALIZED_HELP for further mc.hlp l10ns * src/cmd.c, src/dlg.c, src/tree.c, src/view.c, gtkedit/editcmd.c: I18n of mc.hlp
This commit is contained in:
parent
3efed6a57e
commit
92bf5e249d
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2001-01-08 Szabolcs Ban <shooby@gnome.hu>
|
||||||
|
|
||||||
|
* lib/mc.hlp.hu: Added Hungarian help file from
|
||||||
|
tothb1@freemail.hu, Janos.Zana@elfiz2.kee.hu,
|
||||||
|
maci@integrity.hu, mfh47@freemail.hu
|
||||||
|
* lib/Makefile.am: Added LOCALIZED_HELP for further
|
||||||
|
mc.hlp l10ns
|
||||||
|
* src/cmd.c, src/dlg.c, src/tree.c, src/view.c,
|
||||||
|
gtkedit/editcmd.c: I18n of mc.hlp
|
||||||
|
|
||||||
2000-12-29 Szabolcs Ban <shooby@gnome.hu>
|
2000-12-29 Szabolcs Ban <shooby@gnome.hu>
|
||||||
|
|
||||||
* doc/mc.1.in: Corrected badly formatted link...
|
* doc/mc.1.in: Corrected badly formatted link...
|
||||||
|
@ -165,7 +165,7 @@ char *catstrs (const char *first,...)
|
|||||||
|
|
||||||
void edit_help_cmd (WEdit * edit)
|
void edit_help_cmd (WEdit * edit)
|
||||||
{
|
{
|
||||||
char *hlpdir = concat_dir_and_file (mc_home, "mc.hlp");
|
char *hlpdir = concat_dir_and_file (mc_home, _("mc.hlp"));
|
||||||
interactive_display (hlpdir, "[Internal File Editor]");
|
interactive_display (hlpdir, "[Internal File Editor]");
|
||||||
free (hlpdir);
|
free (hlpdir);
|
||||||
edit->force |= REDRAW_COMPLETELY;
|
edit->force |= REDRAW_COMPLETELY;
|
||||||
|
@ -4,6 +4,7 @@ suppbindir = $(mclibdir)/bin
|
|||||||
tidir = $(mclibdir)/term
|
tidir = $(mclibdir)/term
|
||||||
confdir = $(sysconfdir)
|
confdir = $(sysconfdir)
|
||||||
|
|
||||||
|
LOCALIZED_HELP = mc.hlp.hu
|
||||||
LIBFILES_OUT = mc.ext mc-gnome.ext
|
LIBFILES_OUT = mc.ext mc-gnome.ext
|
||||||
LIBFILES_CONST = mc.hint mc.hint.es mc.hint.cs mc.hint.it mc.hint.pl \
|
LIBFILES_CONST = mc.hint mc.hint.es mc.hint.cs mc.hint.it mc.hint.pl \
|
||||||
mc.hint.ru mc.lib mc.menu cedit.menu edit.indent.rc
|
mc.hint.ru mc.lib mc.menu cedit.menu edit.indent.rc
|
||||||
@ -23,7 +24,7 @@ suppbin_SCRIPTS = mc.csh mc.sh
|
|||||||
desktop_DATA = startup.links README.desktop
|
desktop_DATA = startup.links README.desktop
|
||||||
ti_DATA = README.xterm linux.ti xterm.ad xterm.ti ansi.ti vt100.ti xterm.tcap
|
ti_DATA = README.xterm linux.ti xterm.ad xterm.ti ansi.ti vt100.ti xterm.tcap
|
||||||
|
|
||||||
mclib_DATA = $(LIBFILES_CONST) $(LIBFILES_OUT)
|
mclib_DATA = $(LIBFILES_CONST) $(LIBFILES_OUT) $(LOCALIZED_HELP)
|
||||||
|
|
||||||
# Files processed by configure don't need to be here
|
# Files processed by configure don't need to be here
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
|
3990
lib/mc.hlp.hu
Normal file
3990
lib/mc.hlp.hu
Normal file
File diff suppressed because it is too large
Load Diff
@ -1203,7 +1203,7 @@ void other_symlink_cmd (void)
|
|||||||
|
|
||||||
void help_cmd (void)
|
void help_cmd (void)
|
||||||
{
|
{
|
||||||
char *hlpfile = concat_dir_and_file (mc_home, "mc.hlp");
|
char *hlpfile = concat_dir_and_file (mc_home, _("mc.hlp"));
|
||||||
interactive_display (hlpfile, "[main]");
|
interactive_display (hlpfile, "[main]");
|
||||||
g_free (hlpfile);
|
g_free (hlpfile);
|
||||||
}
|
}
|
||||||
|
@ -650,7 +650,7 @@ static INLINE void dialog_handle_key (Dlg_head *h, int d_key)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case KEY_F(1):
|
case KEY_F(1):
|
||||||
hlpfile = concat_dir_and_file (mc_home, "mc.hlp");
|
hlpfile = concat_dir_and_file (mc_home, _("mc.hlp"));
|
||||||
interactive_display (hlpfile, h->help_ctx);
|
interactive_display (hlpfile, h->help_ctx);
|
||||||
g_free (hlpfile);
|
g_free (hlpfile);
|
||||||
do_refresh ();
|
do_refresh ();
|
||||||
|
@ -651,7 +651,7 @@ void tree_copy (WTree *tree, char *default_dest)
|
|||||||
|
|
||||||
static void tree_help_cmd (void)
|
static void tree_help_cmd (void)
|
||||||
{
|
{
|
||||||
char *hlpfile = concat_dir_and_file (mc_home, "mc.hlp");
|
char *hlpfile = concat_dir_and_file (mc_home, _("mc.hlp"));
|
||||||
interactive_display (hlpfile, "[Directory Tree]");
|
interactive_display (hlpfile, "[Directory Tree]");
|
||||||
g_free (hlpfile);
|
g_free (hlpfile);
|
||||||
}
|
}
|
||||||
|
@ -1818,7 +1818,7 @@ static void do_normal_search (void *xview, char *text)
|
|||||||
/* Real view only */
|
/* Real view only */
|
||||||
static void help_cmd (void)
|
static void help_cmd (void)
|
||||||
{
|
{
|
||||||
char *hlpfile = concat_dir_and_file (mc_home, "mc.hlp");
|
char *hlpfile = concat_dir_and_file (mc_home, _("mc.hlp"));
|
||||||
interactive_display (hlpfile, "[Internal File Viewer]");
|
interactive_display (hlpfile, "[Internal File Viewer]");
|
||||||
g_free (hlpfile);
|
g_free (hlpfile);
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user