From f9c962df2b18b20dd2f8887547ad9aed9c4a3c3f Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Fri, 27 Apr 2001 15:49:34 +0000 Subject: [PATCH] r593: Rewrote the file info box. Looks a bit nicer, and it's easier to add extra info to it later... --- ROX-Filer/Help/Changes | 9 + ROX-Filer/src/Makefile.in | 12 +- ROX-Filer/src/infobox.c | 321 +++++++++++++++++++ ROX-Filer/src/infobox.h | 13 + ROX-Filer/src/menu.c | 252 +-------------- ROX-Filer/src/po/ru.po | 778 ++++++++++++++++++---------------------------- 6 files changed, 654 insertions(+), 731 deletions(-) create mode 100644 ROX-Filer/src/infobox.c create mode 100644 ROX-Filer/src/infobox.h diff --git a/ROX-Filer/Help/Changes b/ROX-Filer/Help/Changes index a0182165..7339dc23 100644 --- a/ROX-Filer/Help/Changes +++ b/ROX-Filer/Help/Changes @@ -2,6 +2,15 @@ A RISC OS-like filer for X by Thomas Leonard +27-Apr-2001 +~~~~~~~~~~~ +Rewrote the file info box. Looks a bit nicer, and it's easier to add extra +info to it later... + +26-Apr-2001 +~~~~~~~~~~~ +Updated Russian translation (Dmitry Elfimov). + 25-Apr-2001 ~~~~~~~~~~~ AppInfo file may contain a element - the text inside will be diff --git a/ROX-Filer/src/Makefile.in b/ROX-Filer/src/Makefile.in index c3bfb53d..dfa42971 100644 --- a/ROX-Filer/src/Makefile.in +++ b/ROX-Filer/src/Makefile.in @@ -20,15 +20,15 @@ PROG = ROX-Filer SRCS = action.c appinfo.c appmenu.c bind.c choices.c collection.c dir.c \ display.c dnd.c filer.c find.c fscache.c gtksavebox.c gui_support.c \ - i18n.c icon.c main.c menu.c minibuffer.c modechange.c mount.c \ - options.c panel.c pinboard.c pixmaps.c remote.c rox_gettext.c run.c \ - support.c toolbar.c type.c usericons.c + i18n.c icon.c infobox.c main.c menu.c minibuffer.c modechange.c \ + mount.c options.c panel.c pinboard.c pixmaps.c remote.c \ + rox_gettext.c run.c support.c toolbar.c type.c usericons.c OBJECTS = action.o appinfo.o appmenu.o bind.o choices.o collection.o dir.o \ display.o dnd.o filer.o find.o fscache.o gtksavebox.o gui_support.o \ - i18n.o icon.o main.o menu.o minibuffer.o modechange.o mount.o \ - options.o panel.o pinboard.o pixmaps.o remote.o rox_gettext.o run.o \ - support.o toolbar.o type.o usericons.o + i18n.o icon.o infobox.o main.o menu.o minibuffer.o modechange.o \ + mount.o options.o panel.o pinboard.o pixmaps.o remote.o \ + rox_gettext.o run.o support.o toolbar.o type.o usericons.o ############ Things to keep the same diff --git a/ROX-Filer/src/infobox.c b/ROX-Filer/src/infobox.c new file mode 100644 index 00000000..f2817926 --- /dev/null +++ b/ROX-Filer/src/infobox.c @@ -0,0 +1,321 @@ +/* + * $Id$ + * + * ROX-Filer, filer for the ROX desktop project + * Copyright (C) 2001, the ROX-Filer team. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation; either version 2 of the License, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program; if not, write to the Free Software Foundation, Inc., 59 Temple + * Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* infobox.c - code for showing a file's attributes */ + +#include + +#include +#include +#include +#include + +#include + +#include "global.h" + +#include "support.h" +#include "gui_support.h" +#include "dir.h" +#include "type.h" +#include "infobox.h" + +typedef struct _FileStatus FileStatus; + +/* This is for the 'file(1) says...' thing */ +struct _FileStatus +{ + int fd; /* FD to read from, -1 if closed */ + int input; /* Input watcher tag if fd valid */ + GtkLabel *label; /* Widget to output to */ + gboolean start; /* No output yet */ +}; + +/* Static prototypes */ +static GtkWidget *make_clist(guchar *path); +static GtkWidget *make_file_says(guchar *path); +static void file_info_destroyed(GtkWidget *widget, FileStatus *fs); +static void add_file_output(FileStatus *fs, + gint source, GdkInputCondition condition); +static guchar *pretty_type(DirItem *file, guchar *path); + +/**************************************************************** + * EXTERNAL INTERFACE * + ****************************************************************/ + +/* Create and display a new info box showing details about this item */ +void infobox_new(guchar *path) +{ + GtkWidget *window, *vbox, *list, *file, *button; + + g_return_if_fail(path != NULL); + + window = gtk_window_new(GTK_WINDOW_DIALOG); + gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_MOUSE); + gtk_container_set_border_width(GTK_CONTAINER(window), 4); + gtk_window_set_title(GTK_WINDOW(window), path); + + vbox = gtk_vbox_new(FALSE, 4); + gtk_container_add(GTK_CONTAINER(window), vbox); + + list = make_clist(path); + gtk_box_pack_start(GTK_BOX(vbox), list, TRUE, TRUE, 0); + + file = make_file_says(path); + gtk_box_pack_start(GTK_BOX(vbox), file, TRUE, TRUE, 0); + + button = gtk_button_new_with_label(_("OK")); + GTK_WIDGET_SET_FLAGS(GTK_WIDGET(button), GTK_CAN_DEFAULT); + gtk_window_set_default(GTK_WINDOW(window), button); + gtk_signal_connect_object(GTK_OBJECT(button), "clicked", + GTK_SIGNAL_FUNC(gtk_widget_destroy), + GTK_OBJECT(window)); + gtk_box_pack_start(GTK_BOX(vbox), button, TRUE, TRUE, 0); + + gtk_widget_show_all(window); +} + +/**************************************************************** + * INTERNAL FUNCTIONS * + ****************************************************************/ + +/* Create the CList with the file's details */ +static GtkWidget *make_clist(guchar *path) +{ + GtkCList *table; + GString *gstring; + struct stat info; + char *data[] = {NULL, NULL, NULL}; + DirItem item; + + g_return_val_if_fail(path[0] == '/', NULL); + + table = GTK_CLIST(gtk_clist_new(2)); + GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(table), GTK_CAN_FOCUS); + gtk_clist_set_column_auto_resize(table, 0, TRUE); + gtk_clist_set_column_auto_resize(table, 1, TRUE); + gtk_clist_set_column_justification(table, 0, GTK_JUSTIFY_RIGHT); + + data[0] = _("Name:"); + data[1] = strrchr(path, '/') + 1; + gtk_clist_append(table, data); + + if (lstat(path, &info)) + { + data[0] = _("Error:"); + data[1] = g_strerror(errno); + gtk_clist_append(table, data); + return GTK_WIDGET(table); + } + + gstring = g_string_new(NULL); + + g_string_sprintf(gstring, "%s, %s", user_name(info.st_uid), + group_name(info.st_gid)); + data[0] = _("Owner, Group:"); + data[1] = gstring->str; + gtk_clist_append(table, data); + + if (info.st_size >= PRETTY_SIZE_LIMIT) + { + g_string_sprintf(gstring, "%s (%ld %s)", + format_size((unsigned long) info.st_size), + (unsigned long) info.st_size, _("bytes")); + } + else + { + g_string_assign(gstring, + format_size((unsigned long) info.st_size)); + } + data[0] = _("Size:"); + data[1] = gstring->str; + gtk_clist_append(table, data); + + data[0] = _("Change time:"); + data[1] = pretty_time(&info.st_ctime); + gtk_clist_append(table, data); + + data[0] = _("Modify time:"); + data[1] = pretty_time(&info.st_mtime); + gtk_clist_append(table, data); + + data[0] = _("Access time:"); + data[1] = pretty_time(&info.st_atime); + gtk_clist_append(table, data); + + g_string_free(gstring, TRUE); + + data[0] = _("Permissions:"); + data[1] = pretty_permissions(info.st_mode); + gtk_clist_append(table, data); + + dir_stat(path, &item, FALSE); + data[0] = _("Type:"); + data[1] = pretty_type(&item, path); + gtk_clist_append(table, data); + g_free(data[1]); + dir_item_clear(&item); + + return GTK_WIDGET(table); +} + +static GtkWidget *make_file_says(guchar *path) +{ + GtkWidget *frame; + GtkWidget *file_label; + int file_data[2]; + char *argv[] = {"file", "-b", NULL, NULL}; + FileStatus *fs = NULL; + guchar *tmp; + + g_return_val_if_fail(path[0] == '/', NULL); + + frame = gtk_frame_new(_("file(1) says...")); + file_label = gtk_label_new(_("")); + gtk_misc_set_padding(GTK_MISC(file_label), 4, 4); + gtk_label_set_line_wrap(GTK_LABEL(file_label), TRUE); + gtk_container_add(GTK_CONTAINER(frame), file_label); + + if (pipe(file_data)) + { + tmp = g_strdup_printf("pipe(): %s", g_strerror(errno)); + gtk_label_set_text(GTK_LABEL(file_label), tmp); + g_free(tmp); + return frame; + } + + switch (fork()) + { + case -1: + tmp = g_strdup_printf("pipe(): %s", g_strerror(errno)); + gtk_label_set_text(GTK_LABEL(file_label), tmp); + g_free(tmp); + close(file_data[0]); + close(file_data[1]); + break; + case 0: + /* We are the child */ + close(file_data[0]); + dup2(file_data[1], STDOUT_FILENO); + dup2(file_data[1], STDERR_FILENO); +#ifdef FILE_B_FLAG + argv[2] = path; +#else + tmp = strrchr(path, '/'); + argv[1] = tmp + 1; + chdir(g_strndup(path, tmp - path)); +#endif + if (execvp(argv[0], argv)) + fprintf(stderr, "execvp() error: %s\n", + g_strerror(errno)); + _exit(0); + default: + /* We are the parent */ + close(file_data[1]); + fs = g_new(FileStatus, 1); + fs->label = GTK_LABEL(file_label); + fs->fd = file_data[0]; + fs->start = TRUE; + fs->input = gdk_input_add(fs->fd, GDK_INPUT_READ, + (GdkInputFunction) add_file_output, fs); + gtk_signal_connect(GTK_OBJECT(frame), "destroy", + GTK_SIGNAL_FUNC(file_info_destroyed), fs); + break; + } + + return frame; +} + +/* Got some data from file(1) - stick it in the window. */ +static void add_file_output(FileStatus *fs, + gint source, GdkInputCondition condition) +{ + char buffer[20]; + char *str; + int got; + + got = read(source, buffer, sizeof(buffer) - 1); + if (got <= 0) + { + int err = errno; + gtk_input_remove(fs->input); + close(source); + fs->fd = -1; + if (got < 0) + delayed_error(_("ROX-Filer: file(1) says..."), + g_strerror(err)); + return; + } + buffer[got] = '\0'; + + if (fs->start) + { + str = ""; + fs->start = FALSE; + } + else + gtk_label_get(fs->label, &str); + + str = g_strconcat(str, buffer, NULL); + gtk_label_set_text(fs->label, str); + g_free(str); +} + +static void file_info_destroyed(GtkWidget *widget, FileStatus *fs) +{ + if (fs->fd != -1) + { + gtk_input_remove(fs->input); + close(fs->fd); + } + + g_free(fs); +} + +/* g_free() the result */ +static guchar *pretty_type(DirItem *file, guchar *path) +{ + if (file->flags & ITEM_FLAG_SYMLINK) + { + char p[MAXPATHLEN + 1]; + int got; + got = readlink(path, p, MAXPATHLEN); + if (got > 0 && got <= MAXPATHLEN) + { + p[got] = '\0'; + return g_strconcat(_("Symbolic link to "), p, NULL); + } + + return g_strdup(_("Symbolic link")); + } + + if (file->flags & ITEM_FLAG_APPDIR) + return g_strdup(_("ROX application")); + + if (file->flags & ITEM_FLAG_MOUNT_POINT) + return g_strdup(_("Mount point")); + + if (file->mime_type) + return g_strconcat(file->mime_type->media_type, "/", + file->mime_type->subtype, NULL); + + return g_strdup("-"); +} diff --git a/ROX-Filer/src/infobox.h b/ROX-Filer/src/infobox.h new file mode 100644 index 00000000..01c02356 --- /dev/null +++ b/ROX-Filer/src/infobox.h @@ -0,0 +1,13 @@ +/* + * $Id$ + * + * ROX-Filer, filer for the ROX desktop project + * By Thomas Leonard, . + */ + +#ifndef _INFOBOX_H +#define _INFOBOX_H + +void infobox_new(guchar *path); + +#endif /* _INFOBOX_H */ diff --git a/ROX-Filer/src/menu.c b/ROX-Filer/src/menu.c index 37fd83f2..b416c184 100644 --- a/ROX-Filer/src/menu.c +++ b/ROX-Filer/src/menu.c @@ -53,6 +53,7 @@ #include "dir.h" #include "appmenu.h" #include "usericons.h" +#include "infobox.h" #define C_ "" @@ -218,17 +219,6 @@ static GtkItemFactoryEntry filer_menu_def[] = { }; -typedef struct _FileStatus FileStatus; - -/* This is for the 'file(1) says...' thing */ -struct _FileStatus -{ - int fd; /* FD to read from, -1 if closed */ - int input; /* Input watcher tag if fd valid */ - GtkLabel *label; /* Widget to output to */ - gboolean start; /* No output yet */ -}; - #define GET_MENU_ITEM(var, menu) \ var = gtk_item_factory_get_widget(item_factory, "<" menu ">"); @@ -949,106 +939,11 @@ static void set_icon(gpointer data, guint action, GtkWidget *widget) } } -/* Got some data from file(1) - stick it in the window. */ -static void add_file_output(FileStatus *fs, - gint source, GdkInputCondition condition) -{ - char buffer[20]; - char *str; - int got; - - got = read(source, buffer, sizeof(buffer) - 1); - if (got <= 0) - { - int err = errno; - gtk_input_remove(fs->input); - close(source); - fs->fd = -1; - if (got < 0) - delayed_error(_("ROX-Filer: file(1) says..."), - g_strerror(err)); - return; - } - buffer[got] = '\0'; - - if (fs->start) - { - str = ""; - fs->start = FALSE; - } - else - gtk_label_get(fs->label, &str); - - str = g_strconcat(str, buffer, NULL); - gtk_label_set_text(fs->label, str); - g_free(str); -} - -static void file_info_destroyed(GtkWidget *widget, FileStatus *fs) -{ - if (fs->fd != -1) - { - gtk_input_remove(fs->input); - close(fs->fd); - } - - g_free(fs); -} - -/* g_free() the result */ -guchar *pretty_type(DirItem *file, guchar *path) -{ - if (file->flags & ITEM_FLAG_SYMLINK) - { - char p[MAXPATHLEN + 1]; - int got; - got = readlink(path, p, MAXPATHLEN); - if (got > 0 && got <= MAXPATHLEN) - { - p[got] = '\0'; - return g_strconcat(_("Symbolic link to "), p, NULL); - } - - return g_strdup(_("Symbolic link")); - } - - if (file->flags & ITEM_FLAG_APPDIR) - return g_strdup(_("ROX application")); - - if (file->flags & ITEM_FLAG_MOUNT_POINT) - return g_strdup(_("Mount point")); - - if (file->mime_type) - return g_strconcat(file->mime_type->media_type, "/", - file->mime_type->subtype, NULL); - - return g_strdup("-"); -} - -#define LABEL(text, row) \ - label = gtk_label_new(text); \ - gtk_misc_set_alignment(GTK_MISC(label), 1, .5); \ - gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_RIGHT); \ - gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, row, row + 1); - -#define VALUE(label, row) \ - gtk_misc_set_alignment(GTK_MISC(label), 0, .5); \ - gtk_table_attach_defaults(GTK_TABLE(table), label, 1, 2, row, row + 1); - -static void show_file_info(gpointer data, guint action, GtkWidget *widget) +static void show_file_info(gpointer unused, guint action, GtkWidget *widget) { - GtkWidget *window, *table, *label, *button, *frame, *value; - GtkWidget *file_label; - GString *gstring; - int file_data[2]; - guchar *path, *tmp; - char *argv[] = {"file", "-b", NULL, NULL}; - Collection *collection; DirItem *file; - struct stat info; - FileStatus *fs = NULL; - guint perm; - + Collection *collection; + g_return_if_fail(window_with_focus != NULL); collection = window_with_focus->collection; @@ -1065,144 +960,11 @@ static void show_file_info(gpointer data, guint action, GtkWidget *widget) _("Examine ... ?")); return; } - file = selected_item(collection); - path = make_path(window_with_focus->path, - file->leafname)->str; - if (lstat(path, &info)) - { - delayed_error(PROJECT, g_strerror(errno)); - return; - } - - gstring = g_string_new(NULL); - - window = gtk_window_new(GTK_WINDOW_DIALOG); - gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_MOUSE); - gtk_container_set_border_width(GTK_CONTAINER(window), 4); - gtk_window_set_title(GTK_WINDOW(window), path); - - table = gtk_table_new(10, 2, FALSE); - gtk_container_add(GTK_CONTAINER(window), table); - gtk_table_set_row_spacings(GTK_TABLE(table), 8); - gtk_table_set_col_spacings(GTK_TABLE(table), 4); - - value = gtk_label_new(file->leafname); - LABEL(_("Name:"), 0); - VALUE(value, 0); - - g_string_sprintf(gstring, "%s, %s", user_name(info.st_uid), - group_name(info.st_gid)); - value = gtk_label_new(gstring->str); - LABEL(_("Owner, Group:"), 1); - VALUE(value, 1); - - if (info.st_size >= PRETTY_SIZE_LIMIT) - { - g_string_sprintf(gstring, "%s (%ld %s)", - format_size((unsigned long) info.st_size), - (unsigned long) info.st_size, _("bytes")); - } - else - { - g_string_assign(gstring, - format_size((unsigned long) info.st_size)); - } - value = gtk_label_new(gstring->str); - LABEL(_("Size:"), 2); - VALUE(value, 2); - - value = gtk_label_new(pretty_time(&info.st_ctime)); - LABEL(_("Change time:"), 3); - VALUE(value, 3); - - value = gtk_label_new(pretty_time(&info.st_mtime)); - LABEL(_("Modify time:"), 4); - VALUE(value, 4); - - value = gtk_label_new(pretty_time(&info.st_atime)); - LABEL(_("Access time:"), 5); - VALUE(value, 5); - - value = gtk_label_new(pretty_permissions(info.st_mode)); - perm = applicable(info.st_uid, info.st_gid); - gtk_label_set_pattern(GTK_LABEL(value), - perm == 0 ? "___ " : - perm == 1 ? " ___ " : - " ___"); - gtk_widget_set_style(value, fixed_style); - LABEL(_("Permissions:"), 6); - VALUE(value, 6); - - tmp = pretty_type(file, path); - value = gtk_label_new(tmp); - g_free(tmp); - LABEL(_("Type:"), 7); - VALUE(value, 7); - - frame = gtk_frame_new(_("file(1) says...")); - gtk_table_attach_defaults(GTK_TABLE(table), frame, 0, 2, 8, 9); - file_label = gtk_label_new(_("")); - gtk_misc_set_padding(GTK_MISC(file_label), 4, 4); - gtk_label_set_line_wrap(GTK_LABEL(file_label), TRUE); - gtk_container_add(GTK_CONTAINER(frame), file_label); - - button = gtk_button_new_with_label(_("OK")); - gtk_window_set_focus(GTK_WINDOW(window), button); - gtk_table_attach(GTK_TABLE(table), button, 0, 2, 10, 11, - GTK_EXPAND | GTK_FILL | GTK_SHRINK, 0, 40, 4); - gtk_signal_connect_object(GTK_OBJECT(button), "clicked", - gtk_widget_destroy, GTK_OBJECT(window)); - - gtk_widget_show_all(window); - gdk_flush(); - if (pipe(file_data)) - { - g_string_sprintf(gstring, "pipe(): %s", g_strerror(errno)); - g_string_free(gstring, TRUE); - return; - } - switch (fork()) - { - case -1: - g_string_sprintf(gstring, "fork(): %s", - g_strerror(errno)); - gtk_label_set_text(GTK_LABEL(file_label), gstring->str); - g_string_free(gstring, TRUE); - close(file_data[0]); - close(file_data[1]); - break; - case 0: - /* We are the child */ - close(file_data[0]); - dup2(file_data[1], STDOUT_FILENO); - dup2(file_data[1], STDERR_FILENO); -#ifdef FILE_B_FLAG - argv[2] = path; -#else - argv[1] = file->leafname; - chdir(window_with_focus->path); -#endif - if (execvp(argv[0], argv)) - fprintf(stderr, "execvp() error: %s\n", - g_strerror(errno)); - _exit(0); - default: - /* We are the parent */ - close(file_data[1]); - fs = g_new(FileStatus, 1); - fs->label = GTK_LABEL(file_label); - fs->fd = file_data[0]; - fs->start = TRUE; - fs->input = gdk_input_add(fs->fd, GDK_INPUT_READ, - (GdkInputFunction) add_file_output, fs); - gtk_signal_connect(GTK_OBJECT(window), "destroy", - GTK_SIGNAL_FUNC(file_info_destroyed), fs); - g_string_free(gstring, TRUE); - break; - } + file = selected_item(collection); + infobox_new(make_path(window_with_focus->path, file->leafname)->str); } - + void open_home(gpointer data, guint action, GtkWidget *widget) { filer_opendir(home_dir); diff --git a/ROX-Filer/src/po/ru.po b/ROX-Filer/src/po/ru.po index e4bb0e29..0f201cda 100644 --- a/ROX-Filer/src/po/ru.po +++ b/ROX-Filer/src/po/ru.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: ROX-Filer 1.1.0\n" -"POT-Creation-Date: 2001-04-09 12:14+0100\n" +"POT-Creation-Date: 2001-04-07 21:34+0400\n" "PO-Revision-Date: 2001-04-05 20:46+0300\n" "Last-Translator: Dmitry Elfimov \n" "Language-Team: Russian \n" @@ -26,7 +26,7 @@ msgid "" "Just put the name of the file you're looking for in single quotes:\n" "'index.html'\t(to find a file called 'index.html')" msgstr "" -"ðÏÍÅÓÔÉÔÅ ÉÍÑ ÎÕÖÎÏÇÏ ÆÁÊÌÁ × ÏÄÉÎÏÞÎÙÅ ËÁ×ÙÞËÉ:\n" +"ðÏÍÅÓÔÉÔÅ ÉÍÑ ÎÕÖÎÏÇÏ ÆÁÊÌÁ × ÁÐÏÓÔÒÏÆÙ:\n" "'index.html'\t(ÄÌÑ ÐÏÉÓËÁ ÆÁÊÌÁ 'index.html')" #: action.c:223 @@ -267,114 +267,109 @@ msgstr "' msgid "!Invalid mode command - change it and try again\n" msgstr "!îÅ×ÅÒÎÁÑ ËÏÍÁÎÄÁ ÒÅÖÉÍÁ - ÉÚÍÅÎÉÔÅ É ÐÏÐÒÏÂÕÊÔÅ ÓÎÏ×Á\n" -#: action.c:1278 +#: action.c:1252 #, c-format msgid "?'%s' already exists - %s?" msgstr "?'%s' ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ - %s?" -#: action.c:1280 +#: action.c:1254 msgid "merge contents" msgstr "ÓÏÅÄÅÎÉÔØ ÓÏÄÅÒÖÉÍÏÅ" -#: action.c:1280 +#: action.c:1254 msgid "overwrite" msgstr "ÐÅÒÅÐÉÓÁÔØ" -#: action.c:1298 +#: action.c:1272 msgid "'Trying copy anyway...\n" msgstr "'ðÙÔÁÀÓØ ÓËÏÐÉÒÏ×ÁÔØ...\n" -#: action.c:1306 +#: action.c:1280 #, c-format msgid "?Copy %s as %s?" msgstr "?ëÏÐÉÒÏ×ÁÔØ %s × %s?" -#: action.c:1312 +#: action.c:1286 #, c-format msgid "'Copying %s as %s\n" msgstr "'ëÏÐÉÒÕÅÔÓÑ %s × %s\n" -#: action.c:1337 +#: action.c:1311 msgid "!ERROR: Destination already exists, but is not a directory\n" msgstr "!ïÛÉÂËÁ: ÕËÁÚÁÎÎÏÅ ÉÍÑ ÓÕÝÅÓÔ×ÕÅÔ, ÎÏ ÜÔÏ ÎÅ ÄÉÒÅËÔÏÒÉÑ\n" -#: action.c:1410 +#: action.c:1384 #, c-format msgid "!ERROR: %s\n" msgstr "!ïÛÉÂËÁ: %s\n" -#: action.c:1440 +#: action.c:1414 #, c-format msgid "?'%s' already exists - overwrite?" msgstr "?'%s' ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ - ÐÅÒÅÐÉÓÁÔØ?" -#: action.c:1462 +#: action.c:1436 msgid "'Trying move anyway...\n" msgstr "'ðÙÔÁÀÓØ ÐÅÒÅÍÅÓÔÉÔØ...\n" -#: action.c:1469 +#: action.c:1443 #, c-format msgid "?Move %s as %s?" msgstr "?ðÅÒÅÍÅÓÔÉÔØ %s × %s?" -#: action.c:1475 +#: action.c:1449 #, c-format msgid "'Moving %s as %s\n" msgstr "'ðÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n" -#: action.c:1504 +#: action.c:1478 #, c-format msgid "!ERROR: Failed to move %s as %s\n" msgstr "!ïÛÉÂËÁ: îÅ ÕÄÁÌÏÓØ ÐÅÒÅÍÅÓÔÉÔØ %s × %s\n" -#: action.c:1521 +#: action.c:1495 msgid "!ERROR: Can't copy object into itself\n" msgstr "!ïÛÉÂËÁ: îÅ ÍÏÇÕ ÓËÏÐÉÒÏ×ÁÔØ ÏÂØÅËÔ × ÓÁÍÏÇÏ ÓÅÂÑ\n" -#: action.c:1536 +#: action.c:1510 msgid "!ERROR: Can't move/rename object into itself\n" msgstr "!ïÛÉÂËÁ: îÅ ÍÏÇÕ ÐÅÒÅÍÅÓÔÉÔØ/ÐÅÒÅÉÍÅÎÏ×ÁÔØ ÏÂØÅËÔ × ÓÁÍÏÇÏ ÓÅÂÑ\n" -#: action.c:1560 +#: action.c:1534 #, c-format msgid "'Linking %s as %s\n" msgstr "'óÏÚÄÁÀ ÓÓÙÌËÕ ÄÌÑ %s ËÁË %s\n" -#: action.c:1567 +#: action.c:1541 #, c-format msgid "?Link %s as %s?" msgstr "?óÏÚÄÁÔØ ÓÓÙÌËÕ ÄÌÑ %s ËÁË %s?" -#: action.c:1594 +#: action.c:1568 #, c-format msgid "'Mounting %s\n" msgstr "'ðÏÄÓÏÄÉÎÑÅÔÓÑ %s\n" -#: action.c:1595 +#: action.c:1569 #, c-format msgid "'Unmounting %s\n" msgstr "'ïÔÓÏÅÄÉÎÑÅÔÓÑ %s\n" -#: action.c:1602 +#: action.c:1576 #, c-format msgid "?Mount %s?\n" msgstr "?ðÏÄÓÏÅÄÅÎÉÔØ %s?\n" -#: action.c:1603 +#: action.c:1577 #, c-format msgid "?Unmount %s?\n" msgstr "?ïÔÓÏÅÄÅÎÉÔØ %s?\n" -#: action.c:1622 +#: action.c:1595 msgid "!ERROR: Mount failed\n" msgstr "!ïÛÉÂËÁ: ðÏÄÓÏÅÄÉÎÉÔØ ÎÅ ÕÄÁÌÏÓØ\n" -#: action.c:1623 -#, fuzzy -msgid "!ERROR: Unmount failed\n" -msgstr "!ïÛÉÂËÁ: ðÏÄÓÏÅÄÉÎÉÔØ ÎÅ ÕÄÁÌÏÓØ\n" - -#: action.c:1661 +#: action.c:1633 #, c-format msgid "" "'\n" @@ -383,7 +378,7 @@ msgstr "" "'\n" "÷ÓÅÇÏ: %s\n" -#: action.c:1687 action.c:1727 action.c:1765 action.c:1801 action.c:1822 +#: action.c:1659 action.c:1699 action.c:1737 action.c:1773 action.c:1794 msgid "" "'\n" "Done\n" @@ -391,164 +386,156 @@ msgstr "" "'\n" "çÏÔÏ×Ï\n" -#: action.c:1688 +#: action.c:1660 msgid "!No mount points selected!\n" msgstr "!îÅ ×ÙÂÒÁÎÏ ÔÏÞËÉ ÐÏÄÓÏÅÄÉÎÅÎÉÑ!\n" -#: action.c:1758 +#: action.c:1730 msgid "?Another search?" msgstr "?éÓËÁÔØ ÅÝÅ?" -#: action.c:1788 +#: action.c:1760 #, c-format msgid "!'%s' is a symbolic link\n" msgstr "!'%s' ÜÔÏ ÓÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ\n" -#: action.c:1847 tips:63 +#: action.c:1819 tips:60 msgid "Name" msgstr "éÍÑ" -#: action.c:1848 run.c:598 +#: action.c:1820 run.c:598 msgid "Directory" msgstr "äÉÒÅËÔÏÒÉÑ" -#: action.c:1854 +#: action.c:1826 msgid "You need to select some items to search through" msgstr "÷ÁÍ ÎÕÖÎÏ ×ÙÂÒÁÔØ ÎÅÓËÏÌØËÏ ÏÂØÅËÔÏ× ÄÌÑ ÐÏÉÓËÁ" -#: action.c:1888 +#: action.c:1860 msgid "Expression:" msgstr "÷ÙÒÁÖÅÎÉÅ:" -#: action.c:1905 menu.c:194 +#: action.c:1877 menu.c:192 msgid "Find" msgstr "îÁÊÔÉ" -#: action.c:1924 +#: action.c:1896 msgid "You need to select some items to count" msgstr "÷ÁÍ ÎÁÄÏ ×ÙÂÒÁÔØ ÎÅÓËÏÌØËÏ ÏÂØÅËÔÏ× ÄÌÑ ÐÏÄÓÞÅÔÁ" -#: action.c:1934 menu.c:192 +#: action.c:1906 menu.c:190 msgid "Disk Usage" msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ ÄÉÓËÁ" -#: action.c:1955 +#: action.c:1927 msgid "Mount / Unmount" msgstr "ðÏÄÓÏÅÄÉÎÉÔØ / ïÔÓÏÅÄÉÎÉÔØ" -#: action.c:1960 +#: action.c:1932 msgid "ROX-Filer does not yet support mount points on your system. Sorry." msgstr "" "ROX-Filer ÅÝÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÞËÉ ÐÏÄÓÏÅÄÉÎÅÎÉÑ ÎÁ ×ÁÛÅÊ ÓÉÓÔÅÍÅ. " "éÚ×ÉÎÉÔÅ. " -#: action.c:1981 menu.c:191 tips:39 +#: action.c:1953 menu.c:189 tips:37 msgid "Delete" msgstr "õÄÁÌÉÔØ" -#: action.c:1983 +#: action.c:1955 msgid "Force - don't confirm deletion of non-writeable items" -msgstr "ðÒÉÎÕÄÉÔÅÌØÎÏ - ÎÅ ÐÏÄÔ×ÅÒÖÄÁÔØ ÕÄÁÌÅÎÉÅ ÎÅÞÉÔÁÅÍÙÈ ÏÂØÅËÔÏ×" +msgstr "ðÒÉÎÕÄÉÔÅÌØÎÏ (ÎÅ ÐÏÄÔ×ÅÒÖÄÁÔØ ÕÄÁÌÅÎÉÅ ÏÂØÅËÔÏ×)" -#: action.c:1986 +#: action.c:1958 msgid "Brief - only log directories being deleted" -msgstr "ëÏÒÏÔËÏ - ÔÏÌØËÏ ×Ù×ÏÄÉÔØ ÉÍÅÎÁ ÕÄÁÌÅÎÎÙÈ ÄÉÒÅËÔÏÒÉÊ" +msgstr "ëÏÒÏÔËÏ (×Ù×ÏÄÉÔØ ÔÏÌØËÏ ÉÍÅÎÁ ÕÄÁÌÅÎÎÙÈ ÄÉÒÅËÔÏÒÉÊ)" -#: action.c:2010 +#: action.c:1982 msgid "You need to select the items whose permissions you want to change" msgstr "÷ÁÍ ÎÕÖÎÏ ×ÙÂÒÁÔØ ÏÂØÅËÔÙ ÐÒÁ×Á ÄÏÓÔÕÐÁ ËÏÔÏÒÙÈ ×Ù ÈÏÔÉÔÅ ÉÚÍÅÎÉÔØ" -#: action.c:2018 +#: action.c:1990 msgid "a+x (Make executable/searchable)" msgstr "a+x (óÄÅÌÁÔØ ×ÙÐÏÌÎÑÅÍÙÍ)" -#: action.c:2020 +#: action.c:1992 msgid "a-x (Make non-executable/non-searchable)" msgstr "a-x (ÓÄÅÌÁÔØ ÎÅ×ÙÐÏÌÎÑÅÍÙÍ)" -#: action.c:2022 +#: action.c:1994 msgid "u+rw (Give owner read+write)" msgstr "u+rw (äÁÔØ ×ÌÁÄÅÌØÃÕ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÎÁ ÞÔÅÎÉÅ É ÚÁÐÉÓØ)" -#: action.c:2024 +#: action.c:1996 msgid "go-rwx (Private - owner access only)" msgstr "go-rwx (þÁÓÔÎÙÊ - ÄÏÓÔÕÐ ÔÏÌØËÏ ÄÌÑ ×ÌÁÄÅÌØÃÁ)" -#: action.c:2026 +#: action.c:1998 msgid "go=u-w (Public access, not write)" msgstr "go=u-w (ïÂÝÉÊ ÄÏÓÔÕÐ ÂÅÚ ÚÁÐÉÓÉ)" -#: action.c:2037 +#: action.c:2009 msgid "Brief - don't list processed files" msgstr "ëÏÒÏÔËÏ - ÎÅ ×Ù×ÏÄÉÔØ ÏÂÒÁÂÏÔÁÎÎÙÅ ÆÁÊÌÙ" -#: action.c:2039 -msgid "Force - make directories u+rx before entering them" -msgstr "" - -#: action.c:2041 +#: action.c:2011 msgid "Recurse - also change contents of subdirectories" msgstr "òÅËÕÒÓÉ×ÎÏ - ÔÁËÖÅ ÍÅÎÑÅÔ ÓÏÄÅÒÖÉÍÏÅ ÐÏÄÄÉÒÅËÔÏÒÉÊ" -#: action.c:2044 +#: action.c:2014 msgid "Command:" msgstr "ëÏÍÁÎÄÁ:" -#: action.c:2066 menu.c:158 menu.c:164 menu.c:193 tips:59 +#: action.c:2036 menu.c:156 menu.c:162 menu.c:191 tips:56 msgid "Permissions" msgstr "ðÒÁ×Á ÄÏÓÔÕÐÁ" -#: action.c:2086 menu.c:767 tips:36 +#: action.c:2056 menu.c:760 tips:34 msgid "Copy" msgstr "ëÏÐÉÒÏ×ÁÔØ" -#: action.c:2103 tips:37 +#: action.c:2073 tips:35 msgid "Move" msgstr "ðÅÒÅÍÅÓÔÉÔØ" -#: action.c:2118 tips:38 +#: action.c:2088 tips:36 msgid "Link" msgstr "óÓÙÌËÁ" -#: action.c:2165 +#: action.c:2135 msgid "Deleting items such as " msgstr "õÄÁÌÅÎÉÅ ÏÂØÅËÔÏ× ÔÁËÉÈ ËÁË " -#: action.c:2169 +#: action.c:2139 msgid "Deleting the item " msgstr "õÄÁÌÅÎÉÅ ÏÂßÅËÔÁ " -#: action.c:2171 +#: action.c:2141 msgid "Deleting the items " msgstr "õÄÁÌÅÎÉÅ ÏÂßÅËÔÏ× " -#: action.c:2190 -msgid " and " -msgstr "" - -#: action.c:2199 +#: action.c:2169 msgid " will affect some items on the pinboard or panel - really delete it?" msgstr "" -"üÔÏ ÚÁÔÒÏÎÅÔ ÎÅËÏÔÏÒÙÅ ÏÂØÅËÔÙ ÎÁ ÒÁÂÏÞÅÍ ÓÔÏÌÅ ÉÌÉ ÎÁ ÐÁÎÅÌÉ - " -"ÄÅÊÓÔ×ÉÔÅÌØÎÏ ÕÄÁÌÉÔØ?" +"üÔÏ ÚÁÔÒÏÎÅÔ ÎÅËÏÔÏÒÙÅ ÏÂØÅËÔÙ ÎÁ ÒÁÂÏÞÅÍ ÓÔÏÌÅ ÉÌÉ ÎÁ ÐÁÎÅÌÉ - ÄÅÊÓÔ×ÉÔÅÌØÎÏ " +"ÕÄÁÌÉÔØ?" -#: action.c:2206 +#: action.c:2176 msgid " will affect some items on the pinboard or panel - really delete them?" msgstr "" -"üÔÏ ÚÁÔÒÏÎÅÔ ÎÅËÏÔÏÒÙÅ ÏÂØÅËÔÙ ÎÁ ÒÁÂÏÞÅÍ ÓÔÏÌÅ ÉÌÉ ÎÁ ÐÁÎÅÌÉ - " -"ÄÅÊÓÔ×ÉÔÅÌØÎÏ ÕÄÁÌÉÔØ?" +"üÔÏ ÚÁÔÒÏÎÅÔ ÎÅËÏÔÏÒÙÅ ÏÂØÅËÔÙ ÎÁ ÒÁÂÏÞÅÍ ÓÔÏÌÅ ÉÌÉ ÎÁ ÐÁÎÅÌÉ - ÄÅÊÓÔ×ÉÔÅÌØÎÏ " +"ÕÄÁÌÉÔØ?" -#: action.c:2211 gtksavebox.c:226 gtksavebox.c:498 icon.c:112 menu.c:1111 -#: menu.c:1452 options.c:805 type.c:605 usericons.c:476 +#: action.c:2181 gtksavebox.c:226 gtksavebox.c:498 icon.c:112 menu.c:1104 +#: menu.c:1428 options.c:805 type.c:605 usericons.c:476 msgid "OK" msgstr "OK" -#: action.c:2211 gtksavebox.c:233 icon.c:119 menu.c:1459 options.c:817 +#: action.c:2181 gtksavebox.c:233 icon.c:119 menu.c:1435 options.c:817 #: panel.c:391 type.c:612 usericons.c:484 msgid "Cancel" msgstr "ïÔÍÅÎÉÔØ" -#: appmenu.c:267 menu.c:1408 +#: appmenu.c:267 menu.c:1384 msgid "fork() failed" msgstr "ÎÅ ÕÄÁÌÏÓØ ÓÄÅÌÁÔØ fork()" @@ -557,7 +544,7 @@ msgstr " msgid "Can't open directory: %s" msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÄÉÒÅËÔÏÒÉÀ %s" -#: display.c:924 +#: display.c:564 #, c-format msgid "lstat(2) failed: %s" msgstr "lstat(2) ÎÅÕÄÁÌÓÑ: %s" @@ -576,8 +563,8 @@ msgstr " #: dnd.c:682 msgid "" -"XdndDirectSave0 target provided, but the atom XdndDirectSave0 (type text/" -"plain) did not contain a leafname\n" +"XdndDirectSave0 target provided, but the atom XdndDirectSave0 (type " +"text/plain) did not contain a leafname\n" msgstr "" #: dnd.c:693 @@ -644,21 +631,21 @@ msgstr " msgid "Error getting file list" msgstr "ïÛÉÂËÁ ÐÒÉ ÐÏÌÕÞÅÎÉÉ ÓÐÉÓËÁ ÆÁÊÌÏ×" -#: filer.c:532 +#: filer.c:513 msgid "Directory missing/deleted" msgstr "äÉÒÅËÔÏÒÉÑ ÏÔÓÕÔÓÔ×ÕÅÔ ÉÌÉ ÕÄÁÌÅÎÁ" -#: filer.c:869 +#: filer.c:840 #, c-format msgid "Directory '%s' is not accessible" msgstr "äÉÒÅËÔÏÒÉÑ '%s' ÎÅÄÏÓÔÕÐÎÁ" -#: filer.c:1051 +#: filer.c:1022 #, c-format msgid "Directory '%s' not found." msgstr "äÉÒÅËÔÏÒÉÑ '%s' ÎÅ ÎÁÊÄÅÎÁ" -#: filer.c:1400 +#: filer.c:1368 msgid " (Scanning)" msgstr "(óËÁÎÉÒÏ×ÁÎÉÅ)" @@ -908,7 +895,8 @@ msgstr "" #: i18n.c:166 msgid "" "You must restart the filer for the new language setting to take full effect" -msgstr "÷Ù ÄÏÌÖÎÙ ÐÅÒÅÚÁÐÕÓÔÉÔØ ÐÒÏÇÒÁÍÍÕ ÄÌÑ ÉÓÐÏÌØÚÏ×ÁÎÉÑ ×ÙÂÒÁÎÎÏÇÏ ÑÚÙËÁ" +msgstr "" +"÷Ù ÄÏÌÖÎÙ ÐÅÒÅÚÁÐÕÓÔÉÔØ ÐÒÏÇÒÁÍÍÕ ÄÌÑ ÉÓÐÏÌØÚÏ×ÁÎÉÑ ×ÙÂÒÁÎÎÏÇÏ ÑÚÙËÁ" #: icon.c:70 panel.c:174 pinboard.c:198 msgid "Edit Icon" @@ -934,58 +922,6 @@ msgstr " msgid "Sorry, but the name must not contain < or >" msgstr "éÍÑ ÎÅ ÄÏÌÖÎÏ ÓÏÄÅÒÖÁÔØ `<` ÉÌÉ `>`" -#: main.c:87 -msgid "" -"Copyright (C) 2001 Thomas Leonard.\n" -"ROX-Filer comes with ABSOLUTELY NO WARRANTY,\n" -"to the extent permitted by law.\n" -"You may redistribute copies of ROX-Filer\n" -"under the terms of the GNU General Public License.\n" -"For more information about these matters, see the file named COPYING.\n" -msgstr "" - -#: main.c:96 -msgid "Try `ROX-Filer/AppRun --help' for more information.\n" -msgstr "" - -#: main.c:99 -msgid "Try `ROX-Filer/AppRun -h' for more information.\n" -msgstr "" - -#: main.c:101 -msgid "" -"NOTE: Your system does not support long options - \n" -"you must use the short versions instead.\n" -"\n" -msgstr "" - -#: main.c:105 -msgid "" -"Usage: ROX-Filer/AppRun [OPTION]... [FILE]...\n" -"Open each directory or file listed, or the current working\n" -"directory if no arguments are given.\n" -"\n" -" -b, --bottom=PANEL\topen PAN as a bottom-edge panel\n" -" -d, --dir=DIR\t\topen DIR as directory (not application)\n" -" -h, --help\t\tdisplay this help and exit\n" -" -l, --left=PANEL\topen PAN as a left-edge panel\n" -" -m, --mime-type=FILE\tprint MIME type of FILE and exit\n" -" -n, --new\t\tstart a new filer, even if already running\n" -" -o, --override\toverride window manager control of panels\n" -" -p, --pinboard=PIN\tuse pinboard PIN as the pinboard\n" -" -r, --right=PANEL\topen PAN as a right-edge panel\n" -" -s, --show=FILE\topen a directory showing FILE\n" -" -t, --top=PANEL\topen PANEL as a top-edge panel\n" -" -u, --user\t\tshow user name in each window \n" -" -v, --version\t\tdisplay the version information and exit\n" -" -x, --examine=FILE\tFILE has changed - re-examine it\n" -"\n" -"The latest version can be found at:\n" -"\thttp://rox.sourceforge.net\n" -"\n" -"Report bugs to .\n" -msgstr "" - #: main.c:367 #, c-format msgid "Running as user '%s'" @@ -1003,400 +939,390 @@ msgstr " msgid "No (couldn't find a valid libvfs)" msgstr "îÅÔ (ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÐÒÉÇÏÄÎÕÀ libvfs)" -#: menu.c:151 +#: menu.c:150 msgid "Display" -msgstr "ðÏËÁÚÙ×ÁÔØ" - -#: menu.c:152 tips:52 -#, fuzzy -msgid "Huge Icons" -msgstr "âÏÌØÛÉÅ ÉËÏÎËÉ" +msgstr "ðÏËÁÚÁÔØ" -#: menu.c:153 tips:53 +#: menu.c:151 tips:50 msgid "Large Icons" msgstr "âÏÌØÛÉÅ ÉËÏÎËÉ" -#: menu.c:154 tips:54 +#: menu.c:152 tips:51 msgid "Small Icons" msgstr "íÁÌÅÎØËÉÅ ÉËÏÎËÉ" -#: menu.c:155 +#: menu.c:153 msgid "Large, With..." msgstr "âÏÌØÛÉÅ..." -#: menu.c:156 menu.c:162 tips:57 +#: menu.c:154 menu.c:160 tips:54 msgid "Summary" msgstr "äÅÔÁÌÉ" -#: menu.c:157 menu.c:163 tips:58 +#: menu.c:155 menu.c:161 tips:55 msgid "Sizes" msgstr "òÁÚÍÅÒ" -#: menu.c:159 menu.c:165 tips:60 tips:64 +#: menu.c:157 menu.c:163 tips:57 tips:61 msgid "Type" msgstr "ôÉÐ" -#: menu.c:160 menu.c:166 tips:61 +#: menu.c:158 menu.c:164 tips:58 msgid "Times" msgstr "÷ÒÅÍÑ" -#: menu.c:161 +#: menu.c:159 msgid "Small, With..." msgstr "íÁÌÅÎØËÉÅ..." -#: menu.c:168 +#: menu.c:166 msgid "Sort by Name" -msgstr "óÏÒÔÉÒÏ×ÁÔØ ÐÏ ÉÍÅÎÉ" +msgstr "óÏÒÔÉÒÏ×ËÁ ÐÏ ÉÍÅÎÉ" -#: menu.c:169 +#: menu.c:167 msgid "Sort by Type" -msgstr "óÏÒÔÉÒÏ×ÁÔØ ÐÏ ÔÉÐÕ" +msgstr "óÏÒÔÉÒÏ×ËÁ ÐÏ ÔÉÐÕ" -#: menu.c:170 +#: menu.c:168 msgid "Sort by Date" -msgstr "óÏÒÔÉÒÏ×ÁÔØ ÐÏ ÄÁÔÅ" +msgstr "óÏÒÔÉÒÏ×ËÁ ÐÏ ÄÁÔÅ" -#: menu.c:171 +#: menu.c:169 msgid "Sort by Size" -msgstr "óÏÒÔÉÒÏ×ÁÔØ ÐÏ ÒÁÚÍÅÒÕ" +msgstr "óÏÒÔÉÒÏ×ËÁ ÐÏ ÒÁÚÍÅÒÕ" -#: menu.c:173 +#: menu.c:171 msgid "Show Hidden" msgstr "ðÏËÁÚÁÔØ ÓÐÒÑÔÁÎÎÙÅ" -#: menu.c:174 +#: menu.c:172 msgid "Refresh" msgstr "ïÂÎÏ×ÉÔØ" -#: menu.c:175 +#: menu.c:173 msgid "Create Thumbs" msgstr "ðÒÅÄÐÒÏÓÍÏÔÒ" -#: menu.c:176 run.c:287 type.c:198 +#: menu.c:174 run.c:287 type.c:198 msgid "File" msgstr "æÁÊÌ" -#: menu.c:177 +#: menu.c:175 msgid "Copy..." -msgstr "ëÏÐÉÒÏ×ÁÔØ..." +msgstr "ëÏÐÉÒÏ×ÁÔØ" -#: menu.c:178 +#: menu.c:176 msgid "Rename..." -msgstr "ðÅÒÅÉÍÅÎÏ×ÁÔØ..." +msgstr "ðÅÒÅÉÍÅÎÏ×ÁÔØ" -#: menu.c:179 +#: menu.c:177 msgid "Link..." -msgstr "óÓÙÌËÁ..." +msgstr "óÓÙÌËÁ" -#: menu.c:180 menu.c:502 +#: menu.c:178 menu.c:500 msgid "Shift Open" msgstr "ïÔËÒÙÔØ (shift)" -#: menu.c:181 toolbar.c:120 +#: menu.c:179 toolbar.c:120 msgid "Help" msgstr "ðÏÍÏÝØ" -#: menu.c:182 +#: menu.c:180 msgid "Info" msgstr "éÎÆÏÒÍÁÃÉÑ" -#: menu.c:183 +#: menu.c:181 msgid "Set Run Action..." -msgstr "õÓÔÁÎÏ×ÉÔØ ÄÅÊÓÔ×ÉÅ..." +msgstr "õÓÔÁÎÏ×ÉÔØ ÄÅÊÓÔ×ÉÅ" -#: menu.c:184 +#: menu.c:182 msgid "Set Icon..." -msgstr "õÓÔÁÎÏ×ÉÔØ ÉËÏÎËÕ..." +msgstr "õÓÔÁÎÏ×ÉÔØ ÉËÏÎËÕ" -#: menu.c:185 +#: menu.c:183 msgid "Open VFS" msgstr "ïÔËÒÙÔØ VFS" -#: menu.c:186 +#: menu.c:184 msgid "Unzip" msgstr "" -#: menu.c:187 +#: menu.c:185 msgid "Untar" msgstr "" -#: menu.c:188 +#: menu.c:186 msgid "Deb" msgstr "" -#: menu.c:189 +#: menu.c:187 msgid "RPM" msgstr "" -#: menu.c:195 +#: menu.c:193 msgid "Select All" msgstr "÷ÙÂÒÁÔØ ×ÓÅ" -#: menu.c:196 +#: menu.c:194 msgid "Clear Selection" msgstr "óÎÑÔØ ×ÙÂÏÒ" -#: menu.c:197 +#: menu.c:195 msgid "Options..." -msgstr "ïÐÃÉÉ..." +msgstr "ïÐÃÉÉ" -#: menu.c:198 +#: menu.c:196 msgid "New Directory..." -msgstr "îÏ×ÁÑ ÄÉÒÅËÔÏÒÉÑ..." +msgstr "îÏ×ÁÑ ÄÉÒÅËÔÏÒÉÑ" -#: menu.c:199 +#: menu.c:197 #, fuzzy msgid "New File..." -msgstr "îÏ×ÙÊ ÆÁÊÌ..." +msgstr "îÏ×ÙÊ ÆÁÊÌ" -#: menu.c:200 +#: menu.c:198 msgid "Xterm Here" msgstr "ôÅÒÍÉÎÁÌ" -#: menu.c:201 +#: menu.c:199 msgid "Window" msgstr "ïËÎÏ" -#: menu.c:202 +#: menu.c:200 msgid "Parent, New Window" msgstr "îÁ ÕÒÏ×ÅÎØ ×ÙÛÅ, ÎÏ×ÏÅ ÏËÎÏ" -#: menu.c:203 +#: menu.c:201 msgid "Parent, Same Window" msgstr "îÁ ÕÒÏ×ÅÎØ ×ÙÛÅ, ÔÏ ÖÅ ÏËÎÏ" -#: menu.c:204 +#: menu.c:202 msgid "New Window" msgstr "îÏ×ÏÅ ÏËÎÏ" -#: menu.c:205 +#: menu.c:203 #, fuzzy msgid "Home Directory" msgstr "äÏÍÁÛÎÑÑ ÄÉÒÅËÔÏÒÉÑ" -#: menu.c:206 +#: menu.c:204 msgid "Resize Window" msgstr "òÁÚÍÅÒ ÏËÎÁ" -#: menu.c:209 +#: menu.c:207 msgid "Close Window" msgstr "úÁËÒÙÔØ oËÎÏ" -#: menu.c:211 +#: menu.c:209 msgid "Enter Path..." msgstr "÷×ÅÓÔÉ ÐÕÔØ..." -#: menu.c:212 +#: menu.c:210 msgid "Shell Command..." msgstr "ëÏÍÁÎÄÁ..." -#: menu.c:213 +#: menu.c:211 msgid "Select If..." msgstr "÷ÙÂÒÁÔØ..." -#: menu.c:215 +#: menu.c:213 msgid "Show ROX-Filer Help" msgstr "ðÏÍÏÝØ ROX-Filer'a" -#: menu.c:445 +#: menu.c:443 msgid "Next Click" msgstr "äÅÊÓÔ×ÉÅ" -#: menu.c:461 +#: menu.c:459 #, c-format msgid "%d items" msgstr "%d ÏÂØÅËÔÏ×" -#: menu.c:474 +#: menu.c:472 msgid "Unmount" msgstr "ïÔÓÏÅÄÉÎÉÔØ" -#: menu.c:476 tips:40 +#: menu.c:474 tips:38 msgid "Mount" msgstr "ðÒÉÓÏÅÄÉÎÉÔØ" -#: menu.c:480 +#: menu.c:478 msgid "Show Target" msgstr "ðÏËÁÚÁÔØ ÃÅÌØ" -#: menu.c:488 +#: menu.c:486 msgid "Look Inside" msgstr "ðÏÓÍÏÔÒÅÔØ ×ÎÕÔÒØ" -#: menu.c:495 +#: menu.c:493 msgid "Open As Text" msgstr "ïÔËÒÙÔØ ËÁË ÔÅËÓÔ" -#: menu.c:627 +#: menu.c:620 msgid "DELETE ... ?" msgstr "õÄÁÌÉÔØ ... ?" -#: menu.c:639 +#: menu.c:632 msgid "Count the size of ... ?" msgstr "ðÏÄÓÞÉÔÁÔØ ÒÁÚÍÅÒ ... ?" -#: menu.c:651 +#: menu.c:644 msgid "Set permissions on ... ?" msgstr "õÓÔÁÎÏ×ÉÔØ ÐÒÁ×Á ÄÌÑ ... ?" -#: menu.c:663 +#: menu.c:656 msgid "Search inside ... ?" msgstr "éÓËÁÔØ ×ÎÕÔÒÉ ... ?" -#: menu.c:713 +#: menu.c:706 msgid "New pathname is not absolute" msgstr "îÏ×ÙÊ ÐÕÔØ ÎÅ ÁÂÓÏÌÀÔÎÙÊ" -#: menu.c:758 menu.c:784 menu.c:815 menu.c:836 menu.c:859 menu.c:892 -#: menu.c:1019 menu.c:1183 +#: menu.c:751 menu.c:777 menu.c:808 menu.c:829 menu.c:852 menu.c:885 +#: menu.c:1012 menu.c:1176 msgid "You cannot do this to more than one item at a time" msgstr "÷Ù ÎÅ ÍÏÖÅÔÅ ÄÅÌÁÔØ ÜÔÏ ÂÏÌÅÅ ÞÅÍ Ó ÏÄÎÉÍ ÏÂØÅËÔÏÍ ÓÒÁÚÕ" -#: menu.c:765 +#: menu.c:758 msgid "Copy ... ?" msgstr "ëÏÐÉÒÏ×ÁÔØ ... ?" -#: menu.c:791 +#: menu.c:784 msgid "Rename ... ?" msgstr "ðÅÒÅÉÍÅÎÏ×ÁÔØ ... ?" -#: menu.c:793 +#: menu.c:786 msgid "Rename" msgstr "ðÅÒÅÉÍÅÎÏ×ÁÔØ ... ?" -#: menu.c:822 +#: menu.c:815 msgid "Symlink ... ?" msgstr "óÓÙÌËÁ ... ?" -#: menu.c:824 +#: menu.c:817 msgid "Symlink" msgstr "óÓÙÌËÁ" -#: menu.c:843 +#: menu.c:836 msgid "Shift Open ... ?" msgstr "ïÔËÒÙÔØ (shift) ... ?" -#: menu.c:866 +#: menu.c:859 msgid "Set run action for ... ?" msgstr "õÓÔÁÎÉ×ÉÔØ ÁÓÓÏÃÉÁÃÉÀ ÄÌÑ ... ?" -#: menu.c:878 +#: menu.c:871 msgid "You can only set the run action for a regular file" msgstr "÷Ù ÍÏÖÅÔÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÁÓÓÏÃÉÁÃÉÉ ÔÏÌØËÏ ÄÌÑ ÏÂÙÞÎÏÇÏ ÆÁÊÌÁ" -#: menu.c:899 +#: menu.c:892 msgid "Set icon for ... ?" msgstr "÷ÙÂÒÁÔØ ÉËÏÎËÕ ÄÌÑ ... ?" -#: menu.c:930 +#: menu.c:923 msgid "ROX-Filer: file(1) says..." msgstr "ROX-Filer: file(1) ÇÏ×ÏÒÉÔ..." -#: menu.c:971 +#: menu.c:964 msgid "Symbolic link to " msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÄÌÑ " -#: menu.c:974 +#: menu.c:967 msgid "Symbolic link" msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ" -#: menu.c:978 +#: menu.c:971 msgid "ROX application" msgstr "ðÒÏÇÒÁÍÍÁ ROX" -#: menu.c:981 run.c:293 type.c:191 +#: menu.c:974 run.c:293 type.c:191 msgid "Mount point" msgstr "ôÏÞËÁ ÐÏÄÓÏÅÄÉÎÅÎÉÑ" -#: menu.c:1027 +#: menu.c:1020 msgid "Examine ... ?" msgstr "ðÒÏ×ÅÒÉÔØ ... ?" -#: menu.c:1052 +#: menu.c:1045 msgid "Name:" msgstr "éÍÑ:" -#: menu.c:1058 +#: menu.c:1051 msgid "Owner, Group:" msgstr "÷ÌÁÄÅÌÅÃ, ÇÒÕÐÐÁ:" -#: menu.c:1065 support.c:235 +#: menu.c:1058 support.c:235 msgid "bytes" msgstr "ÂÁÊÔÙ" -#: menu.c:1073 +#: menu.c:1066 msgid "Size:" msgstr "òÁÚÍÅÒ:" -#: menu.c:1077 +#: menu.c:1070 msgid "Change time:" msgstr "éÚÍÅÎÉÔØ ×ÒÅÍÑ:" -#: menu.c:1081 +#: menu.c:1074 msgid "Modify time:" msgstr "÷ÒÅÍÑ ÍÏÄÉÆÉËÁÃÉÉ:" -#: menu.c:1085 +#: menu.c:1078 msgid "Access time:" msgstr "÷ÒÅÍÑ ÄÏÓÔÕÐÁ:" -#: menu.c:1095 +#: menu.c:1088 msgid "Permissions:" msgstr "ðÒÁ×Á ÄÏÓÔÕÐÁ:" -#: menu.c:1101 +#: menu.c:1094 msgid "Type:" msgstr "ôÉÐ:" -#: menu.c:1104 +#: menu.c:1097 msgid "file(1) says..." msgstr "file(1) ÇÏ×ÏÒÉÔ..." -#: menu.c:1106 +#: menu.c:1099 msgid "" msgstr "<ÎÉÞÅÇÏ>" -#: menu.c:1190 +#: menu.c:1183 msgid "Help about ... ?" msgstr "ðÏÍÏÝØ Ï ...?" -#: menu.c:1210 -#, fuzzy -msgid "Look inside ... ?" -msgstr "éÓËÁÔØ ×ÎÕÔÒÉ ... ?" - -#: menu.c:1222 +#: menu.c:1215 msgid "You must select a single file to open as a Virtual File System" msgstr "÷Ù ÄÏÌÖÎÙ ×ÙÂÒÁÔØ ÏÄÉÎ ÆÁÊÌ ÄÌÑ ÏÔËÒÙÔÉÑ ËÁË × VFS" -#: menu.c:1289 +#: menu.c:1273 msgid "New Directory" msgstr "îÏ×ÁÑ ÄÉÒÅËÔÏÒÉÑ" -#: menu.c:1290 +#: menu.c:1274 msgid "NewDir" msgstr "îÏ×ÁÑ ÄÉÒÅËÔÏÒÉÑ" -#: menu.c:1303 menu.c:1308 +#: menu.c:1287 menu.c:1292 #, fuzzy msgid "Error creating file" msgstr "ïÛÉÂËÁ ÓÏÚÄÁÎÉÑ ÆÁÊÌÁ" -#: menu.c:1327 +#: menu.c:1303 #, fuzzy -msgid "New File" +msgid "New File..." msgstr "îÏ×ÙÊ ÆÁÊÌ" -#: menu.c:1328 +#: menu.c:1304 #, fuzzy msgid "NewFile" msgstr "îÏ×ÙÊ ÆÁÊÌ" -#: menu.c:1342 run.c:120 type.c:321 +#: menu.c:1318 run.c:120 type.c:321 msgid "Failed to fork() child process" msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÄÅÌÁÔØ fork() ÄÌÑ ÐÏÔÏÍËÁ" -#: menu.c:1379 +#: menu.c:1355 msgid "" "You can't open a second view onto this directory because the `Unique " "Windows' option is turned on in the Options window." @@ -1404,15 +1330,15 @@ msgstr "" "÷Ù ÎÅ ÍÏÖÅÔÅ ÏÔËÒÙÔØ ×ÔÏÒÏÅ ÏËÎÏ ÐÒÏÓÍÏÔÒÑ ÜÔÏÊ ÄÉÒÅËÔÏÒÉÉ, ÐÏÔÏÍÕ ÞÔÏ " "×ËÌÀÞÅÎÁ ÏÐÃÉÑ `õÎÉËÁÌØÎÙÅ ÏËÎÁ` × ÏËÎÅ ÏÐÃÉÑÈ." -#: menu.c:1423 -msgid "New window, as user..." -msgstr "îÏ×ÏÅ ÏËÎÏ, ËÁË ÐÏÌØÚÏ×ÁÔÅÌØ..." +#: menu.c:1399 +msgid "New, As user..." +msgstr "ïÔËÒÙÔØ ËÁË ÐÏÌØÚÏ×ÁÔÅÌØ..." -#: menu.c:1431 +#: menu.c:1407 msgid "Browse as which user?" -msgstr "ðÒÏÓÍÏÔÒÅÔØ ËÁË ÐÏÌØÚÏ×ÁÔÅÌØ?" +msgstr "ïÔËÒÙÔØ ËÁË ËÁËÏÊ ÐÏÌØÚÏ×ÁÔÅÌØ?" -#: menu.c:1438 +#: menu.c:1414 msgid "User:" msgstr "ðÏÌØÚÏ×ÁÔÅÌØ:" @@ -1453,7 +1379,7 @@ msgstr " #: options.c:780 msgid "Choices will be saved as " -msgstr "`Choices` ÂÕÄÕÔ ÓÏÈÒÁÎÅÎÙ ËÁË " +msgstr "õÓÔÁÎÏ×ËÉ (ÆÁÊÌ `Choices`) ÂÕÄÕÔ ÓÏÈÒÁÎÅÎÙ × " #: options.c:788 options.c:1069 type.c:649 msgid "Choices saving is disabled by CHOICESPATH variable" @@ -1485,7 +1411,7 @@ msgstr " #: panel.c:172 pinboard.c:196 msgid "Open Home Directory" -msgstr "äÏÍÁÛÎÑ ÄÉÒÅËÔÏÒÉÑ" +msgstr "äÏÍÁÛÎÑÑ ÄÉÒÅËÔÏÒÉÑ" #: panel.c:175 pinboard.c:199 msgid "Show Location" @@ -1518,29 +1444,31 @@ msgstr " msgid "Missing < or > in panel config file" msgstr "ïÔÓÕÔÓÔ×ÕÀÔ `<` ÉÌÉ `>` × ÆÁÊÌÅ ËÏÎÆÉÇÕÒÁÃÉÉ ÐÁÎÅÌÉ" -#: panel.c:971 pinboard.c:1751 +#: panel.c:969 pinboard.c:1748 msgid "First, select a single item to edit" msgstr "÷ÙÂÉÒÁÊÔÅ ÏÂØÅËÔ ÄÌÑ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ" -#: panel.c:986 pinboard.c:1728 +#: panel.c:984 pinboard.c:1725 msgid "" "Select a single item, then use this to find out where it is in the " "filesystem." -msgstr "÷ÙÂÉÒÁÊÔÅ ÏÂØÅËÔ É ÏÐÒÅÄÅÌÑÊÔÅ ÅÇÏ ÒÁÓÐÏÌÏÖÅÎÉÅ × ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ." +msgstr "" +"÷ÙÂÉÒÁÊÔÅ ÏÂØÅËÔ É ÏÐÒÅÄÅÌÑÊÔÅ ÅÇÏ ÒÁÓÐÏÌÏÖÅÎÉÅ × ÆÁÊÌÏ×ÏÊ " +"ÓÉÓÔÅÍÅ." -#: panel.c:1003 +#: panel.c:1001 msgid "You must select a single item to get help on" msgstr "÷Ù ÄÏÌÖÎÙ ×ÙÂÒÁÔØ ÔÏÌØËÏ ÏÄÉÎ ÏÂØÅËÔ ÄÌÑ ÐÏÌÕÞÅÎÉÑ ÐÏÄÓËÁÚËÉ" -#: panel.c:1019 +#: panel.c:1017 msgid "You must first select some icons to remove" msgstr "óÎÁÞÁÌÁ ×Ù ÄÏÌÖÎÙ ×ÙÂÒÁÔØ ÎÅÓËÏÌØËÏ ÉËÏÎÏË ÄÌÑ ÕÄÁÌÅÎÉÑ" -#: panel.c:1271 +#: panel.c:1269 msgid "Error saving panel" msgstr "ïÛÉÂËÁ ÓÏÈÒÁÎÅÎÉÑ ÐÁÎÅÌÉ" -#: panel.c:1621 +#: panel.c:1619 msgid "" "Restart\n" "Applet" @@ -1560,19 +1488,19 @@ msgstr "" "÷Ù ÄÏÌÖÎÙ ×ÙÂÒÁÔØ ÎÅÓËÏÌØËÏ ÉËÏÎÏË ÄÌÑ ÏÔÍÅÎÙ ×ÙÂÏÒÁ. õÄÅÒÖÉ×ÁÊÔÅ ËÌÁ×ÉÛÕ " "Ctrl ÄÌÑ ×ÙÂÏÒÁ ÉËÏÎÏË." -#: pinboard.c:1142 +#: pinboard.c:1139 msgid "Missing '>' in icon label" msgstr "ïÔÓÕÔÓÔ×ÕÅÔ '>' × ÍÅÔËÅ" -#: pinboard.c:1151 +#: pinboard.c:1148 msgid "Missing ',' after icon label" msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ',' ÐÏÓÌÅ ÍÅÔËÉ" -#: pinboard.c:1316 +#: pinboard.c:1313 msgid "Error saving pinboard" msgstr "ïÛÉÂËÁ ÐÒÉ ÚÁÐÉÓÉ pinboard" -#: pinboard.c:1696 +#: pinboard.c:1693 msgid "You must first select a single pinned icon to get help on." msgstr "÷Ù ÄÏÌÖÎÙ ×ÙÂÒÁÔØ ÏÄÎÕ ÉËÏÎËÕ ÄÌÑ ÐÏÌÕÞÅÎÉÑ ÐÏÄÓËÁÚËÉ." @@ -1663,8 +1591,8 @@ msgid "" "I couldn't find out what kind of file this is. Maybe it doesn't exist " "anymore or you don't have search permission on the directory it's in?" msgstr "" -"îÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÔÉÐ ÆÁÊÌÁ. æÁÊÌ ÉÌÉ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ ÉÌÉ Õ ×ÁÓ ÎÅÔ ÐÒÁ× " -"ÎÁ ÐÏÉÓË × ÜÔÏÊ ÄÉÒÅËÔÏÒÉÉ." +"îÅ×ÏÚÍÏÖÎÏ ÏÐÒÅÄÅÌÉÔØ ÔÉÐ ÆÁÊÌÁ. æÁÊÌ ÉÌÉ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ ÉÌÉ Õ " +"×ÁÓ ÎÅÔ ÐÒÁ× ÎÁ ÐÏÉÓË × ÜÔÏÊ ÄÉÒÅËÔÏÒÉÉ." #: run.c:473 msgid "ROX-Filer - Sending data to program" @@ -1695,17 +1623,18 @@ msgid "" "(hold down Shift while you open it). Most applications provide their own " "help here, but this one doesn't." msgstr "" -"üÔÏ ÄÉÒÅËÔÏÒÉÑ ÐÒÉÌÏÖÅÎÉÑ - ×Ù ÍÏÖÅÔÅ ÚÁÐÕÓÔÉÔØ ÅÅ ËÁË ÐÒÏÇÒÁÍÍÕ ÉÌÉ ÏÔËÒÙÔØ " -"ÄÌÑ ÐÒÏÓÍÏÔÒÁ ÓÏÄÅÒÖÉÍÏÇÏ (ÝÅÌËÎÉÔÅ ÐÏ ÉËÏÎËÅ ÕÄÅÒÖÉ×ÁÑ Shift). âÏÌØÛÉÎÓÔ×Ï " -"ÐÒÉÌÏÖÅÎÉÊ ÐÒÅÄÌÁÇÁÀÔ Ó×ÏÀ ÐÏÄÓËÁÚËÕ, ÎÏ Õ ÜÔÏÇÏ ÐÒÉÌÏÖÅÎÉÑ ÐÏÄÓËÁÚËÉ ÎÅÔ." +"üÔÏ ÄÉÒÅËÔÏÒÉÑ ÐÒÉÌÏÖÅÎÉÑ - ×Ù ÍÏÖÅÔÅ ÚÁÐÕÓÔÉÔØ ÅÅ ËÁË ÐÒÏÇÒÁÍÍÕ ÉÌÉ " +"ÏÔËÒÙÔØ ÄÌÑ ÐÒÏÓÍÏÔÒÁ ÓÏÄÅÒÖÉÍÏÇÏ (ÝÅÌËÎÉÔÅ ÐÏ ÉËÏÎËÅ ÕÄÅÒÖÉ×ÁÑ Shift). " +"âÏÌØÛÉÎÓÔ×Ï ÐÒÉÌÏÖÅÎÉÊ ÐÒÅÄÌÁÇÁÀÔ Ó×ÏÀ ÐÏÄÓËÁÚËÕ, ÎÏ Õ ÜÔÏÇÏ ÐÒÉÌÏÖÅÎÉÑ " +"ÐÏÄÓËÁÚËÉ ÎÅÔ." #: run.c:599 msgid "" "This is a directory. It contains an index to other items - open it to see " "the list." msgstr "" -"üÔÏ ÄÉÒÅËÔÏÒÉÑ. ïÎÁ ÓÏÄÅÒÖÉÔ ÉÎÄÅËÓ ÄÒÕÇÉÈ ÏÂØÅËÔÏ× - ÏÔËÒÏÊÔÅ ÄÌÑ ÐÒÏÓÍÏÔÒÁ " -"ÓÐÉÓËÁ." +"üÔÏ ÄÉÒÅËÔÏÒÉÑ. ïÎÁ ÓÏÄÅÒÖÉÔ ÉÎÄÅËÓ ÄÒÕÇÉÈ ÏÂØÅËÔÏ× - ÏÔËÒÏÊÔÅ ÄÌÑ " +"ÐÒÏÓÍÏÔÒÁ ÓÐÉÓËÁ." #: support.c:233 msgid "byte" @@ -1747,7 +1676,7 @@ msgstr " msgid "Rescan directory contents" msgstr "ðÅÒÅÞÉÔÁÔØ ÓÏÄÅÒÖÉÍÏÅ ÄÉÒÅËÔÏÒÉÉ" -#: tips:72 toolbar.c:112 +#: tips:69 toolbar.c:112 msgid "Large" msgstr "âÏÌØÛÉÅ" @@ -1755,7 +1684,7 @@ msgstr " msgid "Display using large icons" msgstr "ïÔÏÂÒÁÚÉÔØ ÉÓÐÏÌØÚÕÑ ÂÏÌØÛÉÅ ÉËÏÎËÉ" -#: tips:71 toolbar.c:116 +#: tips:68 toolbar.c:116 msgid "Small" msgstr "íÁÌÙÅ" @@ -1830,16 +1759,6 @@ msgstr " msgid "Set run action" msgstr "õÓÔÁÎÏ×ÉÔØ ÁÓÓÏÃÉÁÃÉÀ" -#: type.c:547 -#, c-format -msgid "Set default for all `%s/'" -msgstr "" - -#: type.c:553 -#, c-format -msgid "Only for the type `%s/%s'" -msgstr "" - #: type.c:574 msgid "" "Drop a suitable\n" @@ -1908,8 +1827,8 @@ msgid "" "Enter the full path of a file that contains a valid image to be used as the " "icon for this file or directory." msgstr "" -"÷×ÅÄÉÔÅ ÐÏÌÎÏÅ ÉÍÑ ÆÁÊÌÁ, ÓÏÄÅÒÖÁÝÅÇÏ ÐÉËÔÏÇÒÁÍÍÕ, ÄÌÑ ÉÓÐÏÌØÚÏ×ÁÎÉÑ × " -"ËÁÞÅÓÔ×Å ÉËÏÎËÉ ÄÌÑ ÜÔÏÇÏ ÆÁÊÌÁ ÉÌÉ ÄÉÒÅËÔÏÒÉÉ." +"÷×ÅÄÉÔÅ ÐÏÌÎÏÅ ÉÍÑ ÆÁÊÌÁ, ÓÏÄÅÒÖÁÝÅÇÏ ÐÉËÔÏÇÒÁÍÍÕ, ÄÌÑ " +"ÉÓÐÏÌØÚÏ×ÁÎÉÑ × ËÁÞÅÓÔ×Å ÉËÏÎËÉ ÄÌÑ ÜÔÏÇÏ ÆÁÊÌÁ ÉÌÉ ÄÉÒÅËÔÏÒÉÉ." #: tips:1 msgid "Translation options" @@ -1919,7 +1838,7 @@ msgstr " msgid "Translation" msgstr "ðÅÒÅ×ÏÄ" -#: tips:3 tips:70 +#: tips:3 tips:67 msgid "None" msgstr "îÅÔ" @@ -1936,67 +1855,62 @@ msgid "French" msgstr "æÒÁÎÃÕÚÓËÉÊ" #: tips:7 -msgid "Hungarian" -msgstr "" - -#: tips:8 msgid "Italian" msgstr "éÔÁÌØÑÎÓËÉÊ" -#: tips:9 +#: tips:8 msgid "Polish" msgstr "ðÏÌØÓËÉÊ" -# tips -#: tips:10 +#: tips msgid "Russian" msgstr "òÕÓÓËÉÊ" -#: tips:11 +#: tips:9 msgid "Pinboard options" msgstr "ïÐÃÉÉ pinboard" -#: tips:12 +#: tips:10 msgid "No background" msgstr "âÅÚ ÆÏÎÁ" -#: tips:13 +#: tips:11 msgid "The text is drawn directly on the desktop background." msgstr "üÔÏÔ ÔÅËÓÔ ÏÔÏÂÒÁÖÁÅÔÓÑ ÎÁ ÆÏÎÅ ÒÁÂÏÞÅÇÏ ÓÔÏÌÁ." -#: tips:14 +#: tips:12 msgid "Outlined text" msgstr "ïÂÒÁÍÌÅÎÎÙÊ ÔÅËÓÔ" -#: tips:15 +#: tips:13 msgid "The text has a thin outline around each letter." msgstr "ôÅËÓÔ Ó ÏÂÒÁÍÌÅÎÉÅÍ ×ÏËÒÕÇ ËÁÖÄÏÊ ÂÕË×Ù." -#: tips:16 +#: tips:14 msgid "Rectangular background slab" msgstr "ðÒÑÍÏÕÇÏÌØÎÙÊ ÆÏÎ ÐÏÄÐÉÓÉ" -#: tips:17 tips:18 +#: tips:15 tips:16 msgid "The text is drawn on a solid rectangle." msgstr "üÔÏÔ ÔÅËÓÔ ÏÔÏÂÒÁÖÁÅÔÓÑ ÎÁ ÚÁËÒÁÛÅÎÎÏÍ ÐÒÑÍÏÕÇÏÌØÎÉËÅ" -#: tips:19 +#: tips:17 msgid "Text colours:" msgstr "ã×ÅÔ ÔÅËÓÔÁ: " -#: tips:20 +#: tips:18 msgid "Foreground" msgstr "ã×ÅÔ ÔÅËÓÔÁ" -#: tips:21 +#: tips:19 msgid "Background" msgstr "æÏÎ" -#: tips:22 +#: tips:20 msgid "Keep icons within screen limits" msgstr "õÄÅÒÖÉ×ÁÔØ ÉËÏÎËÉ × ÇÒÁÎÉÃÁÈ ÜËÒÁÎÁ" -#: tips:23 +#: tips:21 msgid "" "If this is set, pinboard icons are always kept completely within screen " "limits, including the label." @@ -2004,68 +1918,67 @@ msgstr "" "åÓÌÉ ÜÔÁ ÏÐÃÉÑ ×ËÌÀÞÅÎÁ ÉËÏÎËÉ pinboard ×ÓÅÇÄÁ ÂÕÄÕÔ ×ÎÕÔÒÉ ÜËÒÁÎÁ, ×ËÌÀÞÑÑ " "ÍÅÔËÕ." -#: tips:24 +#: tips:22 msgid "Icon grid step:" msgstr "òÁÚÍÅÒ ÛÁÇÁ ÓÅÔËÉ: " -#: tips:25 +#: tips:23 msgid "Fine" msgstr "ôÏÞÎÏ" -#: tips:26 +#: tips:24 msgid "Use a 2-pixel grid for positioning icons on the desktop." msgstr "" "éÓÐÏÌØÚÕÅÔÓÑ 2-È ÐÉËÓÅÌØÎÁÑ ÓÅÔËÁ ÄÌÑ ÐÏÚÉÃÉÏÎÉÒÏ×ÁÎÉÑ ÎÁ ÒÁÂÏÞÅÍ ÓÔÏÌÅ." -#: tips:27 +#: tips:25 msgid "Medium" msgstr "óÒÅÄÎÅ" -#: tips:28 +#: tips:26 msgid "Use a 16-pixel grid for positioning icons on the desktop." msgstr "" "éÓÐÏÌØÚÕÅÔÓÑ 16-ÔÉ ÐÉËÓÅÌØÎÁÑ ÓÅÔËÁ ÄÌÑ ÐÏÚÉÃÉÏÎÉÒÏ×ÁÎÉÑ ÎÁ ÒÁÂÏÞÅÍ ÓÔÏÌÅ." -#: tips:29 +#: tips:27 msgid "Coarse" msgstr "çÒÕÂÏ" -#: tips:30 tips:31 tips:32 tips:33 +#: tips:28 tips:29 tips:30 tips:31 msgid "Use a 32-pixel grid for positioning icons on the desktop." msgstr "" "éÓÐÏÌØÚÕÅÔÓÑ 32-È ÐÉËÓÅÌØÎÁÑ ÓÅÔËÁ ÄÌÑ ÐÏÚÉÃÉÏÎÉÒÏ×ÁÎÉÑ ÎÁ ÒÁÂÏÞÅÍ ÓÔÏÌÅ." -#: tips:34 +#: tips:32 msgid "Action window options" msgstr "ïÐÃÉÉ ÏËÎÁ ÄÅÊÓÔ×ÉÊ" -#: tips:35 +#: tips:33 msgid "Auto-start (Quiet) these actions:" msgstr "÷ÙÐÏÌÎÑÔØ ÂÅÚ ÐÏÄÔ×ÅÒÖÄÅÎÉÑ ÓÌÅÄÕÀÝÉÅ ÄÅÊÓÔ×ÉÑ:" -#: tips:41 +#: tips:39 msgid "Display options" msgstr "ïÐÃÉÉ ÏÔÏÂÒÁÖÅÎÉÑ" -#: tips:42 +#: tips:40 msgid "Ignore case when sorting" msgstr "éÇÎÏÒÉÒÏ×ÁÔØ ÒÅÇÉÓÔÒ ÐÒÉ ÓÏÒÔÉÒÏ×ËÅ" -#: tips:43 -#, fuzzy +#: tips:41 msgid "" -"If off: Ben, animal, zoo.\n" +"If off: animal, zoo, Ben.\n" "If on: animal, Ben, zoo." msgstr "" "÷ÙËÌÀÞÅÎÏ: animal, zoo, Ben.\n" "÷ËÌÀÞÅÎÏ: animal, Ben, zoo." -#: tips:44 +#: tips:42 #, fuzzy msgid "Directories always come first" msgstr "äÉÒÅËÔÏÒÉÉ ×ÐÅÒÅÄÉ" -#: tips:45 +#: tips:43 msgid "" "If this is on then directories will always appear before anything else, " "regardless of the sort type." @@ -2073,83 +1986,83 @@ msgstr "" "åÓÌÉ ×ËÌÀÞÅÎÏ, ÄÉÒÅËÔÏÒÉÉ ×ÓÅÇÄÁ ÏÔÏÂÒÁÖÁÀÔÓÑ ÐÅÒÅÄ ×ÓÅÍ ÏÓÔÁÌØÎÙÍ, ×ÎÅ " "ÚÁ×ÉÓÉÍÏÓÔÉ ÏÔ ÔÉÐÁ ÓÏÒÔÉÒÏ×ËÉ." -#: tips:46 +#: tips:44 msgid "Max Large Icons width" msgstr "íÁËÓÉÍÁÌØÎÁÑ ÛÉÒÉÎÁ ÂÏÌØÛÉÈ ÉËÏÎÏË" -#: tips:47 +#: tips:45 msgid "Maximum width for the text under a Large Icon." msgstr "íÁËÓÉÍÁÌØÎÙÊ ÒÁÚÍÅÒ ÔÅËÓÔÏ×ÏÇÏ ÐÏÌÑ ÐÏÄ ÂÏÌØÛÉÍÉ ÉËÏÎËÁÍÉ." -#: tips:48 +#: tips:46 msgid "Max Small Icons width" msgstr "íÁËÓÉÍÁÌØÎÙÊ ÒÁÚÍÅÒ ÍÁÌÙÈ ÉËÏÎÏË" -#: tips:49 +#: tips:47 msgid "Maximum width for the text beside a Small Icon." msgstr "íÁËÓÉÍÁÌØÎÙÊ ÒÁÚÍÅÒ ÔÅËÓÔÏ×ÏÇÏ ÐÏÌÑ ÐÏÄ ÍÁÌÅÎØËÉÍÉ ÉËÏÎËÁÍÉ." -#: tips:50 +#: tips:48 msgid "Default settings for new windows" msgstr "õÓÔÁÎÏ×ËÉ ÐÏ ÕÍÏÌÞÁÎÉÀ ÄÌÑ ÎÏ×ÏÇÏ ÏËÎÁ" -#: tips:51 +#: tips:49 msgid "Icon size" msgstr "òÁÚÍÅÒ ÉËÏÎËÉ" -#: tips:55 +#: tips:52 msgid "Details" msgstr "äÅÔÁÌÉ" -#: tips:56 +#: tips:53 msgid "No details" msgstr "âÅÚ ÄÅÔÁÌÅÊ" -#: tips:62 +#: tips:59 msgid "Sort by" msgstr "ðÏÒÑÄÏË ÓÏÒÔÉÒÏ×ËÉ" -#: tips:65 +#: tips:62 msgid "Date" msgstr "äÁÔÁ" -#: tips:66 +#: tips:63 msgid "Size" msgstr "òÁÚÍÅÒ" -#: tips:67 +#: tips:64 msgid "Toolbar options" msgstr "ïÐÃÉÉ ÐÁÎÅÌÉ ÉÎÓÔÒÕÍÅÎÔÏ×" -#: tips:68 +#: tips:65 msgid "Unshade the tools you want:" msgstr "÷ÙÂÉÒÁÊÔÅ ÉÎÓÔÒÕÍÅÎÔÙ ÄÌÑ ÐÁÎÅÌÉ:" -#: tips:69 +#: tips:66 msgid "Toolbar type" msgstr "ôÉÐ ÐÁÎÅÌÉ ÉÎÓÔÒÕÍÅÎÔÏ×" -#: tips:73 +#: tips:70 msgid "Filer window options" msgstr "ïÐÃÉÉ ÏËÎÁ Filer'Á" -#: tips:74 +#: tips:71 msgid "Unique windows" msgstr "õÎÉËÁÌØÎÙÅ ÏËÎÁ" -#: tips:75 +#: tips:72 msgid "" "If you open a directory and that directory is already displayed in another " "window, then this option causes the other window to be closed." msgstr "" -"åÓÌÉ ×Ù ÏÔËÒÏÅÔÅ ÄÉÒÅËÔÏÒÉÀ É ÜÔÁ ÖÅ ÄÉÒÅËÔÏÒÉÑ ÕÖÅ ÏÔÏÂÒÁÖÁÅÔÓÑ × ÄÒÕÇÏÍ " -"ÏËÎÅ, ÄÒÕÇÏÅ ÏËÎÏ ÂÕÄÅÔ ÚÁËÒÙÔÏ." +"åÓÌÉ ×Ù ÏÔËÒÏÅÔÅ ÄÉÒÅËÔÏÒÉÀ É ÜÔÁ ÖÅ ÄÉÒÅËÔÏÒÉÑ ÕÖÅ ÏÔÏÂÒÁÖÁÅÔÓÑ × ÄÒÕÇÏÍ ÏËÎÅ, " +"ÄÒÕÇÏÅ ÏËÎÏ ÂÕÄÅÔ ÚÁËÒÙÔÏ." -#: tips:76 +#: tips:73 msgid "Beep if Tab-completion fails" msgstr "óÉÇÎÁÌ ËÏÇÄÁ Tab-ÄÏÐÏÌÎÅÎÉÅ ÎÅ ÕÄÁÌÏÓØ" -#: tips:77 +#: tips:74 msgid "" "When using the `Enter Path...' minibuffer and Tab is pressed, beep if " "nothing happens (eg, because there are several possibilities and the next " @@ -2159,11 +2072,11 @@ msgstr "" "ÐÒÏÚ×ÕÞÉÔ ÅÓÌÉ ÎÉÞÅÇÏ ÎÅ ÐÒÏÉÚÏÛÌÏ (Ô.Å. ÓÕÝÅÓÔ×ÕÅÔ ÎÅÓËÏÌØËÏ ×ÏÚÍÏÖÎÙÈ " "×ÁÒÉÁÎÔÏ× ÄÏÐÏÌÎÅÎÉÑ)." -#: tips:78 +#: tips:75 msgid "Beep if there are several matches" msgstr "óÉÇÎÁÌ ÐÒÉ ÎÅÓËÏÌØËÉÈ ÓÏ×ÐÁÄÅÎÉÑÈ" -#: tips:79 tips:80 +#: tips:76 tips:77 msgid "" "When using the `Enter Path...' minibuffer and Tab is pressed, beep if there " "is more than one matching file, even though some more letters were added." @@ -2172,30 +2085,30 @@ msgstr "" "ÐÒÏÚ×ÕÞÉÔ ËÏÇÄÁ ÓÕÝÅÓÔ×ÕÅÔ ÂÏÌÅÅ ÏÄÎÏÇÏ ÐÏÄÈÏÄÑÝÅÇÏ ÆÁÊÌÁ, ÄÁÖÅ ÅÓÌÉ " "ÎÅÓËÏÌØËÏ ÓÉÍ×ÏÌÏ× ÂÙÌÏ ÄÏÂÁ×ÌÅÎÏ." -#: tips:81 +#: tips:78 msgid "Drag and Drop options" msgstr "ïÐÃÉÉ Drag'n'Drop" -#: tips:82 +#: tips:79 msgid "Don't use hostnames" msgstr "îÅ ÉÓÐÏÌØÚÏ×ÁÔØ ÉÍÅÎÁ ÈÏÓÔÁ" -#: tips:83 +#: tips:80 msgid "" "Some older applications don't support XDND fully and may need to have this " "option turned on. Use this if dragging files to an application shows a + " "sign on the pointer but the drop doesn't work." msgstr "" -"îÅËÏÔÏÒÙÅ ÓÔÁÒÙÅ ÐÒÏÇÒÁÍÍÙ, ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÛÉÅ XDND ÐÏÌÎÏÓÔØÀ, ÍÏÇÕÔ " -"ÐÏÔÒÅÂÏ×ÁÔØ ×ËÌÀÞÉÔØ ÜÔÕ ÏÐÃÉÀ. éÓÐÏÌØÚÕÊÔÅ ÜÔÕ ÏÐÃÉÀ, ÅÓÌÉ ÐÒÉ " +"îÅËÏÔÏÒÙÅ ÓÔÁÒÙÅ ÐÒÏÇÒÁÍÍÙ, ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÛÉÅ XDND ÐÏÌÎÏÓÔØÀ, " +"ÍÏÇÕÔ ÐÏÔÒÅÂÏ×ÁÔØ ×ËÌÀÞÉÔØ ÜÔÕ ÏÐÃÉÀ. éÓÐÏÌØÚÕÊÔÅ ÜÔÕ ÏÐÃÉÀ, ÅÓÌÉ ÐÒÉ " "ÐÅÒÅÔÁÓËÉ×ÁÎÉÉ ÆÁÊÌÏ× × ÐÒÏÇÒÁÍÍÕ ÏÔÏÂÒÁÖÁÅÔÓÑ ÚÎÁÞÏË + ÎÁ ËÕÒÓÏÒÅ, ÎÏ " "ÐÅÒÅÔÁÓËÉ×ÁÎÉÑ ÎÅ ÐÒÏÉÓÈÏÄÉÔ." -#: tips:84 +#: tips:81 msgid "Allow dragging to icons in filer windows" msgstr "òÁÚÒÅÛÉÔØ ÐÅÒÅÔÁÓËÉ×ÁÎÉÅ ÉËÏÎÏË × ÏËÎÁÈ Filer'a" -#: tips:85 +#: tips:82 msgid "" "When this is on you can drag a file over a sub-directory or program in a " "filer window. The item will highlight when you do this and dropping the file " @@ -2205,24 +2118,24 @@ msgstr "" "ÉÌÉ ÐÒÏÇÒÁÍÍÙ × ÏËÎÅ ÆÁÊÌÍÅÎÅÄÖÅÒÁ. ïÂØÅËÔÙ ÂÕÄÕÔ ÐÏÄÓ×ÅÞÅÎÙ, ËÏÇÄÁ ×Ù " "ÎÁ×ÅÄÅÔÅ ËÕÒÓÏÒ, É ÆÁÊÏ ÂÕÄÅÔ ÐÏÍÅÝÅÎ × ÄÉÒÅËÔÏÒÉÀ ÉÌÉ ÚÁÇÒÕÖÅÎ × ÐÒÏÇÒÁÍÍÕ." -#: tips:86 +#: tips:83 msgid "Directories spring open" msgstr "ïÔËÒÙ×ÁÔØ ÄÉÒÅËÔÏÒÉÉ Á×ÔÏÍÁÔÉÞÅÓËÉ" -#: tips:87 +#: tips:84 msgid "" "This option, which requires the above option to be turned on too, causes the " "highlighted directory to 'spring open' after the file is held over it for a " "short while." msgstr "" -"üÔÁ ÏÐÃÉÑ ÔÒÅÂÕÅÔ Ä×Õ ×ÅÒÈÎÉÅ ÏÐÃÉÉ ÂÙÔØ ×ËÌÀÞÅÎÎÙÍÉ. úÁÓÔÁ×ÌÑÅÔ ×ÙÂÒÁÎÎÕÀ " -"ÄÉÒÅËÔÏÒÉÀ ÏÔËÒÙÔØÓÑ ÞÅÒÅÚ ÎÅËÏÔÏÒÏÅ ×ÒÅÍÑ." +"üÔÁ ÏÐÃÉÑ ÔÒÅÂÕÅÔ Ä×Õ ×ÅÒÈÎÉÅ ÏÐÃÉÉ ÂÙÔØ ×ËÌÀÞÅÎÎÙÍÉ. úÁÓÔÁ×ÌÑÅÔ " +"×ÙÂÒÁÎÎÕÀ ÄÉÒÅËÔÏÒÉÀ ÏÔËÒÙÔØÓÑ ÞÅÒÅÚ ÎÅËÏÔÏÒÏÅ ×ÒÅÍÑ." -#: tips:88 +#: tips:85 msgid "Spring delay" msgstr "úÁÄÅÒÖËÁ ÏÔËÒÙÔÉÑ" -#: tips:89 tips:90 +#: tips:86 tips:87 msgid "" "This option sets how long, in ms, you must hold a file over a directory " "before it will spring open. The above option must be turned on for this to " @@ -2231,11 +2144,11 @@ msgstr "" "üÔÁ ÏÐÃÉÑ ÕÓÔÁÎÁ×ÌÉ×ÁÅÔ ÚÁÄÅÒÖËÕ × ÍÉÌÌÉÓÅËÕÎÄÁÈ ËÏÔÏÒÁÑ ÐÏÔÒÅÂÕÅÔÓÑ ÄÌÑ " "Á×ÔÏÍÁÔÉÞÅÓËÏÇÏ ÏÔËÒÙÔÉÑ ÄÉÒÅËÔÏÒÉÉ. ðÒÅÄÙÄÕÝÁÑ ÏÐÃÉÑ ÄÏÌÖÎÁ ÂÙÔØ ×ËÌÀÞÅÎÁ." -#: tips:91 +#: tips:88 msgid "Menu options" msgstr "íÅÎÀ ÏÐÃÉÊ" -#: tips:92 +#: tips:89 msgid "" "To set the keyboard short-cuts, simply open the\n" "menu over a filer window, move the pointer over\n" @@ -2248,23 +2161,23 @@ msgstr "" "÷ ÂÕÄÕÝÅÍ ÍÏÖÎÏ ÂÕÄÅÔ ÎÁÖÁÔØ ÜÔÕ ËÌÁ×ÉÛÕ ÄÌÑ ÂÙÓÔÒÏÇÏ\n" "ÄÏÓÔÕÐÁ Ë ÆÕÎËÃÉÉ ÂÅÚ ×ÙÚÏ×Á ÍÅÎÀ." -#: tips:93 +#: tips:90 msgid "`Xterm Here' program:" msgstr "ðÒÏÇÒÁÍÍÁ ÔÅÒÍÉÎÁÌÁ:" -#: tips:94 tips:95 +#: tips:91 tips:92 msgid "The program to launch when you choose `Xterm Here' from the menu." msgstr "ðÒÏÇÒÁÍÍÁ ÚÁÐÕÓËÁÅÍÁÑ ÐÒÉ ×ÙÂÏÒÅ ÐÕÎËÔÁ `ôÅÒÍÉÎÁÌ` ÉÚ ÍÅÎÀ." -#: tips:96 +#: tips:93 msgid "Mouse bindings" msgstr "îÁÚÎÁÞÅÎÉÑ ÍÙÛÉ" -#: tips:97 +#: tips:94 msgid "New window on button 1 (RISC OS style)" msgstr "îÏ×ÏÅ ÏËÎÏ ÐÏ ÎÁÖÁÔÉÀ ËÎÏÐËÉ 1 (ËÁË × RISC OS)" -#: tips:98 +#: tips:95 msgid "" "Clicking with mouse button 1 (usually the left button) opens a directory in " "a new window with this turned on. Clicking with the button-2 (middle) will " @@ -2274,11 +2187,11 @@ msgstr "" "× ÎÏ×ÏÍ ÏËÎÅ Ó. ðÒÉ ÎÁÖÁÔÉÉ ËÎÏÐËÉ 2, ÄÌÑ ÏÔËÒÙÔÉÑ ÄÉÒÅËÔÏÒÉÉ ÂÕÄÅÔ " "ÉÓÐÏÌØÚÏ×ÁÎÏ ÔÅËÕÝÅÅ ÏËÎÏ " -#: tips:99 +#: tips:96 msgid "Menu on button 2 (RISC OS style)" msgstr "íÅÎÀ ÐÏ ËÎÏÐËÅ 2 (ËÁË × RISC OS)" -#: tips:100 +#: tips:97 msgid "" "Use button 2, the middle button (click both buttons at once on two button " "mice), to pop up the menu. If off, use button 3 (right) instead." @@ -2287,11 +2200,11 @@ msgstr "" "Ä×ÕÈËÎÏÐÏÞÎÏÊ ÍÙÛÉ ÎÁÖÍÉÔÅ ÓÒÁÚÕ ÏÂÅ ËÎÏÐËÉ). ïÂÙÞÎÏ ÄÌÑ ×ÙÚÏ×Á ËÏÎÅËÓÔÎÏÇÏ " "ÍÅÎÀ ÉÓÐÏÌØÚÕÅÔÓÑ ËÎÏÐËÁ 3 (ÐÒÁ×ÁÑ)" -#: tips:101 +#: tips:98 msgid "Single-click navigation" msgstr "îÁ×ÉÇÁÃÉÑ ÏÄÎÉÍ ÝÅÌÞËÏÍ" -#: tips:102 tips:103 tips:104 +#: tips:99 tips:100 tips:101 msgid "" "Clicking on an item opens it with this on. Hold down Control to select the " "item instead. If off, clicking once selects an item; double click to open " @@ -2300,98 +2213,3 @@ msgstr "" "ïÄÉÎÏÞÎÙÊ ÝÅÌÞÏË ÐÏ ÏÂØÅËÔÕ ÏÔËÒÙ×ÁÅÔ ÅÇÏ. õÄÅÒÖÉ×ÁÊÔÅ Control ÄÌÑ ×ÙÂÏÒÁ " "ÏÂØÅËÔÏ×. åÓÌÉ ×ÙËÌÀÞÅÎÏ, ÏÄÉÎ ÝÅÌÞÏË ×ÙÂÉÒÁÅÔ ÏÂØÅËÔ; Ä×ÏÊÎÏÊ ÝÅÌÞÏË " "ÏÔËÒÙ×ÁÅÔ ÅÇÏ." - -#~ msgid "[ missing text ]" -#~ msgstr "[ ÏÔÓÕÔÓÔ×ÕÅÔ ÔÅËÓÔ ]" - -#~ msgid "Scale icons" -#~ msgstr "íÁÓÛÔÁÂÉÒÏ×ÁÔØ ÉËÏÎËÉ" - -#, fuzzy -#~ msgid "" -#~ "Scale down icons on the filer, pinboard and panel if they are larger than " -#~ "the size set by the 'Max icon dimension' option." -#~ msgstr "" -#~ "Opcja ta pozwala na skalowanie ikon na panelu oraz pulpicie, je¿eli bêd± " -#~ "one wiêksze ni¿ podana warto¶æ." - -#~ msgid "Max icon dimension" -#~ msgstr "Maksymalny rozmiar ikony" - -#~ msgid "You need to select some items to delete" -#~ msgstr "Musisz wybraæ obiekty do skasowania" - -#~ msgid "Unknown flag" -#~ msgstr "Nieznana flaga" - -#~ msgid "" -#~ "The icon file you provided is larger than the maximum icon size. The icon " -#~ "has not been changed." -#~ msgstr "" -#~ "Plik ikony, który poda³e¶ jest wiêkszy ni¿ maksymalny rozmiar ikony. " -#~ "Ikona nie zosta³a zmieniona" - -#~ msgid "" -#~ "If the 'Scale icons' option is set, this option sets the largest size of " -#~ "icons on the filer, pinboard and panel. If an icon is larger than this " -#~ "value in any dimension, it will be scaled down, keeping the original " -#~ "aspect ratio." -#~ msgstr "" -#~ "Je¿eli opjca \"Skaluj ikony\" jest w³±czona, opcja ta pozwala na " -#~ "ustawienie maksymalnego dopuszczalnego rozmiaru ikon w panelu i na " -#~ "pulpicie. Je¿eli ikona bêdzie wiêksza ni¿ podana warto¶æ zostanie ona " -#~ "odpowiednio przeskalowana, przy zachowaniu proporcji" - -#~ msgid "" -#~ "The last used display style (%s) and sort function (Sort By %s) will be " -#~ "saved if you click on Save." -#~ msgstr "" -#~ "Ostatnio u¿ywany styl wy¶wietlania (%s) oraz sortowania (Sortowanie przez " -#~ "%s) bêdzie zapisany je¿eli klikniesz na \"Zapisz\"." - -#~ msgid "Unknown display style" -#~ msgstr "Nieznany styl wy¶wietlania" - -#~ msgid "Unknown sort type" -#~ msgstr "Nieznany sposób sortowania" - -#~ msgid "" -#~ "Choose a language for ROX-Filer's messages.\n" -#~ "With no translation, text will appear in English.\n" -#~ "`From LANG' uses the setting of the LANG environment variable as the name " -#~ "of the translation." -#~ msgstr "" -#~ "Wybierz jêzyk w jakim maj± siê pojawiaæ komunikaty.\n" -#~ "'None' - komunikaty bêd± pojawiaæ siê w jêzyku angielskim.\n" -#~ "'From LANG' - wybór jêzyka na podstawie zmiennej LANG ze ¶rodowiska." - -#~ msgid "Unknown option" -#~ msgstr "Nieznana opcja" - -#~ msgid "Unable to open '%s' for writing: %s" -#~ msgstr "Nie mogê otworzyæ '%s' do zapisu: %s" - -#~ msgid "Bad colour format" -#~ msgstr "Niew³a¶ciwy format opisu koloru" - -#~ msgid "Unknown pinboard text background type" -#~ msgstr "Nieznany typ t³a dla tekstu pulpitu" - -#~ msgid "Unknown grid step size" -#~ msgstr "Nieznany rozmiar siatki" - -#~ msgid "Normal" -#~ msgstr "Normalny" - -#~ msgid "Unknown toolbar type" -#~ msgstr "Nieznany typ paska narzêdzi" - -#~ msgid "Initial window height " -#~ msgstr "Pocz±tkowa wysoko¶æ okna" - -#~ msgid "" -#~ "This option sets the initial height of filer windows, in rows of icons at " -#~ "Large Icons size." -#~ msgstr "" -#~ "Ta opcja ustawia pocz±tkowy rozmiar okna - ilo¶æ wierszy zawieraj±cych " -#~ "ikony." -- 2.11.4.GIT