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.
This commit is contained in:
Norbert Warmuth 1999-02-16 20:58:36 +00:00
parent 0d1fde3c42
commit 88a4da3fe3
7 changed files with 1360 additions and 1171 deletions

View File

@ -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>
* configure.in: Make Timur's libtermcap check work with SLang

View File

@ -62,7 +62,8 @@ int gtk_edit_option_font_mean_width;
int gtk_edit_fixed_font;
#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
static void clear_focus_area (GtkEdit *edit, gint area_x, gint area_y, gint area_width, gint area_height)

View File

@ -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>
* es.po: Remove " from middle of line.

2469
po/es.po

File diff suppressed because it is too large Load Diff

View File

@ -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>
* subshell.c (exit_subshell): Use the size of the buffer, not

View File

@ -68,10 +68,10 @@ struct {
int ret_cmd, flags, y, x;
char *text;
} chown_advanced_but [BUTTONS] = {
{ B_CANCEL, NORMAL_BUTTON, 4, 55, N_("&Cancel") },
{ B_ENTER, DEFPUSH_BUTTON,4, 45, N_("&Set") },
{ B_SKIP, NORMAL_BUTTON, 4, 36, N_("S&kip") },
{ B_SETALL, NORMAL_BUTTON, 4, 24, N_("Set &all")},
{ B_CANCEL, NORMAL_BUTTON, 4, 53, N_("&Cancel") },
{ B_ENTER, DEFPUSH_BUTTON,4, 40, N_("&Set") },
{ B_SKIP, NORMAL_BUTTON, 4, 23, N_("S&kip") },
{ B_SETALL, NORMAL_BUTTON, 4, 0, N_("Set &all")},
{ B_ENTER, NARROW_BUTTON, 0, 47, " "},
{ B_ENTER, NARROW_BUTTON, 0, 29, " "},
{ B_ENTER, NARROW_BUTTON, 0, 19, " "},

View File

@ -225,7 +225,14 @@ static void execCommand(poptContext con) {
setresuid(getuid(), getuid(),-1);
#else
#ifndef OS2_NT
# if defined (HAVE_SETUID)
setuid(getuid());
# elif defined (HAVE_SETREUID)
setreuid(getuid(), getuid()); /*hlauer: not portable to hpux9.01 */
# else
; /* Can't drop privileges */
# endif
#endif
#endif