diff -Nru catfish-1.4.1/AUTHORS catfish-1.4.2/AUTHORS --- catfish-1.4.1/AUTHORS 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/bin/catfish catfish-1.4.2/bin/catfish --- catfish-1.4.1/bin/catfish 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/catfish/AboutCatfishDialog.py catfish-1.4.2/catfish/AboutCatfishDialog.py --- catfish-1.4.1/catfish/AboutCatfishDialog.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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 diff -Nru catfish-1.4.1/catfish/CatfishSearchEngine.py catfish-1.4.2/catfish/CatfishSearchEngine.py --- catfish-1.4.1/catfish/CatfishSearchEngine.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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 diff -Nru catfish-1.4.1/catfish/CatfishWindow.py catfish-1.4.2/catfish/CatfishWindow.py --- catfish-1.4.1/catfish/CatfishWindow.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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 @@ -873,16 +873,16 @@ 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 = (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): @@ -1332,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: @@ -1340,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): diff -Nru catfish-1.4.1/catfish/__init__.py catfish-1.4.2/catfish/__init__.py --- catfish-1.4.1/catfish/__init__.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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 diff -Nru catfish-1.4.1/catfish.1 catfish-1.4.2/catfish.1 --- catfish-1.4.1/catfish.1 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/catfish_lib/AboutDialog.py catfish-1.4.2/catfish_lib/AboutDialog.py --- catfish-1.4.1/catfish_lib/AboutDialog.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/catfish_lib/Builder.py catfish-1.4.2/catfish_lib/Builder.py --- catfish-1.4.1/catfish_lib/Builder.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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 diff -Nru catfish-1.4.1/catfish_lib/catfishconfig.py catfish-1.4.2/catfish_lib/catfishconfig.py --- catfish-1.4.1/catfish_lib/catfishconfig.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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 @@ -31,7 +31,7 @@ # Location of locate.db file __locate_db_path__ = '/var/lib/mlocate/mlocate.db' __license__ = 'GPL-3+' -__version__ = '1.4.1' +__version__ = '1.4.2' class project_path_not_found(Exception): diff -Nru catfish-1.4.1/catfish_lib/CatfishSettings.py catfish-1.4.2/catfish_lib/CatfishSettings.py --- catfish-1.4.1/catfish_lib/CatfishSettings.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/catfish_lib/helpers.py catfish-1.4.2/catfish_lib/helpers.py --- catfish-1.4.1/catfish_lib/helpers.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/catfish_lib/__init__.py catfish-1.4.2/catfish_lib/__init__.py --- catfish-1.4.1/catfish_lib/__init__.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/catfish_lib/SudoDialog.py catfish-1.4.2/catfish_lib/SudoDialog.py --- catfish-1.4.1/catfish_lib/SudoDialog.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/catfish_lib/Window.py catfish-1.4.2/catfish_lib/Window.py --- catfish-1.4.1/catfish_lib/Window.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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 diff -Nru catfish-1.4.1/ChangeLog catfish-1.4.2/ChangeLog --- catfish-1.4.1/ChangeLog 2016-02-25 01:15:49.000000000 +0000 +++ catfish-1.4.2/ChangeLog 2016-04-01 03:28:07.000000000 +0000 @@ -1,3 +1,10 @@ +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) diff -Nru catfish-1.4.1/data/appdata/catfish.appdata.xml.in catfish-1.4.2/data/appdata/catfish.appdata.xml.in --- catfish-1.4.1/data/appdata/catfish.appdata.xml.in 2016-02-25 01:15:49.000000000 +0000 +++ catfish-1.4.2/data/appdata/catfish.appdata.xml.in 2016-04-01 03:28:07.000000000 +0000 @@ -33,6 +33,13 @@ + + + <_p>This release now displays all file timestamps according to + timezone instead of Universal Coordinated Time (UTC). + + + <_p>This release fixes several bugs related to the results diff -Nru catfish-1.4.1/data/ui/AboutCatfishDialog.ui catfish-1.4.2/data/ui/AboutCatfishDialog.ui --- catfish-1.4.1/data/ui/AboutCatfishDialog.ui 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/data/ui/CatfishWindow.ui catfish-1.4.2/data/ui/CatfishWindow.ui --- catfish-1.4.1/data/ui/CatfishWindow.ui 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/debian/changelog catfish-1.4.2/debian/changelog --- catfish-1.4.1/debian/changelog 2016-02-26 03:14:30.000000000 +0000 +++ catfish-1.4.2/debian/changelog 2016-04-01 03:36:53.000000000 +0000 @@ -1,3 +1,11 @@ +catfish (1.4.2-0ubuntu1) xenial; urgency=medium + + * New upstream stable (bugfix) release. + - Fixes issue with timestamps incorrectly displayed + in UTC. + + -- Sean Davis Thu, 31 Mar 2016 23:35:47 -0400 + catfish (1.4.1-0ubuntu1) xenial; urgency=medium * New upstream stable (bugfix) release. diff -Nru catfish-1.4.1/PKG-INFO catfish-1.4.2/PKG-INFO --- catfish-1.4.1/PKG-INFO 2016-02-25 01:16:05.000000000 +0000 +++ catfish-1.4.2/PKG-INFO 2016-04-01 03:28:21.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: catfish -Version: 1.4.1 +Version: 1.4.2 Summary: file searching tool configurable via the command line Home-page: https://launchpad.net/catfish-search Author: Sean Davis diff -Nru catfish-1.4.1/po/ar.po catfish-1.4.2/po/ar.po --- catfish-1.4.1/po/ar.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:40+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -364,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "اليوم" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "أمس" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "لم يتم العثور على ملفات" -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "بايتات" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "يبحث…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "يبحث عن \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "نتائج البحث عن \"%s\"" @@ -510,6 +466,14 @@ #: ../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 " @@ -517,42 +481,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 " @@ -560,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-1.4.1/po/be.po catfish-1.4.2/po/be.po --- catfish-1.4.1/po/be.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:40+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -362,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Файлы не знойдзены." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Пошук \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Вынікі пошуку для \"%s\"" @@ -508,6 +464,14 @@ #: ../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 " @@ -515,42 +479,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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-1.4.1/po/bg.po catfish-1.4.2/po/bg.po --- catfish-1.4.1/po/bg.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:40+0000\n" -"X-Generator: Launchpad (build 17925)\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,197 +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:216 +#: ../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." @@ -367,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" @@ -386,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Не са открити файлове." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -517,6 +473,14 @@ #: ../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 " @@ -524,42 +488,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 +585,9 @@ #~ msgid "_Show Advanced Settings" #~ msgstr "Покажи _разширените настройки" + +#~ msgid "column" +#~ msgstr "колона" + +#~ msgid "custom" +#~ msgstr "потребителски" diff -Nru catfish-1.4.1/po/ca.po catfish-1.4.2/po/ca.po --- catfish-1.4.1/po/ca.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-1.4.2/po/ca.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-02-23 22:18-0500\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-02-24 05:40+0000\n" -"X-Generator: Launchpad (build 17925)\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" @@ -69,197 +69,153 @@ msgstr "Documents" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "documents" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Carpetes" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "carpetes" - -#: ../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 "imatges" - -#: ../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 "Aplicacions" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "aplicacions" - -#: ../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 "d’altres" - -#: ../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 "qualsevol" - -#: ../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 "setmana" - -#: ../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 "personalitzat" - -#: ../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:216 +#: ../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 "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 "Tipus de fitxer" -#: ../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 "" -#: ../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 cerca" -#: ../data/ui/CatfishWindow.ui.h:53 +#: ../data/ui/CatfishWindow.ui.h:42 msgid "Unlock" 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." @@ -363,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" @@ -382,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" @@ -391,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Avui" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Ahir" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "No s’ha trobat cap fitxer." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "S’ha trobat un fitxer." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "S’han trobat %i fitxers." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "S’està cercant…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "S’està cercant «%s»" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Resultats de la cerca «%s»" @@ -513,6 +469,14 @@ #: ../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 " @@ -520,42 +484,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 " @@ -629,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-1.4.1/po/cs.po catfish-1.4.2/po/cs.po --- catfish-1.4.1/po/cs.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:40+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -367,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" @@ -386,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" @@ -395,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Dnes" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "včera" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nebyly nalezeny žádné soubory." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Nalezen jeden soubor" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i souborů bylo nalezeno." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bajty" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Hledá se…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Vyhledává se \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Výsledek hledání \"%s\"" @@ -526,6 +482,14 @@ #: ../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 " @@ -533,12 +497,12 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -546,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:7 +#: ../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, " @@ -556,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:8 +#: ../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." @@ -564,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:9 +#: ../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." @@ -573,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:10 +#: ../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." @@ -581,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:11 +#: ../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-1.4.1/po/de.po catfish-1.4.2/po/de.po --- catfish-1.4.1/po/de.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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" - -#: ../data/ui/CatfishWindow.ui.h:29 -msgid "custom" -msgstr "benutzerdefiniert" +msgstr "Angepasst" -#: ../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:216 +#: ../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." @@ -367,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" @@ -386,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" @@ -395,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Heute" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Gestern" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Keine Dateien gefunden." -#: ../catfish/CatfishWindow.py:1405 +#: ../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:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 Datei gefunden." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i Dateien gefunden." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "Bytes" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Suche läuft …" -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Nach »%s« wird gesucht" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Suchergebnisse für »%s«" @@ -529,6 +485,14 @@ #: ../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 " @@ -536,13 +500,13 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -550,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:7 +#: ../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, " @@ -561,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:8 +#: ../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." @@ -569,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:9 +#: ../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." @@ -578,7 +542,7 @@ "bereinigt nicht benutzten Code und behebt mögliche Probleme mit der Liste " "und Elementauswahl." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../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." @@ -586,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:11 +#: ../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 " @@ -673,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-1.4.1/po/el.po catfish-1.4.2/po/el.po --- catfish-1.4.1/po/el.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,197 +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:216 +#: ../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." @@ -373,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" @@ -392,7 +348,7 @@ "Είστε σίγουροι ότι θέλετε να \n" "διαγράψετε μόνιμα το \"%s\";" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -401,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Σήμερα" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Εχθές" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Δεν βρέθηκαν αρχεία." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -445,33 +401,33 @@ "Δοκιμάστε να κάνετε την αναζήτησή σας πιο γενική\n" "ή δοκιμάστε έναν άλλο φάκελο." -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Βρέθηκε 1 αρχείο." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Βρέθηκαν %i αρχεία." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Αναζήτηση…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Τα αποτελέσματα θα εμφανίζονται αμέσως μόλις βρίσκονται." -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Αναζήτηση για \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Αποτελέσματα αναζήτησης για \"%s\"" @@ -535,6 +491,14 @@ #: ../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 " @@ -542,13 +506,13 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -556,7 +520,7 @@ "Αυτή η έκδοση διορθώνει ένα σφάλμα που επανεμφανίστηκε, όπου η εφαρμογή δεν " "είναι σε θέση να ξεκινήσει σε ορισμένα συστήματα." -#: ../data/appdata/catfish.appdata.xml.in.h:7 +#: ../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, " @@ -568,7 +532,7 @@ "βελτιωθεί τα παράθυρα διαλόγου που χρησιμοποιούνται για την ενημέρωση της " "βάσης δεδομένων." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../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." @@ -577,7 +541,7 @@ "να εκτελεστεί σωστά και βελτιώνει τη διαχείριση συμβολικών εικονιδίων που " "λείπουν." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../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." @@ -586,7 +550,7 @@ "κωδικού πρόσβασης, καθαρίζει αχρησιμοποίητο κώδικα, και διορθώνει πιθανά " "ζητήματα με την επιλογή λίστας και στοιχείων." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../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 +559,7 @@ "προγράμματος και διορθώνει ένα σφάλμα που επανεμφανίστηκε σε σχέση με την " "επιλογή πολλών στοιχείων." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../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 " @@ -648,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-1.4.1/po/en_AU.po catfish-1.4.2/po/en_AU.po --- catfish-1.4.1/po/en_AU.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -368,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" @@ -387,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" @@ -396,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Today" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Yesterday" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "No files found." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 file found." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i files found." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Searching…" -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Searching for \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Search results for \"%s\"" @@ -527,6 +483,14 @@ #: ../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 " @@ -534,11 +498,11 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -546,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:7 +#: ../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, " @@ -556,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:8 +#: ../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." @@ -564,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:9 +#: ../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." @@ -572,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:10 +#: ../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." @@ -580,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:11 +#: ../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 " @@ -665,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-1.4.1/po/eo.po catfish-1.4.2/po/eo.po --- catfish-1.4.1/po/eo.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-1.4.2/po/eo.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-02-23 22:18-0500\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-02-24 05:40+0000\n" -"X-Generator: Launchpad (build 17925)\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 "Dosierserĉilo Catfish" @@ -69,196 +69,152 @@ msgstr "Dokumentoj" #: ../data/ui/CatfishWindow.ui.h:11 -msgid "documents" -msgstr "dokumentoj" - -#: ../data/ui/CatfishWindow.ui.h:12 msgid "Folders" msgstr "Dosierujoj" -#: ../data/ui/CatfishWindow.ui.h:13 -msgid "folders" -msgstr "dosierujoj" - -#: ../data/ui/CatfishWindow.ui.h:14 +#: ../data/ui/CatfishWindow.ui.h:12 msgid "Images" msgstr "Bildoj" -#: ../data/ui/CatfishWindow.ui.h:15 -msgid "images" -msgstr "bildoj" - -#: ../data/ui/CatfishWindow.ui.h:16 +#: ../data/ui/CatfishWindow.ui.h:13 msgid "Music" msgstr "Muziko" -#: ../data/ui/CatfishWindow.ui.h:17 -msgid "music" -msgstr "muziko" - -#: ../data/ui/CatfishWindow.ui.h:18 +#: ../data/ui/CatfishWindow.ui.h:14 msgid "Videos" msgstr "Videoj" -#: ../data/ui/CatfishWindow.ui.h:19 -msgid "videos" -msgstr "videoj" - -#: ../data/ui/CatfishWindow.ui.h:20 +#: ../data/ui/CatfishWindow.ui.h:15 msgid "Applications" msgstr "Aplikaĵoj" -#: ../data/ui/CatfishWindow.ui.h:21 -msgid "applications" -msgstr "aplikaĵoj" - -#: ../data/ui/CatfishWindow.ui.h:22 +#: ../data/ui/CatfishWindow.ui.h:16 msgid "Other" msgstr "Aliaj" -#: ../data/ui/CatfishWindow.ui.h:23 -msgid "other" -msgstr "aliaj" - -#: ../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 "semajno" - -#: ../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 "Iri al hodiaŭ" -#: ../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:216 +#: ../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 "Ĝisdatigi" -#: ../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 "Dosiertipo" -#: ../data/ui/CatfishWindow.ui.h:37 -msgid "column" -msgstr "kolumno" - -#: ../data/ui/CatfishWindow.ui.h:38 ../catfish/CatfishWindow.py:1085 +#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1101 msgid "Modified" msgstr "Ŝanĝita" -#: ../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 "Elektu dosierujon" -#: ../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 "Montri _kaŝitajn dosierojn" -#: ../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 "_Pri" -#: ../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 "Malŝlosi" -#: ../data/ui/CatfishWindow.ui.h:54 +#: ../data/ui/CatfishWindow.ui.h:43 msgid "Database:" msgstr "Datumbazo:" -#: ../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." @@ -362,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 "Konservi \"%s\" kiel…" -#: ../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 "Se vi forigas dosieron, ĝi estas definitive perdata." -#: ../catfish/CatfishWindow.py:1079 +#: ../catfish/CatfishWindow.py:1095 msgid "Filename" msgstr "Dosiernomo" -#: ../catfish/CatfishWindow.py:1081 +#: ../catfish/CatfishWindow.py:1097 msgid "Size" msgstr "Grandeco" -#: ../catfish/CatfishWindow.py:1083 +#: ../catfish/CatfishWindow.py:1099 msgid "Location" msgstr "Loko" -#: ../catfish/CatfishWindow.py:1095 +#: ../catfish/CatfishWindow.py:1111 msgid "Preview" msgstr "Antaŭrigardo" -#: ../catfish/CatfishWindow.py:1103 +#: ../catfish/CatfishWindow.py:1119 msgid "Details" msgstr "Detaloj" -#: ../catfish/CatfishWindow.py:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Hodiaŭ" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Hieraŭ" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "" -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 dosiero trovita." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i dosieroj trovitaj." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "oktetoj" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Serĉado…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -508,6 +464,14 @@ #: ../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 " @@ -515,42 +479,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 " @@ -558,3 +522,30 @@ "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-1.4.1/po/es.po catfish-1.4.2/po/es.po --- catfish-1.4.1/po/es.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-0500\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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,198 +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:216 +#: ../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." @@ -370,17 +326,17 @@ 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" @@ -389,7 +345,7 @@ "¿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" @@ -398,43 +354,43 @@ "¿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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Hoy" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Ayer" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "No se han encontrado archivos." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -442,33 +398,33 @@ "Trate de hacer su búsqueda menos específica \n" "o inténtelo en otro directorio." -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Se ha encontrado 1 archivo." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Se han encontrado %i archivos." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Buscando…" -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Buscando «%s»" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Resultados de búsqueda para «%s»" @@ -532,6 +488,14 @@ #: ../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 " @@ -539,12 +503,12 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -552,7 +516,7 @@ "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:7 +#: ../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,7 +527,7 @@ "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:8 +#: ../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." @@ -571,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:9 +#: ../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." @@ -580,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:10 +#: ../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." @@ -588,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:11 +#: ../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 " @@ -674,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-1.4.1/po/eu.po catfish-1.4.2/po/eu.po --- catfish-1.4.1/po/eu.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:40+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +69,152 @@ 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:216 +#: ../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." @@ -362,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Ez da fitxategirik aurkitu." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -508,6 +464,14 @@ #: ../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 " @@ -515,42 +479,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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-1.4.1/po/fi.po catfish-1.4.2/po/fi.po --- catfish-1.4.1/po/fi.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -369,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" @@ -388,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" @@ -397,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Tänään" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Eilen" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Tiedostoja ei löytynyt." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -441,33 +397,33 @@ "Yritä tehdä haustasi vähemmän yksityiskohtainen\n" "tai yritä toista hakemistoa." -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Löydettiin 1 tiedosto." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Löydettiin %i tiedostoa." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "tavua" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Haetaan…" -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Etsitään \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Hakutulokset haulle \"%s\"" @@ -531,6 +487,14 @@ #: ../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 " @@ -538,42 +502,55 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 " @@ -581,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" @@ -649,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-1.4.1/po/fr.po catfish-1.4.2/po/fr.po --- catfish-1.4.1/po/fr.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-0500\n" -"PO-Revision-Date: 2016-02-21 11:07+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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,198 +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:216 +#: ../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." @@ -372,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" @@ -391,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" @@ -400,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Aujourd’hui" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Hier" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Aucun fichier trouvé." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -444,33 +400,33 @@ "Essayez d'effectuer une recherche moins spécifique,\n" "ou cherchez dans un autre répertoire." -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 fichier trouvé." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i fichiers trouvés." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "octets" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Recherche..." -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Recherche de « %s »" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Rechercher les résultats pour « %s »" @@ -534,6 +490,20 @@ #: ../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 "" +"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 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 " @@ -547,13 +517,13 @@ "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:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -561,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:7 +#: ../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, " @@ -572,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:8 +#: ../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." @@ -580,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:9 +#: ../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." @@ -589,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:10 +#: ../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." @@ -597,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:11 +#: ../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 " @@ -683,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-1.4.1/po/hr.po catfish-1.4.2/po/hr.po --- catfish-1.4.1/po/hr.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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 "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:216 +#: ../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." @@ -362,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" @@ -381,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" @@ -390,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "NIjedna datoteka nije pronađena." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 datoteka je nađena." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i datoteka je nađeno." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -516,6 +472,14 @@ #: ../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 " @@ -523,42 +487,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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-1.4.1/po/hu.po catfish-1.4.2/po/hu.po --- catfish-1.4.1/po/hu.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +71,152 @@ 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:216 +#: ../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." @@ -366,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" @@ -385,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" @@ -394,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Ma" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Tegnap" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nem találhatók fájlok." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i fájl található." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bájt" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Keresés…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "„%s” keresése" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Találatok erre: „%s”" @@ -516,6 +472,14 @@ #: ../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 " @@ -523,42 +487,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 " @@ -638,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-1.4.1/po/id.po catfish-1.4.2/po/id.po --- catfish-1.4.1/po/id.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +69,152 @@ 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:216 +#: ../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." @@ -362,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "" -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -508,6 +464,14 @@ #: ../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 " @@ -515,42 +479,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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-1.4.1/po/is.po catfish-1.4.2/po/is.po --- catfish-1.4.1/po/is.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -368,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" @@ -387,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" @@ -396,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Í dag" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Í gær" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Engar skrár fundust." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -440,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:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 skrá fannst." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i skrár fundust." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bæti" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Leita..." -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Leita að \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Leitarniðurstöður fyrir „%s“" @@ -529,6 +485,14 @@ #: ../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 " @@ -536,42 +500,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 " @@ -579,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-1.4.1/po/it.po catfish-1.4.2/po/it.po --- catfish-1.4.1/po/it.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -369,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" @@ -388,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" @@ -397,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Oggi" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Ieri" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nessun file trovato." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Trovato 1 file." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Trovati %i file." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "byte" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Ricerca in corso..." -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Ricerca di «%s»" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Risultati della ricerca di «%s»" @@ -529,6 +485,14 @@ #: ../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 " @@ -536,12 +500,12 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -549,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:7 +#: ../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, " @@ -560,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:8 +#: ../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." @@ -568,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:9 +#: ../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." @@ -577,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:10 +#: ../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." @@ -585,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:11 +#: ../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-1.4.1/po/ja.po catfish-1.4.2/po/ja.po --- catfish-1.4.1/po/ja.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,207 +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:216 +#: ../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." @@ -268,7 +224,7 @@ #: ../catfish/__init__.py:35 msgid "Usage: %prog [options] path query" -msgstr "" +msgstr "Usage: %prog [オプション] パス 検索クエリ" #: ../catfish/__init__.py:40 msgid "Show debug messages (-vv debugs catfish_lib also)" @@ -313,11 +269,11 @@ #: ../catfish/CatfishWindow.py:248 msgid "Unknown" -msgstr "" +msgstr "不明" #: ../catfish/CatfishWindow.py:252 msgid "Never" -msgstr "" +msgstr "しない" #: ../catfish/CatfishWindow.py:607 msgid "An error occurred while updating the database." @@ -366,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" @@ -385,7 +341,7 @@ "本当に \"%s\"\n" " を恒久的に削除しても良いですか?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -394,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "今日" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "昨日" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "ファイルが一つも見つかりません。" -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" +"検索語を減らすか、\n" +"ほかのフォルダーを検索してください。" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1つのファイルを発見。" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i つのファイルを発見。" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "検索中…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." -msgstr "" +msgstr "結果は発見し次第表示されます。" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\" を検索中" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" の検索結果" @@ -523,6 +481,14 @@ #: ../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 " @@ -530,17 +496,17 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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, " @@ -549,26 +515,26 @@ "このリリースでは複数のキーワードでの検索ができなくなっていた問題を解決しました。検索データベースが古くなると情報バーが表示されるようにもなり、データベース" "のアップデートについてのダイアログも改善されました。" -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 +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-1.4.1/po/ko.po catfish-1.4.2/po/ko.po --- catfish-1.4.1/po/ko.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -362,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "" -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "파일 하나를 찾았습니다." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "검색하는 중…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\"을(를) 찾는 중" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\"에 대한 검색 결과" @@ -508,6 +464,14 @@ #: ../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 " @@ -515,42 +479,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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-1.4.1/po/lt.po catfish-1.4.2/po/lt.po --- catfish-1.4.1/po/lt.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-0500\n" -"PO-Revision-Date: 2016-02-22 10:24+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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,197 +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:216 +#: ../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." @@ -370,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" @@ -389,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" @@ -398,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Šiandien" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Vakar" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Failų nerasta." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -442,33 +398,33 @@ "Pabandykite vykdyti ne tokią konkrečią paiešką\n" "arba pabandykite kitą katalogą." -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Rastas 1 failas." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Rasta %i failų." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "baitų" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Ieškoma..." -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Ieškoma \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" paieškos rezultatai" @@ -533,6 +489,19 @@ #: ../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 "" +"Š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 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 " @@ -545,12 +514,12 @@ "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:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -558,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:7 +#: ../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, " @@ -569,7 +538,7 @@ "rodoma informacinė juosta, o taip pat yra patobulinti duomenų bazės " "atnaujinimo dialogai." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../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 +547,7 @@ "vietos nustatymas, o taip pat patobulinamas trūkstamų simbolinių piktogramų " "apdorojimas." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../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 +556,7 @@ "nebenaudojamas kodas ir ištaisytos potencialios, su sąrašo ir elemento " "pasirinkimu susijusios, klaidos." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../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 +565,7 @@ "paleidimu, o taip pat ištaisyta, su kelių elementų pasirinkimu susijusi, " "regresija." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../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 " @@ -608,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" @@ -650,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-1.4.1/po/lv.po catfish-1.4.2/po/lv.po --- catfish-1.4.1/po/lv.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +71,152 @@ 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:216 +#: ../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." @@ -364,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" @@ -383,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" @@ -392,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nav atrastu datņu." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Atrasta viena datne." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Atrastas %i datnes." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Meklē…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Meklē “%s”" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "“%s” meklēšanas rezultāti" @@ -514,6 +470,14 @@ #: ../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 " @@ -521,42 +485,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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-1.4.1/po/ml.po catfish-1.4.2/po/ml.po --- catfish-1.4.1/po/ml.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -362,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "" -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "" @@ -508,6 +464,14 @@ #: ../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 " @@ -515,42 +479,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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-1.4.1/po/nl.po catfish-1.4.2/po/nl.po --- catfish-1.4.1/po/nl.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:40+0000\n" -"X-Generator: Launchpad (build 17925)\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,197 +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:216 +#: ../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." @@ -371,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" @@ -390,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" @@ -399,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Vandaag" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Gisteren" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Geen bestanden gevonden." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -444,33 +400,33 @@ "specifiek te maken of probeer\n" "een andere map." -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 bestand gevonden." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i bestanden gevonden." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Aan het zoeken..." -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Aan het zoeken naar '%s'" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Zoekresultaten voor ‘%s’" @@ -536,19 +492,38 @@ #: ../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 "" +"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 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:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -556,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:7 +#: ../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, " @@ -567,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:8 +#: ../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." @@ -575,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:9 +#: ../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." @@ -584,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:10 +#: ../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." @@ -593,7 +568,7 @@ "programma-opstart en heeft een regressiefout hersteld betreffende het " "selecteren van meerdere elementen." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../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 +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-1.4.1/po/pl.po catfish-1.4.2/po/pl.po --- catfish-1.4.1/po/pl.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -371,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" @@ -390,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" @@ -399,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Dzisiaj" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Wczoraj" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nie odnaleziono plików." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -443,33 +399,33 @@ "Spróbuj mniej dookreślić swoje wyszukiwanie\n" "lub spróbuj przeszukać inny katalog." -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Odnaleziono 1 plik." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Odnaleziono %i plików." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bajtów" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Wyszukiwanie…" -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Wyszukiwanie wyrażenia „%s”" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Wyniki wyszukiwania wyrażenia „%s”" @@ -533,6 +489,14 @@ #: ../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 " @@ -540,11 +504,11 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -552,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:7 +#: ../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,7 +527,7 @@ "baza danych jest przedawniona. Ulepszono także okna dialogowe wykorzystywane " "do aktualizowania bazy danych." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../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." @@ -571,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:9 +#: ../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:10 +#: ../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:11 +#: ../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 " @@ -664,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-1.4.1/po/POTFILES.in catfish-1.4.2/po/POTFILES.in --- catfish-1.4.1/po/POTFILES.in 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-1.4.1/po/pt_BR.po catfish-1.4.2/po/pt_BR.po --- catfish-1.4.1/po/pt_BR.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -369,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" @@ -388,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" @@ -397,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Hoje" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Ontem" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nenhum arquivo encontrado." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 arquivo encontrado." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i arquivos encontrados." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Pesquisando…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Procurando por \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Resultados da pesquisa para \"%s\"" @@ -529,6 +485,14 @@ #: ../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 " @@ -536,17 +500,17 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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, " @@ -557,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:8 +#: ../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." @@ -565,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:9 +#: ../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." @@ -574,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:10 +#: ../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." @@ -582,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:11 +#: ../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-1.4.1/po/pt.po catfish-1.4.2/po/pt.po --- catfish-1.4.1/po/pt.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -369,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" @@ -388,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" @@ -397,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Hoje" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Ontem" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Nenhum ficheiro encontrado." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -441,33 +397,33 @@ "Torne a sua pesquisa menos específica\n" "ou tente outro diretório." -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 ficheiro encontrado." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i ficheiros encontrados." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "A pesquisar..." -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Pesquisar por \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Resultados da pesquisa por \"%s\"" @@ -531,6 +487,14 @@ #: ../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 " @@ -538,11 +502,11 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -550,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:7 +#: ../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, " @@ -561,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:8 +#: ../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." @@ -569,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:9 +#: ../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." @@ -578,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:10 +#: ../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." @@ -586,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:11 +#: ../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 " @@ -673,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-1.4.1/po/ru.po catfish-1.4.2/po/ru.po --- catfish-1.4.1/po/ru.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,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:216 +#: ../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." @@ -366,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" @@ -385,7 +341,7 @@ "Вы уверены, что хотите \n" "безвозвратно удалить «%s»?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -394,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Cегодня" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Вчера" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Файлы не найдены." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -438,33 +394,33 @@ "Попробуйте задать не столь определённый запрос\n" "или поищите в другом каталоге." -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "Найден 1 файл." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Найдено файлов: %i." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "байт" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Поиск…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Результат отобразится, как только будет получен." -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Поиск «%s»" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Результаты поиска «%s»" @@ -527,6 +483,14 @@ #: ../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 " @@ -534,12 +498,12 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -547,32 +511,32 @@ "Этот релиз исправляет регрессию с невозможностью запуска приложения на " "некоторых системах." -#: ../data/appdata/catfish.appdata.xml.in.h:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 +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-1.4.1/po/si.po catfish-1.4.2/po/si.po --- catfish-1.4.1/po/si.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -362,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "අද" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "ඊයේ" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "ලිපිගොනු ආරම්භ කර නැත" -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 වන ලිපිගොනුව ආරම්භ කරන්න" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i ලිපිගොනුව ආරම්භ කරන්න" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "බයිට" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "සොයමින් පවතී" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\" සෙවීම සදහා" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" සදහා ප්‍රතිඵල සොයයි" @@ -508,6 +464,14 @@ #: ../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 " @@ -515,42 +479,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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-1.4.1/po/sk.po catfish-1.4.2/po/sk.po --- catfish-1.4.1/po/sk.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +69,152 @@ 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:216 +#: ../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." @@ -362,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" @@ -381,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" @@ -390,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Žiadny súbor sa nenašiel." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i súborov nájdených." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Hľadá sa…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Hľadá sa \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Výsledky vyhľadávania \"%s\"" @@ -512,6 +468,14 @@ #: ../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 " @@ -519,42 +483,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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-1.4.1/po/sr.po catfish-1.4.2/po/sr.po --- catfish-1.4.1/po/sr.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -369,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" @@ -388,7 +344,7 @@ "Да ли сте сигурни да желите да \n" "трајно избришете „%s“?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -397,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Данас" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Јуче" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Нисам пронашао ни једну датотеку." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -441,33 +397,33 @@ "Покушајте са мање одређеним упитима\n" "или тражите у другој фасцикли." -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 датотека је пронађена." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "Нашао сам %i датотека." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "бајта" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Тражим…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "Излази ће се приказивати чим буду пронађени." -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Тражим „%s“" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Излаз претраге за „%s“" @@ -530,6 +486,14 @@ #: ../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 " @@ -537,11 +501,11 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -549,7 +513,7 @@ "Ово издање решава губитак старих могућности, где програм није могао да се " "покрене на неким системима." -#: ../data/appdata/catfish.appdata.xml.in.h:7 +#: ../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, " @@ -559,7 +523,7 @@ "Трака обавештења се сада приказује када складиште података застари, а прозор " "који се користи за освежавање складишта података је побољшан." -#: ../data/appdata/catfish.appdata.xml.in.h:8 +#: ../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." @@ -567,7 +531,7 @@ "Ово издање исправља две појаве у којима се locate не извршава како треба, и " "побољшава баратање недостајућим знаковним иконицама." -#: ../data/appdata/catfish.appdata.xml.in.h:9 +#: ../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." @@ -575,7 +539,7 @@ "У овом стабилном издању је побољшана поузданост прозорчета лозинке, учишћен " "вишак кода, и исправљене могуће потешкоће са списком и избором ставки." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../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." @@ -583,7 +547,7 @@ "У овом издању су исправљене могући безбедносни пропусти са самопокретањем " "програма и губитак старих могућности избора више ставки." -#: ../data/appdata/catfish.appdata.xml.in.h:11 +#: ../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 " @@ -669,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-1.4.1/po/sv.po catfish-1.4.2/po/sv.po --- catfish-1.4.1/po/sv.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-0500\n" -"PO-Revision-Date: 2016-02-01 07:47+0000\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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -369,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" @@ -388,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" @@ -397,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "Idag" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "Igår" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Inga filer hittades." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -441,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:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 fil hittad." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i filer hittade." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bits" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Söker..." -#: ../catfish/CatfishWindow.py:1559 +#: ../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:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Söker efter \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Sökresultat för \"%s\"" @@ -530,20 +486,37 @@ #: ../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 "" +"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 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:5 +#: ../data/appdata/catfish.appdata.xml.in.h:6 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:6 +#: ../data/appdata/catfish.appdata.xml.in.h:7 msgid "" "This release fixes a regression where the application is unable to start on " "some systems." @@ -551,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:7 +#: ../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, " @@ -561,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:8 +#: ../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." @@ -569,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:9 +#: ../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." @@ -578,7 +551,7 @@ "rensade upp oanvänd kod, och ordnade eventuella problem med list- och " "objektmarkering." -#: ../data/appdata/catfish.appdata.xml.in.h:10 +#: ../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." @@ -586,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:11 +#: ../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 " @@ -599,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-1.4.1/po/tr.po catfish-1.4.2/po/tr.po --- catfish-1.4.1/po/tr.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +69,152 @@ 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:216 +#: ../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." @@ -362,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" @@ -381,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" @@ -390,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Hiç dosya bulunamadı." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "1 dosya bulundu." -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "%i dosya bulundu." -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "Aranıyor..." -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "\"%s\" aranıyor" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" için arama sonuçları" @@ -512,6 +468,14 @@ #: ../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 " @@ -519,42 +483,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 " @@ -633,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-1.4.1/po/uk.po catfish-1.4.2/po/uk.po --- catfish-1.4.1/po/uk.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -362,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "Файли не знайдені." -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "Пошук «%s»" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "Результат пошуку для «%s»" @@ -508,6 +464,14 @@ #: ../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 " @@ -515,42 +479,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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-1.4.1/po/zh_CN.po catfish-1.4.2/po/zh_CN.po --- catfish-1.4.1/po/zh_CN.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,196 +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:216 +#: ../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." @@ -362,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" @@ -381,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "今天" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "昨天" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "没有找到文件。" -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." @@ -432,33 +388,33 @@ "尝试少指定一些搜索关键词\n" "或者尝试其它目录。" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "找到1个文件。" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "找到 %i 个文件。" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "字节" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "搜索中..." -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "正在搜索 \"%s\"" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "\"%s\" 的搜索结果" @@ -518,6 +474,14 @@ #: ../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 " @@ -525,42 +489,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 " @@ -596,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」" @@ -612,3 +606,6 @@ #~ msgid "Updating database…" #~ msgstr "正在更新数据库..." + +#~ msgid "week" +#~ msgstr "周" diff -Nru catfish-1.4.1/po/zh_TW.po catfish-1.4.2/po/zh_TW.po --- catfish-1.4.1/po/zh_TW.po 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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-02-23 22:18-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-02-24 05:41+0000\n" -"X-Generator: Launchpad (build 17925)\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,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:216 +#: ../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." @@ -364,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" @@ -383,7 +339,7 @@ "真的要\n" "永久删除「%s」嗎?" -#: ../catfish/CatfishWindow.py:1053 +#: ../catfish/CatfishWindow.py:1069 #, python-format msgid "" "Are you sure that you want to \n" @@ -392,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:1322 +#: ../catfish/CatfishWindow.py:1339 msgid "Today" msgstr "今天" -#: ../catfish/CatfishWindow.py:1324 +#: ../catfish/CatfishWindow.py:1341 msgid "Yesterday" msgstr "昨天" -#: ../catfish/CatfishWindow.py:1403 +#: ../catfish/CatfishWindow.py:1420 msgid "No files found." msgstr "找不到檔案。" -#: ../catfish/CatfishWindow.py:1405 +#: ../catfish/CatfishWindow.py:1422 msgid "" "Try making your search less specific\n" "or try another directory." msgstr "" -#: ../catfish/CatfishWindow.py:1411 +#: ../catfish/CatfishWindow.py:1428 msgid "1 file found." msgstr "找到 1 個檔案。" -#: ../catfish/CatfishWindow.py:1413 +#: ../catfish/CatfishWindow.py:1430 #, python-format msgid "%i files found." msgstr "找到 %i 個檔案。" -#: ../catfish/CatfishWindow.py:1419 +#: ../catfish/CatfishWindow.py:1436 msgid "bytes" msgstr "bytes" -#: ../catfish/CatfishWindow.py:1557 ../catfish/CatfishWindow.py:1566 +#: ../catfish/CatfishWindow.py:1574 ../catfish/CatfishWindow.py:1583 msgid "Searching…" msgstr "搜尋中…" -#: ../catfish/CatfishWindow.py:1559 +#: ../catfish/CatfishWindow.py:1576 msgid "Results will be displayed as soon as they are found." msgstr "" -#: ../catfish/CatfishWindow.py:1564 +#: ../catfish/CatfishWindow.py:1581 #, python-format msgid "Searching for \"%s\"" msgstr "正在搜尋「%s」" -#: ../catfish/CatfishWindow.py:1653 +#: ../catfish/CatfishWindow.py:1670 #, python-format msgid "Search results for \"%s\"" msgstr "搜尋「%s」的結果" @@ -514,6 +470,14 @@ #: ../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 " @@ -521,42 +485,42 @@ "integration of PolicyKit when available." msgstr "" -#: ../data/appdata/catfish.appdata.xml.in.h:5 +#: ../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:6 +#: ../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:7 +#: ../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:8 +#: ../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:9 +#: ../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:10 +#: ../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:11 +#: ../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 +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-1.4.1/setup.py catfish-1.4.2/setup.py --- catfish-1.4.1/setup.py 2016-02-25 01:15:49.000000000 +0000 +++ catfish-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 @@ -205,7 +205,7 @@ DistUtilsExtra.auto.setup( name='catfish', - version='1.4.1', + version='1.4.2', license='GPL-3+', author='Sean Davis', author_email='smd.seandavis@gmail.com',