Remove spaces around "Error" and "Warning" together with their translations.
Also remove spaces from "Quit" and "Search", but leave alone the translations, that already have them without spaces.
Этот коммит содержится в:
родитель
55d17b2e96
Коммит
d3f0a2f61b
16
edit/edit.c
16
edit/edit.c
@ -160,7 +160,7 @@ int init_dynamic_edit_buffers (WEdit * edit, const char *filename, const char *t
|
||||
if (filename)
|
||||
if ((file = mc_open (filename, O_RDONLY | O_BINARY)) == -1) {
|
||||
/* The file-name is printed after the ':' */
|
||||
edit_error_dialog (_ (" Error "), get_sys_error (catstrs (_ (" Failed trying to open file for reading: "), filename, " ", 0)));
|
||||
edit_error_dialog (_ ("Error"), get_sys_error (catstrs (_ (" Failed trying to open file for reading: "), filename, " ", 0)));
|
||||
return 1;
|
||||
}
|
||||
edit->curs2 = edit->last_byte;
|
||||
@ -286,12 +286,12 @@ int edit_insert_file (WEdit * edit, const char *filename)
|
||||
edit_insert_stream (edit, f);
|
||||
edit_cursor_move (edit, current - edit->curs1);
|
||||
if (pclose (f) > 0) {
|
||||
edit_error_dialog (_ (" Error "), catstrs (_ (" Error reading from pipe: "), p, " ", 0));
|
||||
edit_error_dialog (_ ("Error"), catstrs (_ (" Error reading from pipe: "), p, " ", 0));
|
||||
free (p);
|
||||
return 0;
|
||||
}
|
||||
} else {
|
||||
edit_error_dialog (_ (" Error "), get_sys_error (catstrs (_ (" Failed trying to open pipe for reading: "), p, " ", 0)));
|
||||
edit_error_dialog (_ ("Error"), get_sys_error (catstrs (_ (" Failed trying to open pipe for reading: "), p, " ", 0)));
|
||||
free (p);
|
||||
return 0;
|
||||
}
|
||||
@ -329,20 +329,20 @@ static int check_file_access (WEdit *edit, const char *filename, struct stat *st
|
||||
|
||||
/* Only regular files are allowed */
|
||||
if (stat_ok && !S_ISREG (st->st_mode)) {
|
||||
edit_error_dialog (_ (" Error "), catstrs (_ (" Not an ordinary file: "), filename, " ", 0));
|
||||
edit_error_dialog (_ ("Error"), catstrs (_ (" Not an ordinary file: "), filename, " ", 0));
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Open the file, create it if needed */
|
||||
if ((file = mc_open (filename, O_RDONLY | O_CREAT | O_BINARY, 0666)) < 0) {
|
||||
edit_error_dialog (_ (" Error "), get_sys_error (catstrs (_ (" Failed trying to open file for reading: "), filename, " ", 0)));
|
||||
edit_error_dialog (_ ("Error"), get_sys_error (catstrs (_ (" Failed trying to open file for reading: "), filename, " ", 0)));
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* If the file has just been created, we don't have valid stat yet, so do it now */
|
||||
if (!stat_ok && mc_fstat (file, st) < 0) {
|
||||
mc_close (file);
|
||||
edit_error_dialog (_ (" Error "), get_sys_error (catstrs (_ (" Cannot get size/permissions info on file: "), filename, " ", 0)));
|
||||
edit_error_dialog (_ ("Error"), get_sys_error (catstrs (_ (" Cannot get size/permissions info on file: "), filename, " ", 0)));
|
||||
return 1;
|
||||
}
|
||||
mc_close (file);
|
||||
@ -354,7 +354,7 @@ static int check_file_access (WEdit *edit, const char *filename, struct stat *st
|
||||
|
||||
if (st->st_size >= SIZE_LIMIT) {
|
||||
/* The file-name is printed after the ':' */
|
||||
edit_error_dialog (_ (" Error "), catstrs (_ (" File is too large: "), \
|
||||
edit_error_dialog (_ ("Error"), catstrs (_ (" File is too large: "), \
|
||||
filename, _ (" \n Increase edit.h:MAXBUF and recompile the editor. "), 0));
|
||||
return 1;
|
||||
}
|
||||
@ -2592,7 +2592,7 @@ edit_execute_macro (WEdit *edit, struct macro macro[], int n)
|
||||
int i = 0;
|
||||
|
||||
if (edit->macro_depth++ > 256) {
|
||||
edit_error_dialog (_(" Error "), _("Macro recursion is too deep"));
|
||||
edit_error_dialog (_("Error"), _("Macro recursion is too deep"));
|
||||
edit->macro_depth--;
|
||||
return;
|
||||
}
|
||||
|
@ -251,13 +251,13 @@ int edit_save_file (WEdit * edit, const char *filename)
|
||||
pclose (file);
|
||||
#else
|
||||
if (pclose (file) != 0) {
|
||||
edit_error_dialog (_ (" Error "), catstrs (_ (" Error writing to pipe: "), p, " ", 0));
|
||||
edit_error_dialog (_ ("Error"), catstrs (_ (" Error writing to pipe: "), p, " ", 0));
|
||||
free (p);
|
||||
goto error_save;
|
||||
}
|
||||
#endif
|
||||
} else {
|
||||
edit_error_dialog (_ (" Error "), get_sys_error (catstrs (_ (" Failed trying to open pipe for writing: "), p, " ", 0)));
|
||||
edit_error_dialog (_ ("Error"), get_sys_error (catstrs (_ (" Failed trying to open pipe for writing: "), p, " ", 0)));
|
||||
free (p);
|
||||
goto error_save;
|
||||
}
|
||||
@ -420,7 +420,7 @@ int edit_save_as_cmd (WEdit * edit)
|
||||
different_filename = 1;
|
||||
if ((file = mc_open (exp, O_RDONLY | O_BINARY)) != -1) { /* the file exists */
|
||||
mc_close (file);
|
||||
if (edit_query_dialog2 (_(" Warning "),
|
||||
if (edit_query_dialog2 (_("Warning"),
|
||||
_(" A file already exists with this name. "),
|
||||
/* Push buttons to over-write the current file, or cancel the operation */
|
||||
_("Overwrite"), _("Cancel"))) {
|
||||
@ -704,7 +704,7 @@ int edit_save_cmd (WEdit * edit)
|
||||
int edit_new_cmd (WEdit * edit)
|
||||
{
|
||||
if (edit->modified) {
|
||||
if (edit_query_dialog2 (_ (" Warning "), _ (" Current text was modified without a file save. \n Continue discards these changes. "), _ ("Continue"), _ ("Cancel"))) {
|
||||
if (edit_query_dialog2 (_ ("Warning"), _ (" Current text was modified without a file save. \n Continue discards these changes. "), _ ("Continue"), _ ("Cancel"))) {
|
||||
edit->force |= REDRAW_COMPLETELY;
|
||||
return 0;
|
||||
}
|
||||
@ -729,7 +729,7 @@ int edit_load_cmd (WEdit * edit)
|
||||
char *exp;
|
||||
|
||||
if (edit->modified) {
|
||||
if (edit_query_dialog2 (_ (" Warning "), _ (" Current text was modified without a file save. \n Continue discards these changes. "), _ ("Continue"), _ ("Cancel"))) {
|
||||
if (edit_query_dialog2 (_ ("Warning"), _ (" Current text was modified without a file save. \n Continue discards these changes. "), _ ("Continue"), _ ("Cancel"))) {
|
||||
edit->force |= REDRAW_COMPLETELY;
|
||||
return 0;
|
||||
}
|
||||
@ -877,7 +877,7 @@ void edit_block_move_cmd (WEdit * edit)
|
||||
return;
|
||||
|
||||
if ((end_mark - start_mark) > option_max_undo / 2)
|
||||
if (edit_query_dialog2 (_ (" Warning "), _ (" Block is large, you may not be able to undo this action. "), _ ("Continue"), _ ("Cancel")))
|
||||
if (edit_query_dialog2 (_ ("Warning"), _ (" Block is large, you may not be able to undo this action. "), _ ("Continue"), _ ("Cancel")))
|
||||
return;
|
||||
|
||||
edit_push_markers (edit);
|
||||
@ -973,7 +973,7 @@ int edit_block_delete (WEdit * edit)
|
||||
edit_mark_cmd (edit, 0);
|
||||
if ((end_mark - start_mark) > option_max_undo / 2)
|
||||
/* Warning message with a query to continue or cancel the operation */
|
||||
if (edit_query_dialog2 (_ (" Warning "), _ (" Block is large, you may not be able to undo this action. "), _ (" Continue "), _ (" Cancel ")))
|
||||
if (edit_query_dialog2 (_ ("Warning"), _ (" Block is large, you may not be able to undo this action. "), _ (" Continue "), _ (" Cancel ")))
|
||||
return 1;
|
||||
edit_push_markers (edit);
|
||||
edit_cursor_move (edit, start_mark - edit->curs1);
|
||||
@ -1190,7 +1190,7 @@ void edit_search_dialog (WEdit * edit, char **search_text)
|
||||
|
||||
{
|
||||
QuickDialog Quick_input =
|
||||
{SEARCH_DLG_WIDTH, SEARCH_DLG_HEIGHT, -1, 0, N_(" Search "),
|
||||
{SEARCH_DLG_WIDTH, SEARCH_DLG_HEIGHT, -1, 0, N_("Search"),
|
||||
"[Input Line Keys]", 0 /*quick_widgets */ };
|
||||
|
||||
Quick_input.widgets = quick_widgets;
|
||||
@ -1562,7 +1562,7 @@ static int sprintf_p (char *str, const char *fmt,...)
|
||||
static void regexp_error (WEdit *edit)
|
||||
{
|
||||
/* "Error: Syntax error in regular expression, or scanf expression contained too many %'s */
|
||||
edit_error_dialog (_(" Error "), _(" Invalid regular expression, or scanf expression with to many conversions "));
|
||||
edit_error_dialog (_("Error"), _(" Invalid regular expression, or scanf expression with to many conversions "));
|
||||
}
|
||||
|
||||
/* call with edit = 0 before shutdown to close memory leaks */
|
||||
@ -1868,9 +1868,9 @@ void edit_search_cmd (WEdit * edit, int again)
|
||||
}
|
||||
if (found) {
|
||||
/* in response to number of bookmarks added because of string being found %d times */
|
||||
message (0, _(" Search "), _(" %d finds made, %d bookmarks added "), found, books);
|
||||
message (0, _("Search"), _(" %d finds made, %d bookmarks added "), found, books);
|
||||
} else {
|
||||
edit_error_dialog (_ (" Search "), _ (" Search string not found "));
|
||||
edit_error_dialog (_ ("Search"), _ (" Search string not found "));
|
||||
}
|
||||
} else {
|
||||
|
||||
@ -1898,7 +1898,7 @@ void edit_search_cmd (WEdit * edit, int again)
|
||||
regexp_error (edit);
|
||||
} else {
|
||||
edit->search_start = edit->curs1;
|
||||
edit_error_dialog (_ (" Search "), _ (" Search string not found "));
|
||||
edit_error_dialog (_ ("Search"), _ (" Search string not found "));
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1916,7 +1916,7 @@ void edit_quit_cmd (WEdit * edit)
|
||||
|
||||
edit->force |= REDRAW_COMPLETELY;
|
||||
if (edit->modified) {
|
||||
switch (edit_query_dialog3 (_ (" Quit "), _ (" File was modified, Save with exit? "), _ ("Cancel quit"), _ ("&Yes"), _ ("&No"))) {
|
||||
switch (edit_query_dialog3 (_ ("Quit"), _ (" File was modified, Save with exit? "), _ ("Cancel quit"), _ ("&Yes"), _ ("&No"))) {
|
||||
case 1:
|
||||
edit_push_markers (edit);
|
||||
edit_set_markers (edit, 0, 0, 0, 0);
|
||||
|
@ -162,7 +162,7 @@ static void drive_cmd()
|
||||
errocc = 1;
|
||||
}
|
||||
if (errocc)
|
||||
message (1, " Error ", " Cannot access drive %c: ",
|
||||
message (1, "Error", " Cannot access drive %c: ",
|
||||
*(szDrivesAvail+(nNewDrive*4)) );
|
||||
}
|
||||
destroy_dlg (drive_dlg);
|
||||
|
10
pc/util_nt.c
10
pc/util_nt.c
@ -62,11 +62,11 @@ static int old_error; /* File descriptor of old standard error */
|
||||
void open_error_pipe (void)
|
||||
{
|
||||
if (pipe (error_pipe) < 0){
|
||||
message (0, " Warning ", " Pipe failed ");
|
||||
message (0, "Warning", " Pipe failed ");
|
||||
}
|
||||
old_error = dup (2);
|
||||
if(old_error < 0 || close(2) || dup (error_pipe[1]) != 2){
|
||||
message (0, " Warning ", " Dup failed ");
|
||||
message (0, "Warning", " Dup failed ");
|
||||
close (error_pipe[0]);
|
||||
close (error_pipe[1]);
|
||||
}
|
||||
@ -83,9 +83,9 @@ int close_error_pipe (int error, char *text)
|
||||
int len = 0;
|
||||
|
||||
if (error)
|
||||
title = " Error ";
|
||||
title = "Error";
|
||||
else
|
||||
title = " Warning ";
|
||||
title = "Warning";
|
||||
if (old_error >= 0){
|
||||
close (2);
|
||||
dup (old_error);
|
||||
@ -128,7 +128,7 @@ void check_error_pipe (void)
|
||||
close (error_pipe[0]);
|
||||
}
|
||||
if (len > 0)
|
||||
message (0, " Warning ", "%s", error);
|
||||
message (0, "Warning", "%s", error);
|
||||
}
|
||||
|
||||
int my_system (int as_shell_command, const char *shell, const char *command)
|
||||
|
8
po/az.po
8
po/az.po
@ -17,8 +17,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " XƏTA "
|
||||
msgid "Error"
|
||||
msgstr "XƏTA"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -146,8 +146,8 @@ msgstr " Fərqli qeyd et "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Xəbərdarlıq "
|
||||
msgid "Warning"
|
||||
msgstr "Xəbərdarlıq"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/be.po
8
po/be.po
@ -13,8 +13,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " ╧рь√ыър "
|
||||
msgid "Error"
|
||||
msgstr "╧рь√ыър"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -139,8 +139,8 @@ msgstr "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " ╧ря Ё¤фцрэ№эх "
|
||||
msgid "Warning"
|
||||
msgstr "╧ря Ё¤фцрэ№эх"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/bg.po
8
po/bg.po
@ -13,8 +13,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Грешка "
|
||||
msgid "Error"
|
||||
msgstr "Грешка"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -140,8 +140,8 @@ msgstr " Запази като "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Внимание "
|
||||
msgid "Warning"
|
||||
msgstr "Внимание"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/ca.po
8
po/ca.po
@ -17,8 +17,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " S'ha produяt un error "
|
||||
msgid "Error"
|
||||
msgstr "S'ha produяt un error"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -145,8 +145,8 @@ msgstr " Desa com a"
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Avэs "
|
||||
msgid "Warning"
|
||||
msgstr "Avэs"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/cs.po
8
po/cs.po
@ -19,8 +19,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Chyba "
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -145,8 +145,8 @@ msgstr " Ulo
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Varovсnэ "
|
||||
msgid "Warning"
|
||||
msgstr "Varovсnэ"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/da.po
8
po/da.po
@ -23,8 +23,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Fejl "
|
||||
msgid "Error"
|
||||
msgstr "Fejl"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -150,8 +150,8 @@ msgstr " Gem som "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Advarsel "
|
||||
msgid "Warning"
|
||||
msgstr "Advarsel"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/de.po
8
po/de.po
@ -21,8 +21,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Fehler "
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -148,8 +148,8 @@ msgstr " Speichern Unter "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Warnung "
|
||||
msgid "Warning"
|
||||
msgstr "Warnung"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/el.po
8
po/el.po
@ -16,8 +16,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " ╙Ў▄ыьс "
|
||||
msgid "Error"
|
||||
msgstr "╙Ў▄ыьс"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -146,8 +146,8 @@ msgstr "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " ╨ёяхщфяЁя▀чєч "
|
||||
msgid "Warning"
|
||||
msgstr "╨ёяхщфяЁя▀чєч"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/es.po
8
po/es.po
@ -17,8 +17,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:254
|
||||
#: edit/editcmd.c:260 edit/editcmd.c:1565 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Error "
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -143,8 +143,8 @@ msgstr " Guardar como "
|
||||
#: src/screen.c:1374 src/screen.c:1947 src/selcodepage.c:106
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:139
|
||||
msgid " Warning "
|
||||
msgstr " б Atenciєn ! "
|
||||
msgid "Warning"
|
||||
msgstr "б Atenciєn !"
|
||||
|
||||
#: edit/editcmd.c:424
|
||||
msgid " A file already exists with this name. "
|
||||
|
@ -17,8 +17,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:254
|
||||
#: edit/editcmd.c:260 edit/editcmd.c:1565 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Error "
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -143,8 +143,8 @@ msgstr " Guardar como "
|
||||
#: src/screen.c:1374 src/screen.c:1947 src/selcodepage.c:106
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:139
|
||||
msgid " Warning "
|
||||
msgstr " б Atenciєn ! "
|
||||
msgid "Warning"
|
||||
msgstr "б Atenciєn !"
|
||||
|
||||
#: edit/editcmd.c:424
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/eu.po
8
po/eu.po
@ -17,8 +17,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Errorea "
|
||||
msgid "Error"
|
||||
msgstr "Errorea"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -144,8 +144,8 @@ msgstr " Gorde honela "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Abisua "
|
||||
msgid "Warning"
|
||||
msgstr "Abisua"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/fi.po
8
po/fi.po
@ -16,8 +16,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Virhe "
|
||||
msgid "Error"
|
||||
msgstr "Virhe"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -146,8 +146,8 @@ msgstr " Tallenna nimell
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Varoitus "
|
||||
msgid "Warning"
|
||||
msgstr "Varoitus"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/fr.po
8
po/fr.po
@ -19,8 +19,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Erreur "
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -146,8 +146,8 @@ msgstr " Enregistrer sous "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Attention "
|
||||
msgid "Warning"
|
||||
msgstr "Attention"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/hu.po
8
po/hu.po
@ -19,8 +19,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Hiba "
|
||||
msgid "Error"
|
||||
msgstr "Hiba"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -147,8 +147,8 @@ msgstr " Ment
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Figyelem "
|
||||
msgid "Warning"
|
||||
msgstr "Figyelem"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/it.po
8
po/it.po
@ -20,8 +20,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:254
|
||||
#: edit/editcmd.c:260 edit/editcmd.c:1565 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Errore "
|
||||
msgid "Error"
|
||||
msgstr "Errore"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -149,8 +149,8 @@ msgstr " Salva con nome "
|
||||
#: src/screen.c:1374 src/screen.c:1947 src/selcodepage.c:106
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:139
|
||||
msgid " Warning "
|
||||
msgstr " Attenzione "
|
||||
msgid "Warning"
|
||||
msgstr "Attenzione"
|
||||
|
||||
#: edit/editcmd.c:424
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/ja.po
8
po/ja.po
@ -17,8 +17,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " еиещб╝ "
|
||||
msgid "Error"
|
||||
msgstr "еиещб╝"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -142,8 +142,8 @@ msgstr "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " ╖┘╣Ё "
|
||||
msgid "Warning"
|
||||
msgstr "╖┘╣Ё"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/ko.po
8
po/ko.po
@ -15,8 +15,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " ┐б╖п "
|
||||
msgid "Error"
|
||||
msgstr "┐б╖п"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -141,8 +141,8 @@ msgstr "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " ░ц░э "
|
||||
msgid "Warning"
|
||||
msgstr "░ц░э"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/lv.po
8
po/lv.po
@ -16,8 +16,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Kя√da "
|
||||
msgid "Error"
|
||||
msgstr "Kя√da"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -143,8 +143,8 @@ msgstr " Glab
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Brюdinтjums "
|
||||
msgid "Warning"
|
||||
msgstr "Brюdinтjums"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/nl.po
8
po/nl.po
@ -18,8 +18,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Fout "
|
||||
msgid "Error"
|
||||
msgstr "Fout"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -145,8 +145,8 @@ msgstr " Opslaan als "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Waarschuwing "
|
||||
msgid "Warning"
|
||||
msgstr "Waarschuwing"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/no.po
8
po/no.po
@ -15,8 +15,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Feil "
|
||||
msgid "Error"
|
||||
msgstr "Feil"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -141,8 +141,8 @@ msgstr " Lagre som "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Advarsel "
|
||||
msgid "Warning"
|
||||
msgstr "Advarsel"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/pl.po
8
po/pl.po
@ -20,8 +20,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " B│▒d "
|
||||
msgid "Error"
|
||||
msgstr "B│▒d"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -146,8 +146,8 @@ msgstr " Zapisz jako "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Ostrze┐enie "
|
||||
msgid "Warning"
|
||||
msgstr "Ostrze┐enie"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/pt.po
8
po/pt.po
@ -16,8 +16,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Erro "
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -143,8 +143,8 @@ msgstr " Gravar Como "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Aviso "
|
||||
msgid "Warning"
|
||||
msgstr "Aviso"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
@ -17,8 +17,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Erro "
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -148,8 +148,8 @@ msgstr " Salvar Como "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Aviso "
|
||||
msgid "Warning"
|
||||
msgstr "Aviso"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/ro.po
8
po/ro.po
@ -22,8 +22,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Eroare "
|
||||
msgid "Error"
|
||||
msgstr "Eroare"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -148,8 +148,8 @@ msgstr " Salveaz
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Aten■ie "
|
||||
msgid "Warning"
|
||||
msgstr "Aten■ie"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/ru.po
8
po/ru.po
@ -24,8 +24,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:254
|
||||
#: edit/editcmd.c:260 edit/editcmd.c:1565 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " я█╔┬╦┴ "
|
||||
msgid "Error"
|
||||
msgstr "я█╔┬╦┴"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -150,8 +150,8 @@ msgstr "
|
||||
#: src/screen.c:1374 src/screen.c:1947 src/selcodepage.c:106
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:139
|
||||
msgid " Warning "
|
||||
msgstr " Ё╥┼─╒╨╥┼╓─┼╬╔┼ "
|
||||
msgid "Warning"
|
||||
msgstr "Ё╥┼─╒╨╥┼╓─┼╬╔┼"
|
||||
|
||||
#: edit/editcmd.c:424
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/sk.po
8
po/sk.po
@ -18,8 +18,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Chyba "
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -145,8 +145,8 @@ msgstr " Uložiť ako "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Varovanie "
|
||||
msgid "Warning"
|
||||
msgstr "Varovanie"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/sl.po
8
po/sl.po
@ -16,8 +16,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Napaka "
|
||||
msgid "Error"
|
||||
msgstr "Napaka"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -142,8 +142,8 @@ msgstr " Shrani kot "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Opozorilo "
|
||||
msgid "Warning"
|
||||
msgstr "Opozorilo"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/sv.po
8
po/sv.po
@ -22,8 +22,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Fel "
|
||||
msgid "Error"
|
||||
msgstr "Fel"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -149,8 +149,8 @@ msgstr " Spara som "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Varning "
|
||||
msgid "Warning"
|
||||
msgstr "Varning"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/ta.po
8
po/ta.po
@ -16,8 +16,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " └ви╞ "
|
||||
msgid "Error"
|
||||
msgstr "└ви╞"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -143,8 +143,8 @@ msgstr "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " ▒ю║бвьи╕ "
|
||||
msgid "Warning"
|
||||
msgstr "▒ю║бвьи╕"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/tr.po
8
po/tr.po
@ -18,8 +18,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Hata "
|
||||
msgid "Error"
|
||||
msgstr "Hata"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -145,8 +145,8 @@ msgstr " Farkl
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Uyar¤ "
|
||||
msgid "Warning"
|
||||
msgstr "Uyar¤"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/uk.po
8
po/uk.po
@ -13,8 +13,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Ё╧═╔╠╦┴ "
|
||||
msgid "Error"
|
||||
msgstr "Ё╧═╔╠╦┴"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -139,8 +139,8 @@ msgstr "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Ё╧╨┼╥┼─╓┼╬╬╤ "
|
||||
msgid "Warning"
|
||||
msgstr "Ё╧╨┼╥┼─╓┼╬╬╤"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
8
po/wa.po
8
po/wa.po
@ -23,8 +23,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " Aroke "
|
||||
msgid "Error"
|
||||
msgstr "Aroke"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -151,8 +151,8 @@ msgstr " Schaper et rlomer "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " Advertixhmint "
|
||||
msgid "Warning"
|
||||
msgstr "Advertixhmint"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
@ -16,8 +16,8 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgstr " 错误 "
|
||||
msgid "Error"
|
||||
msgstr "错误"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
msgid " Failed trying to open file for reading: "
|
||||
@ -143,8 +143,8 @@ msgstr " 保存为"
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgstr " 警告 "
|
||||
msgid "Warning"
|
||||
msgstr "警告"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
msgid " A file already exists with this name. "
|
||||
|
@ -17,7 +17,7 @@ msgstr ""
|
||||
#: edit/edit.c:163 edit/edit.c:289 edit/edit.c:294 edit/edit.c:332
|
||||
#: edit/edit.c:338 edit/edit.c:345 edit/edit.c:357 edit/editcmd.c:255
|
||||
#: edit/editcmd.c:261 edit/editcmd.c:1564 src/wtools.c:132 vfs/vfs.c:1848
|
||||
msgid " Error "
|
||||
msgid "Error"
|
||||
msgstr "┐∙╗~"
|
||||
|
||||
#: edit/edit.c:163 edit/edit.c:338
|
||||
@ -143,7 +143,7 @@ msgstr "
|
||||
#: src/screen.c:1374 src/screen.c:1944 src/selcodepage.c:101
|
||||
#: src/subshell.c:702 src/utilunix.c:351 src/utilunix.c:355 src/utilunix.c:377
|
||||
#: src/utilunix.c:429 vfs/mcfs.c:124
|
||||
msgid " Warning "
|
||||
msgid "Warning"
|
||||
msgstr "─╡зi"
|
||||
|
||||
#: edit/editcmd.c:425
|
||||
|
@ -610,7 +610,7 @@ copy_file_file (FileOpContext *ctx, char *src_path, char *dst_path,
|
||||
|
||||
if (ctx->do_reget) {
|
||||
if (mc_lseek (src_desc, ctx->do_reget, SEEK_SET) != ctx->do_reget) {
|
||||
message_1s (1, _(" Warning "),
|
||||
message_1s (1, _("Warning"),
|
||||
_(" Reget failed, about to overwrite file "));
|
||||
ctx->do_reget = ctx->do_append = 0;
|
||||
}
|
||||
|
@ -314,7 +314,7 @@ static void start_link_area (int x, int y, char *link_name)
|
||||
Link_Area *new;
|
||||
|
||||
if (inside_link_area)
|
||||
message (0, _(" Warning "), _(" Internal bug: Double start of link area "));
|
||||
message (0, _("Warning"), _(" Internal bug: Double start of link area "));
|
||||
|
||||
/* Allocate memory for a new link area */
|
||||
new = g_new (Link_Area, 1);
|
||||
|
@ -460,7 +460,7 @@ void
|
||||
do_possible_cd (char *new_dir)
|
||||
{
|
||||
if (!do_cd (new_dir, cd_exact))
|
||||
message (1, _(" Warning "),
|
||||
message (1, _("Warning"),
|
||||
_(" The Commander can't change to the directory that \n"
|
||||
" the subshell claims you are in. Perhaps you have \n"
|
||||
" deleted your working directory, or given yourself \n"
|
||||
|
@ -1371,7 +1371,7 @@ set_panel_formats (WPanel *p)
|
||||
panel_update_cols (&(p->widget), p->frame_size);
|
||||
|
||||
if (retcode)
|
||||
message( 1, _(" Warning " ), _( "User supplied format looks invalid, reverting to default." ) );
|
||||
message( 1, _("Warning" ), _( "User supplied format looks invalid, reverting to default." ) );
|
||||
if (retcode & 0x01){
|
||||
g_free (p->user_format);
|
||||
p->user_format = g_strdup (DEFAULT_USER_FORMAT);
|
||||
@ -1944,7 +1944,7 @@ do_enter_on_file_entry (file_entry *fe)
|
||||
tmp = concat_dir_and_file (vfs_get_current_dir (), fe->fname);
|
||||
if (!mc_setctl (tmp, MCCTL_EXTFS_RUN, NULL))
|
||||
/* Execution on this filesysten is not implemented */
|
||||
message (1, _(" Warning "), _(" No action taken "));
|
||||
message (1, _("Warning"), _(" No action taken "));
|
||||
g_free (tmp);
|
||||
}
|
||||
#endif /* USE_VFS */
|
||||
|
@ -103,7 +103,7 @@ do_select_codepage (void)
|
||||
return -1;
|
||||
}
|
||||
} else {
|
||||
message (1, _(" Warning "),
|
||||
message (1, _("Warning"),
|
||||
_("To use this feature select your codepage in\n"
|
||||
"Setup / Display Bits dialog!\n"
|
||||
"Do not forget to save options."));
|
||||
|
@ -699,7 +699,7 @@ int exit_subshell (void)
|
||||
int quit = TRUE;
|
||||
|
||||
if (subshell_state != INACTIVE && subshell_alive)
|
||||
quit = !query_dialog (_(" Warning "), _(" The shell is still active. Quit anyway? "),
|
||||
quit = !query_dialog (_("Warning"), _(" The shell is still active. Quit anyway? "),
|
||||
0, 2, _("&Yes"), _("&No"));
|
||||
|
||||
if (quit && subshell_type == TCSH)
|
||||
|
@ -351,11 +351,11 @@ static int old_error; /* File descriptor of old standard error */
|
||||
void open_error_pipe (void)
|
||||
{
|
||||
if (pipe (error_pipe) < 0){
|
||||
message (0, _(" Warning "), _(" Pipe failed "));
|
||||
message (0, _("Warning"), _(" Pipe failed "));
|
||||
}
|
||||
old_error = dup (2);
|
||||
if(old_error < 0 || close(2) || dup (error_pipe[1]) != 2){
|
||||
message (0, _(" Warning "), _(" Dup failed "));
|
||||
message (0, _("Warning"), _(" Dup failed "));
|
||||
close (error_pipe[0]);
|
||||
close (error_pipe[1]);
|
||||
}
|
||||
@ -377,7 +377,7 @@ close_error_pipe (int error, char *text)
|
||||
if (error)
|
||||
title = MSG_ERROR;
|
||||
else
|
||||
title = _(" Warning ");
|
||||
title = _("Warning");
|
||||
if (old_error >= 0){
|
||||
close (2);
|
||||
dup (old_error);
|
||||
@ -429,7 +429,7 @@ void check_error_pipe (void)
|
||||
close (error_pipe[0]);
|
||||
}
|
||||
if (len > 0)
|
||||
message (0, _(" Warning "), "%s", error);
|
||||
message (0, _("Warning"), "%s", error);
|
||||
}
|
||||
|
||||
static struct sigaction ignore, save_intr, save_quit, save_stop;
|
||||
|
14
src/view.c
14
src/view.c
@ -401,7 +401,7 @@ view_ok_to_quit (WView *view)
|
||||
if (!view->change_list)
|
||||
return 1;
|
||||
|
||||
r = query_dialog (_(" Quit "),
|
||||
r = query_dialog (_("Quit"),
|
||||
_(" File was modified, Save with exit? "), 2, 3,
|
||||
_("Cancel quit"), _("&Yes"), _("&No"));
|
||||
|
||||
@ -1492,7 +1492,7 @@ search (WView *view, char *text, int (*search)(WView *, char *, char *, int))
|
||||
got_interrupt ();
|
||||
|
||||
if (verbose){
|
||||
d = message (D_INSERT, _(" Search "), _("Searching %s"), text);
|
||||
d = message (D_INSERT, _("Search"), _("Searching %s"), text);
|
||||
mc_refresh ();
|
||||
}
|
||||
|
||||
@ -1571,7 +1571,7 @@ search (WView *view, char *text, int (*search)(WView *, char *, char *, int))
|
||||
destroy_dlg (d);
|
||||
}
|
||||
if (!s) {
|
||||
message (0, _(" Search "), _(" Search string not found "));
|
||||
message (0, _("Search"), _(" Search string not found "));
|
||||
view->found_len = 0;
|
||||
}
|
||||
}
|
||||
@ -1691,7 +1691,7 @@ hex_search (WView *view, char *text)
|
||||
|
||||
/* No valid bytes in the user input */
|
||||
if (block_len <= 0 || parse_error) {
|
||||
message (0, _(" Search "), _("Invalid hex search expression"));
|
||||
message (0, _("Search"), _("Invalid hex search expression"));
|
||||
g_free (buffer);
|
||||
view->found_len = 0;
|
||||
return;
|
||||
@ -1703,7 +1703,7 @@ hex_search (WView *view, char *text)
|
||||
g_free (buffer);
|
||||
|
||||
if (pos == -1){
|
||||
message (0, _(" Search "), _(" Search string not found "));
|
||||
message (0, _("Search"), _(" Search string not found "));
|
||||
view->found_len = 0;
|
||||
return;
|
||||
}
|
||||
@ -1920,7 +1920,7 @@ regexp_search (WView *view, int direction)
|
||||
}
|
||||
|
||||
regexp = old ? old : regexp;
|
||||
regexp = input_dialog (_(" Search "), _(" Enter regexp:"), regexp);
|
||||
regexp = input_dialog (_("Search"), _(" Enter regexp:"), regexp);
|
||||
if ((!regexp)){
|
||||
return;
|
||||
}
|
||||
@ -1962,7 +1962,7 @@ normal_search (WView *view, int direction)
|
||||
convert_to_display( exp );
|
||||
#endif
|
||||
|
||||
exp = input_dialog (_(" Search "), _(" Enter search string:"), exp);
|
||||
exp = input_dialog (_("Search"), _(" Enter search string:"), exp);
|
||||
if ((!exp)){
|
||||
return;
|
||||
}
|
||||
|
@ -129,7 +129,7 @@ int query_dialog (char *header, char *text, int flags, int count, ...)
|
||||
query_colors = dialog_colors;
|
||||
|
||||
if (header == MSG_ERROR)
|
||||
header = _(" Error ");
|
||||
header = _("Error");
|
||||
|
||||
if (count > 0){
|
||||
va_start (ap, count);
|
||||
|
@ -136,7 +136,7 @@ mcfs_login_server (int my_socket, char *user, int port,
|
||||
if (result == MC_NEED_PASSWORD) {
|
||||
if (port > 1024 && port_autodetected) {
|
||||
int v;
|
||||
v = query_dialog (_(" Warning "),
|
||||
v = query_dialog (_("Warning"),
|
||||
_
|
||||
(" The remote server is not running on a system port \n"
|
||||
" you need a password to log in, but the information may \n"
|
||||
|
@ -1845,7 +1845,7 @@ error:
|
||||
if (++errorcount < 5) {
|
||||
message_1s (1, _("Could not parse:"), (p_copy && *p_copy) ? p_copy : line);
|
||||
} else if (errorcount == 5)
|
||||
message_1s (1, _(" Error "), _("More parsing errors will be ignored."));
|
||||
message_1s (1, _("Error"), _("More parsing errors will be ignored."));
|
||||
}
|
||||
|
||||
g_free (p_copy);
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user