Tue Feb 16 20:46:38 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
* po/es.po: Update es.po with the version sent by David Martin <dmartina@usa.net> on Feb 14. Removed messages from editmenu.c first (this needs fixing). Tue Feb 16 21:18:08 1999 David Martin <dmartina@usa.net> * src/achown.c: Make buttons fit in the (new) translated Advanced Chown dialog. * src/popt.c: Compilation fix: on systems without setreuid use setuid. Tue Feb 16 21:24:43 1999 David Martin <dmartina@usa.net> * gtkedit/gtkedit.c: Hack to get one more string defined in a macro into the catalog file.
Этот коммит содержится в:
родитель
0d1fde3c42
Коммит
88a4da3fe3
@ -1,3 +1,8 @@
|
|||||||
|
Tue Feb 16 21:24:43 1999 David Martin <dmartina@usa.net>
|
||||||
|
|
||||||
|
* gtkedit/gtkedit.c: Hack to get one more string defined in a macro
|
||||||
|
into the catalog file.
|
||||||
|
|
||||||
Sat Feb 13 01:39:17 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
|
Sat Feb 13 01:39:17 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
|
||||||
|
|
||||||
* configure.in: Make Timur's libtermcap check work with SLang
|
* configure.in: Make Timur's libtermcap check work with SLang
|
||||||
|
@ -62,7 +62,8 @@ int gtk_edit_option_font_mean_width;
|
|||||||
int gtk_edit_fixed_font;
|
int gtk_edit_fixed_font;
|
||||||
|
|
||||||
#if defined NEVER_DEFINED_ONLY_A_HACK
|
#if defined NEVER_DEFINED_ONLY_A_HACK
|
||||||
const char *txt = _("&Dismiss");
|
const char *dummy_txt_0 = _("&Dismiss");
|
||||||
|
const char *dummy_txt_1 = _(" Enter file name: ");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void clear_focus_area (GtkEdit *edit, gint area_x, gint area_y, gint area_width, gint area_height)
|
static void clear_focus_area (GtkEdit *edit, gint area_x, gint area_y, gint area_width, gint area_height)
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
Tue Feb 16 20:46:38 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
|
||||||
|
|
||||||
|
* es.po: Update es.po with the version sent by David Martin
|
||||||
|
<dmartina@usa.net> on Feb 14. Removed messages from editmenu.c
|
||||||
|
first (this needs fixing).
|
||||||
|
|
||||||
1999-02-05 Christopher Blizzard <blizzard@redhat.com>
|
1999-02-05 Christopher Blizzard <blizzard@redhat.com>
|
||||||
|
|
||||||
* es.po: Remove " from middle of line.
|
* es.po: Remove " from middle of line.
|
||||||
|
2469
po/es.po
2469
po/es.po
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
@ -1,3 +1,12 @@
|
|||||||
|
Tue Feb 16 21:21:32 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
|
||||||
|
|
||||||
|
* popt.c: Compilation fix: on systems without setreuid use setuid.
|
||||||
|
|
||||||
|
Tue Feb 16 21:18:08 1999 David Martin <dmartina@usa.net>
|
||||||
|
|
||||||
|
* achown.c: Make buttons fit in the (new) translated
|
||||||
|
Advanced Chown dialog.
|
||||||
|
|
||||||
1999-02-16 Alexaander Savelyev <fano@ham.kiev.ua>
|
1999-02-16 Alexaander Savelyev <fano@ham.kiev.ua>
|
||||||
|
|
||||||
* subshell.c (exit_subshell): Use the size of the buffer, not
|
* subshell.c (exit_subshell): Use the size of the buffer, not
|
||||||
|
@ -68,10 +68,10 @@ struct {
|
|||||||
int ret_cmd, flags, y, x;
|
int ret_cmd, flags, y, x;
|
||||||
char *text;
|
char *text;
|
||||||
} chown_advanced_but [BUTTONS] = {
|
} chown_advanced_but [BUTTONS] = {
|
||||||
{ B_CANCEL, NORMAL_BUTTON, 4, 55, N_("&Cancel") },
|
{ B_CANCEL, NORMAL_BUTTON, 4, 53, N_("&Cancel") },
|
||||||
{ B_ENTER, DEFPUSH_BUTTON,4, 45, N_("&Set") },
|
{ B_ENTER, DEFPUSH_BUTTON,4, 40, N_("&Set") },
|
||||||
{ B_SKIP, NORMAL_BUTTON, 4, 36, N_("S&kip") },
|
{ B_SKIP, NORMAL_BUTTON, 4, 23, N_("S&kip") },
|
||||||
{ B_SETALL, NORMAL_BUTTON, 4, 24, N_("Set &all")},
|
{ B_SETALL, NORMAL_BUTTON, 4, 0, N_("Set &all")},
|
||||||
{ B_ENTER, NARROW_BUTTON, 0, 47, " "},
|
{ B_ENTER, NARROW_BUTTON, 0, 47, " "},
|
||||||
{ B_ENTER, NARROW_BUTTON, 0, 29, " "},
|
{ B_ENTER, NARROW_BUTTON, 0, 29, " "},
|
||||||
{ B_ENTER, NARROW_BUTTON, 0, 19, " "},
|
{ B_ENTER, NARROW_BUTTON, 0, 19, " "},
|
||||||
|
@ -225,7 +225,14 @@ static void execCommand(poptContext con) {
|
|||||||
setresuid(getuid(), getuid(),-1);
|
setresuid(getuid(), getuid(),-1);
|
||||||
#else
|
#else
|
||||||
#ifndef OS2_NT
|
#ifndef OS2_NT
|
||||||
|
# if defined (HAVE_SETUID)
|
||||||
|
setuid(getuid());
|
||||||
|
# elif defined (HAVE_SETREUID)
|
||||||
setreuid(getuid(), getuid()); /*hlauer: not portable to hpux9.01 */
|
setreuid(getuid(), getuid()); /*hlauer: not portable to hpux9.01 */
|
||||||
|
# else
|
||||||
|
; /* Can't drop privileges */
|
||||||
|
# endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user