diff -Nru catfish-unstable-1.3.4/AUTHORS catfish-unstable-1.4.2/AUTHORS --- catfish-unstable-1.3.4/AUTHORS 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/AUTHORS 2016-04-01 03:28:07.000000000 +0000 @@ -1,2 +1,2 @@ Copyright (C) 2007-2012 Christian Dywan -Copyright (C) 2012-2015 Sean Davis +Copyright (C) 2012-2016 Sean Davis diff -Nru catfish-unstable-1.3.4/bin/catfish catfish-unstable-1.4.2/bin/catfish --- catfish-unstable-1.3.4/bin/catfish 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/bin/catfish 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published diff -Nru catfish-unstable-1.3.4/catfish/AboutCatfishDialog.py catfish-unstable-1.4.2/catfish/AboutCatfishDialog.py --- catfish-unstable-1.3.4/catfish/AboutCatfishDialog.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish/AboutCatfishDialog.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published @@ -17,10 +17,11 @@ # with this program. If not, see . import logging -logger = logging.getLogger('catfish') from catfish_lib.AboutDialog import AboutDialog +logger = logging.getLogger('catfish') + # See catfish_lib.AboutDialog.py for more details about how this class works. class AboutCatfishDialog(AboutDialog): diff -Nru catfish-unstable-1.3.4/catfish/CatfishSearchEngine.py catfish-unstable-1.4.2/catfish/CatfishSearchEngine.py --- catfish-unstable-1.3.4/catfish/CatfishSearchEngine.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish/CatfishSearchEngine.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published @@ -17,7 +17,6 @@ # with this program. If not, see . import logging -logger = logging.getLogger('catfish_search') import io import os @@ -29,9 +28,6 @@ from mimetypes import guess_type from sys import version_info -python3 = version_info[0] > 2 - -engine_count = 0 try: from zeitgeist.client import ZeitgeistDBusInterface @@ -42,6 +38,10 @@ except Exception: zeitgeist_support = False +logger = logging.getLogger('catfish_search') +python3 = version_info[0] > 2 +engine_count = 0 + FNULL = open(os.devnull, 'w') if subprocess.call(['which', 'locate'], stdout=FNULL, stderr=subprocess.STDOUT) == 0: @@ -50,6 +50,7 @@ locate_support = False FNULL.close() + def string_regex(keywords, path): """Returns a string with the regular expression containing all combinations of the keywords.""" @@ -93,7 +94,8 @@ engine_count += 1 self.engine_id = engine_count logger.debug( - "[%i] engine initializing with methods: %s", self.engine_id, str(methods)) + "[%i] engine initializing with methods: %s", + self.engine_id, str(methods)) self.methods = [] if 'zeitgeist' in methods: if zeitgeist_support: @@ -109,7 +111,8 @@ for method in self.methods: initialized.append(method.method_name) logger.debug( - "[%i] engine initialized with methods: %s", self.engine_id, str(initialized)) + "[%i] engine initialized with methods: %s", + self.engine_id, str(initialized)) self.start_time = 0.0 def __del__(self): @@ -131,7 +134,8 @@ keywords = keywords.replace(',', ' ').strip().lower() logger.debug("[%i] path: %s, keywords: %s, limit: %i, regex: %s", - self.engine_id, str(path), str(keywords), limit, str(regex)) + self.engine_id, str(path), str(keywords), limit, + str(regex)) self.keywords = keywords @@ -154,7 +158,8 @@ file_count = 0 for method in self.methods: logger.debug( - "[%i] Starting search method: %s", self.engine_id, method.method_name) + "[%i] Starting search method: %s", + self.engine_id, method.method_name) for filename in method.run(keywords, path, regex): if isinstance(filename, str) and path in filename: if method.method_name == 'fulltext' or \ diff -Nru catfish-unstable-1.3.4/catfish/CatfishWindow.py catfish-unstable-1.4.2/catfish/CatfishWindow.py --- catfish-unstable-1.3.4/catfish/CatfishWindow.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish/CatfishWindow.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published @@ -22,7 +22,6 @@ import mimetypes import os import time -from calendar import timegm from locale import gettext as _ from shutil import copy2, rmtree from xml.sax.saxutils import escape @@ -32,7 +31,8 @@ from catfish.AboutCatfishDialog import AboutCatfishDialog from catfish.CatfishSearchEngine import * -from catfish_lib import catfishconfig, CatfishSettings, SudoDialog, Window, helpers +from catfish_lib import catfishconfig, helpers +from catfish_lib import CatfishSettings, SudoDialog, Window logger = logging.getLogger('catfish') @@ -205,7 +205,6 @@ self.thumbnail_toggle = builder.get_named_object("toolbar.view.thumbs") # -- Treeview -- # - self.row_activated = False self.treeview = builder.get_named_object("results.treeview") self.treeview.enable_model_drag_source( Gdk.ModifierType.BUTTON1_MASK, @@ -311,9 +310,10 @@ end_date = end_calendar.get_date() self.end_date = datetime.datetime(end_date[0], end_date[1] + 1, end_date[2]) + self.end_date = self.end_date + datetime.timedelta(days=1, seconds=-1) - self.filter_timerange = (timegm(self.start_date.timetuple()), - timegm(self.end_date.timetuple())) + self.filter_timerange = (time.mktime(self.start_date.timetuple()), + time.mktime(self.end_date.timetuple())) self.refilter() @@ -867,22 +867,22 @@ logger.debug("Time Range: Beginning of time -> Eternity") elif value == 'week': now = datetime.datetime.now() - week = timegm(( + week = time.mktime(( datetime.datetime(now.year, now.month, now.day, 0, 0) - datetime.timedelta(7)).timetuple()) self.filter_timerange = (week, 9999999999.0) logger.debug( "Time Range: %s -> Eternity", - time.strftime("%x %X", time.gmtime(int(week)))) + time.strftime("%x %X", time.localtime(int(week)))) elif value == 'custom': - self.filter_timerange = (timegm(self.start_date.timetuple()), - timegm(self.end_date.timetuple())) + self.filter_timerange = (time.mktime(self.start_date.timetuple()), + time.mktime(self.end_date.timetuple())) logger.debug( "Time Range: %s -> %s", time.strftime("%x %X", - time.gmtime(int(self.filter_timerange[0]))), + time.localtime(int(self.filter_timerange[0]))), time.strftime("%x %X", - time.gmtime(int(self.filter_timerange[1])))) + time.localtime(int(self.filter_timerange[1])))) self.refilter() def on_calendar_today_button_clicked(self, calendar_widget): @@ -973,36 +973,52 @@ self.get_error_dialog(_('\"%s\" could not be saved.') % os.path.basename(filename), str(msg)) + def delete_file(self, filename): + try: + # Delete the file. + if not os.path.exists(filename): + return True + elif os.path.isdir(filename): + rmtree(filename) + else: + os.remove(filename) + return True + except Exception as msg: + # If the file cannot be deleted, throw an error. + logger.debug('Exception encountered while deleting %s.' + + '\n Exception: %s', filename, msg) + self.get_error_dialog(_("\"%s\" could not be deleted.") % + os.path.basename(filename), + str(msg)) + return False + + def remove_filenames_from_treeview(self, filenames): + removed = [] + model = self.treeview.get_model().get_model().get_model() + treeiter = model.get_iter_first() + while treeiter is not None: + nextiter = model.iter_next(treeiter) + row = model[treeiter] + found = os.path.join(row[3], row[1]) + if found in filenames: + model.remove(treeiter) + removed.append(found) + if len(removed) == len(filenames): + return True + treeiter = nextiter + return False + def on_menu_delete_activate(self, widget): """Show a delete dialog and remove the file if accepted.""" filenames = [] if self.get_delete_dialog(self.selected_filenames): - for filename in self.selected_filenames: - try: - # Delete the file. - if os.path.isdir(filename): - rmtree(filename) - else: - os.remove(filename) + delete = self.selected_filenames + delete.sort() + delete.reverse() + for filename in delete: + if self.delete_file(filename): filenames.append(filename) - - except Exception as msg: - # If the file cannot be deleted, throw an error. - logger.debug('Exception encountered while deleting %s.' + - '\n Exception: %s', filename, msg) - self.get_error_dialog(_("\"%s\" could not be deleted.") % - os.path.basename(filename), - str(msg)) - - # Clean up removed rows - model = self.treeview.get_model().get_model().get_model() - rows = self.rows - rows.reverse() - for path in rows: - treeiter = model.get_iter(path) - filename = os.path.join(model[treeiter][3], model[treeiter][1]) - if not os.path.exists(filename): - model.remove(treeiter) + self.remove_filenames_from_treeview(filenames) self.refilter() def get_save_dialog(self, filename): @@ -1128,12 +1144,6 @@ # -- Treeview -- # def on_treeview_row_activated(self, treeview, path, user_data): """Catch row activations by keyboard or mouse double-click.""" - if self.row_activated: - self.row_activated = False - return - else: - self.row_activated = True - # Get the filename from the row. model = treeview.get_model() file_path = self.treemodel_get_row_filename(model, path) @@ -1172,60 +1182,99 @@ data.append(self.treemodel_get_row_filename(model, row)) return (model, rows, data) - def update_treeview_stats(self, treeview): + def check_treeview_stats(self, treeview): + if len(self.rows) == 0: + return -1 + model, rows, selected_filenames = \ + self.treeview_get_selected_rows(treeview) + for row in rows: + if row not in self.rows: + return 2 + if self.rows != rows: + return 1 + return 0 + + def update_treeview_stats(self, treeview, event=None): + if event: + self.treeview_set_cursor_if_unset(treeview, + int(event.x), + int(event.y)) model, self.rows, self.selected_filenames = \ self.treeview_get_selected_rows(treeview) - def maintain_treeview_stats(self, treeview): - treesel = treeview.get_selection() - for row in self.rows: - treesel.select_path(row) + def maintain_treeview_stats(self, treeview, event=None): + if len(self.selected_filenames) == 0: + self.update_treeview_stats(treeview, event) + elif self.check_treeview_stats(treeview) == 2: + self.update_treeview_stats(treeview, event) + else: + treesel = treeview.get_selection() + for row in self.rows: + treesel.select_path(row) def on_treeview_cursor_changed(self, treeview): if "Shift" in self.keys_pressed or "Control" in self.keys_pressed: self.update_treeview_stats(treeview) - def on_treeview_button_press_event(self, treeview, event): - """Catch single mouse click events on the treeview and rows. + def treeview_set_cursor_if_unset(self, treeview, x=0, y=0): + if treeview.get_selection().count_selected_rows() < 1: + self.treeview_set_cursor_at_pos(treeview, x, y) - Left Click: Ignore. - Middle Click: Open the selected file. - Right Click: Show the popup menu.""" - # If left click, ignore. - if event.button == 1: - self.update_treeview_stats(treeview) + def treeview_set_cursor_at_pos(self, treeview, x, y): + try: + path = treeview.get_path_at_pos(int(x), int(y))[0] + treeview.set_cursor(path) + except TypeError: return False + return True - # Get the selected row path, raises TypeError if dead space. - if treeview.get_selection().count_selected_rows() <= 1: - try: - path = treeview.get_path_at_pos(int(event.x), int(event.y))[0] - treeview.set_cursor(path) - except TypeError: - return False - - self.maintain_treeview_stats(treeview) + def treeview_left_click(self, treeview, event=None): + self.update_treeview_stats(treeview, event) + return False - # If middle click, open the selected file. - if event.button == 2: - for filename in self.selected_filenames: - self.open_file(filename) - - # If right click, show the popup menu. - if event.button == 3: - show_save_option = len(self.selected_filenames) == 1 and not \ - os.path.isdir(self.selected_filenames[0]) - self.file_menu_save.set_visible(show_save_option) - writeable = True - for filename in self.selected_filenames: - if not os.access(filename, os.W_OK): - writeable = False - self.file_menu_delete.set_sensitive(writeable) - self.file_menu.popup(None, None, None, None, - event.button, event.time) + def treeview_middle_click(self, treeview, event=None): + self.maintain_treeview_stats(treeview, event) + self.treeview_set_cursor_if_unset(treeview, int(event.x), int(event.y)) + for filename in self.selected_filenames: + self.open_file(filename) + return True + def treeview_right_click(self, treeview, event=None): + self.maintain_treeview_stats(treeview, event) + show_save_option = len(self.selected_filenames) == 1 and not \ + os.path.isdir(self.selected_filenames[0]) + self.file_menu_save.set_visible(show_save_option) + writeable = True + for filename in self.selected_filenames: + if not os.access(filename, os.W_OK): + writeable = False + self.file_menu_delete.set_sensitive(writeable) + self.file_menu.popup(None, None, None, None, + event.button, event.time) return True + def treeview_alt_clicked(self, treeview, event=None): + self.update_treeview_stats(treeview, event) + return False + + def on_treeview_button_press_event(self, treeview, event): + """Catch single mouse click events on the treeview and rows. + + Left Click: Ignore. + Middle Click: Open the selected file. + Right Click: Show the popup menu.""" + if "Shift" in self.keys_pressed or "Control" in self.keys_pressed: + handled = self.treeview_alt_clicked(treeview, event) + elif event.button == 1: + handled = self.treeview_left_click(treeview, event) + elif event.button == 2: + handled = self.treeview_middle_click(treeview, event) + elif event.button == 3: + handled = self.treeview_right_click(treeview, event) + else: + handled = False + return handled + def new_column(self, label, id, special=None, markup=False): """New Column function for creating TreeView columns easily.""" if special == 'icon': @@ -1283,7 +1332,7 @@ """Return the date string in the preferred format.""" if self.time_format is not None: modified = time.strftime(self.time_format, - time.gmtime(modification_int)) + time.localtime(modification_int)) else: item_date = datetime.datetime.fromtimestamp(modification_int) if item_date >= self.today: @@ -1291,9 +1340,9 @@ elif item_date >= self.yesterday: modified = _("Yesterday") elif item_date >= self.this_week: - modified = time.strftime("%A", time.gmtime(modification_int)) + modified = time.strftime("%A", time.localtime(modification_int)) else: - modified = time.strftime("%x", time.gmtime(modification_int)) + modified = time.strftime("%x", time.localtime(modification_int)) return modified def results_filter_func(self, model, iter, user_data): @@ -1370,7 +1419,8 @@ self.builder.get_object( "splash_title").set_text(_("No files found.")) self.builder.get_object("splash_subtitle").set_text( - _("Try making your search less specific\nor try another directory.")) + _("Try making your search less specific\n" + "or try another directory.")) else: self.builder.get_object("splash").hide() self.builder.get_object("results_scrolledwindow").show() @@ -1482,7 +1532,7 @@ thumb_pixbuf.savev(path, "png", [], []) return True except Exception as e: - print (e) + print(e) return False def get_file_icon(self, path, mime_type=None): diff -Nru catfish-unstable-1.3.4/catfish/__init__.py catfish-unstable-1.4.2/catfish/__init__.py --- catfish-unstable-1.3.4/catfish/__init__.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish/__init__.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published @@ -27,6 +27,7 @@ from catfish_lib import set_up_logging, get_version import os +import signal def parse_options(): @@ -73,4 +74,7 @@ window = CatfishWindow.CatfishWindow() window.parse_options(options, args) window.show() + + # Allow application shutdown with Ctrl-C in terminal + signal.signal(signal.SIGINT, signal.SIG_DFL) Gtk.main() diff -Nru catfish-unstable-1.3.4/catfish.1 catfish-unstable-1.4.2/catfish.1 --- catfish-unstable-1.3.4/catfish.1 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish.1 2016-04-01 03:28:07.000000000 +0000 @@ -1,4 +1,4 @@ -.TH CATFISH "1" "September 2015" "catfish 1.3.2" "User Commands" +.TH CATFISH "1" "March 2016" "catfish 1.4.2" "User Commands" .SH NAME catfish \- File searching tool which is configurable via the command line .SH "DESCRIPTION" diff -Nru catfish-unstable-1.3.4/catfish_lib/AboutDialog.py catfish-unstable-1.4.2/catfish_lib/AboutDialog.py --- catfish-unstable-1.3.4/catfish_lib/AboutDialog.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish_lib/AboutDialog.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published diff -Nru catfish-unstable-1.3.4/catfish_lib/Builder.py catfish-unstable-1.4.2/catfish_lib/Builder.py --- catfish-unstable-1.3.4/catfish_lib/Builder.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish_lib/Builder.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published @@ -23,10 +23,10 @@ import inspect import functools import logging -logger = logging.getLogger('catfish_lib') - from xml.etree.cElementTree import ElementTree +logger = logging.getLogger('catfish_lib') + # this module is big so uses some conventional prefixes and postfixes # *s list, except self.widgets is a dictionary # *_dict dictionary diff -Nru catfish-unstable-1.3.4/catfish_lib/catfishconfig.py catfish-unstable-1.4.2/catfish_lib/catfishconfig.py --- catfish-unstable-1.3.4/catfish_lib/catfishconfig.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish_lib/catfishconfig.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published @@ -16,6 +16,8 @@ # You should have received a copy of the GNU General Public License along # with this program. If not, see . +import os + __all__ = [ 'project_path_not_found', 'get_data_file', @@ -28,10 +30,8 @@ __catfish_data_directory__ = '../data/' # Location of locate.db file __locate_db_path__ = '/var/lib/mlocate/mlocate.db' -__license__ = 'GPL-2' -__version__ = '1.3.4' - -import os +__license__ = 'GPL-3+' +__version__ = '1.4.2' class project_path_not_found(Exception): diff -Nru catfish-unstable-1.3.4/catfish_lib/CatfishSettings.py catfish-unstable-1.4.2/catfish_lib/CatfishSettings.py --- catfish-unstable-1.3.4/catfish_lib/CatfishSettings.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish_lib/CatfishSettings.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published diff -Nru catfish-unstable-1.3.4/catfish_lib/helpers.py catfish-unstable-1.4.2/catfish_lib/helpers.py --- catfish-unstable-1.3.4/catfish_lib/helpers.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish_lib/helpers.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published diff -Nru catfish-unstable-1.3.4/catfish_lib/__init__.py catfish-unstable-1.4.2/catfish_lib/__init__.py --- catfish-unstable-1.3.4/catfish_lib/__init__.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish_lib/__init__.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published diff -Nru catfish-unstable-1.3.4/catfish_lib/SudoDialog.py catfish-unstable-1.4.2/catfish_lib/SudoDialog.py --- catfish-unstable-1.3.4/catfish_lib/SudoDialog.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish_lib/SudoDialog.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published diff -Nru catfish-unstable-1.3.4/catfish_lib/Window.py catfish-unstable-1.4.2/catfish_lib/Window.py --- catfish-unstable-1.3.4/catfish_lib/Window.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/catfish_lib/Window.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published @@ -18,14 +18,12 @@ from gi.repository import Gtk, Gdk # pylint: disable=E0611 import logging -logger = logging.getLogger('catfish_lib') - -from . helpers import get_builder - from locale import gettext as _ +from . helpers import get_builder from catfish_lib import CatfishSettings +logger = logging.getLogger('catfish_lib') # GtkBuilder Mappings __builder__ = { @@ -276,16 +274,40 @@ keys.append("Alt") return keys + def map_key(self, key): + if key.endswith("_L"): + return key.replace("_L", "") + elif key.endswith("_R"): + return key.replace("_R", "") + return key + def add_keys(self, keys): - ignore = ["Escape"] for key in keys: - if key not in self.keys_pressed and key not in ignore: - self.keys_pressed.append(key) + self.add_key(key) + + def add_key(self, key): + if key is None: + return + key = self.map_key(key) + if key in ["Escape"]: + return + if key not in self.keys_pressed: + self.keys_pressed.append(key) def remove_keys(self, keys): for key in keys: if key in self.keys_pressed: - self.keys_pressed.remove(key) + self.remove_key(key) + self.remove_key(key.upper()) + + def remove_key(self, key): + if key is None: + return + key = self.map_key(key) + try: + self.keys_pressed.remove(key) + except ValueError: + pass def on_catfish_window_key_press_event(self, widget, event): """Handle keypresses for the Catfish window.""" diff -Nru catfish-unstable-1.3.4/ChangeLog catfish-unstable-1.4.2/ChangeLog --- catfish-unstable-1.3.4/ChangeLog 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/ChangeLog 2016-04-01 03:28:07.000000000 +0000 @@ -1,3 +1,28 @@ +v1.4.2: + + Bug Fixes: + - Fixed file timestamps being displayed as UTC instead of local time + - Unmark strings that should not be translated (LP: #1562578) + + Translation Updates: + - Dutch, German, Finnish, French, Japanese, Lithuanian, Swedish + +v1.4.1: + + Bug Fixes: + - Fix end date calculation with custom date ranges (LP: #1514018) + - Fix issues double-click activation (LP: #1523164) + - Fix middle/right-click activation on startup (LP: #1547807) + - Fix issues with deleted files not being removed from results + - Use localtime for date range comparisons + - Correctly close the application with Ctrl-C via the terminal. + + Translation Updates: + - French + +v1.4.0: + + Bug Fixes: + - Fix installation with Python 2 (LP: #1540211) + - Install appdata again (broke in 1.3.4) + + Translation Updates: + - Catalan, Esperanto, French, Lithuanian, Spanish, Swedish + v1.3.4: + This is a new development release, probably the last before v1.4.0 is released. diff -Nru catfish-unstable-1.3.4/data/appdata/catfish.appdata.xml.in catfish-unstable-1.4.2/data/appdata/catfish.appdata.xml.in --- catfish-unstable-1.3.4/data/appdata/catfish.appdata.xml.in 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/data/appdata/catfish.appdata.xml.in 2016-04-01 03:28:07.000000000 +0000 @@ -1,10 +1,10 @@ - + catfish.desktop CC0-1.0 GPL-2.0+ - Catfish + <_name>Catfish <_summary>Versatile file searching tool @@ -26,46 +26,38 @@ https://bugs.launchpad.net/catfish-search/ https://answers.launchpad.net/catfish-search - smd.seandavis@gmail.com + smd.seandavis@gmail.com catfish - - - <_p>This development release fixes a number of issues related - to password handling, application startup, and the results view. - It also includes a number of updated translations. - - - - + - <_p>This development release hides the output of the `which` - command on startup and includes updated translations. + <_p>This release now displays all file timestamps according to + timezone instead of Universal Coordinated Time (UTC). - + - <_p>This development release now detects the correct thumbnails - directory to use and includes updated translations. + <_p>This release fixes several bugs related to the results + window. Files are once again removed from the results list + when deleted. Middle- and right-click functionality has been + restored. Date range filters are now applied according to + timezone instead of Universal Coordinated Time (UTC). - + - <_p>This development release adds a new setting to use toggle headerbars - and fixes several bugs. - - - - - - <_p>This development release includes a significant UI refresh, improves - search speed, and fixes several bugs + <_p>This release includes a significant interface refresh, + improves search speed, and fixes several bugs. The workflow + has been improved, utilizing some of the latest features + of the GTK+ toolkit, including optional headerbars and + popover widgets. Password handling has been improved with + the integration of PolicyKit when available. diff -Nru catfish-unstable-1.3.4/data/ui/AboutCatfishDialog.ui catfish-unstable-1.4.2/data/ui/AboutCatfishDialog.ui --- catfish-unstable-1.3.4/data/ui/AboutCatfishDialog.ui 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/data/ui/AboutCatfishDialog.ui 2016-04-01 03:28:07.000000000 +0000 @@ -12,11 +12,11 @@ Catfish 1.0.2 Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de> -Copyright (C) 2012-2015 Sean Davis <smd.seandavis@gmail.com> +Copyright (C) 2012-2016 Sean Davis <smd.seandavis@gmail.com> Catfish is a versatile file searching tool. https://launchpad.net/catfish-search Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de> -Copyright (C) 2012-2015 Sean Davis <smd.seandavis@gmail.com> +Copyright (C) 2012-2016 Sean Davis <smd.seandavis@gmail.com> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 2, as published @@ -31,7 +31,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>. Copyright (C) 2007-2012 Christian Dywan <christian@twotoasts.de> -Copyright (C) 2012-2015 Sean Davis <smd.seandavis@gmail.com> +Copyright (C) 2012-2016 Sean Davis <smd.seandavis@gmail.com> Launchpad Translators, https://translations.launchpad.net/catfish-search Nancy Runge <nancy@twotoasts.de> catfish diff -Nru catfish-unstable-1.3.4/data/ui/CatfishWindow.ui catfish-unstable-1.4.2/data/ui/CatfishWindow.ui --- catfish-unstable-1.3.4/data/ui/CatfishWindow.ui 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/data/ui/CatfishWindow.ui 2016-04-01 03:28:07.000000000 +0000 @@ -169,7 +169,7 @@ folder-documents-symbolic Documents - documents + documents False True False @@ -177,7 +177,7 @@ folder-symbolic Folders - folders + folders False True False @@ -185,7 +185,7 @@ folder-pictures-symbolic Images - images + images False True False @@ -193,7 +193,7 @@ folder-music-symbolic Music - music + music False True False @@ -201,7 +201,7 @@ folder-videos-symbolic Videos - videos + videos False True False @@ -209,7 +209,7 @@ applications-utilities-symbolic Applications - applications + applications False True False @@ -217,7 +217,7 @@ preferences-other-symbolic Other - other + other False True False @@ -243,7 +243,7 @@ document-open-recent-symbolic Any time - any + any True False False @@ -251,7 +251,7 @@ document-open-recent-symbolic This week - week + week False True False @@ -259,7 +259,7 @@ document-open-recent-symbolic Custom - custom + custom False True False @@ -620,7 +620,7 @@ - column + column 34 @@ -649,7 +649,7 @@ - column + column True @@ -663,7 +663,7 @@ - column + column document-properties-symbolic @@ -747,7 +747,7 @@ - column + column 34 @@ -777,7 +777,7 @@ - column + column True @@ -791,7 +791,7 @@ - column + column document-properties-symbolic diff -Nru catfish-unstable-1.3.4/debian/changelog catfish-unstable-1.4.2/debian/changelog --- catfish-unstable-1.3.4/debian/changelog 2016-02-01 02:09:30.000000000 +0000 +++ catfish-unstable-1.4.2/debian/changelog 2016-04-20 02:47:34.000000000 +0000 @@ -1,4 +1,10 @@ -catfish-unstable (1.3.4-0~ppa16.04) xenial; urgency=medium +catfish-unstable (1.4.2-0~ppa16.04) xenial; urgency=medium + + * New upstream release. + + -- Sean Davis Tue, 19 Apr 2016 22:47:19 -0400 + +catfish-unstable (1.3.4-0~ppa15.04) vivid; urgency=medium * New unstable release. * debian/patches: Dropped, included upstream. diff -Nru catfish-unstable-1.3.4/PKG-INFO catfish-unstable-1.4.2/PKG-INFO --- catfish-unstable-1.3.4/PKG-INFO 2016-01-31 23:18:06.000000000 +0000 +++ catfish-unstable-1.4.2/PKG-INFO 2016-04-01 03:28:21.000000000 +0000 @@ -1,7 +1,7 @@ Metadata-Version: 1.1 Name: catfish -Version: 1.3.4 -Summary: file searching tool which is configurable via the command line +Version: 1.4.2 +Summary: file searching tool configurable via the command line Home-page: https://launchpad.net/catfish-search Author: Sean Davis Author-email: smd.seandavis@gmail.com diff -Nru catfish-unstable-1.3.4/po/ar.po catfish-unstable-1.4.2/po/ar.po --- catfish-unstable-1.3.4/po/ar.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/ar.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-08-22 01:55+0000\n" "Last-Translator: سند <0sanad0@gmail.com>\n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "" @@ -69,195 +69,152 @@ msgstr "المستندات" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "مستندات" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "المجلدات" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "مجلدات" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "الصور" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "صور" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "الموسيقى" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "موسيقى" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "فيديو" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "فيديو" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "التطبيقات" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "تطبيقات" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "أخرى" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "غير ذلك" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "أي وقت" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "أي" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "هذا الأسبوع" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "اسبوع" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "مخصّص" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "مخصص" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "اذهب إلى اليوم الحالي" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "تاريخ البدء" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "تاريخ الإنتهاء" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "تحديث" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "نوع الملف" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "عمود" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "مُعدّل" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "اختر دليل" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "الصور المصغرة" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "أظهر الملفات ال_مخفيّة" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "ت_طابق نام" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "عرض ال_شريط الجانبي" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "ع_ن" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "إلغاء التأمين" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "قاعدة البيانات:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "تحديث:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "تحديث قاعدة بيانات البحث" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -265,39 +222,39 @@ "للحصول على نتائج أسرع، تحتاج قاعدة بيانات البحث إلى تحديث.\n" "يتطلب هذا الإجراء حقوق إدارية." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "استخدام ايقونات كبيرة" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "استخدام ايقونات صغيرة" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -310,11 +267,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "مجهول" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "أبداً لا" @@ -363,99 +320,99 @@ msgid "\"%s\" could not be saved." msgstr "تعذر حفظ\"%s\"" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "تعذر حذف \"%s\"" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "حفظ كـ \"%s\"" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "إذا خذفت الملف، سيحذف بصفة نهائية." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "اسم الملف" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "الحجم" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "الموقع" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "معاينة" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "التفاصيل" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "اليوم" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "أمس" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "لم يتم العثور على ملفات" -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "بايتات" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "يبحث…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "يبحث عن \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "نتائج البحث عن \"%s\"" @@ -494,11 +451,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -507,66 +464,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -574,3 +524,36 @@ "distributions. Accessibility was enhanced as all strings have been made " "translatable and keyboard accelerators have been improved." msgstr "" + +#~ msgid "music" +#~ msgstr "موسيقى" + +#~ msgid "images" +#~ msgstr "صور" + +#~ msgid "folders" +#~ msgstr "مجلدات" + +#~ msgid "documents" +#~ msgstr "مستندات" + +#~ msgid "other" +#~ msgstr "غير ذلك" + +#~ msgid "week" +#~ msgstr "اسبوع" + +#~ msgid "applications" +#~ msgstr "تطبيقات" + +#~ msgid "videos" +#~ msgstr "فيديو" + +#~ msgid "any" +#~ msgstr "أي" + +#~ msgid "column" +#~ msgstr "عمود" + +#~ msgid "custom" +#~ msgstr "مخصص" diff -Nru catfish-unstable-1.3.4/po/be.po catfish-unstable-1.4.2/po/be.po --- catfish-unstable-1.3.4/po/be.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/be.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2012-08-20 20:56+0000\n" "Last-Translator: Mikalai Udodau \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "" @@ -69,233 +69,190 @@ msgstr "Дакументы" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Выявы" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Музыка" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Відэа" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Праграмы" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Іншы" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Любы час" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,99 +318,99 @@ msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Назва файла" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Памер" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Размяшчэнне" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Перадпрагляд" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Файлы не знойдзены." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Пошук \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Вынікі пошуку для \"%s\"" @@ -492,11 +449,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -505,66 +462,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/bg.po catfish-unstable-1.4.2/po/bg.po --- catfish-unstable-1.3.4/po/bg.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/bg.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2016-01-21 10:00+0000\n" "Last-Translator: cybercop \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Търсене на файлове Catfish" @@ -69,196 +69,153 @@ msgstr "Документи" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Папки" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Изображения" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Музика" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Видеозаписи" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Приложения" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Друго" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "По всяко време" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Тази седмица" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Потребителски" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "потребителски" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Днес" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Начална дата" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Крайна дата" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Обновяване" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" "Базата за търсене не е актуализирана повече от 7 дни. Актуализиране сега ?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Тип файл" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "колона" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Променен" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Избери директория" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Компактен списък" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Миниатюри" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Точно съвпадение" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "Обнови _индекса за търсене…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "Относно" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Актуализиране на базата от данни" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Отключване" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Обновена:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -266,39 +223,39 @@ "За по- бързо търсене е необходимо да бъде актуализирана базата с данни.\n" "Това действие изисква администраторски права." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Използвай големи икони" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Използвай умалени изображения" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Покажи времето в ISO формат" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -311,11 +268,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -366,17 +323,17 @@ msgid "\"%s\" could not be saved." msgstr "«%s» не може да се съхрани." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "«%s» не може да се изтрие." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Съхрани «%s» като…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -385,82 +342,82 @@ "Сигурен ли сте, че искате да\n" "изтрите завинаги \"%s\"?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Ако изтриете файла, той ще е безвъзвратно изгубен." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Име на файла" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Размер на файла" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Местоположение" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Преглед" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Не са открити файлове." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -501,11 +458,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -514,66 +471,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -635,3 +585,9 @@ #~ msgid "_Show Advanced Settings" #~ msgstr "Покажи _разширените настройки" + +#~ msgid "column" +#~ msgstr "колона" + +#~ msgid "custom" +#~ msgstr "потребителски" diff -Nru catfish-unstable-1.3.4/po/ca.po catfish-unstable-1.4.2/po/ca.po --- catfish-unstable-1.3.4/po/ca.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/ca.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,24 +7,24 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" -"PO-Revision-Date: 2015-03-06 13:13+0000\n" -"Last-Translator: Emilio \n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" +"PO-Revision-Date: 2016-02-03 08:18+0000\n" +"Last-Translator: Adolfo Jayme \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Cerca de fitxers Catfish" #: ../catfish.desktop.in.h:2 msgid "File search" -msgstr "" +msgstr "Cerca de fitxers" #: ../catfish.desktop.in.h:3 msgid "Search the file system" @@ -58,7 +58,7 @@ #: ../data/ui/CatfishWindow.ui.h:8 msgid "File Extensions" -msgstr "" +msgstr "Extensions de fitxers" #: ../data/ui/CatfishWindow.ui.h:9 msgid "odt, png, txt" @@ -69,233 +69,191 @@ msgstr "Documents" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Carpetes" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Imatges" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Música" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Vídeos" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Aplicacions" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Altres" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Qualsevol moment" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Aquesta setmana" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Personalitzat" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Vés a avui" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Data d’inici" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Data final" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" -msgstr "Actualitzar" +msgstr "Actualitza" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" +"La base de dades de cerca té més de 7 dies. Voleu actualitzar-la ara?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" +msgstr "Tipus de fitxer" -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Trieu un directori" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Miniatures" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "Coincidència _exacta" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Actualitza l’índex de cerca…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Quant a" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" -msgstr "Actualitza la base de dades de recerca" +msgstr "Actualitza la base de dades de cerca" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" -msgstr "Desbloqueja" +msgstr "Desbloca" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Base de dades:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Actualitzat" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Actulitza la Base de Dades de Recerca" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Inclou els fitxers ocults" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Realitza una cerca de text complet" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +266,11 @@ msgid "%s (invalid encoding)" msgstr "%s (codificació no vàlida)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,17 +319,17 @@ msgid "\"%s\" could not be saved." msgstr "No s’ha pogut desar «%s»." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "No s’ha pogut suprimir «%s»." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Anomena i desa «%s»…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -380,7 +338,7 @@ "Esteu segur que voleu suprimir\n" "permanentment «%s»?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -389,75 +347,75 @@ "Esteu segur que voleu suprimir\n" "permanentment els %i fitxers seleccionats?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Si suprimiu un fitxer, es perdrà permanentment." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Nom del fitxer" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Mida" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Ubicació" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Previsualitza" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Detalls" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Avui" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Ahir" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "No s’ha trobat cap fitxer." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "S’ha trobat un fitxer." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "S’han trobat %i fitxers." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "S’està cercant…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "S’està cercant «%s»" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Resultats de la cerca «%s»" @@ -496,11 +454,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -509,66 +467,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -642,3 +593,36 @@ #~ msgid "Enter file extensions" #~ msgstr "Introduïu extensions de fitxer" + +#~ msgid "videos" +#~ msgstr "vídeos" + +#~ msgid "music" +#~ msgstr "música" + +#~ msgid "images" +#~ msgstr "imatges" + +#~ msgid "applications" +#~ msgstr "aplicacions" + +#~ msgid "folders" +#~ msgstr "carpetes" + +#~ msgid "documents" +#~ msgstr "documents" + +#~ msgid "column" +#~ msgstr "columna" + +#~ msgid "week" +#~ msgstr "setmana" + +#~ msgid "custom" +#~ msgstr "personalitzat" + +#~ msgid "any" +#~ msgstr "qualsevol" + +#~ msgid "other" +#~ msgstr "d’altres" diff -Nru catfish-unstable-1.3.4/po/cs.po catfish-unstable-1.4.2/po/cs.po --- catfish-unstable-1.3.4/po/cs.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/cs.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2014-11-03 10:41+0000\n" "Last-Translator: Petr Šimáček \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Vyhledávač souborů Catfish" @@ -69,195 +69,152 @@ msgstr "Dokumenty" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Složky" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Obrázky" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Hudba" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Videa" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Aplikace" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Jiný" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Kdykoliv" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Tento týden" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Vlastní" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Přejít na dnešek" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Počáteční datum" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Koncové datum" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Obnovit" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 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:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Změněno" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Vyber složku" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Kompaktní seznam" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Náhledy" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Přesná shoda" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Obnovit vyhledávací index…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_O aplikaci" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Obnovit databázi vyhledávání" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Odemknout" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Databáze:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Obnoveno:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Obnovit databázi vyhledávání" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -265,39 +222,39 @@ "Pro rychlejší výsledky vyhledávání musí být vyhledávací databáze obnovena.\n" "To vyžaduje práva administrátora." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Použití: %prog [volby] dotaz cesta" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Zobrazit chybové zprávy (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Použít velké ikony" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Použít náhledy" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Zobrazit čas v ISO formatu" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Provést přesné shody" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Zahrnout skryté soubory" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Provést fulltextové hledání" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -311,11 +268,11 @@ msgid "%s (invalid encoding)" msgstr "%s (neplatné kódování)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Nikdy" @@ -366,17 +323,17 @@ msgid "\"%s\" could not be saved." msgstr "\"%s\" nemohlo být uloženo." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" nemohlo být vymazáno." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Uložit \"%s\" jako…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -385,7 +342,7 @@ "Jste si jisti, že chcete \n" "trvale smazat \"%s\"?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -394,75 +351,75 @@ "Jste si jisti, že chcete \n" "trvale smazat \"%i\" označených souborů?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Smažete-li soubor, bude nenávratně ztracen." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Jméno souboru" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Velikost" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Umístění" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Náhled" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Podrobnosti" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Dnes" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "včera" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nebyly nalezeny žádné soubory." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Nalezen jeden soubor" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i souborů bylo nalezeno." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bajty" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Hledá se…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Vyhledává se \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Výsledek hledání \"%s\"" @@ -505,11 +462,11 @@ "Program '%s' vám dovolí\n" "upravit základní části systému." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Univerzální nástroj pro hledání souborů" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -523,36 +480,29 @@ "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 development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" "Toto vydání opravuje dvě nové chyby a zahrnuje aktualizované překlady." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -560,7 +510,7 @@ "Toto vydání opravuje chybu, při které se na některých systémech aplikace " "nespustila." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -570,7 +520,7 @@ "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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -578,7 +528,7 @@ "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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -587,7 +537,7 @@ "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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -595,7 +545,7 @@ "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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/de.po catfish-unstable-1.4.2/po/de.po --- catfish-unstable-1.3.4/po/de.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/de.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" -"PO-Revision-Date: 2015-10-30 21:18+0000\n" -"Last-Translator: Daniel Kessel \n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" +"PO-Revision-Date: 2016-03-25 03:16+0000\n" +"Last-Translator: Tobias Bannert \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish-Dateisuche" @@ -69,195 +69,152 @@ msgstr "Dokumente" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "Dokumente" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Ordner" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "Ordner" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Bilder" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "Bilder" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Musik" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "Musik" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Videos" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "Videos" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Anwendungen" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "Anwendungen" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Andere" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "Andere" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Beliebige Zeit" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "Beliebige Zeit" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Diese Woche" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "Woche" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" -msgstr "Benutzerdefiniert" +msgstr "Angepasst" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "benutzerdefiniert" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Zum heutigen Tag gehen" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Anfangsdatum" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Enddatum" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Aktualisieren" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 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:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Dateityp" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "Spalte" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Verändert" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" -msgstr "Geben Sie oben Ihre Abfrage ein, um Ihre Dateien zu finden" +msgstr "Bitte oben Ihre Abfrage eingeben, um Ihre Dateien zu finden" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " -msgstr "oder klicken Sie auf das " +msgstr "oder auf das " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." -msgstr " Symbol für mehr Optionen." +msgstr " Symbol für mehr Optionen klicken." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" -msgstr "Verzeichnis wählen" +msgstr "Verzeichnis auswählen" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Kompakte Liste" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Vorschaubilder" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "_Verborgene Dateien anzeigen" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" -msgstr "Dur_chsuche Dateiinhalte" +msgstr "_Dateiinhalte suchen" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" -msgstr "_Exakter Treffer" +msgstr "_Genaue Übereinstimmung" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" -msgstr "_Zeige Seitenleiste" +msgstr "Seitenleiste _anzeigen" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Suchindex aktualisieren …" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Info" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Suchdatenbank aktualisieren" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Entsprerren" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Datenbank:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Aktualisiert:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Suchdatenbank aktualisieren" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -265,39 +222,39 @@ "Für schnellere Suchergebnisse, muss die Suchdatenbank aufgefrischt werden.\n" "Dieser Vorgang benötigt Systemverwalterrechte." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Nutzung: %prog [Optionen] Pfad Suchbegriff" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Fehlerdiagnosenachrichten anzeigen (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Große Symbole verwenden" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Vorschaubilder verwenden" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Zeit im ISO-Format anzeigen" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Exakte Suche" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Verborgene Dateien einbeziehen" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Volltextsuche" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -311,11 +268,11 @@ msgid "%s (invalid encoding)" msgstr "%s (ungültige Kodierung)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Unbekannt" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Niemals" @@ -366,17 +323,17 @@ msgid "\"%s\" could not be saved." msgstr "»%s« konnte nicht gespeichert werden." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "»%s« konnte nicht gelöscht werden." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "»%s« speichern unter …" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -385,7 +342,7 @@ "Soll »%s« wirklich dauerhaft \n" "gelöscht werden?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -394,77 +351,77 @@ "Sollen die %i ausgewählten Dateien wirklich \n" "dauerthaft gelöscht werden?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Wenn Sie eine Datei löschen, ist sie dauerhaft verloren." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Dateiname" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Größe" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Ort" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Vorschau" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Details" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Heute" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Gestern" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Keine Dateien gefunden." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -"Versuchen Sie, Ihre Suche weniger spezifisch zu machen\n" +"Versuchen Sie, Ihre Suche weniger genau zu machen\n" "oder versuchen Sie ein anderes Verzeichnis." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 Datei gefunden." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i Dateien gefunden." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "Bytes" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Suche läuft …" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Ergebnisse werden angezeigt, sobald sie gefunden werden." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Nach »%s« wird gesucht" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Suchergebnisse für »%s«" @@ -507,11 +464,11 @@ "Die Anwendung »%s« ermöglicht die\n" "Veränderung von wesentlichen Teilen Ihres Betriebssystems." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Vielseitiges Dateisuchwerkzeug" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -526,39 +483,30 @@ "Ä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 development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"Diese Entwicklungsveröffentlichung beinhaltet eine deutlich aufgefrischte " -"Oberfläche, verbessert die Suchgeschwindigkeit und behebt mehrere Fehler" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" "Diese Version behebt zwei neue Fehler und enthält aktualisierte " "Übersetzungen." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -566,7 +514,7 @@ "Diese Version behebt einen Rückschritt, bei dem es der Anwendung nicht " "möglich ist, auf einigen Systemen, zu starten." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -577,7 +525,7 @@ "Suchdatenbank nicht mehr aktuell ist und die Dialoge, die verwendet werden, " "um die Datenbank zu aktualisieren, wurden verbessert." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -585,7 +533,7 @@ "Diese Version behebt zwei Probleme, wo »locate« nicht richtig ausgeführt " "wurde und verbessert die Behandlung von fehlenden symbolischen Symbole." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -594,7 +542,7 @@ "bereinigt nicht benutzten Code und behebt mögliche Probleme mit der Liste " "und Elementauswahl." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -602,7 +550,7 @@ "Diese Version behebt eine mögliches Sicherheitsproblem beim Programmstart " "und einen Rückschritt bei der Auswahl mehrerer Elemente." -#: ../data/appdata/catfish.appdata.xml.in.h:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -689,3 +637,36 @@ #~ msgid "_Hidden Files" #~ msgstr "_Verborgene Dateien" + +#~ msgid "music" +#~ msgstr "Musik" + +#~ msgid "images" +#~ msgstr "Bilder" + +#~ msgid "applications" +#~ msgstr "Anwendungen" + +#~ msgid "videos" +#~ msgstr "Videos" + +#~ msgid "folders" +#~ msgstr "Ordner" + +#~ msgid "documents" +#~ msgstr "Dokumente" + +#~ msgid "week" +#~ msgstr "Woche" + +#~ msgid "column" +#~ msgstr "Spalte" + +#~ msgid "any" +#~ msgstr "Beliebige Zeit" + +#~ msgid "other" +#~ msgstr "Andere" + +#~ msgid "custom" +#~ msgstr "angepasst" diff -Nru catfish-unstable-1.3.4/po/el.po catfish-unstable-1.4.2/po/el.po --- catfish-unstable-1.3.4/po/el.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/el.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,18 +7,18 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-11-20 22:12+0000\n" "Last-Translator: Michael Misirlis \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" "Language: el\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Αναζήτηση αρχείων Catfish" @@ -70,196 +70,153 @@ msgstr "Έγγραφα" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "έγγραφα" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Φάκελοι" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "φάκελοι" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Εικόνες" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "εικόνες" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Μουσική" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "μουσική" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Βίντεο" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "βίντεο" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Εφαρμογές" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "εφαρμογές" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Άλλο" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "άλλο" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Οποιαδήποτε ώρα" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "οποιοδήποτε" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Αυτήν την εβδομάδα" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "εβδομάδα" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Προσαρμοσμένη" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "προσαρμοσμένο" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Μετάβαση στο σήμερα" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Αρχική ημερομηνία" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Τελική ημερομηνία" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Ανανέωση" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" "Η βάση δεδομένων αναζήτησης είναι παλαιότερη από 7 ημέρες. Να ανανεωθεί τώρα;" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Τύπος Αρχείου" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "στήλη" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Τροποποιήθηκε" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Δώστε την αναζήτησή σας παραπάνω για να βρείτε τα αρχεία σας" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "ή κάντε κλικ στο " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " εικονίδιο για περισσότερες επιλογές." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Επιλογή ενός καταλόγου" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Συμπαγής λίστα" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Μικρογραφίες" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Εμφάνισ_η Κρυφών Αρχείων" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Αναζήτηση στα Περιεχόμενα Αρ_χείου" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "Ακριβές ταίριασμα" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Εμφάνι_ση Πλευρικής Μπάρας" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Ενημέρωση αναζήτησης ευρετηρίου ..." -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Περί" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Ανανέωση Βάσης Δεδομένων Αναζήτησης" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Ξεκλείδωμα" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Βάση Δεδομένων:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Ανανεώθηκε:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Ανανέωση Βάσης Δεδομένων Αναζήτησης" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -268,41 +225,41 @@ "ανανεωθεί.\n" "Αυτή η λειτουργία απαιτεί δικαιώματα διαχειριστή." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Χρήση: %πρόγραμμα [επιλογές] διαδρομές αναζήτηση" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" "Εμφάνιση μηνυμάτων αποσφαλμάτωσης (με -vv εμφανίζονται και μηνύματα για " "catfish_lib)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Χρήση μεγάλων εικονιδίων" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Χρήση μικρογραφιών" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Εμφάνιση ώρας σε μορφή ISO" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Εκτέλεση ακριβής αντιστοιχίας" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Να συμπεριλαμβάνονται κρυφά αρχεία" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Εκτέλεση αναζήτησης πλήρους κειμένου" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -317,11 +274,11 @@ msgid "%s (invalid encoding)" msgstr "%s (άκυρη κωδικοποίηση)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Άγνωστο" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Ποτέ" @@ -372,17 +329,17 @@ msgid "\"%s\" could not be saved." msgstr "Αδυναμία αποθήκευσης \"%s\"." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "Αδυναμία διαγραφής \"%s\"." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Αποθήκευση \"%s\" ως..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -391,7 +348,7 @@ "Είστε σίγουροι ότι θέλετε να \n" "διαγράψετε μόνιμα το \"%s\";" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -400,43 +357,43 @@ "Είστε σίγουροι ότι θέλετε να \n" "διαγράψετε μόνιμα τα %i επιλεγμένα αρχεία;" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Εάν διαγράψετε ένα αρχείο, χάνεται μόνιμα." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Όνομα αρχείου" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Μέγεθος" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Τοποθεσία" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Προεπισκόπιση" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Λεπτομέρειες" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Σήμερα" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Εχθές" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Δεν βρέθηκαν αρχεία." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -444,33 +401,33 @@ "Δοκιμάστε να κάνετε την αναζήτησή σας πιο γενική\n" "ή δοκιμάστε έναν άλλο φάκελο." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Βρέθηκε 1 αρχείο." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Βρέθηκαν %i αρχεία." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Αναζήτηση…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Τα αποτελέσματα θα εμφανίζονται αμέσως μόλις βρίσκονται." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Αναζήτηση για \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Αποτελέσματα αναζήτησης για \"%s\"" @@ -513,11 +470,11 @@ "Η εφαρμογή '%s' σας επιτρέπει να\n" "αλλάξετε βασικά μέρη του συστήματός σας." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Ευέλικτο εργαλείο αναζήτησης αρχείων" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -532,45 +489,30 @@ "του αρχείου, οι χρήστες δεν θα εξαρτώνται πλέον από τον διαχειριστή αρχείων " "ή από τις οργανωτικές τους ικανότητες." -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" -"Αυτή η έκδοση ανάπτυξης αποκρύπτει την έξοδο της εντολής `which` κατά την " -"εκκίνηση, και περιλαμβάνει ανανεωμένες μεταφράσεις." - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" -"Αυτή η έκδοση ανάπτυξης εντοπίζει τον σωστό φάκελο μικρογραφιών που πρέπει " -"να χρησιμοποιηθεί, και περιλαμβάνει ανανεωμένες μεταφράσεις." #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" -"Αυτή η έκδοση ανάπτυξης προσθέτει μία νέα ρύθμιση για εμφάνιση γραμμών " -"πληροφοριών, και διορθώνει διάφορα σφάλματα." #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"Αυτή η έκδοση ανάπτυξης περιλαμβάνει μια σημαντικής ανανέωση της διεπαφής " -"χρήστη, βελτιώνει την ταχύτητα αναζήτησης, και διορθώνει διάφορα σφάλματα" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" "Αυτή η έκδοση διορθώνει δύο νέα σφάλματα και περιλαμβάνει ενημερωμένες " "μεταφράσεις." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -578,7 +520,7 @@ "Αυτή η έκδοση διορθώνει ένα σφάλμα που επανεμφανίστηκε, όπου η εφαρμογή δεν " "είναι σε θέση να ξεκινήσει σε ορισμένα συστήματα." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -590,7 +532,7 @@ "βελτιωθεί τα παράθυρα διαλόγου που χρησιμοποιούνται για την ενημέρωση της " "βάσης δεδομένων." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -599,7 +541,7 @@ "να εκτελεστεί σωστά και βελτιώνει τη διαχείριση συμβολικών εικονιδίων που " "λείπουν." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -608,7 +550,7 @@ "κωδικού πρόσβασης, καθαρίζει αχρησιμοποίητο κώδικα, και διορθώνει πιθανά " "ζητήματα με την επιλογή λίστας και στοιχείων." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -617,7 +559,7 @@ "προγράμματος και διορθώνει ένα σφάλμα που επανεμφανίστηκε σε σχέση με την " "επιλογή πολλών στοιχείων." -#: ../data/appdata/catfish.appdata.xml.in.h:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -670,3 +612,36 @@ #~ msgid "File Type" #~ msgstr "Τύπος Αρχείου" + +#~ msgid "documents" +#~ msgstr "έγγραφα" + +#~ msgid "folders" +#~ msgstr "φάκελοι" + +#~ msgid "images" +#~ msgstr "εικόνες" + +#~ msgid "music" +#~ msgstr "μουσική" + +#~ msgid "videos" +#~ msgstr "βίντεο" + +#~ msgid "applications" +#~ msgstr "εφαρμογές" + +#~ msgid "other" +#~ msgstr "άλλο" + +#~ msgid "week" +#~ msgstr "εβδομάδα" + +#~ msgid "custom" +#~ msgstr "προσαρμοσμένο" + +#~ msgid "column" +#~ msgstr "στήλη" + +#~ msgid "any" +#~ msgstr "οποιοδήποτε" diff -Nru catfish-unstable-1.3.4/po/en_AU.po catfish-unstable-1.4.2/po/en_AU.po --- catfish-unstable-1.3.4/po/en_AU.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/en_AU.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-11-22 20:29+0000\n" "Last-Translator: Jackson Doak \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish File Search" @@ -69,195 +69,152 @@ msgstr "Documents" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "documents" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Folders" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "folders" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Images" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "images" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Music" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "music" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Videos" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "videos" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Applications" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "applications" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Other" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "other" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Any time" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "any" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "This week" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "week" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Custom" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "custom" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Go to Today" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Start Date" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "End Date" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Update" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "The search database is more than 7 days old. Update now?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "File Type" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "column" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Modified" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Enter your query above to find your files" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "or click the " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " icon for more options." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Select a Directory" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Compact List" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Thumbnails" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Show _Hidden Files" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Search File _Contents" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Exact Match" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Show _Sidebar" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Update Search Index…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_About" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Update Search Database" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Unlock" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Database:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Updated:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Update Search Database" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -265,39 +222,39 @@ "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Usage: %prog [options] path query" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Show debug messages (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Use large icons" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Use thumbnails" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Display time in ISO format" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Perform exact match" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Include hidden files" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Perform fulltext search" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -312,11 +269,11 @@ msgid "%s (invalid encoding)" msgstr "%s (invalid encoding)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Unknown" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Never" @@ -367,17 +324,17 @@ msgid "\"%s\" could not be saved." msgstr "\"%s\" could not be saved." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" could not be deleted." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Save \"%s\" as…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -386,7 +343,7 @@ "Are you sure that you want to \n" "permanently delete \"%s\"?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -395,75 +352,75 @@ "Are you sure that you want to \n" "permanently delete the %i selected files?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "If you delete a file, it is permanently lost." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Filename" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Size" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Location" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Preview" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Details" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Today" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Yesterday" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "No files found." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 file found." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i files found." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Searching…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Results will be displayed as soon as they are found." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Searching for \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Search results for \"%s\"" @@ -506,11 +463,11 @@ "The application '%s' lets you\n" "modify essential parts of your system." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Versatile file searching tool" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -524,43 +481,28 @@ "date, file type, and file contents, users will no longer be dependent on the " "file manager or organization skills." -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "This release fixes two new bugs and includes updated translations." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -568,7 +510,7 @@ "This release fixes a regression where the application is unable to start on " "some systems." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -578,7 +520,7 @@ "supported. An InfoBar is now displayed when the search database is outdated, " "and the dialogs used to update the database have been improved." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -586,7 +528,7 @@ "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -594,7 +536,7 @@ "This stable release improved the reliability of the password dialog, cleaned " "up unused code, and fixed potential issues with the list and item selection." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -602,7 +544,7 @@ "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." -#: ../data/appdata/catfish.appdata.xml.in.h:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -687,3 +629,36 @@ #~ msgid "Catfish could not find the default file manager." #~ msgstr "Catfish could not find the default file manager." + +#~ msgid "music" +#~ msgstr "music" + +#~ msgid "images" +#~ msgstr "images" + +#~ msgid "folders" +#~ msgstr "folders" + +#~ msgid "documents" +#~ msgstr "documents" + +#~ msgid "week" +#~ msgstr "week" + +#~ msgid "applications" +#~ msgstr "applications" + +#~ msgid "videos" +#~ msgstr "videos" + +#~ msgid "any" +#~ msgstr "any" + +#~ msgid "other" +#~ msgstr "other" + +#~ msgid "column" +#~ msgstr "column" + +#~ msgid "custom" +#~ msgstr "custom" diff -Nru catfish-unstable-1.3.4/po/eo.po catfish-unstable-1.4.2/po/eo.po --- catfish-unstable-1.3.4/po/eo.po 1970-01-01 00:00:00.000000000 +0000 +++ catfish-unstable-1.4.2/po/eo.po 2016-04-01 03:28:07.000000000 +0000 @@ -0,0 +1,551 @@ +# Esperanto translation for catfish-search +# Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 +# This file is distributed under the same license as the catfish-search package. +# FIRST AUTHOR , 2016. +# +msgid "" +msgstr "" +"Project-Id-Version: catfish-search\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" +"PO-Revision-Date: 2016-02-05 09:48+0000\n" +"Last-Translator: Robin van der Vliet \n" +"Language-Team: Esperanto \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" + +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 +#: ../catfish/CatfishWindow.py:639 +msgid "Catfish File Search" +msgstr "Dosierserĉilo Catfish" + +#: ../catfish.desktop.in.h:2 +msgid "File search" +msgstr "Dosierserĉilo" + +#: ../catfish.desktop.in.h:3 +msgid "Search the file system" +msgstr "Serĉi la dosiersistemon" + +#: ../data/ui/AboutCatfishDialog.ui.h:1 +msgid "Catfish is a versatile file searching tool." +msgstr "Catfish estas kapabla ilon por dosierserĉo." + +#: ../data/ui/CatfishWindow.ui.h:1 +msgid "_Open" +msgstr "_Malfermi" + +#. This menu contains the menu items: _Open, Show in _File Manager, _Copy Location, Save _As, _Delete +#: ../data/ui/CatfishWindow.ui.h:3 +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:5 +msgid "_Copy Location" +msgstr "_Kopii lokon" + +#: ../data/ui/CatfishWindow.ui.h:6 +msgid "_Save as..." +msgstr "Kon_servi kiel..." + +#: ../data/ui/CatfishWindow.ui.h:7 +msgid "_Delete" +msgstr "_Forigi" + +#: ../data/ui/CatfishWindow.ui.h:8 +msgid "File Extensions" +msgstr "Dosiersufiksoj" + +#: ../data/ui/CatfishWindow.ui.h:9 +msgid "odt, png, txt" +msgstr "odt, png, txt" + +#: ../data/ui/CatfishWindow.ui.h:10 +msgid "Documents" +msgstr "Dokumentoj" + +#: ../data/ui/CatfishWindow.ui.h:11 +msgid "Folders" +msgstr "Dosierujoj" + +#: ../data/ui/CatfishWindow.ui.h:12 +msgid "Images" +msgstr "Bildoj" + +#: ../data/ui/CatfishWindow.ui.h:13 +msgid "Music" +msgstr "Muziko" + +#: ../data/ui/CatfishWindow.ui.h:14 +msgid "Videos" +msgstr "Videoj" + +#: ../data/ui/CatfishWindow.ui.h:15 +msgid "Applications" +msgstr "Aplikaĵoj" + +#: ../data/ui/CatfishWindow.ui.h:16 +msgid "Other" +msgstr "Aliaj" + +#: ../data/ui/CatfishWindow.ui.h:17 +msgid "Any time" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:18 +msgid "This week" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:19 +msgid "Custom" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:20 +msgid "Go to Today" +msgstr "Iri al hodiaŭ" + +#: ../data/ui/CatfishWindow.ui.h:21 +msgid "Start Date" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:22 +msgid "End Date" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 +msgid "Catfish" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:24 +msgid "Update" +msgstr "Ĝisdatigi" + +#: ../data/ui/CatfishWindow.ui.h:25 +msgid "The search database is more than 7 days old. Update now?" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:26 +msgid "File Type" +msgstr "Dosiertipo" + +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 +msgid "Modified" +msgstr "Ŝanĝita" + +#: ../data/ui/CatfishWindow.ui.h:29 +msgctxt "" +"Full text: Enter your query above to find your files or click the [icon] " +"icon for more options." +msgid "Enter your query above to find your files" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:30 +msgctxt "" +"Full text: Enter your query above to find your files or click the [icon] " +"icon for more options." +msgid "or click the " +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:31 +msgctxt "" +"Full text: Enter your query above to find your files or click the [icon] " +"icon for more options." +msgid " icon for more options." +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:32 +msgid "Select a Directory" +msgstr "Elektu dosierujon" + +#: ../data/ui/CatfishWindow.ui.h:33 +msgid "Compact List" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:34 +msgid "Thumbnails" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:35 +msgid "Show _Hidden Files" +msgstr "Montri _kaŝitajn dosierojn" + +#: ../data/ui/CatfishWindow.ui.h:36 +msgid "Search File _Contents" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:37 +msgid "_Exact Match" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:38 +msgid "Show _Sidebar" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:39 +msgid "_Update Search Index…" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:40 +msgid "_About" +msgstr "_Pri" + +#: ../data/ui/CatfishWindow.ui.h:41 +msgid "Update Search Database" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:42 +msgid "Unlock" +msgstr "Malŝlosi" + +#: ../data/ui/CatfishWindow.ui.h:43 +msgid "Database:" +msgstr "Datumbazo:" + +#: ../data/ui/CatfishWindow.ui.h:44 +msgid "Updated:" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:45 +msgid "Update Search Database" +msgstr "" + +#: ../data/ui/CatfishWindow.ui.h:46 +msgid "" +"For faster search results, the search database needs to be refreshed.\n" +"This action requires administrative rights." +msgstr "" + +#: ../catfish/__init__.py:35 +msgid "Usage: %prog [options] path query" +msgstr "" + +#: ../catfish/__init__.py:40 +msgid "Show debug messages (-vv debugs catfish_lib also)" +msgstr "" + +#: ../catfish/__init__.py:43 +msgid "Use large icons" +msgstr "" + +#: ../catfish/__init__.py:45 +msgid "Use thumbnails" +msgstr "" + +#: ../catfish/__init__.py:47 +msgid "Display time in ISO format" +msgstr "" + +#: ../catfish/__init__.py:51 +msgid "Perform exact match" +msgstr "" + +#: ../catfish/__init__.py:53 +msgid "Include hidden files" +msgstr "" + +#: ../catfish/__init__.py:55 +msgid "Perform fulltext search" +msgstr "" + +#: ../catfish/__init__.py:57 +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:82 +#, python-format +msgid "%s (invalid encoding)" +msgstr "" + +#: ../catfish/CatfishWindow.py:248 +msgid "Unknown" +msgstr "Nekonata" + +#: ../catfish/CatfishWindow.py:252 +msgid "Never" +msgstr "Neniam" + +#: ../catfish/CatfishWindow.py:607 +msgid "An error occurred while updating the database." +msgstr "" + +#: ../catfish/CatfishWindow.py:609 +msgid "Authentication failed." +msgstr "Aŭtentokontrolo malsukcesis." + +#: ../catfish/CatfishWindow.py:615 +msgid "Authentication cancelled." +msgstr "" + +#: ../catfish/CatfishWindow.py:621 +msgid "Search database updated successfully." +msgstr "" + +#. Set the dialog status to running. +#: ../catfish/CatfishWindow.py:696 +msgid "Updating..." +msgstr "" + +#: ../catfish/CatfishWindow.py:730 +msgid "Stop Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:731 +msgid "" +"Search is in progress...\n" +"Press the cancel button or the Escape key to stop." +msgstr "" + +#: ../catfish/CatfishWindow.py:740 +msgid "Begin Search" +msgstr "" + +#: ../catfish/CatfishWindow.py:927 +#, python-format +msgid "\"%s\" could not be opened." +msgstr "" + +#: ../catfish/CatfishWindow.py:973 +#, python-format +msgid "\"%s\" could not be saved." +msgstr "" + +#: ../catfish/CatfishWindow.py:990 +#, python-format +msgid "\"%s\" could not be deleted." +msgstr "" + +#: ../catfish/CatfishWindow.py:1030 +#, python-format +msgid "Save \"%s\" as…" +msgstr "Konservi \"%s\" kiel…" + +#: ../catfish/CatfishWindow.py:1065 +#, python-format +msgid "" +"Are you sure that you want to \n" +"permanently delete \"%s\"?" +msgstr "" + +#: ../catfish/CatfishWindow.py:1069 +#, python-format +msgid "" +"Are you sure that you want to \n" +"permanently delete the %i selected files?" +msgstr "" + +#: ../catfish/CatfishWindow.py:1072 +msgid "If you delete a file, it is permanently lost." +msgstr "Se vi forigas dosieron, ĝi estas definitive perdata." + +#: ../catfish/CatfishWindow.py:1095 +msgid "Filename" +msgstr "Dosiernomo" + +#: ../catfish/CatfishWindow.py:1097 +msgid "Size" +msgstr "Grandeco" + +#: ../catfish/CatfishWindow.py:1099 +msgid "Location" +msgstr "Loko" + +#: ../catfish/CatfishWindow.py:1111 +msgid "Preview" +msgstr "Antaŭrigardo" + +#: ../catfish/CatfishWindow.py:1119 +msgid "Details" +msgstr "Detaloj" + +#: ../catfish/CatfishWindow.py:1339 +msgid "Today" +msgstr "Hodiaŭ" + +#: ../catfish/CatfishWindow.py:1341 +msgid "Yesterday" +msgstr "Hieraŭ" + +#: ../catfish/CatfishWindow.py:1420 +msgid "No files found." +msgstr "" + +#: ../catfish/CatfishWindow.py:1422 +msgid "" +"Try making your search less specific\n" +"or try another directory." +msgstr "" + +#: ../catfish/CatfishWindow.py:1428 +msgid "1 file found." +msgstr "1 dosiero trovita." + +#: ../catfish/CatfishWindow.py:1430 +#, python-format +msgid "%i files found." +msgstr "%i dosieroj trovitaj." + +#: ../catfish/CatfishWindow.py:1436 +msgid "bytes" +msgstr "oktetoj" + +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 +msgid "Searching…" +msgstr "Serĉado…" + +#: ../catfish/CatfishWindow.py:1576 +msgid "Results will be displayed as soon as they are found." +msgstr "" + +#: ../catfish/CatfishWindow.py:1581 +#, python-format +msgid "Searching for \"%s\"" +msgstr "" + +#: ../catfish/CatfishWindow.py:1670 +#, python-format +msgid "Search results for \"%s\"" +msgstr "" + +#: ../catfish_lib/SudoDialog.py:139 +msgid "Password Required" +msgstr "Pasvorto bezonata" + +#: ../catfish_lib/SudoDialog.py:176 +msgid "Incorrect password... try again." +msgstr "Pasvorto malkorekta… Provu denove." + +#: ../catfish_lib/SudoDialog.py:186 +msgid "Password:" +msgstr "Pasvorto:" + +#. Buttons +#: ../catfish_lib/SudoDialog.py:197 +msgid "Cancel" +msgstr "Nuligi" + +#: ../catfish_lib/SudoDialog.py:200 +msgid "OK" +msgstr "Bone" + +#: ../catfish_lib/SudoDialog.py:221 +msgid "" +"Enter your password to\n" +"perform administrative tasks." +msgstr "" + +#: ../catfish_lib/SudoDialog.py:223 +#, python-format +msgid "" +"The application '%s' lets you\n" +"modify essential parts of your system." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:2 +msgid "Versatile file searching tool" +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:3 +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:4 +msgid "" +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:5 +msgid "" +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:6 +msgid "This release fixes two new bugs and includes updated translations." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:7 +msgid "" +"This release fixes a regression where the application is unable to start on " +"some systems." +msgstr "" + +#: ../data/appdata/catfish.appdata.xml.in.h:8 +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:9 +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:10 +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:11 +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:12 +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 "music" +#~ msgstr "muziko" + +#~ msgid "images" +#~ msgstr "bildoj" + +#~ msgid "folders" +#~ msgstr "dosierujoj" + +#~ msgid "documents" +#~ msgstr "dokumentoj" + +#~ msgid "week" +#~ msgstr "semajno" + +#~ msgid "applications" +#~ msgstr "aplikaĵoj" + +#~ msgid "videos" +#~ msgstr "videoj" + +#~ msgid "other" +#~ msgstr "aliaj" + +#~ msgid "column" +#~ msgstr "kolumno" diff -Nru catfish-unstable-1.3.4/po/es.po catfish-unstable-1.4.2/po/es.po --- catfish-unstable-1.3.4/po/es.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/es.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" -"PO-Revision-Date: 2015-09-21 17:38+0000\n" -"Last-Translator: Eugenio González \n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" +"PO-Revision-Date: 2016-02-03 08:16+0000\n" +"Last-Translator: Adolfo Jayme \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Buscador de archivos Catfish" @@ -69,197 +69,154 @@ msgstr "Documentos" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "documentos" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Carpetas" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "carpetas" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Imágenes" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "imágenes" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Música" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "música" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Vídeos" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "vídeos" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Aplicaciones" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "aplicaciones" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Otro" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "otro" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "En cualquier momento" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "cualquiera" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Esta semana" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "semana" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Personalizado" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "personalizado" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Ir a hoy" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Fecha de inicio" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Fecha de finalización" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Actualizar" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" "La base de datos de búsquedas tiene más de 7 días de antigüedad. " "¿Actualizarla?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Tipo de archivo" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "columna" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Modificado" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Introduzca su consulta arriba para encontrar sus archivos" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "o pulse en el icono " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " para más opciones." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Seleccione un directorio" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Lista compacta" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Miniaturas" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Mostrar archivos _ocultos" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Buscar en _contenido del archivo" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "Coincidencia _exacta" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Mostrar barra _lateral" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Actualizar el índice de búsqueda…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Acerca de" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Actualizar la base de datos para la búsqueda" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Desbloquear" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Base de datos:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Actualizar:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Actualizar la base de datos para la búsqueda" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -267,39 +224,39 @@ "Para obtener mejores resultados, la base de datos necesita ser actualizada.\n" "Esta acción requiere de permisos administrativos." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Uso: %prog [opciones] directorio consulta" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Mostrar mensajes de depuración (-vv depura catfish_lib también)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Usar iconos grandes" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Usar miniaturas" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Mostrar la hora en formato ISO" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Realizar coincidencia exacta" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Incluir archivos ocultos" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Realizar búsqueda de texto completo" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -314,11 +271,11 @@ msgid "%s (invalid encoding)" msgstr "%s (codif. no válida)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Desconocido" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Nunca" @@ -369,71 +326,71 @@ msgid "\"%s\" could not be saved." msgstr "No se pudo guardar «%s»." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "No se pudo eliminar «%s»." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Guardar «%s» como…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -"¿Está seguro de que quiere eliminar \n" +"¿Confirma que quiere eliminar \n" "permanentemente «%s»?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -"¿Está seguro de que quiere eliminar \n" +"¿Confirma que quiere eliminar \n" "permanentemente los %i archivos seleccionados?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Si elimina un archivo, lo perderá permanentemente." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Nombre de archivo" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Tamaño" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Ubicación" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Previsualización" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Detalles" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Hoy" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Ayer" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "No se han encontrado archivos." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -441,33 +398,33 @@ "Trate de hacer su búsqueda menos específica \n" "o inténtelo en otro directorio." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Se ha encontrado 1 archivo." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Se han encontrado %i archivos." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Buscando…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Los resultados se mostrarán tan pronto como se encuentren." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Buscando «%s»" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Resultados de búsqueda para «%s»" @@ -510,11 +467,11 @@ "La aplicación «%s» le permite\n" "modificar partes esenciales del sistema." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Herramienta versátil para buscar archivos" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -529,38 +486,29 @@ "modificación, tipo de archivo y contenido de archivo, los usuarios ya no " "dependerán del administrador de archivos o habilidades organizativas." -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"Esta versión de desarrollo incluye una actualización significativa de " -"interfaz de usuario, mejora la velocidad de búsqueda y corrige varios errores" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" "Esta versión corrige dos errores e incluye traducciones actualizadas." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -568,18 +516,18 @@ "Esta versión corrige una regresión que provocaba que la aplicación no " "iniciara en algunos sistemas." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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 actualización corrige una regresión donde múltiples términos de " -"búsqueda no eran soportados. Una barra de información se muestra ahora " -"cuando la base de datos de búsqueda está desactualizada, y los diálogos " -"utilizados para actualizar la base de datos han sido mejorados." +"Esta publicación corrige una regresión en la compatibilidad con términos de " +"búsqueda múltiples. Ahora se muestra una barra de información cuando la base " +"de datos de búsquedas está desactualizada y se han mejorado los cuadros de " +"diálogo para actualizarla." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -587,7 +535,7 @@ "Esta versión corrige dos problemas que no permitían ejecutar «locate» " "apropiadamente y mejora el manejo de iconos simbólicos faltantes." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -596,7 +544,7 @@ "contraseña, ha eliminado código obsoleto y ha corregido problemas " "relacionados con la lista y la selección de elementos." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -604,7 +552,7 @@ "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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -690,3 +638,36 @@ #~ msgid "Enter search terms and press ENTER" #~ msgstr "Escriba términos de búsqueda y oprima INTRO" + +#~ msgid "music" +#~ msgstr "música" + +#~ msgid "images" +#~ msgstr "imágenes" + +#~ msgid "applications" +#~ msgstr "aplicaciones" + +#~ msgid "videos" +#~ msgstr "vídeos" + +#~ msgid "folders" +#~ msgstr "carpetas" + +#~ msgid "documents" +#~ msgstr "documentos" + +#~ msgid "week" +#~ msgstr "semana" + +#~ msgid "other" +#~ msgstr "otro" + +#~ msgid "column" +#~ msgstr "columna" + +#~ msgid "custom" +#~ msgstr "personalizado" + +#~ msgid "any" +#~ msgstr "cualquiera" diff -Nru catfish-unstable-1.3.4/po/eu.po catfish-unstable-1.4.2/po/eu.po --- catfish-unstable-1.3.4/po/eu.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/eu.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2013-01-11 19:52+0000\n" "Last-Translator: Asier Iturralde Sarasola \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "" @@ -69,233 +69,190 @@ msgstr "Dokumentuak" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Irudiak" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Musika" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Bideoak" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Aplikazioak" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,99 +318,99 @@ msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Fitxategi-izena" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Tamaina" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Kokapena" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Aurrebista" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Ez da fitxategirik aurkitu." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -492,11 +449,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -505,66 +462,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/fi.po catfish-unstable-1.4.2/po/fi.po --- catfish-unstable-1.3.4/po/fi.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/fi.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,18 +7,18 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" -"PO-Revision-Date: 2015-09-11 23:53+0000\n" -"Last-Translator: Pasi Lallinaho \n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" +"PO-Revision-Date: 2016-03-22 11:59+0000\n" +"Last-Translator: Jouni \"rautamiekka\" Järvinen \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" "Language: fi\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish-tiedostohaku" @@ -70,195 +70,152 @@ msgstr "Asiakirjat" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "asiakirjat" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Kansiot" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "kansiot" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Kuvat" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "kuvat" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Musiikki" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "musiikki" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Videot" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "videot" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Sovellukset" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "sovellukset" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Muu" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "muut" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Koska tahansa" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "mitä tahansa" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Tällä viikolla" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "viikko" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Mukautettu" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "mukautettu" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Siirry tähän päivään" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Aloituspäivä" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Päättymispäivä" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Päivitä" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 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:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Tiedostotyyppi" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "sarake" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Muokattu" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Syötä hakusi yllä olevaan kenttään löytääksesi tiedostot" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "tai napsauta " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " -kuvaketta saadaksesi lisätietoja." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Valitse kansio" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Tiivis luettelo" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Pikkukuvat" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Näytä _piilotiedostot" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Hae _tiedostojen sisällöistä" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Tarkka osuma" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Näytä _sivupalkki" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "Päivitä _hakuindeksi" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Tietoja" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Päivitä hakutietokanta" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Avaa lukitus" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Tietokanta:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Päivitetty:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Päivitä hakutietokanta" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -266,40 +223,40 @@ "Jotta voit saada nopeampia hakutuloksia, hakutietokanta pitää päivittää.\n" "Tämä toimito vaatii pääkäyttäjän oikeudet." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Käyttö: %prog [valinnat] polku kysely" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" "Näytä virheilmoitukset (-vv näyttää myös catfish_libin virheilmoitukset)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Käytä suuria kuvakkeita" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Käytä esikatselua" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Näytä aika ISO-muodossa" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Suorita tarkka haku" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Sisällytä piilotiedostot" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Suorita kokotekstihaku" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -313,11 +270,11 @@ msgid "%s (invalid encoding)" msgstr "%s (virheellinen merkistökoodaus)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Tuntematon" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Ei koskaan" @@ -368,17 +325,17 @@ msgid "\"%s\" could not be saved." msgstr "Tiedostoa \"%s\" ei voitu tallentaa." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "Tiedostoa \"%s\" ei voitu poistaa." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Tallenna \"%s\" nimellä..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -387,7 +344,7 @@ "Haluatko varmasti poistaa \n" "kohteen \"%s\" pysyvästi?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -396,43 +353,43 @@ "Haluatko varmasti poistaa \n" "%i tiedostoa pysyvästi?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Jos poistat tiedoston, sitä ei voi palauttaa." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Tiedoston nimi" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Koko" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Sijainti" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Esikatselu" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Tiedot" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Tänään" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Eilen" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Tiedostoja ei löytynyt." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -440,33 +397,33 @@ "Yritä tehdä haustasi vähemmän yksityiskohtainen\n" "tai yritä toista hakemistoa." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Löydettiin 1 tiedosto." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Löydettiin %i tiedostoa." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "tavua" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Haetaan…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Tulokset näytetään heti kun niitä löydetään." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Etsitään \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Hakutulokset haulle \"%s\"" @@ -509,11 +466,11 @@ "Sovellus '%s' sallii sinun\n" "muokata järjestelmäsi olennaisia osia." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Monipuolinen tiedostonhakutyökalu" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -528,66 +485,72 @@ "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 development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" +"Tämä julkaisu korjaa kaksi uutta bugia ja sisältää päivitetyt käännökset." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" +"Tämä julkaisu korjaa regression joka esti sovelluksen käynnistymisen " +"joillain järjestelmillä." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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 "" +"Tämä julkaisu korjaa regression jossa monen hakusanan käyttöä ei enää " +"tuettu. Tietopalkki näytetään nyt kun hakutietokanta on vanhentunut, ja " +"tietokannan päivitysikkunoita parannettiin." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." msgstr "" +"Tämä julkaisu korjaa kaksi ongelmaa jossa locate:a ei suoritettu oikein ja " +"parantaa puuttuvien symboolisten kuvakkeiden käsittelyä." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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 "" +"Tämä vakaa julkaisu parantaa salasanaikkunan luotettavuutta, poistettu " +"käyttämätöntä koodia, ja mahdolliset ongelmat listan ja kohteiden valinnassa " +"korjattu." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." msgstr "" +"Tämä julkaisuu korjaa mahdollisen turvaongelman ohjelman käynnistyksessä ja " +"korjaa regression useiden kohteiden valinnassa." -#: ../data/appdata/catfish.appdata.xml.in.h:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -595,6 +558,11 @@ "distributions. Accessibility was enhanced as all strings have been made " "translatable and keyboard accelerators have been improved." msgstr "" +"Ensimmäinen julkaisu 1.0.x-sarjassa toi piristetyn käyttöliittymän ja " +"korjasi monta pitkäaikaista bugia. Parannukset oletuslupiin poistivat monta " +"varoitusta kun sovellusta pakattiin jakeluihin. Helppokäyttöisyys parani " +"koska kaikki merkkijonot ovat käännettävissä ja näppäimistökiihdyttäjät " +"parannettiin." #~ msgid "Last modified" #~ msgstr "Viimeksi muokattu" @@ -663,3 +631,36 @@ #~ msgid "Locate database updated successfully." #~ msgstr "Locate-tietokanta päivitettiin onnistuneesti." + +#~ msgid "other" +#~ msgstr "muut" + +#~ msgid "music" +#~ msgstr "musiikki" + +#~ msgid "images" +#~ msgstr "kuvat" + +#~ msgid "applications" +#~ msgstr "sovellukset" + +#~ msgid "videos" +#~ msgstr "videot" + +#~ msgid "folders" +#~ msgstr "kansiot" + +#~ msgid "documents" +#~ msgstr "asiakirjat" + +#~ msgid "column" +#~ msgstr "sarake" + +#~ msgid "week" +#~ msgstr "viikko" + +#~ msgid "custom" +#~ msgstr "mukautettu" + +#~ msgid "any" +#~ msgstr "mitä tahansa" diff -Nru catfish-unstable-1.3.4/po/fr.po catfish-unstable-1.4.2/po/fr.po --- catfish-unstable-1.3.4/po/fr.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/fr.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" -"PO-Revision-Date: 2015-12-19 13:57+0000\n" -"Last-Translator: Jean-Marc \n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" +"PO-Revision-Date: 2016-02-26 12:21+0000\n" +"Last-Translator: Charles Monzat \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Recherche de fichiers Catfish" @@ -69,197 +69,154 @@ msgstr "Documents" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "documents" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Dossiers" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "dossiers" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Images" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "images" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Musique" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "musique" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Vidéos" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "vidéos" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Applications" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "applications" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Autre" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "autre" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Date indifférente" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "tout" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Cette semaine" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "semaine" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Personnalisée" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "personnalisée" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Aller à aujourd'hui" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Date de début" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Date de fin" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Mise à jour" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" "La base des données de recherche date de plus de 7 jours. La mettre à jour " "maintenant ?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Type de fichier" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "colonne" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Dernière modification" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Entrez votre recherche ci-dessus pour trouver vos fichiers," -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "ou cliquez sur l'icône " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " pour plus d'options." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Sélectionner un répertoire" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Liste compacte" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Miniatures" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Afficher les fic_hiers masqués" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Rechercher dans le contenu des dossiers" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Expression exacte" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Afficher la barre latérale" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Mettre à jour l'index de recherche..." -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "À _propos" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Mettre à jour la base des données de recherche" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Déverrouiller" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Base de données :" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Mis à jour :" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Mettre à jour la base des données de recherche" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -268,39 +225,39 @@ "recherche a besoin d'être actualisée.\n" "Cette action nécessite les droits administrateurs." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Utilisation : %prog [options] path query" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Afficher les messages de débogage (dont -vv debugs catfish_lib)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Utiliser de grandes icônes" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Utiliser des miniatures" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Afficher le temps au format ISO" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Expression exacte" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Inclure les fichiers masqués" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Rechercher plein texte" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -315,11 +272,11 @@ msgid "%s (invalid encoding)" msgstr "%s (encodage non valide)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Inconnu" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Jamais" @@ -371,17 +328,17 @@ msgid "\"%s\" could not be saved." msgstr "Impossible d'enregistrer « %s »." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "Impossible de supprimer « %s »." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Enregistrer « %s » sous..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -390,7 +347,7 @@ "Êtes-vous sûr de vouloir \n" "supprimer définitivement « %s » ?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -399,43 +356,43 @@ "Êtes-vous sûr de vouloir \n" "supprimer définitivement les %i fichiers sélectionnés ?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Si vous supprimez un fichier, il sera perdu définitivement." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Nom de fichier" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Taille" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Emplacement" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Aperçu" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Détails" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Aujourd’hui" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Hier" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Aucun fichier trouvé." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -443,33 +400,33 @@ "Essayez d'effectuer une recherche moins spécifique,\n" "ou cherchez dans un autre répertoire." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 fichier trouvé." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i fichiers trouvés." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "octets" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Recherche..." -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Les résultats seront affichés dès que possible." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Recherche de « %s »" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Rechercher les résultats pour « %s »" @@ -512,11 +469,11 @@ "L’application « %s » vous permet de\n" "modifier des éléments essentiels de votre système." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Outil de recherche de fichiers polyvalents." -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -531,46 +488,42 @@ "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 development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" -"Cette version de développement cache la sortie de la commande « which » au " -"démarrage et inclut des mises à jour de traduction." - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." -msgstr "" -"Cette version de développement détecte maintenant le bon répertoire des " -"miniatures à utiliser et inclut des mises à jour de traduction." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." +msgstr "" +"Cette version corrige plusieurs bogues relatifs à la fenêtre des résultats. " +"Les fichiers sont encore une fois enlevés de la liste des résultats quand " +"ils sont supprimés. Les fonctionnalités \"clic du milieu/clic droit\" ont " +"été restaurées. Les filtres d'intervalle de date sont maintenant appliqués " +"selon le fuseau horaire (timezone), à la place du temps universel coordonné " +"(UTC)." #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." -msgstr "" -"Cette version de développement ajoute un nouveau réglage pour alterner les " -"barres de titre et résout plusieurs bogues." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." +msgstr "" +"Cette version inclut un rafraîchissement important de l'interface, une " +"amélioration de la vitesse de recherche et corrige plusieurs bogues. Le flux " +"de travail a été amélioré en utilisant quelques-unes des dernières " +"fonctionnalités de la boîte à outils GTK+, incluant des barres d'en-tête " +"optionnelles et des widgets. La gestion du mot de passe a été améliorée avec " +"l'intégration de PolicyKit lorsque disponible." #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"Cette version de développement inclut une modernisation importante de " -"l'interface utilisateur, améliore la vitesse de recherche, et corrige " -"plusieurs bogues." - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" "Cette version corrige deux nouveaux bogues et comporte des mises à jour de " "traductions." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -578,7 +531,7 @@ "Cette version corrige une régression qui empêchait l'application de démarrer " "sur certains systèmes." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -589,7 +542,7 @@ "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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -597,7 +550,7 @@ "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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -606,7 +559,7 @@ "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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -614,7 +567,7 @@ "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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -700,3 +653,36 @@ #~ msgid "_Show Advanced Settings" #~ msgstr "_Afficher les réglages avancés" + +#~ msgid "week" +#~ msgstr "semaine" + +#~ msgid "applications" +#~ msgstr "applications" + +#~ msgid "videos" +#~ msgstr "vidéos" + +#~ msgid "other" +#~ msgstr "autre" + +#~ msgid "documents" +#~ msgstr "documents" + +#~ msgid "music" +#~ msgstr "musique" + +#~ msgid "images" +#~ msgstr "images" + +#~ msgid "folders" +#~ msgstr "dossiers" + +#~ msgid "column" +#~ msgstr "colonne" + +#~ msgid "custom" +#~ msgstr "personnalisée" + +#~ msgid "any" +#~ msgstr "tout" diff -Nru catfish-unstable-1.3.4/po/hr.po catfish-unstable-1.4.2/po/hr.po --- catfish-unstable-1.3.4/po/hr.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/hr.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-03-19 00:37+0000\n" "Last-Translator: zvacet \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "" @@ -69,233 +69,190 @@ msgstr "" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Bilo kada" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Potpuno podudaranje" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Baza podataka:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Ažurirano:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Koristi velike ikone" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Prikaži vrijeme u ISO formatu" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Uključi skrivene datoteke" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,17 +318,17 @@ msgid "\"%s\" could not be saved." msgstr "\"%s\" nije moguće spremiti." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" nije moguće izbrisati." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Spremi \"%s\" kao…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -380,7 +337,7 @@ "Jeste li sigurni da želite \n" "trajno izbrisati \"%s\"?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -389,75 +346,75 @@ "Jeste li sigurni da želite \n" "trajno izbrisati %i odabrane datoteke?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "NIjedna datoteka nije pronađena." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 datoteka je nađena." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i datoteka je nađeno." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -500,11 +457,11 @@ "Program '%s' vam dopušta\n" "izmjenu bitnih dijelova vašega sustava." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -513,66 +470,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/hu.po catfish-unstable-1.4.2/po/hu.po --- catfish-unstable-1.3.4/po/hu.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/hu.po 2016-04-01 03:28:07.000000000 +0000 @@ -8,18 +8,18 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-10-19 11:35+0000\n" "Last-Translator: rezso \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" "Language: uk\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish fájlkereső" @@ -71,235 +71,192 @@ msgstr "Dokumentumok" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "dokumentumok" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Mappák" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "mappák" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Képek" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "képek" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Zene" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "zene" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Videók" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "videók" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Alkalmazások" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "alkalmazások" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Egyéb" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "egyéb" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Bármikor" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "bármely" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Ezen a héten" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "hét" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Egyéni" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "egyéni" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Ugrás a mai naphoz" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Kezdő dátum" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Záró dátum" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Frissítés" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Fájl típus" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "oszlop" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Módosítva" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Könyvtár kiválasztása" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Kompakt lista" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Előnézeti képek" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "_Rejtett fájlok megjelenítése" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Pontos egyezés" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Keresési index frissítése" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Névjegy" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Feloldás" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 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:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -312,11 +269,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Soha" @@ -365,17 +322,17 @@ msgid "\"%s\" could not be saved." msgstr "„%s” nem menthető." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "„%s” nem törölhető." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "„%s” mentése másként…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -384,7 +341,7 @@ "Biztos, hogy véglegesen törölni szeretné \n" "a(z) „%s” fájlt?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -393,75 +350,75 @@ "Biztos, hogy véglegesen törölni szeretné\n" "a kijelölt %i fájlt?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 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:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Fájlnév" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Méret" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Hely" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Előnézet" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Részletek" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Ma" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Tegnap" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nem találhatók fájlok." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i fájl található." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bájt" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Keresés…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "„%s” keresése" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Találatok erre: „%s”" @@ -500,11 +457,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -513,66 +470,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -652,3 +602,36 @@ #~ 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." + +#~ msgid "music" +#~ msgstr "zene" + +#~ msgid "images" +#~ msgstr "képek" + +#~ msgid "folders" +#~ msgstr "mappák" + +#~ msgid "documents" +#~ msgstr "dokumentumok" + +#~ msgid "week" +#~ msgstr "hét" + +#~ msgid "applications" +#~ msgstr "alkalmazások" + +#~ msgid "videos" +#~ msgstr "videók" + +#~ msgid "any" +#~ msgstr "bármely" + +#~ msgid "other" +#~ msgstr "egyéb" + +#~ msgid "column" +#~ msgstr "oszlop" + +#~ msgid "custom" +#~ msgstr "egyéni" diff -Nru catfish-unstable-1.3.4/po/id.po catfish-unstable-1.4.2/po/id.po --- catfish-unstable-1.3.4/po/id.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/id.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2013-03-17 01:40+0000\n" "Last-Translator: Viko Adi Rahmawan \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish si pencari berkas" @@ -69,233 +69,190 @@ msgstr "Dokumen" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Gambar" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Musik" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Video" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Aplikasi" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Lainnya" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Pekan ini" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Hari Ini" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Mulai" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Hingga" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Pilih Direktori" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Persis Sama" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,99 +318,99 @@ msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "" -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -492,11 +449,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -505,66 +462,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/is.po catfish-unstable-1.4.2/po/is.po --- catfish-unstable-1.3.4/po/is.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/is.po 2016-04-01 03:28:07.000000000 +0000 @@ -8,18 +8,18 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-12-16 16:54+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" "Language: is\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish Skráaleit" @@ -71,195 +71,152 @@ msgstr "Skjöl" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "skjöl" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Möppur" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "möppur" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Myndir" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "Myndir" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Tónlist" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "tónlist" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Myndskeið" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "myndskeið" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Forrit" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "forrit" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Annað" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "annað" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Hvenær sem er" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "einhverntíma" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Í þessari viku" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "vika" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Sérsniðið" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "sérsniðið..." - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Fara á daginn í dag" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Upphafsdagur" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Lokadagur" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Uppfæra" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "Leitargagnagrunnurinn er meira en 7 daga gamall. Uppfæra núna?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Skráartegund" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "dálkur" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Breytt" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Settu inn fyrirspurnina þína hér fyrir ofan" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "eða smelltu á " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " táknið fyrir fleiri valkosti." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Veldu möppu" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Samþjappaður listi" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Smámyndir" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Sýna _faldar skrár" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Leita í _efni skráa" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "Ná_kvæm samsvörun" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "_Birta hliðarspjald" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Uppfæra leitaryfirlit…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Um forritið" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Uppfæra leitargagnagrunn" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Aflæsa" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Gagnagrunnur:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Uppfært:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Uppfæra leitargagnagrunn" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -267,39 +224,39 @@ "Til að fá hraðvirkari leitarniðurstöður þarf að endurlesa leitargagnagrunn.\n" "Þessi aðgerð krefst kerfisstjórnunarheimilda." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Notkun: %prog [rofar] slóð fyrirspurn" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Birta aflúsunarmeldingar (-vv aflúsar einnig catfish_lib)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Nota stórar táknmyndir" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Nota smámyndir" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Birta tíma á ISO-sniði" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Framkvæma nákvæma samsvörun" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Hafa með faldar skrár" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Leita í öllum texta" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -312,11 +269,11 @@ msgid "%s (invalid encoding)" msgstr "%s (ógild stafatafla)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Óþekkt" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Aldrei" @@ -367,17 +324,17 @@ msgid "\"%s\" could not be saved." msgstr "Ekki tókst að vista \"%s\"." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "Ekki var hægt að eyða \"%s\"." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Vista \"%s\" sem…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -386,7 +343,7 @@ "Ertu viss um að þú viljir\n" "endanlega eyða \"%s\"?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -395,43 +352,43 @@ "Ertu viss að þú viljir eyða\n" "endanlega %i völdum skrám?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Ef þú eyðir skrá, verður hún aldrei aðgengileg aftur." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Skráarheiti" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Stærð" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Staðsetning" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Forskoðun" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Nánar" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Í dag" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Í gær" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Engar skrár fundust." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -439,33 +396,33 @@ "Reyndu að gera leitina minna sértæka\n" "eða prófaðu að leita í annarri möppu." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 skrá fannst." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i skrár fundust." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bæti" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Leita..." -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Niðurstöður verða birtar eftir því sem þær finnast." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Leita að \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Leitarniðurstöður fyrir „%s“" @@ -508,11 +465,11 @@ "Forritið ‚%s‘ leyfir þér að breyta\n" "mikilvægum hlutum kerfisins þíns." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Fjölhæft tól til leitar að skrám" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -526,66 +483,59 @@ "breytingadagsetningu, skráategund og innihald skráa, þurfa notendur ekki að " "reiða sig eins mikið á skráastjóra eða skipulagshæfileika sína." -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -593,3 +543,36 @@ "distributions. Accessibility was enhanced as all strings have been made " "translatable and keyboard accelerators have been improved." msgstr "" + +#~ msgid "documents" +#~ msgstr "skjöl" + +#~ msgid "folders" +#~ msgstr "möppur" + +#~ msgid "images" +#~ msgstr "Myndir" + +#~ msgid "music" +#~ msgstr "tónlist" + +#~ msgid "videos" +#~ msgstr "myndskeið" + +#~ msgid "applications" +#~ msgstr "forrit" + +#~ msgid "other" +#~ msgstr "annað" + +#~ msgid "any" +#~ msgstr "einhverntíma" + +#~ msgid "week" +#~ msgstr "vika" + +#~ msgid "custom" +#~ msgstr "sérsniðið..." + +#~ msgid "column" +#~ msgstr "dálkur" diff -Nru catfish-unstable-1.3.4/po/it.po catfish-unstable-1.4.2/po/it.po --- catfish-unstable-1.3.4/po/it.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/it.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-05-10 22:45+0000\n" "Last-Translator: Giovanni Gigantino \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish ricerca di file" @@ -69,195 +69,152 @@ msgstr "Documenti" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Cartelle" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Immagini" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Musica" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Video" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Programmi" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Altro" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Ogni volta" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Questa settimana" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Personalizzato" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Vai a oggi" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Data iniziale" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Data finale" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Aggiorna" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 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:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Modificato" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Selezionare una cartella" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Elenco compatto" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Anteprime" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "Corrispondenza _esatta" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "Aggiorna in_dice di ricerca..." -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Informazioni" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Aggiorna il database di ricerca" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Scarica" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Database:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Aggiornato:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Aggiorna il database di ricerca" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -266,39 +223,39 @@ "aggiornato.\n" "Questa azione richiede privilegi di amministrazione." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Uso: %prog [opzioni] percorso ricerca" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Mostra messaggi di debug (-vv debugs catfish_lib)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Usa icone grandi" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Usa miniature" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Mostra l'ora in formato ISO" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Esegue una corrispondenza esatta" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Include i file nascosti" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Esegue una ricerca completa" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -313,11 +270,11 @@ msgid "%s (invalid encoding)" msgstr "%s (codifica non valida)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Mai" @@ -368,17 +325,17 @@ msgid "\"%s\" could not be saved." msgstr "Impossibile salvare «%s»." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "Impossibile eliminare «%s»." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Salva «%s» come..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -387,7 +344,7 @@ "Eliminare davvero «%s» in\n" "modo permanente?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -396,75 +353,75 @@ "Eliminare davvero i %i file selezionati\n" "in modo permanente?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Se si elimina un file non sarà più recuperabile." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Nome file" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Dimensione" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Posizione" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Anteprima" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Dettagli" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Oggi" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Ieri" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nessun file trovato." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Trovato 1 file." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Trovati %i file." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "byte" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Ricerca in corso..." -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Ricerca di «%s»" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Risultati della ricerca di «%s»" @@ -507,11 +464,11 @@ "L'applicazione '%s' ti permette\n" "di modificare parti essenziali del tuo sistema." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Strumento versatile per la ricerca dei file" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -526,36 +483,29 @@ "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 development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" "Questa release corregge due nuovi bug e include traduzioni aggiornate." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -563,7 +513,7 @@ "Questa release corregge una degressione dove l'applicazione è in grado di " "avviarsi in alcuni sistemi" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -574,7 +524,7 @@ "database di ricerca non è aggiornato e le finestre di dialogo di " "aggiornamento database sono state migliorate." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -582,7 +532,7 @@ "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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -591,7 +541,7 @@ "la password, elimina codice non usato e risolve potenziali problemi con la " "selezione di oggetti e liste." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -599,7 +549,7 @@ "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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/ja.po catfish-unstable-1.4.2/po/ja.po --- catfish-unstable-1.3.4/po/ja.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/ja.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,24 +7,24 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" -"PO-Revision-Date: 2014-09-15 02:23+0000\n" -"Last-Translator: Kiyotaka Nemoto \n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" +"PO-Revision-Date: 2016-03-19 08:05+0000\n" +"Last-Translator: Ikuya Awashiro \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" -msgstr "Catfish File Search" +msgstr "Catfish ファイル検索" #: ../catfish.desktop.in.h:2 msgid "File search" -msgstr "" +msgstr "ファイル検索" #: ../catfish.desktop.in.h:3 msgid "Search the file system" @@ -58,206 +58,163 @@ #: ../data/ui/CatfishWindow.ui.h:8 msgid "File Extensions" -msgstr "" +msgstr "ファイル拡張子" #: ../data/ui/CatfishWindow.ui.h:9 msgid "odt, png, txt" -msgstr "" +msgstr "odt, png, txt" #: ../data/ui/CatfishWindow.ui.h:10 msgid "Documents" msgstr "文書" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "フォルダー" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "画像" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "音楽" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "動画" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "アプリケーション" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "その他" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "時刻指定なし" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "今週" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "カスタム" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "今日へ移動" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "開始日" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "終了日" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "アップデート" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "検索データベースは7日以上更新されていません。今すぐアップデートしますか?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" +msgstr "ファイル形式" -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "修正日" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" -msgstr "" +msgstr "検索したい語を上部の検索欄に入力するか、" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " -msgstr "" +msgstr "あるいは " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." -msgstr "" +msgstr " アイコンをクリックしてオプションを指定してください。" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" -msgstr "フォルダを選択" +msgstr "フォルダーを選択" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "一覧" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "サムネイル" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" -msgstr "" +msgstr "隠しファイルの表示 (_H)" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" -msgstr "" +msgstr "ファイルの内容を検索(_C)" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "完全一致(_E)" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" -msgstr "" +msgstr "サイドバーの表示(_S)" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "検索インデックスの更新(_U)" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "このアプリケーションについて(_A)" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "検索データベースのアップデート" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "ロックの解除" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "データベース:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "アップデート:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "検索データベースのアップデート" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -265,39 +222,39 @@ "検索結果を速く表示するために、検索データベースを更新する必要があります。\n" "このためには管理者権限が必要です。" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" -msgstr "" +msgstr "Usage: %prog [オプション] パス 検索クエリ" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "デバッグメッセージを表示(-vv catfish_libもデバッグ)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "大きいアイコンを使う" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "サムネイルを使う" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "ISO形式で時間を表示する" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "完全一致検索" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "隠しファイルを含める" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "全文検索" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -310,13 +267,13 @@ msgid "%s (invalid encoding)" msgstr "%s (無効なエンコーディング)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" -msgstr "" +msgstr "不明" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" -msgstr "" +msgstr "しない" #: ../catfish/CatfishWindow.py:607 msgid "An error occurred while updating the database." @@ -365,17 +322,17 @@ msgid "\"%s\" could not be saved." msgstr "\"%s\" は保存されていません。" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" は削除できません。" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "\"%s\" を別名で保存" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -384,7 +341,7 @@ "本当に \"%s\"\n" " を恒久的に削除しても良いですか?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -393,75 +350,77 @@ "本当に %i つのファイル\n" "を恒久的に削除しても良いですか?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "削除されたファイルは二度と復元できません。" -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "ファイル名" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "サイズ" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "位置" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "プレビュー" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "詳細" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "今日" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "昨日" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "ファイルが一つも見つかりません。" -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" +"検索語を減らすか、\n" +"ほかのフォルダーを検索してください。" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1つのファイルを発見。" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i つのファイルを発見。" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "検索中…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." -msgstr "" +msgstr "結果は発見し次第表示されます。" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\" を検索中" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" の検索結果" @@ -504,11 +463,11 @@ "アプリケーション '%s' はシステムの\n" "主要な部分を修正しました。" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "多機能なファイル検索ツール" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -520,41 +479,34 @@ "がファイルマネージャーを使わずにフィルを見つけることを助けます。ファイルの変更日、ファイルタイプ、ファイルの内容といった強力なフィルターがあることによって" "、ユーザーはファイルマネージャーやファイルの整理スキルに頼る必要がなくなります。" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -563,26 +515,26 @@ "このリリースでは複数のキーワードでの検索ができなくなっていた問題を解決しました。検索データベースが古くなると情報バーが表示されるようにもなり、データベース" "のアップデートについてのダイアログも改善されました。" -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -663,3 +615,36 @@ #~ msgid "Catfish could not find the default open wrapper." #~ msgstr "Catfishにはデフォルトのオープンラッパーが発見できません。" + +#~ msgid "applications" +#~ msgstr "アプリケーション" + +#~ msgid "week" +#~ msgstr "週" + +#~ msgid "folders" +#~ msgstr "フォルダー" + +#~ msgid "music" +#~ msgstr "音楽" + +#~ msgid "images" +#~ msgstr "画像" + +#~ msgid "videos" +#~ msgstr "ビデオ" + +#~ msgid "documents" +#~ msgstr "ドキュメント" + +#~ msgid "any" +#~ msgstr "すべて" + +#~ msgid "other" +#~ msgstr "その他" + +#~ msgid "column" +#~ msgstr "項目" + +#~ msgid "custom" +#~ msgstr "カスタム" diff -Nru catfish-unstable-1.3.4/po/ko.po catfish-unstable-1.4.2/po/ko.po --- catfish-unstable-1.3.4/po/ko.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/ko.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2013-11-12 11:45+0000\n" "Last-Translator: Litty \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "캣피쉬 파일 검색기" @@ -69,233 +69,190 @@ msgstr "문서" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "이미지" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "음악" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "동영상" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "응용 프로그램" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "기타" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "언제든지" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "이번 주" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "사용자 정의" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "시작일" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "종료일" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "캣피쉬" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "잠금 해제" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "큰 아이콘 사용하기" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "미리보기 사용" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "ISO 포맷으로 시간 표시" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,99 +318,99 @@ msgid "\"%s\" could not be saved." msgstr "\"%s\"을(를) 저장할 수 없습니다." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\"을(를) 삭제할 수 없습니다." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "파일 이름" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "크기" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "위치" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "미리 보기" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "" -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "파일 하나를 찾았습니다." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "검색하는 중…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\"을(를) 찾는 중" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\"에 대한 검색 결과" @@ -492,11 +449,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -505,66 +462,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/lt.po catfish-unstable-1.4.2/po/lt.po --- catfish-unstable-1.3.4/po/lt.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/lt.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" -"PO-Revision-Date: 2015-11-19 21:20+0000\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" +"PO-Revision-Date: 2016-03-16 23:42+0000\n" "Last-Translator: Moo \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish failų paieška" @@ -69,196 +69,153 @@ msgstr "Dokumentai" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "dokumentai" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Aplankai" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "aplankai" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Paveikslai" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "paveikslai" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Muzika" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "muzika" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Vaizdo įrašai" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "vaizdo įrašai" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Programos" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "programos" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Kita" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "kita" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Bet kada" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "bet kokia" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Šią savaitę" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "savaitė" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Pasirinktinai" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "pasirinktinai" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Pereiti į šiandieną" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Pradžios data" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Pabaigos data" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Atnaujinti" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" "Paieškos duomenų bazei yra daugiau kaip 7 dienos. Atnaujinti ją dabar?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Failo tipas" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "stulpelis" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Keista" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" -msgstr "Norėdami rasti savo failus, viršuje įveskite užklausą" +msgstr "Norėdami rasti savo failus, viršuje įrašykite užklausą" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "arba spustelėkite " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " piktogramą, kad pamatytumėte daugiau parinkčių." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Pasirinkite Katalogą" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Glaudintas sąrašas" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Miniatiūros" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Rodyti _paslėptus failus" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Ieškoti failų _turinį" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "Tiksli _atitiktis" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Rodyti šoninę _juostą" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "Atnaujinti paieškos _indeksą..." -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "Api_e" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Atnaujinti Paieškos Duomenų Bazę" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Atrakinti" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Duomenų bazė:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Atnaujinta:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Paieškos Duomenų Bazės Atnaujinimas" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -267,39 +224,39 @@ "turi būti įkelta iš naujo.\n" "Šis veiksmas reikalauja administratoriaus teisių." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Naudojimas: %prog [parinktys] kelias užklausa" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Rodyti derinimo pranešimus (-vv taip pat derina catfish_lib)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Naudoti dideles piktogramas" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Naudoti miniatiūras" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Rodyti laiką ISO formatu" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Atlikti tikslią atitiktį" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Įtraukti paslėptus failus" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Atlikti pilno teksto paiešką" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -314,11 +271,11 @@ msgid "%s (invalid encoding)" msgstr "%s (neteisinga koduotė)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Nežinoma" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Niekada" @@ -369,17 +326,17 @@ msgid "\"%s\" could not be saved." msgstr "Nepavyko įrašyti \"%s\"." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "Nepavyko ištrinti \"%s\"." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Įrašyti \"%s\" kaip…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -388,7 +345,7 @@ "Ar tikrai norite negrįžtamai \n" "ištrinti \"%s\"?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -397,43 +354,43 @@ "Ar tikrai norite negrįžtamai ištrinti \n" "%i pasirinktus failus?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Jeigu ištrinsite failą, jis bus negrįžtamai prarastas." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Failo pavadinimas" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Dydis" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Vieta" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Peržiūra" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Išsamesnė informacija" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Šiandien" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Vakar" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Failų nerasta." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -441,33 +398,33 @@ "Pabandykite vykdyti ne tokią konkrečią paiešką\n" "arba pabandykite kitą katalogą." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Rastas 1 failas." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Rasta %i failų." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "baitų" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Ieškoma..." -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Rezultatai bus rodomi iš karto, kai tik bus rasti." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Ieškoma \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" paieškos rezultatai" @@ -511,11 +468,11 @@ "Programa '%s' leidžia jums\n" "modifikuoti svarbiausias jūsų sistemos dalis." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Universalus failų paieškos įrankis" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -530,44 +487,39 @@ "turinys, dėka, naudotojai daugiau nebus priklausomi nuo failų tvarkytuvės ar " "organizuotumo įgūdžių." -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" -"Ši kūrimo laida paslepia komandos \"which\" išvestį paleidimo metu ir " -"pristato atnaujintus vertimus." - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." -msgstr "" -"Ši kūrimo laida dabar naudojimui aptinka teisinga miniatiūrų katalogą ir " -"pristato atnaujintus vertimus." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." +msgstr "" +"Ši laida ištaiso kelias klaidas, susijusias su rezultatų langu. Failai ir " +"vėl, juos ištrinus, yra pašalinami iš rezultatų sąrašo. Buvo atkurtas " +"vidurinio ir dešiniojo pelės mygtuko funkcionalumas. Datos rėžio filtrai " +"dabar yra pritaikomi pagal laiko juostą, o ne pagal suderintąjį pasaulinį " +"laiką (UTC)." #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." -msgstr "" -"Šioje kūrimo laidoje yra pridedamas naujas nustatymas, skirtas antraščių " -"juostos perjungimui ir ištaisomos kelios klaidos." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." +msgstr "" +"Šioje laidoje yra pastebimai atnaujinta sąsaja, pagerintas paieškos greitis " +"bei ištaisytos kelios klaidos. Buvo patobulinta darbo eiga, panaudojant kai " +"kurias naujausias GTK+ įrankinės ypatybes, įskaitant neprivalomas antraščių " +"juostas bei iššokančius valdiklius. Buvo patobulintas slaptažodžių " +"apdorojimas su PolicyKit integravimu, kai tai yra prieinama." #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"Šioje kūrimo laidoje yra žymus naudotojo sąsajos atnaujinimas, pagerinamas " -"paieškos greitis ir ištaisomos kelios klaidos" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" "Šioje laidoje ištaisomos dvi naujos klaidos ir yra atnaujinami vertimai." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -575,7 +527,7 @@ "Šioje laidoje yra ištaisyta regresija, dėl kurios kai kuriose sistemose buvo " "neįmanoma paleisti programos." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -586,7 +538,7 @@ "rodoma informacinė juosta, o taip pat yra patobulinti duomenų bazės " "atnaujinimo dialogai." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -595,7 +547,7 @@ "vietos nustatymas, o taip pat patobulinamas trūkstamų simbolinių piktogramų " "apdorojimas." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -604,7 +556,7 @@ "nebenaudojamas kodas ir ištaisytos potencialios, su sąrašo ir elemento " "pasirinkimu susijusios, klaidos." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -613,7 +565,7 @@ "paleidimu, o taip pat ištaisyta, su kelių elementų pasirinkimu susijusi, " "regresija." -#: ../data/appdata/catfish.appdata.xml.in.h:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -625,6 +577,30 @@ "ilgai trukusių problemų. Numatytųjų leidimų patobulinimai pašalino daugybę " "įspėjimų, atsirandančių pakavimo distribucijoms metu." +#~ msgid "music" +#~ msgstr "muzika" + +#~ msgid "images" +#~ msgstr "paveikslai" + +#~ msgid "folders" +#~ msgstr "aplankai" + +#~ msgid "documents" +#~ msgstr "dokumentai" + +#~ msgid "applications" +#~ msgstr "programos" + +#~ msgid "videos" +#~ msgstr "vaizdo įrašai" + +#~ msgid "other" +#~ msgstr "kita" + +#~ msgid "column" +#~ msgstr "stulpelis" + #~ msgid "File Type" #~ msgstr "Failo tipas" @@ -667,6 +643,15 @@ #~ msgid "Updating database…" #~ msgstr "Atnaujinama duomenų bazė..." +#~ msgid "week" +#~ msgstr "savaitė" + +#~ msgid "custom" +#~ msgstr "pasirinktinai" + +#~ msgid "any" +#~ msgstr "bet kokia" + #~ msgid "Update Search Index" #~ msgstr "Atnaujinti paieškos indeksą" diff -Nru catfish-unstable-1.3.4/po/lv.po catfish-unstable-1.4.2/po/lv.po --- catfish-unstable-1.3.4/po/lv.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/lv.po 2016-04-01 03:28:07.000000000 +0000 @@ -8,18 +8,18 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2013-06-22 10:48+0000\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" "Language: lv\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish datņu meklēšana" @@ -71,233 +71,190 @@ msgstr "Dokumenti" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Attēli" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Mūzika" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Video" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Lietotnes" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Citi" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Jebkurā laikā" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Šajā nedēļā" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Pielāgots" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Iet uz šodienu" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Sākuma datums" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Beigu datums" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Izvēlieties direktoriju" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "Atbilst pr_ecīzi" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "Atja_unināt meklēšanas indeksu…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Atbloķēt" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 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:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Lietot lielas ikonas" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Lietot sīktēlus" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Rādīt laiku ISO formātā" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Meklēt precīzas sakritības" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Iekļaut slēptās datnes" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Veikt pilna teksta meklēšanu" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -310,11 +267,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -363,17 +320,17 @@ msgid "\"%s\" could not be saved." msgstr "Neizdevās saglabāt “%s”" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "Neizdevās izdzēst “%s”" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Saglabāt “%s” kā…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -382,7 +339,7 @@ "Vai tiešām vēlaties\n" "neatgriezeniski dzēst “%s”?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -391,75 +348,75 @@ "Vai tiešām vēlaties neatgriezeniski \n" "dzēst %i izvēlētās datnes?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Ja izdzēsīsiet datni, tā tiks neatgriezeniski zaudēta." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Datnes nosaukums" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Izmērs" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Vieta" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Priekšskatīt" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nav atrastu datņu." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Atrasta viena datne." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Atrastas %i datnes." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Meklē…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Meklē “%s”" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "“%s” meklēšanas rezultāti" @@ -498,11 +455,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -511,66 +468,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/ml.po catfish-unstable-1.4.2/po/ml.po --- catfish-unstable-1.3.4/po/ml.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/ml.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2014-10-02 09:46+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: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "" @@ -69,233 +69,190 @@ msgstr "" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "ഇന്നത്തെ തീയതി" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "ക്യാറ്റ്ഫിഷ്" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_കുറിച്ച്" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,99 +318,99 @@ msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "" -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -492,11 +449,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -505,66 +462,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/nl.po catfish-unstable-1.4.2/po/nl.po --- catfish-unstable-1.3.4/po/nl.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/nl.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" -"PO-Revision-Date: 2016-01-05 11:46+0000\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" +"PO-Revision-Date: 2016-03-22 13:37+0000\n" "Last-Translator: Pjotr12345 \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish bestandenzoeker" @@ -69,196 +69,153 @@ msgstr "Documenten" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "documenten" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Mappen" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "mappen" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Afbeeldingen" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "afbeeldingen" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Muziek" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "muziek" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Video's" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "video's" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Toepassingen" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "toepassingen" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Overig" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "anders" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Elk tijdstip" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "elke" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Deze week" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "week" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Aangepast" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "aangepast" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Ga naar vandaag" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Begindatum" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Einddatum" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Bijwerken" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 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:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Bestandsoort" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "kolom" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Gewijzigd" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Voer uw zoekopdracht hierboven in om uw bestanden te vinden" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "of klik op het " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " pictogram voor meer opties." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Kies een map" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Compacte lijst" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Miniaturen" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Ver_borgen bestanden tonen" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Inhoud van bestanden doorzoeken" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Exacte overeenkomst" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Toon zijbalk" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "Zoekindex bijwerken..." -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "Over" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Gegevensbank met zoekgegevens bijwerken" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Ontgrendelen" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Gegevensbank:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Bijgewerkt:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Gegevensbank met zoekgegevens bijwerken" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -267,40 +224,40 @@ "verversen.\n" "Deze ingreep vergt beheerdersbevoegdheid." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Gebruik: %prog [opties] pad zoekopdracht" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" "Toon foutopsporingsmeldingen (-vv spoort ook fouten op in catfish_lib)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Grote pictogrammen gebruiken" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Miniaturen gebruiken" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Tijd weergeven in ISO-opmaak" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Alleen exacte overeenkomst weergeven" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Verborgen bestanden meenemen" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Volledige tekst doorzoeken" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -315,11 +272,11 @@ msgid "%s (invalid encoding)" msgstr "%s (ongeldige codering)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Onbekend" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Nooit" @@ -370,17 +327,17 @@ msgid "\"%s\" could not be saved." msgstr "'%s' kon niet opgeslagen worden." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "'%s' kon niet gewist worden." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "'%s' opslaan als..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -389,7 +346,7 @@ "Weet u zeker dat u '%s' \n" "blijvend wil verwijderen?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -398,43 +355,43 @@ "Weet u zeker dat u de %i gekozen \n" "bestanden blijvend wil verwijderen?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Als u een bestand verwijdert, is het voorgoed verloren." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Bestandnaam" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Grootte" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Locatie" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Voorbeeldweergave" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Bijzonderheden" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Vandaag" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Gisteren" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Geen bestanden gevonden." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -443,33 +400,33 @@ "specifiek te maken of probeer\n" "een andere map." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 bestand gevonden." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i bestanden gevonden." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Aan het zoeken..." -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Resultaten zullen worden getoond zodra ze worden gevonden." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Aan het zoeken naar '%s'" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Zoekresultaten voor ‘%s’" @@ -514,11 +471,11 @@ "essentiële delen van uw\n" "systeem wijzigen." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Flexibel gereedschap voor het zoeken van bestanden" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -533,44 +490,40 @@ "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 development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" -"Deze ontwikkelversie verbergt de uitvoer van de opdracht 'which' bij het " -"opstarten en bevat bijgewerkte vertalingen." - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." -msgstr "" -"Deze ontwikkelversie ontdekt nu de juiste map om te gebruiken voor " -"miniaturen en bevat bijgewerkte vertalingen." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." +msgstr "" +"Deze versie herstelt verschillende fouten die te maken hebben met het " +"resultatenvenster. Bestanden worden wederom verwijderd uit de " +"resultatenlijst na wissen. Middel- en rechtsklikfunctionaliteit is hersteld. " +"Datumbereikfilters worden nu toegepast overeenkomstig de tijdzone in plaats " +"van Universal Coordinated Time (UTC)." #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." -msgstr "" -"Deze ontwikkelversie voegt een nieuwe instelling toe voor het omschakelen " -"van kopbalken en herstelt verschillende fouten." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." +msgstr "" +"Deze versie bevat een belangrijke vernieuwing van de gebruikersschil, " +"verbetert de zoeksnelheid, en herstelt verschillende fouten. Het " +"werkingsproces is verbeterd, met gebruikmaking van enkele van de nieuwste " +"functies van de GTK+ gereedschapskist, inclusief optionele kopbalken en " +"opduikvensters. Wachtwoordafhandeling is verbeterd met de integratie van " +"PolicyKit (indien die beschikbaar is)." #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"Deze ontwikkelversie bevat een belangrijke vernieuwing van de " -"gebruikersomgeving, verbeterde zoeksnelheid en verschillende foutreparaties." - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" "Deze uitgave bevat reparaties voor twee fouten en bijgewerkte vertalingen." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -578,7 +531,7 @@ "Deze versie bevat een reparatie voor een regressiefout waardoor deze " "toepassing op sommige systemen niet kon starten." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -589,7 +542,7 @@ "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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -597,7 +550,7 @@ "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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -606,7 +559,7 @@ "het wachtwoord verbeterd, ongebruikte code opgeruimd, en mogelijke problemen " "met de selectie van lijst en element verholpen." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -615,7 +568,7 @@ "programma-opstart en heeft een regressiefout hersteld betreffende het " "selecteren van meerdere elementen." -#: ../data/appdata/catfish.appdata.xml.in.h:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -702,3 +655,36 @@ #~ msgid "Locate database updated successfully." #~ msgstr "Gegevensbank van Locate is met succes bijgewerkt." + +#~ msgid "images" +#~ msgstr "afbeeldingen" + +#~ msgid "music" +#~ msgstr "muziek" + +#~ msgid "applications" +#~ msgstr "toepassingen" + +#~ msgid "videos" +#~ msgstr "video's" + +#~ msgid "folders" +#~ msgstr "mappen" + +#~ msgid "documents" +#~ msgstr "documenten" + +#~ msgid "other" +#~ msgstr "anders" + +#~ msgid "column" +#~ msgstr "kolom" + +#~ msgid "week" +#~ msgstr "week" + +#~ msgid "custom" +#~ msgstr "aangepast" + +#~ msgid "any" +#~ msgstr "elke" diff -Nru catfish-unstable-1.3.4/po/pl.po catfish-unstable-1.4.2/po/pl.po --- catfish-unstable-1.3.4/po/pl.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/pl.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search 1.0.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-09-14 16:12+0000\n" "Last-Translator: Piotr Strębski \n" "Language-Team: polski <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Wyszukiwarka plików Catfish" @@ -69,195 +69,152 @@ msgstr "Dokumenty" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "dokumenty" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Katalogi" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "katalogi" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Obrazy" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "obrazy" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Muzyka" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "muzyka" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Filmy" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "filmy" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Programy" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "programy" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Inne" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "inne" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Kiedykolwiek" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "dowolne" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "W tym tygodniu" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "tydzień" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Własny" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "własny" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Przejdź do bieżącej daty" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Data początkowa" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Data końcowa" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Aktualizuj" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 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:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Rodzaj pliku" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "kolumna" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Zmodyfikowano" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Wpisz powyżej swoje zapytanie, aby odnaleźć określone pliki" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "lub kliknij na " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " ikonę, aby wyświetlić więcej opcji." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Wybór katalogu" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Wyświetla wyniki na zwartej liście" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Wyświetla wyniki jako miniatury" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Wyświetlanie _ukrytych plików" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Przeszukuj _zawartość plików" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Dokładne dopasowanie" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Pokaż pa_sek boczny" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "Z_aktualizuj indeks wyszukiwania…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_O programie" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Aktualizacja bazy danych wyszukiwania" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Odblokuj" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Baza danych:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Zaktualizowano:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Aktualizacja bazy danych wyszukiwania" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -266,41 +223,41 @@ "wyszukiwania.\n" "To działanie wymaga uprawnień administratora." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Użycie: %prog [opcje] ścieżka zapytanie" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 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:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Używa dużych ikon" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Używa miniatur" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Wypisuje czas w formacie ISO" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Przeprowadza dokładne dopasowanie" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Uwzględnia pliki ukryte" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Wyszukuje pełny tekst" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -315,11 +272,11 @@ msgid "%s (invalid encoding)" msgstr "%s (nieprawidłowe kodowanie)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Nieznane" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Nigdy" @@ -370,17 +327,17 @@ msgid "\"%s\" could not be saved." msgstr "Nie można zapisać „%s”." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "Nie można usunąć „%s”." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Zapisz „%s” jako…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -389,7 +346,7 @@ "Czy na pewno chcesz \n" "trwale usunąć „%s”?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -398,43 +355,43 @@ "Czy na pewno chcesz \n" "trwale usunąć %i zaznaczonych plików?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Plik zostanie nieodwracalnie usunięty." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Nazwa pliku" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Rozmiar" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Położenie" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Podgląd" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Szczegóły" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Dzisiaj" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Wczoraj" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nie odnaleziono plików." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -442,33 +399,33 @@ "Spróbuj mniej dookreślić swoje wyszukiwanie\n" "lub spróbuj przeszukać inny katalog." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Odnaleziono 1 plik." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Odnaleziono %i plików." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bajtów" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Wyszukiwanie…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Wyniki zostaną wyświetlone, jak tylko zostaną odnalezione." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Wyszukiwanie wyrażenia „%s”" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Wyniki wyszukiwania wyrażenia „%s”" @@ -511,11 +468,11 @@ "Program „%s” pozwala na\n" "modyfikowanie istotnych elementów systemu." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Wszechstronne narzędzie wyszukiwania plików" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -530,37 +487,28 @@ "rodzaj pliku oraz jego zawartość, użytkownicy nie będą dłużej skazani na " "bycie zależnym od menadżera plików oraz umiejętności organizacyjnych." -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"To wydanie rozwojowe zawiera znaczne odświeżenie interfejsu użytkownika, " -"poprawia szybkość wyszukiwania i naprawia szereg błędów." - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "To wydanie poprawia dwa nowe błędy i zawiera aktualizację tłumaczeń." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -568,7 +516,7 @@ "To wydanie naprawia regresję, w wyniku której na niektórych systemach " "program nie był w stanie się uruchomić." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -579,7 +527,7 @@ "baza danych jest przedawniona. Ulepszono także okna dialogowe wykorzystywane " "do aktualizowania bazy danych." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -587,19 +535,19 @@ "To wydanie naprawia dwa przypadki, w których nie były poprawnie ustawiane " "położenia, i ulepsza obsługę brakujących ikon symbolicznych." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -680,3 +628,36 @@ #~ msgid "Locate database updated successfully." #~ msgstr "Uaktualniono bazę nazw plików." + +#~ msgid "music" +#~ msgstr "muzyka" + +#~ msgid "images" +#~ msgstr "obrazy" + +#~ msgid "folders" +#~ msgstr "katalogi" + +#~ msgid "documents" +#~ msgstr "dokumenty" + +#~ msgid "week" +#~ msgstr "tydzień" + +#~ msgid "applications" +#~ msgstr "programy" + +#~ msgid "videos" +#~ msgstr "filmy" + +#~ msgid "any" +#~ msgstr "dowolne" + +#~ msgid "other" +#~ msgstr "inne" + +#~ msgid "column" +#~ msgstr "kolumna" + +#~ msgid "custom" +#~ msgstr "własny" diff -Nru catfish-unstable-1.3.4/po/POTFILES.in catfish-unstable-1.4.2/po/POTFILES.in --- catfish-unstable-1.3.4/po/POTFILES.in 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/POTFILES.in 2016-04-01 03:28:07.000000000 +0000 @@ -1,6 +1,6 @@ ### BEGIN LICENSE # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published # by the Free Software Foundation. diff -Nru catfish-unstable-1.3.4/po/pt_BR.po catfish-unstable-1.4.2/po/pt_BR.po --- catfish-unstable-1.3.4/po/pt_BR.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/pt_BR.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Pesquisador de arquivos Catfish" @@ -69,195 +69,152 @@ msgstr "Documentos" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Pastas" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Imagens" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Música" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Vídeos" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Aplicativos" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Outro" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Qualquer horário" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Esta semana" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Personalizado" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Ir para Hoje" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Data Inicial" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Data Final" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Atualizar" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 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:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Modificado" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Selecione um diretório" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Lista compacta" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Miniaturas" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Correspondência Correta" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Atualizar Indice da Pesquisa" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Sobre" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Atualizar a base de dados de pesquisa" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Desbloquear" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Base de dados:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Atualizado:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Atualizar a base de dados de pesquisa" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -266,39 +223,39 @@ "atualizada.\n" "Essa ação requer previlégios administrativos." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Uso: %prog [opções] caminho consulta" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Mostrar mensagens de debug (-vv debugs catfish_lib também)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Usar icones grandes" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Usar miniaturas" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Exibir a hora no formato ISO" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Consulta exata" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Incluir arquivos ocultos" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Consultar texto completo" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -313,11 +270,11 @@ msgid "%s (invalid encoding)" msgstr "%s (codificação inválida)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Nunca" @@ -368,17 +325,17 @@ msgid "\"%s\" could not be saved." msgstr "\"%s\" não pôde ser salvo." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" não pôde ser deletado." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Salvar \"%s\" como..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -387,7 +344,7 @@ "Tem certeza que deseja \n" "deletar permanentemente \"%s\"?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -396,75 +353,75 @@ "Tem certeza que deseja \n" "deletar permanentemente os %i arquivos selecionados?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Se você remover um arquivo, ele será perdido permanentemente." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Nome do arquivo" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Tamanho" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Localização" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Visualização" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Detalhes" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Hoje" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Ontem" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nenhum arquivo encontrado." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 arquivo encontrado." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i arquivos encontrados." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Pesquisando…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Procurando por \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Resultados da pesquisa para \"%s\"" @@ -507,11 +464,11 @@ "A aplicação '%s' permite que você\n" "modifique partes essenciais do sistema." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Ferramenta de busca de arquivos versátil" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -526,41 +483,34 @@ "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 development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -571,7 +521,7 @@ "de pesquisa está desatualizada e os diálogos usados ​​para atualizar a base " "de dados foram melhorados." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -579,7 +529,7 @@ "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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -588,7 +538,7 @@ "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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -596,7 +546,7 @@ "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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/pt.po catfish-unstable-1.4.2/po/pt.po --- catfish-unstable-1.3.4/po/pt.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/pt.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-09-10 14:39+0000\n" "Last-Translator: David Pires \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Pesquisador de ficheiros Catfish" @@ -69,195 +69,152 @@ msgstr "Documentos" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "documentos" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Pastas" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "pastas" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Imagens" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "imagens" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Musica" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "música" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Vídeos" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "vídeos" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Aplicações" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "aplicações" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Outros" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "outros" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Em qualquer altura" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "qualquer" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Esta semana" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "semana" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Personalizado" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "personalizado" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Ir para Hoje" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Data inicial" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "b>Data final" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Atualizar" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 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:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Tipo de Ficheiro" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "coluna" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Modificado" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Digite acima a sua consulta para encontrar os seus ficheiros" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "ou clique em " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " ícone para mais opções." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Selecione um diretório" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Lista Compacta" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Miniaturas" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Mostrar _Ficheiros Ocultos" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "_Conteúdo da pesquisa de ficheiro" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Correspondência exata" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Mostrar _Barra lateral" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Atualizar índice de pesquisa ..." -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Sobre" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Atualizar base de dados de pesquisa" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Desbloquear" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Base de dados:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Atualizada:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "big>Atualizar a Base de Dados de Pesquisa" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -266,39 +223,39 @@ "precisa de ser atualizada.\n" "Esta ação requer privilégios administrativos." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Uso: %prog [opções] consulta de caminho" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Mostrar mensagens de depuração (-vv debugs catfish_lib também)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Usar ícones grandes" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Usar miniaturas" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Exibir hora no formato ISO" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Executar correspondência exata" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Incluir ficheiros ocultos" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Executar pesquisa de texto completo" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -313,11 +270,11 @@ msgid "%s (invalid encoding)" msgstr "%s (codificação inválida)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Desconhecido" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Nunca" @@ -368,17 +325,17 @@ msgid "\"%s\" could not be saved." msgstr "\"%s\" não pôde ser guardado." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" não pôde ser eliminado." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Guardar \"%s\" como..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -387,7 +344,7 @@ "Tem a certeza que deseja \n" "eliminar permanentemente \"%s\"?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -396,43 +353,43 @@ "Tem a certeza que deseja \n" "eliminar permanentemente os %i ficheiros selecionados?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Se eliminar um ficheiro, ele será permanentemente perdido." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Nome do ficheiro" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Tamanho" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Localização" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Pré-visualização" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Detalhes" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Hoje" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Ontem" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nenhum ficheiro encontrado." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -440,33 +397,33 @@ "Torne a sua pesquisa menos específica\n" "ou tente outro diretório." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 ficheiro encontrado." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i ficheiros encontrados." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "A pesquisar..." -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Os resultados serão exibidos assim que forem encontrados." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Pesquisar por \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Resultados da pesquisa por \"%s\"" @@ -509,11 +466,11 @@ "A aplicação '%s' permite-lhe\n" "modificar partes essenciais do seu sistema." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Instrumento de pesquisa de ficheiros versátil" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -528,37 +485,28 @@ "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 development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"Esta versão de desenvolvimento inclui uma atualização significativa da UI, " -"melhora a velocidade de pesquisa e corrige diversos erros" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "Esta versão corrige dois erros novos e inclui traduções atualizadas." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -566,7 +514,7 @@ "Esta versão corrige uma regressão em que a aplicação é incapaz de iniciar em " "alguns sistemas." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -577,7 +525,7 @@ "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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -585,7 +533,7 @@ "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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -594,7 +542,7 @@ "código não utilizado e fixa potenciais problemas com a lista e seleção de " "itens." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -602,7 +550,7 @@ "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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -689,3 +637,36 @@ #~ msgid "Catfish could not find the default open wrapper." #~ msgstr "" #~ "Catfish não conseguiu encontrar a aplicação compatível com este ficheiro." + +#~ msgid "music" +#~ msgstr "música" + +#~ msgid "images" +#~ msgstr "imagens" + +#~ msgid "applications" +#~ msgstr "aplicações" + +#~ msgid "videos" +#~ msgstr "vídeos" + +#~ msgid "folders" +#~ msgstr "pastas" + +#~ msgid "documents" +#~ msgstr "documentos" + +#~ msgid "other" +#~ msgstr "outros" + +#~ msgid "column" +#~ msgstr "coluna" + +#~ msgid "week" +#~ msgstr "semana" + +#~ msgid "custom" +#~ msgstr "personalizado" + +#~ msgid "any" +#~ msgstr "qualquer" diff -Nru catfish-unstable-1.3.4/po/ru.po catfish-unstable-1.4.2/po/ru.po --- catfish-unstable-1.3.4/po/ru.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/ru.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-08-24 08:51+0000\n" "Last-Translator: Rodion R. \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Поиск файлов Catfish" @@ -69,195 +69,152 @@ msgstr "Документы" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "документы" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Папки" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "папки" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Изображения" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "изображения" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Музыка" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "музыка" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Видео" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "видео" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Приложения" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "приложения" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Другое" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "прочее" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Любое время" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "любой" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Эта неделя" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "неделя" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Указать период" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "пользовательский" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Сегодня" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Начальная дата" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Конечная дата" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Обновить" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "Поисковая база данных старше 7 дней. Обновить?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Тип файла" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "столбец" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Изменён" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Введите запрос выше, чтобы найти файлы" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "или щёлкните " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " значок дополнительных опций." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Выберите каталог" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Список" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Миниатюры" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Показать _скрытые файлы" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Искать по _содержимому файла" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Точное совпадение" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Показать _боковую панель" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "Обновить поисковый _индекс…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_О программе" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Обновить поисковую базу данных" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Разблокировать" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "База данных:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Обновлено:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Обновление поисковой базы данных" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -265,39 +222,39 @@ "Для ускорения результатов, поисковая база данных должна быть обновлена.\n" "Действие требует прав администратора." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Использование: %prog [опции] путь запрос" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Показывать сообщения отладки (-vv также отлаживает catfish_lib)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Использовать большие значки" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Использовать эскизы" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Отображать время в формате ISO" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Точное совпадение" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Искать в скрытых файлах" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Выполнять полнотекстовый поиск" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -310,11 +267,11 @@ msgid "%s (invalid encoding)" msgstr "%s (неверная кодировка)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Неизвестно" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Никогда" @@ -365,17 +322,17 @@ msgid "\"%s\" could not be saved." msgstr "«%s» не может быть сохранён." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "«%s» не может быть удалён." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Сохранить «%s» как…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -384,7 +341,7 @@ "Вы уверены, что хотите \n" "безвозвратно удалить «%s»?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -393,43 +350,43 @@ "Вы уверены, что хотите \n" "безвозвратно удалить %i выделенных файла (-ов)?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Если вы удалите файл, он будет безвозвратно утерян." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Имя файла" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Размер" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Местонахождение" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Предпросмотр" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Детали" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Cегодня" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Вчера" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Файлы не найдены." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -437,33 +394,33 @@ "Попробуйте задать не столь определённый запрос\n" "или поищите в другом каталоге." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Найден 1 файл." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Найдено файлов: %i." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "байт" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Поиск…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Результат отобразится, как только будет получен." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Поиск «%s»" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Результаты поиска «%s»" @@ -506,11 +463,11 @@ "Приложение '%s' позволяет вам\n" "изменять важные части системы." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Гибкий инструмент поиска файлов" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -524,38 +481,29 @@ "и содержимое файла пользователь более не зависит от файлового менеджера и " "организационных навыков." -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"В этой версии существенно обновлён интерфейс, улучшена скорость поиска и " -"исправлено несколько ошибок." - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" "Этот релиз исправляет пару новых ошибок и включает обновлённый перевод." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -563,32 +511,32 @@ "Этот релиз исправляет регрессию с невозможностью запуска приложения на " "некоторых системах." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -668,3 +616,36 @@ #~ msgid "Catfish could not find the default open wrapper." #~ msgstr "Catfish не нашёл приложение, открывающее файл по умолчанию." + +#~ msgid "other" +#~ msgstr "прочее" + +#~ msgid "music" +#~ msgstr "музыка" + +#~ msgid "images" +#~ msgstr "изображения" + +#~ msgid "applications" +#~ msgstr "приложения" + +#~ msgid "videos" +#~ msgstr "видео" + +#~ msgid "folders" +#~ msgstr "папки" + +#~ msgid "documents" +#~ msgstr "документы" + +#~ msgid "column" +#~ msgstr "столбец" + +#~ msgid "week" +#~ msgstr "неделя" + +#~ msgid "custom" +#~ msgstr "пользовательский" + +#~ msgid "any" +#~ msgstr "любой" diff -Nru catfish-unstable-1.3.4/po/si.po catfish-unstable-1.4.2/po/si.po --- catfish-unstable-1.3.4/po/si.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/si.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-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: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "කැට් ෆිෂ් ලිපි ගොනු සෙවීම" @@ -69,233 +69,190 @@ msgstr "ලියකියවිලි" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "පත්‍රිකා" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "පින්තූර" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "සංගීතය" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "වීඩියෝ" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "යෙදුම්" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "වෙනත්" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "ඕනෑම වේලාවක" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "මේ සතිය" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "භාවිතය" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "අද දිනයට යන්න" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "ආරම්භක දිනය" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "අවසාන දිනය" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "කැට් ෆිෂ්" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "වෙනස් කළ" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "නාමාවලියක් තෝරා ගැනීම" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "ගිවිසුම් ලේඛනය" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "සංක්ෂිප්තයන්" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "නිවැරදි ගැලපීම" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "යාවත්කාලීන දර්ශක සෙවීම" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "පිළිබඳ" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "අගුළු හරින්න" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "පරිගණක නිදොස් කිරීමේ පණිවුඩ පෙන්වන්න" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "විශාල සංකේතයන් පාවිච්චි කරන්න" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "සංක්ෂිප්තයන් භාවිතා කරන්න" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "කාලය ISO ප්‍රමිති ආකෘතියෙන් පෙන්වන්න" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "නිවැරදිම ගැලපිම ඉටු කරන්න" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "සැඟවුණු ලිපිගොනු ඇතුලත් කරන්න" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "පූර්ණ වගන්ති සෙවුම් කරන්න" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "%s (අවලංගු කේතීකරණයකි)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,99 +318,99 @@ msgid "\"%s\" could not be saved." msgstr "\"%s\" ප්‍රමාණයක් සුරැකුම් කල නොහැක" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" කැ ප්‍රමාණයක් විනාශ කල නොහැක" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "\"%s\" ලෙස සුරකින්න" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "මෙම \"%s\" සදහටම විනාශ කල යුතු බව ඔබට විශ්වාසද?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "මෙම තෝරාගත් ලිපි ගොනු %i සදහටම විනාශ කල යුතු බව ඔබට විශ්වාසද?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "ඔබ ලිපි ගොනුවක් විනාශ කල හොත්, එය සදහටම නැති වේ." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "ලිපි ගොනු නාමය" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "ප්‍රමාණය" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "පිහිටීම" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "පූර්ව දර්ශණය" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "විස්තර" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "අද" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "ඊයේ" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "ලිපිගොනු ආරම්භ කර නැත" -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 වන ලිපිගොනුව ආරම්භ කරන්න" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i ලිපිගොනුව ආරම්භ කරන්න" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "බයිට" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "සොයමින් පවතී" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\" සෙවීම සදහා" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" සදහා ප්‍රතිඵල සොයයි" @@ -492,11 +449,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -505,66 +462,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/sk.po catfish-unstable-1.4.2/po/sk.po --- catfish-unstable-1.3.4/po/sk.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/sk.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2013-05-03 10:15+0000\n" "Last-Translator: Juraj Salus \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Vyhľadávač súborov Catfish" @@ -69,233 +69,190 @@ msgstr "Dokumenty" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Obrázky" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Hudba" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Videá" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Programy" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Iné" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Kedykoľvek" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Tento týždeň" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Vlastné" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Prejsť na dnešok" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Dátum od" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Dátum do" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Vybrať priečinok" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Presná zhoda" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Aktualizovať index vyhľadávania..." -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Odomknúť" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Zobraziť správy Debug (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,17 +318,17 @@ msgid "\"%s\" could not be saved." msgstr "\"%s\" sa nepodarilo uložiť." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" sa nepodarilo vymazať." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Uložiť \"%s\" ako…" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -380,7 +337,7 @@ "Ste si istý, že chcete natrvalo zmazať \n" "\"%s\"?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -389,75 +346,75 @@ "Ste si istý, že chcete natrvalo zmazať \n" "%i vybraných súborov?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Ak súbor vymažete, bude nenávratne stratený." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Názov súboru" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Veľkosť" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Umiestnenie" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Náhľad" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Žiadny súbor sa nenašiel." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i súborov nájdených." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Hľadá sa…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Hľadá sa \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Výsledky vyhľadávania \"%s\"" @@ -496,11 +453,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -509,66 +466,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/sr.po catfish-unstable-1.4.2/po/sr.po --- catfish-unstable-1.3.4/po/sr.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/sr.po 2016-04-01 03:28:07.000000000 +0000 @@ -8,18 +8,18 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-12-26 09:28+0000\n" "Last-Translator: Саша Петровић \n" "Language-Team: српски \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" "Language: sr\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Сом претрага датотека (Catfish)" @@ -71,195 +71,152 @@ msgstr "Документи" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "документа" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Фасцикле" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "фасцикле" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Слике" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "слике" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Музика" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "музика" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Видео" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "снимци" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Програми" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "програми" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Друго" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "остало" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Било када" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "било које" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Ове седмице" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "седмица" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Прилагођено" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "произвољно" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Иди на данашњи дан" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Почетни датум" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Завршни датум" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Сом" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Освежи" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "Складиште података претраге је старије од 7 дана. Освежити га сада?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Врста датотеке" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "колона" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Измењено" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Унесите упит изнад ради претраге датотека" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "на клик " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " иконица за више могућности" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Изаберите фасциклу" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Збијени списак" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Умањене сличице" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Прикажи _скривене датотеке" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Тражи садржај датотека" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Потпуно поклапање" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Приказуј бочну _површ" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Освежи списак датотека претраге…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_О програму" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Освежи складиште података претраге" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Откључај" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Складиште података:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Освежено:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Освежи складиште података претраге" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -267,39 +224,39 @@ "Потребно је освежити складиште података претраге ради брже претраге.\n" "Ова радња захтева корена овлашћења." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Употреба: %prog [могућности] путања упита" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Приказуј поруке праћења грешака (такође и -vv debugs catfish_lib)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Користи велике иконице" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Користи умањене сличице" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Приказуј време у ИСО облику" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Изведи потпуно слагање" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Укључи скривене датотеке" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Изведи потпуну претрагу текста" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -313,11 +270,11 @@ msgid "%s (invalid encoding)" msgstr "%s (неисправно шифровање знакова)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Непознато" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Никад" @@ -368,17 +325,17 @@ msgid "\"%s\" could not be saved." msgstr "Нисам успео да сачувам „%s“." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "Нисам успео да избришем „%s“." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Сачувај „%s“ као..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -387,7 +344,7 @@ "Да ли сте сигурни да желите да \n" "трајно избришете „%s“?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -396,43 +353,43 @@ "Да ли сте сигурни да желите да \n" "трајно избришете %i означених датотека?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Ако избришете датотеку, биће трајно изгубљена." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Назив датотеке" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Величина" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Место" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Преглед" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Појединости" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Данас" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Јуче" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Нисам пронашао ни једну датотеку." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -440,33 +397,33 @@ "Покушајте са мање одређеним упитима\n" "или тражите у другој фасцикли." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 датотека је пронађена." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Нашао сам %i датотека." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "бајта" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Тражим…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Излази ће се приказивати чим буду пронађени." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Тражим „%s“" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Излаз претраге за „%s“" @@ -509,11 +466,11 @@ "Програм „%s“ омогућава\n" "измену кључних делова система." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Свестрани прибор за претрагу датотека" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -527,43 +484,28 @@ "што су време измене, врста датотека и садржај датотека, корисници неће више " "зависити од уређивачких вештина управника датотека." -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" -"Ово развојно издање скрива излаз наредбе „which“ на покретању и садржи " -"освежене преводе." - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" -"Ово развојно издање познаје тачне мапе умањених сличица и садржи освежене " -"преводе." #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" -"Ово развојно издање је добило нове поставке прекидача заглавних трака и " -"исправке неколико грешака." #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"Ово развојно издање је добило значајне поправке корисничког сучеља, поправку " -"брзине претраге и исправке неколико грешака." - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "Ово издање решава две нове бубе и укључује у себи освежене преводе." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -571,7 +513,7 @@ "Ово издање решава губитак старих могућности, где програм није могао да се " "покрене на неким системима." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -581,7 +523,7 @@ "Трака обавештења се сада приказује када складиште података застари, а прозор " "који се користи за освежавање складишта података је побољшан." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -589,7 +531,7 @@ "Ово издање исправља две појаве у којима се locate не извршава како треба, и " "побољшава баратање недостајућим знаковним иконицама." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -597,7 +539,7 @@ "У овом стабилном издању је побољшана поузданост прозорчета лозинке, учишћен " "вишак кода, и исправљене могуће потешкоће са списком и избором ставки." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -605,7 +547,7 @@ "У овом издању су исправљене могући безбедносни пропусти са самопокретањем " "програма и губитак старих могућности избора више ставки." -#: ../data/appdata/catfish.appdata.xml.in.h:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -691,3 +633,36 @@ #~ "Да би пружила тачне излазе, остава података „locate“ треба бити " #~ "освежена.\n" #~ "То захтева судо (административна) овлашћења." + +#~ msgid "music" +#~ msgstr "музика" + +#~ msgid "images" +#~ msgstr "слике" + +#~ msgid "applications" +#~ msgstr "програми" + +#~ msgid "videos" +#~ msgstr "снимци" + +#~ msgid "folders" +#~ msgstr "фасцикле" + +#~ msgid "documents" +#~ msgstr "документа" + +#~ msgid "other" +#~ msgstr "остало" + +#~ msgid "column" +#~ msgstr "колона" + +#~ msgid "week" +#~ msgstr "седмица" + +#~ msgid "custom" +#~ msgstr "произвољно" + +#~ msgid "any" +#~ msgstr "било које" diff -Nru catfish-unstable-1.3.4/po/sv.po catfish-unstable-1.4.2/po/sv.po --- catfish-unstable-1.3.4/po/sv.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/sv.po 2016-04-01 03:28:07.000000000 +0000 @@ -9,18 +9,18 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" -"PO-Revision-Date: 2015-12-03 20:47+0000\n" -"Last-Translator: Andreas Rönnquist \n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" +"PO-Revision-Date: 2016-03-26 01:48+0000\n" +"Last-Translator: Påvel Nicklasson \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" "Language: sv\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish filsökning" @@ -72,195 +72,152 @@ msgstr "Dokument" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "dokument" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Mappar" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "mappar" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Bilder" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "bilder" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Musik" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "musik" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Filmer" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "filmer" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Program" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "program" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Annat" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "annat" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "När som helst" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "vilken" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Den här veckan" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "vecka" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "Anpassad" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "anpassad" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Gå till idag" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Startdatum" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Slutdatum" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "Uppdatera" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "Sökdatabasen är mer än 7 dagar gammal. Uppdatera nu?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Filtyp" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "kolumn" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Ändrad" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "Ange din sökning ovan för att hitta dina filer" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "eller klicka på " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " ikonen för fler alternativ." -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Välj en katalog" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "Kompakt lista" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "Miniatyrbilder" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "Visa _dolda filer" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "Sök fil_innehåll" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Exakt matchning" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "Visa _sidopanel" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Uppdatera sökindex..." -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "_Om" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "Uppdatera sökdatabas" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Lås upp" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Databas:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "Uppdaterad:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "Uppdatera sökdatabas" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -268,39 +225,39 @@ "Sökdatabasen behöver förnyas för snabbare sökresultat.\n" "Denna åtgärd kräver administrativa rättigheter." -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "Användning: %prog [alternativ] sökväg fråga" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Visa felsökningsmeddelanden (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Använd stora ikoner" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Använd miniatyrbilder" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Visa tid i ISO-format" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Utför exakt matchning" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Inkludera dolda filer" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Utför fulltextsökning" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -313,11 +270,11 @@ msgid "%s (invalid encoding)" msgstr "%s (ogiltig kodning)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "Okänd" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "Aldrig" @@ -368,17 +325,17 @@ msgid "\"%s\" could not be saved." msgstr "Det gick inte att spara \"%s\"." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "Det gick inte att ta bort \"%s\"." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "Spara \"%s\" som..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -387,7 +344,7 @@ "Är du säker på att du vill \n" "ta bort \"%s\" permanent?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -396,43 +353,43 @@ "Är du säker på att du vill \n" "ta bort de %i markerade filerna permanent?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Om du tar bort en fil, är den permanent borta." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Filnamn" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Storlek" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Plats" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Förhandsvisning" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Detaljer" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Idag" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Igår" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Inga filer hittades." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -440,33 +397,33 @@ "Försök gör dina sökningar mindre specificerade\n" "eller försök med en annan katalog." -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 fil hittad." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i filer hittade." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bits" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Söker..." -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Resultat kommer att visas direkt då de hittas." -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Söker efter \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Sökresultat för \"%s\"" @@ -509,11 +466,11 @@ "Programmet '%s' tillåter dig att\n" "ändra grundläggande delar av sitt system." -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "Mångsidigt sökverktyg" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -527,45 +484,39 @@ "ändringsdatum, filtyp och filinnehåll, är användare inte längre beroende av " "filhanteraren eller organisationsförmåga." -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" -"Denna utvecklingsutgåva gömmer utdatan från `which'-kommandot vid uppstart " -"och inkluderar uppdaterade översättningar." - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." -msgstr "" -"Denna utvecklingsutgåva detekterar nu den korrekta miniatyrbildsfoldern för " -"användning och inkluderar uppdaterade översättningar." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." +msgstr "" +"Denna version rättar till flera fel relaterade till resultatfönstret. Filer " +"undantas återigen från resultatlistan när de är borttagna. Mitten- och " +"högerklicksfunktionalitet har blivit återställd. Datumintervallsfilter " +"tillämpas nu enligt tidszon istället för Universal Coordinated Time (UTC)." #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." -msgstr "" -"Denna utvecklingsutgåva lägger till en ny inställning för att växla " -"rubriklister och rättar flera fel." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." +msgstr "" +"Denna version inkluderar omfattande gränssnittsuppdateringar, förbättrad " +"sökhastighet, och rättar till flera fel. Arbetsflödet har förbättrats, genom " +"att använda några av de senaste funktionerna i GTK+ verktygslådan, " +"inkluderande valfria rubrikrader och popover widgets. Lösenordshantering har " +"förbättrats med integrationen av PolicyKit då detta är tillgängligt." #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" -"Denna utvecklingsversion inkluderar en betydande UI-uppdatering, förbättrad " -"sökhastighet, och rättning av åtskilliga fel." - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" "Denna version rättar till två nya fel och innehåller uppdaterade " "översättningar." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -573,7 +524,7 @@ "Denna version ordnar en regression som gjorde att programmet inte gick att " "starta på en del system." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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, " @@ -583,7 +534,7 @@ "längre stöddes. En Inforad visas nu då sökdatabasen är föråldrad, och " "dialogerna som används för att uppdatera databasen har förbättrats." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 msgid "" "This release fixes two issues where locate would not be properly executed " "and improves handling of missing symbolic icons." @@ -591,7 +542,7 @@ "Denna version ordnar två problem då lokalisering inte gjordes på rätt sätt " "och förbättrar hantering av saknade symboliska ikoner." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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." @@ -600,7 +551,7 @@ "rensade upp oanvänd kod, och ordnade eventuella problem med list- och " "objektmarkering." -#: ../data/appdata/catfish.appdata.xml.in.h:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 msgid "" "This release fixed a potential security issue with program startup and fixed " "a regression with selecting multiple items." @@ -608,7 +559,7 @@ "Denna version ordnade ett möjligt säkerhetsproblem med programstart och " "ordnade en regression med markering av flera objekt." -#: ../data/appdata/catfish.appdata.xml.in.h:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -621,3 +572,36 @@ "eliminerade ett antal varningar vid paketering för distributioner. " "Tillgängligheten förbättrades i och med att alla strängar har gjorts " "översättningsbara och tangentbordsgenvägar har förbättrats." + +#~ msgid "documents" +#~ msgstr "dokument" + +#~ msgid "folders" +#~ msgstr "mappar" + +#~ msgid "images" +#~ msgstr "bilder" + +#~ msgid "music" +#~ msgstr "musik" + +#~ msgid "videos" +#~ msgstr "filmer" + +#~ msgid "applications" +#~ msgstr "program" + +#~ msgid "other" +#~ msgstr "annat" + +#~ msgid "any" +#~ msgstr "vilken" + +#~ msgid "week" +#~ msgstr "vecka" + +#~ msgid "custom" +#~ msgstr "anpassad" + +#~ msgid "column" +#~ msgstr "kolumn" diff -Nru catfish-unstable-1.3.4/po/tr.po catfish-unstable-1.4.2/po/tr.po --- catfish-unstable-1.3.4/po/tr.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/tr.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2016-01-30 08:05+0000\n" "Last-Translator: Utku BERBEROĞLU \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish Dosya Arama" @@ -69,233 +69,190 @@ msgstr "Belgeler" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "belgeler" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Dizinler" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "dizinler" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Görseller" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "resimler" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Müzik" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "müzik" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Videolar" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "videolar" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Uygulamalar" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "uygulamalar" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Diğer" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "diğer" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Herhangi bir zaman" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "Bu hafta" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "hafta" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "Bugüne Git" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "Başlangıç Tarihi" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "Bitiş Tarihi" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Kedibalığı" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "Arama veritabanı 7 günden daha eski. Şimdi güncellensin mi?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "Dosya Tipi" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "Bir Dizin Seçin" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "_Tam Eşleşme" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "_Arama İndeksini Güncelle" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "Kilidi Aç" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "Hata ayıklama iletilerini göster (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "Büyük simgeler kullan" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "Küçük resimler kullan" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "Zamanı ISO biçiminde göster" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "Tam eşleşme uygula" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "Gizli dosyaları içer" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "Tam metin aramasını içer" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,17 +318,17 @@ msgid "\"%s\" could not be saved." msgstr "\"%s\" kaydedilemedi." -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "\"%s\" silinemedi." -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "%s 'i Farklı Kaydet" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -380,7 +337,7 @@ "%s dosyasını kalıcı olarak silmek \n" "istediğinizden emin misiniz?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -389,75 +346,75 @@ "%i seçili dosyayı kalıcı olarak silmek \n" "istediğinizden emin misiniz?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "Bir dosya silerseniz, kalıcı olarak kaybedilir." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Dosya Adı" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Boyut" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Konum" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Önizleme" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Hiç dosya bulunamadı." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 dosya bulundu." -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i dosya bulundu." -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Aranıyor..." -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\" aranıyor" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" için arama sonuçları" @@ -496,11 +453,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -509,66 +466,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -647,3 +597,27 @@ #~ msgid "Catfish could not find the default open wrapper." #~ msgstr "Catfish dosyayı açacak varsayılan uygulamayı bulamıyor." + +#~ msgid "music" +#~ msgstr "müzik" + +#~ msgid "images" +#~ msgstr "resimler" + +#~ msgid "folders" +#~ msgstr "dizinler" + +#~ msgid "documents" +#~ msgstr "belgeler" + +#~ msgid "week" +#~ msgstr "hafta" + +#~ msgid "applications" +#~ msgstr "uygulamalar" + +#~ msgid "videos" +#~ msgstr "videolar" + +#~ msgid "other" +#~ msgstr "diğer" diff -Nru catfish-unstable-1.3.4/po/uk.po catfish-unstable-1.4.2/po/uk.po --- catfish-unstable-1.3.4/po/uk.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/uk.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2012-08-28 20:32+0000\n" "Last-Translator: Олександр \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "" @@ -69,233 +69,190 @@ msgstr "Документи" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Зображення" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Музика" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Відео" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Додатки" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Інше" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "Будь-коли" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -361,99 +318,99 @@ msgid "\"%s\" could not be saved." msgstr "" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "" -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete \"%s\"?" msgstr "" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "" -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Ім'я файлу" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Розмір" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Розташування" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Попередній перегляд" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Файли не знайдені." -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Пошук «%s»" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Результат пошуку для «%s»" @@ -492,11 +449,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -505,66 +462,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " diff -Nru catfish-unstable-1.3.4/po/zh_CN.po catfish-unstable-1.4.2/po/zh_CN.po --- catfish-unstable-1.3.4/po/zh_CN.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/zh_CN.po 2016-04-01 03:28:07.000000000 +0000 @@ -2,18 +2,18 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2016-01-05 14:15+0000\n" "Last-Translator: aerowolf \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" "Language: zh_CN\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish 文件搜索" @@ -65,195 +65,152 @@ msgstr "文档" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "文档" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "文件夹" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "文件夹" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "图片" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "图片" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "音乐" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "音乐" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "视频" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "视频" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "应用程序" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "应用程序" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "其他" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "其他" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "任何时间" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "任何" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "本周" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "周" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "自定义" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "自定义" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "转到今天" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "开始日期" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "结束日期" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "更新" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "搜索数据库已超过7天,是否现在更新?" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "文件类型" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "列" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "修改时间" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "在上面输入您要查找的文件" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "或者点击 " -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr " 图标以查看选项" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "选择一个目录" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "紧凑列表" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "缩略图" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "显示隐藏文件(&H)" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "搜索文件内容(&H)" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "完全匹配(&E)" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "显示侧边栏(&S)" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "更新搜索索引(&U)..." -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "关于(&A)" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "更新搜索数据库" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "解锁" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "数据库:" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "更新:" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "更新搜索数据库" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." @@ -261,39 +218,39 @@ "为了获得更快的搜索结果,搜索数据库需要被刷新。\n" "此操作需要管理员权限。" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "语法:%prog [选项] 路径 查询内容" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "显示调试信息 (-vv debugs catfish_lib also)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "使用大图标" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "使用缩略图" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "以 ISO 格式显示时间" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "执行精确匹配" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "包含隐藏文件" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "执行全文检索" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -306,11 +263,11 @@ msgid "%s (invalid encoding)" msgstr "%s (无效的编码)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "未知" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "从不" @@ -361,17 +318,17 @@ msgid "\"%s\" could not be saved." msgstr "无法保存 \"%s\"。" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "无法删除 \"%s\"。" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "将 \"%s\" 另存为..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -380,50 +337,50 @@ "您确定要永久删除\n" "\"%s\"?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" "permanently delete the %i selected files?" msgstr "您确定要删除选中的文件%i吗?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "如果您删除该文件,它会永久丢失。" -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "文件名" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "大小" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "位置" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "预览" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "详细信息" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "今天" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "昨天" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "没有找到文件。" -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -431,33 +388,33 @@ "尝试少指定一些搜索关键词\n" "或者尝试其它目录。" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "找到1个文件。" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "找到 %i 个文件。" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "字节" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "搜索中..." -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "正在搜索 \"%s\"" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" 的搜索结果" @@ -500,11 +457,11 @@ "应用程序 '%s' 想要修改\n" "系统的关键部分。" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "多功能文件搜索工具" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -515,66 +472,59 @@ "Catfish是一款小巧、快速、强大的文件搜索工具。特别设置一个突出显示搜索结果的小界面,可以帮助用户不必使用文件管理器就可以找到想要的文件。诸如修改日期" "、文件类型和文件内容等强大的过滤功能,用户则不必依赖文件管理器或者其它文件管理技能。" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "本版本修复了两处新的缺陷同时完善了翻译情况" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -610,6 +560,36 @@ #~ msgid "File Type" #~ msgstr "文件类型" +#~ msgid "music" +#~ msgstr "音乐" + +#~ msgid "images" +#~ msgstr "图片" + +#~ msgid "applications" +#~ msgstr "应用程序" + +#~ msgid "videos" +#~ msgstr "视频" + +#~ msgid "folders" +#~ msgstr "文件夹" + +#~ msgid "documents" +#~ msgstr "文档" + +#~ msgid "other" +#~ msgstr "其他" + +#~ msgid "column" +#~ msgstr "列" + +#~ msgid "custom" +#~ msgstr "自定义" + +#~ msgid "any" +#~ msgstr "任何" + #~ msgid "Enter search terms and press ENTER" #~ msgstr "输入要搜寻的东西并按「Enter」" @@ -626,3 +606,6 @@ #~ msgid "Updating database…" #~ msgstr "正在更新数据库..." + +#~ msgid "week" +#~ msgstr "周" diff -Nru catfish-unstable-1.3.4/po/zh_TW.po catfish-unstable-1.4.2/po/zh_TW.po --- catfish-unstable-1.3.4/po/zh_TW.po 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/po/zh_TW.po 2016-04-01 03:28:07.000000000 +0000 @@ -7,17 +7,17 @@ msgstr "" "Project-Id-Version: catfish-search\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2016-01-30 19:29-0500\n" +"POT-Creation-Date: 2016-03-30 22:23-0400\n" "PO-Revision-Date: 2015-12-19 03:39+0000\n" "Last-Translator: Hsiu-Ming Chang \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-01-31 05:56+0000\n" -"X-Generator: Launchpad (build 17908)\n" +"X-Launchpad-Export-Date: 2016-03-31 05:43+0000\n" +"X-Generator: Launchpad (build 17967)\n" -#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:39 +#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28 #: ../catfish/CatfishWindow.py:639 msgid "Catfish File Search" msgstr "Catfish 檔案搜尋" @@ -69,233 +69,190 @@ msgstr "文件" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "文件" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "資料夾" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "資料夾" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "圖片" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "圖片" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "音樂" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "音樂" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "影片" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "影片" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "應用程式" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "應用程式" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "其他" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "其他" - -#: ../data/ui/CatfishWindow.ui.h:24 +#: ../data/ui/CatfishWindow.ui.h:17 msgid "Any time" msgstr "任何時間" -#: ../data/ui/CatfishWindow.ui.h:25 -msgid "any" -msgstr "任何" - -#: ../data/ui/CatfishWindow.ui.h:26 +#: ../data/ui/CatfishWindow.ui.h:18 msgid "This week" msgstr "本週" -#: ../data/ui/CatfishWindow.ui.h:27 -msgid "week" -msgstr "週" - -#: ../data/ui/CatfishWindow.ui.h:28 +#: ../data/ui/CatfishWindow.ui.h:19 msgid "Custom" msgstr "自訂" -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "自訂" - -#: ../data/ui/CatfishWindow.ui.h:30 +#: ../data/ui/CatfishWindow.ui.h:20 msgid "Go to Today" msgstr "移至今天" -#: ../data/ui/CatfishWindow.ui.h:31 +#: ../data/ui/CatfishWindow.ui.h:21 msgid "Start Date" msgstr "開始日期" -#: ../data/ui/CatfishWindow.ui.h:32 +#: ../data/ui/CatfishWindow.ui.h:22 msgid "End Date" msgstr "結束日期" -#: ../data/ui/CatfishWindow.ui.h:33 ../catfish_lib/Window.py:218 +#: ../data/ui/CatfishWindow.ui.h:23 ../catfish_lib/Window.py:216 +#: ../data/appdata/catfish.appdata.xml.in.h:1 msgid "Catfish" msgstr "Catfish" -#: ../data/ui/CatfishWindow.ui.h:34 +#: ../data/ui/CatfishWindow.ui.h:24 msgid "Update" msgstr "更新" -#: ../data/ui/CatfishWindow.ui.h:35 +#: ../data/ui/CatfishWindow.ui.h:25 msgid "The search database is more than 7 days old. Update now?" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:36 +#: ../data/ui/CatfishWindow.ui.h:26 msgid "File Type" msgstr "檔案類型" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:40 +#: ../data/ui/CatfishWindow.ui.h:29 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "Enter your query above to find your files" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:41 +#: ../data/ui/CatfishWindow.ui.h:30 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid "or click the " msgstr "" -#: ../data/ui/CatfishWindow.ui.h:42 +#: ../data/ui/CatfishWindow.ui.h:31 msgctxt "" "Full text: Enter your query above to find your files or click the [icon] " "icon for more options." msgid " icon for more options." msgstr "" -#: ../data/ui/CatfishWindow.ui.h:43 +#: ../data/ui/CatfishWindow.ui.h:32 msgid "Select a Directory" msgstr "選取目錄" -#: ../data/ui/CatfishWindow.ui.h:44 +#: ../data/ui/CatfishWindow.ui.h:33 msgid "Compact List" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:45 +#: ../data/ui/CatfishWindow.ui.h:34 msgid "Thumbnails" msgstr "縮圖" -#: ../data/ui/CatfishWindow.ui.h:46 +#: ../data/ui/CatfishWindow.ui.h:35 msgid "Show _Hidden Files" msgstr "顯示隱藏檔(_H)" -#: ../data/ui/CatfishWindow.ui.h:47 +#: ../data/ui/CatfishWindow.ui.h:36 msgid "Search File _Contents" msgstr "搜尋檔案內容(_C)" -#: ../data/ui/CatfishWindow.ui.h:48 +#: ../data/ui/CatfishWindow.ui.h:37 msgid "_Exact Match" msgstr "完全符合(_E)" -#: ../data/ui/CatfishWindow.ui.h:49 +#: ../data/ui/CatfishWindow.ui.h:38 msgid "Show _Sidebar" msgstr "顯示側邊欄" -#: ../data/ui/CatfishWindow.ui.h:50 +#: ../data/ui/CatfishWindow.ui.h:39 msgid "_Update Search Index…" msgstr "更新搜尋索引(_U)…" -#: ../data/ui/CatfishWindow.ui.h:51 +#: ../data/ui/CatfishWindow.ui.h:40 msgid "_About" msgstr "關於(_A)" -#: ../data/ui/CatfishWindow.ui.h:52 +#: ../data/ui/CatfishWindow.ui.h:41 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" msgstr "解除鎖定" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:55 +#: ../data/ui/CatfishWindow.ui.h:44 msgid "Updated:" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:56 +#: ../data/ui/CatfishWindow.ui.h:45 msgid "Update Search Database" msgstr "" -#: ../data/ui/CatfishWindow.ui.h:57 +#: ../data/ui/CatfishWindow.ui.h:46 msgid "" "For faster search results, the search database needs to be refreshed.\n" "This action requires administrative rights." msgstr "" -#: ../catfish/__init__.py:34 +#: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" msgstr "" -#: ../catfish/__init__.py:39 +#: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" msgstr "顯示除錯訊息(使用 -vv 同時為 catfish_lib 除錯)" -#: ../catfish/__init__.py:42 +#: ../catfish/__init__.py:43 msgid "Use large icons" msgstr "使用大圖示" -#: ../catfish/__init__.py:44 +#: ../catfish/__init__.py:45 msgid "Use thumbnails" msgstr "使用縮圖" -#: ../catfish/__init__.py:46 +#: ../catfish/__init__.py:47 msgid "Display time in ISO format" msgstr "以 ISO 格式顯示時間" -#: ../catfish/__init__.py:50 +#: ../catfish/__init__.py:51 msgid "Perform exact match" msgstr "需要完全符合" -#: ../catfish/__init__.py:52 +#: ../catfish/__init__.py:53 msgid "Include hidden files" msgstr "包含隱藏檔案" -#: ../catfish/__init__.py:54 +#: ../catfish/__init__.py:55 msgid "Perform fulltext search" msgstr "進行全文搜尋" -#: ../catfish/__init__.py:56 +#: ../catfish/__init__.py:57 msgid "" "If path and query are provided, start searching when the application is " "displayed." @@ -308,11 +265,11 @@ msgid "%s (invalid encoding)" msgstr "%s (編碼無效)" -#: ../catfish/CatfishWindow.py:249 +#: ../catfish/CatfishWindow.py:248 msgid "Unknown" msgstr "未知" -#: ../catfish/CatfishWindow.py:253 +#: ../catfish/CatfishWindow.py:252 msgid "Never" msgstr "" @@ -363,17 +320,17 @@ msgid "\"%s\" could not be saved." msgstr "無法儲存「%s」。" -#: ../catfish/CatfishWindow.py:993 +#: ../catfish/CatfishWindow.py:990 #, python-format msgid "\"%s\" could not be deleted." msgstr "無法删除「%s」。" -#: ../catfish/CatfishWindow.py:1014 +#: ../catfish/CatfishWindow.py:1030 #, python-format msgid "Save \"%s\" as…" msgstr "將「%s」另存為..." -#: ../catfish/CatfishWindow.py:1049 +#: ../catfish/CatfishWindow.py:1065 #, python-format msgid "" "Are you sure that you want to \n" @@ -382,7 +339,7 @@ "真的要\n" "永久删除「%s」嗎?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -391,75 +348,75 @@ "真的要\n" "永久删除所選取的 %i 個檔案嗎?" -#: ../catfish/CatfishWindow.py:1056 +#: ../catfish/CatfishWindow.py:1072 msgid "If you delete a file, it is permanently lost." msgstr "如果將檔案刪除,其會永遠消失。" -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "檔案名稱" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "大小" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "位置" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "預覽" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "詳細資料" -#: ../catfish/CatfishWindow.py:1290 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "今天" -#: ../catfish/CatfishWindow.py:1292 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "昨天" -#: ../catfish/CatfishWindow.py:1371 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "找不到檔案。" -#: ../catfish/CatfishWindow.py:1373 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1378 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "找到 1 個檔案。" -#: ../catfish/CatfishWindow.py:1380 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "找到 %i 個檔案。" -#: ../catfish/CatfishWindow.py:1386 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1524 ../catfish/CatfishWindow.py:1533 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "搜尋中…" -#: ../catfish/CatfishWindow.py:1526 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1531 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "正在搜尋「%s」" -#: ../catfish/CatfishWindow.py:1620 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "搜尋「%s」的結果" @@ -498,11 +455,11 @@ "modify essential parts of your system." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:1 +#: ../data/appdata/catfish.appdata.xml.in.h:2 msgid "Versatile file searching tool" msgstr "多功能的檔案搜尋工具" -#: ../data/appdata/catfish.appdata.xml.in.h:2 +#: ../data/appdata/catfish.appdata.xml.in.h:3 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 " @@ -511,66 +468,59 @@ "file manager or organization skills." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:3 -msgid "" -"This development release hides the output of the `which` command on startup " -"and includes updated translations." -msgstr "" - #: ../data/appdata/catfish.appdata.xml.in.h:4 msgid "" -"This development release now detects the correct thumbnails directory to use " -"and includes updated translations." +"This release fixes several bugs related to the results window. Files are " +"once again removed from the results list when deleted. Middle- and right-" +"click functionality has been restored. Date range filters are now applied " +"according to timezone instead of Universal Coordinated Time (UTC)." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:5 msgid "" -"This development release adds a new setting to use toggle headerbars and " -"fixes several bugs." +"This release includes a significant interface refresh, improves search " +"speed, and fixes several bugs. The workflow has been improved, utilizing " +"some of the latest features of the GTK+ toolkit, including optional " +"headerbars and popover widgets. Password handling has been improved with the " +"integration of PolicyKit when available." msgstr "" #: ../data/appdata/catfish.appdata.xml.in.h:6 -msgid "" -"This development release includes a significant UI refresh, improves search " -"speed, and fixes several bugs" -msgstr "" - -#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "This release fixes two new bugs and includes updated translations." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../data/appdata/catfish.appdata.xml.in.h:8 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:10 +#: ../data/appdata/catfish.appdata.xml.in.h:9 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:11 +#: ../data/appdata/catfish.appdata.xml.in.h:10 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:12 +#: ../data/appdata/catfish.appdata.xml.in.h:11 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:13 +#: ../data/appdata/catfish.appdata.xml.in.h:12 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 " @@ -649,3 +599,33 @@ #~ msgstr "" #~ "要重新整理搜尋程式 locate 的資料庫才能提供準確结果。\n" #~ "這需要 sudo (系统管理員) 權限。" + +#~ msgid "folders" +#~ msgstr "資料夾" + +#~ msgid "documents" +#~ msgstr "文件" + +#~ msgid "week" +#~ msgstr "週" + +#~ msgid "custom" +#~ msgstr "自訂" + +#~ msgid "applications" +#~ msgstr "應用程式" + +#~ msgid "any" +#~ msgstr "任何" + +#~ msgid "other" +#~ msgstr "其他" + +#~ msgid "music" +#~ msgstr "音樂" + +#~ msgid "images" +#~ msgstr "圖片" + +#~ msgid "videos" +#~ msgstr "影片" diff -Nru catfish-unstable-1.3.4/setup.py catfish-unstable-1.4.2/setup.py --- catfish-unstable-1.3.4/setup.py 2016-01-31 23:17:36.000000000 +0000 +++ catfish-unstable-1.4.2/setup.py 2016-04-01 03:28:07.000000000 +0000 @@ -2,7 +2,7 @@ # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- # Catfish - a versatile file searching tool # Copyright (C) 2007-2012 Christian Dywan -# Copyright (C) 2012-2015 Sean Davis +# Copyright (C) 2012-2016 Sean Davis # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2, as published @@ -16,17 +16,20 @@ # You should have received a copy of the GNU General Public License along # with this program. If not, see . +import codecs import os import sys +import subprocess + try: import DistUtilsExtra.auto except ImportError: sys.stderr.write("To build catfish you need " - "https://launchpad.net/python-distutils-extra\n") + "https://launchpad.net/python-distutils-extra\n") sys.exit(1) assert DistUtilsExtra.auto.__version__ >= '2.18', \ - 'needs DistUtilsExtra.auto >= 2.18' + 'needs DistUtilsExtra.auto >= 2.18' def update_config(libdir, values={}): @@ -34,8 +37,8 @@ filename = os.path.join(libdir, 'catfish_lib', 'catfishconfig.py') oldvalues = {} try: - fin = open(filename, 'r', encoding='utf-8') - fout = open(filename + '.new', 'w', encoding='utf-8') + fin = codecs.open(filename, 'r', encoding='utf-8') + fout = codecs.open(filename + '.new', 'w', encoding='utf-8') for line in fin: fields = line.split(' = ') # Separate variable from value @@ -57,11 +60,11 @@ def move_icon_file(root, target_data, prefix): """Move the icon files to their installation prefix.""" old_icon_path = os.path.normpath( - os.path.join(root, target_data, 'share', 'catfish', 'media')) + os.path.join(root, target_data, 'share', 'catfish', 'media')) old_icon_file = os.path.join(old_icon_path, 'catfish.svg') icon_path = os.path.normpath( - os.path.join(root, target_data, 'share', 'icons', 'hicolor', - 'scalable', 'apps')) + os.path.join(root, target_data, 'share', 'icons', 'hicolor', + 'scalable', 'apps')) icon_file = os.path.join(icon_path, 'catfish.svg') # Get the real paths. @@ -88,7 +91,7 @@ def get_desktop_file(root, target_data, prefix): """Move the desktop file to its installation prefix.""" desktop_path = os.path.realpath( - os.path.join(root, target_data, 'share', 'applications')) + os.path.join(root, target_data, 'share', 'applications')) desktop_file = os.path.join(desktop_path, 'catfish.desktop') return desktop_file @@ -96,8 +99,8 @@ def update_desktop_file(filename, script_path): """Update the desktop file with prefixed paths.""" try: - fin = open(filename, 'r', encoding='utf-8') - fout = open(filename + '.new', 'w', encoding='utf-8') + fin = codecs.open(filename, 'r', encoding='utf-8') + fout = codecs.open(filename + '.new', 'w', encoding='utf-8') for line in fin: if 'Exec=' in line: @@ -116,20 +119,49 @@ sys.exit(1) +def get_appdata_file(): + """Prebuild the appdata file so it can be installed.""" + source = "data/appdata/catfish.appdata.xml.in" + target = "data/appdata/catfish.appdata.xml" + cmd = ["intltool-merge", "-d", "po", "--xml-style", source, target] + print(" ".join(cmd)) + subprocess.call(cmd) + return target + + +def cleanup_appdata_files(target_data): + appdata_dir = os.path.join(target_data, "appdata") + appdata_in = os.path.join(appdata_dir, "catfish.appdata.xml") + appdata = os.path.join(appdata_dir, "catfish.appdata.xml.in") + print("Removing %s and all files within." % appdata_dir) + if os.path.exists(appdata_in): + os.remove(appdata_in) + if os.path.exists(appdata): + os.remove(appdata) + if os.path.exists(appdata_dir): + os.rmdir(appdata_dir) + + class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto): + """Command Class to install and update the directory.""" + def run(self): """Run the setup commands.""" + appdata = get_appdata_file() + DistUtilsExtra.auto.install_auto.run(self) print(("=== Installing %s, version %s ===" % - (self.distribution.get_name(), self.distribution.get_version()))) + (self.distribution.get_name(), + self.distribution.get_version()))) if not self.prefix: self.prefix = '' if self.root: - target_data = os.path.relpath(self.install_data, self.root) + os.sep + target_data = os.path.relpath( + self.install_data, self.root) + os.sep target_pkgdata = os.path.join(target_data, 'share', 'catfish', '') target_scripts = os.path.join(self.install_scripts, '') @@ -167,18 +199,25 @@ move_icon_file(self.root, target_data, self.prefix) update_desktop_file(desktop_file, script_path) + cleanup_appdata_files(target_pkgdata) + os.remove(appdata) + + DistUtilsExtra.auto.setup( name='catfish', - version='1.3.4', + version='1.4.2', license='GPL-3+', author='Sean Davis', author_email='smd.seandavis@gmail.com', - description='file searching tool which is configurable via the command line', + description='file searching tool configurable via the command line', long_description='Catfish 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.', url='https://launchpad.net/catfish-search', - data_files=[('share/man/man1', ['catfish.1'])], + data_files=[ + ('share/man/man1', ['catfish.1']), + ('share/appdata/', ['data/appdata/catfish.appdata.xml']) + ], cmdclass={'install': InstallAndUpdateDataDirectory} - ) +)