diff -Nru catfish-1.0.2/build.py catfish-1.2.2/build.py --- catfish-1.0.2/build.py 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/build.py 2014-09-21 21:34:50.000000000 +0000 @@ -23,7 +23,7 @@ print('No arguments supplied.') sys.exit(1) -#lint:disable +# lint:disable if sys.argv[1] == 'check': print('Checking module dependencies...') try: @@ -42,12 +42,12 @@ from xml.sax.saxutils import escape, unescape from gi.repository import GObject, Gtk, Gdk, GdkPixbuf, Pango import zeitgeist # optional -#lint:enable +# lint:enable except ImportError as msg: print((str(msg))) module = str(msg).split()[-1] - if not module in ('zeitgeist'): + if module != 'zeitgeist': print(('...Error: The required module %s is missing.' % module)) sys.exit(1) else: diff -Nru catfish-1.0.2/catfish/CatfishSearchEngine.py catfish-1.2.2/catfish/CatfishSearchEngine.py --- catfish-1.0.2/catfish/CatfishSearchEngine.py 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/catfish/CatfishSearchEngine.py 2014-09-21 21:34:50.000000000 +0000 @@ -19,6 +19,7 @@ import logging logger = logging.getLogger('catfish_search') +import io import os import signal import subprocess @@ -108,7 +109,7 @@ self.keywords = keywords wildcard_chunks = [] - for key in self.keywords.split(' '): + for key in self.keywords.split(): if '*' in key: wildcard_chunks.append(key.split('*')) @@ -226,7 +227,8 @@ True if still running.""" self.running = True if isinstance(keywords, str): - keywords = keywords.split(', ') + keywords = keywords.replace(',', ' ') + keywords = keywords.split() for root, dirs, files in os.walk(path): if not self.running: break @@ -275,7 +277,7 @@ # Split the keywords into a list if they are not already. if isinstance(keywords, str): keywords = keywords.replace(',', ' ') - keywords = keywords.split(' ') + keywords = keywords.split() for keyword in keywords: if keyword.lower() not in find_keywords_backup: @@ -290,7 +292,7 @@ if self.force_stop: break - #If the filetype is known to not be text, ignore it and move on + # If the filetype is known to not be text, move along. mime = guess_type(filename)[0] if not mime or 'text' in mime: try: @@ -399,7 +401,7 @@ """Initialize the external method class.""" CatfishSearchMethod.__init__(self, method_name) self.pid = -1 - self.command = None + self.command = [] self.process = None def assemble_query(self, keywords, path): @@ -417,17 +419,21 @@ if regex: command = self.assemble_query(keywords, path) if not command: - command = self.command.replace('%keywords', keywords.lower()) - if '%path' in command: - command = command.replace('%path', path) + command = [item.replace('%keywords', keywords.lower()) + for item in self.command] + command = [item.replace('%path', path) for item in command] self.process = subprocess.Popen(command, stdout=subprocess.PIPE, - stderr=subprocess.PIPE, shell=True) + stderr=subprocess.PIPE, shell=False) self.pid = self.process.pid return self.process_output(self.process.stdout) def process_output(self, output): """Return the output text.""" - return output + if isinstance(output, io.BufferedReader): + return map(lambda s: s.decode(encoding='UTF8').strip(), + output.readlines()) + else: + return output def status(self): """Return the current search status.""" @@ -457,8 +463,9 @@ def __init__(self): """Initialize the Locate SearchMethod.""" CatfishSearchMethodExternal.__init__(self, "locate") - self.command = "locate -i %path*%keywords* --existing" + self.command = ["locate", "-i", "%path*%keywords*", "--existing"] def assemble_query(self, keywords, path): """Assemble the search query.""" - return "locate --regex -i \"%s\"" % string_regex(keywords, path) + return ["locate", "--regex", "-i", "{}".format(string_regex(keywords, + path))] diff -Nru catfish-1.0.2/catfish/CatfishWindow.py catfish-1.2.2/catfish/CatfishWindow.py --- catfish-1.0.2/catfish/CatfishWindow.py 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/catfish/CatfishWindow.py 2014-09-21 21:34:50.000000000 +0000 @@ -34,29 +34,30 @@ import logging logger = logging.getLogger('catfish') -from catfish_lib import Window, CatfishSettings, SudoDialog +from catfish_lib import Window, CatfishSettings, SudoDialog, helpers from catfish.AboutCatfishDialog import AboutCatfishDialog from catfish.CatfishSearchEngine import * import pexpect -import sys -pyversion = float(str(sys.version_info[0]) + '.' + str(sys.version_info[1])) - # Initialize Gtk, GObject, and mimetypes -if GObject.pygobject_version < (3, 9, 1): +if not helpers.check_gobject_version(3, 9, 1): GObject.threads_init() GLib.threads_init() mimetypes.init() -def application_in_PATH(application_name): - """Return True if the application name is found in PATH.""" +def get_application_path(application_name): for path in os.getenv('PATH').split(':'): if os.path.isdir(path): if application_name in os.listdir(path): - return True - return False + return os.path.join(path, application_name) + return None + + +def application_in_PATH(application_name): + """Return True if the application name is found in PATH.""" + return get_application_path(application_name) is not None def is_file_hidden(folder, filename): @@ -203,16 +204,39 @@ self.file_menu = builder.get_object("file_menu") self.file_menu_save = builder.get_object("menu_save") self.file_menu_delete = builder.get_object("menu_delete") + self.treeview_click_on = False - # -- Update Search Index dialog -- # - self.update_index_dialog = builder.get_object("update_index_dialog") - self.update_index_spinner = builder.get_object("update_index_spinner") - self.update_index_updating = builder.get_object( - "update_index_updating") - self.update_index_done = builder.get_object("update_index_done") - self.update_index_close = builder.get_object("update_index_close") - self.update_index_unlock = builder.get_object("update_index_unlock") - self.update_index_active = False + # -- Update Search Index Dialog -- # + menuitem = builder.get_object('menu_update_index') + if SudoDialog.check_dependencies(['locate', 'updatedb']): + self.update_index_dialog = \ + builder.get_object("update_index_dialog") + self.update_index_database = builder.get_object("database_label") + self.update_index_modified = builder.get_object("updated_label") + self.update_index_infobar = builder.get_object("update_status") + self.update_index_icon = builder.get_object("update_status_icon") + self.update_index_label = builder.get_object("update_status_label") + self.update_index_close = builder.get_object("update_index_close") + self.update_index_unlock = \ + builder.get_object("update_index_unlock") + self.update_index_active = False + + now = datetime.datetime.now() + self.today = datetime.datetime(now.year, now.month, now.day) + locate, locate_path, locate_date = self.check_locate() + + self.update_index_database.set_label("%s" % locate_path) + if os.path.isfile(locate_path): + modified = locate_date.strftime("%x %X") + else: + modified = _("Never") + self.update_index_modified.set_label("%s" % modified) + + if locate_date < self.today - datetime.timedelta(days=7): + infobar = builder.get_object("locate_infobar") + infobar.show() + else: + menuitem.hide() self.format_mimetype_box = builder.get_object("format_mimetype_box") self.extensions_entry = builder.get_object("extensions") @@ -234,6 +258,12 @@ builder) self.settings = CatfishSettings.CatfishSettings() + self.refresh_search_entry() + + def on_update_infobar_response(self, widget, response_id): + if response_id == Gtk.ResponseType.OK: + self.on_menu_update_index_activate(widget) + widget.hide() def on_floating_bar_enter_notify(self, widget, event): """Move the floating statusbar when hovered.""" @@ -297,12 +327,30 @@ """Parse commandline arguments into Catfish runtime settings.""" self.options = options - if not application_in_PATH(self.options.fileman): - self.options.fileman = None - if not application_in_PATH(self.options.open_wrapper): - self.options.open_wrapper = None + # Set the selected folder path. Allow legacy --path option. + path = None + + # New format, first argument + if self.options.path is None: + if len(args) > 0: + if os.path.isdir(os.path.realpath(args[0])): + path = args.pop(0) + + # Old format, --path + else: + if os.path.isdir(os.path.realpath(self.options.path)): + path = self.options.path + + # Make sure there is a valid path. + if path is None: + path = os.path.expanduser("~") + if os.path.isdir(os.path.realpath(path)): + self.options.path = path + else: + path = "/" + else: + self.options.path = path - # Set the selected folder path. self.folderchooser.set_filename(self.options.path) # Set non-flags as search keywords. @@ -340,6 +388,9 @@ self.setup_small_view() self.list_toggle.set_active(True) + if self.options.start: + self.on_search_entry_activate(self.search_entry) + def preview_cell_data_func(self, col, renderer, model, treeiter, data): """Cell Renderer Function for the preview.""" icon_name = model[treeiter][0] @@ -364,13 +415,13 @@ def thumbnail_cell_data_func(self, col, renderer, model, treeiter, data): """Cell Renderer Function to Thumbnails View.""" icon, name, size, path, modified, mime, hidden, exact = \ - model[treeiter][:] + model[treeiter][:] name = escape(name) size = self.format_size(size) path = escape(path) modified = self.get_date_string(modified) displayed = '%s %s%s%s%s%s' % (name, size, os.linesep, path, - os.linesep, modified) + os.linesep, modified) renderer.set_property('markup', displayed) return @@ -385,7 +436,7 @@ icon_lookup_flags) color = context.get_color(state) icon = icon_info.load_symbolic(color, color, color, color)[0] - except AttributeError: + except (AttributeError, GLib.GError): icon_lookup_flags = Gtk.IconLookupFlags.FORCE_SVG | \ Gtk.IconLookupFlags.USE_BUILTIN | \ Gtk.IconLookupFlags.GENERIC_FALLBACK @@ -393,38 +444,102 @@ icon_name, size, icon_lookup_flags) return icon + def check_locate(self): + """Evaluate which locate binary is in use, its path, and modification + date. Return these values in a tuple.""" + path = get_application_path('locate') + if path is None: + return None + path = os.path.realpath(path) + locate = os.path.basename(path) + db = os.path.join('/var/lib', locate, locate + '.db') + if os.path.isfile(db): + modified = os.path.getmtime(db) + else: + modified = 0 + item_date = datetime.datetime.fromtimestamp(modified) + return (locate, db, item_date) + # -- Update Search Index dialog -- # def on_update_index_dialog_close(self, widget=None, event=None, user_data=None): """Close the Update Search Index dialog, resetting to default.""" if not self.update_index_active: self.update_index_dialog.hide() - self.update_index_close.set_label(Gtk.STOCK_CANCEL) + + # Restore Unlock button self.update_index_unlock.show() - self.update_index_updating.set_sensitive(True) - self.update_index_updating.hide() - self.update_index_done.hide() + self.update_index_unlock.set_can_default(True) + self.update_index_unlock.set_receives_default(True) + self.update_index_unlock.grab_focus() + self.update_index_unlock.grab_default() + + # Restore Cancel button + self.update_index_close.set_label(Gtk.STOCK_CANCEL) + self.update_index_close.set_can_default(False) + self.update_index_close.set_receives_default(False) + + self.update_index_infobar.hide() + return True + def show_update_status_infobar(self, status_code): + """Display the update status infobar based on the status code.""" + # Error + if status_code in [1, 3]: + icon = "dialog-error" + msg_type = Gtk.MessageType.WARNING + if status_code == 1: + status = _('An error occurred while updating the database.') + elif status_code == 3: + status = _("Authentication failed.") + + # Warning + elif status_code == 2: + icon = "dialog-warning" + msg_type = Gtk.MessageType.WARNING + status = _("Authentication cancelled.") + + # Info + else: + icon = "dialog-information" + msg_type = Gtk.MessageType.INFO + status = _('Search database updated successfully.') + + self.update_index_infobar.set_message_type(msg_type) + self.update_index_icon.set_from_icon_name(icon, Gtk.IconSize.BUTTON) + self.update_index_label.set_label(status) + + self.update_index_infobar.show() + def on_update_index_unlock_clicked(self, widget): """Unlock admin rights and perform 'updatedb' query.""" self.update_index_active = True # Get the password for sudo - sudo_dialog = SudoDialog.SudoDialog( - icon='catfish', name=_("Catfish File Search"), retries=3) - sudo_dialog.run() + sudo_dialog = SudoDialog.SudoDialog(parent=self.update_index_dialog, + icon='catfish', + name=_("Catfish File Search"), + retries=3) + response = sudo_dialog.run() sudo_dialog.hide() password = sudo_dialog.get_password() sudo_dialog.destroy() - if not password: + if response in [Gtk.ResponseType.NONE, Gtk.ResponseType.CANCEL]: self.update_index_active = False - self.update_index_done.set_label(_("Authentication failed.")) - self.update_index_done.show() + self.show_update_status_infobar(2) return False - self.update_index_done.hide() + elif response == Gtk.ResponseType.REJECT: + self.update_index_active = False + self.show_update_status_infobar(3) + return False + + if not password: + self.update_index_active = False + self.show_update_status_infobar(2) + return False # Subprocess to check if query has completed yet, runs at end of func. def updatedb_subprocess(): @@ -436,36 +551,32 @@ done = False if done: self.update_index_active = False + modified = self.check_locate()[2].strftime("%x %X") + self.update_index_modified.set_label("%s" % modified) + + # Hide the Unlock button + self.update_index_unlock.set_sensitive(True) + self.update_index_unlock.set_receives_default(False) + self.update_index_unlock.hide() + + # Update the Cancel button to Close, make it default self.update_index_close.set_label(Gtk.STOCK_CLOSE) - self.update_index_updating.set_sensitive(False) - self.update_index_spinner.hide() self.update_index_close.set_sensitive(True) - self.update_index_unlock.hide() - self.update_index_unlock.set_sensitive(True) + self.update_index_close.set_can_default(True) + self.update_index_close.set_receives_default(True) + self.update_index_close.grab_focus() + self.update_index_close.grab_default() + return_code = self.updatedb_process.exitstatus - if return_code == 0: - status = _('Locate database updated successfully.') - elif return_code == 1: - status = _('An error occurred while updating locatedb.') - elif return_code == 2: - status = _("User aborted authentication.") - elif return_code == 3: - status = _("Authentication failed.") - else: - status = _('Locate database updated successfully.') - self.update_index_done.set_label(status) - self.update_index_done.show() + self.show_update_status_infobar(return_code) return not done # Set the dialog status to running. - self.update_index_spinner.show() - self.update_index_updating.show() + self.update_index_modified.set_label("%s" % _("Updating...")) self.update_index_close.set_sensitive(False) self.update_index_unlock.set_sensitive(False) - self.updatedb_process = pexpect.spawn('sudo updatedb', - env={"LANG": "C"}) - self.updatedb_process.timeout = 1 + self.updatedb_process = SudoDialog.env_spawn('sudo updatedb', 1) try: # Check for password prompt or program exit. self.updatedb_process.expect(".*ssword.*") @@ -480,6 +591,45 @@ GLib.timeout_add(1000, updatedb_subprocess) # -- Search Entry -- # + def refresh_search_entry(self): + """Update the appearance of the search entry based on the application's + current state.""" + # Default Appearance, used for blank entry + query = None + icon_name = "edit-find-symbolic" + sensitive = True + button_tooltip_text = None + entry_tooltip_text = _("Enter search terms and press Enter to begin.") + + # Search running + if self.search_in_progress: + icon_name = "process-stop" + button_tooltip_text = _('Stop Search') + entry_tooltip_text = _("Search is in progress...\nPress the " + "cancel button or the Escape key to stop.") + + # Search not running + else: + entry_text = self.search_entry.get_text() + # Search not running, value in terms + if len(entry_text) > 0: + button_tooltip_text = _('Begin Search') + query = entry_text + else: + sensitive = False + + self.search_entry.set_icon_from_icon_name( + Gtk.EntryIconPosition.SECONDARY, icon_name) + self.search_entry.set_icon_tooltip_text( + Gtk.EntryIconPosition.SECONDARY, button_tooltip_text) + self.search_entry.set_tooltip_text(entry_tooltip_text) + self.search_entry.set_icon_activatable( + Gtk.EntryIconPosition.SECONDARY, sensitive) + self.search_entry.set_icon_sensitive( + Gtk.EntryIconPosition.SECONDARY, sensitive) + + return query + def on_search_entry_activate(self, widget): """If the search entry is not empty, perform the query.""" if len(widget.get_text()) > 0: @@ -495,27 +645,19 @@ GLib.idle_add(next, task) def on_search_entry_icon_press(self, widget, event, user_data): - """If search in progress, stop the search, otherwise, clear the search - entry field.""" + """If search in progress, stop the search, otherwise, start.""" if not self.search_in_progress: - widget.set_text("") + self.on_search_entry_activate(self.search_entry) else: self.stop_search = True self.search_engine.stop() def on_search_entry_changed(self, widget): """Update the search entry icon and run suggestions.""" - text = widget.get_text() + text = self.refresh_search_entry() - if not self.search_in_progress: - if len(text) == 0: - icon = Gtk.STOCK_FIND - msg = _('Enter search terms and press ENTER') - else: - icon = Gtk.STOCK_CLEAR - msg = _('Clear search terms') - widget.set_icon_from_stock(Gtk.EntryIconPosition.SECONDARY, icon) - widget.set_icon_tooltip_text(Gtk.EntryIconPosition.SECONDARY, msg) + if text is None: + return task = self.get_suggestions(text) GLib.idle_add(next, task) @@ -536,8 +678,10 @@ if len(keywords) != 0 and keywords[0] == '.': show_hidden = True - model = self.search_entry.get_completion().get_model() - model.clear() + completion = self.search_entry.get_completion() + if completion is not None: + model = completion.get_model() + model.clear() results = [] for filename in self.suggestions_engine.run(keywords, folder, 10): @@ -833,33 +977,14 @@ def open_file(self, filename): """Open the specified filename in its default application.""" logger.debug("Opening %s" % filename) - command = None - if os.path.isdir(filename): - if self.options.fileman: - command = [self.options.fileman, filename] - else: - # Translators: This message will only appear when trying to - # open the default file manager but it cannot be found. - msg = _("Catfish could not find the default file manager.") - else: - if self.options.open_wrapper: - command = [self.options.open_wrapper, filename] - else: - # Translators: This message will only appear when the default - # application for opening a file cannot be found. - msg = _("Catfish could not find the default open wrapper.") - if command: - try: - subprocess.Popen(command, shell=False) - return - except Exception as msg: - logger.debug('Exception encountered while opening %s.' + - '\n Exception: %s' + - '\n The wrapper was %s.' + - '\n The filemanager was %s.', - filename, msg, - str(self.options.open_wrapper), - str(self.options.fileman)) + command = ['xdg-open', filename] + try: + subprocess.Popen(command, shell=False) + return + except Exception as msg: + logger.debug('Exception encountered while opening %s.' + + '\n Exception: %s' + + filename, msg) self.get_error_dialog(_('\"%s\" could not be opened.') % os.path.basename(filename), str(msg)) @@ -943,8 +1068,8 @@ basename = os.path.basename(filename) dialog = Gtk.FileChooserDialog(title=_('Save "%s" as…') % basename, - transient_for=self, - action=Gtk.FileChooserAction.SAVE) + transient_for=self, + action=Gtk.FileChooserAction.SAVE) dialog.add_buttons(Gtk.STOCK_CANCEL, Gtk.ResponseType.REJECT, Gtk.STOCK_SAVE, Gtk.ResponseType.ACCEPT) dialog.set_default_response(Gtk.ResponseType.REJECT) @@ -963,11 +1088,11 @@ escape(secondary)) dialog = Gtk.MessageDialog(transient_for=self, - modal=True, - destroy_with_parent=True, - message_type=Gtk.MessageType.ERROR, - buttons=Gtk.ButtonsType.OK, - text="") + modal=True, + destroy_with_parent=True, + message_type=Gtk.MessageType.ERROR, + buttons=Gtk.ButtonsType.OK, + text="") dialog.set_markup(dialog_text) dialog.set_default_response(Gtk.ResponseType.OK) @@ -988,11 +1113,11 @@ dialog_text = "%s\n\n%s" % (primary, secondary) dialog = Gtk.MessageDialog(transient_for=self, - modal=True, - destroy_with_parent=True, - message_type=Gtk.MessageType.QUESTION, - buttons=Gtk.ButtonsType.NONE, - text="") + modal=True, + destroy_with_parent=True, + message_type=Gtk.MessageType.QUESTION, + buttons=Gtk.ButtonsType.NONE, + text="") dialog.set_markup(surrogate_escape(dialog_text)) dialog.add_buttons(Gtk.STOCK_CANCEL, Gtk.ResponseType.NO, @@ -1108,6 +1233,9 @@ Left Click: Ignore. Middle Click: Open the selected file. Right Click: Show the popup menu.""" + self.treeview_click_on = not self.treeview_click_on + if self.treeview_click_on: + return False model, self.rows, self.selected_filenames = \ self.treeview_get_selected_rows(treeview) @@ -1178,7 +1306,7 @@ def cell_data_func_filesize(self, column, cell_renderer, tree_model, tree_iter, id): """File size cell display function.""" - if pyversion >= 3.0: + if helpers.check_python_version(3, 0): size = int(tree_model.get_value(tree_iter, id)) else: size = long(tree_model.get_value(tree_iter, id)) @@ -1357,7 +1485,7 @@ """Try to fetch a thumbnail.""" thumbnails_directory = os.path.expanduser('~/.thumbnails/normal') uri = 'file://' + path - if pyversion >= 3.0: + if helpers.check_python_version(3, 0): uri = uri.encode('utf-8') md5_hash = hashlib.md5(uri).hexdigest() thumbnail_path = os.path.join( @@ -1432,12 +1560,9 @@ self.set_title(_("Searching for \"%s\"") % keywords) self.spinner.show() self.statusbar_label.set_label(_("Searching…")) - self.search_entry.set_icon_from_stock( - Gtk.EntryIconPosition.SECONDARY, Gtk.STOCK_STOP) - self.search_entry.set_icon_tooltip_text( - Gtk.EntryIconPosition.SECONDARY, _('Stop Search')) self.search_in_progress = True + self.refresh_search_entry() # Be thread friendly. while Gtk.events_pending(): @@ -1451,9 +1576,10 @@ self.results_filter = model.filter_new() self.results_filter.set_visible_func(self.results_filter_func) sort = Gtk.TreeModelSort(model=self.results_filter) - if pyversion >= 3.0: + if helpers.check_python_version(3, 0): sort.set_sort_func(2, self.python_three_size_sort_func, None) self.treeview.set_model(sort) + sort.get_model().get_model().clear() self.treeview.columns_autosize() # Enable multiple-selection @@ -1477,7 +1603,7 @@ try: path, name = os.path.split(filename) - if pyversion >= 3.0: + if helpers.check_python_version(3, 0): size = int(os.path.getsize(filename)) else: size = long(os.path.getsize(filename)) @@ -1509,11 +1635,15 @@ continue # Return to Non-Search Mode. - self.get_window().set_cursor(None) + window = self.get_window() + if window is not None: + window.set_cursor(None) self.set_title(_('Search results for \"%s\"') % keywords) self.spinner.hide() - n_results = len(self.treeview.get_model()) + n_results = 0 + if self.treeview.get_model() is not None: + n_results = len(self.treeview.get_model()) if n_results == 0: self.statusbar_label.set_label(_("No files found.")) elif n_results == 1: @@ -1522,20 +1652,7 @@ self.statusbar_label.set_label(_("%i files found.") % n_results) self.search_in_progress = False - if len(self.search_entry.get_text()) == 0: - self.search_entry.set_icon_from_stock( - Gtk.EntryIconPosition.SECONDARY, - Gtk.STOCK_FIND) - self.search_entry.set_icon_tooltip_text( - Gtk.EntryIconPosition.SECONDARY, - _('Enter search terms and press ENTER')) - else: - self.search_entry.set_icon_from_stock( - Gtk.EntryIconPosition.SECONDARY, - Gtk.STOCK_CLEAR) - self.search_entry.set_icon_tooltip_text( - Gtk.EntryIconPosition.SECONDARY, - _('Clear search terms')) + self.refresh_search_entry() self.stop_search = False yield False diff -Nru catfish-1.0.2/catfish/__init__.py catfish-1.2.2/catfish/__init__.py --- catfish-1.0.2/catfish/__init__.py 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/catfish/__init__.py 2014-09-21 21:34:50.000000000 +0000 @@ -31,7 +31,9 @@ def parse_options(): """Support for command line options""" - parser = optparse.OptionParser(version="catfish %s" % get_version()) + usage = _("Usage: %prog [options] path query") + parser = optparse.OptionParser(version="catfish %s" % get_version(), + usage=usage) parser.add_option( "-v", "--verbose", action="count", dest="verbose", help=_("Show debug messages (-vv debugs catfish_lib also)")) @@ -43,22 +45,19 @@ parser.add_option('', '--iso-time', action='store_true', dest='time_iso', help=_('Display time in ISO format')) # Translators: Do not translate PATH, it is a variable. - parser.add_option('', '--path', help=_('Search in folder PATH')) - # Translators: Do not translate FILEMAN, it is a variable. - parser.add_option('', '--fileman', help=_('Use FILEMAN as filemanager')) - parser.add_option('', '--wrapper', metavar='WRAPPER', - # Translators: Do not translate WRAPPER, it is a variable - dest='open_wrapper', help=_('Use WRAPPER to open files')) + parser.add_option('', '--path', help=optparse.SUPPRESS_HELP) parser.add_option('', '--exact', action='store_true', help=_('Perform exact match')) parser.add_option('', '--hidden', action='store_true', help=_('Include hidden files')) parser.add_option('', '--fulltext', action='store_true', help=_('Perform fulltext search')) + parser.add_option('', '--start', action='store_true', + help=_("If path and query are provided, start searching " + "when the application is displayed.")) parser.set_defaults(icons_large=0, thumbnails=0, time_iso=0, - path=os.path.expanduser('~'), fileman='xdg-open', - exact=0, hidden=0, fulltext=0, file_action='open', - open_wrapper='xdg-open') + path=None, start=False, + exact=0, hidden=0, fulltext=0, file_action='open') (options, args) = parser.parse_args() diff -Nru catfish-1.0.2/catfish.1 catfish-1.2.2/catfish.1 --- catfish-1.0.2/catfish.1 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/catfish.1 2014-09-21 21:34:50.000000000 +0000 @@ -1,4 +1,4 @@ -.TH CATFISH "1" "February 2014" "catfish 1.0.1" "User Commands" +.TH CATFISH "1" "August 2014" "catfish 1.2.0" "User Commands" .SH NAME catfish \- File searching tool which is configurable via the command line .SH "DESCRIPTION" @@ -6,6 +6,9 @@ is a handy file searching tool for Linux and UNIX. The interface is intentionally lightweight and simple, using only Gtk+3. You can configure it to your needs by using several command line options. +.SH SYNOPSIS +.B catfish +[\fI\,options\/\fR] \fI\,path query\/\fR .SH OPTIONS .TP \fB\-\-version\fR @@ -26,15 +29,6 @@ \fB\-\-iso\-time\fR Display time in ISO format .TP -\fB\-\-path\fR=\fIPATH\fR -Search in folder PATH -.TP -\fB\-\-fileman\fR=\fIFILEMAN\fR -Use FILEMAN as filemanager -.TP -\fB\-\-wrapper\fR=\fIWRAPPER\fR -Use WRAPPER to open files -.TP \fB\-\-exact\fR Perform exact match .TP @@ -42,4 +36,8 @@ Include hidden files .TP \fB\-\-fulltext\fR -Perform fulltext search \ No newline at end of file +Perform fulltext search +.TP +\fB\-\-start\fR +If path and query are provided, start searching when the +application is displayed. diff -Nru catfish-1.0.2/catfish_lib/AboutDialog.py catfish-1.2.2/catfish_lib/AboutDialog.py --- catfish-1.0.2/catfish_lib/AboutDialog.py 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/catfish_lib/AboutDialog.py 2014-09-21 21:34:50.000000000 +0000 @@ -19,6 +19,7 @@ from gi.repository import Gtk # pylint: disable=E0611 from . helpers import get_builder +from . catfishconfig import get_version class AboutDialog(Gtk.AboutDialog): @@ -49,3 +50,4 @@ # Get a reference to the builder and set up the signals. self.builder = builder self.ui = builder.get_ui(self) + self.set_version(get_version()) diff -Nru catfish-1.0.2/catfish_lib/Builder.py catfish-1.2.2/catfish_lib/Builder.py --- catfish-1.0.2/catfish_lib/Builder.py 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/catfish_lib/Builder.py 2014-09-21 21:34:50.000000000 +0000 @@ -234,10 +234,10 @@ aliased_methods = [x[1] for x in methods if hasattr(x[1], 'aliases')] # a method may have several aliases - #~ @alias('on_btn_foo_clicked') - #~ @alias('on_tool_foo_activate') - #~ on_menu_foo_activate(): - #~ pass + # ~ @alias('on_btn_foo_clicked') + # ~ @alias('on_tool_foo_activate') + # ~ on_menu_foo_activate(): + # ~ pass alias_groups = [(x.aliases, x) for x in aliased_methods] aliases = [] diff -Nru catfish-1.0.2/catfish_lib/catfishconfig.py catfish-1.2.2/catfish_lib/catfishconfig.py --- catfish-1.0.2/catfish_lib/catfishconfig.py 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/catfish_lib/catfishconfig.py 2014-09-21 21:34:50.000000000 +0000 @@ -26,7 +26,7 @@ # files). By default, this is ../data, relative your trunk layout __catfish_data_directory__ = '../data/' __license__ = 'GPL-2' -__version__ = '1.0.2' +__version__ = '1.2.2' import os diff -Nru catfish-1.0.2/catfish_lib/helpers.py catfish-1.2.2/catfish_lib/helpers.py --- catfish-1.0.2/catfish_lib/helpers.py 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/catfish_lib/helpers.py 2014-09-21 21:34:50.000000000 +0000 @@ -19,10 +19,33 @@ """Helpers for an Ubuntu application.""" import logging import os +import sys +from gi.repository import Gtk, GObject from . catfishconfig import get_data_file from . Builder import Builder +python_version = sys.version_info[:3] +gobject_version = GObject.pygobject_version +gtk_version = (Gtk.get_major_version(), + Gtk.get_minor_version(), + Gtk.get_micro_version()) + + +def check_python_version(major_version, minor_version, micro=0): + """Return true if running python >= requested version""" + return python_version >= (major_version, minor_version, micro) + + +def check_gtk_version(major_version, minor_version, micro=0): + """Return true if running gtk >= requested version""" + return gtk_version >= (major_version, minor_version, micro) + + +def check_gobject_version(major_version, minor_version, micro=0): + """Return true if running gobject >= requested version""" + return gobject_version >= (major_version, minor_version, micro) + def get_builder(builder_file_name): """Return a fully-instantiated Gtk.Builder instance from specified ui file diff -Nru catfish-1.0.2/catfish_lib/SudoDialog.py catfish-1.2.2/catfish_lib/SudoDialog.py --- catfish-1.0.2/catfish_lib/SudoDialog.py 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/catfish_lib/SudoDialog.py 2014-09-21 21:34:50.000000000 +0000 @@ -23,8 +23,70 @@ import pexpect +gtk_version = (Gtk.get_major_version(), + Gtk.get_minor_version(), + Gtk.get_micro_version()) + + +def check_gtk_version(major_version, minor_version, micro=0): + """Return true if running gtk >= requested version""" + return gtk_version >= (major_version, minor_version, micro) + +# Check if the LANG variable needs to be set +use_env = False + + +def check_dependencies(commands=[]): + """Check for the existence of required commands, and sudo access""" + # Check for sudo + if pexpect.which("sudo") is None: + return False + + # Check for required commands + for command in commands: + if pexpect.which(command) is None: + return False + + # Check for LANG requirements + child = env_spawn('sudo -v', 1) + if child.expect([".*ssword.*", "Sorry", + pexpect.EOF, + pexpect.TIMEOUT]) == 3: + global use_env + use_env = True + child.close() + + # Check for sudo rights + child = env_spawn('sudo -v', 1) + try: + index = child.expect([".*ssword.*", "Sorry", + pexpect.EOF, pexpect.TIMEOUT]) + child.close() + if index == 0 or index == 2: + # User in sudoers, or already admin + return True + elif index == 1 or index == 3: + # User not in sudoers + return False + + except: + # Something else went wrong. + child.close() + + return False + + +def env_spawn(command, timeout): + """Use pexpect.spawn, adapt for timeout and env requirements.""" + if use_env: + child = pexpect.spawn(command, env={"LANG": "C"}) + else: + child = pexpect.spawn(command) + child.timeout = timeout + return child -class SudoDialog(Gtk.MessageDialog): + +class SudoDialog(Gtk.Dialog): ''' Creates a new SudoDialog. This is a replacement for using gksudo which provides additional flexibility when performing sudo commands. @@ -44,33 +106,93 @@ - REJECT: Password invalid. - ACCEPT: Password valid. ''' - def __init__(self, parent=None, icon=None, message=None, name=None, - retries=-1): + def __init__(self, title=None, parent=None, icon=None, message=None, + name=None, retries=-1): """Initialize the SudoDialog.""" - # default dialog parameters - message_type = Gtk.MessageType.QUESTION - buttons = Gtk.ButtonsType.NONE - # initialize the dialog - super(SudoDialog, self).__init__(transient_for=parent, - modal=True, - destroy_with_parent=True, - message_type=message_type, - buttons=buttons, - text='') - self.set_dialog_icon(icon) + super(SudoDialog, self).__init__(title=title, + transient_for=parent, + modal=True, + destroy_with_parent=True) + # self.connect("show", self.on_show) + if title is None: + title = _("Password Required") + self.set_title(title) + + self.set_border_width(5) - # add buttons - button_box = self.get_children()[0].get_children()[1] - self.add_button(_("Cancel"), Gtk.ResponseType.CANCEL) + # Content Area + content_area = self.get_content_area() + grid = Gtk.Grid.new() + grid.set_row_spacing(6) + grid.set_column_spacing(12) + grid.set_margin_left(5) + grid.set_margin_right(5) + content_area.add(grid) + + # Icon + self.dialog_icon = Gtk.Image.new_from_icon_name("dialog-password", + Gtk.IconSize.DIALOG) + grid.attach(self.dialog_icon, 0, 0, 1, 2) + + # Text + self.primary_text = Gtk.Label.new("") + self.primary_text.set_use_markup(True) + self.primary_text.set_halign(Gtk.Align.START) + self.secondary_text = Gtk.Label.new("") + self.secondary_text.set_use_markup(True) + self.secondary_text.set_halign(Gtk.Align.START) + self.secondary_text.set_margin_top(6) + grid.attach(self.primary_text, 1, 0, 1, 1) + grid.attach(self.secondary_text, 1, 1, 1, 1) + + # Infobar + self.infobar = Gtk.InfoBar.new() + self.infobar.set_margin_top(12) + self.infobar.set_message_type(Gtk.MessageType.WARNING) + content_area = self.infobar.get_content_area() + infobar_icon = Gtk.Image.new_from_icon_name("dialog-warning", + Gtk.IconSize.BUTTON) + label = Gtk.Label.new(_("Incorrect password... try again.")) + content_area.add(infobar_icon) + content_area.add(label) + grid.attach(self.infobar, 0, 2, 2, 1) + content_area.show_all() + self.infobar.set_no_show_all(True) + + # Password + label = Gtk.Label.new("") + label.set_use_markup(True) + label.set_markup("%s" % _("Password:")) + label.set_halign(Gtk.Align.START) + label.set_margin_top(12) + self.password_entry = Gtk.Entry() + self.password_entry.set_visibility(False) + self.password_entry.set_activates_default(True) + self.password_entry.set_margin_top(12) + grid.attach(label, 0, 3, 1, 1) + grid.attach(self.password_entry, 1, 3, 1, 1) + + # Buttons + button = self.add_button(_("Cancel"), Gtk.ResponseType.CANCEL) + button_box = button.get_parent() + button_box.set_margin_top(24) ok_button = Gtk.Button.new_with_label(_("OK")) ok_button.connect("clicked", self.on_ok_clicked) ok_button.set_receives_default(True) ok_button.set_can_default(True) ok_button.set_sensitive(False) self.set_default(ok_button) - button_box.pack_start(ok_button, False, False, 0) + if check_gtk_version(3, 12): + button_box.pack_start(ok_button, True, True, 0) + else: + button_box.pack_start(ok_button, False, False, 0) + + self.password_entry.connect("changed", self.on_password_changed, + ok_button) + + self.set_dialog_icon(icon) # add primary and secondary text if message: @@ -84,47 +206,11 @@ self.format_primary_text(primary_text) self.format_secondary_text(secondary_text) - # Pack the content area with password-related widgets. - content_area = self.get_content_area() - - # Use an alignment to move align the password widgets with the text. - self.password_alignment = Gtk.Alignment() - # Make an educated guess about how for to align. - left_align = Gtk.icon_size_lookup(Gtk.IconSize.DIALOG)[1] + 16 - self.password_alignment.set_padding(12, 12, left_align, 0) - - # Outer password box for incorrect password label and inner widgets. - password_outer = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, - spacing=12) - password_outer.set_orientation(Gtk.Orientation.VERTICAL) - # Password error label, only displayed when unsuccessful. - self.password_info = Gtk.Label(label="") - self.password_info.set_markup("%s" % - _("Incorrect password... try again.")) - - # Inner password box for Password: label and password entry. - password_box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, - spacing=12) - password_label = Gtk.Label(label=_("Password:")) - self.password_entry = Gtk.Entry() - self.password_entry.set_visibility(False) - self.password_entry.set_activates_default(True) - self.password_entry.connect("changed", self.on_password_changed, - ok_button) - - # Pack all the widgets. - password_box.pack_start(password_label, False, False, 0) - password_box.pack_start(self.password_entry, True, True, 0) - password_outer.pack_start(self.password_info, True, True, 0) - password_outer.pack_start(password_box, True, True, 0) - self.password_alignment.add(password_outer) - content_area.pack_start(self.password_alignment, True, True, 0) - content_area.show_all() - self.password_info.set_visible(False) - self.attempted_logins = 0 self.max_attempted_logins = retries + self.show_all() + def on_password_changed(self, widget, button): """Set the apply button sensitivity based on password input.""" button.set_sensitive(len(widget.get_text()) > 0) @@ -132,11 +218,14 @@ def format_primary_text(self, message_format): ''' Format the primary text widget. + ''' + self.primary_text.set_markup("%s" % message_format) - API extension to match with format_secondary_text. + def format_secondary_text(self, message_format): + ''' + Format the secondary text widget. ''' - label = self.get_message_area().get_children()[0] - label.set_text(message_format) + self.secondary_text.set_markup(message_format) def set_dialog_icon(self, icon=None): ''' @@ -152,24 +241,21 @@ pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size(icon, icon_size, icon_size) - image = Gtk.Image.new_from_pixbuf(pixbuf) + self.dialog_icon.set_from_pixbuf(pixbuf) self.set_icon_from_file(icon) else: # icon is an named icon, so load it directly to an image - image = Gtk.Image.new_from_icon_name(icon, icon_size) + self.dialog_icon.set_from_icon_name(icon, icon_size) self.set_icon_name(icon) else: # fallback on password icon - image = Gtk.Image.new_from_icon_name('dialog-password', icon_size) + self.dialog_icon.set_from_icon_name('dialog-password', icon_size) self.set_icon_name('dialog-password') - # align, show, and set the image. - image.set_alignment(Gtk.Align.CENTER, Gtk.Align.FILL) - image.show() - self.set_image(image) def on_show(self, widget): '''When the dialog is displayed, clear the password.''' self.set_password('') + self.password_valid = False def on_ok_clicked(self, widget): ''' @@ -179,25 +265,22 @@ If unsuccessful, try again until reaching maximum attempted logins, then emit the response signal with REJECT. ''' - top, bottom, left, right = self.password_alignment.get_padding() if self.attempt_login(): self.password_valid = True - # Adjust the dialog for attactiveness. - self.password_alignment.set_padding(12, bottom, left, right) - self.password_info.hide() self.emit("response", Gtk.ResponseType.ACCEPT) else: self.password_valid = False # Adjust the dialog for attactiveness. - self.password_alignment.set_padding(0, bottom, left, right) - self.password_info.show() - self.set_password('') + self.infobar.show() + self.password_entry.grab_focus() if self.attempted_logins == self.max_attempted_logins: self.attempted_logins = 0 self.emit("response", Gtk.ResponseType.REJECT) def get_password(self): '''Return the currently entered password, or None if blank.''' + if not self.password_valid: + return None password = self.password_entry.get_text() if password == '': return None @@ -217,12 +300,11 @@ Return True if successful. ''' # Set the pexpect variables and spawn the process. - child = pexpect.spawn('sudo /bin/true', env={"LANG": "C"}) - child.timeout = 1 + child = env_spawn('sudo /bin/true', 1) try: # Check for password prompt or program exit. child.expect([".*ssword.*", pexpect.EOF]) - child.sendline(self.get_password()) + child.sendline(self.password_entry.get_text()) child.expect(pexpect.EOF) except pexpect.TIMEOUT: # If we timeout, that means the password was unsuccessful. diff -Nru catfish-1.0.2/catfish_lib/Window.py catfish-1.2.2/catfish_lib/Window.py --- catfish-1.0.2/catfish_lib/Window.py 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/catfish_lib/Window.py 2014-09-21 21:34:50.000000000 +0000 @@ -67,7 +67,7 @@ button = Gtk.MenuButton() button.set_size_request(32, 32) image = Gtk.Image.new_from_icon_name("emblem-system-symbolic", - Gtk.IconSize.MENU) + Gtk.IconSize.MENU) button.set_image(image) popup = builder.get_object('appmenu') @@ -78,10 +78,6 @@ box.add(button) button.show_all() - # Help not currently in use. - #def on_mnu_contents_activate(self, widget, data=None): - # show_uri(self, "ghelp:%s" % get_help_uri()) - def on_mnu_about_activate(self, widget, data=None): """Display the about box for catfish.""" if self.AboutDialog is not None: diff -Nru catfish-1.0.2/ChangeLog catfish-1.2.2/ChangeLog --- catfish-1.0.2/ChangeLog 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/ChangeLog 2014-09-21 21:34:50.000000000 +0000 @@ -1,3 +1,27 @@ +v1.2.2: + + Fix typo in CatfishWindow.py (LP: #1372166) + + Fix right-click activating previous item (LP: #1372165) + + Updated translations. + +v1.2.1: + + Fix regression introduced in 1.2.0 that prevents the application from + starting (Debian: #758652) + +v1.2.0: + + Added Search button to start search with the mouse (LP: #1300158) + + Added "--start" command line flag to start searching on startup + + Removed "--fileman" and "--wrapper" flags, xdg-open is sufficient + + Results are now cleared when starting a new search + + An InfoBar is now displayed when the locate database is out-of-date + + Improved updatedb and password dialogs + + Fixed searching for multiple terms (LP: #1353546) + +v1.0.3: + + Fix external file search methods (e.g. locate) (lp: #1329801) + + Improved handling for missing symbolic icons + + Add AppData files (lp: #1323747) + + Use LANG only when needed, disable updatedb if not in sudoers (lp: #1320777) + v1.0.2: + Update to latest SudoDialog + Cleanup remaining quickly template cruft diff -Nru catfish-1.0.2/data/appdata/catfish.appdata.xml.in catfish-1.2.2/data/appdata/catfish.appdata.xml.in --- catfish-1.0.2/data/appdata/catfish.appdata.xml.in 1970-01-01 00:00:00.000000000 +0000 +++ catfish-1.2.2/data/appdata/catfish.appdata.xml.in 2014-09-21 21:34:50.000000000 +0000 @@ -0,0 +1,96 @@ + + + + catfish.desktop + CC0-1.0 + GPL-2.0+ + Catfish + <_summary>Versatile file searching tool + + + <_p> + Catfish is a small, fast, and powerful file search utility. Featuring a + minimal interface with an emphasis on results, it helps users find the files + they need without a file manager. With powerful filters such as modification + date, file type, and file contents, users will no longer be dependent on the + file manager or organization skills. + + + + + http://screenshots.smdavis.us/catfish/catfish.png + http://screenshots.smdavis.us/catfish/catfish-filters.png + + + https://launchpad.net/catfish-search/ + https://bugs.launchpad.net/catfish-search/ + https://answers.launchpad.net/catfish-search + + smd.seandavis@gmail.com + + + catfish + + + + + + <_p>This release fixes two new bugs and includes updated translations. + + + + + + <_p>This release fixes a regression where the application is unable + to start on some systems. + + + + + + <_p>This release fixes a regression where multiple search terms were + no longer supported. An InfoBar is now displayed when the search + database is outdated, and the dialogs used to update the database + have been improved. + + + + + + + <_p>This release fixes two issues where locate would not be properly + executed and improves handling of missing symbolic icons. + + + + + + + <_p>This stable release improved the reliability of the password dialog, + cleaned up unused code, and fixed potential issues with the list and + item selection. + + + + + + + <_p>This release fixed a potential security issue with program startup + and fixed a regression with selecting multiple items. + + + + + + + <_p>The first release in the 1.0.x series introduced a refreshed + interface and fixed a number of long-standing bugs. Improvements to + the default permissions eliminated a number of warnings when packaging + for distributions. Accessibility was enhanced as all strings have been + made translatable and keyboard accelerators have been improved. + + + + + + diff -Nru catfish-1.0.2/data/ui/AboutCatfishDialog.ui catfish-1.2.2/data/ui/AboutCatfishDialog.ui --- catfish-1.0.2/data/ui/AboutCatfishDialog.ui 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/data/ui/AboutCatfishDialog.ui 2014-09-21 21:34:50.000000000 +0000 @@ -1,7 +1,8 @@ + - - + + False 5 diff -Nru catfish-1.0.2/data/ui/CatfishWindow.ui catfish-1.2.2/data/ui/CatfishWindow.ui --- catfish-1.0.2/data/ui/CatfishWindow.ui 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/data/ui/CatfishWindow.ui 2014-09-21 21:34:50.000000000 +0000 @@ -1,500 +1,87 @@ + - - + + - - True - False - - - True - False - _Exact Match - True - - - - - - True - False - _Hidden Files - True - - - - - - True - False - _Fulltext Search - True - - - - - - True - False - - - - - True - False - _Show Advanced Settings - True - - - - - - - True - False - - - - - _Update Search Index… - True - False - True - image2 - False - - - - - - _About - True - False - True - image20 - False - - - - - + False - Catfish - center - 760 - 460 + 5 + Custom Time Range + False catfish - - - - - True + dialog + + False vertical - - - 44 - True + 2 + + False - False - - - - 150 - 32 - True - False - center - True - - - 32 - True - False - vertical - select-folder - False - False - Select a Directory - - - - - False - True - - - - - 32 - True - False - center - 6 - 12 - True - - - 28 - True - True - True - True - True - Enter search terms and press ENTER - center - - False - edit-find-symbolic - Search terms - - - - - - - - True - True - - + end - - 32 + + gtk-cancel True - False - center - - - True - False - - - - 32 - 32 - True - False - False - Compact List - image24 - 0 - True - False - - - - False - True - 0 - - - - - 32 - 32 - True - False - False - Thumbnails - image25 - 0 - True - False - view_list - - - - False - True - 1 - - - - + True + True + True False + True + 0 - + + gtk-apply True - False - center - 6 - - - + True + True + True False + True + 1 False True + end 0 - + True - True - 150 - True - + False + 5 + 12 - - 154 - True - True - True - never - + + True + False + 0 + none - + True False - + 3 - + True False - 12 vertical - + True - False - 0 - none - - - True - False - 6 - - - True - False - vertical - - - True - True - False - none - 0 - True - False - - - True - False - 4 - - - True - False - 16 - document-open-recent-symbolic - True - - - False - True - 0 - - - - - True - False - 0 - Any time - end - - - False - True - 1 - - - - - - - False - True - 0 - - - - - True - True - False - none - 0 - True - False - radio_time_any - - - True - False - 4 - - - True - False - 16 - document-open-recent-symbolic - True - - - False - True - 0 - - - - - True - False - 0 - This week - end - - - False - True - 1 - - - - - - - False - True - 1 - - - - - True - False - - - True - True - False - none - 0 - True - False - radio_time_any - - - - True - False - 4 - - - True - False - 16 - document-open-recent-symbolic - True - - - False - True - 0 - - - - - True - False - 0 - Custom - end - - - False - True - 1 - - - - - - - True - True - 0 - - - - - True - False - True - True - none - - - - True - False - 16 - document-properties-symbolic - True - - - - - False - True - 1 - - - - - False - True - 2 - - - - - - - - - 32 - True - False - <b>Modified</b> - True - - + True False @@ -503,231 +90,878 @@ - + True - False - 0 - none + True + True + - + True False - 6 + 3 - + True False - vertical - - - True - True - True - none - - - - True - False - 4 - - - True - False - 16 - folder-documents-symbolic - True - - - False - True - 0 - - - - - True - False - Documents - end - - - False - True - 1 - - - - - - - False - True - 0 - - - - - True - False - True - none - - - - True - False - 4 - - - True - False - 16 - folder-symbolic - True - - - False - True - 0 - - - - - True - False - Folders - end - - - False - True - 1 - - - - - - - False - True - 1 - - - - - True - True - True - none - - - - True - False - 4 - - - True - False - 16 - folder-pictures-symbolic - True - - - False - True - 0 - - - - - True - False - Images - end - - - False - True - 1 - - - - - - - False - True - 2 - - - - - True - True - True - none - - - - True - False - 4 - - - True - False - 16 - folder-music-symbolic - True - - - False - True - 0 - - - - - True - False - Music - end - - - False - True - 1 - - - - - - - False - True - 3 - - + x-office-calendar + True + + + False + True + 0 + + + + + True + False + Go to Today + + + False + True + 1 + + + + + + + False + True + 1 + + + + + + + + + True + False + <b>Start Date</b> + True + + + + + True + True + 0 + + + + + True + False + 0 + none + + + True + False + 3 + + + True + False + vertical + + + True + True + + + False + True + 0 + + + + + True + True + True + + + + True + False + 3 + + + True + False + x-office-calendar + True + + + False + True + 0 + + + + + True + False + Go to Today + + + False + True + 1 + + + + + + + False + True + 1 + + + + + + + + + True + False + <b>End Date</b> + True + + + + + True + True + 1 + + + + + True + True + 1 + + + + + + button4 + button5 + + + + False + 5 + Custom File Type + catfish + dialog + + + False + vertical + 2 + + + False + end + + + gtk-cancel + True + True + True + True + + + False + True + 0 + + + + + gtk-apply + True + True + True + True + + + False + True + 1 + + + + + False + True + end + 0 + + + + + True + False + 5 + vertical + 12 + + + True + False + 0 + none + + + True + False + 24 + + + True + False + + + True + False + + + + False + True + 0 + + + + + True + False + + + True + True + 1 + + + + + + + + + Select existing mimetype + True + True + False + 0 + True + True + + + + + + False + True + 0 + + + + + True + False + 0 + none + + + True + False + 24 + + + True + False + True + + False + + + + + + + Enter file extensions + True + True + False + 0 + True + True + radio_custom_mimetype + + + + + + False + True + 1 + + + + + False + True + 1 + + + + + + button1 + button6 + + + + True + False + 16 + folder-symbolic + True + 1 + + + True + False + 16 + edit-copy-symbolic + True + 1 + + + True + False + 22 + dialog-password + True + + + True + False + 16 + view-refresh-symbolic + True + 1 + + + True + False + 16 + gtk-about-symbolic + True + + + True + False + + + True + False + _Exact Match + True + + + + + + True + False + _Hidden Files + True + + + + + + True + False + _Fulltext Search + True + + + + + + True + False + + + + + True + False + _Show Advanced Settings + True + + + + + + + True + False + + + + + _Update Search Index… + True + False + True + image2 + False + + + + + + _About + True + False + True + image20 + False + + + + + + True + False + 16 + document-open-symbolic + True + + + True + False + 16 + document-save-as-symbolic + True + + + True + False + 16 + edit-delete-symbolic + True + + + True + False + + + _Open + True + False + True + image21 + False + + + + + + Show in _File Manager + True + False + True + image15 + False + + + + + + True + False + + + + + _Copy Location + True + False + True + image16 + False + + + + + + _Save as... + True + False + True + image22 + False + + + + + + True + False + + + + + _Delete + True + False + True + image23 + False + + + + + + True + False + 16 + view-list-symbolic + True + + + True + False + 16 + folder-pictures-symbolic + True + + + + False + Catfish + center + 760 + 460 + catfish + + + + + True + False + vertical + + + 44 + True + False + False + + + 150 + 32 + True + False + center + True + + + 32 + True + False + select-folder + False + False + Select a Directory + + + + + False + True + + + + + 32 + True + False + center + 6 + 12 + True + + + 28 + True + True + True + True + True + center + + False + edit-find-symbolic + False + False + False + False + Search terms + + + + + + + + True + True + + + + + 32 + True + False + center + + + True + False + + + 32 + 32 + True + False + False + Compact List + image24 + 0 + True + False + + + + False + True + 0 + + + + + 32 + 32 + True + False + False + Thumbnails + image25 + 0 + True + False + view_list + + + + False + True + 1 + + + + + + + + False + False + + + + + True + False + center + 6 + + + + + + False + False + + + + + + False + True + 0 + + + + + True + False + True + True + + + + False + 6 + end + + + Update + True + True + True + + + True + True + 0 + + + + + False + False + 0 + + + + infobar_update + + + + False + 16 + + + True + False + dialog-information + True + + + False + True + 0 + + + + + True + False + The search database is more than 7 days old. Update now? + + + False + True + 1 + + + + + False + False + 0 + + + + infobar_update + + + + False + True + 1 + + + + + True + True + 150 + True + + + 154 + True + True + True + never + + + True + False + + + True + False + 12 + vertical + + + True + False + 0 + none + + + True + False + 6 + + + True + False + vertical - + True True - True + False none - + 0 + True + False - + True False 4 - + True False 16 - folder-videos-symbolic + document-open-recent-symbolic True @@ -737,10 +971,11 @@ - + True False - Videos + 0 + Any time end @@ -755,27 +990,30 @@ False True - 4 + 0 - + True True - True + False none - + 0 + True + False + radio_time_any - + True False 4 - + True False 16 - applications-utilities-symbolic + document-open-recent-symbolic True @@ -785,10 +1023,11 @@ - + True False - Applications + 0 + This week end @@ -803,31 +1042,35 @@ False True - 5 + 1 - + True False - + True True - True + False none - + 0 + True + False + radio_time_any + - + True False 4 - + True False 16 - list-add-symbolic + document-open-recent-symbolic True @@ -837,10 +1080,11 @@ - + True False - Other + 0 + Custom end @@ -859,15 +1103,15 @@ - + True False True True none - + - + True False 16 @@ -878,278 +1122,30 @@ False - True - 1 - - - - - False - True - 6 - - - - - - - - - 32 - True - False - <b>File Type</b> - True - - - - - False - True - 1 - - - - - - - - - False - False - - - - - True - False - - - True - False - vertical - - - False - True - 0 - - - - - True - True - True - True - 400 - 300 - - - True - True - liststore1 - True - True - True - vertical - - - - - - - - - True - True - 1 - - - - - True - False - - - - - True - True - 2 - - - - - - - False - 5 - Custom Time Range - False - catfish - dialog - - - False - vertical - 2 - - - False - end - - - gtk-cancel - True - True - True - True - - - False - True - 0 - - - - - gtk-apply - True - True - True - True - - - False - True - 1 - - - - - False - True - end - 0 - - - - - True - False - 5 - 12 - - - True - False - 0 - none - - - True - False - 3 - - - True - False - vertical - - - True - True - - - False - True - 0 - - - - - True - True - True - - - - True - False - 3 - - - True - False - x-office-calendar - True - - - False - True - 0 - - - - - True - False - Go to Today + True + 1 + + + + + False + True + 2 + + - - False - True - 1 - - - - False - True - 1 - - - - - - - - - True - False - <b>Start Date</b> - True - - - - - True - True - 0 - - - - - True - False - 0 - none - - - True - False - 3 - - - True - False - vertical - - - True - True + + + 32 + True + False + <b>Modified</b> + True + + False @@ -1158,413 +1154,503 @@ - + True - True - True - + False + 0 + none - + True False - 3 - - - True - False - x-office-calendar - True - - - False - True - 0 - - + 6 - + True False - Go to Today - - - False - True - 1 - - - - - - - False - True - 1 - - - - - - - - - True - False - <b>End Date</b> - True - - - - - True - True - 1 - - - - - True - True - 1 - - - - - - button4 - button5 - - - - False - 5 - Custom File Type - catfish - dialog - - - False - vertical - 2 - - - False - end - - - gtk-cancel - True - True - True - True - - - False - True - 0 - - - - - gtk-apply - True - True - True - True - - - False - True - 1 - - - - - False - True - end - 0 - - - - - True - False - 5 - vertical - 12 - - - True - False - 0 - none - - - True - False - 24 - - - True - False - - - True - False - 0 - 1 - + vertical + + + True + True + True + none + + + + True + False + 4 + + + True + False + 16 + folder-documents-symbolic + True + + + False + True + 0 + + + + + True + False + Documents + end + + + False + True + 1 + + + + + + + False + True + 0 + + + + + True + False + True + none + + + + True + False + 4 + + + True + False + 16 + folder-symbolic + True + + + False + True + 0 + + + + + True + False + Folders + end + + + False + True + 1 + + + + + + + False + True + 1 + + + + + True + True + True + none + + + + True + False + 4 + + + True + False + 16 + folder-pictures-symbolic + True + + + False + True + 0 + + + + + True + False + Images + end + + + False + True + 1 + + + + + + + False + True + 2 + + + + + True + True + True + none + + + + True + False + 4 + + + True + False + 16 + folder-music-symbolic + True + + + False + True + 0 + + + + + True + False + Music + end + + + False + True + 1 + + + + + + + False + True + 3 + + + + + True + True + True + none + + + + True + False + 4 + + + True + False + 16 + folder-videos-symbolic + True + + + False + True + 0 + + + + + True + False + Videos + end + + + False + True + 1 + + + + + + + False + True + 4 + + + + + True + True + True + none + + + + True + False + 4 + + + True + False + 16 + applications-utilities-symbolic + True + + + False + True + 0 + + + + + True + False + Applications + end + + + False + True + 1 + + + + + + + False + True + 5 + + + + + True + False + + + True + True + True + none + + + + True + False + 4 + + + True + False + 16 + list-add-symbolic + True + + + False + True + 0 + + + + + True + False + Other + end + + + False + True + 1 + + + + + + + True + True + 0 + + + + + True + False + True + True + none + + + + True + False + 16 + document-properties-symbolic + True + + + + + False + True + 1 + + + + + False + True + 6 + + + + + + + + + 32 + True + False + <b>File Type</b> + True + + False True - 0 - - - - - True - False - 0 - 1 - - - True - True 1 + - - - Select existing mimetype - True - True - False - 0 - True - True - - - - - - False - True - 0 - - - - - True - False - 0 - none - - - True - False - 24 - - - True - False - True - - - - - - - - Enter file extensions - True - True - False - 0 - True - True - radio_custom_mimetype - - - + - False - True - 1 - - - - - False - True - 1 - - - - - - button1 - button6 - - - - True - False - - - _Open - True - False - True - image21 - False - - - - - - Show in _File Manager - True - False - True - image15 - False - - - - - - True - False - - - - - _Copy Location - True - False - True - image16 - False - - - - - - _Save as... - True - False - True - image22 - False - - - - - - True - False - - - - - _Delete - True - False - True - image23 - False - + False + False + + + + + True + False + + + True + False + vertical + + + False + True + 0 + + + + + True + True + True + True + 400 + 300 + + + True + True + liststore1 + True + True + True + vertical + + + + + + + + + + + + True + True + 1 + + + + + True + False + + + + + + True + True + 2 + + - - True - False - 16 - folder-symbolic - True - 1 - - - True - False - 16 - edit-copy-symbolic - True - 1 - - - True - False - 22 - dialog-password - True - - - True - False - 16 - view-refresh-symbolic - True - 1 - - - True - False - 16 - gtk-about-symbolic - True - - - True - False - 16 - document-open-symbolic - True - - - True - False - 16 - document-save-as-symbolic - True - - - True - False - 16 - edit-delete-symbolic - True - - - True - False - 16 - view-list-symbolic - True - - - True - False - 16 - folder-pictures-symbolic - True - - False 5 - Update Search Index + Update Search Database False True - center + center-on-parent True catfish dialog @@ -1599,6 +1685,9 @@ Unlock True True + True + True + True True image18 @@ -1618,42 +1707,137 @@ - + True False - vertical - 24 + 5 + 5 + 6 + 12 - + True False - 12 - - - True + dialog-password + True + 6 + + + 0 + 0 + 2 + + + + + True + False + 24 + 0 + <b>Database:</b> + True + + + 0 + 2 + + + + + True + False + 0 + <b>Updated:</b> + True + + + 0 + 3 + + + + + True + False + 0 + <big><b>Update Search Database</b></big> + True + + + 1 + 0 + + + + + True + False + 6 + 0 + For faster search results, the search database needs to be refreshed. +This action requires administrative rights. + + + 1 + 1 + + + + + True + False + 24 + 0 + <tt>/var/lib/mlocate/mlocate.db</tt> + True + True + + + 1 + 2 + + + + + True + False + 0 + True + + + 1 + 3 + + + + + True + False + + False - 48 - dialog-password + 6 + end + + + False - True + False 0 - - - True + + False - vertical - 12 + 16 - + True False - 0 - <big><b>Update Search Index</b></big> - True + dialog-information + True False @@ -1662,60 +1846,10 @@ - + True False - 0 - To provide accurate results, the <i>locate</i> database needs to be refreshed. -This requires sudo (admin) rights. - True - - - False - True - 1 - - - - - True - True - 1 - - - - - False - True - 0 - - - - - True - False - vertical - 3 - - - True - False - 6 - - - False - True - - - False - True - 0 - - - - - False - Updating database… + label False @@ -1726,32 +1860,20 @@ False - True + False 0 - - - False - 0 - Done. - - - False - True - 1 - - - False - True - 1 + 0 + 4 + 2 - True + False True 1 diff -Nru catfish-1.0.2/debian/catfish.manpages catfish-1.2.2/debian/catfish.manpages --- catfish-1.0.2/debian/catfish.manpages 2014-03-31 06:03:42.000000000 +0000 +++ catfish-1.2.2/debian/catfish.manpages 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -catfish.1 diff -Nru catfish-1.0.2/debian/changelog catfish-1.2.2/debian/changelog --- catfish-1.0.2/debian/changelog 2014-03-31 06:07:56.000000000 +0000 +++ catfish-1.2.2/debian/changelog 2015-10-10 09:26:53.000000000 +0000 @@ -1,4 +1,41 @@ -catfish (1.0.2-2) unstable; urgency=medium +catfish (1.2.2-1~14.04) trusty; urgency=medium + + * No-change backport to trusty + + -- Unit 193 Thu, 08 Jan 2015 02:40:29 -0500 + +catfish (1.2.2-1) trusty; urgency=medium + + * New upstream bugfix release. + - Fixes opening previous selected item (LP: #1372165) + - Fixes AttributeError on update dialog (LP: #1372166) + + -- Jackson Doak Mon, 22 Sep 2014 08:03:08 +1000 + +catfish (1.2.1-1) trusty; urgency=medium + + * New upstream release + - Fix startup crash. Closes: #758652 + + -- Sean Davis Tue, 19 Aug 2014 19:50:13 -0400 + +catfish (1.2.0-1) trusty; urgency=medium + + * New upstream release + - Fix about dialogue version shown. Closes: #757828 + * debian/control: Make the PAPT the maintainer, Sean and myself uploaders + + -- Jackson Doak Sun, 17 Aug 2014 08:28:04 +1000 + +catfish (1.0.3-1) trusty; urgency=medium + + * Team upload. + * New upstream release + * Refresh Manually-Install-Docs.patch + + -- Sean Davis Sat, 09 Aug 2014 00:02:10 -0400 + +catfish (1.0.2-2) trusty; urgency=medium * Team upload. * Change python version to python3, improves case-insensitive @@ -12,40 +49,40 @@ -- Sean Davis Sat, 29 Mar 2014 23:03:33 -0400 -catfish (1.0.2-1) unstable; urgency=medium +catfish (1.0.2-1) trusty; urgency=medium * New upstream release - -- Jackson Doak Wed, 12 Mar 2014 07:11:06 +1100 + -- Jackson Doak Wed, 12 Mar 2014 07:11:06 +1100 -catfish (1.0.1-2) unstable; urgency=medium +catfish (1.0.1-2) trusty; urgency=medium * Add python-pexpect to depends - -- Jackson Doak Fri, 07 Mar 2014 06:23:19 +1100 + -- Jackson Doak Fri, 07 Mar 2014 06:23:19 +1100 -catfish (1.0.1-1) unstable; urgency=medium +catfish (1.0.1-1) trusty; urgency=medium * New upstream release - Fix CVE-2014-2093, CVE-2014-2094, CVE-2014-2095, CVE-2014-2096. (Closes: #739958) - -- Jackson Doak Fri, 28 Feb 2014 16:10:56 +1100 + -- Jackson Doak Fri, 28 Feb 2014 16:10:56 +1100 -catfish (1.0.0-3) unstable; urgency=medium +catfish (1.0.0-3) trusty; urgency=medium * debian/control: use python:depends instead of python3:depends. Closes: #739954, #738982 - -- Jackson Doak Wed, 26 Feb 2014 16:48:23 +1100 + -- Jackson Doak Wed, 26 Feb 2014 16:48:23 +1100 -catfish (1.0.0-2) unstable; urgency=medium +catfish (1.0.0-2) trusty; urgency=medium * Depend on python-gi-cairo. Closes: #738639 - -- Jackson Doak Sun, 23 Feb 2014 07:40:04 +1100 + -- Jackson Doak Sun, 23 Feb 2014 07:40:04 +1100 -catfish (1.0.0-1) unstable; urgency=medium +catfish (1.0.0-1) trusty; urgency=medium * Team upload. @@ -59,7 +96,7 @@ -- Vincent Cheng Tue, 04 Feb 2014 21:03:50 -0800 -catfish (0.8.2-1) unstable; urgency=low +catfish (0.8.2-1) trusty; urgency=low [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. @@ -68,7 +105,7 @@ * Set myself as maintainer * New upstream release * Update manpage - * Merge from ubuntu, changes: + * Merge from trustybuntu, changes: Closes: #641577, #664326, #579181, #524603, #579564, #589776, #713006 * Create debian/catfish.manpages, debian/docs, debian/patches/Manually-Install-Docs.patch @@ -122,9 +159,9 @@ * Don't install extra license file. * Document missing copyright holder. - -- Jackson Doak Mon, 14 Oct 2013 17:47:55 +1100 + -- Jackson Doak Mon, 14 Oct 2013 17:47:55 +1100 -catfish (0.3.2-2) unstable; urgency=low +catfish (0.3.2-2) trusty; urgency=low * Team upload. @@ -148,7 +185,7 @@ -- Jakub Wilk Thu, 09 Feb 2012 14:09:24 +0100 -catfish (0.3.2-1) unstable; urgency=low +catfish (0.3.2-1) trusty; urgency=low [ Marco Rodrigues ] * New upstream version (0.3.1) @@ -176,7 +213,7 @@ -- Python Applications Team Tue, 13 Jan 2009 19:04:56 +0100 -catfish (0.3-2) unstable; urgency=low +catfish (0.3-2) trusty; urgency=low * debian/patches/10Fix_makefile.dpatch: UPDATED - Disable the creation of symlinks in Makefile as we will @@ -186,9 +223,9 @@ the Makefile. * Closes lp: #222050 - -- Cody A.W. Somerville Thu, 22 May 2008 02:48:46 +0200 + -- Cody A.W. Somerville Thu, 22 May 2008 02:48:46 +0200 -catfish (0.3-1) unstable; urgency=low +catfish (0.3-1) trusty; urgency=low * debian/control: - added python-gobject to Depends @@ -204,9 +241,9 @@ * debian/patches/20Fix_desktopfile.dpatch: - Remove encoding field from .desktop file - -- Cody A.W. Somerville Mon, 18 Feb 2008 16:52:28 -0800 + -- Cody A.W. Somerville Mon, 18 Feb 2008 16:52:28 -0800 -catfish (0.3-0ubuntu2) hardy; urgency=low +catfish (0.3-0trustybuntu2) hardy; urgency=low [Cody A.W. Somerville] * debian/watch: Created watchfile. @@ -230,9 +267,9 @@ - No longer uses absolute path - Updated to conform to new Debian menu policy - -- Bryce Harrington Wed, 12 Dec 2007 18:37:33 -0800 + -- Bryce Harrington Wed, 12 Dec 2007 18:37:33 -0800 -catfish (0.3-0ubuntu1) hardy; urgency=low +catfish (0.3-0trustybuntu1) hardy; urgency=low * New release 0.3 * Added dbus dependency @@ -240,11 +277,11 @@ * Updated makefile patch * Modified debian/rules to handle "clean" errors better - -- Cody A.W. Somerville Fri, 02 Nov 2007 17:24:10 -0300 + -- Cody A.W. Somerville Fri, 02 Nov 2007 17:24:10 -0300 -catfish (0.1-0ubuntu1) feisty; urgency=low +catfish (0.1-0trustybuntu1) feisty; urgency=low * Initial release - -- Cody A.W. Somerville Fri, 12 Jan 2007 22:54:55 -0400 + -- Cody A.W. Somerville Fri, 12 Jan 2007 22:54:55 -0400 diff -Nru catfish-1.0.2/debian/control catfish-1.2.2/debian/control --- catfish-1.0.2/debian/control 2014-03-31 06:03:42.000000000 +0000 +++ catfish-1.2.2/debian/control 2015-10-10 09:26:54.000000000 +0000 @@ -1,8 +1,8 @@ Source: catfish Section: utils Priority: optional -Maintainer: Jackson Doak -Uploaders: Python Applications Team +Maintainer: Python Applications Packaging Team +Uploaders: Jackson Doak , Sean Davis Build-Depends: debhelper (>= 9), python3, python3-distutils-extra Standards-Version: 3.9.5 Homepage: https://launchpad.net/catfish-search diff -Nru catfish-1.0.2/debian/copyright catfish-1.2.2/debian/copyright --- catfish-1.0.2/debian/copyright 2014-03-31 06:03:42.000000000 +0000 +++ catfish-1.2.2/debian/copyright 2015-10-10 09:26:55.000000000 +0000 @@ -9,8 +9,8 @@ License: GPL-2+ Files: debian/* -Copyright: 2007-2009, Cody A.W. Somerville - 2013, Jackson Doak +Copyright: 2007-2009, Cody A.W. Somerville + 2013, Jackson Doak License: GPL-2+ Files: catfish_lib/pexpect/* diff -Nru catfish-1.0.2/debian/manpages catfish-1.2.2/debian/manpages --- catfish-1.0.2/debian/manpages 1970-01-01 00:00:00.000000000 +0000 +++ catfish-1.2.2/debian/manpages 2014-09-22 00:33:50.000000000 +0000 @@ -0,0 +1 @@ +catfish.1 diff -Nru catfish-1.0.2/debian/patches/Manually-Install-Docs.patch catfish-1.2.2/debian/patches/Manually-Install-Docs.patch --- catfish-1.0.2/debian/patches/Manually-Install-Docs.patch 2014-03-31 06:03:42.000000000 +0000 +++ catfish-1.2.2/debian/patches/Manually-Install-Docs.patch 2014-09-22 00:33:50.000000000 +0000 @@ -6,12 +6,9 @@ Last-Update: 2013-09-21 --- - Makefile.in.in | 12 ++++++------ - 1 file changed, 6 insertions(+), 6 deletions(-) - --- a/Makefile.in.in +++ b/Makefile.in.in -@@ -50,12 +50,12 @@ install: all +@@ -51,12 +51,12 @@ install data/media/$(APPNAME).svg $(DESTDIR)/$(PREFIX)/share/icons/hicolor/scalable/apps ln -sf $(PREFIX)/share/icons/hicolor/scalable/apps/$(APPNAME).svg $(DESTDIR)/$(PREFIX)/share/$(APPNAME)/$(APPNAME).svg @@ -28,5 +25,5 @@ +# install INSTALL $(DESTDIR)/$(PREFIX)/share/doc/$(APPNAME) +# install README $(DESTDIR)/$(PREFIX)/share/doc/$(APPNAME) - install -d $(DESTDIR)/$(PREFIX)/share/applications - install --mode=644 $(APPNAME).desktop $(DESTDIR)/$(PREFIX)/share/applications + install -d $(DESTDIR)/$(PREFIX)/share/appdata + install data/appdata/catfish.appdata.xml $(DESTDIR)/$(PREFIX)/share/appdata/catfish.appdata.xml diff -Nru catfish-1.0.2/Makefile.in.in catfish-1.2.2/Makefile.in.in --- catfish-1.0.2/Makefile.in.in 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/Makefile.in.in 2014-09-21 21:34:50.000000000 +0000 @@ -6,6 +6,7 @@ all: $(LANGUAGE_FILES) intltool-merge -d po catfish.desktop.in catfish.desktop + intltool-merge -d po --xml-style data/appdata/catfish.appdata.xml.in data/appdata/catfish.appdata.xml chmod +x catfish.desktop sed -e s,%prefix%,$(PREFIX), bin/$(APPNAME).in.in > bin/$(APPNAME).in sed -e s,%python%,$(PYTHON), bin/$(APPNAME).in > bin/$(APPNAME) @@ -57,6 +58,9 @@ install INSTALL $(DESTDIR)/$(PREFIX)/share/doc/$(APPNAME) install README $(DESTDIR)/$(PREFIX)/share/doc/$(APPNAME) + install -d $(DESTDIR)/$(PREFIX)/share/appdata + install data/appdata/catfish.appdata.xml $(DESTDIR)/$(PREFIX)/share/appdata/catfish.appdata.xml + install -d $(DESTDIR)/$(PREFIX)/share/applications install --mode=644 $(APPNAME).desktop $(DESTDIR)/$(PREFIX)/share/applications @@ -68,6 +72,7 @@ rm -rf $(DESTDIR)/$(PREFIX)/share/$(APPNAME) rm -rf $(DESTDIR)/$(PREFIX)/share/icons/hicolor/scalable/apps/$(APPNAME).svg rm -rf $(DESTDIR)/$(PREFIX)/share/doc/$(APPNAME) + rm -f $(DESTDIR)/$(PREFIX)/share/appdata/catfish.appdata.xml # FIXME: Uninstall locales rm -f $(DESTDIR)/$(PREFIX)/bin/$(APPNAME) @@ -79,6 +84,7 @@ rm -f bin/$(APPNAME).in rm -f bin/$(APPNAME) rm -f catfish.desktop + rm -f data/appdata/catfish.appdata.xml rm -f Makefile.in rm -f Makefile rm -f control.in diff -Nru catfish-1.0.2/po/be.po catfish-1.2.2/po/be.po --- catfish-1.0.2/po/be.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/be.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2012-08-20 20:56+0000\n" "Last-Translator: Mikalai Udodau \n" "Language-Team: Belarusian \n" -"Language: be\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "" @@ -30,370 +29,472 @@ msgid "Catfish is a versatile file searching tool." msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Адмысловы абсяг часу" + #: ../data/ui/CatfishWindow.ui.h:2 -msgid "_Exact Match" +msgid "Go to Today" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 -msgid "_Hidden Files" +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 -msgid "_Fulltext Search" +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 -msgid "_Show Advanced Settings" +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 -msgid "_Update Search Index…" +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:11 -msgid "_About" +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 -msgid "Catfish" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 +msgid "_Exact Match" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:13 -msgid "Select a Directory" +msgid "_Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Увядзіце умовы пошуку і націсніце ЎВОД" - +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:15 -msgid "Compact List" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 -msgid "Thumbnails" +msgid "_Fulltext Search" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:17 -msgid "Any time" -msgstr "Любы час" - -#: ../data/ui/CatfishWindow.ui.h:18 -msgid "This week" +msgid "_Show Advanced Settings" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:19 -msgid "Custom" +msgid "_Update Search Index…" msgstr "" #: ../data/ui/CatfishWindow.ui.h:20 -msgid "Modified" +msgid "_About" msgstr "" #: ../data/ui/CatfishWindow.ui.h:21 -msgid "Documents" -msgstr "Дакументы" - -#: ../data/ui/CatfishWindow.ui.h:22 -msgid "Folders" +msgid "_Open" msgstr "" +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:23 -msgid "Images" -msgstr "Выявы" - -#: ../data/ui/CatfishWindow.ui.h:24 -msgid "Music" -msgstr "Музыка" +msgid "Show in _File Manager" +msgstr "" +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:25 -msgid "Videos" -msgstr "Відэа" +msgid "_Copy Location" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:26 -msgid "Applications" -msgstr "Праграмы" +msgid "_Save as..." +msgstr "" #: ../data/ui/CatfishWindow.ui.h:27 -msgid "Other" -msgstr "Іншы" +msgid "_Delete" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:28 -msgid "File Type" +msgid "Catfish" msgstr "" #: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Адмысловы абсяг часу" +msgid "Select a Directory" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" +msgid "Compact List" msgstr "" #: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" +msgid "Thumbnails" msgstr "" #: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" +msgid "Update" msgstr "" #: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" +msgid "The search database is more than 7 days old. Update now?" msgstr "" -#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:34 +msgid "Any time" +msgstr "Любы час" + #: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" +msgid "This week" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:36 +msgid "Custom" msgstr "" -#. Enter "file extensions" such as .doc, .pdf #: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" +msgid "Modified" msgstr "" #: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" +msgid "Documents" +msgstr "Дакументы" + +#: ../data/ui/CatfishWindow.ui.h:39 +msgid "Folders" msgstr "" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "" +msgid "Images" +msgstr "Выявы" + +#: ../data/ui/CatfishWindow.ui.h:41 +msgid "Music" +msgstr "Музыка" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "" +msgid "Videos" +msgstr "Відэа" #: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" +msgid "Applications" +msgstr "Праграмы" #: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" +msgid "Other" +msgstr "Іншы" #: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Абнавіць індэкс пошуку" +msgid "File Type" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:46 -msgid "Unlock" +msgid "Update Search Database" msgstr "" #: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" +msgid "Unlock" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Скончана." +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../catfish/__init__.py:37 -msgid "Show debug messages (-vv debugs catfish_lib also)" +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:40 -msgid "Use large icons" +#: ../catfish/__init__.py:39 +msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" #: ../catfish/__init__.py:42 -msgid "Use thumbnails" +msgid "Use large icons" msgstr "" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" +msgid "Use thumbnails" msgstr "" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" +msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "" -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "База звестак locate паспяхова абноўлена." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Здарылася памылка падчас абнаўлення locatedb." +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." msgstr "" -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Ачысціць умовы пошуку" +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "" -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Назва файла" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Памер" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Размяшчэнне" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Перадпрагляд" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Файлы не знойдзены." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Пошук \"%s\"" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Вынікі пошуку для \"%s\"" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + #~ msgid "Last modified" #~ msgstr "Апошнія змены" + +#~ msgid "Done." +#~ msgstr "Скончана." + +#~ msgid "Clear search terms" +#~ msgstr "Ачысціць умовы пошуку" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Увядзіце умовы пошуку і націсніце ЎВОД" + +#~ msgid "Locate database updated successfully." +#~ msgstr "База звестак locate паспяхова абноўлена." + +#~ msgid "Update Search Index" +#~ msgstr "Абнавіць індэкс пошуку" + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Здарылася памылка падчас абнаўлення locatedb." diff -Nru catfish-1.0.2/po/bg.po catfish-1.2.2/po/bg.po --- catfish-1.0.2/po/bg.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/bg.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2013-11-28 13:45+0000\n" "Last-Translator: Atanas Kovachki \n" "Language-Team: Bulgarian \n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Търсене на файлове Catfish" @@ -30,370 +29,466 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish е универсален инструмент за търсене на файлове." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Изберете времеви период" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Днес" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Начална дата" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Крайна дата" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Изберете вида на файла" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Въведете разширението на файла" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Точно совпадение" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Скрити файлове" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Полнотекстно търсене" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "Покажи _расширените настройки" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "Обнови _индекса за търсене…" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Копирай местоположението" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Избери директория" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "По всяко време" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Тази седмица" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Персонализиран" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Променен" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Документи" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Папки" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Изображения" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Музика" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Видеозаписи" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Приложения" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Друго" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Вид на файла" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Изберете времеви период" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Днес" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Начална дата" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Крайна дата" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Изберете вида на файла" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" msgstr "" -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Въведете разширението на файла" +#: ../data/ui/CatfishWindow.ui.h:47 +msgid "Unlock" +msgstr "Отключи" -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" msgstr "" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Копирай местоположението" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." +#: ../data/ui/CatfishWindow.ui.h:49 +msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Обнови индекса за търсене" - -#: ../data/ui/CatfishWindow.ui.h:46 -msgid "Unlock" -msgstr "Отключи" - -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Обновяване на индекса за търсене" - -#. The term "locate" is a commandline application, so it should not be translated. -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:51 msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Обновяване на базата данни..." - -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Готово." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Използвай големи икони" -#: ../catfish/__init__.py:42 -msgid "Use thumbnails" -msgstr "" - #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" +msgid "Use thumbnails" msgstr "" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" +msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "" -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." msgstr "" -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." msgstr "" -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." msgstr "" -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" msgstr "" -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "\"%s\" не може да се отвори." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "«%s» не може да се съхрани." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "«%s» не може да се изтрие." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Съхрани «%s» като…" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Ако изтриете файла, той ще е безвъзвратно изгубен." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Име на файла" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Размер на файла" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Преглед" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Не са открити файлове." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" +#: ../catfish/CatfishWindow.py:1637 +#, python-format +msgid "Search results for \"%s\"" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." msgstr "" -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish_lib/SudoDialog.py:204 #, python-format -msgid "Search results for \"%s\"" +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." msgstr "" +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + +#~ msgid "Done." +#~ msgstr "Готово." + +#~ msgid "Update Search Index" +#~ msgstr "Обнови индекса за търсене" + +#~ msgid "Update Search Index" +#~ msgstr "Обновяване на индекса за търсене" + +#~ msgid "Updating database…" +#~ msgstr "Обновяване на базата данни..." + #~ msgid "Last modified" #~ msgstr "Последна промяна" diff -Nru catfish-1.0.2/po/ca.po catfish-1.2.2/po/ca.po --- catfish-1.0.2/po/ca.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/ca.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2013-12-07 12:38+0000\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-07-15 00:01+0000\n" "Last-Translator: Adolfo Jayme \n" "Language-Team: Catalan \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Cerca de fitxers Catfish" @@ -30,290 +29,294 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish és una eina versàtil per cercar fitxers." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Altre interval de temps" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Vés a avui" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Data d’inici" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Data final" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Tipus de fitxer personalitzat" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Trieu un tipus MIME existent" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Introduïu extensions de fitxer" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "Coincidència _exacta" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "Fitxers _ocults" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "Cerca de tot el _text" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_Mostra paràmetres avançats" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "_Actualitza l’índex de cerca…" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" -msgstr "" +msgstr "_Quant a" + +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Obre" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Mostra-ho al gestor de _fitxers" -#: ../data/ui/CatfishWindow.ui.h:12 +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Copia la ubicació" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Anomena i desa…" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Suprimeix" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Trieu un directori" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Introduïu termes de cerca i premeu Retorn" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" +msgstr "Miniatures" + +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Qualsevol moment" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Aquesta setmana" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Personalitzat" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Modificat" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Documents" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Carpetes" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Imatges" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Música" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Vídeos" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Programari" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Altres" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Tipus de fitxer" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Altre interval de temps" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Vés a avui" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Data d’inici" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Data final" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Tipus de fitxer personalitzat" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Trieu un tipus MIME existent" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Introduïu extensions de fitxer" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Mostra-ho al gestor de _fitxers" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Copia la ubicació" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Actualitza l’índex de la cerca" - -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Desbloca-ho" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Actualitza l’índex de la cerca" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Per proporcionar dades precises, heu d’actualitzar la base de dades del " -"locate.\n" -"Aquesta acció necessita privilegis administratius (sudo)." +msgid "Updated:" +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "S’està actualitzant la base de dades…" +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Fet" +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../catfish/__init__.py:37 -msgid "Show debug messages (-vv debugs catfish_lib also)" +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:40 -msgid "Use large icons" +#: ../catfish/__init__.py:39 +msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" #: ../catfish/__init__.py:42 -msgid "Use thumbnails" +msgid "Use large icons" msgstr "" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" +msgid "Use thumbnails" msgstr "" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" +msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Inclou els fitxers ocults" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Realitza una cerca de text complet" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (codificació no vàlida)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Ha fallat l’autenticació." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." msgstr "" -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "S’ha produït un error en actualitzar locatedb." +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "L’usuari ha interromput l’autenticació." +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Neteja els termes de cerca" +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish no ha pogut trobar el gestor de fitxers predeterminat." +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Atura la cerca" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "No s’ha pogut obrir «%s»." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "No s’ha pogut desar «%s»." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "No s’ha pogut suprimir «%s»." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Anomena i desa «%s»…" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -322,7 +325,7 @@ "Esteu segur que voleu suprimir\n" "permanentment «%s»?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -331,76 +334,189 @@ "Esteu segur que voleu suprimir\n" "permanentment els %i fitxers seleccionats?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Si suprimiu un fitxer, es perdrà permanentment." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Nom del fitxer" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Mida" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" -msgstr "Ubicació" +msgstr "Ubicació" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Previsualitza" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" -msgstr "" +msgstr "Detalls" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" -msgstr "" +msgstr "Avui" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" -msgstr "" +msgstr "Ahir" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "No s’ha trobat cap fitxer." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "S’ha trobat un fitxer." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "S’han trobat %i fitxers." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" -msgstr "" +msgstr "bytes" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "S’està cercant «%s»" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "S’està cercant…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Atura la cerca" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Resultats de la cerca «%s»" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Introduïu termes de cerca i premeu Retorn" + #~ msgid "Last modified" #~ msgstr "Darrera modificació" + +#~ msgid "Clear search terms" +#~ msgstr "Neteja els termes de cerca" + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish no ha pogut trobar el gestor de fitxers predeterminat." + +#~ msgid "Done." +#~ msgstr "Fet" + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "S’ha produït un error en actualitzar locatedb." + +#~ msgid "User aborted authentication." +#~ msgstr "L’usuari ha interromput l’autenticació." + +#~ msgid "Update Search Index" +#~ msgstr "Actualitza l’índex de la cerca" + +#~ msgid "Update Search Index" +#~ msgstr "Actualitza l’índex de la cerca" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Per proporcionar dades precises, heu d’actualitzar la base de dades del " +#~ "locate.\n" +#~ "Aquesta acció necessita privilegis administratius (sudo)." + +#~ msgid "Updating database…" +#~ msgstr "S’està actualitzant la base de dades…" diff -Nru catfish-1.0.2/po/catfish.pot catfish-1.2.2/po/catfish.pot --- catfish-1.0.2/po/catfish.pot 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/catfish.pot 2014-09-21 21:34:50.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"POT-Creation-Date: 2014-09-21 17:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:522 msgid "Catfish File Search" msgstr "" @@ -29,367 +29,461 @@ msgid "Catfish is a versatile file searching tool." msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:2 -msgid "_Exact Match" +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 -msgid "_Hidden Files" +#: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 -msgid "_Fulltext Search" +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 -msgid "_Show Advanced Settings" +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 -msgid "_Update Search Index…" +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:11 -msgid "_About" +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 -msgid "Catfish" +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "Select a Directory" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 +msgid "_Exact Match" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:13 +msgid "_Hidden Files" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:15 -msgid "Compact List" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 -msgid "Thumbnails" +msgid "_Fulltext Search" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:17 -msgid "Any time" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 -msgid "This week" +msgid "_Show Advanced Settings" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:19 -msgid "Custom" +msgid "_Update Search Index…" msgstr "" #: ../data/ui/CatfishWindow.ui.h:20 -msgid "Modified" +msgid "_About" msgstr "" #: ../data/ui/CatfishWindow.ui.h:21 -msgid "Documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 -msgid "Folders" +msgid "_Open" msgstr "" +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:23 -msgid "Images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 -msgid "Music" +msgid "Show in _File Manager" msgstr "" +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:25 -msgid "Videos" +msgid "_Copy Location" msgstr "" #: ../data/ui/CatfishWindow.ui.h:26 -msgid "Applications" +msgid "_Save as..." msgstr "" #: ../data/ui/CatfishWindow.ui.h:27 -msgid "Other" +msgid "_Delete" msgstr "" #: ../data/ui/CatfishWindow.ui.h:28 -msgid "File Type" +msgid "Catfish" msgstr "" #: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" +msgid "Select a Directory" msgstr "" #: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" +msgid "Compact List" msgstr "" #: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" +msgid "Thumbnails" msgstr "" #: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" +msgid "Update" msgstr "" #: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 +msgid "Any time" msgstr "" -#. The "mimetype" is the file type of the file, such as "application/octet-stream" #: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" +msgid "This week" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:36 +msgid "Custom" msgstr "" -#. Enter "file extensions" such as .doc, .pdf #: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" +msgid "Modified" msgstr "" #: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" +msgid "Documents" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:39 +msgid "Folders" msgstr "" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" +msgid "Images" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:41 +msgid "Music" msgstr "" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" +msgid "Videos" msgstr "" #: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." +msgid "Applications" msgstr "" #: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" +msgid "Other" msgstr "" #: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" +msgid "File Type" msgstr "" #: ../data/ui/CatfishWindow.ui.h:46 -msgid "Unlock" +msgid "Update Search Database" msgstr "" #: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" +msgid "Unlock" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:37 -msgid "Show debug messages (-vv debugs catfish_lib also)" +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:40 -msgid "Use large icons" +#: ../catfish/__init__.py:39 +msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" #: ../catfish/__init__.py:42 -msgid "Use thumbnails" +msgid "Use large icons" msgstr "" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" +msgid "Use thumbnails" msgstr "" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" +msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:232 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:493 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:495 msgid "Authentication failed." msgstr "" -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." +#: ../catfish/CatfishWindow.py:501 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:507 +msgid "Search database updated successfully." msgstr "" -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:575 +msgid "Updating..." msgstr "" -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." +#: ../catfish/CatfishWindow.py:602 +msgid "Enter search terms and press Enter to begin." msgstr "" -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" +#: ../catfish/CatfishWindow.py:607 +msgid "Stop Search" msgstr "" -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." +#: ../catfish/CatfishWindow.py:608 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:616 +msgid "Begin Search" msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:989 #, python-format msgid "\"%s\" could not be opened." msgstr "" -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1035 #, python-format msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1060 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1070 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1105 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1109 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1112 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1135 msgid "Filename" msgstr "" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1137 msgid "Size" msgstr "" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1139 msgid "Location" msgstr "" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1141 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1151 msgid "Preview" msgstr "" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1159 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1335 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1337 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1412 ../catfish/CatfishWindow.py:1648 msgid "No files found." msgstr "" -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1414 ../catfish/CatfishWindow.py:1650 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1417 ../catfish/CatfishWindow.py:1652 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1425 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1560 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1562 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" +#: ../catfish/CatfishWindow.py:1641 +#, python-format +msgid "Search results for \"%s\"" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" msgstr "" -#: ../catfish/CatfishWindow.py:1513 +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 #, python-format -msgid "Search results for \"%s\"" +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "This release fixes two new bugs and includes updated translations." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes a regression where the application is unable to start on " +"some systems." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:8 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:9 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." msgstr "" diff -Nru catfish-1.0.2/po/cs.po catfish-1.2.2/po/cs.po --- catfish-1.0.2/po/cs.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/cs.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,394 +6,527 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2013-03-18 12:20+0000\n" -"Last-Translator: DAG Software \n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-09-08 07:17+0000\n" +"Last-Translator: Petr Šimáček \n" "Language-Team: Czech \n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-09-09 07:45+0000\n" +"X-Generator: Launchpad (build 17196)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Vyhledávač souborů Catfish" #: ../catfish.desktop.in.h:2 msgid "Search the file system" -msgstr "" +msgstr "Prohledat souborový systém" #: ../data/ui/AboutCatfishDialog.ui.h:1 msgid "Catfish is a versatile file searching tool." -msgstr "" +msgstr "Catfish je univerzální nástroj pro vyhledávání souborů." + +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Vlastní časový rozsah" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Přejít na dnešek" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Počáteční datum" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Koncové datum" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Vlastní typ souboru" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Vybrat stávající MIME typ" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Vložit koncovku souboru" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" -msgstr "" +msgstr "_Přesná shoda" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" -msgstr "" +msgstr "_Skryté soubory" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" -msgstr "" +msgstr "_Fulltextové vyhledávání" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" -msgstr "" +msgstr "_Zobrazit pokročilé nastavení" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" -msgstr "" +msgstr "_Obnovit vyhledávací index…" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" -msgstr "" +msgstr "_O aplikaci" + +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Otevřít" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Zobrazit ve _Správci souborů" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Kopírovat umístění" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Uložit jako..." + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Vymazat" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Vyber složku" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Zadejte hledané výrazy a stiskněte ENTER" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" -msgstr "" +msgstr "Kompaktní seznam" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" -msgstr "" +msgstr "Náhledy" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "Obnovit" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "Vyhledávací databáze je stará víc jak 7 dnů. Chcete ji obnovit?" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Kdykoliv" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Tento týden" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Vlastní" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" -msgstr "" +msgstr "Změněno" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Dokumenty" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" -msgstr "" +msgstr "Složky" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Obrázky" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Hudba" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Videa" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Aplikace" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Jiný" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Typ souboru" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Vlastní časový rozsah" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Přejít na dnešek" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Počáteční datum" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Koncové datum" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Kopírovat umístění" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Aktualizovat vyhledávací index" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "Obnovit databázi vyhledávání" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Odemknout" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "Databáze:" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" +msgid "Updated:" +msgstr "Obnoveno:" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "Obnovit databázi vyhledávání" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." msgstr "" +"Pro rychlejší výsledky vyhledávání musí být vyhledávací databáze obnovena.\n" +"To vyžaduje práva administrátora." -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Hotovo." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "Použití: %prog [volby] dotaz cesta" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" -msgstr "" - -#: ../catfish/__init__.py:40 -msgid "Use large icons" -msgstr "" +msgstr "Zobrazit chybové zprávy (-vv debugs catfish_lib also)" #: ../catfish/__init__.py:42 -msgid "Use thumbnails" -msgstr "" +msgid "Use large icons" +msgstr "Použít velké ikony" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" -msgstr "" +msgid "Use thumbnails" +msgstr "Použít náhledy" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "" +msgid "Display time in ISO format" +msgstr "Zobrazit čas v ISO formatu" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" -msgstr "" +msgstr "Provést přesné shody" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" -msgstr "" +msgstr "Zahrnout skryté soubory" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" +msgstr "Provést fulltextové hledání" + +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." msgstr "" +"Pokud jsou cesta a dotaz k dispozici, začít hledat při zobrazení aplikace." #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" -msgstr "" +msgstr "%s (neplatné kódování)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 -msgid "Authentication failed." -msgstr "Ověření selhalo." +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "Nikdy" -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Lokační databáze úspěšně aktualizována." +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "Při obnovování databáze došlo k chybě." -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Během aktualizace lokační databáze došlo k chybě." +#: ../catfish/CatfishWindow.py:494 +msgid "Authentication failed." +msgstr "Ověření selhalo." -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "" +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "Ověření zrušeno." + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "Databáze prohledávání byla úspěšně aktualizována." + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "Obnovuje se…" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "Zadejte vyhledávací termíny a stiskněte klávesu Enter pro zahájení." -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Vymazat vyhledávané výrazy" +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Ukončit hledání" -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" +"Probíhá vyhledávání...\n" +"Stiskněte tlačítko Storno nebo klávesu Esc k ukončení." -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "" +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "Zahájit hledání" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "\"%s\" nelze otevřít." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." -msgstr "" +msgstr "\"%s\" nemohlo být uloženo." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." -msgstr "" +msgstr "\"%s\" nemohlo být vymazáno." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" -msgstr "" +msgstr "Uložit \"%s\" jako…" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" +"Jste si jisti, že chcete \n" +"trvale smazat \"%s\"?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" +"Jste si jisti, že chcete \n" +"trvale smazat \"%i\" označených souborů?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Smažete-li soubor, bude nenávratně ztracen." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Jméno souboru" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Velikost" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Umístění" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" -msgstr "" +msgstr "Změněno" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Náhled" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" -msgstr "" +msgstr "Podrobnosti" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" -msgstr "" +msgstr "Dnes" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" -msgstr "" +msgstr "včera" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Nebyly nalezeny žádné soubory." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." -msgstr "" +msgstr "Nalezen jeden soubor" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." -msgstr "" +msgstr "%i souborů bylo nalezeno." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" -msgstr "" +msgstr "bajty" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Vyhledává se \"%s\"" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Hledá se…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Výsledek hledání \"%s\"" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "Je vyžadováno heslo" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "Špatné heslo... zkuste to znovu." + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "Heslo:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "Zrušit:" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "OK" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"Vložte své heslo\n" +"k provádění administrativních úkolů." + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"Program '%s' vám dovolí\n" +"upravit základní části systému." + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "Univerzální nástroj pro hledání souborů" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" +"Catfish je malý, rychlý a výkonný vyhledávač souborů. Díky minimalistickému " +"rozhraní s důrazem na výsledky, pomáhá uživatelům najít soubory, které " +"potřebují, aniž by otevřeli správce souborů. S výkonnými filtry jako je " +"datum změny, typ souboru a obsah souboru už uživatelé nebudou závislí na " +"správci souborů nebo svých organizačních schopnostech." + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" +"Tato verze opravuje regrese, kdy nebylo podporováno více hledaných výrazů. " +"Informační panel se nyní zobrazí, když je vyhledávací databáze zastaralá, a " +"byly vylepšeny dialogy používané k aktualizaci databáze." + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" +"Tato verze opravuje dva problémy, kdy vyhledání nebylo řádně provedeno a " +"zlepšuje manipulaci s chybějícími symbolickými ikonami." + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" +"Tato stabilní verze zlepšila spolehlivost dialogu heslo, byl pročištěn " +"nepoužívaný kód a opraveny potenciální problémy se seznamem a výběrem " +"položky." + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" +"Toto vydání opravuje potenciální bezpečnostní problém se spuštěním programu " +"a opravuje regresi s výběrem více položek." + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" +"První vydání v sérii 1.0.x představilo obnovené rozhraní a opravenou řadu " +"dlouhodobých chyb. Zlepšení ve výchozím oprávnění eliminuje řadu varování " +"při balíčkování pro distribuci. Dostupnost byla rozšířena tím, že byly " +"zlepšeny překladatelské řetězce a vylepšeny klávesové zkratky." + #~ msgid "Last modified" #~ msgstr "Naposledy změněno" + +#~ msgid "Update Search Index" +#~ msgstr "Aktualizovat vyhledávací index" + +#~ msgid "Done." +#~ msgstr "Hotovo." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Během aktualizace lokační databáze došlo k chybě." + +#~ msgid "Clear search terms" +#~ msgstr "Vymazat vyhledávané výrazy" + +#~ msgid "Locate database updated successfully." +#~ msgstr "Lokační databáze úspěšně aktualizována." + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Zadejte hledané výrazy a stiskněte ENTER" diff -Nru catfish-1.0.2/po/de.po catfish-1.2.2/po/de.po --- catfish-1.0.2/po/de.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/de.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2013-12-15 16:19+0000\n" -"Last-Translator: M4he \n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-09-05 08:07+0000\n" +"Last-Translator: Simon Steinbeiß \n" "Language-Team: German \n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-09-06 07:24+0000\n" +"X-Generator: Launchpad (build 17196)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Catfish Dateisuche" @@ -30,300 +29,310 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish ist ein vielseitiges Programm zur Dateisuche" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Benutzerdefinierter Zeitraum" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Zum heutigen Tag gehen" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Anfangsdatum" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Enddatum" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Benutzerdefinierter Dateityp" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Bestehenden Dateityp auswählen" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Dateiendung eingeben" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Exakter Treffer" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Versteckte Dateien" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Volltextsuche" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_Erweiterte Einstellungen" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" -msgstr "_Suchindex aktualisieren" +msgstr "_Suchindex aktualisieren …" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" -msgstr "" +msgstr "_Über" + +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Öffnen" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "In _Dateiverwaltung anzeigen" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "Ort _kopieren" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Speichern unter …" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Entfernen" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Verzeichnis wählen" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Suchbegriffen eingeben und ENTER drücken" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" -msgstr "" +msgstr "Kompakte Liste" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" -msgstr "" +msgstr "Vorschaubilder" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "Aktualisieren" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "Die Suchdatenbank ist älter als 7 Tage. Jetzt aktualisieren?" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" -msgstr "Immer" +msgstr "Beliebige Zeit" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Diese Woche" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Benutzerdefiniert" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" -msgstr "Verändert" +msgstr "Verändert" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Dokumente" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Ordner" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Bilder" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Musik" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Videos" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Anwendungen" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Andere" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Dateityp" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Zeitrahmen festlegen" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Zum heutigen Tag" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Anfangsdatum" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Enddatum" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Benutzerdefinierter Dateityp" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Bestehenden Dateityp wählen" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Dateiendung eingeben" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Im _Dateimanager anzeigen" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Kopiere Pfad" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Suchindex aktualisieren" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "Suchdatenbank aktualisieren" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Entsprerren" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Suchindex aktualisieren" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "Datenbank:" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Um genaue Suchergebnisse zu erzielen, muss die locate-Datenbank " -"aktualisiert werden.\n" -"Hierfür werden sudo (Administrator-)Rechte benötigt." +msgid "Updated:" +msgstr "Aktualisiert:" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "Suchdatenbank aktualisieren" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Datenbank wird aktualisiert..." +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" +"Für schnellere Suchergebnisse, muss die Suchdatenbank aufgefrischt werden.\n" +"Dieser Vorgang benötigt Systemverwalterrechte." -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Fertig." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "Nutzung: %prog [Optionen] Pfad Suchbegriff" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" -msgstr "Debug Nachrichten anzeigen (-vv debugs catfish_lib also)" +msgstr "Fehlerdiagnosenachrichten anzeigen (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" -msgstr "Große Icons verwenden" +msgstr "Große Symbole verwenden" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Vorschaubilder verwenden" -#: ../catfish/__init__.py:44 -msgid "Display time in ISO format" -msgstr "Zeit in ISO Format anzeigen" - -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Suche in Ordner PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "FILEMAN als Dateimanager verwenden" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "WRAPPER verwenden, um Dateien zu öffnen" +msgid "Display time in ISO format" +msgstr "Zeit im ISO-Format anzeigen" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Exakte Suche" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Versteckte Dateien einbeziehen" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Volltextsuche" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" +"Wenn Pfad und Abfrage übergeben werden, beginnt die Suche beim Programmstart." + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" -msgstr "" +msgstr "%s (ungültige Kodierung)" + +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "Niemals" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "Beim Aktualisieren der Datenbank ist ein Fehler aufgetreten." + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." +msgstr "Legitimierung fehlgeschlagen." + +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "Legitimierung abgebrochen." + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "Die Suchdatenbank wurde erfolgreich aktualisiert." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Die locate Datenbank wurde erfolgreich aktualisiert." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "" -"Während dem Aktualisieren der locate Datenbank ist ein Fehler aufgetreten." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Die Authentifizierung wurde durch den Benutzer abgebrochen." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Suchbegriffe löschen" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish konnte den standardmäßigen Dateimanager nicht finden." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish konnte den standardmäßigen open-wrapper nicht finden." +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "Aktualisierung wird durchgeführt …" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" +"Bitte Suchbegriffe eingeben und die Eingabetaste drücken, um mit der Suche " +"zu beginnen." + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Suche beenden" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" +"Suchvorgang läuft …\n" +"Abbrechen klicken oder die die Escape-Taste drücken, um abzubrechen." + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "Suche beginnen" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." -msgstr "\"%s\" konnte nicht geöffnet werden." +msgstr "»%s« konnte nicht geöffnet werden." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." -msgstr "\"%s\" konnte nicht gespeichert werden." +msgstr "»%s« konnte nicht gespeichert werden." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." -msgstr "\"%s\" konnte nicht gelöscht werden." +msgstr "»%s« konnte nicht gelöscht werden." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" -msgstr "\"%s\" speichern als..." +msgstr "»%s« speichern unter …" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -"Soll \"%s\" wirklich dauerhaft \n" +"Soll »%s« wirklich dauerhaft \n" "gelöscht werden?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -332,76 +341,206 @@ "Sollen die %i ausgewählten Dateien wirklich \n" "dauerthaft gelöscht werden?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Wenn Sie eine Datei löschen, ist sie dauerhaft verloren." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Dateiname" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Größe" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Ort" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" -msgstr "" +msgstr "Verändert" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Vorschau" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" -msgstr "" +msgstr "Details" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" -msgstr "" +msgstr "Heute" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" -msgstr "" +msgstr "Gestern" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Keine Dateien gefunden." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "1 Datei gefunden." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "%i Dateien gefunden." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" -msgstr "" +msgstr "Bytes" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" -msgstr "Suchen nach \"%s\"" +msgstr "Nach »%s« wird gesucht" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Suche läuft …" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Suche beenden" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" -msgstr "Suchergebnisse für \"%s\"" +msgstr "Suchergebnisse für »%s«" + +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "Passwort erforderlich" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "Falsches Passwort … bitte erneut versuchen." + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "Passwort:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "Abbrechen" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "OK" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"Passwort eingeben, um\n" +"administrative Aufgaben durchzuführen." + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"Die Anwendung »%s« ermöglicht die\n" +"Veränderung von wesentlichen Teilen Ihres Betriebssystems." + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "Vielseitiges Dateisuchwerkzeug" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" +"Catfish ist ein kleines, schnelles und leistungsfähiges Suchprogramm. Die " +"kleine Benutzeroberfläche stellt die Suchergebnisse in den Vordergrund und " +"hilft dem Benutzer, die Dateien die er sucht, zu finden, ohne eine " +"Dateiverwaltung zu verwenden. Durch nützliche Filter wie etwa " +"Änderungsdatum, Dateityp oder die Volltextsuche werden Benutzer unabhängiger " +"von der Dateiverwaltung und ihrem Organisationstalent." + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" #~ msgid "Last modified" #~ msgstr "Zuletzt geändert" + +#~ msgid "Update Search Index" +#~ msgstr "Suchindex aktualisieren" + +#~ msgid "Done." +#~ msgstr "Fertig." + +#~ msgid "Clear search terms" +#~ msgstr "Suchbegriffe löschen" + +#~ msgid "Update Search Index" +#~ msgstr "Suchindex aktualisieren" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Suchbegriffen eingeben und Eingabetaste drücken" + +#~ msgid "Updating database…" +#~ msgstr "Datenbank wird aktualisiert …" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Um genaue Suchergebnisse zu erzielen, muss die locate-Datenbank " +#~ "aktualisiert werden.\n" +#~ "Hierfür werden Systemverwalterrechte (sudo) benötigt." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "" +#~ "Während des Aktualisierens der locate-Datenbank ist ein Fehler aufgetreten." + +#~ msgid "Locate database updated successfully." +#~ msgstr "Die locate-Datenbank wurde erfolgreich aktualisiert." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish konnte die vorgegebene Dateiverwaltung nicht finden." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish konnte den vorgegebenen open-wrapper nicht finden." + +#~ msgid "User aborted authentication." +#~ msgstr "Die Legitimierung wurde durch den Benutzer abgebrochen." diff -Nru catfish-1.0.2/po/el.po catfish-1.2.2/po/el.po --- catfish-1.0.2/po/el.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/el.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,395 +6,496 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2013-02-24 00:59+0000\n" -"Last-Translator: Sean Davis \n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-07-25 08:15+0000\n" +"Last-Translator: krometis \n" "Language-Team: Greek \n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" -msgstr "" +msgstr "Αναζήτηση αρχείων Catfish" #: ../catfish.desktop.in.h:2 msgid "Search the file system" -msgstr "" +msgstr "Αναζήτηση στο σύστημα αρχείων" #: ../data/ui/AboutCatfishDialog.ui.h:1 msgid "Catfish is a versatile file searching tool." -msgstr "" +msgstr "Catfish είναι ένα ευέλικτο εργαλείο αναζήτησης αρχείων." + +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Προσαρμοσμένο εύρος χρόνου" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:2 -msgid "_Exact Match" -msgstr "" +msgid "Go to Today" +msgstr "Μετάβαση στο σήμερα" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Αρχική ημερομηνία" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:4 -msgid "_Hidden Files" -msgstr "" +msgid "End Date" +msgstr "Τελική ημερομηνία" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 -msgid "_Fulltext Search" +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 -msgid "_Show Advanced Settings" +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 -msgid "_Update Search Index…" +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:11 -msgid "_About" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 -msgid "Catfish" -msgstr "" +msgid "_Exact Match" +msgstr "Ακριβές ταίριασμα" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:13 -msgid "Select a Directory" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Εισάγετε τους όρους αναζήτησης και πιέστε το πλήκτρο ENTER" +msgid "_Hidden Files" +msgstr "_Κρυφά αρχεία" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:15 -msgid "Compact List" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 -msgid "Thumbnails" -msgstr "" +msgid "_Fulltext Search" +msgstr "_Αναζήτηση πλήρους κειμένου" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:17 -msgid "Any time" -msgstr "Κάθε φορά" - -#: ../data/ui/CatfishWindow.ui.h:18 -msgid "This week" -msgstr "" +msgid "_Show Advanced Settings" +msgstr "_Εμφάνιση ρυθμίσεων για προχωρημένους" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:19 -msgid "Custom" -msgstr "" +msgid "_Update Search Index…" +msgstr "_Ενημέρωση αναζήτησης ευρετηρίου ..." #: ../data/ui/CatfishWindow.ui.h:20 -msgid "Modified" -msgstr "" +msgid "_About" +msgstr "_Περί" #: ../data/ui/CatfishWindow.ui.h:21 -msgid "Documents" -msgstr "Έγγραφα" - -#: ../data/ui/CatfishWindow.ui.h:22 -msgid "Folders" +msgid "_Open" msgstr "" +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:23 -msgid "Images" -msgstr "Εικόνες" - -#: ../data/ui/CatfishWindow.ui.h:24 -msgid "Music" -msgstr "Μουσική" +msgid "Show in _File Manager" +msgstr "" +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:25 -msgid "Videos" -msgstr "Βίντεο" +msgid "_Copy Location" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:26 -msgid "Applications" -msgstr "Εφαρμογές" +msgid "_Save as..." +msgstr "" #: ../data/ui/CatfishWindow.ui.h:27 -msgid "Other" -msgstr "Άλλο" +msgid "_Delete" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:28 -msgid "File Type" -msgstr "" +msgid "Catfish" +msgstr "Catfish" #: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Προσαρμοσμένο εύρος χρόνου" +msgid "Select a Directory" +msgstr "Επιλογή ενός καταλόγου" #: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "" +msgid "Compact List" +msgstr "Συμπαγής λίστα" #: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "" +msgid "Thumbnails" +msgstr "Μικρογραφίες" #: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" +msgid "Update" msgstr "" #: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" +msgid "The search database is more than 7 days old. Update now?" msgstr "" -#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:34 +msgid "Any time" +msgstr "Οποιαδήποτε ώρα" + #: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "" +msgid "This week" +msgstr "Αυτήν την εβδομάδα" + +#: ../data/ui/CatfishWindow.ui.h:36 +msgid "Custom" +msgstr "Προσαρμοσμένη" -#. Enter "file extensions" such as .doc, .pdf #: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "" +msgid "Modified" +msgstr "τροποποιημένο" #: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" +msgid "Documents" +msgstr "Έγγραφα" + +#: ../data/ui/CatfishWindow.ui.h:39 +msgid "Folders" +msgstr "Φάκελοι" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "" +msgid "Images" +msgstr "Εικόνες" + +#: ../data/ui/CatfishWindow.ui.h:41 +msgid "Music" +msgstr "Μουσική" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "" +msgid "Videos" +msgstr "Βίντεο" #: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" +msgid "Applications" +msgstr "Εφαρμογές" #: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" +msgid "Other" +msgstr "Άλλο" #: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Ενημέρωση ευρετηρίου αναζήτησης" +msgid "File Type" +msgstr "Τύπος Αρχείου" #: ../data/ui/CatfishWindow.ui.h:46 -msgid "Unlock" +msgid "Update Search Database" msgstr "" #: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" +msgid "Unlock" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Ολοκληρώθηκε." +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../catfish/__init__.py:37 -msgid "Show debug messages (-vv debugs catfish_lib also)" +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:40 -msgid "Use large icons" +#: ../catfish/__init__.py:39 +msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" #: ../catfish/__init__.py:42 -msgid "Use thumbnails" +msgid "Use large icons" msgstr "" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" +msgid "Use thumbnails" msgstr "" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" +msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "" -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Η βάση δεδομένων εντοπισμού ενημερώθηκε με επιτυχία." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." msgstr "" -"Παρουσιάστηκε σφάλμα κατά την ενημέρωση της βάσης δεδομένων εντοπισμού." -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." msgstr "" -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Απαλοιφή όρων αναζήτησης" +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "" -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Όνομα αρχείου" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Μέγεθος" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Τοποθεσία" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Προεπισκόπιση" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Δεν βρέθηκαν αρχεία." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Αναζήτηση για \"%s\"" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Αποτελέσματα αναζήτησης για \"%s\"" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + +#~ msgid "Done." +#~ msgstr "Ολοκληρώθηκε." + +#~ msgid "Clear search terms" +#~ msgstr "Απαλοιφή όρων αναζήτησης" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Εισάγετε τους όρους αναζήτησης και πιέστε το πλήκτρο ENTER" + #~ msgid "Last modified" #~ msgstr "Τελευταία τροποποίηση" + +#~ msgid "Update Search Index" +#~ msgstr "Ενημέρωση ευρετηρίου αναζήτησης" + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "" +#~ "Παρουσιάστηκε σφάλμα κατά την ενημέρωση της βάσης δεδομένων εντοπισμού." + +#~ msgid "Locate database updated successfully." +#~ msgstr "Η βάση δεδομένων εντοπισμού ενημερώθηκε με επιτυχία." diff -Nru catfish-1.0.2/po/en_AU.po catfish-1.2.2/po/en_AU.po --- catfish-1.0.2/po/en_AU.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/en_AU.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,314 +6,317 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2013-09-21 03:08+0000\n" -"Last-Translator: Jackson Doak \n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-06-10 10:14+0000\n" +"Last-Translator: Rowena Fernando \n" "Language-Team: English (Australia) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" -msgstr "Catfish File Search" +msgstr "කැට්ෆිෂ් ගොනුව සෙවීම" #: ../catfish.desktop.in.h:2 msgid "Search the file system" -msgstr "Search the file system" +msgstr "ගොනු පද්ධතිය සෙවීම" #: ../data/ui/AboutCatfishDialog.ui.h:1 msgid "Catfish is a versatile file searching tool." msgstr "Catfish is a versatile file searching tool." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Custom Time Range" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Go to Today" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Start Date" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "End Date" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Custom File Type" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Select existing mimetype" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Enter file extensions" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Exact Match" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Hidden Files" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Fulltext Search" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_Show Advanced Settings" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "_Update Search Index…" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Show in _File Manager" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Copy Location" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Select a Directory" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Enter search terms and press ENTER" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Any time" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "This week" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Custom" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Modified" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Documents" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Folders" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Images" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Music" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Videos" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Applications" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Other" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "File Type" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Custom Time Range" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Go to Today" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Start Date" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "End Date" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Custom File Type" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Select existing mimetype" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Enter file extensions" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Show in _File Manager" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Copy Location" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Update Search Index" - -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Unlock" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Update Search Index" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Updating database…" +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Done." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Show debug messages (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Use large icons" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Use thumbnails" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Display time in ISO format" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Search in folder PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Use FILEMAN as filemanager" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Use WRAPPER to open files" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Perform exact match" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Include hidden files" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Perform fulltext search" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (invalid encoding)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Authentication failed." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Locate database updated successfully." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "An error occurred while updating locatedb." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "User aborted authentication." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Clear search terms" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish could not find the default file manager." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Stop Search" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "\"%s\" could not be opened." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "\"%s\" could not be saved." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" could not be deleted." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Save \"%s\" as…" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -322,7 +325,7 @@ "Are you sure that you want to \n" "permanently delete \"%s\"?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -331,76 +334,195 @@ "Are you sure that you want to \n" "permanently delete the %i selected files?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "If you delete a file, it is permanently lost." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Filename" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Size" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Location" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Preview" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "No files found." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "1 file found." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "%i files found." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Searching for \"%s\"" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Searching…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Stop Search" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Search results for \"%s\"" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Enter search terms and press ENTER" + +#~ msgid "Done." +#~ msgstr "Done." + +#~ msgid "Update Search Index" +#~ msgstr "Update Search Index" + +#~ msgid "Update Search Index" +#~ msgstr "Update Search Index" + +#~ msgid "Updating database…" +#~ msgstr "Updating database…" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish could not find the default open wrapper." + +#~ msgid "User aborted authentication." +#~ msgstr "User aborted authentication." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "An error occurred while updating locatedb." + +#~ msgid "Clear search terms" +#~ msgstr "Clear search terms" + +#~ msgid "Locate database updated successfully." +#~ msgstr "Locate database updated successfully." + #~ msgid "Last modified" #~ msgstr "Last modified" + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish could not find the default file manager." diff -Nru catfish-1.0.2/po/es.po catfish-1.2.2/po/es.po --- catfish-1.0.2/po/es.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/es.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2013-08-27 23:05+0000\n" -"Last-Translator: Adolfo Jayme \n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-09-05 15:49+0000\n" +"Last-Translator: GridCube \n" "Language-Team: Spanish \n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-09-06 07:24+0000\n" +"X-Generator: Launchpad (build 17196)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Buscador de archivos Catfish" @@ -30,290 +29,300 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish es una herramienta versátil para busqueda de archivos" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Intervalo de tiempo personalizado" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Ir a hoy" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Fecha de inicio" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Fecha de finalización" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Tipo de archivo personalizado" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Seleccione un tipo MIME existente" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Escriba las extensiones de archivo" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "Coincidencia _exacta" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "Archivos oc_ultos" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "Búsqueda de texto _completo" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_Mostrar configuración avanzada" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "_Actualizar el índice de búsqueda…" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" -msgstr "" +msgstr "_Acerca de" + +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Abrir" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Mostrar en el _gestor de archivos" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Copiar la ubicación" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Guardar como…" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Eliminar" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Seleccione un directorio" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Escriba términos de búsqueda y oprima INTRO" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" -msgstr "" +msgstr "Lista compacta" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" -msgstr "" +msgstr "Miniaturas" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "Actualizar" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "La b" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "En cualquier momento" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Esta semana" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Personalizado" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Modificado" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Documentos" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Carpetas" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Imágenes" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Música" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Vídeos" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Aplicaciones" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Otro" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Tipo de archivo" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Intervalo de tiempo personalizado" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Ir a hoy" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Fecha de inicio" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Fecha de finalización" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Tipo de archivo personalizado" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Seleccione un tipo MIME existente" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Escriba las extensiones de archivo" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Mostrar en el _gestor de archivos" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Copiar la ubicación" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Actualizar el índice de búsqueda" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "Actualizar la base de datos para la búsqueda" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Desbloquear" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Actualizar el índice de búsqueda" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "Base de datos:" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Para ofrecer resultados precisos, debe actualizar la base de datos " -"locate.\n" -"Esto requiere permisos de sudo (administrador)." +msgid "Updated:" +msgstr "Actualizar:" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "Actualizar la base de datos para la busqueda" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Actualizando la base de datos…" +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" +"Para obtener mejores resultados, la base de datos necesita ser actualizada.\n" +"Esta acción requiere de permisos administrativos." -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Hecho." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "Uso: %prog [opciones] directorio consulta" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Mostrar mensajes de depuración (-vv depura catfish_lib también)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Usar iconos grandes" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Usar miniaturas" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Mostrar la hora en formato ISO" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Buscar en la carpeta PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Usar FILEMAN como el gestor de archivos" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Usar WRAPPER para abrir los archivos" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Realizar coincidencia exacta" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Incluir archivos ocultos" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Realizar búsqueda de texto completo" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" +"Sí se proveé un directorio y una consulta , inicia la búsqueda cuando la " +"aplicación se muestra." + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (codif. no válida)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "Nunca" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "Ocurrió un error al actualizar la base de datos." + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Falló la autenticación." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "La base de datos locate se ha actualizado correctamente." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Se produjo un error al actualizar la base de datos locate." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "El usuario canceló la autenticación." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Borrar términos de la búsqueda" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish no pudo encontrar el gestor de archivos predeterminado." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish no pudo encontrar la aplicación de apertura predeterminada." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "Autenticación cancelada." + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "Base de datos actualizada satisfactoriamente." + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "Actualizando…" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "Ingrese los terminos de la búsqueda y presione Enter para empezar." + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Detener la búsqueda" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" +"Búsqueda en progreso...\n" +"Presione la tecla Escape o Suprimir para detener." -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "Iniciar la búsqueda" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "No se pudo abrir «%s»." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "No se pudo guardar «%s»." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "No se pudo eliminar «%s»." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Guardar «%s» como…" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -322,7 +331,7 @@ "¿Está seguro de que quiere eliminar \n" "permanentemente «%s»?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -331,76 +340,201 @@ "¿Está seguro de que quiere eliminar \n" "permanentemente los %i archivos seleccionados?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Si elimina un archivo, lo perderá permanentemente." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Nombre de archivo" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Tamaño" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Ubicación" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" -msgstr "" +msgstr "Modificado" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Previsualización" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" -msgstr "" +msgstr "Detalles" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" -msgstr "" +msgstr "Hoy" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" -msgstr "" +msgstr "Ayer" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "No se han encontrado archivos." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "Se ha encontrado 1 archivo." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "Se han encontrado %i archivos." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" -msgstr "" +msgstr "bytes" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Buscando «%s»" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Buscando…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Detener la búsqueda" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Resultados de búsqueda para «%s»" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "Se precisa una contraseña" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "Contraseña incorrecta... Inténtelo de nuevo." + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "Contraseña:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "Cancelar" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "Aceptar" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"Escriba su contraseña para\n" +"realizar tareas administrativas." + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"La aplicación '%s' le permite\n" +"modificar partes esenciales del sistema." + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "Herramienta versátil para la búsqueda de archivos" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" +"Esta actualización arregla un error potencial de seguridad con el inicio del " +"programa y una regresión al seleccionar múltiples items." + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + +#~ msgid "Update Search Index" +#~ msgstr "Actualizar el índice de búsqueda" + +#~ msgid "Clear search terms" +#~ msgstr "Borrar términos de la búsqueda" + +#~ msgid "Locate database updated successfully." +#~ msgstr "La base de datos locate se ha actualizado correctamente." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Se produjo un error al actualizar la base de datos locate." + #~ msgid "Last modified" #~ msgstr "Última modificación" + +#~ msgid "Done." +#~ msgstr "Hecho." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish no pudo encontrar el gestor de archivos predeterminado." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish no pudo encontrar la aplicación de apertura predeterminada." + +#~ msgid "Update Search Index" +#~ msgstr "Actualizar el índice de búsqueda" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Para ofrecer resultados precisos, debe actualizar la base de datos " +#~ "locate.\n" +#~ "Esto requiere permisos de sudo (administrador)." + +#~ msgid "Updating database…" +#~ msgstr "Actualizando la base de datos…" + +#~ msgid "User aborted authentication." +#~ msgstr "El usuario canceló la autenticación." + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Escriba términos de búsqueda y oprima INTRO" diff -Nru catfish-1.0.2/po/eu.po catfish-1.2.2/po/eu.po --- catfish-1.0.2/po/eu.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/eu.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2013-01-11 19:52+0000\n" "Last-Translator: Asier Iturralde Sarasola \n" "Language-Team: Basque \n" -"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "" @@ -30,370 +29,457 @@ msgid "Catfish is a versatile file searching tool." msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:2 -msgid "_Exact Match" +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 -msgid "_Hidden Files" +#: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 -msgid "_Fulltext Search" +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 -msgid "_Show Advanced Settings" +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 -msgid "_Update Search Index…" +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:11 -msgid "_About" +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 -msgid "Catfish" +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "Select a Directory" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 +msgid "_Exact Match" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:13 +msgid "_Hidden Files" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:15 -msgid "Compact List" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 -msgid "Thumbnails" +msgid "_Fulltext Search" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:17 -msgid "Any time" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 -msgid "This week" +msgid "_Show Advanced Settings" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:19 -msgid "Custom" +msgid "_Update Search Index…" msgstr "" #: ../data/ui/CatfishWindow.ui.h:20 -msgid "Modified" +msgid "_About" msgstr "" #: ../data/ui/CatfishWindow.ui.h:21 -msgid "Documents" -msgstr "Dokumentuak" - -#: ../data/ui/CatfishWindow.ui.h:22 -msgid "Folders" +msgid "_Open" msgstr "" +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:23 -msgid "Images" -msgstr "Irudiak" - -#: ../data/ui/CatfishWindow.ui.h:24 -msgid "Music" -msgstr "Musika" +msgid "Show in _File Manager" +msgstr "" +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:25 -msgid "Videos" -msgstr "Bideoak" +msgid "_Copy Location" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:26 -msgid "Applications" -msgstr "Aplikazioak" +msgid "_Save as..." +msgstr "" #: ../data/ui/CatfishWindow.ui.h:27 -msgid "Other" +msgid "_Delete" msgstr "" #: ../data/ui/CatfishWindow.ui.h:28 -msgid "File Type" +msgid "Catfish" msgstr "" #: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" +msgid "Select a Directory" msgstr "" #: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" +msgid "Compact List" msgstr "" #: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" +msgid "Thumbnails" msgstr "" #: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" +msgid "Update" msgstr "" #: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 +msgid "Any time" msgstr "" -#. The "mimetype" is the file type of the file, such as "application/octet-stream" #: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" +msgid "This week" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:36 +msgid "Custom" msgstr "" -#. Enter "file extensions" such as .doc, .pdf #: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" +msgid "Modified" msgstr "" #: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" +msgid "Documents" +msgstr "Dokumentuak" + +#: ../data/ui/CatfishWindow.ui.h:39 +msgid "Folders" msgstr "" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "" +msgid "Images" +msgstr "Irudiak" + +#: ../data/ui/CatfishWindow.ui.h:41 +msgid "Music" +msgstr "Musika" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "" +msgid "Videos" +msgstr "Bideoak" #: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" +msgid "Applications" +msgstr "Aplikazioak" #: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" +msgid "Other" msgstr "" #: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" +msgid "File Type" msgstr "" #: ../data/ui/CatfishWindow.ui.h:46 -msgid "Unlock" +msgid "Update Search Database" msgstr "" #: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" +msgid "Unlock" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Eginda." +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../catfish/__init__.py:37 -msgid "Show debug messages (-vv debugs catfish_lib also)" +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:40 -msgid "Use large icons" +#: ../catfish/__init__.py:39 +msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" #: ../catfish/__init__.py:42 -msgid "Use thumbnails" +msgid "Use large icons" msgstr "" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" +msgid "Use thumbnails" msgstr "" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" +msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "" -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." msgstr "" -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." msgstr "" -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." msgstr "" -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" msgstr "" -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "" -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Fitxategi-izena" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Tamaina" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Kokapena" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Aurrebista" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Ez da fitxategirik aurkitu." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" +#: ../catfish/CatfishWindow.py:1637 +#, python-format +msgid "Search results for \"%s\"" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." msgstr "" -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish_lib/SudoDialog.py:204 #, python-format -msgid "Search results for \"%s\"" +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." msgstr "" #~ msgid "Last modified" #~ msgstr "Azken aldaketa" + +#~ msgid "Done." +#~ msgstr "Eginda." diff -Nru catfish-1.0.2/po/fi.po catfish-1.2.2/po/fi.po --- catfish-1.0.2/po/fi.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/fi.po 2014-09-21 21:34:50.000000000 +0000 @@ -7,18 +7,18 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2014-02-05 07:19+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-08-31 14:59+0000\n" +"Last-Translator: Pasi Lallinaho \n" "Language-Team: Finnish \n" -"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-09-01 07:23+0000\n" +"X-Generator: Launchpad (build 17176)\n" +"Language: fi\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Catfish-tiedostohaku" @@ -30,290 +30,300 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish on monipuolinen tiedostonhakutyökalu." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Mukautettu aikaväli" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Siirry tähän päivään" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Aloituspäivä" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Päättymispäivä" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Mukautettu tiedostotyyppi" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Valitse olemassa oleva MIME-tyyppi" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Syötä tiedostotunnisteet" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Tarkka osuma" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Piilotiedostot" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Kokotekstihaku" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "Näytä _lisäasetukset" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "Päivitä _hakuindeksi" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "_Tietoja" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Avaa" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "_Näytä tiedostoselaimessa" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "Kopioi _sijainti" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Tallenna nimellä..." + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Poista" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Valitse kansio" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Syötä hakusanat ja paina ENTER" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "Tiivis luettelo" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "Pikkukuvat" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "Päivitä" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "Hakutietokanta on yli 7 päivää vanha. Päivitetäänkö se nyt?" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Koska tahansa" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Tällä viikolla" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Mukautettu" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Muokattu" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Asiakirjat" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Kansiot" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Kuvat" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Musiikki" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Videot" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Sovellukset" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Muu" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Tiedostotyyppi" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Mukautettu aikaväli" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Siirry tähän päivään" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Aloituspäivä" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Päättymispäivä" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Mukautettu tiedostotyyppi" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Valitse olemassa oleva MIME-tyyppi" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Syötä tiedostotunnisteet" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "_Avaa" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "_Näytä tiedostoselaimessa" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "Kopioi _sijainti" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "_Tallenna nimellä..." - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "_Poista" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Päivitä hakuindeksi" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "Päivitä hakutietokanta" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Avaa lukitus" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Päivitä hakuindeksi" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "Tietokanta:" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Saadaksesi täsmällisiä tuloksia, locate-tietokanta pitää päivittää.\n" -"Tämä vaatii ylläpitäjän sudo-oikeudet." +msgid "Updated:" +msgstr "Päivitetty:" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "Päivitä hakutietokanta" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Päivitetään tietokantaa..." +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" +"Jotta voit saada nopeampia hakutuloksia, hakutietokanta pitää päivittää.\n" +"Tämä toimito vaatii pääkäyttäjän oikeudet." -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Valmis." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "Käyttö: %prog [valinnat] polku kysely" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" "Näytä virheilmoitukset (-vv näyttää myös catfish_libin virheilmoitukset)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Käytä suuria kuvakkeita" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Käytä esikatselua" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Näytä aika ISO-muodossa" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Hae hakemistosta PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Käytä sovellusta FILEMAN tiedostoselaimena" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Käytä sovellusta WRAPPER tiedostojen avaamiseen" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Suorita tarkka haku" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Sisällytä piilotiedostot" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Suorita kokotekstihaku" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" +"Jos polku ja kysely on syötetty, aloita hakeminen kun sovellus näytetään." + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (virheellinen merkistökoodaus)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "Ei koskaan" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "Tietokantaa päivittäessä tapahtui virhe." + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Tunnistus epäonnistui." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Locate-tietokanta päivitettiin onnistuneesti." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Virhe päivitettäessä locate-tietokantaa." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Käyttäjä keskeytti tunnistuksen." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Tyhjennä hakusanat" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish ei löytänyt oletustiedostoselainta." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish ei löytänyt oletusohjelmaa tiedoston avaamiseen." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "Todennus keskeytetty." + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "Hakutietokanta päivitettiin onnistuneesti." + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "Päivitetään..." + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "Anna hakusanat ja paina Enter aloittaaksesi." + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Keskeytä haku" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" +"Haku käynnissä...\n" +"Paina peruutuspainiketta tai Escape-näppäintä keskeyttääksesi." -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "Aloita haku" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "Tiedostoa \"%s\" ei voitu avata." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "Tiedostoa \"%s\" ei voitu tallentaa." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "Tiedostoa \"%s\" ei voitu poistaa." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Tallenna \"%s\" nimellä..." -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -322,7 +332,7 @@ "Haluatko varmasti poistaa \n" "kohteen \"%s\" pysyvästi?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -331,76 +341,204 @@ "Haluatko varmasti poistaa \n" "%i tiedostoa pysyvästi?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Jos poistat tiedoston, sitä ei voi palauttaa." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Tiedoston nimi" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Koko" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Sijainti" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "Muokattu" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Esikatselu" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "Tiedot" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "Tänään" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "Eilen" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Tiedostoja ei löytynyt." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "Löydettiin 1 tiedosto." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "Löydettiin %i tiedostoa." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "tavua" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Etsitään \"%s\"" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Haetaan…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Keskeytä haku" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Hakutulokset haulle \"%s\"" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "Salasana vaaditaan" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "Väärä salasana... yritä uudelleen." + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "Salasana:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "Peruuta" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "OK" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"Syötä salasanasi\n" +"suorittaaksesi ylläpidollisia toimia." + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"Sovellus '%s' sallii sinun\n" +"muokata järjestelmäsi olennaisia osia." + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "Monipuolinen tiedostonhakutyökalu" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" +"Catfish on pieni, nopea ja tehokas tiedostonhakutyökalu. Sen minimaalinen " +"käyttöliittymä painottuu hakutuloksiin ja auttaa käyttäjiä löytämään " +"tarvitsemansa tiedostot ilman tiedostonhallintasovellusta. Tehokkaiden " +"suodattimien (kuten muokkauspäivämäärä, tiedostotyyppi ja tiedoston sisältö) " +"ansiosta käyttäjät eivät tule olemaan enää riippuvaisia " +"tiedostonhallintasovelluksesta tai omista organisointitaidoistaan." + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + #~ msgid "Last modified" #~ msgstr "Viimeksi muokattu" + +#~ msgid "Update Search Index" +#~ msgstr "Päivitä hakuindeksi" + +#~ msgid "Done." +#~ msgstr "Valmis." + +#~ msgid "Clear search terms" +#~ msgstr "Tyhjennä hakusanat" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Syötä hakusanat ja paina ENTER" + +#~ msgid "Update Search Index" +#~ msgstr "Päivitä hakuindeksi" + +#~ msgid "User aborted authentication." +#~ msgstr "Käyttäjä keskeytti tunnistuksen." + +#~ msgid "Updating database…" +#~ msgstr "Päivitetään tietokantaa..." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish ei löytänyt oletusohjelmaa tiedoston avaamiseen." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish ei löytänyt oletustiedostoselainta." + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Saadaksesi täsmällisiä tuloksia, locate-tietokanta pitää päivittää.\n" +#~ "Tämä vaatii ylläpitäjän sudo-oikeudet." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Virhe päivitettäessä locate-tietokantaa." + +#~ msgid "Locate database updated successfully." +#~ msgstr "Locate-tietokanta päivitettiin onnistuneesti." diff -Nru catfish-1.0.2/po/fr.po catfish-1.2.2/po/fr.po --- catfish-1.0.2/po/fr.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/fr.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2014-02-14 21:33+0000\n" -"Last-Translator: Urien Desterres \n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-09-05 08:26+0000\n" +"Last-Translator: Benoit THIBAUD \n" "Language-Team: French \n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-15 07:33+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-09-06 07:24+0000\n" +"X-Generator: Launchpad (build 17196)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Recherche de fichiers Catfish" @@ -30,377 +29,536 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish est un outil polyvalent de recherche de fichiers." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Période personnalisée" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Aller à aujourd'hui" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Date de début" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Date de fin" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Type de fichier personnalisé" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Sélectionner un type MIME existant" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Entrer les extensions de fichiers" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Expression exacte" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Fichiers cachés" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Recherche plein texte" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_Montrer les réglages avancés" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "_Mettre à jour l'index de recherche..." -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "À _propos" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Ouvrir" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Montrer dans le _Gestionnaire de fichier" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Copier l'emplacement" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Enregistrer sous…" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Supprimer" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Sélectionnez un répertoire" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Entrez les termes recherchés et appuyez sur ENTRÉE" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "Liste compacte" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "Miniatures" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "Mise à jour" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" +"La base des données recherchées date de plus de 7 jours. La mettre à jour " +"maintenant ?" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Date indifférente" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Cette semaine" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Personnaliser" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Modifié" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Documents" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Dossiers" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Images" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Musique" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Vidéos" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Applications" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Autre" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Type de fichier" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Période personnalisée" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Aller à aujourd'hui" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Date de début" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Date de fin" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Type de fichier personnalisé" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Sélectionner un type MIME existant" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Entrer les extensions de fichiers" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "_Ouvrir" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Montrer dans le _Gestionnaire de fichier" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Copier l'emplacement" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "_Enregistrer sous…" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "_Supprimer" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Mettre à jour l'index de recherche" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "Mettre à jour la base des données recherchées" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Déverrouiller" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Mettre à jour l'index de recherche" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "Base de données :" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Pour obtenir des résultats précis, la base de données locate doit " -"être rafraîchie.\n" -"Ceci nécessite les droits administrateur." +msgid "Updated:" +msgstr "Mis à jour :" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "Mettre à jour la base des données recherchées" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Mise à jour de la base de données..." +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" +"Pour des résultats de recherche plus rapides, la base des données " +"recherchées a besoin d'être actualisée." -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Terminé." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "Utilisation : %prog [options] path query" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Montrer les messages de débogage (dont -vv debugs catfish_lib)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Utiliser de grandes icônes" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Utiliser des miniatures" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Afficher le temps au format ISO" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Rechercher dans le dossier PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Utiliser FILEMAN comme gestionnaire de fichiers" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Utiliser WRAPPER pour ouvrir les fichiers" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Rechercher correspondance exacte" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Inclure les fichiers cachés" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Rechercher plein texte" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" +"Si le chemin et la requête sont fournis, commencer à chercher lorsque " +"l'application est affichée." + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (encodage non valide)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "Jamais" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" +"Une erreur s'est produite lors de la mise à jour de la base de données." + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Échec de l'authentification." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "La base de données locate a été mise à jour." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Une erreur est survenue pendant la mise à jour de locatedb." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Authentification annulée par l'utilisateur." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Effacer les termes de recherche" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish n'a pas trouvé le gestionnaire de fichiers par défaut." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish n'a pas trouvé l'application par défaut." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "Authentification annulée." + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "Base de donnée de recherche mise à jour avec succès." + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "Mise à jour en cours ..." + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "Entrer les termes de recherche et appuyer sur Entrer pour commencer." + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Arrêter la recherche" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" +"La recherche est en cours...\n" +"Appuyer sur le bouton Annuler ou la touche Echap pour arrêter." -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "Commencer la recherche" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "Impossible d'ouvrir \"%s\"." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "Impossible d'enregistrer \"%s\"." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "Impossible de supprimer \"%s\"." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Enregistrer \"%s\" sous..." -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -"Êtes-vous sûr de vouloir\n" -"supprimer définitivement \"%s\" ?" +"Êtes-vous sûr de vouloir \n" +"définitivement supprimer \"%s\" ?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -"Êtes-vous sûr de vouloir\n" -"supprimer définitivement les \"%i\" fichiers sélectionnés ?" +"Êtes-vous sûr de vouloir \n" +"définitivement supprimer les %i fichiers sélectionnés ?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Si vous supprimez un fichier, il sera définitivement perdu." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Nom de fichier" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Taille" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Emplacement" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "Dernière modification" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Aperçu" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "Détails" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "Aujourd’hui" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "Hier" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Aucun fichier trouvé." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "1 fichier trouvé." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "%i fichiers trouvés." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "octets" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Recherche de \"%s\"" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Recherche en cours…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Arrêter la recherche" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Rechercher les résultats pour \"%s\"" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "Mot de passe requis" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "Mot de passe incorrect... Veuillez réessayer." + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "Mot de passe :" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "Annuler" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "OK" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"Saisissez votre mot de passe pour\n" +"effectuer des tâches administratives." + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"L’application « %s » vous permet de\n" +"modifier des éléments essentiels de votre système." + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "Outil de recherche de fichiers polyvalents." + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" +"Catfish est un utilitaire de recherche de fichiers petit, rapide et " +"puissant. Doté d'une interface minimaliste orientée résultats, il aide " +"l'utilisateur à trouver les fichiers dont il a besoin sans gestionnaire de " +"fichiers. Avec des filtres puissants tels que la date de modification, le " +"type de fichier ou son contenu, l'utilisateur n'est plus dépendant d'un " +"gestionnaire de fichiers ou de ses capacités d'organisation." + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" +"Cette version corrige une régression où plusieurs termes de recherche " +"n'étaient plus pris en charge. Une barre d'informations s'affiche désormais " +"lorsque la base des données recherchées n'est pas à jour. De plus, la boîte " +"de dialogue de mise à jour de la base de données a été améliorée." + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" +"Cette version corrige deux problèmes où la localisation n'était pas exécutée " +"correctement et améliore la gestion des icônes symboliques manquantes." + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" +"Cette version stable a amélioré la fiabilité de la boîte de dialogue du mot " +"de passe, nettoyé le code inutilisé, et corrige les problèmes potentiels " +"lors de la sélection des listes et des items." + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" +"Cette version a corrigé une faille de sécurité potentielle sur le programme " +"de démarrage ainsi qu'une régression avec la sélection multiples d'items ." + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" +"La première version de la série 1.0.x a introduit une nouvelle interface et " +"a corrigé un certain nombre de bogues de longue date. Les améliorations " +"apportées aux autorisations par défaut ont supprimé un certain nombre " +"d'avertissements lors de l'empaquetage pour les distributions. " +"L'accessibilité a été renforcée, toutes les chaînes ont été rendues " +"traduisibles et les raccourcis clavier ont été améliorés." + #~ msgid "Last modified" #~ msgstr "Dernière modification" + +#~ msgid "Done." +#~ msgstr "Terminé." + +#~ msgid "Locate database updated successfully." +#~ msgstr "La base de données locate a été mise à jour." + +#~ msgid "Clear search terms" +#~ msgstr "Effacer les termes de recherche" + +#~ msgid "Updating database…" +#~ msgstr "Mise à jour de la base de données..." + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Pour obtenir des résultats précis, la base de données locate doit " +#~ "être rafraîchie.\n" +#~ "Ceci nécessite les droits administrateur." + +#~ msgid "User aborted authentication." +#~ msgstr "Authentification annulée par l'utilisateur." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish n'a pas trouvé le gestionnaire de fichiers par défaut." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish n'a pas trouvé l'application par défaut." + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Entrez les termes recherchés et appuyez sur ENTRÉE" + +#~ msgid "Update Search Index" +#~ msgstr "Mettre à jour l'index de recherche" + +#~ msgid "Update Search Index" +#~ msgstr "Mettre à jour l'index de recherche" + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Erreur lors de la mise à jour de locatedb." diff -Nru catfish-1.0.2/po/hu.po catfish-1.2.2/po/hu.po --- catfish-1.0.2/po/hu.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/hu.po 2014-09-21 21:34:50.000000000 +0000 @@ -7,19 +7,19 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2013-04-17 01:12+0000\n" -"Last-Translator: Gabor Kelemen \n" +"Last-Translator: Gabor Kelemen \n" "Language-Team: Ukrainian \n" -"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" +"Language: uk\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Catfish fájlkereső" @@ -31,292 +31,296 @@ msgid "Catfish is a versatile file searching tool." msgstr "A Catfish egy rugalmas fájlkereső eszköz." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Egyéni időintervallum" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Ugrás a mai naphoz" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Kezdő dátum" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Záró dátum" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Egyéni fájltípus" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Létező MIME-típus kiválasztása" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Adja meg a fájlkiterjesztéseket" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Pontos egyezés" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Rejtett fájlok" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Teljes szöveges keresés" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_Speciális beállítások megjelenítése" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "_Keresési index frissítése" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Megjelenítés a _fájlkezelőben" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "Hely _másolása" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Könyvtár kiválasztása" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Adja meg a keresési kifejezéseket, majd nyomja meg az Entert" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Bármikor" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Ezen a héten" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Egyéni" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Módosítás" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Dokumentumok" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Képek" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Zene" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Videók" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Alkalmazások" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Egyéb" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Fájltípus" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Egyéni időintervallum" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Ugrás a mai naphoz" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Kezdő dátum" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Záró dátum" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Egyéni fájltípus" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Létező MIME-típus kiválasztása" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Adja meg a fájlkiterjesztéseket" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Megjelenítés a _fájlkezelőben" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "Hely _másolása" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Keresési index frissítése" - -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Feloldás" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Keresési index frissítése" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -"Pontos eredmények érdekében frissíteni kell a locate adatbázist.\n" -"Ehhez rendszergazdai jogok szükségesek." #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Adatbázis frissítése…" +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Kész." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" "Hibakereső üzenetek megjelenítése (a -vv a catfish_lib hibaüzeneteit is " "megjeleníti)" -#: ../catfish/__init__.py:40 -msgid "Use large icons" -msgstr "" - #: ../catfish/__init__.py:42 -msgid "Use thumbnails" +msgid "Use large icons" msgstr "" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" +msgid "Use thumbnails" msgstr "" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" +msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "A hitelesítés meghiúsult." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "A locate adatbázis sikeresen frissült." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Hiba történt a locatedb frissítése közben." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "A felhasználó megszakította a hitelesítést." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Keresési kifejezések törlése" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "A Catfish nem találja az alapértelmezett fájlkezelőt." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Keresés leállítása" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -"A Catfish nem találja az alapértelmezett alkalmazást a fájl megnyitásához." -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "„%s” nem nyitható meg." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "„%s” nem menthető." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "„%s” nem törölhető." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "„%s” mentése másként…" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -325,7 +329,7 @@ "Biztos, hogy véglegesen törölni szeretné \n" "a(z) „%s” fájlt?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -334,76 +338,195 @@ "Biztos, hogy véglegesen törölni szeretné\n" "a kijelölt %i fájlt?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Ha töröl egy fájlt, az véglegesen elvész." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Fájlnév" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Méret" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Hely" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Előnézet" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Nem találhatók fájlok." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "%i fájl található." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "„%s” keresése" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Keresés…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Keresés leállítása" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Találatok erre: „%s”" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Adja meg a keresési kifejezéseket, majd nyomja meg az Entert" + +#~ msgid "Update Search Index" +#~ msgstr "Keresési index frissítése" + +#~ msgid "Update Search Index" +#~ msgstr "Keresési index frissítése" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Pontos eredmények érdekében frissíteni kell a locate adatbázist.\n" +#~ "Ehhez rendszergazdai jogok szükségesek." + +#~ msgid "Updating database…" +#~ msgstr "Adatbázis frissítése…" + +#~ msgid "Done." +#~ msgstr "Kész." + #~ msgid "Last modified" #~ msgstr "Utolsó módosítás" + +#~ msgid "Locate database updated successfully." +#~ msgstr "A locate adatbázis sikeresen frissült." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Hiba történt a locatedb frissítése közben." + +#~ msgid "User aborted authentication." +#~ msgstr "A felhasználó megszakította a hitelesítést." + +#~ msgid "Clear search terms" +#~ msgstr "Keresési kifejezések törlése" + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "A Catfish nem találja az alapértelmezett fájlkezelőt." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "" +#~ "A Catfish nem találja az alapértelmezett alkalmazást a fájl megnyitásához." diff -Nru catfish-1.0.2/po/id.po catfish-1.2.2/po/id.po --- catfish-1.0.2/po/id.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/id.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2013-03-17 01:40+0000\n" "Last-Translator: Viko Adi Rahmawan \n" "Language-Team: Indonesian \n" -"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Catfish si pencari berkas" @@ -30,367 +29,451 @@ msgid "Catfish is a versatile file searching tool." msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Hari Ini" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Mulai" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Hingga" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Masukkan ekstensi berkas" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Persis Sama" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "Berkas Ter_sembunyi" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "Dalam Berkas _Teks" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "Tamplikan Pengaturan _Lanjutan" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Tampilkan di Pengelola Berkas" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Salin Lokasi" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Pilih Direktori" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Pekan ini" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Dokumen" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Gambar" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Musik" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Video" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Aplikasi" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Lainnya" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Tipe Berkas" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Hari Ini" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Mulai" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Hingga" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Masukkan ekstensi berkas" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Tampilkan di Pengelola Berkas" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Salin Lokasi" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:37 -msgid "Show debug messages (-vv debugs catfish_lib also)" +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:40 -msgid "Use large icons" +#: ../catfish/__init__.py:39 +msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" #: ../catfish/__init__.py:42 -msgid "Use thumbnails" +msgid "Use large icons" msgstr "" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" +msgid "Use thumbnails" msgstr "" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" +msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "" -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." msgstr "" -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." msgstr "" -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." msgstr "" -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" msgstr "" -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "" -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "" -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" +#: ../catfish/CatfishWindow.py:1637 +#, python-format +msgid "Search results for \"%s\"" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." msgstr "" -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish_lib/SudoDialog.py:204 #, python-format -msgid "Search results for \"%s\"" +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." msgstr "" diff -Nru catfish-1.0.2/po/it.po catfish-1.2.2/po/it.po --- catfish-1.0.2/po/it.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/it.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2014-02-14 09:01+0000\n" -"Last-Translator: Marchi Cristian \n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-08-28 12:14+0000\n" +"Last-Translator: Man from Mars \n" "Language-Team: Italian \n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-15 07:33+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-30 07:24+0000\n" +"X-Generator: Launchpad (build 17176)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Catfish ricerca di file" @@ -30,291 +29,301 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish è un versatile strumento per cercare file" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Intervallo di tempo personalizzato" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Vai a oggi" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Data iniziale" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Data finale" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Tipo di file personalizzato" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Seleziona tipo mime esistente" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Inserisci l'estensione del file" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "Corrispondenza _esatta" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "File _nascosti" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "Ricerca co_mpleta" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "Mostra impostazioni avan_zate" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "Aggiorna in_dice di ricerca..." -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "_Informazioni" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Apri" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Mostra nel _gestore di file" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Copia posizione" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Salva come..." + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Elimina" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Selezionare una cartella" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Inserire i termini da ricercare e premere INVIO" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "Elenco compatto" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "Anteprime" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "Aggiorna" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "Il database di ricerca è più vecchio di 7 giorni. Aggiornarlo ora?" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Ogni volta" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Questa settimana" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Personalizzato" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Modificato" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Documenti" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Cartelle" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Immagini" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Musica" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Video" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Programmi" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Altro" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Tipo di file" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Intervallo di tempo personalizzato" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Vai a oggi" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Data iniziale" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Data finale" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Tipo di file personalizzato" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Selezione tipo mime esistente" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Inserire l'estensione del file" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "_Apri" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Mostra nel _gestore di file" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Copia posizione" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "_Salva come..." - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "_Elimina" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Aggiorna l'indice di ricerca" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "Aggiorna il database di ricerca" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Scarica" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Aggiorna indice di ricerca" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "Database:" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Per ottenere risultati accurati, il database delle posizioni deve " -"essere aggiornato.\n" -"Per questa operazione sono necessari i diritti di amministratore (sudo)" +msgid "Updated:" +msgstr "Aggiornato:" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Aggiornamento database in corso..." +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "Aggiorna il database di ricerca" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Finito." +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" +"Per risultati più rapidi, il database di ricerca necessita di essere " +"aggiornato.\n" +"Questa azione richiede privilegi di amministrazione." + +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "Uso: %prog [opzioni] percorso ricerca" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Mostra messaggi di debug (-vv debugs catfish_lib)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Usa icone grandi" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Usa miniature" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Mostra l'ora in formato ISO" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Cerca nella cartella PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Usa FILEMAN come gestore dei file" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Usa WRAPPER per aprire i file" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Esegue una corrispondenza esatta" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Include i file nascosti" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Esegue una ricerca completa" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" +"Se un percorso e una stringa sono dati, inizia la ricerca quando " +"l'applicazione viene mostrata." + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (codifica non valida)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "Mai" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "È stato riscontrato un errore nell'aggiornamento del database." + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Autenticazione non riuscita." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Database delle posizioni aggiornato." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "" -"Si è verificato un errore nell'aggiornamento del database delle posizioni" - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Autenticazione interrotta dall'utente" - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Cancella i termini di ricerca" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish non riesce a trovare il gestore di file predefinito" - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish non riesce a trovare l'applicazione predefinita per l'apertura" +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "Autenticazione annullata." + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "Il database di ricerca è stato aggiornato con successo." + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "Aggiornamento in corso..." + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "Inserisci i termini da cercare e premi Invio per iniziare." + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Interrompi ricerca" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" +"Ricerca in corso...\n" +"Premi cancella o il tasto Esc per annullare." -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "Inizio ricerca" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "Impossibile aprire «%s»." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "Impossibile salvare «%s»." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "Impossibile eliminare «%s»." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Salva «%s» come..." -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -323,7 +332,7 @@ "Eliminare davvero «%s» in\n" "modo permanente?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -332,76 +341,223 @@ "Eliminare davvero i %i file selezionati\n" "in modo permanente?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Se si elimina un file non sarà più recuperabile." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Nome file" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Dimensione" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Posizione" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "Modificato" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Anteprima" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "Dettagli" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "Oggi" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "Ieri" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Nessun file trovato." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "Trovato 1 file." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "Trovati %i file." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "byte" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Ricerca di «%s»" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Ricerca in corso..." -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Interrompi ricerca" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Risultati della ricerca di «%s»" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "Richiesta Password" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "Password non corretta... riprova." + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "Parola d'accesso:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "Annulla" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "OK" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"Inserisci la password per eseguire\n" +"operazioni da amministratore." + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"L'applicazione '%s' ti permette\n" +"di modificare parti essenziali del tuo sistema." + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "Strumento versatile per la ricerca dei file" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" +"Catfish è un piccolo, veloce e potente strumento per la ricerca dei file. " +"Con la sua interfaccia minimale e l'enfasi sui risultati, aiuta gli utenti a " +"trovare i file di cui hanno bisogno senza un gestore di file. Grazie agli " +"utilissimi filtri come la data di modifica, il tipo di file e il contenuto " +"del file, gli utenti non saranno più dipendenti dal gestore dei file o da " +"capacità organizzative." + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" +"Questa release risolve una regressione per cui termini di ricerca multipli " +"non erano più supportati. Adesso viene mostrata una InfoBar quando il " +"database di ricerca non è aggiornato e le finestre di dialogo di " +"aggiornamento database sono state migliorate." + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" +"Questa release risolve due problemi per cui locate non era eseguito " +"correttamente e migliora la gestione delle icone simboliche mancanti." + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" +"Questa release stabile migliora l'affidabilità della finestra di dialogo per " +"la password, elimina codice non usato e risolve potenziali problemi con la " +"selezione di oggetti e liste." + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" +"Questa release risolve un potenzioale problema di sicurezza all'avvio del " +"programma e risolve una regressione con la selezione di oggetti multipli." + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" +"La prima release della serie 1.0.x introduce un'interfaccia ridisegnata e " +"risolve una serie di bug di vecchia data. I miglioramenti ai permessi di " +"default eliminano molti warning durante il packaging per le distribuzioni. " +"Sono state migliorate l'accessibilità, rendendo tutte le stringhe " +"traducibili, e le scorciatoie da tastiera." + +#~ msgid "Done." +#~ msgstr "Finito." + +#~ msgid "Update Search Index" +#~ msgstr "Aggiorna l'indice di ricerca" + +#~ msgid "Clear search terms" +#~ msgstr "Cancella i termini di ricerca" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Inserire i termini da ricercare e premere INVIO" + +#~ msgid "Update Search Index" +#~ msgstr "Aggiorna indice di ricerca" + +#~ msgid "Updating database…" +#~ msgstr "Aggiornamento database in corso..." + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Per ottenere risultati accurati, il database delle posizioni deve " +#~ "essere aggiornato.\n" +#~ "Per questa operazione sono necessari i diritti di amministratore (sudo)" + +#~ msgid "User aborted authentication." +#~ msgstr "Autenticazione interrotta dall'utente" + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "" +#~ "Si è verificato un errore nell'aggiornamento del database delle posizioni" + +#~ msgid "Locate database updated successfully." +#~ msgstr "Database delle posizioni aggiornato." + #~ msgid "Last modified" #~ msgstr "Ultima modifica" + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish non riesce a trovare il gestore di file predefinito" + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "" +#~ "Catfish non riesce a trovare l'applicazione predefinita per l'apertura" diff -Nru catfish-1.0.2/po/ja.po catfish-1.2.2/po/ja.po --- catfish-1.0.2/po/ja.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/ja.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2013-06-10 09:41+0000\n" -"Last-Translator: o-157 \n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-09-15 02:23+0000\n" +"Last-Translator: Kiyotaka Nemoto \n" "Language-Team: Japanese \n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-09-16 08:20+0000\n" +"X-Generator: Launchpad (build 17196)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Catfish File Search" @@ -30,289 +29,298 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfishは多目的のファイル検索ツールです。" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "期間指定" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "今日へ移動" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "開始日" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "終了日" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "カスタムファイルタイプ" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "既存のMIMEタイプを選択" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "拡張子を入力" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "完全一致(_E)" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "隠しファイル(_H)" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "全文検索(_F)" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "詳細設定(_S)" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "検索インデックスの更新(_U)" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" -msgstr "" +msgstr "このアプリケーションについて(_A)" + +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "開く(_O)" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "ファイルマネージャーで開く(_F)" -#: ../data/ui/CatfishWindow.ui.h:12 +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "位置のコピー(_C)" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "別名で保存(_S)..." + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "削除(_D)" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "フォルダを選択" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "語句を入れてEnterを押して下さい" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" -msgstr "" +msgstr "一覧" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" -msgstr "" +msgstr "サムネイル" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "アップデート" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "検索データベースは7日以上更新されていません。今すぐアップデートしますか?" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "時刻指定なし" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "今週" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "カスタム" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "変更日時" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "文書" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" -msgstr "" +msgstr "フォルダー" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "画像" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "音楽" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "動画" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "アプリケーション" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "その他" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "ファイルタイプ" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "期間指定" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "今日へ移動" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "開始日時" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "終了日時" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "カスタムファイルタイプ" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "既存のMIMEタイプを選択" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "拡張子を入力" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "ファイルマネージャーで開く(_F)" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "位置のコピー(_C)" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "検索インデックスの更新" - #: ../data/ui/CatfishWindow.ui.h:46 -msgid "Unlock" -msgstr "アンロック" +msgid "Update Search Database" +msgstr "検索データベースのアップデート" #: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "検索インデックスの更新" +msgid "Unlock" +msgstr "ロックの解除" + +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "データベース:" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"正確な結果を提供するために位置データベースを更新する必要があります。\n" -"これはsudo(管理者権限)が必要です。" +msgid "Updated:" +msgstr "アップデート:" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "検索データベースのアップデート" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "データベースを更新しています..." +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" +"検索結果を速く表示するために、検索データベースを更新する必要があります。\n" +"このためには管理者権限が必要です。" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "完了" +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "デバッグメッセージを表示(-vv catfish_libもデバッグ)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "大きいアイコンを使う" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "サムネイルを使う" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "ISO形式で時間を表示する" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "PATH フォルダ内で検索" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "ファイルマネージャーとして FILEMAN を使用" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "ファイルを開くときに WRAPPER を使用" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "完全一致検索" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "隠しファイルを含める" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "全文検索" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "パスと検索クエリが指定されているならば、プログラムが表示された時に検索を開始します。" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" +msgstr "%s (無効なエンコーディング)" + +#: ../catfish/CatfishWindow.py:231 +msgid "Never" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "データベースのアップデート中にエラーが発生しました。" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "認証に失敗しました。" -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "位置データベースの更新が完了しました。" - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "位置データベースをアップデート中にエラーが発生しました。" - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "ユーザーが認証を中止しました。" - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "検索語句をクリア" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfishにはデフォルトのファイルマネージャーが発見できません。" - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfishにはデフォルトのオープンラッパーが発見できません。" +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "認証はキャンセルされました。" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "検索データベースはアップデートされました。" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "アップデート中..." + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "検索ワードを入力し、Enterを押してください。" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "検索を停止" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" +"検索中...\n" +"中止するにはキャンセルボタンをクリックするかEscキーを押してください。" + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "検索を開始" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "\"%s\" を開けませんでした。" -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "\"%s\" は保存されていません。" -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" は削除できません。" -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "\"%s\" を別名で保存" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -321,7 +329,7 @@ "本当に \"%s\"\n" " を恒久的に削除しても良いですか?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -330,76 +338,206 @@ "本当に %i つのファイル\n" "を恒久的に削除しても良いですか?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "削除されたファイルは二度と復元できません。" -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "ファイル名" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" -msgstr "大きさ" +msgstr "サイズ" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "位置" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" -msgstr "" +msgstr "修正日" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "プレビュー" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" -msgstr "" +msgstr "詳細" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" -msgstr "" +msgstr "今日" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" -msgstr "" +msgstr "昨日" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "ファイルが一つも見つかりません。" -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "1つのファイルを発見。" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "%i つのファイルを発見。" -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" -msgstr "" +msgstr "bytes" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\" を検索中" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "検索中…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "検索を停止" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" の検索結果" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "パスワードが必要です" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "パスワードが正しくありません... 再入力してください。" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "パスワード:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "キャンセル" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "OK" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"管理者権限が必要な操作を実行するため\n" +"パスワードを入力してください。" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"アプリケーション '%s' はシステムの\n" +"主要な部分を修正しました。" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "多機能なファイル検索ツール" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" +"Catfishは軽量で速いにもかかわらず強力なファイル検索ユーティリティーです。インターフェースは検索結果に重点を起いた最小限な構成となっており、ユーザー" +"がファイルマネージャーを使わずにフィルを見つけることを助けます。ファイルの変更日、ファイルタイプ、ファイルの内容といった強力なフィルターがあることによって" +"、ユーザーはファイルマネージャーやファイルの整理スキルに頼る必要がなくなります。" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" +"このリリースでは複数のキーワードでの検索ができなくなっていた問題を解決しました。検索データベースが古くなると情報バーが表示されるようにもなり、データベース" +"のアップデートについてのダイアログも改善されました。" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" +"この安定版のリリースでは、パスワードダイアログの信頼性を改善し、未使用のコードを削除し、リスト選択とアイテム選択に関する潜在的な問題を修正しました。" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "このリリースでは、起動時の潜在的なセキュリティの問題を修正しました。また、複数項目の選択に関する問題についても修正しました。" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" +"1.0.xシリーズの最初のリリースでは、インターフェースを刷新し、長年あったバグを修正しました。デフォルトのパーミッションを改善したことでディストリビュー" +"ション用のパッケージングの際に出る警告が減りました。アクセシビリティも強化され、すべての文字列が翻訳可能となり、キーボードショートカットも改善されました。" + +#~ msgid "Done." +#~ msgstr "完了" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "語句を入れてEnterを押して下さい" + +#~ msgid "Update Search Index" +#~ msgstr "検索インデックスの更新" + +#~ msgid "Update Search Index" +#~ msgstr "検索インデックスの更新" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "正確な結果を提供するために位置データベースを更新する必要があります。\n" +#~ "これはsudo(管理者権限)が必要です。" + +#~ msgid "Updating database…" +#~ msgstr "データベースを更新しています..." + +#~ msgid "User aborted authentication." +#~ msgstr "ユーザーが認証を中止しました。" + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "位置データベースをアップデート中にエラーが発生しました。" + +#~ msgid "Clear search terms" +#~ msgstr "検索語句をクリア" + +#~ msgid "Locate database updated successfully." +#~ msgstr "位置データベースの更新が完了しました。" + #~ msgid "Last modified" #~ msgstr "最終更新日時" + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfishにはデフォルトのファイルマネージャーが発見できません。" + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfishにはデフォルトのオープンラッパーが発見できません。" diff -Nru catfish-1.0.2/po/ko.po catfish-1.2.2/po/ko.po --- catfish-1.0.2/po/ko.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/ko.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2013-11-12 11:45+0000\n" "Last-Translator: Litty \n" "Language-Team: Korean \n" -"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "캣피쉬 파일 검색기" @@ -30,367 +29,466 @@ msgid "Catfish is a versatile file searching tool." msgstr "catfish 는 다용도의 파일 검색 도구입니다." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "시작일" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "종료일" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "파일 확장자 입력" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_숨김 파일" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_고급 설정 보기" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "파일 관리자에서 보이기(_F)" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "위치 복사(_C)" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "캣피쉬" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "검색어를 입력하고 Enter를 누르세요" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "언제든지" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "이번 주" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "사용자 정의" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "문서" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "이미지" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "음악" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "동영상" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "응용 프로그램" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "기타" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "파일 형식" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "시작일" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "종료일" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "파일 확장자 입력" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "파일 관리자에서 보이기(_F)" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "위치 복사(_C)" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "잠금 해제" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "데이터 베이스 업데이트 중..." +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "완료되었습니다." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "큰 아이콘 사용하기" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "미리보기 사용" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "ISO 포맷으로 시간 표시" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "인증이 실패했습니다." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." msgstr "" -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." msgstr "" -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "사용자가 인증을 중단했습니다." +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." msgstr "" -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "기본 파일 관리자를 찾을 수 없습니다." +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "검색 중지" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "\"%s\"을(를) 열 수 없습니다." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "\"%s\"을(를) 저장할 수 없습니다." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\"을(를) 삭제할 수 없습니다." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "파일 이름" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "크기" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "위치" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "미리 보기" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "" -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "파일 하나를 찾았습니다." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\"을(를) 찾는 중" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "검색하는 중…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "검색 중지" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\"에 대한 검색 결과" + +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "검색어를 입력하고 Enter를 누르세요" + +#~ msgid "Updating database…" +#~ msgstr "데이터 베이스 업데이트 중..." + +#~ msgid "User aborted authentication." +#~ msgstr "사용자가 인증을 중단했습니다." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "기본 파일 관리자를 찾을 수 없습니다." + +#~ msgid "Done." +#~ msgstr "완료되었습니다." diff -Nru catfish-1.0.2/po/lv.po catfish-1.2.2/po/lv.po --- catfish-1.0.2/po/lv.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/lv.po 2014-09-21 21:34:50.000000000 +0000 @@ -7,19 +7,19 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2013-06-22 10:48+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian \n" -"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" +"Language: lv\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Catfish datņu meklēšana" @@ -31,289 +31,294 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish ir universāls datņu meklēšanas rīks." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Pielāgots laika intervāls" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Iet uz šodienu" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Sākuma datums" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Beigu datums" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Pielāgots datņu tips" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Izvēlieties esošu mime tipu" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Ievadiet datnes paplašinājumu" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "Atbilst pr_ecīzi" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Slēptās datnes" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Pilna teksta meklēšana" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "Rādīt paplašināto_s iestatījumus" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "Atja_unināt meklēšanas indeksu…" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Rādīt _datņu pārvaldniekā" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Kopēt atrašanās vietu" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Izvēlieties direktoriju" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Ievadiet meklēšanas tekstu un spiediet ENTER" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Jebkurā laikā" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Šajā nedēļā" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Pielāgots" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Mainīts" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Dokumenti" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Attēli" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Mūzika" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Video" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Lietotnes" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Citi" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Datnes tips" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Pielāgots laika intervāls" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Iet uz šodienu" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Sākuma datums" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Beigu datums" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Pielāgots datņu tips" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Izvēlieties esošu mime tipu" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Ievadiet datnes paplašinājumu" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Rādīt _datņu pārvaldniekā" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Kopēt atrašanās vietu" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Atjaunināt meklēšanas indeksu" - -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Atbloķēt" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Atjaunināt meklēšanas indeksu" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -"Lai dotu aktuālus rezultātus, ir jāatjaunina locate datubāze.\n" -"Tam ir vajadzīgas sudo (administratora) tiesības." #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Atjaunina datubāzi…" +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Pabeigts." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Rādīt atkļūdošanas ziņojumus (-vv arī atkļūdo catfish_lib)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Lietot lielas ikonas" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Lietot sīktēlus" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Rādīt laiku ISO formātā" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Meklēt mapē PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Izmantot FILEMAN ka datņu pārvaldnieku" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Izmantot WRAPPER, lai atvērtu datnes" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Meklēt precīzas sakritības" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Iekļaut slēptās datnes" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Veikt pilna teksta meklēšanu" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Autentificēšanās neveiksmīga." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Locate datubāze ir veiksmīgi atjaunināta." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Gadījās kļūda, atjaunojot locatedb." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Lietotājs apturēja autentificēšanos." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Attīrīt meklēšanas tekstu" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish nevarēja atrast noklusējuma datņu pārvaldnieku." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish nevarēja atrast noklusējuma atvēršanas ietinumu." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Apturēt meklēšanu" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "Neizdevās atvērt “%s”." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "Neizdevās saglabāt “%s”" -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "Neizdevās izdzēst “%s”" -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Saglabāt “%s” kā…" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -322,7 +327,7 @@ "Vai tiešām vēlaties\n" "neatgriezeniski dzēst “%s”?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -331,76 +336,194 @@ "Vai tiešām vēlaties neatgriezeniski \n" "dzēst %i izvēlētās datnes?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Ja izdzēsīsiet datni, tā tiks neatgriezeniski zaudēta." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Datnes nosaukums" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Izmērs" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Vieta" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Priekšskatīt" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Nav atrastu datņu." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "Atrasta viena datne." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "Atrastas %i datnes." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Meklē “%s”" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Meklē…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Apturēt meklēšanu" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "“%s” meklēšanas rezultāti" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Ievadiet meklēšanas tekstu un spiediet ENTER" + +#~ msgid "Update Search Index" +#~ msgstr "Atjaunināt meklēšanas indeksu" + +#~ msgid "Update Search Index" +#~ msgstr "Atjaunināt meklēšanas indeksu" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Lai dotu aktuālus rezultātus, ir jāatjaunina locate datubāze.\n" +#~ "Tam ir vajadzīgas sudo (administratora) tiesības." + +#~ msgid "Updating database…" +#~ msgstr "Atjaunina datubāzi…" + +#~ msgid "Done." +#~ msgstr "Pabeigts." + #~ msgid "Last modified" #~ msgstr "Pēdējo reizi mainīta" + +#~ msgid "Locate database updated successfully." +#~ msgstr "Locate datubāze ir veiksmīgi atjaunināta." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Gadījās kļūda, atjaunojot locatedb." + +#~ msgid "User aborted authentication." +#~ msgstr "Lietotājs apturēja autentificēšanos." + +#~ msgid "Clear search terms" +#~ msgstr "Attīrīt meklēšanas tekstu" + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish nevarēja atrast noklusējuma datņu pārvaldnieku." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish nevarēja atrast noklusējuma atvēršanas ietinumu." diff -Nru catfish-1.0.2/po/ml.po catfish-1.2.2/po/ml.po --- catfish-1.0.2/po/ml.po 1970-01-01 00:00:00.000000000 +0000 +++ catfish-1.2.2/po/ml.po 2014-09-21 21:34:50.000000000 +0000 @@ -0,0 +1,479 @@ +# Malayalam translation for catfish-search +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the catfish-search package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: catfish-search\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-07-30 15:59+0000\n" +"Last-Translator: ST Alfas \n" +"Language-Team: Malayalam \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" + +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 +msgid "Catfish File Search" +msgstr "" + +#: ../catfish.desktop.in.h:2 +msgid "Search the file system" +msgstr "" + +#: ../data/ui/AboutCatfishDialog.ui.h:1 +msgid "Catfish is a versatile file searching tool." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 +msgid "_Exact Match" +msgstr "" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:13 +msgid "_Hidden Files" +msgstr "" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:15 +msgid "_Fulltext Search" +msgstr "" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:17 +msgid "_Show Advanced Settings" +msgstr "" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:19 +msgid "_Update Search Index…" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:20 +msgid "_About" +msgstr "_കുറിച്ച്" + +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:28 +msgid "Catfish" +msgstr "ക്യാറ്റ്ഫിഷ്" + +#: ../data/ui/CatfishWindow.ui.h:29 +msgid "Select a Directory" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:30 +msgid "Compact List" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:31 +msgid "Thumbnails" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 +msgid "Any time" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:35 +msgid "This week" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:36 +msgid "Custom" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:37 +msgid "Modified" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:38 +msgid "Documents" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:39 +msgid "Folders" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:40 +msgid "Images" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:41 +msgid "Music" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:42 +msgid "Videos" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:43 +msgid "Applications" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:44 +msgid "Other" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:45 +msgid "File Type" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:47 +msgid "Unlock" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:49 +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" + +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" + +#: ../catfish/__init__.py:39 +msgid "Show debug messages (-vv debugs catfish_lib also)" +msgstr "" + +#: ../catfish/__init__.py:42 +msgid "Use large icons" +msgstr "" + +#: ../catfish/__init__.py:44 +msgid "Use thumbnails" +msgstr "" + +#: ../catfish/__init__.py:46 +msgid "Display time in ISO format" +msgstr "" + +#: ../catfish/__init__.py:50 +msgid "Perform exact match" +msgstr "" + +#: ../catfish/__init__.py:52 +msgid "Include hidden files" +msgstr "" + +#: ../catfish/__init__.py:54 +msgid "Perform fulltext search" +msgstr "" + +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + +#. Translators: this text is displayed next to +#. a filename that is not utf-8 encoded. +#: ../catfish/CatfishWindow.py:85 +#, python-format +msgid "%s (invalid encoding)" +msgstr "" + +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 +msgid "Authentication failed." +msgstr "" + +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:988 +#, python-format +msgid "\"%s\" could not be opened." +msgstr "" + +#: ../catfish/CatfishWindow.py:1034 +#, python-format +msgid "\"%s\" could not be saved." +msgstr "" + +#: ../catfish/CatfishWindow.py:1059 +#, python-format +msgid "\"%s\" could not be deleted." +msgstr "" + +#: ../catfish/CatfishWindow.py:1069 +#, python-format +msgid "Save \"%s\" as…" +msgstr "" + +#: ../catfish/CatfishWindow.py:1104 +#, python-format +msgid "" +"Are you sure that you want to \n" +"permanently delete \"%s\"?" +msgstr "" + +#: ../catfish/CatfishWindow.py:1108 +#, python-format +msgid "" +"Are you sure that you want to \n" +"permanently delete the %i selected files?" +msgstr "" + +#: ../catfish/CatfishWindow.py:1111 +msgid "If you delete a file, it is permanently lost." +msgstr "" + +#: ../catfish/CatfishWindow.py:1134 +msgid "Filename" +msgstr "" + +#: ../catfish/CatfishWindow.py:1136 +msgid "Size" +msgstr "" + +#: ../catfish/CatfishWindow.py:1138 +msgid "Location" +msgstr "" + +#: ../catfish/CatfishWindow.py:1140 +msgid "Modified" +msgstr "" + +#: ../catfish/CatfishWindow.py:1150 +msgid "Preview" +msgstr "" + +#: ../catfish/CatfishWindow.py:1158 +msgid "Details" +msgstr "" + +#: ../catfish/CatfishWindow.py:1331 +msgid "Today" +msgstr "" + +#: ../catfish/CatfishWindow.py:1333 +msgid "Yesterday" +msgstr "" + +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 +msgid "No files found." +msgstr "" + +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 +msgid "1 file found." +msgstr "" + +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 +#, python-format +msgid "%i files found." +msgstr "" + +#: ../catfish/CatfishWindow.py:1421 +msgid "bytes" +msgstr "" + +#: ../catfish/CatfishWindow.py:1556 +#, python-format +msgid "Searching for \"%s\"" +msgstr "" + +#: ../catfish/CatfishWindow.py:1558 +msgid "Searching…" +msgstr "" + +#: ../catfish/CatfishWindow.py:1637 +#, python-format +msgid "Search results for \"%s\"" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" diff -Nru catfish-1.0.2/po/nl.po catfish-1.2.2/po/nl.po --- catfish-1.0.2/po/nl.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/nl.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2014-02-05 22:17+0000\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-09-05 09:16+0000\n" "Last-Translator: Pjotr12345 \n" "Language-Team: Dutch \n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-09-06 07:24+0000\n" +"X-Generator: Launchpad (build 17196)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Catfish bestandenzoeker" @@ -30,291 +29,303 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish is een veelzijdig gereedschap voor het zoeken van bestanden." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Aangepast tijdsbestek" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Ga naar vandaag" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Begindatum" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Einddatum" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Aangepast bestandtype" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Kies bestaand mimetype" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Voer bestandextensies in" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Exacte overeenkomst" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Verborgen bestanden" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "Volledige _tekst doorzoeken" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "Toon de _geavanceerde instellingen" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "Zoekindex bijwerken..." -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "Over" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Openen" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Toon in bestandbeheerder" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "Locatie kopiëren" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "Op_slaan als..." + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Verwijderen" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Kies een map" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Voer zoektermen in en druk op ENTER" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "Compacte lijst" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "Miniaturen" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "Bijwerken" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" +"De gegevensbank met zoekgegevens is ouder dan zeven dagen. Nu bijwerken?" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Elk tijdstip" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Deze week" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Aangepast" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Aangepast" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Documenten" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Mappen" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Afbeeldingen" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Muziek" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Video's" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Toepassingen" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Overig" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Bestandtype" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Aangepast tijdsbestek" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Ga naar vandaag" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Begindatum" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Einddatum" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Aangepast bestandtype" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Kies bestaand mimetype" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Voer bestandextensies in" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "_Openen" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Toon in bestandbeheerder" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "Locatie kopiëren" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "Op_slaan als..." - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "_Verwijderen" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Werk de zoekindex bij" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "Gegevensbank met zoekgegevens bijwerken" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Ontgrendelen" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Werk zoekindex bij" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "Gegevensbank:" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Om accurate resultaten te geven, moet de gegevensbank van locate " -"worden ververst.\n" -"Dit vereist sudo-rechten (beheerder)." +msgid "Updated:" +msgstr "Bijgewerkt:" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Bezig met bijwerken van gegevensbank..." +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "Gegevensbank met zoekgegevens bijwerken" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Gereed." +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" +"Voor snellere zoekresultaten dient u de gegevensbank met zoekgegevens te " +"verversen.\n" +"Deze ingreep vergt beheerdersbevoegdheid." + +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "Gebruik: %prog [opties] pad zoekopdracht" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" -msgstr "Toon foutopsporingsmeldingen (-vv spoort ook fouten op in catfish_lib)" +msgstr "" +"Toon foutopsporingsmeldingen (-vv spoort ook fouten op in catfish_lib)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Grote pictogrammen gebruiken" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Miniaturen gebruiken" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Tijd weergeven in ISO-opmaak" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Zoeken in map PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "FILEMAN gebruiken als bestandbeheerder" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "WRAPPER gebruiken om bestanden te openen" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Alleen exacte overeenkomst weergeven" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Verborgen bestanden meenemen" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Volledige tekst doorzoeken" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" +"Wanneer pad en zoekopdracht zijn aangeleverd: begin met zoeken wanneer de " +"toepassing wordt getoond." + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (ongeldige codering)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "Nooit" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "Er is een fout opgetreden bij het bijwerken van de gegevensbank." + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Authenticatie is mislukt." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Gegevensbank van Locate is met succes bijgewerkt." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Er trad een fout op bij het bijwerken van locatedb." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Gebruiker brak authenticatie af." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Zoektermen wissen" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish kon de standaard-bestandbeheerder niet vinden." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "Authenticatie geannuleerd." + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "De gegevensbank met zoekgegevens is met succes bijgewerkt." + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "Aan het bijwerken…" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "Voer zoektermen in en druk op Enter om te beginnen." + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Staak zoektocht" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -"Catfish kon de standaardtoepassing niet vinden om het bestand te openen." +"Doorzoeking is gaande...\n" +"Druk op de knop Annuleren of op de Esc-toets om te stoppen." + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "Begin doorzoeking" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "‘%s’ kon niet geopend worden." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "'%s' kon niet opgeslagen worden." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "'%s' kon niet gewist worden." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "'%s' opslaan als..." -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -323,7 +334,7 @@ "Weet u zeker dat u '%s' \n" "blijvend wil verwijderen?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -332,76 +343,226 @@ "Weet u zeker dat u de %i gekozen \n" "bestanden blijvend wil verwijderen?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Als u een bestand verwijdert, is het voorgoed verloren." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Bestandnaam" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Grootte" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Locatie" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "Aangepast" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Voorbeeldweergave" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "Bijzonderheden" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "Vandaag" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "Gisteren" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Geen bestanden gevonden." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "1 bestand gevonden." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "%i bestanden gevonden." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Aan het zoeken naar '%s'" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Aan het zoeken..." -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Staak zoektocht" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Zoekresultaten voor ‘%s’" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "Wachtwoord vereist" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "Onjuist wachtwoord.... Probeer het a.u.b. opnieuw." + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "Wachtwoord:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "Annuleren" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "OK" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"Voer uw wachtwoord in\n" +"om beheerstaken uit te\n" +"voeren." + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"De toepassing '%s' laat u\n" +"essentiële delen van uw\n" +"systeem wijzigen." + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "Flexibel gereedschap voor het zoeken van bestanden" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" +"Catfish is een klein, snel, en krachtig hulpmiddel voor het (door)zoeken van " +"bestanden. Met een minimale gebruikersschil die de nadruk legt op " +"resultaten, helpt het gebruikers om de bestanden te vinden die ze nodig " +"hebben, zonder een bestandbeheerder. Met krachtige filters zoals " +"wijzigingsdatum, bestandtype en bestandinhoud, zijn gebruikers niet langer " +"afhankelijk van de bestandbeheerder of van organisatorische vaardigheden." + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" +"Deze uitgave herstelt een regressiefout waardoor meerdere zoektermen niet " +"langer werden ondersteund. Er wordt nu een InfoBalk getoond wanneer de " +"gegevensbank met zoekgegevens verouderd is, en de dialoogschermpjes die " +"worden gebruikt om de gegevensbank bij te werken, zijn verbeterd." + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" +"Deze uitgave herstelt twee fouten waardoor 'locate' niet juist uitgevoerd " +"werd en verbetert de omgang met ontbrekende symbolische pictogrammen." + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" +"Deze stabiele uitgave heeft de betrouwbaarheid van het dialoogscherm voor " +"het wachtwoord verbeterd, ongebruikte code opgeruimd, en mogelijke problemen " +"met de selectie van lijst en element verholpen." + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" +"Deze uitgave heeft een mogelijk veiligheidsprobleem hersteld inzake " +"programma-opstart en heeft een regressiefout hersteld betreffende het " +"selecteren van meerdere elementen." + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" +"De eerste uitgave in de 1.0.x-reeks introduceerde een opgefriste " +"gebruikersschil en herstelde een aantal oude fouten. Verbeteringen inzake de " +"standaardrechten elimineerde een aantal waarschuwingen bij het verpakken " +"voor distributies. Toegankelijkheid werd vergroot doordat alle tekenreeksen " +"vertaalbaar zijn gemaakt en doordat versnellingstoetsen voor het toetsenbord " +"zijn verbeterd." + #~ msgid "Last modified" #~ msgstr "Laatst bewerkt" + +#~ msgid "Update Search Index" +#~ msgstr "Werk de zoekindex bij" + +#~ msgid "Done." +#~ msgstr "Gereed." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Er trad een fout op bij het bijwerken van locatedb." + +#~ msgid "Clear search terms" +#~ msgstr "Zoektermen wissen" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Voer zoektermen in en druk op ENTER" + +#~ msgid "Update Search Index" +#~ msgstr "Werk zoekindex bij" + +#~ msgid "Updating database…" +#~ msgstr "Bezig met bijwerken van gegevensbank..." + +#~ msgid "User aborted authentication." +#~ msgstr "Gebruiker brak authenticatie af." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "" +#~ "Catfish kon de standaardtoepassing niet vinden om het bestand te openen." + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Om accurate resultaten te geven, moet de gegevensbank van locate " +#~ "worden ververst.\n" +#~ "Dit vereist sudo-rechten (beheerder)." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish kon de standaard-bestandbeheerder niet vinden." + +#~ msgid "Locate database updated successfully." +#~ msgstr "Gegevensbank van Locate is met succes bijgewerkt." diff -Nru catfish-1.0.2/po/pl.po catfish-1.2.2/po/pl.po --- catfish-1.0.2/po/pl.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/pl.po 2014-09-21 21:34:50.000000000 +0000 @@ -1,24 +1,23 @@ # Polish translation for catfish-search # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the catfish-search package. -# Piotr Sokół ,2012, 2013. +# Piotr Sokół , 2012, 2013, 2014. # msgid "" msgstr "" -"Project-Id-Version: catfish-search 0.6.0\n" +"Project-Id-Version: catfish-search 1.0.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2014-03-05 18:41+0000\n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-08-22 06:37+0000\n" "Last-Translator: Piotr Strębski \n" "Language-Team: polski <>\n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-06 06:10+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-08-23 07:07+0000\n" +"X-Generator: Launchpad (build 17163)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Wyszukiwarka plików Catfish" @@ -30,376 +29,505 @@ msgid "Catfish is a versatile file searching tool." msgstr "Umożliwia kompleksowe wyszukiwanie plików." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Własny zakres czasu" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Przejdź do bieżącej daty" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Data początkowa" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Data końcowa" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Własny typ pliku" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Wybranie istniejącego typu mime" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Wprowadzenie rozszerzenia pliku" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" -msgstr "_Dokładny wynik" +msgstr "_Dokładne dopasowanie" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Ukryte pliki" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" -msgstr "_Szukanie pełnotekstowe" +msgstr "Wyszukiwanie p_ełnego tekstu" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" -msgstr "_Pokaż ustawienia zaawansowane" +msgstr "Ustawienia _zaawansowane" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" -msgstr "_Aktualizuj indeks szukania..." +msgstr "Z_aktualizuj indeks wyszukiwania…" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" -msgstr "O _programie" +msgstr "_O programie" + +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Otwórz" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Wyświetl w _menedżerze plików" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "S_kopiuj położenie" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Zapisz jako..." + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Usuń" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" -msgstr "Wybierz katalog" - -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Wyszukuje wyrażenie po wciśnięciu klawisza ENTER" +msgstr "Wybór katalogu" -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" -msgstr "Lista kompaktowa" +msgstr "Wyświetla wyniki na zwartej liście" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" -msgstr "Miniatury" +msgstr "Wyświetla wyniki jako miniatury" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "Aktualizuj" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "Baza danych wyszukiwania ma ponad 7 dni. Czy ją zaktualizować?" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Kiedykolwiek" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "W tym tygodniu" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Własny" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Czas modyfikacji" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Dokumenty" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Katalogi" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Obrazy" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Muzyka" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Wideo" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Programy" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Inny" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Typ pliku" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Własny zakres czasu" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Przejdź do bieżącej daty" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Data początkowa" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Data końcowa" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Własny typ pliku" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Wybranie istniejącego typu mime" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Wprowadzenie rozszerzenia pliku" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "_Otwórz" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Pokaż w _menedżerze plików" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "S_kopiuj położenie" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "_Zapisz jako..." - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "_Usuń" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Uaktualnianie indeksu wyszukiwania" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "Aktualizacja bazy danych wyszukiwania" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Odblokuj" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Uaktualnianie indeksu wyszukiwania" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "Baza danych:" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Aby zapewnić trafne wyniki wyszukiwania, należy uaktualnić lokalną " -"bazę danych.\n" -"Do tego celu wymagane są uprawnienia administratora." +msgid "Updated:" +msgstr "Zaktualizowano:" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "Aktualizacja bazy danych wyszukiwania" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Uaktualnianie bazy danych…" +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Zakończono." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" "Wypisuje komunikaty diagnozowania błędów (opcje -vv uwzględnia również " "catfish_lib)" -#: ../catfish/__init__.py:40 -msgid "Use large icons" -msgstr "Użyj dużych ikon" - #: ../catfish/__init__.py:42 -msgid "Use thumbnails" -msgstr "Użyj miniatur" +msgid "Use large icons" +msgstr "Używa dużych ikon" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" -msgstr "Wyświetl czas w formacie ISO" +msgid "Use thumbnails" +msgstr "Używa miniatur" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Szukaj w katalogu PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Użyj FILEMAN jako menedżera plików" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Użyj WRAPPER do otwarcia plików" +msgid "Display time in ISO format" +msgstr "Wypisuje czas w formacie ISO" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" -msgstr "Przeprowadź dokładne dopasowanie" +msgstr "Przeprowadza dokładne dopasowanie" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" -msgstr "Uwzględnij pliki ukryte" +msgstr "Uwzględnia pliki ukryte" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" -msgstr "Przeprowadź szukanie pełnotekstowe" +msgstr "Wyszukuje pełny tekst" + +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" -msgstr "%s (błędne kodowanie)" +msgstr "%s (nieprawidłowe kodowanie)" + +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "Nigdy" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "Wystąpił błąd podczas aktualizacji bazy danych." + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Nieudane uwierzytelnianie." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Zaktualizowano bazę nazw plików." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Wystąpił błąd podczas uaktualniania bazy nazw plików." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Użytkownik anulował uwierzytelnianie." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Czyści kryteria wyszukiwania" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish nie może odnaleźć domyślnego menedżera plików." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "Anulowano uwierzytelnianie." + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "Baza danych wyszukiwania została pomyślnie zaktualizowana." + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "Aktualizowanie..." + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "Wpisz wyszukiwane słowa i wciśnij Enter, aby rozpocząć." + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Zatrzymuje wyszukiwanie" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -"Catfish nie może odnaleźć domyślonego otwierającego programu pośredniczącego." +"Wyszukiwanie w toku...\n" +"Naciśnij przycisk Anuluj, lub klawisz Escape, aby przerwać." + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "Rozpocznij wyszukiwanie" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "Nie można otworzyć „%s”." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "Nie można zapisać „%s”." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "Nie można usunąć „%s”." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Zapisz „%s” jako…" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "Usunąć trwale „%s”?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "Usunąć trwale %i zaznaczonych plików?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Plik zostanie nieodwracalnie usunięty." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Nazwa pliku" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Rozmiar" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Położenie" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "Zmodyfikowano" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Podgląd" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "Szczegóły" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "Dzisiaj" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "Wczoraj" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Nie odnaleziono plików." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." -msgstr "Znaleziono 1 plik." +msgstr "Odnaleziono 1 plik." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "Odnaleziono %i plików." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "bajtów" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Wyszukiwanie wyrażenia „%s”" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Wyszukiwanie…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Zatrzymuje wyszukiwanie" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Wyniki wyszukiwania wyrażenia „%s”" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "Wymagane hasło" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "Nieprawidłowe hasło. Proszę spróbować ponownie." + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "Hasło:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "Anuluj" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "OK" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"Proszę wprowadzić hasło, aby\n" +"wykonać zadania administracyjne." + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"Program „%s” pozwala na\n" +"modyfikowanie istotnych elementów systemu." + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + #~ msgid "Last modified" #~ msgstr "Czas modyfikacji" + +#~ msgid "Clear search terms" +#~ msgstr "Czyści kryteria wyszukiwania" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Wyszukuje wyrażenie po wciśnięciu klawisza ENTER" + +#~ msgid "Done." +#~ msgstr "Zakończono." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Wystąpił błąd podczas uaktualniania bazy nazw plików." + +#~ msgid "Update Search Index" +#~ msgstr "Uaktualnianie indeksu wyszukiwania" + +#~ msgid "Update Search Index" +#~ msgstr "Uaktualnianie indeksu wyszukiwania" + +#~ msgid "Updating database…" +#~ msgstr "Uaktualnianie bazy danych…" + +#~ msgid "User aborted authentication." +#~ msgstr "Użytkownik anulował uwierzytelnianie." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish nie może odnaleźć domyślnego menedżera plików." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "" +#~ "Catfish nie może odnaleźć domyślonego otwierającego programu pośredniczącego." + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Aby zapewnić trafne wyniki wyszukiwania, należy uaktualnić bazę danych " +#~ "wyszukiwania.\n" +#~ "Do tego celu wymagane są uprawnienia administratora." + +#~ msgid "Locate database updated successfully." +#~ msgstr "Uaktualniono bazę nazw plików." diff -Nru catfish-1.0.2/po/POTFILES.in catfish-1.2.2/po/POTFILES.in --- catfish-1.0.2/po/POTFILES.in 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/POTFILES.in 2014-09-21 21:34:50.000000000 +0000 @@ -32,3 +32,7 @@ catfish_lib/__init__.py catfish_lib/helpers.py catfish_lib/Window.py +catfish_lib/SudoDialog.py + +# XML Files +[type: gettext/xml]data/appdata/catfish.appdata.xml.in \ No newline at end of file diff -Nru catfish-1.0.2/po/pt_BR.po catfish-1.2.2/po/pt_BR.po --- catfish-1.0.2/po/pt_BR.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/pt_BR.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,21 +6,20 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2013-09-04 16:02+0000\n" -"Last-Translator: Rodrigo Zimmermann \n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-09-05 17:30+0000\n" +"Last-Translator: Eduardo Júnio S. Macêdo \n" "Language-Team: Brazilian Portuguese \n" -"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-09-06 07:24+0000\n" +"X-Generator: Launchpad (build 17196)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" -msgstr "Catfish Pesquisar Arquivo" +msgstr "Pesquisador de arquivos Catfish" #: ../catfish.desktop.in.h:2 msgid "Search the file system" @@ -30,290 +29,301 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish é uma ferramenta de busca de arquivos versátil." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Intervalo de tempo personalizado" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Ir para Hoje" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Data Inicial" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Data Final" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Tipo de arquivo personalizado" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Selecione mimetype existente" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Digite a extensão do arquivo" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Correspondência Correta" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Arquivos Ocultos" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Busca Completa" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_Mostrar Opções Avançadas" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "_Atualizar Indice da Pesquisa" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" -msgstr "" +msgstr "_Sobre" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Abrir" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Mostrar no Gerenciador de Arquivos" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Copiar Localização" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Salvar como..." + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Deletar" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Selecione um diretório" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Digite os termos de pesquisa e pressione ENTER" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" -msgstr "" +msgstr "Lista compacta" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" -msgstr "" +msgstr "Miniaturas" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "Atualizar" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "A base de dados de pesquisa tem mais de 7 dias. Atualizar agora?" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Qualquer horário" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Esta semana" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Personalizado" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Modificado" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Documentos" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Pastas" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Imagens" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Música" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Vídeos" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Aplicativos" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Outro" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Tipo de Arquivo" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Intervalo de tempo personalizado" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Ir para Hoje" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Data Inicial" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Data Final" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Tipo de Arquivo Personalizado" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Selecione mimetype existente" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Digite a extensão do arquivo" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Mostrar no Gerenciador de Arquivos" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Copiar Localização" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Atualizar Índice de Pesquisa" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "Atualizar a base de dados de pesquisa" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Desbloquear" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Atualizar Indice de Pesquisa" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "Base de dados:" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Para fornecer resultados precisos, o locate da base de dados precisa " -"ser atualizada.\n" -"Isso requer privilégios de sudo (admin)." +msgid "Updated:" +msgstr "Atualizado:" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Atualizando base de dados..." +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "Atualizar a base de dados de pesquisa" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Concluído." +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" +"Para rápidos resultados de pesquisa, a base de dados precisa estar " +"atualizada.\n" +"Essa ação requer previlégios administrativos." + +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "Uso: %prog [opções] caminho consulta" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Mostrar mensagens de debug (-vv debugs catfish_lib também)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Usar icones grandes" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Usar miniaturas" -#: ../catfish/__init__.py:44 -msgid "Display time in ISO format" -msgstr "" - -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Procurar na pasta PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Usar FILEMAN como gerenciador de arquivos" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "" +msgid "Display time in ISO format" +msgstr "Exibir a hora no formato ISO" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" -msgstr "" +msgstr "Consulta exata" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Incluir arquivos ocultos" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" +msgstr "Consultar texto completo" + +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." msgstr "" +"Se o caminho e a consulta foi fornecida, iniciar a procura quando o programa " +"for inicializado." #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" -msgstr "" +msgstr "%s (codificação inválida)" + +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "Nunca" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "Ocorreu um erro ao atualizar a base de dados." -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Falha na autenticação." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Banco de dados de localização atualizado com sucesso." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Ocorreu um erro durante a atualização do locatedb." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Autenticação de usuário abortada." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Limpar os termos de pesquisa" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish não encontrou o gerenciador de arquivos padrão." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish não encontrou aplicativo compatível com este arquivo." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "Autenticação cancelada." + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "Base de dados de procura atualizada com sucesso." + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "Atualizando..." + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "Digite os termos de pesquisa e pressione Enter para começar." -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Parar Busca" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" +"Pesquisa em progresso...\n" +"Pressione o botão cancelar ou a tecla Escape para parar." + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "Começar a pesquisa" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "\"%s\" não pôde ser aberto." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "\"%s\" não pôde ser salvo." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" não pôde ser deletado." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Salvar \"%s\" como..." -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -322,7 +332,7 @@ "Tem certeza que deseja \n" "deletar permanentemente \"%s\"?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -331,76 +341,221 @@ "Tem certeza que deseja \n" "deletar permanentemente os %i arquivos selecionados?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Se você remover um arquivo, ele será perdido permanentemente." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Nome do arquivo" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Tamanho" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Localização" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" -msgstr "" +msgstr "Modificado" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Visualização" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" -msgstr "" +msgstr "Detalhes" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" -msgstr "" +msgstr "Hoje" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" -msgstr "" +msgstr "Ontem" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Nenhum arquivo encontrado." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "1 arquivo encontrado." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "%i arquivos encontrados." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" -msgstr "" +msgstr "bytes" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Procurando por \"%s\"" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Pesquisando…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Parar Busca" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Resultados da pesquisa para \"%s\"" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "Senha necessária" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "Senha incorreta... tente novamente." + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "Senha:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "Cancelar" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "OK" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"Insira sua senha para\n" +"realizar tarefas administrativas." + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"A aplicação '%s' permite que você\n" +"modifique partes essenciais do sistema." + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "Ferramenta de busca de arquivos versátil" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" +"Catfish é um pequeno, rápido e poderoso utilitário de busca de arquivos. Com " +"uma interface minimalista, com ênfase em resultados, que ajuda os usuários a " +"encontrar os arquivos que necessitam sem um gerenciador de arquivos. Com " +"poderosos filtros, tais como data de modificação, tipo de arquivo e conteúdo " +"dos arquivos, os usuários não serão mais dependentes do gerenciador de " +"arquivos ou habilidades de organização." + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" +"Esta versão corrige uma regressão onde vários termos de pesquisa não eram " +"mais suportados. Uma barra de informações é exibida quando a base de dados " +"de pesquisa está desatualizada e os diálogos usados ​​para atualizar a base " +"de dados foram melhorados." + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" +"Esta versão corrige duas questões em que localizar não seria executado " +"corretamente e melhora a manipulação da falta ícones simbólicos." + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" +"Esta versão estável melhorou a confiabilidade do diálogo de senha, limpou " +"código não utilizado, e corrige possíveis problemas com a lista e seleção de " +"itens." + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" +"Esta versão corrigiu um problema de segurança com a inicialização do " +"programa e corrige uma regressão com a seleção de vários itens." + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" +"O primeiro lançamento da série 1.0.x introduziu uma interface renovada e " +"corrige uma série de bugs de longa data. Melhorias para as permissões padrão " +"eliminou uma série de avisos quando empacotado para as distribuições. A " +"acessibilidade foi reforçada como todas as cordas foram feitas traduzível e " +"aceleradores de teclado foram melhorados." + #~ msgid "Last modified" #~ msgstr "Última modificação" + +#~ msgid "Update Search Index" +#~ msgstr "Atualizar Índice de Pesquisa" + +#~ msgid "Done." +#~ msgstr "Concluído." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Ocorreu um erro durante a atualização do locatedb." + +#~ msgid "Clear search terms" +#~ msgstr "Limpar os termos de pesquisa" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Digite os termos de pesquisa e pressione ENTER" + +#~ msgid "Locate database updated successfully." +#~ msgstr "Banco de dados de localização atualizado com sucesso." + +#~ msgid "User aborted authentication." +#~ msgstr "Autenticação de usuário abortada." + +#~ msgid "Update Search Index" +#~ msgstr "Atualizar Indice de Pesquisa" + +#~ msgid "Updating database…" +#~ msgstr "Atualizando base de dados..." + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Para fornecer resultados precisos, o locate da base de dados precisa " +#~ "ser atualizada.\n" +#~ "Isso requer privilégios de sudo (admin)." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish não encontrou o gerenciador de arquivos padrão." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish não encontrou aplicativo compatível com este arquivo." diff -Nru catfish-1.0.2/po/pt.po catfish-1.2.2/po/pt.po --- catfish-1.0.2/po/pt.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/pt.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" -"PO-Revision-Date: 2013-11-07 11:48+0000\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-09-09 11:47+0000\n" "Last-Translator: David Pires \n" "Language-Team: Portuguese \n" -"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-09-10 07:50+0000\n" +"X-Generator: Launchpad (build 17196)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Pesquisador de ficheiros Catfish" @@ -30,291 +29,301 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish é uma ferramenta versátil de pesquisa de ficheiros." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Intervalo de tempo personalizado" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Ir para Hoje" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Data inicial" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "b>Data final" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Tipo de ficheiro personalizado" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Selecione mimetype existente" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Insira as extensões do ficheiro" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Correspondência exata" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Ficheiros ocultos" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Pesquisa de texto completo" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_Mostrar configurações avançadas" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "_Atualizar índice de pesquisa ..." -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" -msgstr "" +msgstr "_Sobre" + +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Abrir" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Mostrar no _Gestor de ficheiros" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Copiar localização" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Guardar como..." -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Apagar" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Selecione um diretório" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Insira os termos de pesquisa e pressione ENTER" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" -msgstr "" +msgstr "Lista Compacta" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" -msgstr "" +msgstr "Miniaturas" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "Atualizar" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "A base de dados de pesquisa tem mais de 7 dias. Atualizar agora?" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Em qualquer altura" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Esta semana" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Personalizado" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Modificado" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Documentos" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Pastas" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Imagens" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Musica" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Vídeos" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Aplicações" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Outros" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Tipo de ficheiro" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Intervalo de tempo personalizado" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Ir para Hoje" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Data inicial" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "b>Data final" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Tipo de ficheiro personalizado" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Selecione mimetype existente" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Insira as extensões do ficheiro" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Mostrar no _Gestor de ficheiros" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Copiar localização" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Atualizar índice de pesquisa" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "Atualizar base de dados de pesquisa" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Desbloquear" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Atualizar índice de pesquisa" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "Base de dados:" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Para fornecer resultados precisos, a base de dados locate precisa ser " -"atualizada.\n" -"Isso requer privilégios de sudo (administrador)." +msgid "Updated:" +msgstr "Atualizada:" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Atualização da base de dados ..." +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "big>Atualizar a Base de Dados de Pesquisa" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Concluído" +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" +"Para resultados de pesquisa mais rápidos, a base de dados de pesquisa " +"precisa de ser atualizada.\n" +"Esta ação requer privilégios administrativos." + +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "Uso: %prog [opções] consulta de caminho" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Mostrar mensagens de depuração (-vv debugs catfish_lib também)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Usar ícones grandes" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Usar miniaturas" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Exibir hora no formato ISO" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Pesquisar na pasta PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Usar FILEMAN como gestor de ficheiros" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Usar WRAPPER para abrir ficheiros" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Executar correspondência exata" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Incluir ficheiros ocultos" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Executar pesquisa de texto completo" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" +"Se o caminho e consulta forem fornecidos, começar a pesquisar quando a " +"aplicação for exibida." + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (codificação inválida)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "Nunca" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "Ocorreu um erro durante a atualização da base de dados." + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Falha na autenticação." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Base de dados locate actualizada com sucesso." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Ocorreu um erro durante a atualização de locatedb." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Autenticação abortada pelo utilizador." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Limpar termos de pesquisa" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish não conseguiu encontrar o gestor de ficheiros predefinido." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "Autenticação cancelada." + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "Base de dados de pesquisa atualizada com sucesso." + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "A actualizar..." + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "Insira os termos de pesquisa e pressione Enter para começar." + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Parar pesquisa" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -"Catfish não conseguiu encontrar a aplicação compatível com este ficheiro." +"Pesquisa em progresso ...\n" +"Pressione o botão Cancelar ou a tecla Esc para parar." -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "Iniciar Pesquisa" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "\"%s\" não pôde ser aberto." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "\"%s\" não pôde ser guardado." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" não pôde ser eliminado." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Guardar \"%s\" como..." -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -323,7 +332,7 @@ "Tem a certeza que deseja \n" "eliminar permanentemente \"%s\"?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -332,76 +341,223 @@ "Tem a certeza que deseja \n" "eliminar permanentemente os %i ficheiros selecionados?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Se eliminar um ficheiro, ele será permanentemente perdido." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Nome do ficheiro" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Tamanho" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Localização" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" -msgstr "" +msgstr "Modificado" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Pré-visualização" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" -msgstr "" +msgstr "Detalhes" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" -msgstr "" +msgstr "Hoje" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" -msgstr "" +msgstr "Ontem" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Nenhum ficheiro encontrado." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "1 ficheiro encontrado." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "%i ficheiros encontrados." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" -msgstr "" +msgstr "bytes" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Pesquisar por \"%s\"" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "A pesquisar..." -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Parar pesquisa" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Resultados da pesquisa por \"%s\"" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "Necessário senha" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "Senha incorreta... tente novamente." + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "Senha:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "Cancelar" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "OK" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" +"Inserir a sua senha para\n" +"executar tarefas administrativas." + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" +"A aplicação '%s' permite-lhe\n" +"modificar partes essenciais do seu sistema." + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "Instrumento de pesquisa de ficheiros versátil" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" +"O Catfish é um pequeno, rápido, e poderoso utilitário de pesquisa de " +"ficheiros. Com uma interface minimalista e com ênfase nos resultados, o que " +"ajuda os utilizadores a encontrar os ficheiros que necessitam sem um gestor " +"de ficheiros. Com poderosos filtros tal como data de modificação, tipo de " +"ficheiro e conteúdo dos ficheiros, os utilizadoress não serão mais " +"dependentes do gestor de ficheiros ou de habilidades de organização." + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" +"Esta versão corrige uma regressão onde vários termos de pesquisa não eram " +"mais suportados. Uma barra de informações é agora exibida quando a base de " +"dados de pesquisa está desatualizada, e os diálogos utilizados para a " +"atualização da base de dados foram melhorados." + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" +"Esta versão corrige duas problemas em que o localizar não seria executado " +"corretamente e melhora a manipulação da falta de ícones simbólicos." + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" +"Esta versão estável melhorou a confiabilidade do diálogo de senha, limpou " +"código não utilizado e fixa potenciais problemas com a lista e seleção de " +"itens." + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" +"Esta versão corrigiu um problema de segurança com a inicialização do " +"programa e fixa uma regressão com a seleção de vários itens." + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" +"O primeiro lançamento da série 1.0.x introduziu uma interface renovada e " +"fixa um número de erros de longa data. Melhorias para as permissões padrão " +"eliminaram uma série de avisos quando construindo pacotes para " +"distribuições. A acessibilidade foi reforçada e todas as sequências de " +"caracteres foram tornadas traduzíveis e os aceleradores de teclado foram " +"melhorados." + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Insira os termos de pesquisa e pressione ENTER" + +#~ msgid "Done." +#~ msgstr "Concluído" + +#~ msgid "Update Search Index" +#~ msgstr "Atualizar índice de pesquisa" + +#~ msgid "Update Search Index" +#~ msgstr "Atualizar índice de pesquisa" + +#~ msgid "Updating database…" +#~ msgstr "Atualização da base de dados ..." + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Para fornecer resultados precisos, a base de dados locate precisa ser " +#~ "atualizada.\n" +#~ "Isso requer privilégios de sudo (administrador)." + +#~ msgid "User aborted authentication." +#~ msgstr "Autenticação abortada pelo utilizador." + +#~ msgid "Clear search terms" +#~ msgstr "Limpar termos de pesquisa" + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Ocorreu um erro durante a atualização de locatedb." + +#~ msgid "Locate database updated successfully." +#~ msgstr "Base de dados locate actualizada com sucesso." + #~ msgid "Last modified" #~ msgstr "Última modificação" + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish não conseguiu encontrar o gestor de ficheiros predefinido." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "" +#~ "Catfish não conseguiu encontrar a aplicação compatível com este ficheiro." diff -Nru catfish-1.0.2/po/ru.po catfish-1.2.2/po/ru.po --- catfish-1.0.2/po/ru.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/ru.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2014-02-15 14:42+0000\n" "Last-Translator: Rodion R. \n" "Language-Team: Russian \n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-16 06:37+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Поиск файлов Catfish" @@ -30,290 +29,294 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish — универсальный инструмент для поиска файлов." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Выберите период времени" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Сегодня" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Начальная дата" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Конечная дата" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Выберите тип файла" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Выберите существующий MIME-тип" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Введите расширение файла" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Точное совпадение" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Скрытые файлы" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Полнотекстовый поиск" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "Показать _расширенные настройки" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "Обновить поисковый _индекс…" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "_О программе" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Открыть" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Показать в _файловом менеджере" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Копировать адрес" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Сохранить как..." + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Удалить" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Выберите каталог" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Введите поисковый запрос и нажмите ENTER" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "Список" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "Миниатюры" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Любое время" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Эта неделя" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Указать период" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Изменён" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Документы" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Папки" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Изображения" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Музыка" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Видео" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Приложения" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Другое" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Тип файла" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Выберите период времени" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Сегодня" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Начальная дата" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Конечная дата" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Выберите тип файла" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Выберите существующий MIME-тип" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Введите расширение файла" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "_Открыть" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Показать в _файловом менеджере" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Копировать адрес" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "_Сохранить как..." - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "_Удалить" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Обновить поисковый индекс" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Разблокировать" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Обновлениe поискового индекса" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"База данных locate нуждается в обновлении, чтобы обеспечить точные " -"результаты.\n" -"Необходимы права администратора (sudo)." +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Обновление базы данных…" +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Готово." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Показывать сообщения отладки (-vv также отлаживает catfish_lib)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Использовать большие значки" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Использовать эскизы" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Отображать время в формате ISO" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Искать в папке PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Использовать FILEMAN как файловый менеджер" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Использовать WRAPPER для открытия файлов" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Точное совпадение" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Искать в скрытых файлах" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Выполнять полнотекстовый поиск" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (неверная кодировка)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Ошибка авторизации." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "База данных locate успешно обновлена." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Возникла ошибка при обновлении locatedb." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Пользователь прервал авторизацию." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Очистить поисковый запрос" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish не нашёл файловый менеджер по умолчанию." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish не нашёл приложение, открывающее файл по умолчанию." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Остановить Поиск" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "\"%s\" невозможно открыть." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "«%s» не может быть сохранён." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "«%s» не может быть удалён." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Сохранить «%s» как…" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -322,7 +325,7 @@ "Вы уверены, что хотите \n" "безвозвратно удалить «%s»?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -331,76 +334,195 @@ "Вы уверены, что хотите \n" "безвозвратно удалить %i выделенных файла (-ов)?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Если вы удалите файл, он будет безвозвратно утерян." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Имя файла" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Размер" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Местонахождение" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "Изменён" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Предпросмотр" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "Детали" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "Cегодня" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "Вчера" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Файлы не найдены." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "Найден 1 файл." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "Найдено файлов: %i." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "байт" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Поиск «%s»" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Поиск…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Остановить Поиск" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Результаты поиска «%s»" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + #~ msgid "Last modified" #~ msgstr "Последнее изменение" + +#~ msgid "Update Search Index" +#~ msgstr "Обновить поисковый индекс" + +#~ msgid "Done." +#~ msgstr "Готово." + +#~ msgid "Clear search terms" +#~ msgstr "Очистить поисковый запрос" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Введите поисковый запрос и нажмите ENTER" + +#~ msgid "Locate database updated successfully." +#~ msgstr "База данных locate успешно обновлена." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Возникла ошибка при обновлении locatedb." + +#~ msgid "Update Search Index" +#~ msgstr "Обновлениe поискового индекса" + +#~ msgid "Updating database…" +#~ msgstr "Обновление базы данных…" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "База данных locate нуждается в обновлении, чтобы обеспечить точные " +#~ "результаты.\n" +#~ "Необходимы права администратора (sudo)." + +#~ msgid "User aborted authentication." +#~ msgstr "Пользователь прервал авторизацию." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish не нашёл файловый менеджер по умолчанию." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish не нашёл приложение, открывающее файл по умолчанию." diff -Nru catfish-1.0.2/po/si.po catfish-1.2.2/po/si.po --- catfish-1.0.2/po/si.po 1970-01-01 00:00:00.000000000 +0000 +++ catfish-1.2.2/po/si.po 2014-09-21 21:34:50.000000000 +0000 @@ -0,0 +1,523 @@ +# Sinhalese translation for catfish-search +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the catfish-search package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: catfish-search\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" +"PO-Revision-Date: 2014-06-15 17:26+0000\n" +"Last-Translator: Poorni \n" +"Language-Team: Sinhalese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" + +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 +msgid "Catfish File Search" +msgstr "කැට් ෆිෂ් ලිපි ගොනු සෙවීම" + +#: ../catfish.desktop.in.h:2 +msgid "Search the file system" +msgstr "ලිපි ගොනු පද්ධතිය සෙවීම" + +#: ../data/ui/AboutCatfishDialog.ui.h:1 +msgid "Catfish is a versatile file searching tool." +msgstr "කැට් ෆිෂ්, විවිධ ලිපි ගොනු සෙවීමේ උපකරණයකි" + +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "භාවිත කාල පරාසය" + +#: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "අද දිනයට යන්න" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "ආරම්භක දිනය" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "අවසාන දිනය" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "ලිපිගොනු වර්ග භාවිතය" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "පවතින අනුකාර වර්ග තෝරා ගැනීම" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "ලිපිගොනු දීර්ඝ කිරීම් ඇතුලත් කිරීම" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 +msgid "_Exact Match" +msgstr "නිවැරදි ගැලපීම" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:13 +msgid "_Hidden Files" +msgstr "සැඟවු ලිපි ගොනු" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:15 +msgid "_Fulltext Search" +msgstr "සම්පුර්ණ අකුරු සෙවීම" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:17 +msgid "_Show Advanced Settings" +msgstr "උසස් පසුතල පෙන්වීම" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:19 +msgid "_Update Search Index…" +msgstr "යාවත්කාලීන දර්ශක සෙවීම" + +#: ../data/ui/CatfishWindow.ui.h:20 +msgid "_About" +msgstr "පිළිබඳ" + +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "විවෘත කරන්න (_O)" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "ලිපිගොනු කළමනාකරු තුල පෙන්වන්න" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_ස්ථානය පිටපත්කරන්න" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "වගේ සුරකින්න" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "කපා ඉවත් කරන්න" + +#: ../data/ui/CatfishWindow.ui.h:28 +msgid "Catfish" +msgstr "කැට් ෆිෂ්" + +#: ../data/ui/CatfishWindow.ui.h:29 +msgid "Select a Directory" +msgstr "නාමාවලියක් තෝරා ගැනීම" + +#: ../data/ui/CatfishWindow.ui.h:30 +msgid "Compact List" +msgstr "ගිවිසුම් ලේඛනය" + +#: ../data/ui/CatfishWindow.ui.h:31 +msgid "Thumbnails" +msgstr "සංක්ෂිප්තයන්" + +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 +msgid "Any time" +msgstr "ඕනෑම වේලාවක" + +#: ../data/ui/CatfishWindow.ui.h:35 +msgid "This week" +msgstr "මේ සතිය" + +#: ../data/ui/CatfishWindow.ui.h:36 +msgid "Custom" +msgstr "භාවිතය" + +#: ../data/ui/CatfishWindow.ui.h:37 +msgid "Modified" +msgstr "විකරණය කළ" + +#: ../data/ui/CatfishWindow.ui.h:38 +msgid "Documents" +msgstr "ලියකියවිලි" + +#: ../data/ui/CatfishWindow.ui.h:39 +msgid "Folders" +msgstr "පත්‍රිකා" + +#: ../data/ui/CatfishWindow.ui.h:40 +msgid "Images" +msgstr "පින්තූර" + +#: ../data/ui/CatfishWindow.ui.h:41 +msgid "Music" +msgstr "සංගීතය" + +#: ../data/ui/CatfishWindow.ui.h:42 +msgid "Videos" +msgstr "වීඩියෝ" + +#: ../data/ui/CatfishWindow.ui.h:43 +msgid "Applications" +msgstr "යෙදුම්" + +#: ../data/ui/CatfishWindow.ui.h:44 +msgid "Other" +msgstr "වෙනත්" + +#: ../data/ui/CatfishWindow.ui.h:45 +msgid "File Type" +msgstr "ලිපිගොනු වර්ගය" + +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:47 +msgid "Unlock" +msgstr "අගුළු හරින්න" + +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:49 +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" + +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" + +#: ../catfish/__init__.py:39 +msgid "Show debug messages (-vv debugs catfish_lib also)" +msgstr "පරිගණක නිදොස් කිරීමේ පණිවුඩ පෙන්වන්න" + +#: ../catfish/__init__.py:42 +msgid "Use large icons" +msgstr "විශාල සංකේතයන් පාවිච්චි කරන්න" + +#: ../catfish/__init__.py:44 +msgid "Use thumbnails" +msgstr "සංක්ෂිප්තයන් භාවිතා කරන්න" + +#: ../catfish/__init__.py:46 +msgid "Display time in ISO format" +msgstr "කාලය ISO ප්‍රමිති ආකෘතියෙන් පෙන්වන්න" + +#: ../catfish/__init__.py:50 +msgid "Perform exact match" +msgstr "නිවැරදිම ගැලපිම ඉටු කරන්න" + +#: ../catfish/__init__.py:52 +msgid "Include hidden files" +msgstr "සැඟවුණු ලිපිගොනු ඇතුලත් කරන්න" + +#: ../catfish/__init__.py:54 +msgid "Perform fulltext search" +msgstr "පූර්ණ වගන්ති සෙවුම් කරන්න" + +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + +#. Translators: this text is displayed next to +#. a filename that is not utf-8 encoded. +#: ../catfish/CatfishWindow.py:85 +#, python-format +msgid "%s (invalid encoding)" +msgstr "%s (අවලංගු කේතීකරණයකි)" + +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 +msgid "Authentication failed." +msgstr "සත්‍ය බවට සහතික කිරීම අසාර්ථකයි." + +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "සෙවීම නවතන්න" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:988 +#, python-format +msgid "\"%s\" could not be opened." +msgstr "\"%s\" විවෘත කල නොහැක" + +#: ../catfish/CatfishWindow.py:1034 +#, python-format +msgid "\"%s\" could not be saved." +msgstr "\"%s\" ප්‍රමාණයක් සුරැකුම් කල නොහැක" + +#: ../catfish/CatfishWindow.py:1059 +#, python-format +msgid "\"%s\" could not be deleted." +msgstr "\"%s\" කැ ප්‍රමාණයක් විනාශ කල නොහැක" + +#: ../catfish/CatfishWindow.py:1069 +#, python-format +msgid "Save \"%s\" as…" +msgstr "\"%s\" ලෙස සුරකින්න" + +#: ../catfish/CatfishWindow.py:1104 +#, python-format +msgid "" +"Are you sure that you want to \n" +"permanently delete \"%s\"?" +msgstr "මෙම \"%s\" සදහටම විනාශ කල යුතු බව ඔබට විශ්වාසද?" + +#: ../catfish/CatfishWindow.py:1108 +#, python-format +msgid "" +"Are you sure that you want to \n" +"permanently delete the %i selected files?" +msgstr "මෙම තෝරාගත් ලිපි ගොනු %i සදහටම විනාශ කල යුතු බව ඔබට විශ්වාසද?" + +#: ../catfish/CatfishWindow.py:1111 +msgid "If you delete a file, it is permanently lost." +msgstr "ඔබ ලිපි ගොනුවක් විනාශ කල හොත්, එය සදහටම නැති වේ." + +#: ../catfish/CatfishWindow.py:1134 +msgid "Filename" +msgstr "ලිපි ගොනු නාමය" + +#: ../catfish/CatfishWindow.py:1136 +msgid "Size" +msgstr "ප්‍රමාණය" + +#: ../catfish/CatfishWindow.py:1138 +msgid "Location" +msgstr "පිහිටීම" + +#: ../catfish/CatfishWindow.py:1140 +msgid "Modified" +msgstr "වෙනස් කළ" + +#: ../catfish/CatfishWindow.py:1150 +msgid "Preview" +msgstr "පූර්ව දර්ශණය" + +#: ../catfish/CatfishWindow.py:1158 +msgid "Details" +msgstr "විස්තර" + +#: ../catfish/CatfishWindow.py:1331 +msgid "Today" +msgstr "අද" + +#: ../catfish/CatfishWindow.py:1333 +msgid "Yesterday" +msgstr "ඊයේ" + +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 +msgid "No files found." +msgstr "ලිපිගොනු ආරම්භ කර නැත" + +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 +msgid "1 file found." +msgstr "1 වන ලිපිගොනුව ආරම්භ කරන්න" + +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 +#, python-format +msgid "%i files found." +msgstr "%i ලිපිගොනුව ආරම්භ කරන්න" + +#: ../catfish/CatfishWindow.py:1421 +msgid "bytes" +msgstr "බයිට" + +#: ../catfish/CatfishWindow.py:1556 +#, python-format +msgid "Searching for \"%s\"" +msgstr "\"%s\" සෙවීම සදහා" + +#: ../catfish/CatfishWindow.py:1558 +msgid "Searching…" +msgstr "සොයමින් පවතී" + +#: ../catfish/CatfishWindow.py:1637 +#, python-format +msgid "Search results for \"%s\"" +msgstr "\"%s\" සදහා ප්‍රතිඵල සොයයි" + +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + +#~ msgid "Done." +#~ msgstr "නිම කළා." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "කැට් ෆිෂ් හට අනාවරණය ලිපි ගොනුවක් සොයා ගත නොහැක" + +#~ msgid "User aborted authentication." +#~ msgstr "භාවිතා කරන්නා විසින් අවසර දීම නැවැත් විය" + +#~ msgid "Clear search terms" +#~ msgstr "සෙවීම් නියමයන් ඉවත් කරන්න" + +#~ msgid "Last modified" +#~ msgstr "අවසාන වෙනස් කළ දිනය" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "සෙවීම් නියම ඇතුලත් කරන්න සහ \"ඇතුලත් කිරීම\" ඔබන්න" + +#~ msgid "Update Search Index" +#~ msgstr "සෙවුම් දර්ශකය යාවත්කාලීන කිරීම" + +#~ msgid "Update Search Index" +#~ msgstr "සෙවුම් දර්ශකය යාවත්කාලීන කිරීම/b>" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "නිවැරදි ප්‍රතිඑල සැපයීමට locate පරිගණක දත්ත ගබඩාව නැවත ප්‍රාණවත් " +#~ "කිරීම අවශ්‍යය වේ. sudo (පරිපාලක) අයිතීන් මෙයට අවශ්‍ය වේ." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "ස්ථාන ගත කල පරිගණක දත්ත ගබඩාව යාවත්කාලීන කරන අතරතුර වරදක් සිදු වි ඇත" + +#~ msgid "Locate database updated successfully." +#~ msgstr "පරිගණක දත්ත ගබඩාව සාර්ථක ලෙස යාවත්කාලීන කිරීම පිහිටු වන්න" + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "කැට් ෆිෂ් මෘදුකාංගයට අමතර ගොනු කළමනාකරණය සොයා ගත නොහැක" + +#~ msgid "Updating database…" +#~ msgstr "දත්ත ගබඩාව යාවත්කාලීන කිරීම" diff -Nru catfish-1.0.2/po/sk.po catfish-1.2.2/po/sk.po --- catfish-1.0.2/po/sk.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/sk.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2013-05-03 10:15+0000\n" "Last-Translator: Juraj Salus \n" "Language-Team: Slovak \n" -"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Vyhľadávač súborov Catfish" @@ -30,290 +29,294 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish je všestranný nájstroj na vyhľadávanie súborov." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Vlastný časový rozsah" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Prejsť na dnešok" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Dátum od" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Dátum do" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Vlastný typ súboru" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Vybrať existujúci mime typ" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Zadajte prípony súborov" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Presná zhoda" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Skryté súbory" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Fulltext vyhľadávanie" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_Zobraziť pokročilé nastavenia" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "_Aktualizovať index vyhľadávania..." -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Zobraziť v _Správcovi súborov" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Kopírovať umiestnenie" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Vybrať priečinok" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Zadajte hľadané výrazy a stlačte ENTER" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Kedykoľvek" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Tento týždeň" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Vlastné" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Zmenené" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Dokumenty" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Obrázky" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Hudba" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Videá" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Programy" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Iné" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Typ súboru" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Vlastný časový rozsah" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Prejsť na dnešok" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Dátum od" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Dátum do" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Vlastný typ súboru" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Vybrať existujúci mime typ" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Zadajte prípony súborov" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Zobraziť v _Správcovi súborov" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Kopírovať umiestnenie" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Aktualizovať index vyhľadávania" - -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Odomknúť" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Aktualizovať index vyhľadávania" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Pre dosiahnutie najlepších výsledkov, locate databázy musia byť " -"aktualizované.\n" -"To si vyžaduje sudo (admin) práva." +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Aktualizuje sa databáza" +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Hotovo." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Zobraziť správy Debug (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:40 -msgid "Use large icons" -msgstr "" - #: ../catfish/__init__.py:42 -msgid "Use thumbnails" +msgid "Use large icons" msgstr "" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" +msgid "Use thumbnails" msgstr "" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" +msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Overenie zlyhalo." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Lokačná databázá úspešne aktualizovaná." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Počas aktualizácie lokačnej databázy sa vyskytla chyba." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Používateľ zrušil overovanie" - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Vyčistiť vyhľadávané výrazy" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish nenašiel prednastaveného správcu súborov." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish nenašiel prednastavenú aplikáciu." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Zastaviť vyhľadávanie" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "\"%s\" sa nepodarilo otvoriť." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "\"%s\" sa nepodarilo uložiť." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" sa nepodarilo vymazať." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Uložiť \"%s\" ako…" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -322,7 +325,7 @@ "Ste si istý, že chcete natrvalo zmazať \n" "\"%s\"?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -331,76 +334,195 @@ "Ste si istý, že chcete natrvalo zmazať \n" "%i vybraných súborov?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Ak súbor vymažete, bude nenávratne stratený." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Názov súboru" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Veľkosť" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Umiestnenie" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Náhľad" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Žiadny súbor sa nenašiel." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "%i súborov nájdených." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Hľadá sa \"%s\"" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Hľadá sa…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Zastaviť vyhľadávanie" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Výsledky vyhľadávania \"%s\"" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + #~ msgid "Last modified" #~ msgstr "Naposledy zmenené" + +#~ msgid "Done." +#~ msgstr "Hotovo." + +#~ msgid "Update Search Index" +#~ msgstr "Aktualizovať index vyhľadávania" + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Počas aktualizácie lokačnej databázy sa vyskytla chyba." + +#~ msgid "Clear search terms" +#~ msgstr "Vyčistiť vyhľadávané výrazy" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Zadajte hľadané výrazy a stlačte ENTER" + +#~ msgid "Locate database updated successfully." +#~ msgstr "Lokačná databázá úspešne aktualizovaná." + +#~ msgid "User aborted authentication." +#~ msgstr "Používateľ zrušil overovanie" + +#~ msgid "Update Search Index" +#~ msgstr "Aktualizovať index vyhľadávania" + +#~ msgid "Updating database…" +#~ msgstr "Aktualizuje sa databáza" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Pre dosiahnutie najlepších výsledkov, locate databázy musia byť " +#~ "aktualizované.\n" +#~ "To si vyžaduje sudo (admin) práva." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish nenašiel prednastaveného správcu súborov." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish nenašiel prednastavenú aplikáciu." diff -Nru catfish-1.0.2/po/sr.po catfish-1.2.2/po/sr.po --- catfish-1.0.2/po/sr.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/sr.po 2014-09-21 21:34:50.000000000 +0000 @@ -7,19 +7,19 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2014-03-02 04:34+0000\n" "Last-Translator: Саша Петровић \n" "Language-Team: српски <српски >\n" -"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-03-03 05:46+0000\n" -"X-Generator: Launchpad (build 16948)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" +"Language: sr\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Сом (Catfish) претрага датотека" @@ -31,291 +31,294 @@ msgid "Catfish is a versatile file searching tool." msgstr "Сом је свестрана алатка за претрагу датотека." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Прилагођен временски опсег" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Иди на данашњи дан" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Почетни датум" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Завршни датум" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Прилагођена врста датотека" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Означите постојећу МИМЕ врсту" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Унесите наставак датотеке" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Потпуно поклапање" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Скривене датотеке" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Потпуна претрага текста" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "_Прикажи напредне поставке" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "_Освежи списак датотека претраге…" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "_О програму" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "_Отвори" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "Прикажи у _управнику датотека" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "_Умножи путању" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "_Сачувај као..." + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "_Обриши" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Сом" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Изаберите фасциклу" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Унесите услове претраге и притисните ВРАТИ" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "Збијени списак" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "Умањене сличице" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Било када" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Ове седмице" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "Прилагођено" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Измењена" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Документи" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Фасцикле" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Слике" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Музика" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Видео" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Програми" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Друго" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Врста датотеке" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Прилагођен временски опсег" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Иди на данашњи дан" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Почетни датум" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Завршни датум" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Прилагођена врста датотека" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Означите постојећу МИМЕ врсту" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Унесите наставак датотеке" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "_Отвори" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "Прикажи у _управнику датотека" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "_Умножи путању" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "_Сачувај као..." - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "_Обриши" - -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Освежи садржај претраге" - #: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Откључај" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Освежи списак датотека претраге" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." -msgstr "" -"Да би пружила тачне излазе, остава података „locate“ треба бити " -"освежена.\n" -"То захтева судо (административна) овлашћења." +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Освежавам оставу података..." +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Урађено." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Приказуј поруке праћења грешака (такође и -vv debugs catfish_lib)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Користи велике иконице" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Користи умањене сличице" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Приказуј време у ИСО облику" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Тражи у путањи фасцикле" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Користи FILEMAN као управника датотека" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Користи WRAPPER за отварање датотека" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Изведи потпуно слагање" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Укључи скривене датотеке" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Изведи потпуну претрагу текста" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (неисправно шифровање знакова)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Потврђивање идентитета није успело." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Остава наредбе locate је успешно освежена." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Десила се грешка приликом освежавања locatedb." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Потврда идентитета је напуштена од стране корисника." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Очисти услове претраге" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Сом није успео да пронађе подразумеваног управника датотека." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Заустави претрагу" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" msgstr "" -"Сом није успео да пронађе подразумеваног отвореног омотача (open wrapper)" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "Нисам успео да отворим „%s“." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "Нисам успео да сачувам „%s“." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "Нисам успео да избришем „%s“." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "Сачувај „%s“ као..." -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -324,7 +327,7 @@ "Да ли сте сигурни да желите да \n" "трајно избришете „%s“?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -333,76 +336,196 @@ "Да ли сте сигурни да желите да \n" "трајно избришете %i означених датотека?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Ако избришете датотеку, биће трајно изгубљена." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Назив датотеке" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Величина" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Место" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "Измењено" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Преглед" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "Појединости" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "Данас" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "Јуче" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Нисам пронашао ни једну датотеку." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "1 датотека је пронађена." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "Нашао сам %i датотека." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "бајта" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Тражим „%s“" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Тражим…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Заустави претрагу" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Излаз претраге за „%s“" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + #~ msgid "Last modified" #~ msgstr "Последња измена" + +#~ msgid "Done." +#~ msgstr "Урађено." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Десила се грешка приликом освежавања locatedb." + +#~ msgid "Clear search terms" +#~ msgstr "Очисти услове претраге" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Унесите услове претраге и притисните ВРАТИ" + +#~ msgid "Locate database updated successfully." +#~ msgstr "Остава наредбе locate је успешно освежена." + +#~ msgid "User aborted authentication." +#~ msgstr "Потврда идентитета је напуштена од стране корисника." + +#~ msgid "Update Search Index" +#~ msgstr "Освежи списак датотека претраге" + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Сом није успео да пронађе подразумеваног управника датотека." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "" +#~ "Сом није успео да пронађе подразумеваног отвореног омотача (open wrapper)" + +#~ msgid "Update Search Index" +#~ msgstr "Освежи садржај претраге" + +#~ msgid "Updating database…" +#~ msgstr "Освежавам оставу података..." + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Да би пружила тачне излазе, остава података „locate“ треба бити " +#~ "освежена.\n" +#~ "То захтева судо (административна) овлашћења." diff -Nru catfish-1.0.2/po/tr.po catfish-1.2.2/po/tr.po --- catfish-1.0.2/po/tr.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/tr.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2013-08-05 19:41+0000\n" "Last-Translator: Utku BERBEROĞLU \n" "Language-Team: Turkish \n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Catfish Dosya Arama" @@ -30,289 +29,294 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish çok yönlü bir dosya arama aracıdır." -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Özel Zaman Aralığı" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "Bugüne Git" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "Başlangıç Tarihi" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "Bitiş Tarihi" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "Özel Dosya Tipi" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "Var olan mime türünü seçiniz" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "Dosya uzantılarını giriniz" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "_Tam Eşleşme" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "_Gizli Dosyalar" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "_Tam Metin Arama" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "Ge_lişmiş Ayarları Göster" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "_Arama İndeksini Güncelle" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "_Dosya Yöneticisinde Göster" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "Konumu _Kopyala" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Kedibalığı" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "Bir Dizin Seçin" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "Arama terimlerini girin ve ENTER'e basın." - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "Herhangi bir zaman" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "Bu hafta" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "Değiştirilmiş" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "Belgeler" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "Dizinler" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "Görseller" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "Müzik" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "Videolar" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "Uygulamalar" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "Diğer" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "Dosya Türü" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Özel Zaman Aralığı" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "Bugüne Git" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "Başlangıç Tarihi" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "Bitiş Tarihi" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "Özel Dosya Tipi" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "Var olan mime türünü seçiniz" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "Dosya uzantılarını giriniz" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "_Dosya Yöneticisinde Göster" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "Konumu _Kopyala" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Arama indeksine güncelleyin" - -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "Kilidi Aç" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "Arama İndeksini Güncelle" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -"Doğru arama sonuçları sağlamak için, konum veritabanı tazelenmeli.\n" -"Bu sudo (yönetici) yetkisi gerektirir." #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "Veritabanı güncelleniyor..." +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Bitti." +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Hata ayıklama iletilerini göster (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "Büyük simgeler kullan" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "Küçük resimler kullan" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "Zamanı ISO biçiminde göster" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "Dizinde Ara PATH" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "Dosya yöneticisi olarak FILEMAN kullan" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "Dosyaları açmak için WRAPPER kullan" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "Tam eşleşme uygula" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "Gizli dosyaları içer" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "Tam metin aramasını içer" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "Doğrulamala başarısız oldu." -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Bulunan veritabanı başarıyla güncellendi." - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Bulunan veritabanı güncellenirken bir hata oluştu." - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "Kullanıcı kimlik doğrulamayı iptal etti." - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "Arama terimlerini temizle" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish varsayılan dosya yöneticisini bulamadı." - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish dosyayı açacak varsayılan uygulamayı bulamıyor." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "Aramayı Durdur" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "\"%s\" açılamadı." -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "\"%s\" kaydedilemedi." -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" silinemedi." -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "%s 'i Farklı Kaydet" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -321,7 +325,7 @@ "%s dosyasını kalıcı olarak silmek \n" "istediğinizden emin misiniz?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -330,76 +334,194 @@ "%i seçili dosyayı kalıcı olarak silmek \n" "istediğinizden emin misiniz?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "Bir dosya silerseniz, kalıcı olarak kaybedilir." -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Dosya Adı" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Boyut" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Konum" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Önizleme" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Hiç dosya bulunamadı." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "1 dosya bulundu." -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "%i dosya bulundu." -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\" aranıyor" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "Aranıyor..." -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "Aramayı Durdur" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" için arama sonuçları" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + #~ msgid "Last modified" #~ msgstr "Son değiştirilme" + +#~ msgid "Update Search Index" +#~ msgstr "Arama indeksine güncelleyin" + +#~ msgid "Done." +#~ msgstr "Bitti." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Bulunan veritabanı güncellenirken bir hata oluştu." + +#~ msgid "Clear search terms" +#~ msgstr "Arama terimlerini temizle" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "Arama terimlerini girin ve ENTER'e basın." + +#~ msgid "Locate database updated successfully." +#~ msgstr "Bulunan veritabanı başarıyla güncellendi." + +#~ msgid "Update Search Index" +#~ msgstr "Arama İndeksini Güncelle" + +#~ msgid "Updating database…" +#~ msgstr "Veritabanı güncelleniyor..." + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "Doğru arama sonuçları sağlamak için, konum veritabanı tazelenmeli.\n" +#~ "Bu sudo (yönetici) yetkisi gerektirir." + +#~ msgid "User aborted authentication." +#~ msgstr "Kullanıcı kimlik doğrulamayı iptal etti." + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish varsayılan dosya yöneticisini bulamadı." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish dosyayı açacak varsayılan uygulamayı bulamıyor." diff -Nru catfish-1.0.2/po/uk.po catfish-1.2.2/po/uk.po --- catfish-1.0.2/po/uk.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/uk.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2012-08-28 20:32+0000\n" "Last-Translator: Олександр \n" "Language-Team: Ukrainian \n" -"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "" @@ -30,370 +29,466 @@ msgid "Catfish is a versatile file searching tool." msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "Інший часовий проміжок" + #: ../data/ui/CatfishWindow.ui.h:2 -msgid "_Exact Match" +msgid "Go to Today" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 -msgid "_Hidden Files" +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 -msgid "_Fulltext Search" +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 -msgid "_Show Advanced Settings" +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" msgstr "" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 -msgid "_Update Search Index…" +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:11 -msgid "_About" +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 -msgid "Catfish" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 +msgid "_Exact Match" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:13 -msgid "Select a Directory" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" +msgid "_Hidden Files" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:15 -msgid "Compact List" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 -msgid "Thumbnails" +msgid "_Fulltext Search" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:17 -msgid "Any time" -msgstr "Будь-коли" - -#: ../data/ui/CatfishWindow.ui.h:18 -msgid "This week" +msgid "_Show Advanced Settings" msgstr "" +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About #: ../data/ui/CatfishWindow.ui.h:19 -msgid "Custom" +msgid "_Update Search Index…" msgstr "" #: ../data/ui/CatfishWindow.ui.h:20 -msgid "Modified" +msgid "_About" msgstr "" #: ../data/ui/CatfishWindow.ui.h:21 -msgid "Documents" -msgstr "Документи" - -#: ../data/ui/CatfishWindow.ui.h:22 -msgid "Folders" +msgid "_Open" msgstr "" +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:23 -msgid "Images" -msgstr "Зображення" - -#: ../data/ui/CatfishWindow.ui.h:24 -msgid "Music" -msgstr "Музика" +msgid "Show in _File Manager" +msgstr "" +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:25 -msgid "Videos" -msgstr "Відео" +msgid "_Copy Location" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:26 -msgid "Applications" -msgstr "Додатки" +msgid "_Save as..." +msgstr "" #: ../data/ui/CatfishWindow.ui.h:27 -msgid "Other" -msgstr "Інше" +msgid "_Delete" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:28 -msgid "File Type" +msgid "Catfish" msgstr "" #: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "Інший часовий проміжок" +msgid "Select a Directory" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" +msgid "Compact List" msgstr "" #: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" +msgid "Thumbnails" msgstr "" #: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" +msgid "Update" msgstr "" #: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" +msgid "The search database is more than 7 days old. Update now?" msgstr "" -#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:34 +msgid "Any time" +msgstr "Будь-коли" + #: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" +msgid "This week" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:36 +msgid "Custom" msgstr "" -#. Enter "file extensions" such as .doc, .pdf #: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" +msgid "Modified" msgstr "" #: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" +msgid "Documents" +msgstr "Документи" + +#: ../data/ui/CatfishWindow.ui.h:39 +msgid "Folders" msgstr "" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "" +msgid "Images" +msgstr "Зображення" + +#: ../data/ui/CatfishWindow.ui.h:41 +msgid "Music" +msgstr "Музика" -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete #: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "" +msgid "Videos" +msgstr "Відео" #: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" +msgid "Applications" +msgstr "Додатки" #: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" -msgstr "" +msgid "Other" +msgstr "Інше" #: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "Поновити пошуковий індекс" +msgid "File Type" +msgstr "" #: ../data/ui/CatfishWindow.ui.h:46 -msgid "Unlock" +msgid "Update Search Database" msgstr "" #: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" +msgid "Unlock" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "Завершено." +#: ../data/ui/CatfishWindow.ui.h:51 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../catfish/__init__.py:37 -msgid "Show debug messages (-vv debugs catfish_lib also)" +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:40 -msgid "Use large icons" +#: ../catfish/__init__.py:39 +msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" #: ../catfish/__init__.py:42 -msgid "Use thumbnails" +msgid "Use large icons" msgstr "" #: ../catfish/__init__.py:44 -msgid "Display time in ISO format" +msgid "Use thumbnails" msgstr "" -#. Translators: Do not translate PATH, it is a variable. #: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" +msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "" -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "Базу даних locate оновлено успішно." +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "Сталася помилка при оновленні locatedb." +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." msgstr "" -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." msgstr "" -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" msgstr "" -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "" -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "Ім'я файлу" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "Розмір" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "Розташування" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "Попередній перегляд" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "Файли не знайдені." -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "Пошук «%s»" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "Результат пошуку для «%s»" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + #~ msgid "Last modified" #~ msgstr "Дата зміни" + +#~ msgid "Update Search Index" +#~ msgstr "Поновити пошуковий індекс" + +#~ msgid "Done." +#~ msgstr "Завершено." + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "Сталася помилка при оновленні locatedb." + +#~ msgid "Locate database updated successfully." +#~ msgstr "Базу даних locate оновлено успішно." diff -Nru catfish-1.0.2/po/zh_TW.po catfish-1.2.2/po/zh_TW.po --- catfish-1.0.2/po/zh_TW.po 2014-03-09 13:30:42.000000000 +0000 +++ catfish-1.2.2/po/zh_TW.po 2014-09-21 21:34:50.000000000 +0000 @@ -6,19 +6,18 @@ msgid "" msgstr "" "Project-Id-Version: catfish-search\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-03-09 09:26-0400\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2014-08-16 18:08-0400\n" "PO-Revision-Date: 2013-09-06 02:00+0000\n" "Last-Translator: Walter Cheuk \n" "Language-Team: Chinese (Traditional) \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2014-02-06 06:19+0000\n" -"X-Generator: Launchpad (build 16916)\n" +"X-Launchpad-Export-Date: 2014-08-17 06:28+0000\n" +"X-Generator: Launchpad (build 17156)\n" -#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:415 +#: ../catfish.desktop.in.h:1 ../catfish/CatfishWindow.py:521 msgid "Catfish File Search" msgstr "Catfish 檔案搜尋" @@ -30,289 +29,294 @@ msgid "Catfish is a versatile file searching tool." msgstr "Catfish 是多功能的檔案搜尋工具。" -#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "Custom Time Range" +msgstr "自訂時間範圍" + #: ../data/ui/CatfishWindow.ui.h:2 +msgid "Go to Today" +msgstr "移至今天" + +#: ../data/ui/CatfishWindow.ui.h:3 +msgid "Start Date" +msgstr "開始日期" + +#: ../data/ui/CatfishWindow.ui.h:4 +msgid "End Date" +msgstr "結束日期" + +#: ../data/ui/CatfishWindow.ui.h:5 +msgid "Custom File Type" +msgstr "自訂檔案類别" + +#. The "mimetype" is the file type of the file, such as "application/octet-stream" +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "Select existing mimetype" +msgstr "選取現有MIME類型" + +#. Enter "file extensions" such as .doc, .pdf +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "Enter file extensions" +msgstr "輸入檔案延伸檔名" + +#. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About +#: ../data/ui/CatfishWindow.ui.h:11 msgid "_Exact Match" msgstr "完全符合(_E)" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:4 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "_Hidden Files" msgstr "隱藏檔案(_H)" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:6 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "_Fulltext Search" msgstr "全文搜尋(_F)" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:8 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "_Show Advanced Settings" msgstr "顯示進階設定(_S)" #. This menu contains the menu items: _Exact Match, _Hidden Files, _Fulltext Search, _Show Advanced Settings, _Update Search Index, _About -#: ../data/ui/CatfishWindow.ui.h:10 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "_Update Search Index…" msgstr "更新搜尋索引(_U)…" -#: ../data/ui/CatfishWindow.ui.h:11 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:12 +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "_Open" +msgstr "" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:23 +msgid "Show in _File Manager" +msgstr "在檔案管理員顯示(_F)" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "_Copy Location" +msgstr "複製位置(_C)" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "_Save as..." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:27 +msgid "_Delete" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:28 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:13 +#: ../data/ui/CatfishWindow.ui.h:29 msgid "Select a Directory" msgstr "選取目錄" -#: ../data/ui/CatfishWindow.ui.h:14 ../catfish/CatfishWindow.py:513 -#: ../catfish/CatfishWindow.py:1531 -msgid "Enter search terms and press ENTER" -msgstr "輸入要搜尋的東西並按「Enter」" - -#: ../data/ui/CatfishWindow.ui.h:15 +#: ../data/ui/CatfishWindow.ui.h:30 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:31 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Update" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Any time" msgstr "任何時間" -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "This week" msgstr "本週" -#: ../data/ui/CatfishWindow.ui.h:19 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Custom" msgstr "自訂" -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "Modified" msgstr "最後修改時間" -#: ../data/ui/CatfishWindow.ui.h:21 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Documents" msgstr "文件" -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "Folders" msgstr "資料夾" -#: ../data/ui/CatfishWindow.ui.h:23 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "Images" msgstr "圖片" -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Music" msgstr "音樂" -#: ../data/ui/CatfishWindow.ui.h:25 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Videos" msgstr "影片" -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Applications" msgstr "應用程式" -#: ../data/ui/CatfishWindow.ui.h:27 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Other" msgstr "其他" -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "File Type" msgstr "檔案類型" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "Custom Time Range" -msgstr "自訂時間範圍" - -#: ../data/ui/CatfishWindow.ui.h:30 -msgid "Go to Today" -msgstr "移至今天" - -#: ../data/ui/CatfishWindow.ui.h:31 -msgid "Start Date" -msgstr "開始日期" - -#: ../data/ui/CatfishWindow.ui.h:32 -msgid "End Date" -msgstr "結束日期" - -#: ../data/ui/CatfishWindow.ui.h:33 -msgid "Custom File Type" -msgstr "自訂檔案類别" - -#. The "mimetype" is the file type of the file, such as "application/octet-stream" -#: ../data/ui/CatfishWindow.ui.h:35 -msgid "Select existing mimetype" -msgstr "選取現有MIME類型" - -#. Enter "file extensions" such as .doc, .pdf -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "Enter file extensions" -msgstr "輸入檔案延伸檔名" - -#: ../data/ui/CatfishWindow.ui.h:38 -msgid "_Open" -msgstr "" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:40 -msgid "Show in _File Manager" -msgstr "在檔案管理員顯示(_F)" - -#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete -#: ../data/ui/CatfishWindow.ui.h:42 -msgid "_Copy Location" -msgstr "複製位置(_C)" - -#: ../data/ui/CatfishWindow.ui.h:43 -msgid "_Save as..." -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:44 -msgid "_Delete" +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 -msgid "Update Search Index" -msgstr "更新搜尋索引" - -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:47 msgid "Unlock" msgstr "解除鎖定" -#: ../data/ui/CatfishWindow.ui.h:47 -msgid "Update Search Index" -msgstr "更新搜尋索引" +#: ../data/ui/CatfishWindow.ui.h:48 +msgid "Database:" +msgstr "" -#. The term "locate" is a commandline application, so it should not be translated. #: ../data/ui/CatfishWindow.ui.h:49 -msgid "" -"To provide accurate results, the locate database needs to be " -"refreshed.\n" -"This requires sudo (admin) rights." +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:50 +msgid "Update Search Database" msgstr "" -"要重新整理搜尋程式 locate 的資料庫才能提供準確结果。\n" -"這需要 sudo (系统管理員) 權限。" #: ../data/ui/CatfishWindow.ui.h:51 -msgid "Updating database…" -msgstr "正在更新資料庫..." +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 -msgid "Done." -msgstr "完成。" +#: ../catfish/__init__.py:34 +msgid "Usage: %prog [options] path query" +msgstr "" -#: ../catfish/__init__.py:37 +#: ../catfish/__init__.py:39 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "顯示除錯訊息(使用 -vv 同時為 catfish_lib 除錯)" -#: ../catfish/__init__.py:40 +#: ../catfish/__init__.py:42 msgid "Use large icons" msgstr "使用大圖示" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:44 msgid "Use thumbnails" msgstr "使用縮圖" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:46 msgid "Display time in ISO format" msgstr "以 ISO 格式顯示時間" -#. Translators: Do not translate PATH, it is a variable. -#: ../catfish/__init__.py:46 -msgid "Search in folder PATH" -msgstr "搜尋 PATH 資料夾" - -#. Translators: Do not translate FILEMAN, it is a variable. -#: ../catfish/__init__.py:48 -msgid "Use FILEMAN as filemanager" -msgstr "以 FILEMAN 作為檔案管理員" - -#. Translators: Do not translate WRAPPER, it is a variable -#: ../catfish/__init__.py:51 -msgid "Use WRAPPER to open files" -msgstr "以 WRAPPER 開啟檔案" - -#: ../catfish/__init__.py:53 +#: ../catfish/__init__.py:50 msgid "Perform exact match" msgstr "需要完全符合" -#: ../catfish/__init__.py:55 +#: ../catfish/__init__.py:52 msgid "Include hidden files" msgstr "包含隱藏檔案" -#: ../catfish/__init__.py:57 +#: ../catfish/__init__.py:54 msgid "Perform fulltext search" msgstr "進行全文搜尋" +#: ../catfish/__init__.py:56 +msgid "" +"If path and query are provided, start searching when the application is " +"displayed." +msgstr "" + #. Translators: this text is displayed next to #. a filename that is not utf-8 encoded. -#: ../catfish/CatfishWindow.py:84 +#: ../catfish/CatfishWindow.py:85 #, python-format msgid "%s (invalid encoding)" msgstr "%s (編碼無效)" -#: ../catfish/CatfishWindow.py:423 ../catfish/CatfishWindow.py:453 +#: ../catfish/CatfishWindow.py:231 +msgid "Never" +msgstr "" + +#: ../catfish/CatfishWindow.py:492 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:494 msgid "Authentication failed." msgstr "未能核對身分。" -#: ../catfish/CatfishWindow.py:447 ../catfish/CatfishWindow.py:455 -msgid "Locate database updated successfully." -msgstr "成功更新 locate 資料庫。" - -#: ../catfish/CatfishWindow.py:449 -msgid "An error occurred while updating locatedb." -msgstr "更新 locatedb 時發生錯誤。" - -#: ../catfish/CatfishWindow.py:451 -msgid "User aborted authentication." -msgstr "使用者放棄核對身分。" - -#: ../catfish/CatfishWindow.py:516 ../catfish/CatfishWindow.py:1538 -msgid "Clear search terms" -msgstr "清除要搜尋的東西" - -#. Translators: This message will only appear when trying to -#. open the default file manager but it cannot be found. -#: ../catfish/CatfishWindow.py:843 -msgid "Catfish could not find the default file manager." -msgstr "Catfish 找不到預設的檔案管理員。" - -#. Translators: This message will only appear when the default -#. application for opening a file cannot be found. -#: ../catfish/CatfishWindow.py:850 -msgid "Catfish could not find the default open wrapper." -msgstr "Catfish 找不到檔案預設的處理程式。" +#: ../catfish/CatfishWindow.py:500 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:506 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:574 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:601 +msgid "Enter search terms and press Enter to begin." +msgstr "" + +#: ../catfish/CatfishWindow.py:606 +msgid "Stop Search" +msgstr "停止尋找。" + +#: ../catfish/CatfishWindow.py:607 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" + +#: ../catfish/CatfishWindow.py:615 +msgid "Begin Search" +msgstr "" -#: ../catfish/CatfishWindow.py:864 +#: ../catfish/CatfishWindow.py:988 #, python-format msgid "\"%s\" could not be opened." msgstr "無法開啟「%s」。" -#: ../catfish/CatfishWindow.py:910 +#: ../catfish/CatfishWindow.py:1034 #, python-format msgid "\"%s\" could not be saved." msgstr "無法儲存「%s」。" -#: ../catfish/CatfishWindow.py:935 +#: ../catfish/CatfishWindow.py:1059 #, python-format msgid "\"%s\" could not be deleted." msgstr "無法删除「%s」。" -#: ../catfish/CatfishWindow.py:945 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "Save \"%s\" as…" msgstr "將「%s」另存為..." -#: ../catfish/CatfishWindow.py:980 +#: ../catfish/CatfishWindow.py:1104 #, python-format msgid "" "Are you sure that you want to \n" @@ -321,7 +325,7 @@ "真的要\n" "永久删除「%s」嗎?" -#: ../catfish/CatfishWindow.py:984 +#: ../catfish/CatfishWindow.py:1108 #, python-format msgid "" "Are you sure that you want to \n" @@ -330,76 +334,194 @@ "真的要\n" "永久删除所選取的 %i 個檔案嗎?" -#: ../catfish/CatfishWindow.py:987 +#: ../catfish/CatfishWindow.py:1111 msgid "If you delete a file, it is permanently lost." msgstr "如果將檔案刪除,其會永遠消失。" -#: ../catfish/CatfishWindow.py:1010 +#: ../catfish/CatfishWindow.py:1134 msgid "Filename" msgstr "檔案名稱" -#: ../catfish/CatfishWindow.py:1012 +#: ../catfish/CatfishWindow.py:1136 msgid "Size" msgstr "大小" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1138 msgid "Location" msgstr "位置" -#: ../catfish/CatfishWindow.py:1016 +#: ../catfish/CatfishWindow.py:1140 msgid "Modified" msgstr "" -#: ../catfish/CatfishWindow.py:1026 +#: ../catfish/CatfishWindow.py:1150 msgid "Preview" msgstr "預覽" -#: ../catfish/CatfishWindow.py:1034 +#: ../catfish/CatfishWindow.py:1158 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1207 +#: ../catfish/CatfishWindow.py:1331 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1209 +#: ../catfish/CatfishWindow.py:1333 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1284 ../catfish/CatfishWindow.py:1518 +#: ../catfish/CatfishWindow.py:1408 ../catfish/CatfishWindow.py:1644 msgid "No files found." msgstr "找不到檔案。" -#: ../catfish/CatfishWindow.py:1286 ../catfish/CatfishWindow.py:1520 +#: ../catfish/CatfishWindow.py:1410 ../catfish/CatfishWindow.py:1646 msgid "1 file found." msgstr "找到 1 個檔案。" -#: ../catfish/CatfishWindow.py:1289 ../catfish/CatfishWindow.py:1522 +#: ../catfish/CatfishWindow.py:1413 ../catfish/CatfishWindow.py:1648 #, python-format msgid "%i files found." msgstr "找到 %i 個檔案。" -#: ../catfish/CatfishWindow.py:1297 +#: ../catfish/CatfishWindow.py:1421 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1432 +#: ../catfish/CatfishWindow.py:1556 #, python-format msgid "Searching for \"%s\"" msgstr "正在搜尋「%s」" -#: ../catfish/CatfishWindow.py:1434 +#: ../catfish/CatfishWindow.py:1558 msgid "Searching…" msgstr "搜尋中…" -#: ../catfish/CatfishWindow.py:1438 -msgid "Stop Search" -msgstr "停止尋找。" - -#: ../catfish/CatfishWindow.py:1513 +#: ../catfish/CatfishWindow.py:1637 #, python-format msgid "Search results for \"%s\"" msgstr "搜尋「%s」的結果" +#: ../catfish_lib/SudoDialog.py:120 +msgid "Password Required" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:157 +msgid "Incorrect password... try again." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:167 +msgid "Password:" +msgstr "" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:178 +msgid "Cancel" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:181 +msgid "OK" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:202 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:204 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "" +"Catfish is a small, fast, and powerful file search utility. Featuring a " +"minimal interface with an emphasis on results, it helps users find the files " +"they need without a file manager. With powerful filters such as modification " +"date, file type, and file contents, users will no longer be dependent on the " +"file manager or organization skills." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +msgid "" +"This release fixes a regression where multiple search terms were no longer " +"supported. An InfoBar is now displayed when the search database is outdated, " +"and the dialogs used to update the database have been improved." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:4 +msgid "" +"This release fixes two issues where locate would not be properly executed " +"and improves handling of missing symbolic icons." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This stable release improved the reliability of the password dialog, cleaned " +"up unused code, and fixed potential issues with the list and item selection." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "" +"This release fixed a potential security issue with program startup and fixed " +"a regression with selecting multiple items." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"The first release in the 1.0.x series introduced a refreshed interface and " +"fixed a number of long-standing bugs. Improvements to the default " +"permissions eliminated a number of warnings when packaging for " +"distributions. Accessibility was enhanced as all strings have been made " +"translatable and keyboard accelerators have been improved." +msgstr "" + +#~ msgid "Update Search Index" +#~ msgstr "更新搜尋索引" + +#~ msgid "An error occurred while updating locatedb." +#~ msgstr "更新 locatedb 時發生錯誤。" + +#~ msgid "Locate database updated successfully." +#~ msgstr "成功更新 locate 資料庫。" + +#~ msgid "Done." +#~ msgstr "完成。" + #~ msgid "Last modified" #~ msgstr "最後修改時間" + +#~ msgid "Enter search terms and press ENTER" +#~ msgstr "輸入要搜尋的東西並按「Enter」" + +#~ msgid "Update Search Index" +#~ msgstr "更新搜尋索引" + +#~ msgid "Updating database…" +#~ msgstr "正在更新資料庫..." + +#~ msgid "Catfish could not find the default open wrapper." +#~ msgstr "Catfish 找不到檔案預設的處理程式。" + +#~ msgid "User aborted authentication." +#~ msgstr "使用者放棄核對身分。" + +#~ msgid "Clear search terms" +#~ msgstr "清除要搜尋的東西" + +#~ msgid "Catfish could not find the default file manager." +#~ msgstr "Catfish 找不到預設的檔案管理員。" + +#~ msgid "" +#~ "To provide accurate results, the locate database needs to be " +#~ "refreshed.\n" +#~ "This requires sudo (admin) rights." +#~ msgstr "" +#~ "要重新整理搜尋程式 locate 的資料庫才能提供準確结果。\n" +#~ "這需要 sudo (系统管理員) 權限。"