diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/build-deb.sh polo-file-manager-18.1~59~ubuntu16.04.1/build-deb.sh --- polo-file-manager-17.10~28~ubuntu16.04.1/build-deb.sh 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/build-deb.sh 2018-01-11 12:49:20.000000000 +0000 @@ -6,46 +6,43 @@ . ./BUILD_CONFIG -tgz="../../pbuilder/" -dsc="../../builds/${pkg_name}*.dsc" -libs="../../libs" - sh build-source.sh -cd installer +rm -fv release/${pkg_name}-*.deb + +build_deb_for_dist() { -for arch in i386 amd64 -do +dist=$1 +arch=$2 echo "" echo "==========================================================================" -echo " build-deb.sh : $arch" +echo " build-deb.sh : $dist-$arch" echo "==========================================================================" echo "" -rm -rfv ${arch} -mkdir -pv ${arch} +rm -rfv release/${arch} +mkdir -pv release/${arch} echo "-------------------------------------------------------------------------" -sudo pbuilder --build --buildresult ${arch} --basetgz "${tgz}base-${arch}.tgz" ${dsc} +pbuilder-dist $dist $arch build release/source/${pkg_name}*.dsc --buildresult release/$arch -#check for errors -if [ $? -ne 0 ]; then - cd "$backup"; echo "Failed"; exit 1; -fi +if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi echo "--------------------------------------------------------------------------" -cp -pv --no-preserve=ownership ./${arch}/${pkg_name}*.deb ./${pkg_name}-v${pkg_version}-${arch}.deb +cp -pv --no-preserve=ownership release/${arch}/${pkg_name}*.deb release/${pkg_name}-v${pkg_version}-${arch}.deb -#check for errors -if [ $? -ne 0 ]; then - cd "$backup"; echo "Failed"; exit 1; -fi +if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi echo "--------------------------------------------------------------------------" -done +} + +build_deb_for_dist xenial i386 +build_deb_for_dist xenial amd64 +#build_deb_for_dist stretch armel +#build_deb_for_dist stretch armhf cd "$backup" diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/build-installers.sh polo-file-manager-18.1~59~ubuntu16.04.1/build-installers.sh --- polo-file-manager-17.10~28~ubuntu16.04.1/build-installers.sh 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/build-installers.sh 2018-01-11 12:49:20.000000000 +0000 @@ -6,19 +6,18 @@ . ./BUILD_CONFIG -rm -vf installer/*.run -rm -vf installer/*.deb +rm -vf release/*.run +rm -vf release/*.deb # build debs sh build-deb.sh -cd installer for arch in i386 amd64 do -rm -rfv ${arch}/files -mkdir -pv ${arch}/files +rm -rfv release/${arch}/files +mkdir -pv release/${arch}/files echo "" echo "==========================================================================" @@ -26,31 +25,25 @@ echo "==========================================================================" echo "" -dpkg-deb -x ${arch}/${pkg_name}*.deb ${arch}/files +dpkg-deb -x release/${pkg_name}-v${pkg_version}-${arch}.deb release/${arch}/files -#check for errors -if [ $? -ne 0 ]; then - cd "$backup"; echo "Failed"; exit 1; -fi +if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1;fi echo "--------------------------------------------------------------------------" -rm -rfv ${arch}/${pkg_name}*.* # remove extra files -cp -pv --no-preserve=ownership ./sanity.config ./${arch}/sanity.config -sanity --generate --base-path ./${arch} --out-path . --arch ${arch} - -#check for errors -if [ $? -ne 0 ]; then - cd "$backup"; echo "Failed"; exit 1; -fi +rm -rfv release/${arch}/${pkg_name}*.* # remove source files created by pbuilder +cp -pv --no-preserve=ownership release/sanity.config release/${arch}/sanity.config +sanity --generate --base-path release/${arch} --out-path release --arch ${arch} --xz -mv -v ./*${arch}.run ./${pkg_name}-v${pkg_version}-${arch}.run +if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi + +mv -v release/*${arch}.run release/${pkg_name}-v${pkg_version}-${arch}.run echo "--------------------------------------------------------------------------" done -cp -vf *.run ../../PACKAGES/ -cp -vf *.deb ../../PACKAGES/ +cp -vf release/*.run ../PACKAGES/ +cp -vf release/*.deb ../PACKAGES/ cd "$backup" diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/build-source.sh polo-file-manager-18.1~59~ubuntu16.04.1/build-source.sh --- polo-file-manager-17.10~28~ubuntu16.04.1/build-source.sh 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/build-source.sh 2018-01-11 12:49:20.000000000 +0000 @@ -16,29 +16,30 @@ echo "pkg_name: $pkg_name" echo "--------------------------------------------------------------------------" -# commit to bzr repo -bzr add * -bzr commit -m "updated" +# clean build dir + +rm -rfv /tmp/builds +mkdir -pv /tmp/builds -#skip errors as commit may fail if no changes +make clean + +rm -rfv release/source +mkdir -pv release/source echo "--------------------------------------------------------------------------" -# clean build dir -rm -rf ../builds +# build source package +dpkg-source --build ./ -# build source -bzr builddeb --source --native --build-dir ../builds/temp --result-dir ../builds +mv -vf ../$pkg_name*.dsc release/source/ +mv -vf ../$pkg_name*.tar.xz release/source/ -#check for errors -if [ $? -ne 0 ]; then - cd "$backup"; echo "Failed"; exit 1; -fi +if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi echo "--------------------------------------------------------------------------" # list files -ls -l ../builds +ls -l release/source echo "-------------------------------------------------------------------------" diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/debian/changelog polo-file-manager-18.1~59~ubuntu16.04.1/debian/changelog --- polo-file-manager-17.10~28~ubuntu16.04.1/debian/changelog 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/debian/changelog 2018-01-11 12:49:20.000000000 +0000 @@ -1,8 +1,28 @@ -polo-file-manager (17.10~28~ubuntu16.04.1) xenial; urgency=low +polo-file-manager (18.1~59~ubuntu16.04.1) xenial; urgency=low * Auto build. - -- Tony George Fri, 06 Oct 2017 16:40:34 +0000 + -- Tony George Thu, 11 Jan 2018 12:49:20 +0000 + +polo-file-manager (18.1) xenial; urgency=low + + * Bookmarks popup was redesigned + + * Added "File Compare" option to right-click menu of text files + + * Added appdata file for displaying app info and screenshots + + * Added "Properties" to right-click menu in Devices popup + + * Fixed a lag while navigating folders. The lag was due to changes + that were done in previous version for querying folders asynchronously + + * GPT label info will be displayed in filesystem properties + + * Installers now use XZ compression and are much smaller in size + + -- Tony George Sun, 07 Jan 2017 10:00:00 +0530 + polo-file-manager (17.10) xenial; urgency=low diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/debian/git-build-recipe.manifest polo-file-manager-18.1~59~ubuntu16.04.1/debian/git-build-recipe.manifest --- polo-file-manager-17.10~28~ubuntu16.04.1/debian/git-build-recipe.manifest 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/debian/git-build-recipe.manifest 2018-01-11 12:49:20.000000000 +0000 @@ -1,2 +1,2 @@ -# git-build-recipe format 0.4 deb-version {debupstream}~28 -lp:polo-file-manager git-commit:15eb28ab042bce37e9b77504d637930b9e8b952d +# git-build-recipe format 0.4 deb-version {debupstream}~59 +lp:polo-file-manager git-commit:53f00c4714bb0f8e8314e170458c01df7b4a8db4 diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/debian/polo-gtk.appdata.xml polo-file-manager-18.1~59~ubuntu16.04.1/debian/polo-gtk.appdata.xml --- polo-file-manager-17.10~28~ubuntu16.04.1/debian/polo-gtk.appdata.xml 1970-01-01 00:00:00.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/debian/polo-gtk.appdata.xml 2018-01-11 12:49:20.000000000 +0000 @@ -0,0 +1,41 @@ + + + + polo-gtk.desktop + CC-BY-SA-3.0 + GPL-3.0 + Polo File Manager + A modern file manager for Linux + +

+ A modern file manager for Linux. Supports single, dual and quad-pane + layouts with multiple tabs in each pane. Support for browsing archives + and cloud storage accounts. +

+
+ + + https://raw.githubusercontent.com/teejee2008/polo/master/src/share/polo/images/polo_layout_single_icons.png + + + https://raw.githubusercontent.com/teejee2008/polo/master/src/share/polo/images/polo_layout_single_list.png + + + https://raw.githubusercontent.com/teejee2008/polo/master/src/share/polo/images/polo_layout_dual_icons.png + + + https://raw.githubusercontent.com/teejee2008/polo/master/src/share/polo/images/polo_layout_dual_list.png + + + https://raw.githubusercontent.com/teejee2008/polo/master/images/polo_compress_expanded.png + + + https://raw.githubusercontent.com/teejee2008/polo/master/images/polo_compress_progress.png + + + https://raw.githubusercontent.com/teejee2008/polo/master/images/cloud_storage.png + + + https://github.com/teejee2008/polo +
+ Binary files /tmp/tmpUTjRZD/PZEPzO01X2/polo-file-manager-17.10~28~ubuntu16.04.1/images/cloud_storage.png and /tmp/tmpUTjRZD/q_MGD58HNd/polo-file-manager-18.1~59~ubuntu16.04.1/images/cloud_storage.png differ Binary files /tmp/tmpUTjRZD/PZEPzO01X2/polo-file-manager-17.10~28~ubuntu16.04.1/images/polo_compress_expanded.png and /tmp/tmpUTjRZD/q_MGD58HNd/polo-file-manager-18.1~59~ubuntu16.04.1/images/polo_compress_expanded.png differ Binary files /tmp/tmpUTjRZD/PZEPzO01X2/polo-file-manager-17.10~28~ubuntu16.04.1/images/polo_compress.png and /tmp/tmpUTjRZD/q_MGD58HNd/polo-file-manager-18.1~59~ubuntu16.04.1/images/polo_compress.png differ Binary files /tmp/tmpUTjRZD/PZEPzO01X2/polo-file-manager-17.10~28~ubuntu16.04.1/images/polo_compress_progress.png and /tmp/tmpUTjRZD/q_MGD58HNd/polo-file-manager-18.1~59~ubuntu16.04.1/images/polo_compress_progress.png differ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/INSTALL polo-file-manager-18.1~59~ubuntu16.04.1/INSTALL --- polo-file-manager-17.10~28~ubuntu16.04.1/INSTALL 1970-01-01 00:00:00.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/INSTALL 2018-01-11 12:49:20.000000000 +0000 @@ -0,0 +1,5 @@ +# build +make all + +# install +sudo make install diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/installer/sanity.config polo-file-manager-18.1~59~ubuntu16.04.1/installer/sanity.config --- polo-file-manager-17.10~28~ubuntu16.04.1/installer/sanity.config 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/installer/sanity.config 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ -app_name: Polo File Manager -depends_debian: libgee-0.8-2 libvte-2.91-0 libjson-glib-1.0-0 libxml2 ffmpeg mediainfo rsync pv p7zip p7zip-full tar gzip bzip2 xz-utils fish qemu-kvm qemu-utils gvfs gvfs-bin gvfs-backends -depends_redhat: libgee vte291 json-glib libxml2 ffmpeg mediainfo rsync pv p7zip p7zip-plugins tar gzip bzip2 xz fish qemu-kvm qemu-img gvfs gvfs-bin gvfs-backends -depends_arch: libgee vte3 json-glib libxml2 ffmpeg mediainfo rsync pv p7zip tar xz gzip bzip2 fish qemu gvfs gvfs-bin gvfs-backends -depends_generic: libgee libvte json-glib libxml2 ffmpeg mediainfo rsync pv p7zip p7zip-full tar gzip bzip2 xz-utils fish qemu-kvm qemu-utils gvfs gvfs-bin gvfs-backends -assume_yes: 0 -exec_line: polo-gtk diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/LICENSE.md polo-file-manager-18.1~59~ubuntu16.04.1/LICENSE.md --- polo-file-manager-17.10~28~ubuntu16.04.1/LICENSE.md 1970-01-01 00:00:00.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/LICENSE.md 2018-01-11 12:49:20.000000000 +0000 @@ -0,0 +1,166 @@ + + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/makefile polo-file-manager-18.1~59~ubuntu16.04.1/makefile --- polo-file-manager-17.10~28~ubuntu16.04.1/makefile 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/makefile 2018-01-11 12:49:20.000000000 +0000 @@ -1,5 +1,11 @@ all: cd src; make all + +app-gtk: + cd src; make app-gtk + +app-translations: + cd src; make app-translations clean: cd src; make clean diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/NOTES polo-file-manager-18.1~59~ubuntu16.04.1/NOTES --- polo-file-manager-17.10~28~ubuntu16.04.1/NOTES 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/NOTES 2018-01-11 12:49:20.000000000 +0000 @@ -1,22 +0,0 @@ - -Caching for FileItem objects -------------------------------- - -FileItem.add_to_cache() should be used for all virtual files and directories (Trash, Archive, Cloud, etc) so that FileViewList can map paths to objects. Path is resolved to a FileItem object using the cache when user types a path in the pathbar. Children will be queried everytime by calling query_children(). Existing child objects will be reused instead of creating new child objects. - -There is no use of caching FileItem objects that are local files. query_file_info() is the only method that takes time while creating a new object, and it needs to be queried everytime to determine if file is stale. FileItem.query_children() always reuses file and directory objects attached to the main directory object, so there is no need to add children to cache. - -This caching is necessary to keep memory use under control. Without this, every folder refresh will cause memory use to keep increasing. - -IconCache ------------- -There is a significant delay in loading thumbnail files from disk. Icons and thumbnails for FileItem objects are cached in memory (using class IconCache) to improve performance. Following parameters are used as key to identify objects uniquely: path, changed timestamp, icon size, load_thumbnail, use_transparency, use_emblems. - -Archives ------------------------- -* In TEST mode, the archive is extracted to a temporary directory. 7zip has a switch (-so) for writing output to stdout. This can be used to send the extracted data to /dev/null. However, in this case 7zip does not report any progress. So this is currently not used. - -7z x '/home/teejee/aam/samples/atom.7z' -so '-w/tmp/polo/0t9VJHWD/14616630804292682152/rrsv6Nh3' -y -bb1 -p -- > /dev/null - -* 7zip cannot handle LZOP files (both single or tarred). TAR can list TAR.LZO files. LZO files can be listed only with 'lzop -l'. LZO can store multiple files but cannot store paths (directories). - Binary files /tmp/tmpUTjRZD/PZEPzO01X2/polo-file-manager-17.10~28~ubuntu16.04.1/po/polo-de.mo and /tmp/tmpUTjRZD/q_MGD58HNd/polo-file-manager-18.1~59~ubuntu16.04.1/po/polo-de.mo differ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/po/polo-de.po polo-file-manager-18.1~59~ubuntu16.04.1/po/polo-de.po --- polo-file-manager-17.10~28~ubuntu16.04.1/po/polo-de.po 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/po/polo-de.po 2018-01-11 12:49:20.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: polo 1.6\n" "Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-09-17 16:04+0530\n" +"POT-Creation-Date: 2018-01-06 11:13+0530\n" "PO-Revision-Date: 2017-09-17 16:04+0530\n" "Last-Translator: Thomas Gorzka\n" "Language-Team: Thomas Gorzka \n" @@ -18,11 +18,12 @@ "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: Gtk/PropertiesWindow.vala:476 +#: Gtk/PropertiesWindow.vala:506 Gtk/PropertiesWindow.vala:508 +#: Gtk/Sidebar.vala:715 Gtk/Sidebar.vala:717 msgid "(empty)" msgstr "(empty)" -#: Gtk/FileContextMenu.vala:1103 +#: Gtk/FileContextMenu.vala:1150 msgid "..." msgstr "..." @@ -71,15 +72,15 @@ "Come back to Polo and click 'Finish' to add the account" msgstr "" -#: Gtk/FileViewToolbar.vala:502 Gtk/MainMenubar.vala:1958 +#: Gtk/FileViewToolbar.vala:498 Gtk/MainMenubar.vala:1957 msgid "About" msgstr "Über" -#: Gtk/FileViewList.vala:1021 +#: Gtk/FileViewList.vala:1019 msgid "Access" msgstr "Zugriff" -#: Gtk/PropertiesWindow.vala:322 +#: Gtk/PropertiesWindow.vala:329 msgid "Accessed" msgstr "Zugegriffen" @@ -122,8 +123,8 @@ msgid "Action button" msgstr "" -#: Gtk/PropertiesWindow.vala:1105 Gtk/PropertiesWindow.vala:1159 -#: Gtk/Sidebar.vala:1163 +#: Gtk/PropertiesWindow.vala:1126 Gtk/PropertiesWindow.vala:1172 +#: Gtk/Sidebar.vala:1194 msgid "Actions" msgstr "" @@ -139,23 +140,23 @@ msgid "Add Cloud Storage Account" msgstr "" -#: Gtk/FileContextMenu.vala:2034 Gtk/Settings.vala:2618 +#: Gtk/FileContextMenu.vala:2081 Gtk/Settings.vala:2639 msgid "Add Password" msgstr "" -#: Gtk/Sidebar.vala:522 +#: Gtk/Sidebar.vala:533 msgid "Add bookmark" msgstr "Lesezeichen hinzufügen" -#: Gtk/Sidebar.vala:523 +#: Gtk/Sidebar.vala:534 msgid "Add bookmark for this location" msgstr "Lesezeichen für diesen Ort hinzufügen" -#: Gtk/FileContextMenu.vala:727 +#: Gtk/FileContextMenu.vala:729 msgid "Admin Window" msgstr "Admin Fenster" -#: Gtk/Settings.vala:2250 +#: Gtk/Settings.vala:2271 msgid "Advanced" msgstr "" @@ -163,25 +164,11 @@ msgid "Advanced options" msgstr "Erweiterte Optionen" -#: Gtk/Settings.vala:2550 -msgid "" -"Allows X-window apps running inside the chroot environment to use the host " -"display" -msgstr "" -"Ermöglicht das Ausführen von X-Fenster-Apps in der chroot-Umgebung, um die " -"Host-Anzeige zu verwenden" - -#: Gtk/Settings.vala:2536 -msgid "Allows network connection to be used inside the chroot environment" -msgstr "" -"Ermöglicht die Verwendung von Netzwerkverbindungen innerhalb der chroot-" -"Umgebung" - #: Utility/Shell.vala:61 msgid "Almquist shell (ash)" msgstr "" -#: Gtk/Settings.vala:2509 +#: Gtk/Settings.vala:2530 msgid "Amount of RAM to allocate for guest machine" msgstr "" @@ -189,11 +176,11 @@ msgid "An account exists with this name. Enter a new name for the account." msgstr "" -#: Gtk/FileContextMenu.vala:1560 +#: Gtk/FileContextMenu.vala:1607 msgid "Analyze disk usage" msgstr "Analysiere Verwendung Datenträger" -#: Gtk/FileViewList.vala:4579 +#: Gtk/FileViewList.vala:4515 msgid "Another file exists with this name" msgstr "Eine andere Datei mit dem gleichen Namen existiert bereits" @@ -201,34 +188,27 @@ msgid "Another instance of this application is running" msgstr "" -#: Common/Main.vala:912 Common/Main.vala:1062 Common/Main.vala:1151 +#: Common/Main.vala:923 Common/Main.vala:1073 Common/Main.vala:1162 msgid "App config loaded" msgstr "Konfiguration geladen" -#: Common/Main.vala:725 Common/Main.vala:1029 Common/Main.vala:1107 +#: Common/Main.vala:732 Common/Main.vala:1040 Common/Main.vala:1118 msgid "App config saved" msgstr "Konfiguration gespeichert" -#: Gtk/FileViewToolbar.vala:503 +#: Gtk/FileViewToolbar.vala:499 msgid "Application Info" msgstr "Info Anwendung" -#: Gtk/Settings.vala:1496 -msgid "" -"Application will be started during system startup and will run minimized in " -"system tray." -msgstr "" -"Anwendung startet beim Systemstart und wird minimiert im Tray ausgeführt." - #: Gtk/WizardWindow.vala:129 msgid "Apply" msgstr "" -#: Gtk/PropertiesWindow.vala:932 Gtk/PropertiesWindow.vala:950 +#: Gtk/PropertiesWindow.vala:951 Gtk/PropertiesWindow.vala:969 msgid "Apply recursively to directory contents" msgstr "Rekursiv auf Verzeichnisinhalt anwenden" -#: Gtk/FileContextMenu.vala:1406 +#: Gtk/FileContextMenu.vala:1453 msgid "Archive" msgstr "" @@ -249,11 +229,11 @@ msgid "Authors" msgstr "" -#: Gtk/PropertiesWindow.vala:507 +#: Gtk/PropertiesWindow.vala:540 msgid "Available" msgstr "Verfügbar" -#: Gtk/FileViewToolbar.vala:155 Gtk/MainMenubar.vala:1255 Gtk/Pathbar.vala:819 +#: Gtk/FileViewToolbar.vala:155 Gtk/MainMenubar.vala:1255 Gtk/Pathbar.vala:797 #: Gtk/Settings.vala:391 Gtk/Settings.vala:777 Utility/Gtk/AboutWindow.vala:344 #: Utility/Gtk/AboutWindow.vala:376 msgid "Back" @@ -291,42 +271,47 @@ msgid "Block Size" msgstr "Blockgröße" -#: Gtk/PropertiesWindow.vala:242 +#: Gtk/PropertiesWindow.vala:249 msgid "Blocks" msgstr "Blöcke" -#: Gtk/FileViewToolbar.vala:288 Gtk/Pathbar.vala:169 Gtk/Settings.vala:544 -#: Gtk/Settings.vala:737 Gtk/Settings.vala:974 Gtk/Sidebar.vala:360 +#: Gtk/PlacesPopover.vala:519 +#, fuzzy +msgid "Bookmark" +msgstr "Lesezeichen" + +#: Gtk/FileViewToolbar.vala:287 Gtk/Pathbar.vala:168 Gtk/Settings.vala:544 +#: Gtk/Settings.vala:737 Gtk/Settings.vala:974 Gtk/Sidebar.vala:362 msgid "Bookmarks" msgstr "Lesezeichen" -#: Gtk/FileContextMenu.vala:2359 Gtk/Settings.vala:2773 +#: Gtk/FileContextMenu.vala:2406 Gtk/Settings.vala:2794 msgid "Boost Color" msgstr "" -#: Gtk/FileContextMenu.vala:2360 +#: Gtk/FileContextMenu.vala:2407 msgid "" "Boost color (more saturation). This can be used for correcting photos that " "are too dull (less color)." msgstr "" -#: Gtk/FileContextMenu.vala:1815 +#: Gtk/FileContextMenu.vala:1862 msgid "Boot Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1633 +#: Gtk/FileContextMenu.vala:1680 msgid "Boot ISO file in QEMU-KVM virtual machine" msgstr "" -#: Gtk/FileContextMenu.vala:1856 +#: Gtk/FileContextMenu.vala:1903 msgid "Boot from an ISO file with the selected disk attached" msgstr "" -#: Gtk/FileContextMenu.vala:1632 +#: Gtk/FileContextMenu.vala:1679 msgid "Boot in VM" msgstr "" -#: Gtk/FileContextMenu.vala:1816 +#: Gtk/FileContextMenu.vala:1863 msgid "Boot the selected disk in a virtual machine" msgstr "" @@ -334,7 +319,7 @@ msgid "Bourne again shell (bash)" msgstr "" -#: Gtk/FileViewList.vala:383 +#: Gtk/FileViewList.vala:381 #, c-format msgid "Broken" msgstr "" @@ -348,19 +333,19 @@ msgid "C shell (csh)" msgstr "" -#: Gtk/Settings.vala:2338 +#: Gtk/Settings.vala:2359 msgid "CPU" msgstr "" -#: Gtk/Settings.vala:2439 +#: Gtk/Settings.vala:2460 msgid "CPU Cores" msgstr "" -#: Gtk/Settings.vala:2467 +#: Gtk/Settings.vala:2488 msgid "CPU Limit (%)" msgstr "" -#: Gtk/Settings.vala:2376 +#: Gtk/Settings.vala:2397 msgid "CPU type to emulate for guest machine" msgstr "" @@ -368,7 +353,7 @@ msgid "Calculate directory sizes" msgstr "Berechne Verzeichnisgröße" -#: Gtk/FileViewList.vala:2849 +#: Gtk/FileViewList.vala:2784 msgid "Calculating dir size..." msgstr "" @@ -382,11 +367,11 @@ #: Gtk/ProgressPanelVideoDownloadTask.vala:231 #: Gtk/ProgressPanelVideoDownloadTask.vala:399 #: Gtk/SimpleProgressWindow.vala:139 Utility/Gtk/CustomMessageDialog.vala:172 -#: Utility/Gtk/GtkHelper.vala:140 +#: Utility/Gtk/GtkHelper.vala:154 msgid "Cancel" msgstr "Abrruch" -#: Gtk/FileViewTab.vala:393 Gtk/LayoutBox.vala:508 Gtk/MainWindow.vala:159 +#: Gtk/FileViewTab.vala:458 Gtk/LayoutBox.vala:508 Gtk/MainWindow.vala:158 msgid "Cancel File Operations?" msgstr "Dateioperation abbrechen?" @@ -398,19 +383,19 @@ msgid "Cancelled" msgstr "" -#: Gtk/ProgressPanelArchiveTask.vala:838 Gtk/ProgressPanelArchiveTask.vala:865 +#: Gtk/ProgressPanelArchiveTask.vala:865 msgid "Cancelled by user" msgstr "Abgebrochen durch Benutzer" -#: Gtk/FileViewList.vala:6042 +#: Gtk/FileViewList.vala:6068 msgid "Cannot create archive in this location" msgstr "Kann an dieser Position kein Archiv erstellen" -#: Gtk/FileViewList.vala:5882 +#: Gtk/FileViewList.vala:5908 msgid "Cannot extract to this location" msgstr "Kann an dieser Stelle das Archiv nicht entpacken" -#: Gtk/FileViewToolbar.vala:463 Gtk/MainHeaderBar.vala:273 +#: Gtk/FileViewToolbar.vala:459 Gtk/MainHeaderBar.vala:273 msgid "Change Application Settings" msgstr "Ändern der Anwendungseinstellungen" @@ -418,7 +403,7 @@ msgid "Change Directory" msgstr "Verzeichnis ändern" -#: Gtk/Settings.vala:1883 Gtk/Settings.vala:2084 +#: Gtk/Settings.vala:1904 Gtk/Settings.vala:2105 msgid "Change column spacing" msgstr "Spaltenabstand ändern" @@ -426,19 +411,19 @@ msgid "Change directory to current path" msgstr "Verzeichnis zum aktuellen Pfad wechseln" -#: Gtk/Settings.vala:1621 +#: Gtk/Settings.vala:1642 msgid "Change font size" msgstr "Schriftgröße ändern" -#: Gtk/Settings.vala:1655 Gtk/Settings.vala:1810 Gtk/Settings.vala:2011 +#: Gtk/Settings.vala:1676 Gtk/Settings.vala:1831 Gtk/Settings.vala:2032 msgid "Change icon size" msgstr "Icon Größe ändern" -#: Gtk/Settings.vala:1698 Gtk/Settings.vala:1848 Gtk/Settings.vala:2049 +#: Gtk/Settings.vala:1719 Gtk/Settings.vala:1869 Gtk/Settings.vala:2070 msgid "Change row spacing" msgstr "Zeilenabstand ändern" -#: Gtk/PropertiesWindow.vala:336 +#: Gtk/PropertiesWindow.vala:343 msgid "Changed" msgstr "Geändert" @@ -473,7 +458,7 @@ msgid "Check external tools" msgstr "Überprüfe externe Werkzeuge" -#: Gtk/FileViewList.vala:2336 +#: Gtk/FileViewList.vala:2350 msgid "Check if internet connection is active" msgstr "" @@ -481,14 +466,6 @@ msgid "Chroot" msgstr "Chroot" -#: Gtk/Settings.vala:2547 -msgid "Chroot: Enable GUI Apps" -msgstr "Chroot: GUI-Apps aktivieren" - -#: Gtk/Settings.vala:2533 -msgid "Chroot: Enable network" -msgstr "Chroot: Netzwerk aktivieren" - #: Gtk/CreateArchiveWindow.vala:1814 msgid "Cipher" msgstr "Glossar" @@ -529,25 +506,22 @@ msgid "Click 'Finish' to add the account" msgstr "" -#: Gtk/Pathbar.vala:331 -msgid "Click to edit path" -msgstr "Hier klicken , um den Pfad zu bearbeiten" - -#: Gtk/Sidebar.vala:727 -msgid "Click to mount device and open in active pane" -msgstr "Klicken um das Gerät einzubinden und im aktiven Bereich zu öffnen" - -#: Gtk/Sidebar.vala:724 -msgid "Click to open in active pane" -msgstr "Klick zum öffnen im aktiven Fenster" +#: Gtk/PlacesPopover.vala:420 +#, fuzzy +msgid "Click to Remove" +msgstr "Klick zum auswählen" -#: Gtk/WizardWindow.vala:305 -msgid "Click to select" +#: Gtk/PlacesPopover.vala:424 +#, fuzzy +msgid "Click to Rename" msgstr "Klick zum auswählen" -#: Gtk/FileViewTab.vala:289 Gtk/MessageBar.vala:149 Gtk/SelectionBar.vala:167 -#: Gtk/Settings.vala:897 Gtk/WizardWindow.vala:143 -#: Utility/Gtk/AboutWindow.vala:401 +#: Gtk/Pathbar.vala:309 +msgid "Click to edit path" +msgstr "Hier klicken , um den Pfad zu bearbeiten" + +#: Gtk/FileViewTab.vala:327 Gtk/MessageBar.vala:149 Gtk/SelectionBar.vala:172 +#: Gtk/WizardWindow.vala:143 Utility/Gtk/AboutWindow.vala:401 msgid "Close" msgstr "Schließen" @@ -559,15 +533,11 @@ msgid "Close button (R)" msgstr "" -#: Gtk/Pathbar.vala:986 -msgid "Close this pane" -msgstr "Schließe diesen Bereich" - #: Gtk/MainHeaderBar.vala:321 Gtk/ProgressPanelArchiveTask.vala:515 msgid "Close this window" msgstr "Schließe dieses Fenster" -#: Gtk/MainWindow.vala:160 +#: Gtk/MainWindow.vala:159 msgid "" "Closing the application will cancel running file operations.\n" "Do you want to cancel?" @@ -575,7 +545,7 @@ "Das schließen der Applikation wird alle Dateioperationen abbrechen\n" "Abbrechen?" -#: Gtk/FileViewTab.vala:394 +#: Gtk/FileViewTab.vala:459 msgid "" "Closing this pane will cancel file operations running in this pane.\n" "Do you want to cancel?" @@ -599,11 +569,11 @@ msgid "Code Contributions" msgstr "" -#: Gtk/Settings.vala:1876 +#: Gtk/Settings.vala:1897 msgid "Col spacing" msgstr "Spaltenabstand" -#: Gtk/Settings.vala:2215 +#: Gtk/Settings.vala:2236 msgid "Columns" msgstr "" @@ -615,28 +585,33 @@ msgid "Commander List (Dual-Pane + ListView)" msgstr "" -#: Common/Main.vala:487 +#: Common/Main.vala:489 msgid "Commands listed below are not available on this system" msgstr "Die unten aufgeführten Befehle sind auf diesem System nicht verfügbar" -#: Gtk/FileContextMenu.vala:1078 +#: Gtk/FileContextMenu.vala:1082 msgid "Compare" msgstr "Vergleichen" -#: Gtk/FileContextMenu.vala:1079 -msgid "Compare file with file of same name in other pane" -msgstr "Vergleiche die Datei mit der gleichnamigen Datei im anderen Bereich" +#: Gtk/FileContextMenu.vala:1113 +#, fuzzy +msgid "Compare text file with file in opposite pane" +msgstr "Kann den anderen Bereich nicht finden!" + +#: Gtk/FileContextMenu.vala:1083 +msgid "Compare text files side-by-side" +msgstr "" #: Utility/FileTask.vala:287 msgid "Comparing items..." msgstr "" #: Gtk/CreateArchiveWindow.vala:115 Gtk/CreateArchiveWindow.vala:2036 -#: Gtk/FileContextMenu.vala:1438 +#: Gtk/FileContextMenu.vala:1485 msgid "Compress" msgstr "Komprimieren" -#: Gtk/FileContextMenu.vala:1439 +#: Gtk/FileContextMenu.vala:1486 msgid "Compress selected items and create new archive" msgstr "Komprimiere die ausgewählte Elemente und erstelle ein neues Archiv" @@ -652,11 +627,11 @@ msgid "Confirm Passphrase" msgstr "Passphrase bestätigen" -#: Gtk/Settings.vala:1507 +#: Gtk/Settings.vala:1514 msgid "Confirm before deleting files" msgstr "Löschen von Dateien bestätigen" -#: Gtk/Settings.vala:1519 +#: Gtk/Settings.vala:1526 msgid "Confirm before trashing files" msgstr "Verschieben der Dateien in den Papierkorb bestätigen" @@ -668,7 +643,7 @@ msgid "Connect" msgstr "" -#: Gtk/FileContextMenu.vala:1700 +#: Gtk/FileContextMenu.vala:1747 msgid "Connect a USB device and come back to this menu" msgstr "" @@ -684,15 +659,15 @@ msgid "Connecting to Server..." msgstr "" -#: Gtk/FileViewList.vala:1064 +#: Gtk/FileViewList.vala:1062 msgid "Content Type" msgstr "Art des Dokuments" -#: Gtk/PropertiesWindow.vala:203 +#: Gtk/PropertiesWindow.vala:210 msgid "Contents" msgstr "Inhalte" -#: Gtk/Settings.vala:2745 +#: Gtk/Settings.vala:2766 msgid "Convert" msgstr "" @@ -700,15 +675,15 @@ msgid "Convert Virtual Disk" msgstr "" -#: Gtk/FileContextMenu.vala:2476 +#: Gtk/FileContextMenu.vala:2523 msgid "Convert to" msgstr "" -#: Gtk/FileContextMenu.vala:2304 +#: Gtk/FileContextMenu.vala:2351 msgid "Convert to black and white" msgstr "" -#: Gtk/FileContextMenu.vala:1877 +#: Gtk/FileContextMenu.vala:1924 msgid "Convert to..." msgstr "" @@ -729,7 +704,7 @@ "Copy selected items in active pane" msgstr "" -#: Gtk/FileContextMenu.vala:1193 +#: Gtk/FileContextMenu.vala:1240 msgid "Copy Across" msgstr "Kopiere ins andere Fenster" @@ -740,15 +715,15 @@ "Copy selected items in active pane to opposite pane" msgstr "" -#: Gtk/FileContextMenu.vala:1359 +#: Gtk/FileContextMenu.vala:1406 msgid "Copy Path(s)" msgstr "Kopiere Pfad(e)" -#: Gtk/FileContextMenu.vala:1153 +#: Gtk/FileContextMenu.vala:1200 msgid "Copy To..." msgstr "Kopiere nach..." -#: Gtk/FileContextMenu.vala:1360 +#: Gtk/FileContextMenu.vala:1407 msgid "Copy file path to clipboard" msgstr "Kopiere Dateipfad in die Zwischenablage" @@ -760,11 +735,11 @@ msgid "Copy selected text to clipboard" msgstr "Kopiere ausgewählten Text in die Zwischenablage" -#: Gtk/FileContextMenu.vala:1154 +#: Gtk/FileContextMenu.vala:1201 msgid "Copy to another location" msgstr "Kopiere an einen anderen Ort" -#: Gtk/FileContextMenu.vala:1194 +#: Gtk/FileContextMenu.vala:1241 msgid "Copy to other pane" msgstr "Kopiere in den anderen Bereich" @@ -785,24 +760,34 @@ msgid "Copying..." msgstr "" -#: Utility/Device.vala:1691 +#: Gtk/PlacesPopover.vala:477 +#, fuzzy, c-format +msgid "Could not find bookmarked path" +msgstr "Kann den Pfad nicht finden" + +#: Utility/Device.vala:1707 #, c-format msgid "Could not find file" msgstr "" -#: Gtk/FileViewList.vala:3366 +#: Gtk/FileViewList.vala:4941 +#, fuzzy, c-format +msgid "Could not find file in opposite pane" +msgstr "Kann den anderen Bereich nicht finden!" + +#: Gtk/FileViewList.vala:3301 msgid "Could not find path" msgstr "Kann den Pfad nicht finden" -#: Gtk/FileViewList.vala:4302 +#: Gtk/FileViewList.vala:4241 msgid "Could not find the opposite pane!" msgstr "Kann den anderen Bereich nicht finden!" -#: Gtk/FileViewList.vala:5835 +#: Gtk/FileViewList.vala:5861 msgid "Could not open file as archive" msgstr "" -#: Gtk/FileViewList.vala:2775 +#: Gtk/FileViewList.vala:2708 msgid "Counting items..." msgstr "" @@ -814,23 +799,23 @@ msgid "Create Derived Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1775 +#: Gtk/FileContextMenu.vala:1822 msgid "Create Derived Disk..." msgstr "" -#: Gtk/FileViewList.vala:4624 +#: Gtk/FileViewList.vala:4560 msgid "Create Directory" msgstr "Verzeichnis erstellen" -#: Gtk/FileContextMenu.vala:1758 +#: Gtk/FileContextMenu.vala:1805 msgid "Create Disk..." msgstr "" -#: Gtk/FileViewList.vala:4658 Gtk/FileViewList.vala:4694 +#: Gtk/FileViewList.vala:4594 Gtk/FileViewList.vala:4630 msgid "Create File" msgstr "Datei erstellen" -#: Gtk/FileContextMenu.vala:1795 +#: Gtk/FileContextMenu.vala:1842 msgid "Create Merged Disk..." msgstr "" @@ -846,44 +831,44 @@ msgid "Create Virtual Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1759 +#: Gtk/FileContextMenu.vala:1806 msgid "Create a virtual hard disk file" msgstr "" -#: Gtk/FileContextMenu.vala:1796 +#: Gtk/FileContextMenu.vala:1843 msgid "" "Create a virtual hard disk file by merging selected derived disk with it's " "base" msgstr "" -#: Gtk/FileContextMenu.vala:1776 +#: Gtk/FileContextMenu.vala:1823 msgid "Create a virtual hard disk file that uses selected disk as the base" msgstr "" -#: Gtk/FileViewList.vala:4429 +#: Gtk/FileViewList.vala:4368 msgid "Create copies of selected items?" msgstr "Kopien der ausgewählten Objekten erstellen?" -#: Gtk/FileContextMenu.vala:775 +#: Gtk/FileContextMenu.vala:777 msgid "Create new file from template" msgstr "Neue Datei aus Vorlage" -#: Gtk/FileContextMenu.vala:649 +#: Gtk/FileContextMenu.vala:651 msgid "Create new file in this location" msgstr "Neue Datei an dieser Stelle" -#: Gtk/FileContextMenu.vala:629 +#: Gtk/FileContextMenu.vala:631 msgid "Create new folder in this location" msgstr "Neuer Ordner an dieser Stelle" #: Gtk/KvmCreateDiskWindow.vala:463 Gtk/ProgressPanelArchiveTask.vala:752 #: Gtk/ProgressPanelImageTask.vala:207 Gtk/ProgressPanelKvmTask.vala:258 -#: Gtk/PropertiesWindow.vala:304 +#: Gtk/PropertiesWindow.vala:311 #, c-format msgid "Created" msgstr "Erstellt" -#: Utility/TeeJee.FileSystem.vala:664 +#: Utility/TeeJee.FileSystem.vala:744 msgid "Created directory" msgstr "" @@ -946,7 +931,7 @@ msgid "Default shell (sh)" msgstr "" -#: Gtk/Settings.vala:1238 +#: Gtk/Settings.vala:1245 msgid "Default view mode to use for new panes" msgstr "Standard Ansicht für neues Fenster" @@ -969,11 +954,11 @@ msgid "Delete selected items permanently" msgstr "Lösche gewählte Dateien permanent" -#: Gtk/FileViewList.vala:4506 +#: Gtk/FileViewList.vala:4445 msgid "Delete selected items?" msgstr "Gewählte Elemente löschen?" -#: Utility/TeeJee.FileSystem.vala:702 +#: Utility/TeeJee.FileSystem.vala:782 msgid "Deleted directory" msgstr "" @@ -992,15 +977,15 @@ "required" msgstr "" -#: Gtk/Sidebar.vala:344 +#: Gtk/PlacesPopover.vala:628 Gtk/Sidebar.vala:346 msgid "Desktop" msgstr "Desktop" -#: Gtk/FileViewList.vala:5882 Gtk/FileViewList.vala:5904 +#: Gtk/FileViewList.vala:5908 Gtk/FileViewList.vala:5930 msgid "Destination directory does not exist" msgstr "Zielverzeichnis existiert nicht" -#: Gtk/FileViewList.vala:6042 +#: Gtk/FileViewList.vala:6068 msgid "Destination path is inside an archive (!)" msgstr "Zielverzeichnis ist in einem Archiv (!)" @@ -1008,28 +993,28 @@ msgid "Details" msgstr "Details" -#: Gtk/PropertiesWindow.vala:468 Utility/Device.vala:362 -#: Utility/Device.vala:369 Utility/Device.vala:505 Utility/Device.vala:510 -#: Utility/Device.vala:554 Utility/Device.vala:1672 Utility/Device.vala:1678 -#: Utility/Device.vala:1871 Utility/Device.vala:1876 Utility/Device.vala:1903 -#: Utility/Device.vala:2396 Utility/Device.vala:2406 Utility/KvmTask.vala:314 +#: Gtk/PropertiesWindow.vala:498 Gtk/Sidebar.vala:707 Utility/Device.vala:370 +#: Utility/Device.vala:377 Utility/Device.vala:513 Utility/Device.vala:518 +#: Utility/Device.vala:562 Utility/Device.vala:1688 Utility/Device.vala:1694 +#: Utility/Device.vala:1893 Utility/Device.vala:1898 Utility/Device.vala:1925 +#: Utility/Device.vala:2418 Utility/Device.vala:2428 Utility/KvmTask.vala:314 #, c-format msgid "Device" msgstr "Gerät" -#: Gtk/DeviceContextMenu.vala:502 +#: Gtk/DeviceContextMenu.vala:546 msgid "Device Locked" msgstr "Gerät gesperrt" -#: Gtk/DeviceContextMenu.vala:422 +#: Gtk/DeviceContextMenu.vala:466 msgid "Device Unmounted" msgstr "Gerät augehängt" -#: Utility/Device.vala:361 Utility/Device.vala:1671 +#: Utility/Device.vala:369 Utility/Device.vala:1687 msgid "Device mounted successfully" msgstr "" -#: Utility/Device.vala:1725 +#: Utility/Device.vala:1747 msgid "Device name is empty!" msgstr "" @@ -1037,12 +1022,12 @@ msgid "Device safely ejected and ready for use" msgstr "" -#: Gtk/FileViewList.vala:3358 +#: Gtk/FileViewList.vala:3293 msgid "Device was unmounted" msgstr "Gerät wurde ausgehängt" -#: Gtk/FileViewToolbar.vala:316 Gtk/Pathbar.vala:215 Gtk/Settings.vala:561 -#: Gtk/Settings.vala:757 Gtk/Settings.vala:992 Gtk/Sidebar.vala:379 +#: Gtk/FileViewToolbar.vala:312 Gtk/Pathbar.vala:201 Gtk/Settings.vala:561 +#: Gtk/Settings.vala:757 Gtk/Settings.vala:992 Gtk/Sidebar.vala:381 msgid "Devices" msgstr "Laufwerke" @@ -1066,19 +1051,24 @@ "Tony George" msgstr "" -#: Utility/TeeJee.FileSystem.vala:840 +#: Utility/TeeJee.FileSystem.vala:920 msgid "Dir not found" msgstr "" -#: Gtk/FileViewList.vala:4632 +#: Gtk/FileViewList.vala:4568 msgid "Directory exists" msgstr "Wörterbuch existiert" -#: Gtk/FileContextMenu.vala:1559 +#: Gtk/FileContextMenu.vala:1628 +#, fuzzy +msgid "Disk Image" +msgstr "Festplattennutzung" + +#: Gtk/FileContextMenu.vala:1606 msgid "Disk Usage" msgstr "Festplattennutzung" -#: Gtk/FileViewList.vala:5123 +#: Gtk/FileViewList.vala:5141 msgid "Disk is Read-Only" msgstr "" @@ -1093,7 +1083,7 @@ msgid "Documentation" msgstr "" -#: Gtk/Sidebar.vala:339 +#: Gtk/PlacesPopover.vala:623 Gtk/Sidebar.vala:341 msgid "Documents" msgstr "Dokumente" @@ -1101,7 +1091,7 @@ msgid "Domain" msgstr "" -#: Gtk/FileViewToolbar.vala:482 Gtk/MainMenubar.vala:1948 +#: Gtk/FileViewToolbar.vala:478 Gtk/MainMenubar.vala:1947 #: Utility/Gtk/DonationWindow.vala:40 msgid "Donate" msgstr "Spenden" @@ -1150,15 +1140,19 @@ msgid "Downloading items..." msgstr "" -#: Gtk/Sidebar.vala:340 +#: Gtk/PlacesPopover.vala:624 Gtk/Sidebar.vala:342 msgid "Downloads" msgstr "Downloads" -#: Gtk/Settings.vala:1787 Gtk/Settings.vala:1973 Gtk/Settings.vala:2174 +#: Gtk/PlacesPopover.vala:417 +msgid "Drag to Re-order" +msgstr "" + +#: Gtk/Settings.vala:1808 Gtk/Settings.vala:1994 Gtk/Settings.vala:2195 msgid "Draw semi-transparent icons and thumbnails for hidden items" msgstr "Zeichne habtransparente Icons und Miniaturbilder für versteckte Daten" -#: Gtk/Settings.vala:1757 Gtk/Settings.vala:1943 Gtk/Settings.vala:2144 +#: Gtk/Settings.vala:1778 Gtk/Settings.vala:1964 Gtk/Settings.vala:2165 msgid "" "Draw tiny emblems on the icon or thumbnail image to indicate folder " "contents, symlinks and read-only permissions.\n" @@ -1170,11 +1164,11 @@ "\n" "Deaktivieren für ein schnelleres Laden von Verzeichnissen." -#: Gtk/Settings.vala:510 Gtk/ViewPopover.vala:216 +#: Gtk/ViewPopover.vala:216 msgid "Dual" msgstr "Zweigeteilt" -#: Gtk/FileViewToolbar.vala:364 +#: Gtk/FileViewToolbar.vala:360 msgid "Dual Horizontal" msgstr "Zweigeteilt horizontal" @@ -1182,7 +1176,7 @@ msgid "Dual Pane Mode" msgstr "Zweigeteilter Modis" -#: Gtk/FileViewToolbar.vala:354 +#: Gtk/FileViewToolbar.vala:350 msgid "Dual Vertical" msgstr "Zweigeteilt verikal" @@ -1190,54 +1184,39 @@ msgid "Duration" msgstr "" -#: Utility/TeeJee.Logging.vala:93 -msgid "E" -msgstr "" - -#: Gtk/MainMenubar.vala:481 +#: Gtk/MainMenubar.vala:481 Gtk/PlacesPopover.vala:529 msgid "Edit" msgstr "Bearbeiten" -#: Gtk/FileViewTab.vala:255 -msgid "Edit Tab Name" +#: Gtk/FileViewTab.vala:259 +#, fuzzy +msgid "Edit Name" msgstr "TAB Beschriftung" -#: Gtk/FileViewList.vala:395 +#: Gtk/FileViewList.vala:393 #, c-format msgid "Effective permissions for current user" msgstr "Effektive Berechtigungen für den aktuellen Benutzer" -#: Gtk/DeviceContextMenu.vala:221 -msgid "Eject" -msgstr "" - -#: Gtk/Sidebar.vala:1190 -msgid "Eject Device" -msgstr "" - -#: Gtk/DeviceContextMenu.vala:525 +#: Gtk/DeviceContextMenu.vala:569 msgid "Eject Disk ?" msgstr "" -#: Gtk/DeviceContextMenu.vala:222 -msgid "Eject the device so that it can be removed safely" -msgstr "" - #: Gtk/ProgressPanelArchiveTask.vala:162 msgid "Elapsed:" msgstr "Verstichen:" -#: Gtk/Settings.vala:1985 +#: Gtk/Settings.vala:2006 msgid "Ellipsize file name" msgstr "" -#: Gtk/Settings.vala:1988 +#: Gtk/Settings.vala:2009 msgid "" "Ellipsize long file names with 3 dots. Uncheck this option to display entire " "file name." msgstr "" -#: Gtk/Settings.vala:1754 Gtk/Settings.vala:1940 Gtk/Settings.vala:2141 +#: Gtk/Settings.vala:1775 Gtk/Settings.vala:1961 Gtk/Settings.vala:2162 msgid "Emblems" msgstr "Embleme" @@ -1269,11 +1248,11 @@ msgid "Encrypt file names" msgstr "Dateinamen verschlüsseln" -#: Gtk/PropertiesWindow.vala:231 +#: Gtk/PropertiesWindow.vala:238 msgid "Encrypted" msgstr "Verschlüsselt" -#: Utility/Device.vala:1827 +#: Utility/Device.vala:1849 msgid "Encrypted Device" msgstr "" @@ -1282,7 +1261,7 @@ msgid "Encrypted archive" msgstr "Verschlüsseltes Archiev" -#: Utility/Device.vala:523 +#: Utility/Device.vala:531 #, c-format msgid "Encrypted device" msgstr "" @@ -1303,37 +1282,37 @@ msgid "Enter Password" msgstr "Passwort eingeben" -#: Utility/Device.vala:525 Utility/FileItemArchive.vala:364 +#: Utility/Device.vala:533 Utility/FileItemArchive.vala:364 msgid "Enter Password to Unlock" msgstr "" -#: Gtk/FileViewList.vala:4632 Gtk/FileViewList.vala:4666 -#: Gtk/FileViewList.vala:4706 +#: Gtk/FileViewList.vala:4568 Gtk/FileViewList.vala:4602 +#: Gtk/FileViewList.vala:4642 msgid "Enter another name" msgstr "Gib einen anderen Namen ein" -#: Gtk/FileViewList.vala:4624 +#: Gtk/FileViewList.vala:4560 msgid "Enter directory name" msgstr "Verzeichnisnamen eingeben" -#: Gtk/FileViewList.vala:4658 Gtk/FileViewList.vala:4694 +#: Gtk/FileViewList.vala:4594 Gtk/FileViewList.vala:4630 msgid "Enter file name" msgstr "Neuen Namen eingeben" -#: Gtk/FileViewList.vala:4560 +#: Gtk/FileViewList.vala:4496 msgid "Enter new name" msgstr "Neuen Namen eingeben" -#: Utility/Device.vala:1828 +#: Utility/Device.vala:1850 #, c-format msgid "Enter passphrase to unlock '%s'" msgstr "" -#: Gtk/FileViewList.vala:5376 +#: Gtk/FileViewList.vala:5394 msgid "Enter password for PDF document" msgstr "" -#: Utility/Gtk/GtkHelper.vala:1226 +#: Utility/Gtk/GtkHelper.vala:948 msgid "Enter path or browse for directory" msgstr "" @@ -1345,24 +1324,24 @@ msgid "Enter share name to connect (Required)" msgstr "" -#: Gtk/FileViewList.vala:4579 +#: Gtk/FileViewList.vala:4515 msgid "Enter unique name for selected file" msgstr "Einen eindeutigen Namen für die ausgewählte Datei eingeben" #: Gtk/ProgressPanelArchiveTask.vala:771 Gtk/ProgressPanelArchiveTask.vala:782 #: Gtk/ProgressPanelImageTask.vala:198 Gtk/ProgressPanelKvmTask.vala:217 #: Gtk/ProgressPanelKvmTask.vala:220 Gtk/ProgressPanelPdfTask.vala:198 -#: Utility/Device.vala:1654 Utility/KvmTask.vala:311 +#: Utility/Device.vala:1670 Utility/KvmTask.vala:311 #: Utility/Gtk/GtkHelper.vala:18 #, c-format msgid "Error" msgstr "Fehler" -#: Gtk/FileViewList.vala:2335 +#: Gtk/FileViewList.vala:2349 msgid "Error Connecting to Server" msgstr "" -#: Gtk/FileViewList.vala:3383 +#: Gtk/FileViewList.vala:3318 #, c-format msgid "Error opening directory: Permission denied" msgstr "" @@ -1371,8 +1350,8 @@ msgid "Example: 192.0.2.1" msgstr "" -#: Gtk/PropertiesWindow.vala:632 Gtk/PropertiesWindow.vala:638 -#: Gtk/PropertiesWindow.vala:644 +#: Gtk/PropertiesWindow.vala:672 Gtk/PropertiesWindow.vala:678 +#: Gtk/PropertiesWindow.vala:684 msgid "Execute" msgstr "Ausführen" @@ -1380,7 +1359,7 @@ msgid "Executing action..." msgstr "" -#: Gtk/FileViewList.vala:5060 +#: Gtk/FileViewList.vala:5078 #, c-format msgid "Existing data on device will be destroyed" msgstr "" @@ -1389,7 +1368,7 @@ msgid "Exit" msgstr "Beenden" -#: Common/Main.vala:1202 +#: Common/Main.vala:1213 msgid "Exiting Application" msgstr "Beende Applikation" @@ -1401,30 +1380,30 @@ msgid "External tools" msgstr "Externe Werkzeuge" -#: Gtk/FileContextMenu.vala:1506 +#: Gtk/FileContextMenu.vala:1553 msgid "Extract Across" msgstr "Entpacke ins andere Fenster" -#: Gtk/FileContextMenu.vala:1531 +#: Gtk/FileContextMenu.vala:1578 msgid "Extract Here" msgstr "Hier entpacken" -#: Gtk/FileContextMenu.vala:1483 +#: Gtk/FileContextMenu.vala:1530 msgid "Extract To.." msgstr "Entpacken nach.." -#: Gtk/FileContextMenu.vala:1532 +#: Gtk/FileContextMenu.vala:1579 msgid "" "Extract archives in same location. New folder will be created with archive " "name." msgstr "" -#: Gtk/FileContextMenu.vala:1484 +#: Gtk/FileContextMenu.vala:1531 msgid "" "Extract archives to another location. Existing files will be overwritten." msgstr "" -#: Gtk/FileContextMenu.vala:1507 +#: Gtk/FileContextMenu.vala:1554 msgid "" "Extract archives to the opposite pane. Existing files will be overwritten." msgstr "" @@ -1453,77 +1432,77 @@ msgid "Failed to Remove Account" msgstr "" -#: Utility/TeeJee.FileSystem.vala:1166 +#: Utility/TeeJee.FileSystem.vala:1246 msgid "Failed to change owner/group!" msgstr "" -#: Utility/TeeJee.FileSystem.vala:360 +#: Utility/TeeJee.FileSystem.vala:440 msgid "Failed to copy file" msgstr "" -#: Utility/TeeJee.FileSystem.vala:674 +#: Utility/TeeJee.FileSystem.vala:754 msgid "Failed to create directory" msgstr "" -#: Utility/TeeJee.FileSystem.vala:560 +#: Utility/TeeJee.FileSystem.vala:640 msgid "Failed to create hard link" msgstr "" -#: Utility/TeeJee.FileSystem.vala:537 +#: Utility/TeeJee.FileSystem.vala:617 msgid "Failed to create symlink" msgstr "" -#: Utility/TeeJee.FileSystem.vala:186 Utility/TeeJee.FileSystem.vala:234 +#: Utility/TeeJee.FileSystem.vala:266 Utility/TeeJee.FileSystem.vala:314 msgid "Failed to delete items" msgstr "" -#: Utility/Device.vala:1285 +#: Utility/Device.vala:1295 msgid "Failed to get partition list" msgstr "" -#: Utility/Device.vala:553 Utility/Device.vala:1902 +#: Utility/Device.vala:561 Utility/Device.vala:1924 msgid "Failed to lock device" msgstr "" -#: Utility/Device.vala:368 Utility/Device.vala:1677 +#: Utility/Device.vala:376 Utility/Device.vala:1693 msgid "Failed to mount device" msgstr "" -#: Utility/TeeJee.FileSystem.vala:379 +#: Utility/TeeJee.FileSystem.vala:459 msgid "Failed to move file" msgstr "" -#: Utility/TeeJee.FileSystem.vala:255 +#: Utility/TeeJee.FileSystem.vala:335 msgid "Failed to move items to trash" msgstr "" -#: Utility/TeeJee.FileSystem.vala:296 +#: Utility/TeeJee.FileSystem.vala:376 msgid "Failed to read file" msgstr "" -#: Utility/TeeJee.FileSystem.vala:441 +#: Utility/TeeJee.FileSystem.vala:521 msgid "Failed to rename item" msgstr "" -#: Utility/TeeJee.FileSystem.vala:1128 +#: Utility/TeeJee.FileSystem.vala:1208 msgid "Failed to set permissions!" msgstr "" -#: Utility/TeeJee.FileSystem.vala:212 +#: Utility/TeeJee.FileSystem.vala:292 msgid "Failed to trash items" msgstr "" -#: Utility/Device.vala:447 Utility/Device.vala:469 Utility/Device.vala:489 -#: Utility/Device.vala:504 Utility/Device.vala:1810 Utility/Device.vala:1833 -#: Utility/Device.vala:1854 Utility/Device.vala:1870 +#: Utility/Device.vala:455 Utility/Device.vala:477 Utility/Device.vala:497 +#: Utility/Device.vala:512 Utility/Device.vala:1832 Utility/Device.vala:1855 +#: Utility/Device.vala:1876 Utility/Device.vala:1892 msgid "Failed to unlock device" msgstr "" -#: Utility/Device.vala:2110 +#: Utility/Device.vala:2132 msgid "Failed to unmount" msgstr "" -#: Utility/TeeJee.FileSystem.vala:342 +#: Utility/TeeJee.FileSystem.vala:422 msgid "Failed to write file" msgstr "" @@ -1540,7 +1519,7 @@ msgid "Fetching info..." msgstr "" -#: Gtk/FileContextMenu.vala:648 Gtk/KvmCreateDiskWindow.vala:428 +#: Gtk/FileContextMenu.vala:650 Gtk/KvmCreateDiskWindow.vala:428 #: Gtk/MainMenubar.vala:123 Gtk/ProgressPanelImageTask.vala:156 #: Gtk/ProgressPanelKvmTask.vala:203 Gtk/ProgressPanelPdfTask.vala:156 #: Gtk/ProgressPanelUsbWriterTask.vala:162 @@ -1552,7 +1531,7 @@ msgid "File Conflict" msgstr "Dateikonflikt" -#: Gtk/Settings.vala:1352 +#: Gtk/Settings.vala:1359 msgid "File Manager" msgstr "" @@ -1560,11 +1539,16 @@ msgid "File Name" msgstr "" -#: Gtk/FileViewList.vala:4666 Gtk/FileViewList.vala:4706 +#: Gtk/FileViewList.vala:4940 +#, fuzzy +msgid "File Not Found" +msgstr "Datei nicht gefunden" + +#: Gtk/FileViewList.vala:4602 Gtk/FileViewList.vala:4642 msgid "File exists" msgstr "Datei existiert" -#: Utility/TeeJee.FileSystem.vala:992 Utility/TeeJee.FileSystem.vala:1041 +#: Utility/TeeJee.FileSystem.vala:1072 Utility/TeeJee.FileSystem.vala:1121 msgid "File is missing" msgstr "" @@ -1573,17 +1557,17 @@ msgstr "Datei ist kein Archiv oder wird nicht unterstützt" #: Gtk/PoloGtk.vala:106 Utility/GtkBookmark.vala:122 Utility/MimeTypes.vala:88 -#: Utility/RsyncTask.vala:288 Utility/TeeJee.FileSystem.vala:374 -#: Utility/TeeJee.FileSystem.vala:869 Utility/XdgUserDirectories.vala:143 +#: Utility/RsyncTask.vala:288 Utility/TeeJee.FileSystem.vala:454 +#: Utility/TeeJee.FileSystem.vala:949 Utility/XdgUserDirectories.vala:143 msgid "File not found" msgstr "Datei nicht gefunden" -#: Gtk/FileViewList.vala:402 +#: Gtk/FileViewList.vala:400 #, c-format msgid "File type" msgstr "Dateityp" -#: Gtk/PropertiesWindow.vala:697 +#: Gtk/PropertiesWindow.vala:716 msgid "" "File will be executed with the priviledges of the file's group instead of " "priviledges of user who is executing the file.\n" @@ -1598,7 +1582,7 @@ "Ausführen der Datei hat, um diese mit den Berechtigungen der Gruppe " "auszuführen." -#: Gtk/PropertiesWindow.vala:694 +#: Gtk/PropertiesWindow.vala:713 msgid "" "File will be executed with the priviledges of the file's owner instead of " "priviledges of user who is executing the file.\n" @@ -1617,17 +1601,18 @@ msgid "Files:" msgstr "Dateien:" -#: Gtk/PropertiesWindow.vala:450 Gtk/PropertiesWindow.vala:478 -#: Gtk/Sidebar.vala:337 Utility/Device.vala:2414 +#: Gtk/PlacesPopover.vala:621 Gtk/PropertiesWindow.vala:472 +#: Gtk/PropertiesWindow.vala:510 Gtk/Sidebar.vala:339 Gtk/Sidebar.vala:719 +#: Utility/Device.vala:2436 #, c-format msgid "Filesystem" msgstr "Dateisystem" -#: Gtk/SelectionBar.vala:154 +#: Gtk/SelectionBar.vala:159 msgid "Filter" msgstr "" -#: Gtk/Statusbar.vala:495 +#: Gtk/Statusbar.vala:471 msgid "Filter Items" msgstr "" @@ -1640,7 +1625,7 @@ msgid "Finished with errors" msgstr "" -#: Gtk/LayoutPanel.vala:229 +#: Gtk/LayoutPanel.vala:219 #, c-format msgid "Finished ~ Close Tab to exit" msgstr "" @@ -1657,7 +1642,7 @@ msgid "Flash Complete" msgstr "" -#: Gtk/FileViewList.vala:5059 +#: Gtk/FileViewList.vala:5077 #, c-format msgid "Flash ISO to device?" msgstr "" @@ -1666,23 +1651,20 @@ msgid "Flashing ISO to device..." msgstr "" -#: Gtk/DeviceContextMenu.vala:345 -msgid "Flush Read Buffer" -msgstr "Leere Lese Puffer" - -#: Gtk/DeviceContextMenu.vala:346 -msgid "Flushes the read buffer for device" -msgstr "Leert den Lese Puffer für Laufwerke" - -#: Gtk/FileContextMenu.vala:628 +#: Gtk/FileContextMenu.vala:630 msgid "Folder" msgstr "Ordner" -#: Gtk/FileViewList.vala:3374 +#: Gtk/FileViewList.vala:3309 msgid "Folder is empty" msgstr "Ordner ist leer" -#: Gtk/FileContextMenu.vala:1340 +#: Gtk/PlacesPopover.vala:478 +msgid "" +"Folder may have been deleted or renamed, or device may have been unmounted" +msgstr "" + +#: Gtk/FileContextMenu.vala:1387 msgid "Follow Symlink Path" msgstr "Folge dem Symlink Pfad" @@ -1694,7 +1676,7 @@ msgid "Font" msgstr "" -#: Gtk/Settings.vala:1614 +#: Gtk/Settings.vala:1635 msgid "Font scale" msgstr "Schriftgröße" @@ -1711,15 +1693,16 @@ msgid "Format" msgstr "Format" -#: Gtk/DeviceContextMenu.vala:273 +#: Gtk/DeviceContextMenu.vala:294 msgid "Format device using GNOME disk utility" msgstr "" -#: Gtk/DeviceContextMenu.vala:272 +#: Gtk/DeviceContextMenu.vala:293 msgid "Format..." msgstr "" -#: Gtk/FileViewToolbar.vala:176 Gtk/MainMenubar.vala:1300 +#: Gtk/FileViewToolbar.vala:176 Gtk/MainMenubar.vala:1300 Gtk/Pathbar.vala:827 +#: Gtk/Settings.vala:408 Gtk/Settings.vala:797 msgid "Forward" msgstr "Vorwärs" @@ -1727,7 +1710,7 @@ msgid "Found" msgstr "Gefunden" -#: Gtk/Sidebar.vala:1272 Gtk/Statusbar.vala:372 +#: Gtk/Sidebar.vala:1287 Gtk/Statusbar.vala:364 #, c-format msgid "Free" msgstr "Frei" @@ -1740,10 +1723,14 @@ msgid "Fullscreen Mode" msgstr "Vollbild Modus" -#: Gtk/DeviceContextMenu.vala:555 Gtk/DeviceContextMenu.vala:572 +#: Gtk/DeviceContextMenu.vala:599 msgid "GNOME Disk Uitility (gnome-disks) is not installed" msgstr "" +#: Gtk/DeviceContextMenu.vala:616 +msgid "GNOME Disk Utility (gnome-disks) is not installed" +msgstr "" + #: Gtk/Settings.vala:165 msgid "GTK Theme" msgstr "" @@ -1752,11 +1739,11 @@ msgid "GTK theme to use" msgstr "" -#: Gtk/PropertiesWindow.vala:147 Gtk/Settings.vala:1159 +#: Gtk/PropertiesWindow.vala:154 Gtk/Settings.vala:1159 msgid "General" msgstr "General" -#: Gtk/FileViewList.vala:3457 +#: Gtk/FileViewList.vala:3392 msgid "Generating thumbnails..." msgstr "Generiere Vorschau..." @@ -1768,19 +1755,19 @@ msgid "Go" msgstr "Ordner" -#: Gtk/Pathbar.vala:879 +#: Gtk/Pathbar.vala:857 msgid "Go Up" msgstr "Gehe hinauf" -#: Gtk/FileViewList.vala:3746 +#: Gtk/FileViewList.vala:3685 msgid "Go to location" msgstr "Gehe zu Ort" -#: Gtk/Settings.vala:2390 +#: Gtk/Settings.vala:2411 msgid "Graphics" msgstr "" -#: Gtk/Settings.vala:2426 +#: Gtk/Settings.vala:2447 msgid "" "Graphics card to emulate for guest machine.\n" "\n" @@ -1797,8 +1784,8 @@ "qxl - More powerful graphics card for use with SPICE." msgstr "" -#: Gtk/FileViewList.vala:414 Gtk/FileViewList.vala:935 -#: Gtk/PropertiesWindow.vala:620 Gtk/PropertiesWindow.vala:846 +#: Gtk/FileViewList.vala:412 Gtk/FileViewList.vala:933 +#: Gtk/PropertiesWindow.vala:660 Gtk/PropertiesWindow.vala:865 #, c-format msgid "Group" msgstr "Gruppe" @@ -1807,7 +1794,7 @@ msgid "Headerbar" msgstr "" -#: Gtk/PropertiesWindow.vala:278 +#: Gtk/PropertiesWindow.vala:285 msgid "Headers" msgstr "Kopfzeilen" @@ -1815,16 +1802,12 @@ msgid "Help" msgstr "" -#: Gtk/Settings.vala:493 -msgid "Hidden" -msgstr "Versteckt" - -#: Gtk/CreateArchiveWindow.vala:1802 Gtk/FileContextMenu.vala:1295 +#: Gtk/CreateArchiveWindow.vala:1802 Gtk/FileContextMenu.vala:1342 #: Gtk/PasswordDialog.vala:202 msgid "Hide" msgstr "Verstecke" -#: Gtk/FileContextMenu.vala:1296 +#: Gtk/FileContextMenu.vala:1343 msgid "Hide selected items" msgstr "Verstecke gewählte Objekte" @@ -1832,12 +1815,12 @@ msgid "History" msgstr "" -#: Gtk/FileViewToolbar.vala:217 Gtk/Pathbar.vala:909 Gtk/Settings.vala:459 -#: Gtk/Settings.vala:837 Gtk/Sidebar.vala:338 +#: Gtk/FileViewToolbar.vala:217 Gtk/Pathbar.vala:887 Gtk/PlacesPopover.vala:622 +#: Gtk/Settings.vala:459 Gtk/Settings.vala:837 Gtk/Sidebar.vala:340 msgid "Home" msgstr "Home" -#: Gtk/MainMenubar.vala:1908 +#: Gtk/MainMenubar.vala:1907 msgid "Homepage" msgstr "" @@ -1849,45 +1832,41 @@ msgid "Host IP (Eg: 192.0.10.1)" msgstr "" -#: Gtk/FileContextMenu.vala:1581 -msgid "ISO" -msgstr "" - #: Utility/Gtk/AboutWindow.vala:467 msgid "Icon Themes & Utilities" msgstr "" -#: Gtk/Settings.vala:1562 +#: Gtk/Settings.vala:1583 msgid "Icon View" msgstr "Symbolansicht" -#: Gtk/Settings.vala:1648 Gtk/Settings.vala:1803 Gtk/Settings.vala:2004 +#: Gtk/Settings.vala:1669 Gtk/Settings.vala:1824 Gtk/Settings.vala:2025 msgid "Icon size" msgstr "Symbolgröße" -#: Gtk/FileViewToolbar.vala:402 Gtk/Settings.vala:1260 Gtk/ViewPopover.vala:134 +#: Gtk/FileViewToolbar.vala:398 Gtk/Settings.vala:1267 Gtk/ViewPopover.vala:134 msgid "Icons" msgstr "Symbole" -#: Gtk/Settings.vala:2565 Gtk/Settings.vala:2579 +#: Gtk/Settings.vala:2586 Gtk/Settings.vala:2600 msgid "If selected, the action will remove original file on success" msgstr "" -#: Gtk/Settings.vala:2593 Gtk/Settings.vala:2607 Gtk/Settings.vala:2621 -#: Gtk/Settings.vala:2635 Gtk/Settings.vala:2649 Gtk/Settings.vala:2663 -#: Gtk/Settings.vala:2677 Gtk/Settings.vala:2692 Gtk/Settings.vala:2706 -#: Gtk/Settings.vala:2720 Gtk/Settings.vala:2734 Gtk/Settings.vala:2748 -#: Gtk/Settings.vala:2762 Gtk/Settings.vala:2776 +#: Gtk/Settings.vala:2614 Gtk/Settings.vala:2628 Gtk/Settings.vala:2642 +#: Gtk/Settings.vala:2656 Gtk/Settings.vala:2670 Gtk/Settings.vala:2684 +#: Gtk/Settings.vala:2698 Gtk/Settings.vala:2713 Gtk/Settings.vala:2727 +#: Gtk/Settings.vala:2741 Gtk/Settings.vala:2755 Gtk/Settings.vala:2769 +#: Gtk/Settings.vala:2783 Gtk/Settings.vala:2797 msgid "" "If selected, the action will replace original file on success, instead of " "creating new file." msgstr "" -#: Gtk/FileContextMenu.vala:2206 +#: Gtk/FileContextMenu.vala:2253 msgid "Image" msgstr "" -#: Gtk/Settings.vala:2314 +#: Gtk/Settings.vala:2335 msgid "Image Actions" msgstr "" @@ -1913,7 +1892,7 @@ msgid "Install Rclone (Cloud Storage Support)" msgstr "" -#: Gtk/FileContextMenu.vala:1855 +#: Gtk/FileContextMenu.vala:1902 msgid "Install from ISO..." msgstr "" @@ -1921,19 +1900,19 @@ msgid "Install p7zip 16.02 (Archive Support)" msgstr "" -#: Gtk/FileViewList.vala:5645 Gtk/FileViewList.vala:5667 +#: Gtk/FileViewList.vala:5671 Gtk/FileViewList.vala:5693 msgid "Install required packages and try again" msgstr "" -#: Gtk/FileViewList.vala:4302 +#: Gtk/FileViewList.vala:4241 msgid "Internal Error" msgstr "Interner Fehler" -#: Utility/Device.vala:488 +#: Utility/Device.vala:496 msgid "Invalid Passphrase" msgstr "" -#: Gtk/FileViewList.vala:5904 +#: Gtk/FileViewList.vala:5930 msgid "Invalid Path" msgstr "" @@ -1941,7 +1920,7 @@ msgid "Invalid Server Name" msgstr "" -#: Gtk/MainMenubar.vala:1918 +#: Gtk/MainMenubar.vala:1917 msgid "Issue Tracker" msgstr "" @@ -1953,7 +1932,7 @@ msgid "Item" msgstr "" -#: Gtk/FileViewList.vala:390 +#: Gtk/FileViewList.vala:388 msgid "Item is not a symbolic link" msgstr "" @@ -1961,15 +1940,15 @@ msgid "Items" msgstr "Objekte" -#: Gtk/FileContextMenu.vala:1720 +#: Gtk/FileContextMenu.vala:1767 msgid "KVM" msgstr "" -#: Gtk/PropertiesWindow.vala:1002 +#: Gtk/PropertiesWindow.vala:1023 msgid "Key" msgstr "Schlüssel" -#: Gtk/MainMenubar.vala:1938 +#: Gtk/MainMenubar.vala:1937 msgid "Keyboard Shortcuts" msgstr "" @@ -1977,7 +1956,7 @@ msgid "Korn shell (ksh)" msgstr "" -#: Gtk/PropertiesWindow.vala:476 Utility/Device.vala:2415 +#: Gtk/PropertiesWindow.vala:506 Gtk/Sidebar.vala:715 Utility/Device.vala:2437 #, c-format msgid "Label" msgstr "Beschriftung" @@ -1990,7 +1969,7 @@ msgid "Large icons" msgstr "Große Symbole" -#: Gtk/FileViewList.vala:399 +#: Gtk/FileViewList.vala:397 #, c-format msgid "Last modified date" msgstr "Datum letzte Bearbeitung" @@ -2016,27 +1995,27 @@ msgid "License" msgstr "" -#: Gtk/Settings.vala:2481 +#: Gtk/Settings.vala:2502 msgid "" "Limit the CPU usage for VM process. It is recommended to keep this below 90 " "to prevent the host system from becoming unresponsive when intensive tasks " "are running in the guest OS." msgstr "" -#: Gtk/PropertiesWindow.vala:178 +#: Gtk/PropertiesWindow.vala:185 msgid "Link Target" msgstr "Ziel Verknüpfung" -#: Gtk/FileViewList.vala:383 Gtk/FileViewList.vala:386 +#: Gtk/FileViewList.vala:381 Gtk/FileViewList.vala:384 #, c-format msgid "Link to" msgstr "Verknüpfung zu" -#: Gtk/FileViewToolbar.vala:395 Gtk/Settings.vala:1258 Gtk/ViewPopover.vala:127 +#: Gtk/FileViewToolbar.vala:391 Gtk/Settings.vala:1265 Gtk/ViewPopover.vala:127 msgid "List" msgstr "Liste" -#: Gtk/Settings.vala:1544 +#: Gtk/Settings.vala:1565 msgid "List View" msgstr "Listenansicht" @@ -2048,28 +2027,33 @@ msgid "Listing source items..." msgstr "" -#: Gtk/FileViewList.vala:3396 +#: Gtk/FileViewList.vala:3331 msgid "Loading..." msgstr "" -#: Gtk/CreateArchiveWindow.vala:404 Gtk/PropertiesWindow.vala:175 +#: Gtk/CreateArchiveWindow.vala:404 Gtk/PropertiesWindow.vala:182 msgid "Location" msgstr "Ort" -#: Gtk/Sidebar.vala:919 +#: Gtk/Sidebar.vala:958 msgid "Location not found" msgstr "Ort nicht gefunden" -#: Gtk/DeviceContextMenu.vala:198 +#: Gtk/DeviceContextMenu.vala:225 msgid "Lock" msgstr "" -#: Utility/Device.vala:561 Utility/Device.vala:1909 +#: Gtk/FileViewTab.vala:295 +#, fuzzy +msgid "Lock Path" +msgstr "Pfad" + +#: Utility/Device.vala:569 Utility/Device.vala:1931 #, c-format msgid "Locked" msgstr "" -#: Utility/Device.vala:560 Utility/Device.vala:1908 +#: Utility/Device.vala:568 Utility/Device.vala:1930 msgid "Locked successfully" msgstr "" @@ -2081,23 +2065,24 @@ msgid "Logout from cloud storage account" msgstr "" -#: Gtk/FileViewList.vala:1150 +#: Gtk/FileViewList.vala:1148 msgid "MD5" msgstr "MD5" -#: Gtk/FileViewToolbar.vala:483 +#: Gtk/FileViewToolbar.vala:479 msgid "Make a donation" msgstr "Spenden" -#: Gtk/DeviceContextMenu.vala:247 +#: Gtk/DeviceContextMenu.vala:270 msgid "Manage device using GNOME disk utility" msgstr "" -#: Gtk/DeviceContextMenu.vala:246 +#: Gtk/DeviceContextMenu.vala:269 msgid "Manage..." msgstr "" -#: Gtk/PropertiesWindow.vala:471 +#: Gtk/PropertiesWindow.vala:501 Gtk/Sidebar.vala:710 +#, c-format msgid "Mapped" msgstr "Abgebildet" @@ -2105,7 +2090,7 @@ msgid "Maximize" msgstr "Maximieren" -#: Gtk/Settings.vala:1210 +#: Gtk/Settings.vala:1217 msgid "Maximize on startup" msgstr "Maximiere beim Start" @@ -2117,19 +2102,19 @@ msgid "Maximum" msgstr "Maximal" -#: Gtk/FileViewToolbar.vala:416 Gtk/Settings.vala:1264 Gtk/ViewPopover.vala:148 +#: Gtk/FileViewToolbar.vala:412 Gtk/Settings.vala:1271 Gtk/ViewPopover.vala:148 msgid "Media" msgstr "Medien" -#: Gtk/PropertiesWindow.vala:995 +#: Gtk/PropertiesWindow.vala:1016 msgid "MediaInfo" msgstr "Medieninfo" -#: Gtk/FileViewList.vala:3385 +#: Gtk/FileViewList.vala:3320 msgid "Menubar: File > New Admin Window" msgstr "" -#: Gtk/FileContextMenu.vala:2017 Gtk/Settings.vala:2576 +#: Gtk/FileContextMenu.vala:2064 Gtk/Settings.vala:2597 msgid "Merge" msgstr "" @@ -2137,20 +2122,20 @@ msgid "Merge Derived Disk" msgstr "" -#: Gtk/FileContextMenu.vala:2018 +#: Gtk/FileContextMenu.vala:2065 msgid "Merge selected PDF files into one document" msgstr "" -#: Gtk/CreateArchiveWindow.vala:614 Gtk/PropertiesWindow.vala:225 +#: Gtk/CreateArchiveWindow.vala:614 Gtk/PropertiesWindow.vala:232 msgid "Method" msgstr "Methode" -#: Gtk/PropertiesWindow.vala:290 Utility/FileItem.vala:660 +#: Gtk/PropertiesWindow.vala:297 Utility/FileItem.vala:660 #, c-format msgid "Mime" msgstr "Mime" -#: Gtk/FileViewList.vala:405 +#: Gtk/FileViewList.vala:403 #, c-format msgid "Mime type" msgstr "Mime Typ" @@ -2159,79 +2144,67 @@ msgid "Minimize" msgstr "Minimieren" -#: Gtk/Settings.vala:1482 -msgid "" -"Minimize to system tray when window is closed instead of exiting the " -"application. Opening another folder will be much faster, as the application " -"would already be running in the background." -msgstr "" -"In die Systemablage minimieren, wenn das Fenster geschlossen wird, anstatt " -"die Anwendung zu beenden. Das Öffnen eines Ordners wird viel schneller sein, " -"da die Anwendung bereits im Hintergrund läuft." - -#: Gtk/Settings.vala:1479 -msgid "Minimize to tray" -msgstr "In die Systemablage minimieren" - #: Gtk/ToolsWindow.vala:155 msgid "Missing" msgstr "Fehlt" -#: Gtk/MainWindow.vala:549 +#: Gtk/MainWindow.vala:548 msgid "Missing Dependencies" msgstr "Fehlende Abhängigkeiten" -#: Gtk/DeviceContextMenu.vala:554 Gtk/DeviceContextMenu.vala:571 -#: Gtk/FileViewList.vala:5644 +#: Gtk/DeviceContextMenu.vala:598 Gtk/DeviceContextMenu.vala:615 +#: Gtk/FileViewList.vala:5670 msgid "Missing Dependency" msgstr "" -#: Utility/Gtk/GtkHelper.vala:362 +#: Utility/Gtk/GtkHelper.vala:376 msgid "Missing Icon" msgstr "" -#: Gtk/FileViewList.vala:5666 +#: Gtk/FileViewList.vala:5692 msgid "Missing Plugin" msgstr "" -#: Utility/Device.vala:2398 +#: Utility/Device.vala:2420 #, c-format msgid "Model" msgstr "" #: Gtk/FileConflictDialog.vala:543 Gtk/FileConflictDialog.vala:555 -#: Gtk/FileViewList.vala:806 Gtk/PropertiesWindow.vala:308 +#: Gtk/FileViewList.vala:804 Gtk/PropertiesWindow.vala:315 #: Utility/FileItem.vala:657 #, c-format msgid "Modified" msgstr "Modifiziert" -#: Gtk/FileContextMenu.vala:1104 +#: Gtk/FileContextMenu.vala:1151 msgid "More options" msgstr "Mehr Optionen" -#: Gtk/DeviceContextMenu.vala:152 Gtk/DeviceContextMenu.vala:298 -#: Gtk/FileContextMenu.vala:1611 Gtk/PropertiesWindow.vala:481 +#: Gtk/DeviceContextMenu.vala:179 Gtk/FileContextMenu.vala:1658 +#: Gtk/PropertiesWindow.vala:513 Gtk/Sidebar.vala:722 +#, c-format msgid "Mount" msgstr "Einhängen" -#: Gtk/FileContextMenu.vala:1835 +#: Gtk/FileContextMenu.vala:1882 msgid "Mount Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1612 -msgid "Mount the ISO file as a read-only disk" +#: Gtk/FileContextMenu.vala:1659 +#, fuzzy +msgid "Mount the disk image as read-only device" msgstr "ISO als `nur lesen` einhängen" -#: Gtk/FileContextMenu.vala:1836 +#: Gtk/FileContextMenu.vala:1883 msgid "Mount the selected disk" msgstr "" -#: Gtk/DeviceContextMenu.vala:153 Gtk/DeviceContextMenu.vala:299 +#: Gtk/DeviceContextMenu.vala:180 msgid "Mount this volume" msgstr "Dieses Laufwerk einhängen" -#: Gtk/FileViewList.vala:5007 +#: Gtk/FileViewList.vala:5027 #, c-format msgid "Mounted ISO" msgstr "Eingehängte ISO" @@ -2240,7 +2213,7 @@ msgid "Mounted successfully" msgstr "" -#: Gtk/FileContextMenu.vala:1211 +#: Gtk/FileContextMenu.vala:1258 msgid "Move Across" msgstr "Ins andere Fenster verschieben" @@ -2255,7 +2228,7 @@ msgid "Move Down" msgstr "Verschiebe nach unten" -#: Gtk/FileContextMenu.vala:1171 +#: Gtk/FileContextMenu.vala:1218 msgid "Move To..." msgstr "Verschiebe nach..." @@ -2275,11 +2248,11 @@ msgid "Move selected item up" msgstr "Verschiebe gewählte Objekte nach oben" -#: Gtk/FileContextMenu.vala:1172 +#: Gtk/FileContextMenu.vala:1219 msgid "Move to another location" msgstr "Verschiebe zu einem anderen Ort" -#: Gtk/FileContextMenu.vala:1212 +#: Gtk/FileContextMenu.vala:1259 msgid "Move to other pane" msgstr "Verschiebe zum anderen Fenster" @@ -2300,7 +2273,7 @@ msgid "Multiple items selected" msgstr "Mehrere Elemente ausgewählt" -#: Gtk/Sidebar.vala:342 +#: Gtk/PlacesPopover.vala:626 Gtk/Sidebar.vala:344 msgid "Music" msgstr "Musik" @@ -2312,18 +2285,18 @@ msgid "NETBIOS Name" msgstr "" -#: Gtk/FileViewList.vala:396 +#: Gtk/FileViewList.vala:394 msgid "NTD = Rename Trash Delete" msgstr "NTD = Umbenennen von Papierkorb" #: Gtk/ColumnSelectionBox.vala:111 Gtk/CreateArchiveWindow.vala:259 -#: Gtk/FileViewList.vala:648 Gtk/PropertiesWindow.vala:169 +#: Gtk/FileViewList.vala:646 Gtk/PropertiesWindow.vala:176 #: Utility/FileItem.vala:654 #, c-format msgid "Name" msgstr "Name" -#: Gtk/FileContextMenu.vala:586 +#: Gtk/FileContextMenu.vala:588 msgid "New" msgstr "Neu" @@ -2331,15 +2304,15 @@ msgid "New Admin Window" msgstr "Neues Admin Fenster" -#: Gtk/FileViewList.vala:4653 +#: Gtk/FileViewList.vala:4589 msgid "New File" msgstr "" -#: Gtk/FileViewList.vala:4619 +#: Gtk/FileViewList.vala:4555 msgid "New Folder" msgstr "" -#: Gtk/FileViewTab.vala:323 Gtk/MainMenubar.vala:158 +#: Gtk/FileViewTab.vala:361 Gtk/MainMenubar.vala:158 msgid "New Tab" msgstr "Neuer TAB" @@ -2359,39 +2332,38 @@ msgid "New disk will be created by merging contents of derived and base files" msgstr "" -#: Gtk/Pathbar.vala:849 Gtk/Settings.vala:408 Gtk/Settings.vala:797 #: Gtk/WizardWindow.vala:114 msgid "Next" msgstr "Nächste" -#: Gtk/MediaBar.vala:147 Gtk/PropertiesWindow.vala:230 -#: Gtk/PropertiesWindow.vala:235 Utility/Gtk/CustomMessageDialog.vala:177 +#: Gtk/MediaBar.vala:146 Gtk/PropertiesWindow.vala:237 +#: Gtk/PropertiesWindow.vala:242 Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "Nein" -#: Gtk/FileViewList.vala:6037 +#: Gtk/FileViewList.vala:6063 msgid "No Files Selected" msgstr "Keine Dateien gewählt" -#: Gtk/FileViewList.vala:5500 Gtk/FileViewList.vala:5520 -#: Gtk/FileViewList.vala:5540 Gtk/FileViewList.vala:5560 -#: Gtk/FileViewList.vala:5580 Gtk/FileViewList.vala:5600 +#: Gtk/FileViewList.vala:5518 Gtk/FileViewList.vala:5538 +#: Gtk/FileViewList.vala:5558 Gtk/FileViewList.vala:5578 +#: Gtk/FileViewList.vala:5598 Gtk/FileViewList.vala:5618 msgid "No Images Selected" msgstr "" -#: Gtk/FileViewList.vala:5480 +#: Gtk/FileViewList.vala:5498 msgid "No JPEGs Selected" msgstr "" -#: Gtk/FileViewList.vala:5458 +#: Gtk/FileViewList.vala:5476 msgid "No PNGs Selected" msgstr "" -#: Gtk/FileViewList.vala:4576 +#: Gtk/FileViewList.vala:4512 msgid "No Permission" msgstr "Keine Berechtigung" -#: Gtk/FileContextMenu.vala:1699 +#: Gtk/FileContextMenu.vala:1746 msgid "No USB devices found" msgstr "" @@ -2399,15 +2371,12 @@ msgid "Normal" msgstr "Normal" -#: Gtk/ProgressPanelFileTask.vala:433 -msgid "Not Responding" -msgstr "Reagiert nicht" - -#: Gtk/FileViewList.vala:5834 Gtk/FileViewList.vala:5930 +#: Gtk/FileViewList.vala:4974 Gtk/FileViewList.vala:4981 +#: Gtk/FileViewList.vala:5860 Gtk/FileViewList.vala:5956 msgid "Not Supported" msgstr "" -#: Gtk/Settings.vala:2454 +#: Gtk/Settings.vala:2475 msgid "" "Number of CPU cores to emulate for guest machine. This can be greater than " "the number of cores on host machine." @@ -2415,13 +2384,13 @@ #: Gtk/FileConflictDialog.vala:254 Gtk/ProgressPanelArchiveTask.vala:521 #: Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:139 +#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:153 #: Utility/Gtk/LoadingWindow.vala:110 msgid "OK" msgstr "OK" -#: Gtk/DeviceContextMenu.vala:128 Gtk/FileContextMenu.vala:236 -#: Gtk/FileContextMenu.vala:305 Gtk/FileContextMenu.vala:1460 +#: Gtk/DeviceContextMenu.vala:153 Gtk/FileContextMenu.vala:238 +#: Gtk/FileContextMenu.vala:307 Gtk/FileContextMenu.vala:1507 #: Gtk/MainMenubar.vala:1241 msgid "Open" msgstr "Öffnen" @@ -2438,59 +2407,59 @@ msgid "Open Opposite" msgstr "Öffne gegenüber" -#: Gtk/FileContextMenu.vala:1034 +#: Gtk/FileContextMenu.vala:1031 msgid "Open Original Location" msgstr "Öffne original Standort" -#: Gtk/FileContextMenu.vala:796 +#: Gtk/FileContextMenu.vala:798 msgid "Open Templates Folder" msgstr "Vorlagen Ordner öffnen" -#: Gtk/FileContextMenu.vala:1057 +#: Gtk/FileContextMenu.vala:1054 msgid "Open Trash Directory" msgstr "Öffne Papierkorb Verzeichnis" -#: Gtk/FileContextMenu.vala:328 Gtk/FileContextMenu.vala:362 +#: Gtk/FileContextMenu.vala:330 Gtk/FileContextMenu.vala:364 msgid "Open With" msgstr "Öffnen mit" -#: Gtk/FileContextMenu.vala:671 +#: Gtk/FileContextMenu.vala:673 msgid "Open a terminal window" msgstr "Öffne im Terminal Fenster" -#: Gtk/FileViewList.vala:3384 +#: Gtk/FileViewList.vala:3319 msgid "Open an admin window to browse this folder" msgstr "" -#: Gtk/FileContextMenu.vala:1461 +#: Gtk/FileContextMenu.vala:1508 msgid "Open archive" msgstr "" -#: Gtk/FileContextMenu.vala:564 +#: Gtk/FileContextMenu.vala:566 msgid "Open as Admin" msgstr "Öffne als Admin" -#: Gtk/FileContextMenu.vala:565 +#: Gtk/FileContextMenu.vala:567 msgid "Open folder as administrator" msgstr "Öffne Ordner als Administrator" -#: Gtk/FileContextMenu.vala:523 +#: Gtk/FileContextMenu.vala:525 msgid "Open folder in new tab" msgstr "Öffne Ordner im neuen TAB" -#: Gtk/FileContextMenu.vala:544 +#: Gtk/FileContextMenu.vala:546 msgid "Open folder in new window" msgstr "Öffne Ordner im neuen Fenster" -#: Gtk/FileContextMenu.vala:522 +#: Gtk/FileContextMenu.vala:524 msgid "Open in New Tab" msgstr "Öffne im neuen TAB" -#: Gtk/FileContextMenu.vala:543 +#: Gtk/FileContextMenu.vala:545 msgid "Open in New Window" msgstr "Öffne im neuen Fenster" -#: Gtk/DeviceContextMenu.vala:129 +#: Gtk/DeviceContextMenu.vala:154 msgid "Open in active pane" msgstr "Öffne im aktiven Fenster" @@ -2502,11 +2471,11 @@ msgid "Open menu" msgstr "Öffne Menü" -#: Gtk/FileContextMenu.vala:690 +#: Gtk/FileContextMenu.vala:692 msgid "Open new tab" msgstr "Öffne neuen TAB" -#: Gtk/FileContextMenu.vala:709 +#: Gtk/FileContextMenu.vala:711 msgid "Open new window" msgstr "Öffne neues Fenster" @@ -2518,15 +2487,15 @@ msgid "Open right-pane location in left pane" msgstr "Öffne Ort auf der rechten Seite im linken Fenster" -#: Gtk/FileContextMenu.vala:306 +#: Gtk/FileContextMenu.vala:308 msgid "Open selected item" msgstr "Öffne gewählte Objekte" -#: Gtk/FileContextMenu.vala:797 +#: Gtk/FileContextMenu.vala:799 msgid "Open templates folder" msgstr "Öffne Template Ordner" -#: Gtk/FileContextMenu.vala:1058 +#: Gtk/FileContextMenu.vala:1055 msgid "Open the actual location of trashed item in a new tab" msgstr "" "Öffnen Sie die aktuelle Position des gelöschten-Elements in einer neuen " @@ -2536,7 +2505,7 @@ msgid "Open the next visited location" msgstr "Öffne den nächsten besuchten Ort" -#: Gtk/FileContextMenu.vala:1035 +#: Gtk/FileContextMenu.vala:1032 msgid "Open the original location of trashed item in a new tab" msgstr "" "Öffnen Sie die ursprüngliche Position des gelöschten Elements in einer neuen " @@ -2550,39 +2519,39 @@ msgid "Open the previous visited location" msgstr "Öffnen Sie den vorher besuchten Ort" -#: Gtk/FileContextMenu.vala:1341 +#: Gtk/FileContextMenu.vala:1388 msgid "Open the symbolic link's target location" msgstr "Öffnen Verzeichnis den symbolischen Links" -#: Gtk/Pathbar.vala:939 +#: Gtk/Pathbar.vala:917 msgid "Open this directory path in opposite pane" msgstr "Dateipfad auch im anderen Fenster öffnen" -#: Gtk/FileContextMenu.vala:728 +#: Gtk/FileContextMenu.vala:730 msgid "Open window as administrator" msgstr "Fenster als Administrator öffnen" -#: Gtk/FileContextMenu.vala:292 +#: Gtk/FileContextMenu.vala:294 msgid "Open with default application" msgstr "Mit Standard Anwendung öffnen" -#: Gtk/FileContextMenu.vala:329 Gtk/FileContextMenu.vala:388 +#: Gtk/FileContextMenu.vala:331 Gtk/FileContextMenu.vala:390 msgid "Open with other applications" msgstr "Mit andere Anwendung öffnen" -#: Gtk/Settings.vala:2674 +#: Gtk/Settings.vala:2695 msgid "Optimize" msgstr "" -#: Gtk/FileContextMenu.vala:2119 +#: Gtk/FileContextMenu.vala:2166 msgid "Optimize For" msgstr "" -#: Gtk/Settings.vala:2689 +#: Gtk/Settings.vala:2710 msgid "Optimize PNG" msgstr "" -#: Gtk/FileContextMenu.vala:2269 +#: Gtk/FileContextMenu.vala:2316 msgid "Optimize PNG (lossless)" msgstr "" @@ -2603,24 +2572,24 @@ msgid "Optional: guest (default)" msgstr "" -#: Gtk/PoloGtk.vala:144 Gtk/Settings.vala:1743 Gtk/Settings.vala:1927 -#: Gtk/Settings.vala:2130 +#: Gtk/PoloGtk.vala:144 Gtk/Settings.vala:1764 Gtk/Settings.vala:1948 +#: Gtk/Settings.vala:2151 msgid "Options" msgstr "Optionen" -#: Gtk/FileViewList.vala:1236 +#: Gtk/FileViewList.vala:1234 msgid "Original Location" msgstr "Ursprünglicher Ort" -#: Gtk/FileContextMenu.vala:387 +#: Gtk/FileContextMenu.vala:389 msgid "Other" msgstr "" -#: Gtk/FileContextMenu.vala:496 Gtk/PropertiesWindow.vala:624 +#: Gtk/FileContextMenu.vala:498 Gtk/PropertiesWindow.vala:664 msgid "Others" msgstr "Andere" -#: Gtk/FileViewList.vala:5674 +#: Gtk/FileViewList.vala:5700 msgid "Outdated Plugin" msgstr "" @@ -2628,23 +2597,23 @@ msgid "Overwrite existing file?" msgstr "" -#: Gtk/FileViewList.vala:892 Gtk/PropertiesWindow.vala:788 +#: Gtk/FileViewList.vala:890 Gtk/PropertiesWindow.vala:807 msgid "Owner" msgstr "Eigentümer" -#: Gtk/FileContextMenu.vala:1956 +#: Gtk/FileContextMenu.vala:2003 msgid "PDF" msgstr "" -#: Gtk/Settings.vala:2291 +#: Gtk/Settings.vala:2312 msgid "PDF Actions" msgstr "" -#: Gtk/FileViewList.vala:849 Gtk/PropertiesWindow.vala:254 +#: Gtk/FileViewList.vala:847 Gtk/PropertiesWindow.vala:261 msgid "Packed" msgstr "Gepackt" -#: Gtk/Settings.vala:2077 +#: Gtk/Settings.vala:2098 msgid "Padding" msgstr "Innenabstand" @@ -2652,16 +2621,21 @@ msgid "Panes" msgstr "Felder" -#: Utility/Device.vala:2410 +#: Utility/Device.vala:2432 #, c-format msgid "Parent Device" msgstr "" -#: Gtk/FileViewList.vala:5931 +#: Gtk/PropertiesWindow.vala:508 Gtk/Sidebar.vala:717 +#, fuzzy, c-format +msgid "PartLabel" +msgstr "Beschriftung" + +#: Gtk/FileViewList.vala:5957 msgid "Partial extraction not supported for solid archives" msgstr "Partielle Extraktion wird nicht für solide Archive unterstützt" -#: Gtk/DeviceContextMenu.vala:526 +#: Gtk/DeviceContextMenu.vala:570 msgid "" "Partitions on following device will be unmounted and device will be ejected:" msgstr "" @@ -2700,7 +2674,7 @@ "\n" "Einfügen der Zwischenablage in das aktive Fenster" -#: Gtk/FileContextMenu.vala:1270 +#: Gtk/FileContextMenu.vala:1317 msgid "Paste Hardlinks" msgstr "Hardlinks hinzufügen" @@ -2712,11 +2686,11 @@ msgid "Paste Into Folder" msgstr "" -#: Gtk/FileContextMenu.vala:1233 +#: Gtk/FileContextMenu.vala:1280 msgid "Paste Symlinks" msgstr "Symlinks einfügen" -#: Gtk/FileContextMenu.vala:1252 +#: Gtk/FileContextMenu.vala:1299 msgid "Paste Symlinks (relative)" msgstr "Symlinks einfügen (relativ)" @@ -2724,7 +2698,7 @@ msgid "Paste clipboard contents" msgstr "Inhalt der Zwischenablage einfügen" -#: Gtk/FileContextMenu.vala:1271 +#: Gtk/FileContextMenu.vala:1318 msgid "" "Paste hard links to selected items in this directory.\n" "\n" @@ -2745,7 +2719,7 @@ msgid "Paste items into selected directory" msgstr "" -#: Gtk/FileContextMenu.vala:1234 +#: Gtk/FileContextMenu.vala:1281 msgid "" "Paste symbolic links to selected items in this directory. Absolute path will " "be used for symlink target." @@ -2753,7 +2727,7 @@ "Füge symbolische Links der gewählten Elemente in dieses Verzeichnis. " "Absolute Pfade werden für die symbolischen Links verwendet." -#: Gtk/FileContextMenu.vala:1253 +#: Gtk/FileContextMenu.vala:1300 msgid "" "Paste symbolic links to selected items in this directory. Relative paths " "will be used for symlink target.\n" @@ -2767,11 +2741,16 @@ "sich die Pfade ändern wenn der Datenträger in ein anderes Verzeichnis " "eingehängt wird." -#: Gtk/FileConflictDialog.vala:405 Utility/Device.vala:362 -#: Utility/Device.vala:1672 +#: Gtk/FileConflictDialog.vala:405 Utility/Device.vala:370 +#: Utility/Device.vala:1688 msgid "Path" msgstr "Pfad" +#: Gtk/PlacesPopover.vala:474 +#, fuzzy +msgid "Path Not Found" +msgstr "Pfad nicht gefunden" + #: Gtk/BookmarksMenu.vala:132 msgid "Path not found" msgstr "Pfad nicht gefunden" @@ -2786,21 +2765,25 @@ msgid "Pause" msgstr "Pause" -#: Gtk/FileViewList.vala:417 Gtk/FileViewList.vala:978 -#: Gtk/PropertiesWindow.vala:600 Gtk/PropertiesWindow.vala:602 +#: Gtk/Settings.vala:1207 +msgid "Performance" +msgstr "" + +#: Gtk/FileViewList.vala:415 Gtk/FileViewList.vala:976 +#: Gtk/PropertiesWindow.vala:640 Gtk/PropertiesWindow.vala:642 #, c-format msgid "Permissions" msgstr "Berechtigungen" -#: Gtk/Sidebar.vala:341 +#: Gtk/PlacesPopover.vala:625 Gtk/Sidebar.vala:343 msgid "Pictures" msgstr "Bilder" -#: Gtk/Settings.vala:956 Gtk/Sidebar.vala:332 +#: Gtk/Settings.vala:956 Gtk/Sidebar.vala:334 msgid "Places" msgstr "Orte" -#: Common/Main.vala:488 +#: Common/Main.vala:490 msgid "Please install required packages and try running again" msgstr "Bitte die benötigten Pakete installieren und nochmals versuchen" @@ -2836,16 +2819,16 @@ msgid "Processed:" msgstr "Verarbeitet:" -#: Gtk/FileContextMenu.vala:2530 Gtk/MiddleToolbar.vala:309 -#: Gtk/PropertiesWindow.vala:78 +#: Gtk/DeviceContextMenu.vala:317 Gtk/FileContextMenu.vala:2577 +#: Gtk/MiddleToolbar.vala:309 Gtk/PropertiesWindow.vala:96 msgid "Properties" msgstr "Eigenschaften" -#: Gtk/FileContextMenu.vala:2035 +#: Gtk/FileContextMenu.vala:2082 msgid "Protect the PDF document by adding password" msgstr "" -#: Gtk/PropertiesWindow.vala:691 +#: Gtk/PropertiesWindow.vala:710 msgid "" "Protects files in shared directory from being deleted by other users. Only " "the owner of the file, owner of the directory or root user will be able to " @@ -2863,7 +2846,7 @@ "Datei kann diese umbenennen oder löschen und können nicht von einem anderen " "Benutzer modifiziert werden." -#: Gtk/Sidebar.vala:345 +#: Gtk/PlacesPopover.vala:629 Gtk/Sidebar.vala:347 msgid "Public" msgstr "Öffentlich" @@ -2871,19 +2854,32 @@ msgid "Quad" msgstr "Quad" -#: Gtk/FileViewToolbar.vala:374 +#: Gtk/FileViewToolbar.vala:370 msgid "Quad Pane" msgstr "4 Bereiche" +#: Gtk/Settings.vala:1541 +msgid "" +"Query items in subfolders when a folder is loaded.\n" +"\n" +"Enabled - Folders display item count in 'Size' column\n" +"\n" +"Disabled - Folders display size of directory file in 'Size' column" +msgstr "" + +#: Gtk/Settings.vala:1538 +msgid "Query subfolders" +msgstr "" + #: Utility/MediaFile.vala:46 msgid "Queued" msgstr "" -#: Gtk/Settings.vala:2494 +#: Gtk/Settings.vala:2515 msgid "RAM (MB)" msgstr "" -#: Gtk/FileViewList.vala:396 +#: Gtk/FileViewList.vala:394 msgid "RWX = Read Write Execute" msgstr "RWX = Lesen Schreiben Ausführen" @@ -2902,12 +2898,12 @@ "Download and install Rclone?" msgstr "" -#: Gtk/PropertiesWindow.vala:628 Gtk/PropertiesWindow.vala:634 -#: Gtk/PropertiesWindow.vala:640 +#: Gtk/PropertiesWindow.vala:668 Gtk/PropertiesWindow.vala:674 +#: Gtk/PropertiesWindow.vala:680 msgid "Read" msgstr "Lesen" -#: Gtk/FileViewList.vala:5123 +#: Gtk/FileViewList.vala:5141 msgid "" "Read-only disks cannot be booted.\n" "\n" @@ -2920,7 +2916,8 @@ "and boot from it, instead of booting this disk directly." msgstr "" -#: Gtk/PropertiesWindow.vala:484 +#: Gtk/PropertiesWindow.vala:516 Gtk/Sidebar.vala:725 +#, c-format msgid "ReadOnly" msgstr "Schreibgeschützt" @@ -2942,39 +2939,39 @@ "to applications" msgstr "" -#: Gtk/FileContextMenu.vala:2320 +#: Gtk/FileContextMenu.vala:2367 msgid "Reduce Color" msgstr "" -#: Gtk/FileContextMenu.vala:2102 Gtk/Settings.vala:2590 +#: Gtk/FileContextMenu.vala:2149 Gtk/Settings.vala:2611 msgid "Reduce File Size" msgstr "" -#: Gtk/Settings.vala:2703 +#: Gtk/Settings.vala:2724 msgid "Reduce JPEG" msgstr "" -#: Gtk/FileContextMenu.vala:2286 +#: Gtk/FileContextMenu.vala:2333 msgid "Reduce JPEG Quality" msgstr "" -#: Gtk/FileContextMenu.vala:2321 +#: Gtk/FileContextMenu.vala:2368 msgid "" "Reduce color (less saturation). This can be used for correcting photos that " "are over-saturated (too much color)." msgstr "" -#: Gtk/FileContextMenu.vala:2287 +#: Gtk/FileContextMenu.vala:2334 msgid "Reduce file size of JPEG images by reducing quality" msgstr "" -#: Gtk/FileContextMenu.vala:2270 +#: Gtk/FileContextMenu.vala:2317 msgid "" "Reduce file size of PNG images without losing quality. PNG files will be re-" "packed using better compression algorithms." msgstr "" -#: Gtk/FileContextMenu.vala:2103 +#: Gtk/FileContextMenu.vala:2150 msgid "" "Reduce the file size of PDF document by downscaling images. Use the " "'Optimize For' submenu for more options." @@ -2992,7 +2989,7 @@ msgid "Remaining:" msgstr "Verbleibend:" -#: Gtk/Settings.vala:1467 +#: Gtk/Settings.vala:1474 msgid "Remember last session" msgstr "Letzte Sitzung merken" @@ -3016,28 +3013,28 @@ msgid "Remove Bookmark" msgstr "" -#: Gtk/FileContextMenu.vala:2068 Gtk/FileContextMenu.vala:2303 -#: Gtk/Settings.vala:2759 +#: Gtk/FileContextMenu.vala:2115 Gtk/FileContextMenu.vala:2350 +#: Gtk/Settings.vala:2780 msgid "Remove Color" msgstr "" -#: Gtk/FileContextMenu.vala:2051 Gtk/Settings.vala:2632 +#: Gtk/FileContextMenu.vala:2098 Gtk/Settings.vala:2653 msgid "Remove Password" msgstr "" -#: Gtk/Sidebar.vala:517 +#: Gtk/Sidebar.vala:528 msgid "Remove bookmark" msgstr "Lösche Lesezeichen" -#: Gtk/Sidebar.vala:518 +#: Gtk/Sidebar.vala:529 msgid "Remove bookmark for this location" msgstr "Lösche Lesezeichen für diese Position" -#: Gtk/Settings.vala:2646 +#: Gtk/Settings.vala:2667 msgid "Remove color" msgstr "" -#: Gtk/FileContextMenu.vala:2069 +#: Gtk/FileContextMenu.vala:2116 msgid "Remove colors from PDF document" msgstr "" @@ -3046,7 +3043,7 @@ msgstr "" #: Gtk/BookmarkContextMenu.vala:89 Gtk/FileContextMenu.vala:937 -#: Gtk/FileViewList.vala:4560 Gtk/MainMenubar.vala:739 Gtk/Sidebar.vala:1133 +#: Gtk/FileViewList.vala:4496 Gtk/MainMenubar.vala:739 Gtk/Sidebar.vala:1172 msgid "Rename" msgstr "Umbenennen" @@ -3074,7 +3071,7 @@ msgid "Replace Older" msgstr "Ersetze ältere" -#: Gtk/Settings.vala:2286 +#: Gtk/Settings.vala:2307 msgid "Replace Original Files ?" msgstr "" @@ -3094,7 +3091,7 @@ msgid "Replaced" msgstr "" -#: Gtk/FileViewList.vala:4423 +#: Gtk/FileViewList.vala:4362 msgid "Requested operation is not possible" msgstr "Gewünschte Operation ist nicht möglich" @@ -3108,13 +3105,14 @@ "Benötigt Themenunterstützung. Verwenden Sie die 'dunklere' Variante des Gtk-" "Themas." -#: Gtk/ColumnSelectionBox.vala:181 Gtk/Settings.vala:1729 -#: Gtk/Settings.vala:1913 Gtk/Settings.vala:2116 Gtk/TermContextMenu.vala:369 +#: Gtk/ColumnSelectionBox.vala:181 Gtk/Settings.vala:1750 +#: Gtk/Settings.vala:1934 Gtk/Settings.vala:2137 Gtk/TermContextMenu.vala:369 msgid "Reset" msgstr "Zurücksetzen" -#: Gtk/FileViewTab.vala:273 -msgid "Reset Tab Name" +#: Gtk/FileViewTab.vala:277 +#, fuzzy +msgid "Reset Name" msgstr "TAB Name zurücksetzen" #: Gtk/TermContextMenu.vala:180 @@ -3129,11 +3127,11 @@ msgid "Reset to default columns" msgstr "Auf Standardspalten zurücksetzen" -#: Gtk/Settings.vala:2717 +#: Gtk/Settings.vala:2738 msgid "Resize" msgstr "" -#: Gtk/FileContextMenu.vala:2398 +#: Gtk/FileContextMenu.vala:2445 msgid "Resize to" msgstr "" @@ -3145,11 +3143,11 @@ msgid "Restart Application ?" msgstr "Applikation neu starten ?" -#: Gtk/FileContextMenu.vala:1381 Gtk/TrashBar.vala:134 +#: Gtk/FileContextMenu.vala:1428 Gtk/TrashBar.vala:134 msgid "Restore" msgstr "Wiederherstellen" -#: Gtk/FileContextMenu.vala:1382 +#: Gtk/FileContextMenu.vala:1429 msgid "Restore item to the original location" msgstr "Eintrag an der Original Ort wiederherstellen" @@ -3157,7 +3155,7 @@ msgid "Restore selected items to original locations" msgstr "Gewählte Eintrage an den original Orten wiederherstellen" -#: Gtk/MainWindow.vala:1098 +#: Gtk/MainWindow.vala:1099 msgid "Restoring session..." msgstr "Stelle Sitzung wieder her..." @@ -3169,29 +3167,25 @@ msgid "Resume" msgstr "Fortsetzen" -#: Utility/Device.vala:2400 +#: Utility/Device.vala:2422 #, c-format msgid "Revision" msgstr "" -#: Gtk/FileContextMenu.vala:2158 Gtk/FileContextMenu.vala:2437 -#: Gtk/Settings.vala:2660 Gtk/Settings.vala:2731 +#: Gtk/FileContextMenu.vala:2205 Gtk/FileContextMenu.vala:2484 +#: Gtk/Settings.vala:2681 Gtk/Settings.vala:2752 msgid "Rotate" msgstr "" -#: Gtk/Settings.vala:1691 Gtk/Settings.vala:1841 Gtk/Settings.vala:2042 +#: Gtk/Settings.vala:1712 Gtk/Settings.vala:1862 Gtk/Settings.vala:2063 msgid "Row spacing" msgstr "Zeilenabstand" -#: Gtk/Settings.vala:1493 -msgid "Run at startup" -msgstr "Beim Start ausführen" - -#: Gtk/FileContextMenu.vala:1012 +#: Gtk/FileContextMenu.vala:1010 msgid "Run in Terminal" msgstr "Starte im Terminal" -#: Gtk/FileContextMenu.vala:1013 +#: Gtk/FileContextMenu.vala:1011 msgid "Run the selected script in a terminal window" msgstr "Starte das Script in einem Terminal Fenster" @@ -3207,7 +3201,7 @@ msgid "Running with Admin Priviledges (!)" msgstr "Admin Recht (!)" -#: Gtk/SelectionBar.vala:143 +#: Gtk/SelectionBar.vala:148 msgid "Select" msgstr "" @@ -3223,19 +3217,15 @@ msgid "Select Columns" msgstr "Spalten auswählen" -#: Gtk/FileViewList.vala:4317 +#: Gtk/FileViewList.vala:4256 msgid "Select Copy Destination" msgstr "Wähle Kopieziel" -#: Gtk/FileViewList.vala:5875 +#: Gtk/FileViewList.vala:5901 msgid "Select Destination" msgstr "Wähle Ziel" -#: Gtk/ProgressPanelArchiveTask.vala:813 -msgid "Select Extraction Location" -msgstr "Ort zum entpacken wählen" - -#: Utility/Gtk/GtkHelper.vala:770 +#: Utility/Gtk/GtkHelper.vala:777 msgid "Select File(s)" msgstr "" @@ -3243,7 +3233,7 @@ msgid "Select Files to Replace" msgstr "" -#: Utility/Gtk/GtkHelper.vala:774 +#: Utility/Gtk/GtkHelper.vala:781 msgid "Select Folder(s)" msgstr "" @@ -3255,7 +3245,7 @@ msgid "Select Format" msgstr "" -#: Gtk/FileViewList.vala:5151 +#: Gtk/FileViewList.vala:5169 msgid "Select ISO File" msgstr "" @@ -3267,7 +3257,7 @@ msgid "Select ListView Columns" msgstr "Spalten für Listenansicht auswählen" -#: Gtk/FileViewList.vala:4317 +#: Gtk/FileViewList.vala:4256 msgid "Select Move Destination" msgstr "Ziel zum verschieben auswählen" @@ -3279,10 +3269,15 @@ msgid "Select Older" msgstr "Wähle ältere" -#: Utility/Gtk/GtkHelper.vala:1236 +#: Utility/Gtk/GtkHelper.vala:958 msgid "Select Path" msgstr "" +#: Gtk/FileContextMenu.vala:1131 +#, fuzzy +msgid "Select Second File..." +msgstr "Nichts wählen" + #: Gtk/FileConflictDialog.vala:258 msgid "Select all files in list" msgstr "Wähle alle Dateien in der Liste" @@ -3295,25 +3290,35 @@ msgid "Select older files in list" msgstr "Wähle ältere Dateien in der Liste" +#: Gtk/FileContextMenu.vala:1132 +#, fuzzy +msgid "Select second file for compare" +msgstr "Wähle ein Element zum verschieben" + #: Gtk/ColumnSelectionBox.vala:285 Gtk/ColumnSelectionBox.vala:320 msgid "Select single item to move" msgstr "Wähle ein Element zum verschieben" -#: Gtk/FileViewList.vala:5480 +#: Gtk/FileViewList.vala:5498 msgid "Select the JPEG image files to convert" msgstr "" -#: Gtk/FileViewList.vala:5458 +#: Gtk/FileViewList.vala:5476 msgid "Select the PNG image files to convert" msgstr "" -#: Gtk/FileViewList.vala:5500 Gtk/FileViewList.vala:5520 -#: Gtk/FileViewList.vala:5540 Gtk/FileViewList.vala:5560 -#: Gtk/FileViewList.vala:5580 Gtk/FileViewList.vala:5600 +#: Gtk/FileViewList.vala:5518 Gtk/FileViewList.vala:5538 +#: Gtk/FileViewList.vala:5558 Gtk/FileViewList.vala:5578 +#: Gtk/FileViewList.vala:5598 Gtk/FileViewList.vala:5618 msgid "Select the image files to convert" msgstr "" -#: Utility/Device.vala:2399 +#: Gtk/FileViewList.vala:4975 Gtk/FileViewList.vala:4982 +#, fuzzy, c-format +msgid "Selected item is not a text file" +msgstr "Wähle Dateien die ersetzt werden sollen:" + +#: Utility/Device.vala:2421 #, c-format msgid "Serial" msgstr "" @@ -3326,35 +3331,35 @@ msgid "Session & Startup" msgstr "" -#: Gtk/FileContextMenu.vala:441 +#: Gtk/FileContextMenu.vala:443 msgid "Set Default" msgstr "Voreinstellung setzen" -#: Gtk/FileContextMenu.vala:471 +#: Gtk/FileContextMenu.vala:473 msgid "Set as Default and Open With" msgstr "Als Standard festlegen und mit öffnen" -#: Gtk/FileContextMenu.vala:2250 +#: Gtk/FileContextMenu.vala:2297 msgid "Set as Wallpaper" msgstr "" -#: Gtk/FileContextMenu.vala:442 Gtk/FileContextMenu.vala:497 +#: Gtk/FileContextMenu.vala:444 Gtk/FileContextMenu.vala:499 msgid "Set default application for file type" msgstr "Standardanwendung für diesen Dateityp festlegen" -#: Gtk/Settings.vala:1730 Gtk/Settings.vala:1914 Gtk/Settings.vala:2117 +#: Gtk/Settings.vala:1751 Gtk/Settings.vala:1935 Gtk/Settings.vala:2138 msgid "Set default values" msgstr "Setze Standard werte" -#: Gtk/FileContextMenu.vala:2251 +#: Gtk/FileContextMenu.vala:2298 msgid "Set the image as wallpaper" msgstr "" -#: Gtk/Settings.vala:1362 +#: Gtk/Settings.vala:1369 msgid "Sets the default application for opening folders" msgstr "Legt die Standardanwendung für das Öffnen von Ordnern fest" -#: Gtk/FileViewToolbar.vala:462 Gtk/SettingsWindow.vala:49 +#: Gtk/FileViewToolbar.vala:458 Gtk/SettingsWindow.vala:49 #: Gtk/TermContextMenu.vala:222 msgid "Settings" msgstr "Einstellungen" @@ -3367,7 +3372,7 @@ msgid "Share Name Not Specified" msgstr "" -#: Gtk/FileViewList.vala:3386 +#: Gtk/FileViewList.vala:3321 msgid "Shortcut: [Super] + N" msgstr "" @@ -3397,11 +3402,11 @@ msgid "Show Hidden" msgstr "Zeige versteckte Daten" -#: Gtk/Settings.vala:2519 +#: Gtk/Settings.vala:2540 msgid "Show KVM in context menu" msgstr "" -#: Gtk/Settings.vala:2522 +#: Gtk/Settings.vala:2543 msgid "Show KVM submenu in right-click context menu" msgstr "" @@ -3416,6 +3421,11 @@ "Zeige kombinierte Leiste anstelle von einer Werkzeugleiste und Pfadleiste " "[Neustart erforderlich]" +#: Gtk/DeviceContextMenu.vala:318 +#, fuzzy +msgid "Show device properties" +msgstr "Zeige Datei Eigenschaften" + #: Gtk/Statusbar.vala:195 msgid "Show hidden items" msgstr "" @@ -3460,7 +3470,7 @@ msgid "Show the toolbar" msgstr "Zeige Symbolleiste" -#: Gtk/Settings.vala:1772 Gtk/Settings.vala:1958 Gtk/Settings.vala:2159 +#: Gtk/Settings.vala:1793 Gtk/Settings.vala:1979 Gtk/Settings.vala:2180 msgid "" "Show thumbnail previews in place of icons.\n" "\n" @@ -3482,22 +3492,18 @@ msgid "Single" msgstr "Einzeln" -#: Gtk/FileViewToolbar.vala:344 +#: Gtk/FileViewToolbar.vala:340 msgid "Single Pane" msgstr "Einzelfenster" -#: Gtk/Settings.vala:1433 -msgid "Single click to activate" -msgstr "Einfacher Klick zum aktivieren" - -#: Gtk/Settings.vala:1450 +#: Gtk/Settings.vala:1457 msgid "Single window mode" msgstr "Einzelfenster Modus" #: Gtk/FileConflictDialog.vala:542 Gtk/FileConflictDialog.vala:554 -#: Gtk/FileViewList.vala:750 Gtk/PropertiesWindow.vala:190 -#: Gtk/PropertiesWindow.vala:493 Gtk/Sidebar.vala:1265 Gtk/Statusbar.vala:365 -#: Utility/Device.vala:2402 Utility/Device.vala:2417 Utility/FileItem.vala:655 +#: Gtk/FileViewList.vala:748 Gtk/PropertiesWindow.vala:197 +#: Gtk/PropertiesWindow.vala:526 Gtk/Sidebar.vala:1280 Gtk/Statusbar.vala:357 +#: Utility/Device.vala:2424 Utility/Device.vala:2439 Utility/FileItem.vala:655 #, c-format msgid "Size" msgstr "Größe" @@ -3514,11 +3520,11 @@ msgid "Skip existing files" msgstr "Überspribe vorhandene Dateien" -#: Gtk/PropertiesWindow.vala:236 +#: Gtk/PropertiesWindow.vala:243 msgid "Solid" msgstr "Fest" -#: Gtk/FileContextMenu.vala:2514 Gtk/MainMenubar.vala:1197 +#: Gtk/FileContextMenu.vala:2561 Gtk/MainMenubar.vala:1197 #: Gtk/ViewPopover.vala:354 msgid "Sort By" msgstr "Sortiert nach" @@ -3531,11 +3537,11 @@ msgid "Source" msgstr "" -#: Gtk/FileViewList.vala:4422 Gtk/FileViewList.vala:4428 +#: Gtk/FileViewList.vala:4361 Gtk/FileViewList.vala:4367 msgid "Source and destination are same" msgstr "Quelle und Ziel sind gleich" -#: Gtk/PropertiesWindow.vala:649 +#: Gtk/PropertiesWindow.vala:689 msgid "Special bits" msgstr "Sonder Bits" @@ -3543,11 +3549,11 @@ msgid "Speed:" msgstr "Geschwindigkeit:" -#: Gtk/FileContextMenu.vala:2000 Gtk/Settings.vala:2562 +#: Gtk/FileContextMenu.vala:2047 Gtk/Settings.vala:2583 msgid "Split" msgstr "Teilen" -#: Gtk/FileContextMenu.vala:2001 +#: Gtk/FileContextMenu.vala:2048 msgid "Split PDF document by page" msgstr "" @@ -3559,6 +3565,10 @@ msgid "Split archive into volumes of specified size (in MB)" msgstr "Splitte Archiv (in MB)" +#: Gtk/TermContextMenu.vala:200 +msgid "Start chroot session in current directory" +msgstr "" + #: Gtk/ToolsWindow.vala:89 msgid "Status" msgstr "Status" @@ -3567,7 +3577,7 @@ msgid "Statusbar" msgstr "Statusleiste" -#: Gtk/MediaBar.vala:153 +#: Gtk/MediaBar.vala:152 msgid "Stay in current view" msgstr "In der aktuellen Ansicht bleiben" @@ -3599,7 +3609,7 @@ msgid "Swap" msgstr "Swap" -#: Gtk/MiddleToolbar.vala:391 Gtk/Pathbar.vala:963 +#: Gtk/MiddleToolbar.vala:391 Gtk/Pathbar.vala:941 msgid "Swap directory path with opposite pane" msgstr "Fenster tauschen" @@ -3611,24 +3621,20 @@ msgid "Switch to media browser view?" msgstr "Zur Medienansicht wechseln?" -#: Gtk/FileViewList.vala:1193 +#: Gtk/FileViewList.vala:1191 msgid "Symlink Target" msgstr "Symlink Ziel" -#: Gtk/DeviceContextMenu.vala:322 -msgid "Sync Pending Writes" -msgstr "Sync wartende Schreibaufträge" - #: Gtk/PoloGtk.vala:142 msgid "Syntax" msgstr "Syntax" -#: Utility/Device.vala:2423 +#: Utility/Device.vala:2445 #, c-format msgid "System" msgstr "" -#: Gtk/FileContextMenu.vala:689 +#: Gtk/FileContextMenu.vala:691 msgid "Tab" msgstr "TAB" @@ -3640,32 +3646,20 @@ msgid "Tabs at bottom" msgstr "Position TABs" -#: Gtk/FileContextMenu.vala:670 Gtk/FileViewToolbar.vala:432 -#: Gtk/Settings.vala:476 Gtk/Settings.vala:1297 +#: Gtk/FileContextMenu.vala:672 Gtk/FileViewToolbar.vala:428 +#: Gtk/Settings.vala:476 Gtk/Settings.vala:1304 msgid "Terminal" msgstr "Terminal" -#: Gtk/Settings.vala:1307 +#: Gtk/Settings.vala:1314 msgid "Terminal emulator to use for terminal panes" msgstr "" -#: Gtk/TermBox.vala:278 -msgid "Terminal is busy" -msgstr "" - #: Gtk/ProgressPanelArchiveTask.vala:107 msgid "Testing" msgstr "Teste" -#: Gtk/ProgressPanelFileTask.vala:434 -msgid "" -"The data transfer seems to have stopped. Check if device is working " -"correctly and if connection with the device is reliable." -msgstr "" -"Der Datentransfer wurde angehalten. Überprüfe die Verbindung und ob das " -"Laufwerk verfügbar ist." - -#: Gtk/FileViewList.vala:6037 +#: Gtk/FileViewList.vala:6063 msgid "There are no files selected for compression" msgstr "Keine Dateien Zum packen gewählt" @@ -3677,25 +3671,21 @@ msgid "There were some errors:" msgstr "" -#: Gtk/TermBox.vala:279 -msgid "This action cannot be executed while a process is running" -msgstr "" - #: Gtk/Settings.vala:1108 msgid "" "This application is designed for the Arc GTK theme. It may not look right " "with other themes." msgstr "" -#: Gtk/Settings.vala:1769 Gtk/Settings.vala:1955 Gtk/Settings.vala:2156 +#: Gtk/Settings.vala:1790 Gtk/Settings.vala:1976 Gtk/Settings.vala:2177 msgid "Thumbnails" msgstr "Vorschaubilder" -#: Gtk/Settings.vala:1580 +#: Gtk/Settings.vala:1601 msgid "Tile View" msgstr "Kachelansicht" -#: Gtk/FileViewToolbar.vala:409 Gtk/Settings.vala:1262 Gtk/ViewPopover.vala:141 +#: Gtk/FileViewToolbar.vala:405 Gtk/Settings.vala:1269 Gtk/ViewPopover.vala:141 msgid "Tiles" msgstr "Kacheln" @@ -3703,11 +3693,16 @@ msgid "Title" msgstr "" -#: Gtk/Statusbar.vala:434 +#: Gtk/FileContextMenu.vala:1112 +#, c-format +msgid "To '%s' in Opposite Pane" +msgstr "" + +#: Gtk/Statusbar.vala:426 msgid "Toggle Middle Toolbar" msgstr "Mittlere Symbolleiste ein/aus" -#: Gtk/Statusbar.vala:430 +#: Gtk/Statusbar.vala:422 msgid "Toggle Sidebar" msgstr "Seitenleiste ein/aus" @@ -3715,8 +3710,8 @@ msgid "Toggle Terminal Pane" msgstr "Terminalfenster umschalten" -#: Gtk/FileViewToolbar.vala:433 Gtk/MiddleToolbar.vala:366 -#: Gtk/Statusbar.vala:465 +#: Gtk/FileViewToolbar.vala:429 Gtk/MiddleToolbar.vala:366 +#: Gtk/Statusbar.vala:449 msgid "Toggle terminal panel" msgstr "" @@ -3744,12 +3739,12 @@ msgid "Translations" msgstr "" -#: Gtk/Settings.vala:1784 Gtk/Settings.vala:1970 Gtk/Settings.vala:2171 +#: Gtk/Settings.vala:1805 Gtk/Settings.vala:1991 Gtk/Settings.vala:2192 msgid "Transparency" msgstr "Transparenz" #: Gtk/FileContextMenu.vala:959 Gtk/FileViewPane.vala:152 -#: Gtk/MainMenubar.vala:645 Gtk/Sidebar.vala:346 +#: Gtk/MainMenubar.vala:645 Gtk/PlacesPopover.vala:630 Gtk/Sidebar.vala:348 msgid "Trash" msgstr "Papierkorb" @@ -3760,22 +3755,18 @@ "Move selected items to recycle bin" msgstr "" -#: Gtk/FileViewList.vala:4441 +#: Gtk/FileViewList.vala:4380 msgid "Trash selected items?" msgstr "Objekt(e) in den Papierkorb verschieben?" -#: Gtk/FileViewList.vala:1279 +#: Gtk/FileViewList.vala:1277 msgid "Trashed On" msgstr "Mülleimer ein" -#: Gtk/Settings.vala:2220 -msgid "Tree navigation" -msgstr "Baum Navigation" - #: Gtk/ConnectServerWindow.vala:220 Gtk/FileConflictDialog.vala:541 -#: Gtk/FileConflictDialog.vala:553 Gtk/FileViewList.vala:1107 -#: Gtk/PropertiesWindow.vala:218 Gtk/PropertiesWindow.vala:286 -#: Utility/Device.vala:2413 Utility/FileItem.vala:659 +#: Gtk/FileConflictDialog.vala:553 Gtk/FileViewList.vala:1105 +#: Gtk/PropertiesWindow.vala:225 Gtk/PropertiesWindow.vala:293 +#: Utility/Device.vala:2435 Utility/FileItem.vala:659 #, c-format msgid "Type" msgstr "Typ" @@ -3792,7 +3783,7 @@ msgid "URI" msgstr "" -#: Gtk/PropertiesWindow.vala:474 Utility/Device.vala:2412 +#: Gtk/PropertiesWindow.vala:504 Gtk/Sidebar.vala:713 Utility/Device.vala:2434 #, c-format msgid "UUID" msgstr "UUID" @@ -3813,19 +3804,19 @@ msgid "UnMaximize the terminal" msgstr "Verkleinere das Terminal" -#: Gtk/FileContextMenu.vala:2085 Gtk/Settings.vala:2604 +#: Gtk/FileContextMenu.vala:2132 Gtk/Settings.vala:2625 msgid "Uncompress" msgstr "" -#: Gtk/FileContextMenu.vala:2086 +#: Gtk/FileContextMenu.vala:2133 msgid "Uncompress PDF document" msgstr "" -#: Gtk/FileContextMenu.vala:1318 +#: Gtk/FileContextMenu.vala:1365 msgid "Unhide" msgstr "Anzeigen" -#: Gtk/FileContextMenu.vala:1319 +#: Gtk/FileContextMenu.vala:1366 msgid "Unhide selected items" msgstr "Zeige gewählte Dateien" @@ -3833,39 +3824,39 @@ msgid "Unknown Format" msgstr "" -#: Utility/Device.vala:510 Utility/Device.vala:1876 +#: Gtk/FileViewTab.vala:310 +msgid "Unlock Path" +msgstr "" + +#: Utility/Device.vala:518 Utility/Device.vala:1898 msgid "Unlocked" msgstr "" -#: Utility/Device.vala:509 Utility/Device.vala:1875 +#: Utility/Device.vala:517 Utility/Device.vala:1897 msgid "Unlocked successfully" msgstr "" -#: Gtk/DeviceContextMenu.vala:175 Gtk/MainMenubar.vala:1560 +#: Gtk/DeviceContextMenu.vala:202 msgid "Unmount" msgstr "Aushängen" -#: Gtk/DeviceContextMenu.vala:199 +#: Gtk/DeviceContextMenu.vala:226 msgid "Unmount and lock encrypted volume" msgstr "" -#: Gtk/MainMenubar.vala:1561 -msgid "Unmount cloud storage account" -msgstr "" - -#: Gtk/DeviceContextMenu.vala:176 +#: Gtk/DeviceContextMenu.vala:203 msgid "Unmount this volume" msgstr "Dieses Gerät aushängen" -#: Utility/Device.vala:2099 +#: Utility/Device.vala:2121 msgid "Unmounting from" msgstr "" -#: Gtk/PropertiesWindow.vala:266 +#: Gtk/PropertiesWindow.vala:273 msgid "Unpacked" msgstr "Entpackt" -#: Gtk/FileContextMenu.vala:2052 +#: Gtk/FileContextMenu.vala:2099 msgid "Unprotect the PDF document by removing password" msgstr "" @@ -3878,7 +3869,7 @@ msgid "Update recursively for all items inside the folder" msgstr "" -#: Gtk/FileViewList.vala:5675 +#: Gtk/FileViewList.vala:5701 msgid "Update required packages and try again" msgstr "" @@ -3896,18 +3887,18 @@ msgid "Uploading items..." msgstr "" -#: Gtk/PropertiesWindow.vala:500 Gtk/Sidebar.vala:1267 Gtk/Statusbar.vala:367 -#: Utility/Device.vala:2420 +#: Gtk/PropertiesWindow.vala:533 Gtk/Sidebar.vala:1282 Gtk/Statusbar.vala:359 +#: Utility/Device.vala:2442 #, c-format msgid "Used" msgstr "Benutzt" -#: Gtk/FileViewList.vala:411 Gtk/PropertiesWindow.vala:616 +#: Gtk/FileViewList.vala:409 Gtk/PropertiesWindow.vala:656 #, c-format msgid "User" msgstr "Benutzer" -#: Utility/Device.vala:470 Utility/Device.vala:1834 +#: Utility/Device.vala:478 Utility/Device.vala:1856 msgid "User cancelled the password prompt" msgstr "" @@ -3919,41 +3910,37 @@ msgid "Utility" msgstr "Werkzeug" -#: Gtk/PropertiesWindow.vala:1003 +#: Gtk/PropertiesWindow.vala:1024 msgid "Value" msgstr "Wert" -#: Utility/Device.vala:2397 +#: Utility/Device.vala:2419 #, c-format msgid "Vendor" msgstr "" -#: Gtk/Sidebar.vala:343 +#: Gtk/PlacesPopover.vala:627 Gtk/Sidebar.vala:345 msgid "Videos" msgstr "Videos" #: Gtk/FileViewToolbar.vala:262 Gtk/MainMenubar.vala:885 -#: Gtk/MainMenubar.vala:1046 Gtk/Settings.vala:527 Gtk/Settings.vala:1537 +#: Gtk/MainMenubar.vala:1046 Gtk/Settings.vala:527 Gtk/Settings.vala:1558 #: Gtk/ViewPopover.vala:116 msgid "View" msgstr "Ansicht" -#: Gtk/Settings.vala:1228 +#: Gtk/Settings.vala:1235 msgid "View Mode" msgstr "" -#: Gtk/FileContextMenu.vala:2531 +#: Gtk/FileContextMenu.vala:2578 msgid "View file properties" msgstr "Zeige Datei Eigenschaften" -#: Gtk/Settings.vala:2258 +#: Gtk/Settings.vala:2279 msgid "Virtual Machine" msgstr "" -#: Utility/TeeJee.Logging.vala:93 -msgid "W" -msgstr "" - #: Gtk/ProgressPanelVideoDownloadTask.vala:319 msgid "Web Page" msgstr "" @@ -3962,7 +3949,7 @@ msgid "Website ~ teejeetech.in" msgstr "" -#: Gtk/MainMenubar.vala:1928 +#: Gtk/MainMenubar.vala:1927 msgid "Wiki" msgstr "" @@ -3970,7 +3957,7 @@ msgid "Wiki ~ Documentation & Help" msgstr "" -#: Gtk/FileContextMenu.vala:708 +#: Gtk/FileContextMenu.vala:710 msgid "Window" msgstr "Fenster" @@ -3982,40 +3969,32 @@ msgid "Word Size" msgstr "Wortgröße" -#: Gtk/PropertiesWindow.vala:630 Gtk/PropertiesWindow.vala:636 -#: Gtk/PropertiesWindow.vala:642 +#: Gtk/PropertiesWindow.vala:670 Gtk/PropertiesWindow.vala:676 +#: Gtk/PropertiesWindow.vala:682 msgid "Write" msgstr "Schreiben" -#: Gtk/FileContextMenu.vala:1656 +#: Gtk/FileContextMenu.vala:1703 msgid "Write ISO file to USB drive" msgstr "" -#: Gtk/DeviceContextMenu.vala:323 -msgid "Write any data waiting to be written to the device" -msgstr "Schreibe alle Daten SOFORT auf das Laufwerk" - -#: Gtk/FileContextMenu.vala:1655 +#: Gtk/FileContextMenu.vala:1702 msgid "Write to USB" msgstr "" -#: Utility/Device.vala:446 Utility/Device.vala:1809 Utility/Device.vala:1853 +#: Utility/Device.vala:454 Utility/Device.vala:1831 Utility/Device.vala:1875 msgid "Wrong password" msgstr "" -#: Gtk/MediaBar.vala:95 Gtk/PropertiesWindow.vala:230 -#: Gtk/PropertiesWindow.vala:235 Utility/Gtk/CustomMessageDialog.vala:176 +#: Gtk/MediaBar.vala:95 Gtk/PropertiesWindow.vala:237 +#: Gtk/PropertiesWindow.vala:242 Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "Ja" -#: Gtk/FileViewList.vala:4576 +#: Gtk/FileViewList.vala:4512 msgid "You do not have permission to rename this item" msgstr "Sie besitzen keine Rechte um das Element umzubenennen" -#: Gtk/PropertiesWindow.vala:970 -msgid "You don't have permission to change some permissions" -msgstr "Sie besitzen keine Rechte, um die Berechtigungen zu ändern" - #: Utility/Shell.vala:55 msgid "Z shell (zsh)" msgstr "" @@ -4036,7 +4015,7 @@ msgid "file(s) exist at the destination" msgstr "Datei(en) Existieren am Zielort" -#: Gtk/Statusbar.vala:274 +#: Gtk/Statusbar.vala:266 msgid "free" msgstr "Frei" @@ -4052,11 +4031,11 @@ msgid "items" msgstr "" -#: Gtk/FileViewList.vala:4507 +#: Gtk/FileViewList.vala:4446 msgid "selected item(s) will be deleted permanently" msgstr "Gewählte Elemente werden permanent gelöscht" -#: Gtk/FileViewList.vala:4442 +#: Gtk/FileViewList.vala:4381 msgid "selected item(s) will be moved to trash" msgstr "Gewählte(s) Element(e) werden in den Papierkorb verschoben." @@ -4073,6 +4052,98 @@ msgid "trashed" msgstr "" +#~ msgid "" +#~ "Allows X-window apps running inside the chroot environment to use the " +#~ "host display" +#~ msgstr "" +#~ "Ermöglicht das Ausführen von X-Fenster-Apps in der chroot-Umgebung, um " +#~ "die Host-Anzeige zu verwenden" + +#~ msgid "Allows network connection to be used inside the chroot environment" +#~ msgstr "" +#~ "Ermöglicht die Verwendung von Netzwerkverbindungen innerhalb der chroot-" +#~ "Umgebung" + +#~ msgid "" +#~ "Application will be started during system startup and will run minimized " +#~ "in system tray." +#~ msgstr "" +#~ "Anwendung startet beim Systemstart und wird minimiert im Tray ausgeführt." + +#~ msgid "Chroot: Enable GUI Apps" +#~ msgstr "Chroot: GUI-Apps aktivieren" + +#~ msgid "Chroot: Enable network" +#~ msgstr "Chroot: Netzwerk aktivieren" + +#~ msgid "Close this pane" +#~ msgstr "Schließe diesen Bereich" + +#~ msgid "Flush Read Buffer" +#~ msgstr "Leere Lese Puffer" + +#~ msgid "Flushes the read buffer for device" +#~ msgstr "Leert den Lese Puffer für Laufwerke" + +#~ msgid "Hidden" +#~ msgstr "Versteckt" + +#~ msgid "" +#~ "Minimize to system tray when window is closed instead of exiting the " +#~ "application. Opening another folder will be much faster, as the " +#~ "application would already be running in the background." +#~ msgstr "" +#~ "In die Systemablage minimieren, wenn das Fenster geschlossen wird, " +#~ "anstatt die Anwendung zu beenden. Das Öffnen eines Ordners wird viel " +#~ "schneller sein, da die Anwendung bereits im Hintergrund läuft." + +#~ msgid "Minimize to tray" +#~ msgstr "In die Systemablage minimieren" + +#~ msgid "Not Responding" +#~ msgstr "Reagiert nicht" + +#~ msgid "Run at startup" +#~ msgstr "Beim Start ausführen" + +#, fuzzy +#~ msgid "Second File Not Found" +#~ msgstr "Datei nicht gefunden" + +#~ msgid "Select Extraction Location" +#~ msgstr "Ort zum entpacken wählen" + +#~ msgid "Single click to activate" +#~ msgstr "Einfacher Klick zum aktivieren" + +#~ msgid "Sync Pending Writes" +#~ msgstr "Sync wartende Schreibaufträge" + +#~ msgid "" +#~ "The data transfer seems to have stopped. Check if device is working " +#~ "correctly and if connection with the device is reliable." +#~ msgstr "" +#~ "Der Datentransfer wurde angehalten. Überprüfe die Verbindung und ob das " +#~ "Laufwerk verfügbar ist." + +#~ msgid "Tree navigation" +#~ msgstr "Baum Navigation" + +#~ msgid "Write any data waiting to be written to the device" +#~ msgstr "Schreibe alle Daten SOFORT auf das Laufwerk" + +#~ msgid "You don't have permission to change some permissions" +#~ msgstr "Sie besitzen keine Rechte, um die Berechtigungen zu ändern" + +#~ msgid "Click to mount device and open in active pane" +#~ msgstr "Klicken um das Gerät einzubinden und im aktiven Bereich zu öffnen" + +#~ msgid "Click to open in active pane" +#~ msgstr "Klick zum öffnen im aktiven Fenster" + +#~ msgid "Compare file with file of same name in other pane" +#~ msgstr "Vergleiche die Datei mit der gleichnamigen Datei im anderen Bereich" + #~ msgid "A modern, light-weight file manager for Linux" #~ msgstr "Ein moderner Dateimanager für Linux" @@ -4157,9 +4228,6 @@ #~ msgid "Select Pathbar Style" #~ msgstr "Pathbar Stil auswählen" -#~ msgid "Select files to replace:" -#~ msgstr "Wähle Dateien die ersetzt werden sollen:" - #~ msgid "Show Lock button for encrypted devices" #~ msgstr "Zeige Sperr-Schaltfläche für verschlüsselte Laufwerke" Binary files /tmp/tmpUTjRZD/PZEPzO01X2/polo-file-manager-17.10~28~ubuntu16.04.1/po/polo-fr.mo and /tmp/tmpUTjRZD/q_MGD58HNd/polo-file-manager-18.1~59~ubuntu16.04.1/po/polo-fr.mo differ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/po/polo-fr.po polo-file-manager-18.1~59~ubuntu16.04.1/po/polo-fr.po --- polo-file-manager-17.10~28~ubuntu16.04.1/po/polo-fr.po 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/po/polo-fr.po 2018-01-11 12:49:20.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: polo 1.6\n" "Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-09-17 16:05+0530\n" +"POT-Creation-Date: 2018-01-06 11:13+0530\n" "PO-Revision-Date: 2017-09-17 16:05+0530\n" "Last-Translator: \n" "Language-Team: Clement Bois \n" @@ -18,11 +18,12 @@ "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: Gtk/PropertiesWindow.vala:476 +#: Gtk/PropertiesWindow.vala:506 Gtk/PropertiesWindow.vala:508 +#: Gtk/Sidebar.vala:715 Gtk/Sidebar.vala:717 msgid "(empty)" msgstr "(vide)" -#: Gtk/FileContextMenu.vala:1103 +#: Gtk/FileContextMenu.vala:1150 msgid "..." msgstr "" @@ -73,15 +74,15 @@ "Come back to Polo and click 'Finish' to add the account" msgstr "" -#: Gtk/FileViewToolbar.vala:502 Gtk/MainMenubar.vala:1958 +#: Gtk/FileViewToolbar.vala:498 Gtk/MainMenubar.vala:1957 msgid "About" msgstr "À propos" -#: Gtk/FileViewList.vala:1021 +#: Gtk/FileViewList.vala:1019 msgid "Access" msgstr "Accès" -#: Gtk/PropertiesWindow.vala:322 +#: Gtk/PropertiesWindow.vala:329 msgid "Accessed" msgstr "Accessible" @@ -124,8 +125,8 @@ msgid "Action button" msgstr "" -#: Gtk/PropertiesWindow.vala:1105 Gtk/PropertiesWindow.vala:1159 -#: Gtk/Sidebar.vala:1163 +#: Gtk/PropertiesWindow.vala:1126 Gtk/PropertiesWindow.vala:1172 +#: Gtk/Sidebar.vala:1194 msgid "Actions" msgstr "" @@ -141,23 +142,23 @@ msgid "Add Cloud Storage Account" msgstr "" -#: Gtk/FileContextMenu.vala:2034 Gtk/Settings.vala:2618 +#: Gtk/FileContextMenu.vala:2081 Gtk/Settings.vala:2639 msgid "Add Password" msgstr "" -#: Gtk/Sidebar.vala:522 +#: Gtk/Sidebar.vala:533 msgid "Add bookmark" msgstr "Ajouter aux favoris" -#: Gtk/Sidebar.vala:523 +#: Gtk/Sidebar.vala:534 msgid "Add bookmark for this location" msgstr "Ajouter cette emplacement aux favoris" -#: Gtk/FileContextMenu.vala:727 +#: Gtk/FileContextMenu.vala:729 msgid "Admin Window" msgstr "Fenêtre Administrateur" -#: Gtk/Settings.vala:2250 +#: Gtk/Settings.vala:2271 msgid "Advanced" msgstr "" @@ -165,24 +166,11 @@ msgid "Advanced options" msgstr "Options avancées" -#: Gtk/Settings.vala:2550 -msgid "" -"Allows X-window apps running inside the chroot environment to use the host " -"display" -msgstr "" -"Autoriser l'application X-window à fonctionner dans l'environment chroot en " -"utilisant cet affichage" - -#: Gtk/Settings.vala:2536 -msgid "Allows network connection to be used inside the chroot environment" -msgstr "" -"Autoriser l'utilisation de la connexon reseau dans l'environment chroot" - #: Utility/Shell.vala:61 msgid "Almquist shell (ash)" msgstr "" -#: Gtk/Settings.vala:2509 +#: Gtk/Settings.vala:2530 msgid "Amount of RAM to allocate for guest machine" msgstr "" @@ -190,11 +178,11 @@ msgid "An account exists with this name. Enter a new name for the account." msgstr "" -#: Gtk/FileContextMenu.vala:1560 +#: Gtk/FileContextMenu.vala:1607 msgid "Analyze disk usage" msgstr "Analyser l'utilisation du disque" -#: Gtk/FileViewList.vala:4579 +#: Gtk/FileViewList.vala:4515 msgid "Another file exists with this name" msgstr "Il existe un autre fichier avec le même nom" @@ -202,35 +190,27 @@ msgid "Another instance of this application is running" msgstr "" -#: Common/Main.vala:912 Common/Main.vala:1062 Common/Main.vala:1151 +#: Common/Main.vala:923 Common/Main.vala:1073 Common/Main.vala:1162 msgid "App config loaded" msgstr "Configuration de l'application chargée" -#: Common/Main.vala:725 Common/Main.vala:1029 Common/Main.vala:1107 +#: Common/Main.vala:732 Common/Main.vala:1040 Common/Main.vala:1118 msgid "App config saved" msgstr "Configuration de l'application sauvegardée" -#: Gtk/FileViewToolbar.vala:503 +#: Gtk/FileViewToolbar.vala:499 msgid "Application Info" msgstr "Information de l'application" -#: Gtk/Settings.vala:1496 -msgid "" -"Application will be started during system startup and will run minimized in " -"system tray." -msgstr "" -"L'application va démarrer au lancement du système et rester minimisée dans " -"la zone de notification." - #: Gtk/WizardWindow.vala:129 msgid "Apply" msgstr "" -#: Gtk/PropertiesWindow.vala:932 Gtk/PropertiesWindow.vala:950 +#: Gtk/PropertiesWindow.vala:951 Gtk/PropertiesWindow.vala:969 msgid "Apply recursively to directory contents" msgstr "Appliquer recursivement au contenu du dossier" -#: Gtk/FileContextMenu.vala:1406 +#: Gtk/FileContextMenu.vala:1453 msgid "Archive" msgstr "" @@ -251,11 +231,11 @@ msgid "Authors" msgstr "" -#: Gtk/PropertiesWindow.vala:507 +#: Gtk/PropertiesWindow.vala:540 msgid "Available" msgstr "Disponible" -#: Gtk/FileViewToolbar.vala:155 Gtk/MainMenubar.vala:1255 Gtk/Pathbar.vala:819 +#: Gtk/FileViewToolbar.vala:155 Gtk/MainMenubar.vala:1255 Gtk/Pathbar.vala:797 #: Gtk/Settings.vala:391 Gtk/Settings.vala:777 Utility/Gtk/AboutWindow.vala:344 #: Utility/Gtk/AboutWindow.vala:376 msgid "Back" @@ -293,42 +273,47 @@ msgid "Block Size" msgstr "Taille des blocs" -#: Gtk/PropertiesWindow.vala:242 +#: Gtk/PropertiesWindow.vala:249 msgid "Blocks" msgstr "Blocs" -#: Gtk/FileViewToolbar.vala:288 Gtk/Pathbar.vala:169 Gtk/Settings.vala:544 -#: Gtk/Settings.vala:737 Gtk/Settings.vala:974 Gtk/Sidebar.vala:360 +#: Gtk/PlacesPopover.vala:519 +#, fuzzy +msgid "Bookmark" +msgstr "Favoris" + +#: Gtk/FileViewToolbar.vala:287 Gtk/Pathbar.vala:168 Gtk/Settings.vala:544 +#: Gtk/Settings.vala:737 Gtk/Settings.vala:974 Gtk/Sidebar.vala:362 msgid "Bookmarks" msgstr "Favoris" -#: Gtk/FileContextMenu.vala:2359 Gtk/Settings.vala:2773 +#: Gtk/FileContextMenu.vala:2406 Gtk/Settings.vala:2794 msgid "Boost Color" msgstr "" -#: Gtk/FileContextMenu.vala:2360 +#: Gtk/FileContextMenu.vala:2407 msgid "" "Boost color (more saturation). This can be used for correcting photos that " "are too dull (less color)." msgstr "" -#: Gtk/FileContextMenu.vala:1815 +#: Gtk/FileContextMenu.vala:1862 msgid "Boot Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1633 +#: Gtk/FileContextMenu.vala:1680 msgid "Boot ISO file in QEMU-KVM virtual machine" msgstr "" -#: Gtk/FileContextMenu.vala:1856 +#: Gtk/FileContextMenu.vala:1903 msgid "Boot from an ISO file with the selected disk attached" msgstr "" -#: Gtk/FileContextMenu.vala:1632 +#: Gtk/FileContextMenu.vala:1679 msgid "Boot in VM" msgstr "" -#: Gtk/FileContextMenu.vala:1816 +#: Gtk/FileContextMenu.vala:1863 msgid "Boot the selected disk in a virtual machine" msgstr "" @@ -336,7 +321,7 @@ msgid "Bourne again shell (bash)" msgstr "" -#: Gtk/FileViewList.vala:383 +#: Gtk/FileViewList.vala:381 #, c-format msgid "Broken" msgstr "" @@ -350,19 +335,19 @@ msgid "C shell (csh)" msgstr "" -#: Gtk/Settings.vala:2338 +#: Gtk/Settings.vala:2359 msgid "CPU" msgstr "" -#: Gtk/Settings.vala:2439 +#: Gtk/Settings.vala:2460 msgid "CPU Cores" msgstr "" -#: Gtk/Settings.vala:2467 +#: Gtk/Settings.vala:2488 msgid "CPU Limit (%)" msgstr "" -#: Gtk/Settings.vala:2376 +#: Gtk/Settings.vala:2397 msgid "CPU type to emulate for guest machine" msgstr "" @@ -370,7 +355,7 @@ msgid "Calculate directory sizes" msgstr "Calculer la taille du dossier" -#: Gtk/FileViewList.vala:2849 +#: Gtk/FileViewList.vala:2784 msgid "Calculating dir size..." msgstr "" @@ -384,11 +369,11 @@ #: Gtk/ProgressPanelVideoDownloadTask.vala:231 #: Gtk/ProgressPanelVideoDownloadTask.vala:399 #: Gtk/SimpleProgressWindow.vala:139 Utility/Gtk/CustomMessageDialog.vala:172 -#: Utility/Gtk/GtkHelper.vala:140 +#: Utility/Gtk/GtkHelper.vala:154 msgid "Cancel" msgstr "Annuler" -#: Gtk/FileViewTab.vala:393 Gtk/LayoutBox.vala:508 Gtk/MainWindow.vala:159 +#: Gtk/FileViewTab.vala:458 Gtk/LayoutBox.vala:508 Gtk/MainWindow.vala:158 msgid "Cancel File Operations?" msgstr "Annuler les operation?" @@ -400,19 +385,19 @@ msgid "Cancelled" msgstr "" -#: Gtk/ProgressPanelArchiveTask.vala:838 Gtk/ProgressPanelArchiveTask.vala:865 +#: Gtk/ProgressPanelArchiveTask.vala:865 msgid "Cancelled by user" msgstr "Annulé par l'utilisateur" -#: Gtk/FileViewList.vala:6042 +#: Gtk/FileViewList.vala:6068 msgid "Cannot create archive in this location" msgstr "Impossible de creer une archive à cet emplacement" -#: Gtk/FileViewList.vala:5882 +#: Gtk/FileViewList.vala:5908 msgid "Cannot extract to this location" msgstr "Impossible d'extraire vers cet emplacement" -#: Gtk/FileViewToolbar.vala:463 Gtk/MainHeaderBar.vala:273 +#: Gtk/FileViewToolbar.vala:459 Gtk/MainHeaderBar.vala:273 msgid "Change Application Settings" msgstr "Modifier les paramètres de l'application" @@ -420,7 +405,7 @@ msgid "Change Directory" msgstr "Changer de dossier" -#: Gtk/Settings.vala:1883 Gtk/Settings.vala:2084 +#: Gtk/Settings.vala:1904 Gtk/Settings.vala:2105 msgid "Change column spacing" msgstr "Changer l'espacement des colonnes" @@ -428,19 +413,19 @@ msgid "Change directory to current path" msgstr "Changer de dossier vers le emplacement actuel" -#: Gtk/Settings.vala:1621 +#: Gtk/Settings.vala:1642 msgid "Change font size" msgstr "Changer la taille de la police" -#: Gtk/Settings.vala:1655 Gtk/Settings.vala:1810 Gtk/Settings.vala:2011 +#: Gtk/Settings.vala:1676 Gtk/Settings.vala:1831 Gtk/Settings.vala:2032 msgid "Change icon size" msgstr "Changer la taille des icones" -#: Gtk/Settings.vala:1698 Gtk/Settings.vala:1848 Gtk/Settings.vala:2049 +#: Gtk/Settings.vala:1719 Gtk/Settings.vala:1869 Gtk/Settings.vala:2070 msgid "Change row spacing" msgstr "Changer l'espacement des lignes" -#: Gtk/PropertiesWindow.vala:336 +#: Gtk/PropertiesWindow.vala:343 msgid "Changed" msgstr "Changé" @@ -475,7 +460,7 @@ msgid "Check external tools" msgstr "Vérifier les outis externes" -#: Gtk/FileViewList.vala:2336 +#: Gtk/FileViewList.vala:2350 msgid "Check if internet connection is active" msgstr "" @@ -483,14 +468,6 @@ msgid "Chroot" msgstr "Chroot" -#: Gtk/Settings.vala:2547 -msgid "Chroot: Enable GUI Apps" -msgstr "Chroot: Activer les applications graphiques" - -#: Gtk/Settings.vala:2533 -msgid "Chroot: Enable network" -msgstr "Chroot: Activer le réseau" - #: Gtk/CreateArchiveWindow.vala:1814 msgid "Cipher" msgstr "Chiffrement" @@ -531,25 +508,22 @@ msgid "Click 'Finish' to add the account" msgstr "" -#: Gtk/Pathbar.vala:331 -msgid "Click to edit path" -msgstr "Cliquer pour modifier l'emplacement" - -#: Gtk/Sidebar.vala:727 -msgid "Click to mount device and open in active pane" -msgstr "Cliquer pour monter l'appareil et l'ouvrir dans le volet actif" - -#: Gtk/Sidebar.vala:724 -msgid "Click to open in active pane" -msgstr "Cliquer pour ouvrir dans le volet actif" +#: Gtk/PlacesPopover.vala:420 +#, fuzzy +msgid "Click to Remove" +msgstr "Cliquer pour selectionner" -#: Gtk/WizardWindow.vala:305 -msgid "Click to select" +#: Gtk/PlacesPopover.vala:424 +#, fuzzy +msgid "Click to Rename" msgstr "Cliquer pour selectionner" -#: Gtk/FileViewTab.vala:289 Gtk/MessageBar.vala:149 Gtk/SelectionBar.vala:167 -#: Gtk/Settings.vala:897 Gtk/WizardWindow.vala:143 -#: Utility/Gtk/AboutWindow.vala:401 +#: Gtk/Pathbar.vala:309 +msgid "Click to edit path" +msgstr "Cliquer pour modifier l'emplacement" + +#: Gtk/FileViewTab.vala:327 Gtk/MessageBar.vala:149 Gtk/SelectionBar.vala:172 +#: Gtk/WizardWindow.vala:143 Utility/Gtk/AboutWindow.vala:401 msgid "Close" msgstr "Fermer" @@ -561,15 +535,11 @@ msgid "Close button (R)" msgstr "" -#: Gtk/Pathbar.vala:986 -msgid "Close this pane" -msgstr "Fermer ce volet" - #: Gtk/MainHeaderBar.vala:321 Gtk/ProgressPanelArchiveTask.vala:515 msgid "Close this window" msgstr "Fermer cette fenêtre" -#: Gtk/MainWindow.vala:160 +#: Gtk/MainWindow.vala:159 msgid "" "Closing the application will cancel running file operations.\n" "Do you want to cancel?" @@ -577,7 +547,7 @@ "Fermer cette application va annuler l'opération en cours.\n" "Voulez vous annuler?" -#: Gtk/FileViewTab.vala:394 +#: Gtk/FileViewTab.vala:459 msgid "" "Closing this pane will cancel file operations running in this pane.\n" "Do you want to cancel?" @@ -601,11 +571,11 @@ msgid "Code Contributions" msgstr "" -#: Gtk/Settings.vala:1876 +#: Gtk/Settings.vala:1897 msgid "Col spacing" msgstr "Espacement des colonnes" -#: Gtk/Settings.vala:2215 +#: Gtk/Settings.vala:2236 msgid "Columns" msgstr "" @@ -617,28 +587,33 @@ msgid "Commander List (Dual-Pane + ListView)" msgstr "" -#: Common/Main.vala:487 +#: Common/Main.vala:489 msgid "Commands listed below are not available on this system" msgstr "Les commandes listées plus bas ne sont pas disponible sur ce système" -#: Gtk/FileContextMenu.vala:1078 +#: Gtk/FileContextMenu.vala:1082 msgid "Compare" msgstr "Comparer" -#: Gtk/FileContextMenu.vala:1079 -msgid "Compare file with file of same name in other pane" -msgstr "Comparer le fichier avec celui du même nom dans l'autre volet" +#: Gtk/FileContextMenu.vala:1113 +#, fuzzy +msgid "Compare text file with file in opposite pane" +msgstr "Impossible de trouver le volet opposé" + +#: Gtk/FileContextMenu.vala:1083 +msgid "Compare text files side-by-side" +msgstr "" #: Utility/FileTask.vala:287 msgid "Comparing items..." msgstr "" #: Gtk/CreateArchiveWindow.vala:115 Gtk/CreateArchiveWindow.vala:2036 -#: Gtk/FileContextMenu.vala:1438 +#: Gtk/FileContextMenu.vala:1485 msgid "Compress" msgstr "Compresser" -#: Gtk/FileContextMenu.vala:1439 +#: Gtk/FileContextMenu.vala:1486 msgid "Compress selected items and create new archive" msgstr "Compresser la selection et creer une nouvelle archive" @@ -654,11 +629,11 @@ msgid "Confirm Passphrase" msgstr "Confirmer le mot de passe" -#: Gtk/Settings.vala:1507 +#: Gtk/Settings.vala:1514 msgid "Confirm before deleting files" msgstr "Confirmer avant la suppression des fichiers" -#: Gtk/Settings.vala:1519 +#: Gtk/Settings.vala:1526 msgid "Confirm before trashing files" msgstr "Confirmer avant la mise à la corbeille des fichiers" @@ -670,7 +645,7 @@ msgid "Connect" msgstr "" -#: Gtk/FileContextMenu.vala:1700 +#: Gtk/FileContextMenu.vala:1747 msgid "Connect a USB device and come back to this menu" msgstr "" @@ -686,15 +661,15 @@ msgid "Connecting to Server..." msgstr "" -#: Gtk/FileViewList.vala:1064 +#: Gtk/FileViewList.vala:1062 msgid "Content Type" msgstr "Type" -#: Gtk/PropertiesWindow.vala:203 +#: Gtk/PropertiesWindow.vala:210 msgid "Contents" msgstr "Contenus" -#: Gtk/Settings.vala:2745 +#: Gtk/Settings.vala:2766 msgid "Convert" msgstr "" @@ -702,15 +677,15 @@ msgid "Convert Virtual Disk" msgstr "" -#: Gtk/FileContextMenu.vala:2476 +#: Gtk/FileContextMenu.vala:2523 msgid "Convert to" msgstr "" -#: Gtk/FileContextMenu.vala:2304 +#: Gtk/FileContextMenu.vala:2351 msgid "Convert to black and white" msgstr "" -#: Gtk/FileContextMenu.vala:1877 +#: Gtk/FileContextMenu.vala:1924 msgid "Convert to..." msgstr "" @@ -731,7 +706,7 @@ "Copy selected items in active pane" msgstr "" -#: Gtk/FileContextMenu.vala:1193 +#: Gtk/FileContextMenu.vala:1240 msgid "Copy Across" msgstr "Copier à travers" @@ -742,15 +717,15 @@ "Copy selected items in active pane to opposite pane" msgstr "" -#: Gtk/FileContextMenu.vala:1359 +#: Gtk/FileContextMenu.vala:1406 msgid "Copy Path(s)" msgstr "Copier l'emplacement" -#: Gtk/FileContextMenu.vala:1153 +#: Gtk/FileContextMenu.vala:1200 msgid "Copy To..." msgstr "Copier vers..." -#: Gtk/FileContextMenu.vala:1360 +#: Gtk/FileContextMenu.vala:1407 msgid "Copy file path to clipboard" msgstr "Copier l'emplacement dans le presse-papier" @@ -762,11 +737,11 @@ msgid "Copy selected text to clipboard" msgstr "Copier le texte dans le presse-papier" -#: Gtk/FileContextMenu.vala:1154 +#: Gtk/FileContextMenu.vala:1201 msgid "Copy to another location" msgstr "Copier vers un autre emplacement" -#: Gtk/FileContextMenu.vala:1194 +#: Gtk/FileContextMenu.vala:1241 msgid "Copy to other pane" msgstr "Copier vers un autre volet" @@ -787,24 +762,34 @@ msgid "Copying..." msgstr "" -#: Utility/Device.vala:1691 +#: Gtk/PlacesPopover.vala:477 +#, fuzzy, c-format +msgid "Could not find bookmarked path" +msgstr "Impossible de trouver l'emplacement" + +#: Utility/Device.vala:1707 #, c-format msgid "Could not find file" msgstr "" -#: Gtk/FileViewList.vala:3366 +#: Gtk/FileViewList.vala:4941 +#, fuzzy, c-format +msgid "Could not find file in opposite pane" +msgstr "Impossible de trouver le volet opposé" + +#: Gtk/FileViewList.vala:3301 msgid "Could not find path" msgstr "Impossible de trouver l'emplacement" -#: Gtk/FileViewList.vala:4302 +#: Gtk/FileViewList.vala:4241 msgid "Could not find the opposite pane!" msgstr "Impossible de trouver le volet opposé" -#: Gtk/FileViewList.vala:5835 +#: Gtk/FileViewList.vala:5861 msgid "Could not open file as archive" msgstr "" -#: Gtk/FileViewList.vala:2775 +#: Gtk/FileViewList.vala:2708 msgid "Counting items..." msgstr "" @@ -816,23 +801,23 @@ msgid "Create Derived Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1775 +#: Gtk/FileContextMenu.vala:1822 msgid "Create Derived Disk..." msgstr "" -#: Gtk/FileViewList.vala:4624 +#: Gtk/FileViewList.vala:4560 msgid "Create Directory" msgstr "Creer un dossier" -#: Gtk/FileContextMenu.vala:1758 +#: Gtk/FileContextMenu.vala:1805 msgid "Create Disk..." msgstr "" -#: Gtk/FileViewList.vala:4658 Gtk/FileViewList.vala:4694 +#: Gtk/FileViewList.vala:4594 Gtk/FileViewList.vala:4630 msgid "Create File" msgstr "Creer un fichier" -#: Gtk/FileContextMenu.vala:1795 +#: Gtk/FileContextMenu.vala:1842 msgid "Create Merged Disk..." msgstr "" @@ -848,44 +833,44 @@ msgid "Create Virtual Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1759 +#: Gtk/FileContextMenu.vala:1806 msgid "Create a virtual hard disk file" msgstr "" -#: Gtk/FileContextMenu.vala:1796 +#: Gtk/FileContextMenu.vala:1843 msgid "" "Create a virtual hard disk file by merging selected derived disk with it's " "base" msgstr "" -#: Gtk/FileContextMenu.vala:1776 +#: Gtk/FileContextMenu.vala:1823 msgid "Create a virtual hard disk file that uses selected disk as the base" msgstr "" -#: Gtk/FileViewList.vala:4429 +#: Gtk/FileViewList.vala:4368 msgid "Create copies of selected items?" msgstr "Creer une copie de la selection?" -#: Gtk/FileContextMenu.vala:775 +#: Gtk/FileContextMenu.vala:777 msgid "Create new file from template" msgstr "Creer un fichier depuis un modèle" -#: Gtk/FileContextMenu.vala:649 +#: Gtk/FileContextMenu.vala:651 msgid "Create new file in this location" msgstr "Creer un ficher à cet emplacement" -#: Gtk/FileContextMenu.vala:629 +#: Gtk/FileContextMenu.vala:631 msgid "Create new folder in this location" msgstr "Creer un dossier à cette emplacement" #: Gtk/KvmCreateDiskWindow.vala:463 Gtk/ProgressPanelArchiveTask.vala:752 #: Gtk/ProgressPanelImageTask.vala:207 Gtk/ProgressPanelKvmTask.vala:258 -#: Gtk/PropertiesWindow.vala:304 +#: Gtk/PropertiesWindow.vala:311 #, c-format msgid "Created" msgstr "Crée" -#: Utility/TeeJee.FileSystem.vala:664 +#: Utility/TeeJee.FileSystem.vala:744 msgid "Created directory" msgstr "" @@ -948,7 +933,7 @@ msgid "Default shell (sh)" msgstr "" -#: Gtk/Settings.vala:1238 +#: Gtk/Settings.vala:1245 msgid "Default view mode to use for new panes" msgstr "Vue par defaut pour les nouveaux volets" @@ -971,11 +956,11 @@ msgid "Delete selected items permanently" msgstr "Supprimer la selection définitivement" -#: Gtk/FileViewList.vala:4506 +#: Gtk/FileViewList.vala:4445 msgid "Delete selected items?" msgstr "Supprimer la selection?" -#: Utility/TeeJee.FileSystem.vala:702 +#: Utility/TeeJee.FileSystem.vala:782 msgid "Deleted directory" msgstr "" @@ -994,15 +979,15 @@ "required" msgstr "" -#: Gtk/Sidebar.vala:344 +#: Gtk/PlacesPopover.vala:628 Gtk/Sidebar.vala:346 msgid "Desktop" msgstr "Bureau" -#: Gtk/FileViewList.vala:5882 Gtk/FileViewList.vala:5904 +#: Gtk/FileViewList.vala:5908 Gtk/FileViewList.vala:5930 msgid "Destination directory does not exist" msgstr "Le dossier de destination n'existe pas" -#: Gtk/FileViewList.vala:6042 +#: Gtk/FileViewList.vala:6068 msgid "Destination path is inside an archive (!)" msgstr "L'emplacement de destination est dans l'archive (!)" @@ -1010,28 +995,28 @@ msgid "Details" msgstr "Détails" -#: Gtk/PropertiesWindow.vala:468 Utility/Device.vala:362 -#: Utility/Device.vala:369 Utility/Device.vala:505 Utility/Device.vala:510 -#: Utility/Device.vala:554 Utility/Device.vala:1672 Utility/Device.vala:1678 -#: Utility/Device.vala:1871 Utility/Device.vala:1876 Utility/Device.vala:1903 -#: Utility/Device.vala:2396 Utility/Device.vala:2406 Utility/KvmTask.vala:314 +#: Gtk/PropertiesWindow.vala:498 Gtk/Sidebar.vala:707 Utility/Device.vala:370 +#: Utility/Device.vala:377 Utility/Device.vala:513 Utility/Device.vala:518 +#: Utility/Device.vala:562 Utility/Device.vala:1688 Utility/Device.vala:1694 +#: Utility/Device.vala:1893 Utility/Device.vala:1898 Utility/Device.vala:1925 +#: Utility/Device.vala:2418 Utility/Device.vala:2428 Utility/KvmTask.vala:314 #, c-format msgid "Device" msgstr "Appareil" -#: Gtk/DeviceContextMenu.vala:502 +#: Gtk/DeviceContextMenu.vala:546 msgid "Device Locked" msgstr "Appareil verrouillé" -#: Gtk/DeviceContextMenu.vala:422 +#: Gtk/DeviceContextMenu.vala:466 msgid "Device Unmounted" msgstr "Appareil démonté" -#: Utility/Device.vala:361 Utility/Device.vala:1671 +#: Utility/Device.vala:369 Utility/Device.vala:1687 msgid "Device mounted successfully" msgstr "" -#: Utility/Device.vala:1725 +#: Utility/Device.vala:1747 msgid "Device name is empty!" msgstr "" @@ -1039,12 +1024,12 @@ msgid "Device safely ejected and ready for use" msgstr "" -#: Gtk/FileViewList.vala:3358 +#: Gtk/FileViewList.vala:3293 msgid "Device was unmounted" msgstr "L'appareil n'est pas monter" -#: Gtk/FileViewToolbar.vala:316 Gtk/Pathbar.vala:215 Gtk/Settings.vala:561 -#: Gtk/Settings.vala:757 Gtk/Settings.vala:992 Gtk/Sidebar.vala:379 +#: Gtk/FileViewToolbar.vala:312 Gtk/Pathbar.vala:201 Gtk/Settings.vala:561 +#: Gtk/Settings.vala:757 Gtk/Settings.vala:992 Gtk/Sidebar.vala:381 msgid "Devices" msgstr "Appreils" @@ -1068,19 +1053,24 @@ "Tony George" msgstr "" -#: Utility/TeeJee.FileSystem.vala:840 +#: Utility/TeeJee.FileSystem.vala:920 msgid "Dir not found" msgstr "" -#: Gtk/FileViewList.vala:4632 +#: Gtk/FileViewList.vala:4568 msgid "Directory exists" msgstr "Le dossier existe" -#: Gtk/FileContextMenu.vala:1559 +#: Gtk/FileContextMenu.vala:1628 +#, fuzzy +msgid "Disk Image" +msgstr "Utilisation du disque" + +#: Gtk/FileContextMenu.vala:1606 msgid "Disk Usage" msgstr "Utilisation du disque" -#: Gtk/FileViewList.vala:5123 +#: Gtk/FileViewList.vala:5141 msgid "Disk is Read-Only" msgstr "" @@ -1095,7 +1085,7 @@ msgid "Documentation" msgstr "" -#: Gtk/Sidebar.vala:339 +#: Gtk/PlacesPopover.vala:623 Gtk/Sidebar.vala:341 msgid "Documents" msgstr "Documents" @@ -1103,7 +1093,7 @@ msgid "Domain" msgstr "" -#: Gtk/FileViewToolbar.vala:482 Gtk/MainMenubar.vala:1948 +#: Gtk/FileViewToolbar.vala:478 Gtk/MainMenubar.vala:1947 #: Utility/Gtk/DonationWindow.vala:40 msgid "Donate" msgstr "Donner" @@ -1152,16 +1142,20 @@ msgid "Downloading items..." msgstr "" -#: Gtk/Sidebar.vala:340 +#: Gtk/PlacesPopover.vala:624 Gtk/Sidebar.vala:342 msgid "Downloads" msgstr "Téléchargement" -#: Gtk/Settings.vala:1787 Gtk/Settings.vala:1973 Gtk/Settings.vala:2174 +#: Gtk/PlacesPopover.vala:417 +msgid "Drag to Re-order" +msgstr "" + +#: Gtk/Settings.vala:1808 Gtk/Settings.vala:1994 Gtk/Settings.vala:2195 msgid "Draw semi-transparent icons and thumbnails for hidden items" msgstr "" "Dessiner des icones et miniatures transparentes pour les fichiers cachées" -#: Gtk/Settings.vala:1757 Gtk/Settings.vala:1943 Gtk/Settings.vala:2144 +#: Gtk/Settings.vala:1778 Gtk/Settings.vala:1964 Gtk/Settings.vala:2165 msgid "" "Draw tiny emblems on the icon or thumbnail image to indicate folder " "contents, symlinks and read-only permissions.\n" @@ -1173,11 +1167,11 @@ "\n" "Désactiver pour un chargement plus rapide des dossiers." -#: Gtk/Settings.vala:510 Gtk/ViewPopover.vala:216 +#: Gtk/ViewPopover.vala:216 msgid "Dual" msgstr "Double" -#: Gtk/FileViewToolbar.vala:364 +#: Gtk/FileViewToolbar.vala:360 msgid "Dual Horizontal" msgstr "Double Horizontal" @@ -1185,7 +1179,7 @@ msgid "Dual Pane Mode" msgstr "Mode Volet Double" -#: Gtk/FileViewToolbar.vala:354 +#: Gtk/FileViewToolbar.vala:350 msgid "Dual Vertical" msgstr "Double Vertical" @@ -1193,54 +1187,39 @@ msgid "Duration" msgstr "" -#: Utility/TeeJee.Logging.vala:93 -msgid "E" -msgstr "" - -#: Gtk/MainMenubar.vala:481 +#: Gtk/MainMenubar.vala:481 Gtk/PlacesPopover.vala:529 msgid "Edit" msgstr "Modifier" -#: Gtk/FileViewTab.vala:255 -msgid "Edit Tab Name" +#: Gtk/FileViewTab.vala:259 +#, fuzzy +msgid "Edit Name" msgstr "Renommer l'onglet" -#: Gtk/FileViewList.vala:395 +#: Gtk/FileViewList.vala:393 #, c-format msgid "Effective permissions for current user" msgstr "Permissions effectives pour l'utilisation courant" -#: Gtk/DeviceContextMenu.vala:221 -msgid "Eject" -msgstr "" - -#: Gtk/Sidebar.vala:1190 -msgid "Eject Device" -msgstr "" - -#: Gtk/DeviceContextMenu.vala:525 +#: Gtk/DeviceContextMenu.vala:569 msgid "Eject Disk ?" msgstr "" -#: Gtk/DeviceContextMenu.vala:222 -msgid "Eject the device so that it can be removed safely" -msgstr "" - #: Gtk/ProgressPanelArchiveTask.vala:162 msgid "Elapsed:" msgstr "Ecoulé:" -#: Gtk/Settings.vala:1985 +#: Gtk/Settings.vala:2006 msgid "Ellipsize file name" msgstr "" -#: Gtk/Settings.vala:1988 +#: Gtk/Settings.vala:2009 msgid "" "Ellipsize long file names with 3 dots. Uncheck this option to display entire " "file name." msgstr "" -#: Gtk/Settings.vala:1754 Gtk/Settings.vala:1940 Gtk/Settings.vala:2141 +#: Gtk/Settings.vala:1775 Gtk/Settings.vala:1961 Gtk/Settings.vala:2162 msgid "Emblems" msgstr "Emblèmes" @@ -1272,11 +1251,11 @@ msgid "Encrypt file names" msgstr "Crypter les noms de fichiers" -#: Gtk/PropertiesWindow.vala:231 +#: Gtk/PropertiesWindow.vala:238 msgid "Encrypted" msgstr "Cryptées" -#: Utility/Device.vala:1827 +#: Utility/Device.vala:1849 msgid "Encrypted Device" msgstr "" @@ -1285,7 +1264,7 @@ msgid "Encrypted archive" msgstr "Archive cryptée" -#: Utility/Device.vala:523 +#: Utility/Device.vala:531 #, c-format msgid "Encrypted device" msgstr "" @@ -1306,37 +1285,37 @@ msgid "Enter Password" msgstr "Entrer le mot de passe" -#: Utility/Device.vala:525 Utility/FileItemArchive.vala:364 +#: Utility/Device.vala:533 Utility/FileItemArchive.vala:364 msgid "Enter Password to Unlock" msgstr "" -#: Gtk/FileViewList.vala:4632 Gtk/FileViewList.vala:4666 -#: Gtk/FileViewList.vala:4706 +#: Gtk/FileViewList.vala:4568 Gtk/FileViewList.vala:4602 +#: Gtk/FileViewList.vala:4642 msgid "Enter another name" msgstr "Entrer un autre nom" -#: Gtk/FileViewList.vala:4624 +#: Gtk/FileViewList.vala:4560 msgid "Enter directory name" msgstr "Entrer un nom de dossier" -#: Gtk/FileViewList.vala:4658 Gtk/FileViewList.vala:4694 +#: Gtk/FileViewList.vala:4594 Gtk/FileViewList.vala:4630 msgid "Enter file name" msgstr "Entrer un nom de fichier" -#: Gtk/FileViewList.vala:4560 +#: Gtk/FileViewList.vala:4496 msgid "Enter new name" msgstr "Entrer un nouveau nom" -#: Utility/Device.vala:1828 +#: Utility/Device.vala:1850 #, c-format msgid "Enter passphrase to unlock '%s'" msgstr "" -#: Gtk/FileViewList.vala:5376 +#: Gtk/FileViewList.vala:5394 msgid "Enter password for PDF document" msgstr "" -#: Utility/Gtk/GtkHelper.vala:1226 +#: Utility/Gtk/GtkHelper.vala:948 msgid "Enter path or browse for directory" msgstr "" @@ -1348,24 +1327,24 @@ msgid "Enter share name to connect (Required)" msgstr "" -#: Gtk/FileViewList.vala:4579 +#: Gtk/FileViewList.vala:4515 msgid "Enter unique name for selected file" msgstr "Entrer un nom unique pour la selection" #: Gtk/ProgressPanelArchiveTask.vala:771 Gtk/ProgressPanelArchiveTask.vala:782 #: Gtk/ProgressPanelImageTask.vala:198 Gtk/ProgressPanelKvmTask.vala:217 #: Gtk/ProgressPanelKvmTask.vala:220 Gtk/ProgressPanelPdfTask.vala:198 -#: Utility/Device.vala:1654 Utility/KvmTask.vala:311 +#: Utility/Device.vala:1670 Utility/KvmTask.vala:311 #: Utility/Gtk/GtkHelper.vala:18 #, c-format msgid "Error" msgstr "Erreur" -#: Gtk/FileViewList.vala:2335 +#: Gtk/FileViewList.vala:2349 msgid "Error Connecting to Server" msgstr "" -#: Gtk/FileViewList.vala:3383 +#: Gtk/FileViewList.vala:3318 #, c-format msgid "Error opening directory: Permission denied" msgstr "" @@ -1374,8 +1353,8 @@ msgid "Example: 192.0.2.1" msgstr "" -#: Gtk/PropertiesWindow.vala:632 Gtk/PropertiesWindow.vala:638 -#: Gtk/PropertiesWindow.vala:644 +#: Gtk/PropertiesWindow.vala:672 Gtk/PropertiesWindow.vala:678 +#: Gtk/PropertiesWindow.vala:684 msgid "Execute" msgstr "Executer" @@ -1383,7 +1362,7 @@ msgid "Executing action..." msgstr "" -#: Gtk/FileViewList.vala:5060 +#: Gtk/FileViewList.vala:5078 #, c-format msgid "Existing data on device will be destroyed" msgstr "" @@ -1392,7 +1371,7 @@ msgid "Exit" msgstr "Quitter" -#: Common/Main.vala:1202 +#: Common/Main.vala:1213 msgid "Exiting Application" msgstr "Quitter l'application" @@ -1404,30 +1383,30 @@ msgid "External tools" msgstr "Outils externes" -#: Gtk/FileContextMenu.vala:1506 +#: Gtk/FileContextMenu.vala:1553 msgid "Extract Across" msgstr "Extraire à travers" -#: Gtk/FileContextMenu.vala:1531 +#: Gtk/FileContextMenu.vala:1578 msgid "Extract Here" msgstr "Extraire ici" -#: Gtk/FileContextMenu.vala:1483 +#: Gtk/FileContextMenu.vala:1530 msgid "Extract To.." msgstr "Extraire vers..." -#: Gtk/FileContextMenu.vala:1532 +#: Gtk/FileContextMenu.vala:1579 msgid "" "Extract archives in same location. New folder will be created with archive " "name." msgstr "" -#: Gtk/FileContextMenu.vala:1484 +#: Gtk/FileContextMenu.vala:1531 msgid "" "Extract archives to another location. Existing files will be overwritten." msgstr "" -#: Gtk/FileContextMenu.vala:1507 +#: Gtk/FileContextMenu.vala:1554 msgid "" "Extract archives to the opposite pane. Existing files will be overwritten." msgstr "" @@ -1456,77 +1435,77 @@ msgid "Failed to Remove Account" msgstr "" -#: Utility/TeeJee.FileSystem.vala:1166 +#: Utility/TeeJee.FileSystem.vala:1246 msgid "Failed to change owner/group!" msgstr "" -#: Utility/TeeJee.FileSystem.vala:360 +#: Utility/TeeJee.FileSystem.vala:440 msgid "Failed to copy file" msgstr "" -#: Utility/TeeJee.FileSystem.vala:674 +#: Utility/TeeJee.FileSystem.vala:754 msgid "Failed to create directory" msgstr "" -#: Utility/TeeJee.FileSystem.vala:560 +#: Utility/TeeJee.FileSystem.vala:640 msgid "Failed to create hard link" msgstr "" -#: Utility/TeeJee.FileSystem.vala:537 +#: Utility/TeeJee.FileSystem.vala:617 msgid "Failed to create symlink" msgstr "" -#: Utility/TeeJee.FileSystem.vala:186 Utility/TeeJee.FileSystem.vala:234 +#: Utility/TeeJee.FileSystem.vala:266 Utility/TeeJee.FileSystem.vala:314 msgid "Failed to delete items" msgstr "" -#: Utility/Device.vala:1285 +#: Utility/Device.vala:1295 msgid "Failed to get partition list" msgstr "" -#: Utility/Device.vala:553 Utility/Device.vala:1902 +#: Utility/Device.vala:561 Utility/Device.vala:1924 msgid "Failed to lock device" msgstr "" -#: Utility/Device.vala:368 Utility/Device.vala:1677 +#: Utility/Device.vala:376 Utility/Device.vala:1693 msgid "Failed to mount device" msgstr "" -#: Utility/TeeJee.FileSystem.vala:379 +#: Utility/TeeJee.FileSystem.vala:459 msgid "Failed to move file" msgstr "" -#: Utility/TeeJee.FileSystem.vala:255 +#: Utility/TeeJee.FileSystem.vala:335 msgid "Failed to move items to trash" msgstr "" -#: Utility/TeeJee.FileSystem.vala:296 +#: Utility/TeeJee.FileSystem.vala:376 msgid "Failed to read file" msgstr "" -#: Utility/TeeJee.FileSystem.vala:441 +#: Utility/TeeJee.FileSystem.vala:521 msgid "Failed to rename item" msgstr "" -#: Utility/TeeJee.FileSystem.vala:1128 +#: Utility/TeeJee.FileSystem.vala:1208 msgid "Failed to set permissions!" msgstr "" -#: Utility/TeeJee.FileSystem.vala:212 +#: Utility/TeeJee.FileSystem.vala:292 msgid "Failed to trash items" msgstr "" -#: Utility/Device.vala:447 Utility/Device.vala:469 Utility/Device.vala:489 -#: Utility/Device.vala:504 Utility/Device.vala:1810 Utility/Device.vala:1833 -#: Utility/Device.vala:1854 Utility/Device.vala:1870 +#: Utility/Device.vala:455 Utility/Device.vala:477 Utility/Device.vala:497 +#: Utility/Device.vala:512 Utility/Device.vala:1832 Utility/Device.vala:1855 +#: Utility/Device.vala:1876 Utility/Device.vala:1892 msgid "Failed to unlock device" msgstr "" -#: Utility/Device.vala:2110 +#: Utility/Device.vala:2132 msgid "Failed to unmount" msgstr "" -#: Utility/TeeJee.FileSystem.vala:342 +#: Utility/TeeJee.FileSystem.vala:422 msgid "Failed to write file" msgstr "" @@ -1543,7 +1522,7 @@ msgid "Fetching info..." msgstr "" -#: Gtk/FileContextMenu.vala:648 Gtk/KvmCreateDiskWindow.vala:428 +#: Gtk/FileContextMenu.vala:650 Gtk/KvmCreateDiskWindow.vala:428 #: Gtk/MainMenubar.vala:123 Gtk/ProgressPanelImageTask.vala:156 #: Gtk/ProgressPanelKvmTask.vala:203 Gtk/ProgressPanelPdfTask.vala:156 #: Gtk/ProgressPanelUsbWriterTask.vala:162 @@ -1555,7 +1534,7 @@ msgid "File Conflict" msgstr "Conflit de ficher" -#: Gtk/Settings.vala:1352 +#: Gtk/Settings.vala:1359 msgid "File Manager" msgstr "" @@ -1563,11 +1542,16 @@ msgid "File Name" msgstr "" -#: Gtk/FileViewList.vala:4666 Gtk/FileViewList.vala:4706 +#: Gtk/FileViewList.vala:4940 +#, fuzzy +msgid "File Not Found" +msgstr "Fichier introuvable" + +#: Gtk/FileViewList.vala:4602 Gtk/FileViewList.vala:4642 msgid "File exists" msgstr "Le fichier existe" -#: Utility/TeeJee.FileSystem.vala:992 Utility/TeeJee.FileSystem.vala:1041 +#: Utility/TeeJee.FileSystem.vala:1072 Utility/TeeJee.FileSystem.vala:1121 msgid "File is missing" msgstr "" @@ -1576,17 +1560,17 @@ msgstr "Le fichier n'est pas une archive ou son format n'est pas supporté" #: Gtk/PoloGtk.vala:106 Utility/GtkBookmark.vala:122 Utility/MimeTypes.vala:88 -#: Utility/RsyncTask.vala:288 Utility/TeeJee.FileSystem.vala:374 -#: Utility/TeeJee.FileSystem.vala:869 Utility/XdgUserDirectories.vala:143 +#: Utility/RsyncTask.vala:288 Utility/TeeJee.FileSystem.vala:454 +#: Utility/TeeJee.FileSystem.vala:949 Utility/XdgUserDirectories.vala:143 msgid "File not found" msgstr "Fichier introuvable" -#: Gtk/FileViewList.vala:402 +#: Gtk/FileViewList.vala:400 #, c-format msgid "File type" msgstr "Type" -#: Gtk/PropertiesWindow.vala:697 +#: Gtk/PropertiesWindow.vala:716 msgid "" "File will be executed with the priviledges of the file's group instead of " "priviledges of user who is executing the file.\n" @@ -1600,7 +1584,7 @@ "Utile pour les fichiers executables. Autorise tous ceux qui ont les " "permissions sur le fichier, de l'executer avec les privilèges du groupe." -#: Gtk/PropertiesWindow.vala:694 +#: Gtk/PropertiesWindow.vala:713 msgid "" "File will be executed with the priviledges of the file's owner instead of " "priviledges of user who is executing the file.\n" @@ -1618,17 +1602,18 @@ msgid "Files:" msgstr "Fichers:" -#: Gtk/PropertiesWindow.vala:450 Gtk/PropertiesWindow.vala:478 -#: Gtk/Sidebar.vala:337 Utility/Device.vala:2414 +#: Gtk/PlacesPopover.vala:621 Gtk/PropertiesWindow.vala:472 +#: Gtk/PropertiesWindow.vala:510 Gtk/Sidebar.vala:339 Gtk/Sidebar.vala:719 +#: Utility/Device.vala:2436 #, c-format msgid "Filesystem" msgstr "Système de fichiers" -#: Gtk/SelectionBar.vala:154 +#: Gtk/SelectionBar.vala:159 msgid "Filter" msgstr "" -#: Gtk/Statusbar.vala:495 +#: Gtk/Statusbar.vala:471 msgid "Filter Items" msgstr "" @@ -1641,7 +1626,7 @@ msgid "Finished with errors" msgstr "" -#: Gtk/LayoutPanel.vala:229 +#: Gtk/LayoutPanel.vala:219 #, c-format msgid "Finished ~ Close Tab to exit" msgstr "" @@ -1658,7 +1643,7 @@ msgid "Flash Complete" msgstr "" -#: Gtk/FileViewList.vala:5059 +#: Gtk/FileViewList.vala:5077 #, c-format msgid "Flash ISO to device?" msgstr "" @@ -1667,23 +1652,20 @@ msgid "Flashing ISO to device..." msgstr "" -#: Gtk/DeviceContextMenu.vala:345 -msgid "Flush Read Buffer" -msgstr "Vider le tampon de lecture" - -#: Gtk/DeviceContextMenu.vala:346 -msgid "Flushes the read buffer for device" -msgstr "Vider le tampon de lecture de l'appareil" - -#: Gtk/FileContextMenu.vala:628 +#: Gtk/FileContextMenu.vala:630 msgid "Folder" msgstr "Dossier" -#: Gtk/FileViewList.vala:3374 +#: Gtk/FileViewList.vala:3309 msgid "Folder is empty" msgstr "Le dossier est vide" -#: Gtk/FileContextMenu.vala:1340 +#: Gtk/PlacesPopover.vala:478 +msgid "" +"Folder may have been deleted or renamed, or device may have been unmounted" +msgstr "" + +#: Gtk/FileContextMenu.vala:1387 msgid "Follow Symlink Path" msgstr "Suivre le lien symbolique" @@ -1695,7 +1677,7 @@ msgid "Font" msgstr "" -#: Gtk/Settings.vala:1614 +#: Gtk/Settings.vala:1635 msgid "Font scale" msgstr "Taille de police" @@ -1712,15 +1694,16 @@ msgid "Format" msgstr "Format" -#: Gtk/DeviceContextMenu.vala:273 +#: Gtk/DeviceContextMenu.vala:294 msgid "Format device using GNOME disk utility" msgstr "" -#: Gtk/DeviceContextMenu.vala:272 +#: Gtk/DeviceContextMenu.vala:293 msgid "Format..." msgstr "" -#: Gtk/FileViewToolbar.vala:176 Gtk/MainMenubar.vala:1300 +#: Gtk/FileViewToolbar.vala:176 Gtk/MainMenubar.vala:1300 Gtk/Pathbar.vala:827 +#: Gtk/Settings.vala:408 Gtk/Settings.vala:797 msgid "Forward" msgstr "Avant" @@ -1728,7 +1711,7 @@ msgid "Found" msgstr "Trouvé" -#: Gtk/Sidebar.vala:1272 Gtk/Statusbar.vala:372 +#: Gtk/Sidebar.vala:1287 Gtk/Statusbar.vala:364 #, c-format msgid "Free" msgstr "Libre" @@ -1741,10 +1724,14 @@ msgid "Fullscreen Mode" msgstr "Plein écran" -#: Gtk/DeviceContextMenu.vala:555 Gtk/DeviceContextMenu.vala:572 +#: Gtk/DeviceContextMenu.vala:599 msgid "GNOME Disk Uitility (gnome-disks) is not installed" msgstr "" +#: Gtk/DeviceContextMenu.vala:616 +msgid "GNOME Disk Utility (gnome-disks) is not installed" +msgstr "" + #: Gtk/Settings.vala:165 msgid "GTK Theme" msgstr "" @@ -1753,11 +1740,11 @@ msgid "GTK theme to use" msgstr "" -#: Gtk/PropertiesWindow.vala:147 Gtk/Settings.vala:1159 +#: Gtk/PropertiesWindow.vala:154 Gtk/Settings.vala:1159 msgid "General" msgstr "Général" -#: Gtk/FileViewList.vala:3457 +#: Gtk/FileViewList.vala:3392 msgid "Generating thumbnails..." msgstr "Génération des miniatures..." @@ -1769,19 +1756,19 @@ msgid "Go" msgstr "Aller" -#: Gtk/Pathbar.vala:879 +#: Gtk/Pathbar.vala:857 msgid "Go Up" msgstr "Aller au dessus" -#: Gtk/FileViewList.vala:3746 +#: Gtk/FileViewList.vala:3685 msgid "Go to location" msgstr "Aller à l'emplacement" -#: Gtk/Settings.vala:2390 +#: Gtk/Settings.vala:2411 msgid "Graphics" msgstr "" -#: Gtk/Settings.vala:2426 +#: Gtk/Settings.vala:2447 msgid "" "Graphics card to emulate for guest machine.\n" "\n" @@ -1798,8 +1785,8 @@ "qxl - More powerful graphics card for use with SPICE." msgstr "" -#: Gtk/FileViewList.vala:414 Gtk/FileViewList.vala:935 -#: Gtk/PropertiesWindow.vala:620 Gtk/PropertiesWindow.vala:846 +#: Gtk/FileViewList.vala:412 Gtk/FileViewList.vala:933 +#: Gtk/PropertiesWindow.vala:660 Gtk/PropertiesWindow.vala:865 #, c-format msgid "Group" msgstr "Groupe" @@ -1808,7 +1795,7 @@ msgid "Headerbar" msgstr "" -#: Gtk/PropertiesWindow.vala:278 +#: Gtk/PropertiesWindow.vala:285 msgid "Headers" msgstr "Titres" @@ -1816,16 +1803,12 @@ msgid "Help" msgstr "" -#: Gtk/Settings.vala:493 -msgid "Hidden" -msgstr "Caché" - -#: Gtk/CreateArchiveWindow.vala:1802 Gtk/FileContextMenu.vala:1295 +#: Gtk/CreateArchiveWindow.vala:1802 Gtk/FileContextMenu.vala:1342 #: Gtk/PasswordDialog.vala:202 msgid "Hide" msgstr "Cacher" -#: Gtk/FileContextMenu.vala:1296 +#: Gtk/FileContextMenu.vala:1343 msgid "Hide selected items" msgstr "Cacher la selection" @@ -1833,12 +1816,12 @@ msgid "History" msgstr "" -#: Gtk/FileViewToolbar.vala:217 Gtk/Pathbar.vala:909 Gtk/Settings.vala:459 -#: Gtk/Settings.vala:837 Gtk/Sidebar.vala:338 +#: Gtk/FileViewToolbar.vala:217 Gtk/Pathbar.vala:887 Gtk/PlacesPopover.vala:622 +#: Gtk/Settings.vala:459 Gtk/Settings.vala:837 Gtk/Sidebar.vala:340 msgid "Home" msgstr "Personnel" -#: Gtk/MainMenubar.vala:1908 +#: Gtk/MainMenubar.vala:1907 msgid "Homepage" msgstr "" @@ -1850,45 +1833,41 @@ msgid "Host IP (Eg: 192.0.10.1)" msgstr "" -#: Gtk/FileContextMenu.vala:1581 -msgid "ISO" -msgstr "" - #: Utility/Gtk/AboutWindow.vala:467 msgid "Icon Themes & Utilities" msgstr "" -#: Gtk/Settings.vala:1562 +#: Gtk/Settings.vala:1583 msgid "Icon View" msgstr "Vue des icones" -#: Gtk/Settings.vala:1648 Gtk/Settings.vala:1803 Gtk/Settings.vala:2004 +#: Gtk/Settings.vala:1669 Gtk/Settings.vala:1824 Gtk/Settings.vala:2025 msgid "Icon size" msgstr "Taile des icones" -#: Gtk/FileViewToolbar.vala:402 Gtk/Settings.vala:1260 Gtk/ViewPopover.vala:134 +#: Gtk/FileViewToolbar.vala:398 Gtk/Settings.vala:1267 Gtk/ViewPopover.vala:134 msgid "Icons" msgstr "Icones" -#: Gtk/Settings.vala:2565 Gtk/Settings.vala:2579 +#: Gtk/Settings.vala:2586 Gtk/Settings.vala:2600 msgid "If selected, the action will remove original file on success" msgstr "" -#: Gtk/Settings.vala:2593 Gtk/Settings.vala:2607 Gtk/Settings.vala:2621 -#: Gtk/Settings.vala:2635 Gtk/Settings.vala:2649 Gtk/Settings.vala:2663 -#: Gtk/Settings.vala:2677 Gtk/Settings.vala:2692 Gtk/Settings.vala:2706 -#: Gtk/Settings.vala:2720 Gtk/Settings.vala:2734 Gtk/Settings.vala:2748 -#: Gtk/Settings.vala:2762 Gtk/Settings.vala:2776 +#: Gtk/Settings.vala:2614 Gtk/Settings.vala:2628 Gtk/Settings.vala:2642 +#: Gtk/Settings.vala:2656 Gtk/Settings.vala:2670 Gtk/Settings.vala:2684 +#: Gtk/Settings.vala:2698 Gtk/Settings.vala:2713 Gtk/Settings.vala:2727 +#: Gtk/Settings.vala:2741 Gtk/Settings.vala:2755 Gtk/Settings.vala:2769 +#: Gtk/Settings.vala:2783 Gtk/Settings.vala:2797 msgid "" "If selected, the action will replace original file on success, instead of " "creating new file." msgstr "" -#: Gtk/FileContextMenu.vala:2206 +#: Gtk/FileContextMenu.vala:2253 msgid "Image" msgstr "" -#: Gtk/Settings.vala:2314 +#: Gtk/Settings.vala:2335 msgid "Image Actions" msgstr "" @@ -1914,7 +1893,7 @@ msgid "Install Rclone (Cloud Storage Support)" msgstr "" -#: Gtk/FileContextMenu.vala:1855 +#: Gtk/FileContextMenu.vala:1902 msgid "Install from ISO..." msgstr "" @@ -1922,19 +1901,19 @@ msgid "Install p7zip 16.02 (Archive Support)" msgstr "" -#: Gtk/FileViewList.vala:5645 Gtk/FileViewList.vala:5667 +#: Gtk/FileViewList.vala:5671 Gtk/FileViewList.vala:5693 msgid "Install required packages and try again" msgstr "" -#: Gtk/FileViewList.vala:4302 +#: Gtk/FileViewList.vala:4241 msgid "Internal Error" msgstr "Erreur interne" -#: Utility/Device.vala:488 +#: Utility/Device.vala:496 msgid "Invalid Passphrase" msgstr "" -#: Gtk/FileViewList.vala:5904 +#: Gtk/FileViewList.vala:5930 msgid "Invalid Path" msgstr "" @@ -1942,7 +1921,7 @@ msgid "Invalid Server Name" msgstr "" -#: Gtk/MainMenubar.vala:1918 +#: Gtk/MainMenubar.vala:1917 msgid "Issue Tracker" msgstr "" @@ -1954,7 +1933,7 @@ msgid "Item" msgstr "" -#: Gtk/FileViewList.vala:390 +#: Gtk/FileViewList.vala:388 msgid "Item is not a symbolic link" msgstr "" @@ -1962,15 +1941,15 @@ msgid "Items" msgstr "Items" -#: Gtk/FileContextMenu.vala:1720 +#: Gtk/FileContextMenu.vala:1767 msgid "KVM" msgstr "" -#: Gtk/PropertiesWindow.vala:1002 +#: Gtk/PropertiesWindow.vala:1023 msgid "Key" msgstr "Clé" -#: Gtk/MainMenubar.vala:1938 +#: Gtk/MainMenubar.vala:1937 msgid "Keyboard Shortcuts" msgstr "" @@ -1978,7 +1957,7 @@ msgid "Korn shell (ksh)" msgstr "" -#: Gtk/PropertiesWindow.vala:476 Utility/Device.vala:2415 +#: Gtk/PropertiesWindow.vala:506 Gtk/Sidebar.vala:715 Utility/Device.vala:2437 #, c-format msgid "Label" msgstr "Nom" @@ -1991,7 +1970,7 @@ msgid "Large icons" msgstr "Icones larges" -#: Gtk/FileViewList.vala:399 +#: Gtk/FileViewList.vala:397 #, c-format msgid "Last modified date" msgstr "Date de modification" @@ -2018,27 +1997,27 @@ msgid "License" msgstr "" -#: Gtk/Settings.vala:2481 +#: Gtk/Settings.vala:2502 msgid "" "Limit the CPU usage for VM process. It is recommended to keep this below 90 " "to prevent the host system from becoming unresponsive when intensive tasks " "are running in the guest OS." msgstr "" -#: Gtk/PropertiesWindow.vala:178 +#: Gtk/PropertiesWindow.vala:185 msgid "Link Target" msgstr "Cible du lien" -#: Gtk/FileViewList.vala:383 Gtk/FileViewList.vala:386 +#: Gtk/FileViewList.vala:381 Gtk/FileViewList.vala:384 #, c-format msgid "Link to" msgstr "Lier vers" -#: Gtk/FileViewToolbar.vala:395 Gtk/Settings.vala:1258 Gtk/ViewPopover.vala:127 +#: Gtk/FileViewToolbar.vala:391 Gtk/Settings.vala:1265 Gtk/ViewPopover.vala:127 msgid "List" msgstr "Liste" -#: Gtk/Settings.vala:1544 +#: Gtk/Settings.vala:1565 msgid "List View" msgstr "Vue en liste" @@ -2050,28 +2029,33 @@ msgid "Listing source items..." msgstr "" -#: Gtk/FileViewList.vala:3396 +#: Gtk/FileViewList.vala:3331 msgid "Loading..." msgstr "" -#: Gtk/CreateArchiveWindow.vala:404 Gtk/PropertiesWindow.vala:175 +#: Gtk/CreateArchiveWindow.vala:404 Gtk/PropertiesWindow.vala:182 msgid "Location" msgstr "Emplacement" -#: Gtk/Sidebar.vala:919 +#: Gtk/Sidebar.vala:958 msgid "Location not found" msgstr "Emplacement introuvable" -#: Gtk/DeviceContextMenu.vala:198 +#: Gtk/DeviceContextMenu.vala:225 msgid "Lock" msgstr "" -#: Utility/Device.vala:561 Utility/Device.vala:1909 +#: Gtk/FileViewTab.vala:295 +#, fuzzy +msgid "Lock Path" +msgstr "Emplacement" + +#: Utility/Device.vala:569 Utility/Device.vala:1931 #, c-format msgid "Locked" msgstr "" -#: Utility/Device.vala:560 Utility/Device.vala:1908 +#: Utility/Device.vala:568 Utility/Device.vala:1930 msgid "Locked successfully" msgstr "" @@ -2083,23 +2067,24 @@ msgid "Logout from cloud storage account" msgstr "" -#: Gtk/FileViewList.vala:1150 +#: Gtk/FileViewList.vala:1148 msgid "MD5" msgstr "" -#: Gtk/FileViewToolbar.vala:483 +#: Gtk/FileViewToolbar.vala:479 msgid "Make a donation" msgstr "Faire une donnation" -#: Gtk/DeviceContextMenu.vala:247 +#: Gtk/DeviceContextMenu.vala:270 msgid "Manage device using GNOME disk utility" msgstr "" -#: Gtk/DeviceContextMenu.vala:246 +#: Gtk/DeviceContextMenu.vala:269 msgid "Manage..." msgstr "" -#: Gtk/PropertiesWindow.vala:471 +#: Gtk/PropertiesWindow.vala:501 Gtk/Sidebar.vala:710 +#, c-format msgid "Mapped" msgstr "Enregisté" @@ -2107,7 +2092,7 @@ msgid "Maximize" msgstr "Maximizer" -#: Gtk/Settings.vala:1210 +#: Gtk/Settings.vala:1217 msgid "Maximize on startup" msgstr "Maximizer au démarrage" @@ -2119,19 +2104,19 @@ msgid "Maximum" msgstr "Maximum" -#: Gtk/FileViewToolbar.vala:416 Gtk/Settings.vala:1264 Gtk/ViewPopover.vala:148 +#: Gtk/FileViewToolbar.vala:412 Gtk/Settings.vala:1271 Gtk/ViewPopover.vala:148 msgid "Media" msgstr "Media" -#: Gtk/PropertiesWindow.vala:995 +#: Gtk/PropertiesWindow.vala:1016 msgid "MediaInfo" msgstr "Informations" -#: Gtk/FileViewList.vala:3385 +#: Gtk/FileViewList.vala:3320 msgid "Menubar: File > New Admin Window" msgstr "" -#: Gtk/FileContextMenu.vala:2017 Gtk/Settings.vala:2576 +#: Gtk/FileContextMenu.vala:2064 Gtk/Settings.vala:2597 msgid "Merge" msgstr "" @@ -2139,20 +2124,20 @@ msgid "Merge Derived Disk" msgstr "" -#: Gtk/FileContextMenu.vala:2018 +#: Gtk/FileContextMenu.vala:2065 msgid "Merge selected PDF files into one document" msgstr "" -#: Gtk/CreateArchiveWindow.vala:614 Gtk/PropertiesWindow.vala:225 +#: Gtk/CreateArchiveWindow.vala:614 Gtk/PropertiesWindow.vala:232 msgid "Method" msgstr "Methode" -#: Gtk/PropertiesWindow.vala:290 Utility/FileItem.vala:660 +#: Gtk/PropertiesWindow.vala:297 Utility/FileItem.vala:660 #, c-format msgid "Mime" msgstr "Mime" -#: Gtk/FileViewList.vala:405 +#: Gtk/FileViewList.vala:403 #, c-format msgid "Mime type" msgstr "Type mime" @@ -2161,79 +2146,67 @@ msgid "Minimize" msgstr "Minimiser" -#: Gtk/Settings.vala:1482 -msgid "" -"Minimize to system tray when window is closed instead of exiting the " -"application. Opening another folder will be much faster, as the application " -"would already be running in the background." -msgstr "" -"Minimiser dans le zone de notification quand la fenêtre est fermée au lien " -"de quitter l'application. La réouverture sera plus rapide, tant que " -"l'application fonctionnera en arrière plan." - -#: Gtk/Settings.vala:1479 -msgid "Minimize to tray" -msgstr "Minimiser dans la zone de notification" - #: Gtk/ToolsWindow.vala:155 msgid "Missing" msgstr "Manquant" -#: Gtk/MainWindow.vala:549 +#: Gtk/MainWindow.vala:548 msgid "Missing Dependencies" msgstr "Dépendances manquantes" -#: Gtk/DeviceContextMenu.vala:554 Gtk/DeviceContextMenu.vala:571 -#: Gtk/FileViewList.vala:5644 +#: Gtk/DeviceContextMenu.vala:598 Gtk/DeviceContextMenu.vala:615 +#: Gtk/FileViewList.vala:5670 msgid "Missing Dependency" msgstr "" -#: Utility/Gtk/GtkHelper.vala:362 +#: Utility/Gtk/GtkHelper.vala:376 msgid "Missing Icon" msgstr "" -#: Gtk/FileViewList.vala:5666 +#: Gtk/FileViewList.vala:5692 msgid "Missing Plugin" msgstr "" -#: Utility/Device.vala:2398 +#: Utility/Device.vala:2420 #, c-format msgid "Model" msgstr "" #: Gtk/FileConflictDialog.vala:543 Gtk/FileConflictDialog.vala:555 -#: Gtk/FileViewList.vala:806 Gtk/PropertiesWindow.vala:308 +#: Gtk/FileViewList.vala:804 Gtk/PropertiesWindow.vala:315 #: Utility/FileItem.vala:657 #, c-format msgid "Modified" msgstr "Modifié" -#: Gtk/FileContextMenu.vala:1104 +#: Gtk/FileContextMenu.vala:1151 msgid "More options" msgstr "Plus d'options" -#: Gtk/DeviceContextMenu.vala:152 Gtk/DeviceContextMenu.vala:298 -#: Gtk/FileContextMenu.vala:1611 Gtk/PropertiesWindow.vala:481 +#: Gtk/DeviceContextMenu.vala:179 Gtk/FileContextMenu.vala:1658 +#: Gtk/PropertiesWindow.vala:513 Gtk/Sidebar.vala:722 +#, c-format msgid "Mount" msgstr "Monter" -#: Gtk/FileContextMenu.vala:1835 +#: Gtk/FileContextMenu.vala:1882 msgid "Mount Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1612 -msgid "Mount the ISO file as a read-only disk" +#: Gtk/FileContextMenu.vala:1659 +#, fuzzy +msgid "Mount the disk image as read-only device" msgstr "Monter le file ISO comme un disque en lecteur seule" -#: Gtk/FileContextMenu.vala:1836 +#: Gtk/FileContextMenu.vala:1883 msgid "Mount the selected disk" msgstr "" -#: Gtk/DeviceContextMenu.vala:153 Gtk/DeviceContextMenu.vala:299 +#: Gtk/DeviceContextMenu.vala:180 msgid "Mount this volume" msgstr "Monter ce volume" -#: Gtk/FileViewList.vala:5007 +#: Gtk/FileViewList.vala:5027 #, c-format msgid "Mounted ISO" msgstr "ISO montée" @@ -2242,7 +2215,7 @@ msgid "Mounted successfully" msgstr "" -#: Gtk/FileContextMenu.vala:1211 +#: Gtk/FileContextMenu.vala:1258 msgid "Move Across" msgstr "Déplacer à travers" @@ -2257,7 +2230,7 @@ msgid "Move Down" msgstr "Déplacer en bas" -#: Gtk/FileContextMenu.vala:1171 +#: Gtk/FileContextMenu.vala:1218 msgid "Move To..." msgstr "Déplacer vers..." @@ -2277,11 +2250,11 @@ msgid "Move selected item up" msgstr "Déplacer la selection en haut" -#: Gtk/FileContextMenu.vala:1172 +#: Gtk/FileContextMenu.vala:1219 msgid "Move to another location" msgstr "Déplacer vers un autre emplacement" -#: Gtk/FileContextMenu.vala:1212 +#: Gtk/FileContextMenu.vala:1259 msgid "Move to other pane" msgstr "Déplacer vers un autre volet" @@ -2302,7 +2275,7 @@ msgid "Multiple items selected" msgstr "Plusieurs items selectionnés" -#: Gtk/Sidebar.vala:342 +#: Gtk/PlacesPopover.vala:626 Gtk/Sidebar.vala:344 msgid "Music" msgstr "Musique" @@ -2314,18 +2287,18 @@ msgid "NETBIOS Name" msgstr "" -#: Gtk/FileViewList.vala:396 +#: Gtk/FileViewList.vala:394 msgid "NTD = Rename Trash Delete" msgstr "" #: Gtk/ColumnSelectionBox.vala:111 Gtk/CreateArchiveWindow.vala:259 -#: Gtk/FileViewList.vala:648 Gtk/PropertiesWindow.vala:169 +#: Gtk/FileViewList.vala:646 Gtk/PropertiesWindow.vala:176 #: Utility/FileItem.vala:654 #, c-format msgid "Name" msgstr "Nom" -#: Gtk/FileContextMenu.vala:586 +#: Gtk/FileContextMenu.vala:588 msgid "New" msgstr "Nouveau" @@ -2333,15 +2306,15 @@ msgid "New Admin Window" msgstr "Nouvelle fenêtre administrateur" -#: Gtk/FileViewList.vala:4653 +#: Gtk/FileViewList.vala:4589 msgid "New File" msgstr "" -#: Gtk/FileViewList.vala:4619 +#: Gtk/FileViewList.vala:4555 msgid "New Folder" msgstr "" -#: Gtk/FileViewTab.vala:323 Gtk/MainMenubar.vala:158 +#: Gtk/FileViewTab.vala:361 Gtk/MainMenubar.vala:158 msgid "New Tab" msgstr "Nouveau onglet" @@ -2361,39 +2334,38 @@ msgid "New disk will be created by merging contents of derived and base files" msgstr "" -#: Gtk/Pathbar.vala:849 Gtk/Settings.vala:408 Gtk/Settings.vala:797 #: Gtk/WizardWindow.vala:114 msgid "Next" msgstr "Suivant" -#: Gtk/MediaBar.vala:147 Gtk/PropertiesWindow.vala:230 -#: Gtk/PropertiesWindow.vala:235 Utility/Gtk/CustomMessageDialog.vala:177 +#: Gtk/MediaBar.vala:146 Gtk/PropertiesWindow.vala:237 +#: Gtk/PropertiesWindow.vala:242 Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "Non" -#: Gtk/FileViewList.vala:6037 +#: Gtk/FileViewList.vala:6063 msgid "No Files Selected" msgstr "Aucun fichier selectionné" -#: Gtk/FileViewList.vala:5500 Gtk/FileViewList.vala:5520 -#: Gtk/FileViewList.vala:5540 Gtk/FileViewList.vala:5560 -#: Gtk/FileViewList.vala:5580 Gtk/FileViewList.vala:5600 +#: Gtk/FileViewList.vala:5518 Gtk/FileViewList.vala:5538 +#: Gtk/FileViewList.vala:5558 Gtk/FileViewList.vala:5578 +#: Gtk/FileViewList.vala:5598 Gtk/FileViewList.vala:5618 msgid "No Images Selected" msgstr "" -#: Gtk/FileViewList.vala:5480 +#: Gtk/FileViewList.vala:5498 msgid "No JPEGs Selected" msgstr "" -#: Gtk/FileViewList.vala:5458 +#: Gtk/FileViewList.vala:5476 msgid "No PNGs Selected" msgstr "" -#: Gtk/FileViewList.vala:4576 +#: Gtk/FileViewList.vala:4512 msgid "No Permission" msgstr "Pas de permission" -#: Gtk/FileContextMenu.vala:1699 +#: Gtk/FileContextMenu.vala:1746 msgid "No USB devices found" msgstr "" @@ -2401,15 +2373,12 @@ msgid "Normal" msgstr "Normal" -#: Gtk/ProgressPanelFileTask.vala:433 -msgid "Not Responding" -msgstr "Ne répond pas" - -#: Gtk/FileViewList.vala:5834 Gtk/FileViewList.vala:5930 +#: Gtk/FileViewList.vala:4974 Gtk/FileViewList.vala:4981 +#: Gtk/FileViewList.vala:5860 Gtk/FileViewList.vala:5956 msgid "Not Supported" msgstr "" -#: Gtk/Settings.vala:2454 +#: Gtk/Settings.vala:2475 msgid "" "Number of CPU cores to emulate for guest machine. This can be greater than " "the number of cores on host machine." @@ -2417,13 +2386,13 @@ #: Gtk/FileConflictDialog.vala:254 Gtk/ProgressPanelArchiveTask.vala:521 #: Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:139 +#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:153 #: Utility/Gtk/LoadingWindow.vala:110 msgid "OK" msgstr "OK" -#: Gtk/DeviceContextMenu.vala:128 Gtk/FileContextMenu.vala:236 -#: Gtk/FileContextMenu.vala:305 Gtk/FileContextMenu.vala:1460 +#: Gtk/DeviceContextMenu.vala:153 Gtk/FileContextMenu.vala:238 +#: Gtk/FileContextMenu.vala:307 Gtk/FileContextMenu.vala:1507 #: Gtk/MainMenubar.vala:1241 msgid "Open" msgstr "Ouvrir" @@ -2440,59 +2409,59 @@ msgid "Open Opposite" msgstr "Ouvrir l'opposé" -#: Gtk/FileContextMenu.vala:1034 +#: Gtk/FileContextMenu.vala:1031 msgid "Open Original Location" msgstr "Ouvrir l'emplacement original" -#: Gtk/FileContextMenu.vala:796 +#: Gtk/FileContextMenu.vala:798 msgid "Open Templates Folder" msgstr "Ouvrir le dossier de modèles" -#: Gtk/FileContextMenu.vala:1057 +#: Gtk/FileContextMenu.vala:1054 msgid "Open Trash Directory" msgstr "Ouvrir la corbeille" -#: Gtk/FileContextMenu.vala:328 Gtk/FileContextMenu.vala:362 +#: Gtk/FileContextMenu.vala:330 Gtk/FileContextMenu.vala:364 msgid "Open With" msgstr "Ouvrir avec" -#: Gtk/FileContextMenu.vala:671 +#: Gtk/FileContextMenu.vala:673 msgid "Open a terminal window" msgstr "Ouvrir une fenêtre de terminal" -#: Gtk/FileViewList.vala:3384 +#: Gtk/FileViewList.vala:3319 msgid "Open an admin window to browse this folder" msgstr "" -#: Gtk/FileContextMenu.vala:1461 +#: Gtk/FileContextMenu.vala:1508 msgid "Open archive" msgstr "" -#: Gtk/FileContextMenu.vala:564 +#: Gtk/FileContextMenu.vala:566 msgid "Open as Admin" msgstr "Ouvrir comme administrateur" -#: Gtk/FileContextMenu.vala:565 +#: Gtk/FileContextMenu.vala:567 msgid "Open folder as administrator" msgstr "Ouvrir le dossier comme administrateur" -#: Gtk/FileContextMenu.vala:523 +#: Gtk/FileContextMenu.vala:525 msgid "Open folder in new tab" msgstr "Ouvrrir le dossier dans un nouveau onglet" -#: Gtk/FileContextMenu.vala:544 +#: Gtk/FileContextMenu.vala:546 msgid "Open folder in new window" msgstr "Ouvrir le dossier dans une nouvelle fenêtre" -#: Gtk/FileContextMenu.vala:522 +#: Gtk/FileContextMenu.vala:524 msgid "Open in New Tab" msgstr "Ouvrir dans un nouvelle onglet" -#: Gtk/FileContextMenu.vala:543 +#: Gtk/FileContextMenu.vala:545 msgid "Open in New Window" msgstr "Ouvrir dans une nouvelle fenêtre" -#: Gtk/DeviceContextMenu.vala:129 +#: Gtk/DeviceContextMenu.vala:154 msgid "Open in active pane" msgstr "Ouvrir dans le volet actif" @@ -2504,11 +2473,11 @@ msgid "Open menu" msgstr "Ouvrlr le menu" -#: Gtk/FileContextMenu.vala:690 +#: Gtk/FileContextMenu.vala:692 msgid "Open new tab" msgstr "Ouvrir un nouveau onglet" -#: Gtk/FileContextMenu.vala:709 +#: Gtk/FileContextMenu.vala:711 msgid "Open new window" msgstr "Ouvrir une nouvelle fenêtre" @@ -2520,15 +2489,15 @@ msgid "Open right-pane location in left pane" msgstr "Ouvrir l'emplacement du volet droit dans le volet gauche" -#: Gtk/FileContextMenu.vala:306 +#: Gtk/FileContextMenu.vala:308 msgid "Open selected item" msgstr "Ouvrir la selection" -#: Gtk/FileContextMenu.vala:797 +#: Gtk/FileContextMenu.vala:799 msgid "Open templates folder" msgstr "Ouvrir le dossier de modèles" -#: Gtk/FileContextMenu.vala:1058 +#: Gtk/FileContextMenu.vala:1055 msgid "Open the actual location of trashed item in a new tab" msgstr "" "Ouvrir l'emplacement actuel des elements supprimées dans un nouveau onglet" @@ -2537,7 +2506,7 @@ msgid "Open the next visited location" msgstr "Ouvrir l'emplacement visité suiviant" -#: Gtk/FileContextMenu.vala:1035 +#: Gtk/FileContextMenu.vala:1032 msgid "Open the original location of trashed item in a new tab" msgstr "" "Ouvrir l'emplacement d'origine des elements supprimées dans un nouveau onglet" @@ -2550,39 +2519,39 @@ msgid "Open the previous visited location" msgstr "Ouvrir l'emplacement visité précédement" -#: Gtk/FileContextMenu.vala:1341 +#: Gtk/FileContextMenu.vala:1388 msgid "Open the symbolic link's target location" msgstr "Ouvrir l'emplacement du lien symbolique" -#: Gtk/Pathbar.vala:939 +#: Gtk/Pathbar.vala:917 msgid "Open this directory path in opposite pane" msgstr "Ouvrir ce dossier dans l'onglet opposé" -#: Gtk/FileContextMenu.vala:728 +#: Gtk/FileContextMenu.vala:730 msgid "Open window as administrator" msgstr "Ouvrir la fenêtre comme administrateur" -#: Gtk/FileContextMenu.vala:292 +#: Gtk/FileContextMenu.vala:294 msgid "Open with default application" msgstr "Ouvrir avec l'application par defaut" -#: Gtk/FileContextMenu.vala:329 Gtk/FileContextMenu.vala:388 +#: Gtk/FileContextMenu.vala:331 Gtk/FileContextMenu.vala:390 msgid "Open with other applications" msgstr "Ouvrir avec une autre application" -#: Gtk/Settings.vala:2674 +#: Gtk/Settings.vala:2695 msgid "Optimize" msgstr "" -#: Gtk/FileContextMenu.vala:2119 +#: Gtk/FileContextMenu.vala:2166 msgid "Optimize For" msgstr "" -#: Gtk/Settings.vala:2689 +#: Gtk/Settings.vala:2710 msgid "Optimize PNG" msgstr "" -#: Gtk/FileContextMenu.vala:2269 +#: Gtk/FileContextMenu.vala:2316 msgid "Optimize PNG (lossless)" msgstr "" @@ -2603,24 +2572,24 @@ msgid "Optional: guest (default)" msgstr "" -#: Gtk/PoloGtk.vala:144 Gtk/Settings.vala:1743 Gtk/Settings.vala:1927 -#: Gtk/Settings.vala:2130 +#: Gtk/PoloGtk.vala:144 Gtk/Settings.vala:1764 Gtk/Settings.vala:1948 +#: Gtk/Settings.vala:2151 msgid "Options" msgstr "Options" -#: Gtk/FileViewList.vala:1236 +#: Gtk/FileViewList.vala:1234 msgid "Original Location" msgstr "Emplacement d'origine" -#: Gtk/FileContextMenu.vala:387 +#: Gtk/FileContextMenu.vala:389 msgid "Other" msgstr "" -#: Gtk/FileContextMenu.vala:496 Gtk/PropertiesWindow.vala:624 +#: Gtk/FileContextMenu.vala:498 Gtk/PropertiesWindow.vala:664 msgid "Others" msgstr "Autres" -#: Gtk/FileViewList.vala:5674 +#: Gtk/FileViewList.vala:5700 msgid "Outdated Plugin" msgstr "" @@ -2628,23 +2597,23 @@ msgid "Overwrite existing file?" msgstr "" -#: Gtk/FileViewList.vala:892 Gtk/PropertiesWindow.vala:788 +#: Gtk/FileViewList.vala:890 Gtk/PropertiesWindow.vala:807 msgid "Owner" msgstr "Propriétaire" -#: Gtk/FileContextMenu.vala:1956 +#: Gtk/FileContextMenu.vala:2003 msgid "PDF" msgstr "" -#: Gtk/Settings.vala:2291 +#: Gtk/Settings.vala:2312 msgid "PDF Actions" msgstr "" -#: Gtk/FileViewList.vala:849 Gtk/PropertiesWindow.vala:254 +#: Gtk/FileViewList.vala:847 Gtk/PropertiesWindow.vala:261 msgid "Packed" msgstr "" -#: Gtk/Settings.vala:2077 +#: Gtk/Settings.vala:2098 msgid "Padding" msgstr "Espacement" @@ -2652,16 +2621,21 @@ msgid "Panes" msgstr "Volets" -#: Utility/Device.vala:2410 +#: Utility/Device.vala:2432 #, c-format msgid "Parent Device" msgstr "" -#: Gtk/FileViewList.vala:5931 +#: Gtk/PropertiesWindow.vala:508 Gtk/Sidebar.vala:717 +#, fuzzy, c-format +msgid "PartLabel" +msgstr "Nom" + +#: Gtk/FileViewList.vala:5957 msgid "Partial extraction not supported for solid archives" msgstr "Extraction partiel non supporté pour les archives solies" -#: Gtk/DeviceContextMenu.vala:526 +#: Gtk/DeviceContextMenu.vala:570 msgid "" "Partitions on following device will be unmounted and device will be ejected:" msgstr "" @@ -2700,7 +2674,7 @@ "\n" "Coller dans l'onglet actif" -#: Gtk/FileContextMenu.vala:1270 +#: Gtk/FileContextMenu.vala:1317 msgid "Paste Hardlinks" msgstr "Coller un lien solide" @@ -2712,11 +2686,11 @@ msgid "Paste Into Folder" msgstr "" -#: Gtk/FileContextMenu.vala:1233 +#: Gtk/FileContextMenu.vala:1280 msgid "Paste Symlinks" msgstr "Collor un lien symbolique" -#: Gtk/FileContextMenu.vala:1252 +#: Gtk/FileContextMenu.vala:1299 msgid "Paste Symlinks (relative)" msgstr "Coller un lien symbolique (relatif)" @@ -2724,7 +2698,7 @@ msgid "Paste clipboard contents" msgstr "Coller le contenu du presse-papier" -#: Gtk/FileContextMenu.vala:1271 +#: Gtk/FileContextMenu.vala:1318 msgid "" "Paste hard links to selected items in this directory.\n" "\n" @@ -2745,7 +2719,7 @@ msgid "Paste items into selected directory" msgstr "" -#: Gtk/FileContextMenu.vala:1234 +#: Gtk/FileContextMenu.vala:1281 msgid "" "Paste symbolic links to selected items in this directory. Absolute path will " "be used for symlink target." @@ -2753,7 +2727,7 @@ "Coller la selection comme liens symbliques dans ce dossier. Des emplacements " "absolus seront utilisées comme cible." -#: Gtk/FileContextMenu.vala:1253 +#: Gtk/FileContextMenu.vala:1300 msgid "" "Paste symbolic links to selected items in this directory. Relative paths " "will be used for symlink target.\n" @@ -2764,11 +2738,16 @@ "Paste symbolic links to selected items in this directory. Absolute path will " "be used for symlink target." -#: Gtk/FileConflictDialog.vala:405 Utility/Device.vala:362 -#: Utility/Device.vala:1672 +#: Gtk/FileConflictDialog.vala:405 Utility/Device.vala:370 +#: Utility/Device.vala:1688 msgid "Path" msgstr "Emplacement" +#: Gtk/PlacesPopover.vala:474 +#, fuzzy +msgid "Path Not Found" +msgstr "Emplacement introuvable" + #: Gtk/BookmarksMenu.vala:132 msgid "Path not found" msgstr "Emplacement introuvable" @@ -2783,21 +2762,25 @@ msgid "Pause" msgstr "Pause" -#: Gtk/FileViewList.vala:417 Gtk/FileViewList.vala:978 -#: Gtk/PropertiesWindow.vala:600 Gtk/PropertiesWindow.vala:602 +#: Gtk/Settings.vala:1207 +msgid "Performance" +msgstr "" + +#: Gtk/FileViewList.vala:415 Gtk/FileViewList.vala:976 +#: Gtk/PropertiesWindow.vala:640 Gtk/PropertiesWindow.vala:642 #, c-format msgid "Permissions" msgstr "Permission" -#: Gtk/Sidebar.vala:341 +#: Gtk/PlacesPopover.vala:625 Gtk/Sidebar.vala:343 msgid "Pictures" msgstr "Images" -#: Gtk/Settings.vala:956 Gtk/Sidebar.vala:332 +#: Gtk/Settings.vala:956 Gtk/Sidebar.vala:334 msgid "Places" msgstr "Emplacements" -#: Common/Main.vala:488 +#: Common/Main.vala:490 msgid "Please install required packages and try running again" msgstr "Merci d'installer les paquets requis et de recommencer" @@ -2833,16 +2816,16 @@ msgid "Processed:" msgstr "Progression:" -#: Gtk/FileContextMenu.vala:2530 Gtk/MiddleToolbar.vala:309 -#: Gtk/PropertiesWindow.vala:78 +#: Gtk/DeviceContextMenu.vala:317 Gtk/FileContextMenu.vala:2577 +#: Gtk/MiddleToolbar.vala:309 Gtk/PropertiesWindow.vala:96 msgid "Properties" msgstr "Propriétés" -#: Gtk/FileContextMenu.vala:2035 +#: Gtk/FileContextMenu.vala:2082 msgid "Protect the PDF document by adding password" msgstr "" -#: Gtk/PropertiesWindow.vala:691 +#: Gtk/PropertiesWindow.vala:710 msgid "" "Protects files in shared directory from being deleted by other users. Only " "the owner of the file, owner of the directory or root user will be able to " @@ -2856,7 +2839,7 @@ "d'autres utilisateur. Seul le propriétaire du fichier, du dossier ou " "l'administrateur pourra renommer ou supprimer le fichier." -#: Gtk/Sidebar.vala:345 +#: Gtk/PlacesPopover.vala:629 Gtk/Sidebar.vala:347 msgid "Public" msgstr "Public" @@ -2864,19 +2847,32 @@ msgid "Quad" msgstr "Quadruple" -#: Gtk/FileViewToolbar.vala:374 +#: Gtk/FileViewToolbar.vala:370 msgid "Quad Pane" msgstr "Quadruple volets" +#: Gtk/Settings.vala:1541 +msgid "" +"Query items in subfolders when a folder is loaded.\n" +"\n" +"Enabled - Folders display item count in 'Size' column\n" +"\n" +"Disabled - Folders display size of directory file in 'Size' column" +msgstr "" + +#: Gtk/Settings.vala:1538 +msgid "Query subfolders" +msgstr "" + #: Utility/MediaFile.vala:46 msgid "Queued" msgstr "" -#: Gtk/Settings.vala:2494 +#: Gtk/Settings.vala:2515 msgid "RAM (MB)" msgstr "" -#: Gtk/FileViewList.vala:396 +#: Gtk/FileViewList.vala:394 msgid "RWX = Read Write Execute" msgstr "Lire(R) Ecrire(W) Executer(X)" @@ -2895,12 +2891,12 @@ "Download and install Rclone?" msgstr "" -#: Gtk/PropertiesWindow.vala:628 Gtk/PropertiesWindow.vala:634 -#: Gtk/PropertiesWindow.vala:640 +#: Gtk/PropertiesWindow.vala:668 Gtk/PropertiesWindow.vala:674 +#: Gtk/PropertiesWindow.vala:680 msgid "Read" msgstr "Lire" -#: Gtk/FileViewList.vala:5123 +#: Gtk/FileViewList.vala:5141 msgid "" "Read-only disks cannot be booted.\n" "\n" @@ -2913,7 +2909,8 @@ "and boot from it, instead of booting this disk directly." msgstr "" -#: Gtk/PropertiesWindow.vala:484 +#: Gtk/PropertiesWindow.vala:516 Gtk/Sidebar.vala:725 +#, c-format msgid "ReadOnly" msgstr "Lecture seule" @@ -2935,39 +2932,39 @@ "to applications" msgstr "" -#: Gtk/FileContextMenu.vala:2320 +#: Gtk/FileContextMenu.vala:2367 msgid "Reduce Color" msgstr "" -#: Gtk/FileContextMenu.vala:2102 Gtk/Settings.vala:2590 +#: Gtk/FileContextMenu.vala:2149 Gtk/Settings.vala:2611 msgid "Reduce File Size" msgstr "" -#: Gtk/Settings.vala:2703 +#: Gtk/Settings.vala:2724 msgid "Reduce JPEG" msgstr "" -#: Gtk/FileContextMenu.vala:2286 +#: Gtk/FileContextMenu.vala:2333 msgid "Reduce JPEG Quality" msgstr "" -#: Gtk/FileContextMenu.vala:2321 +#: Gtk/FileContextMenu.vala:2368 msgid "" "Reduce color (less saturation). This can be used for correcting photos that " "are over-saturated (too much color)." msgstr "" -#: Gtk/FileContextMenu.vala:2287 +#: Gtk/FileContextMenu.vala:2334 msgid "Reduce file size of JPEG images by reducing quality" msgstr "" -#: Gtk/FileContextMenu.vala:2270 +#: Gtk/FileContextMenu.vala:2317 msgid "" "Reduce file size of PNG images without losing quality. PNG files will be re-" "packed using better compression algorithms." msgstr "" -#: Gtk/FileContextMenu.vala:2103 +#: Gtk/FileContextMenu.vala:2150 msgid "" "Reduce the file size of PDF document by downscaling images. Use the " "'Optimize For' submenu for more options." @@ -2985,7 +2982,7 @@ msgid "Remaining:" msgstr "Restant:" -#: Gtk/Settings.vala:1467 +#: Gtk/Settings.vala:1474 msgid "Remember last session" msgstr "Se souvernir de la dernière session" @@ -3009,28 +3006,28 @@ msgid "Remove Bookmark" msgstr "" -#: Gtk/FileContextMenu.vala:2068 Gtk/FileContextMenu.vala:2303 -#: Gtk/Settings.vala:2759 +#: Gtk/FileContextMenu.vala:2115 Gtk/FileContextMenu.vala:2350 +#: Gtk/Settings.vala:2780 msgid "Remove Color" msgstr "" -#: Gtk/FileContextMenu.vala:2051 Gtk/Settings.vala:2632 +#: Gtk/FileContextMenu.vala:2098 Gtk/Settings.vala:2653 msgid "Remove Password" msgstr "" -#: Gtk/Sidebar.vala:517 +#: Gtk/Sidebar.vala:528 msgid "Remove bookmark" msgstr "Supprimer le favori" -#: Gtk/Sidebar.vala:518 +#: Gtk/Sidebar.vala:529 msgid "Remove bookmark for this location" msgstr "Supprimer le favori pour cet emplacement" -#: Gtk/Settings.vala:2646 +#: Gtk/Settings.vala:2667 msgid "Remove color" msgstr "" -#: Gtk/FileContextMenu.vala:2069 +#: Gtk/FileContextMenu.vala:2116 msgid "Remove colors from PDF document" msgstr "" @@ -3039,7 +3036,7 @@ msgstr "" #: Gtk/BookmarkContextMenu.vala:89 Gtk/FileContextMenu.vala:937 -#: Gtk/FileViewList.vala:4560 Gtk/MainMenubar.vala:739 Gtk/Sidebar.vala:1133 +#: Gtk/FileViewList.vala:4496 Gtk/MainMenubar.vala:739 Gtk/Sidebar.vala:1172 msgid "Rename" msgstr "Renommer" @@ -3067,7 +3064,7 @@ msgid "Replace Older" msgstr "Remplacer les anciens fichiers" -#: Gtk/Settings.vala:2286 +#: Gtk/Settings.vala:2307 msgid "Replace Original Files ?" msgstr "" @@ -3087,7 +3084,7 @@ msgid "Replaced" msgstr "" -#: Gtk/FileViewList.vala:4423 +#: Gtk/FileViewList.vala:4362 msgid "Requested operation is not possible" msgstr "L'operation demandée est impossible" @@ -3100,13 +3097,14 @@ msgstr "" "Necesite le support du theme. Utilise la variante 'darker' du theme Gtk." -#: Gtk/ColumnSelectionBox.vala:181 Gtk/Settings.vala:1729 -#: Gtk/Settings.vala:1913 Gtk/Settings.vala:2116 Gtk/TermContextMenu.vala:369 +#: Gtk/ColumnSelectionBox.vala:181 Gtk/Settings.vala:1750 +#: Gtk/Settings.vala:1934 Gtk/Settings.vala:2137 Gtk/TermContextMenu.vala:369 msgid "Reset" msgstr "Reinitialiser" -#: Gtk/FileViewTab.vala:273 -msgid "Reset Tab Name" +#: Gtk/FileViewTab.vala:277 +#, fuzzy +msgid "Reset Name" msgstr "Reinitialiser le nom" #: Gtk/TermContextMenu.vala:180 @@ -3121,11 +3119,11 @@ msgid "Reset to default columns" msgstr "Reinitialiser les colonnes" -#: Gtk/Settings.vala:2717 +#: Gtk/Settings.vala:2738 msgid "Resize" msgstr "" -#: Gtk/FileContextMenu.vala:2398 +#: Gtk/FileContextMenu.vala:2445 msgid "Resize to" msgstr "" @@ -3137,11 +3135,11 @@ msgid "Restart Application ?" msgstr "Redémarrer l'application?" -#: Gtk/FileContextMenu.vala:1381 Gtk/TrashBar.vala:134 +#: Gtk/FileContextMenu.vala:1428 Gtk/TrashBar.vala:134 msgid "Restore" msgstr "Restorer" -#: Gtk/FileContextMenu.vala:1382 +#: Gtk/FileContextMenu.vala:1429 msgid "Restore item to the original location" msgstr "Restorer à l'emplacement d'origine" @@ -3149,7 +3147,7 @@ msgid "Restore selected items to original locations" msgstr "Restorer la selection à l'emplacement d'origine" -#: Gtk/MainWindow.vala:1098 +#: Gtk/MainWindow.vala:1099 msgid "Restoring session..." msgstr "Restoraton de la session..." @@ -3161,29 +3159,25 @@ msgid "Resume" msgstr "Reprendre" -#: Utility/Device.vala:2400 +#: Utility/Device.vala:2422 #, c-format msgid "Revision" msgstr "" -#: Gtk/FileContextMenu.vala:2158 Gtk/FileContextMenu.vala:2437 -#: Gtk/Settings.vala:2660 Gtk/Settings.vala:2731 +#: Gtk/FileContextMenu.vala:2205 Gtk/FileContextMenu.vala:2484 +#: Gtk/Settings.vala:2681 Gtk/Settings.vala:2752 msgid "Rotate" msgstr "" -#: Gtk/Settings.vala:1691 Gtk/Settings.vala:1841 Gtk/Settings.vala:2042 +#: Gtk/Settings.vala:1712 Gtk/Settings.vala:1862 Gtk/Settings.vala:2063 msgid "Row spacing" msgstr "Espacement des lignes" -#: Gtk/Settings.vala:1493 -msgid "Run at startup" -msgstr "Executer au démarrage" - -#: Gtk/FileContextMenu.vala:1012 +#: Gtk/FileContextMenu.vala:1010 msgid "Run in Terminal" msgstr "Executer dans un terminal" -#: Gtk/FileContextMenu.vala:1013 +#: Gtk/FileContextMenu.vala:1011 msgid "Run the selected script in a terminal window" msgstr "Executer la selection dans une fenêtre de terminal" @@ -3199,7 +3193,7 @@ msgid "Running with Admin Priviledges (!)" msgstr "Executer en temps qu'administrateur (!)" -#: Gtk/SelectionBar.vala:143 +#: Gtk/SelectionBar.vala:148 msgid "Select" msgstr "" @@ -3215,19 +3209,15 @@ msgid "Select Columns" msgstr "Selectionner les colonnes" -#: Gtk/FileViewList.vala:4317 +#: Gtk/FileViewList.vala:4256 msgid "Select Copy Destination" msgstr "Selectionner la destination de copie" -#: Gtk/FileViewList.vala:5875 +#: Gtk/FileViewList.vala:5901 msgid "Select Destination" msgstr "Selectionner la destination" -#: Gtk/ProgressPanelArchiveTask.vala:813 -msgid "Select Extraction Location" -msgstr "Selectionner la destination d'extraction" - -#: Utility/Gtk/GtkHelper.vala:770 +#: Utility/Gtk/GtkHelper.vala:777 msgid "Select File(s)" msgstr "" @@ -3235,7 +3225,7 @@ msgid "Select Files to Replace" msgstr "" -#: Utility/Gtk/GtkHelper.vala:774 +#: Utility/Gtk/GtkHelper.vala:781 msgid "Select Folder(s)" msgstr "" @@ -3247,7 +3237,7 @@ msgid "Select Format" msgstr "" -#: Gtk/FileViewList.vala:5151 +#: Gtk/FileViewList.vala:5169 msgid "Select ISO File" msgstr "" @@ -3259,7 +3249,7 @@ msgid "Select ListView Columns" msgstr "Selectionner les collones de la vue en liste" -#: Gtk/FileViewList.vala:4317 +#: Gtk/FileViewList.vala:4256 msgid "Select Move Destination" msgstr "Selectionner la destination du déplacement" @@ -3271,10 +3261,15 @@ msgid "Select Older" msgstr "Selectionner les anciens" -#: Utility/Gtk/GtkHelper.vala:1236 +#: Utility/Gtk/GtkHelper.vala:958 msgid "Select Path" msgstr "" +#: Gtk/FileContextMenu.vala:1131 +#, fuzzy +msgid "Select Second File..." +msgstr "Selectionner Rien" + #: Gtk/FileConflictDialog.vala:258 msgid "Select all files in list" msgstr "Selectionner tout les fichiers dans la liste" @@ -3287,25 +3282,35 @@ msgid "Select older files in list" msgstr "selectionner les anciens ficihers dans la liste" +#: Gtk/FileContextMenu.vala:1132 +#, fuzzy +msgid "Select second file for compare" +msgstr "Selectionner un fichier unque à déplacer" + #: Gtk/ColumnSelectionBox.vala:285 Gtk/ColumnSelectionBox.vala:320 msgid "Select single item to move" msgstr "Selectionner un fichier unque à déplacer" -#: Gtk/FileViewList.vala:5480 +#: Gtk/FileViewList.vala:5498 msgid "Select the JPEG image files to convert" msgstr "" -#: Gtk/FileViewList.vala:5458 +#: Gtk/FileViewList.vala:5476 msgid "Select the PNG image files to convert" msgstr "" -#: Gtk/FileViewList.vala:5500 Gtk/FileViewList.vala:5520 -#: Gtk/FileViewList.vala:5540 Gtk/FileViewList.vala:5560 -#: Gtk/FileViewList.vala:5580 Gtk/FileViewList.vala:5600 +#: Gtk/FileViewList.vala:5518 Gtk/FileViewList.vala:5538 +#: Gtk/FileViewList.vala:5558 Gtk/FileViewList.vala:5578 +#: Gtk/FileViewList.vala:5598 Gtk/FileViewList.vala:5618 msgid "Select the image files to convert" msgstr "" -#: Utility/Device.vala:2399 +#: Gtk/FileViewList.vala:4975 Gtk/FileViewList.vala:4982 +#, fuzzy, c-format +msgid "Selected item is not a text file" +msgstr "Selectionner les fichiers à remplacer:" + +#: Utility/Device.vala:2421 #, c-format msgid "Serial" msgstr "" @@ -3318,35 +3323,35 @@ msgid "Session & Startup" msgstr "" -#: Gtk/FileContextMenu.vala:441 +#: Gtk/FileContextMenu.vala:443 msgid "Set Default" msgstr "Par defaut" -#: Gtk/FileContextMenu.vala:471 +#: Gtk/FileContextMenu.vala:473 msgid "Set as Default and Open With" msgstr "Par defaut et Ouvrir avec" -#: Gtk/FileContextMenu.vala:2250 +#: Gtk/FileContextMenu.vala:2297 msgid "Set as Wallpaper" msgstr "" -#: Gtk/FileContextMenu.vala:442 Gtk/FileContextMenu.vala:497 +#: Gtk/FileContextMenu.vala:444 Gtk/FileContextMenu.vala:499 msgid "Set default application for file type" msgstr "Par defaut pour le type de fichier" -#: Gtk/Settings.vala:1730 Gtk/Settings.vala:1914 Gtk/Settings.vala:2117 +#: Gtk/Settings.vala:1751 Gtk/Settings.vala:1935 Gtk/Settings.vala:2138 msgid "Set default values" msgstr "Valeurs par defaut" -#: Gtk/FileContextMenu.vala:2251 +#: Gtk/FileContextMenu.vala:2298 msgid "Set the image as wallpaper" msgstr "" -#: Gtk/Settings.vala:1362 +#: Gtk/Settings.vala:1369 msgid "Sets the default application for opening folders" msgstr "Application par defaut pour ouvrir les dossier" -#: Gtk/FileViewToolbar.vala:462 Gtk/SettingsWindow.vala:49 +#: Gtk/FileViewToolbar.vala:458 Gtk/SettingsWindow.vala:49 #: Gtk/TermContextMenu.vala:222 msgid "Settings" msgstr "Paramètres" @@ -3359,7 +3364,7 @@ msgid "Share Name Not Specified" msgstr "" -#: Gtk/FileViewList.vala:3386 +#: Gtk/FileViewList.vala:3321 msgid "Shortcut: [Super] + N" msgstr "" @@ -3389,11 +3394,11 @@ msgid "Show Hidden" msgstr "Afficher Cacher" -#: Gtk/Settings.vala:2519 +#: Gtk/Settings.vala:2540 msgid "Show KVM in context menu" msgstr "" -#: Gtk/Settings.vala:2522 +#: Gtk/Settings.vala:2543 msgid "Show KVM submenu in right-click context menu" msgstr "" @@ -3408,6 +3413,11 @@ "Affiche une barre de titre combinée à la place de la barre d'outils et de la " "barre d'emplacement [redémarrage requis]" +#: Gtk/DeviceContextMenu.vala:318 +#, fuzzy +msgid "Show device properties" +msgstr "Voir les propriétés" + #: Gtk/Statusbar.vala:195 msgid "Show hidden items" msgstr "" @@ -3452,7 +3462,7 @@ msgid "Show the toolbar" msgstr "Afficher la barre d'outils" -#: Gtk/Settings.vala:1772 Gtk/Settings.vala:1958 Gtk/Settings.vala:2159 +#: Gtk/Settings.vala:1793 Gtk/Settings.vala:1979 Gtk/Settings.vala:2180 msgid "" "Show thumbnail previews in place of icons.\n" "\n" @@ -3474,22 +3484,18 @@ msgid "Single" msgstr "Unique" -#: Gtk/FileViewToolbar.vala:344 +#: Gtk/FileViewToolbar.vala:340 msgid "Single Pane" msgstr "Volet unique" -#: Gtk/Settings.vala:1433 -msgid "Single click to activate" -msgstr "Clique simple pour activer" - -#: Gtk/Settings.vala:1450 +#: Gtk/Settings.vala:1457 msgid "Single window mode" msgstr "Mode fenêtre unique" #: Gtk/FileConflictDialog.vala:542 Gtk/FileConflictDialog.vala:554 -#: Gtk/FileViewList.vala:750 Gtk/PropertiesWindow.vala:190 -#: Gtk/PropertiesWindow.vala:493 Gtk/Sidebar.vala:1265 Gtk/Statusbar.vala:365 -#: Utility/Device.vala:2402 Utility/Device.vala:2417 Utility/FileItem.vala:655 +#: Gtk/FileViewList.vala:748 Gtk/PropertiesWindow.vala:197 +#: Gtk/PropertiesWindow.vala:526 Gtk/Sidebar.vala:1280 Gtk/Statusbar.vala:357 +#: Utility/Device.vala:2424 Utility/Device.vala:2439 Utility/FileItem.vala:655 #, c-format msgid "Size" msgstr "Taille" @@ -3506,11 +3512,11 @@ msgid "Skip existing files" msgstr "Passer les fichers existants" -#: Gtk/PropertiesWindow.vala:236 +#: Gtk/PropertiesWindow.vala:243 msgid "Solid" msgstr "Solide" -#: Gtk/FileContextMenu.vala:2514 Gtk/MainMenubar.vala:1197 +#: Gtk/FileContextMenu.vala:2561 Gtk/MainMenubar.vala:1197 #: Gtk/ViewPopover.vala:354 msgid "Sort By" msgstr "Trier par" @@ -3523,11 +3529,11 @@ msgid "Source" msgstr "" -#: Gtk/FileViewList.vala:4422 Gtk/FileViewList.vala:4428 +#: Gtk/FileViewList.vala:4361 Gtk/FileViewList.vala:4367 msgid "Source and destination are same" msgstr "Source et destination identique" -#: Gtk/PropertiesWindow.vala:649 +#: Gtk/PropertiesWindow.vala:689 msgid "Special bits" msgstr "Bits spéciaux" @@ -3535,11 +3541,11 @@ msgid "Speed:" msgstr "Vitesse:" -#: Gtk/FileContextMenu.vala:2000 Gtk/Settings.vala:2562 +#: Gtk/FileContextMenu.vala:2047 Gtk/Settings.vala:2583 msgid "Split" msgstr "Séparer" -#: Gtk/FileContextMenu.vala:2001 +#: Gtk/FileContextMenu.vala:2048 msgid "Split PDF document by page" msgstr "" @@ -3551,6 +3557,10 @@ msgid "Split archive into volumes of specified size (in MB)" msgstr "Séparer l'archive en volumes de taille specifiée (en Mo)" +#: Gtk/TermContextMenu.vala:200 +msgid "Start chroot session in current directory" +msgstr "" + #: Gtk/ToolsWindow.vala:89 msgid "Status" msgstr "Status" @@ -3559,7 +3569,7 @@ msgid "Statusbar" msgstr "Barre de status" -#: Gtk/MediaBar.vala:153 +#: Gtk/MediaBar.vala:152 msgid "Stay in current view" msgstr "Rester dans la vue actuel" @@ -3591,7 +3601,7 @@ msgid "Swap" msgstr "Echanger" -#: Gtk/MiddleToolbar.vala:391 Gtk/Pathbar.vala:963 +#: Gtk/MiddleToolbar.vala:391 Gtk/Pathbar.vala:941 msgid "Swap directory path with opposite pane" msgstr "Echanger l'emplacement avec le volet opposé" @@ -3603,24 +3613,20 @@ msgid "Switch to media browser view?" msgstr "Changer vers la vue Media?" -#: Gtk/FileViewList.vala:1193 +#: Gtk/FileViewList.vala:1191 msgid "Symlink Target" msgstr "Cible de lien symbolique" -#: Gtk/DeviceContextMenu.vala:322 -msgid "Sync Pending Writes" -msgstr "Synchroniser les écritures en attente" - #: Gtk/PoloGtk.vala:142 msgid "Syntax" msgstr "Syntaxe" -#: Utility/Device.vala:2423 +#: Utility/Device.vala:2445 #, c-format msgid "System" msgstr "" -#: Gtk/FileContextMenu.vala:689 +#: Gtk/FileContextMenu.vala:691 msgid "Tab" msgstr "Onglet" @@ -3632,32 +3638,20 @@ msgid "Tabs at bottom" msgstr "Onglets en bas" -#: Gtk/FileContextMenu.vala:670 Gtk/FileViewToolbar.vala:432 -#: Gtk/Settings.vala:476 Gtk/Settings.vala:1297 +#: Gtk/FileContextMenu.vala:672 Gtk/FileViewToolbar.vala:428 +#: Gtk/Settings.vala:476 Gtk/Settings.vala:1304 msgid "Terminal" msgstr "Terminal" -#: Gtk/Settings.vala:1307 +#: Gtk/Settings.vala:1314 msgid "Terminal emulator to use for terminal panes" msgstr "" -#: Gtk/TermBox.vala:278 -msgid "Terminal is busy" -msgstr "" - #: Gtk/ProgressPanelArchiveTask.vala:107 msgid "Testing" msgstr "Essai" -#: Gtk/ProgressPanelFileTask.vala:434 -msgid "" -"The data transfer seems to have stopped. Check if device is working " -"correctly and if connection with the device is reliable." -msgstr "" -"Le transfère de données semble avoir été arreté. Verifier si l'appareil " -"fonctionne correctement et si la connexion est fonctionnel." - -#: Gtk/FileViewList.vala:6037 +#: Gtk/FileViewList.vala:6063 msgid "There are no files selected for compression" msgstr "Il n'y pas de fichiers selectionnés pour la compression" @@ -3669,25 +3663,21 @@ msgid "There were some errors:" msgstr "" -#: Gtk/TermBox.vala:279 -msgid "This action cannot be executed while a process is running" -msgstr "" - #: Gtk/Settings.vala:1108 msgid "" "This application is designed for the Arc GTK theme. It may not look right " "with other themes." msgstr "" -#: Gtk/Settings.vala:1769 Gtk/Settings.vala:1955 Gtk/Settings.vala:2156 +#: Gtk/Settings.vala:1790 Gtk/Settings.vala:1976 Gtk/Settings.vala:2177 msgid "Thumbnails" msgstr "Miniatures" -#: Gtk/Settings.vala:1580 +#: Gtk/Settings.vala:1601 msgid "Tile View" msgstr "Vue en tuiles" -#: Gtk/FileViewToolbar.vala:409 Gtk/Settings.vala:1262 Gtk/ViewPopover.vala:141 +#: Gtk/FileViewToolbar.vala:405 Gtk/Settings.vala:1269 Gtk/ViewPopover.vala:141 msgid "Tiles" msgstr "Tuiles" @@ -3695,11 +3685,16 @@ msgid "Title" msgstr "" -#: Gtk/Statusbar.vala:434 +#: Gtk/FileContextMenu.vala:1112 +#, c-format +msgid "To '%s' in Opposite Pane" +msgstr "" + +#: Gtk/Statusbar.vala:426 msgid "Toggle Middle Toolbar" msgstr "Afficher la barre d'outils" -#: Gtk/Statusbar.vala:430 +#: Gtk/Statusbar.vala:422 msgid "Toggle Sidebar" msgstr "Afficher la barre latérale" @@ -3707,8 +3702,8 @@ msgid "Toggle Terminal Pane" msgstr "Afficher le terminal" -#: Gtk/FileViewToolbar.vala:433 Gtk/MiddleToolbar.vala:366 -#: Gtk/Statusbar.vala:465 +#: Gtk/FileViewToolbar.vala:429 Gtk/MiddleToolbar.vala:366 +#: Gtk/Statusbar.vala:449 msgid "Toggle terminal panel" msgstr "" @@ -3736,12 +3731,12 @@ msgid "Translations" msgstr "" -#: Gtk/Settings.vala:1784 Gtk/Settings.vala:1970 Gtk/Settings.vala:2171 +#: Gtk/Settings.vala:1805 Gtk/Settings.vala:1991 Gtk/Settings.vala:2192 msgid "Transparency" msgstr "Transparence" #: Gtk/FileContextMenu.vala:959 Gtk/FileViewPane.vala:152 -#: Gtk/MainMenubar.vala:645 Gtk/Sidebar.vala:346 +#: Gtk/MainMenubar.vala:645 Gtk/PlacesPopover.vala:630 Gtk/Sidebar.vala:348 msgid "Trash" msgstr "Corbeille" @@ -3752,22 +3747,18 @@ "Move selected items to recycle bin" msgstr "" -#: Gtk/FileViewList.vala:4441 +#: Gtk/FileViewList.vala:4380 msgid "Trash selected items?" msgstr "Déplacer la selection vers la corbielle?" -#: Gtk/FileViewList.vala:1279 +#: Gtk/FileViewList.vala:1277 msgid "Trashed On" msgstr "Mis dans la corbeille" -#: Gtk/Settings.vala:2220 -msgid "Tree navigation" -msgstr "Navigation en arbrorecense" - #: Gtk/ConnectServerWindow.vala:220 Gtk/FileConflictDialog.vala:541 -#: Gtk/FileConflictDialog.vala:553 Gtk/FileViewList.vala:1107 -#: Gtk/PropertiesWindow.vala:218 Gtk/PropertiesWindow.vala:286 -#: Utility/Device.vala:2413 Utility/FileItem.vala:659 +#: Gtk/FileConflictDialog.vala:553 Gtk/FileViewList.vala:1105 +#: Gtk/PropertiesWindow.vala:225 Gtk/PropertiesWindow.vala:293 +#: Utility/Device.vala:2435 Utility/FileItem.vala:659 #, c-format msgid "Type" msgstr "Type" @@ -3784,7 +3775,7 @@ msgid "URI" msgstr "" -#: Gtk/PropertiesWindow.vala:474 Utility/Device.vala:2412 +#: Gtk/PropertiesWindow.vala:504 Gtk/Sidebar.vala:713 Utility/Device.vala:2434 #, c-format msgid "UUID" msgstr "" @@ -3805,19 +3796,19 @@ msgid "UnMaximize the terminal" msgstr "Réduire le terminal" -#: Gtk/FileContextMenu.vala:2085 Gtk/Settings.vala:2604 +#: Gtk/FileContextMenu.vala:2132 Gtk/Settings.vala:2625 msgid "Uncompress" msgstr "" -#: Gtk/FileContextMenu.vala:2086 +#: Gtk/FileContextMenu.vala:2133 msgid "Uncompress PDF document" msgstr "" -#: Gtk/FileContextMenu.vala:1318 +#: Gtk/FileContextMenu.vala:1365 msgid "Unhide" msgstr "Montrer" -#: Gtk/FileContextMenu.vala:1319 +#: Gtk/FileContextMenu.vala:1366 msgid "Unhide selected items" msgstr "Montrer la selection" @@ -3825,39 +3816,39 @@ msgid "Unknown Format" msgstr "" -#: Utility/Device.vala:510 Utility/Device.vala:1876 +#: Gtk/FileViewTab.vala:310 +msgid "Unlock Path" +msgstr "" + +#: Utility/Device.vala:518 Utility/Device.vala:1898 msgid "Unlocked" msgstr "" -#: Utility/Device.vala:509 Utility/Device.vala:1875 +#: Utility/Device.vala:517 Utility/Device.vala:1897 msgid "Unlocked successfully" msgstr "" -#: Gtk/DeviceContextMenu.vala:175 Gtk/MainMenubar.vala:1560 +#: Gtk/DeviceContextMenu.vala:202 msgid "Unmount" msgstr "Démonter" -#: Gtk/DeviceContextMenu.vala:199 +#: Gtk/DeviceContextMenu.vala:226 msgid "Unmount and lock encrypted volume" msgstr "" -#: Gtk/MainMenubar.vala:1561 -msgid "Unmount cloud storage account" -msgstr "" - -#: Gtk/DeviceContextMenu.vala:176 +#: Gtk/DeviceContextMenu.vala:203 msgid "Unmount this volume" msgstr "Démonter ce volume" -#: Utility/Device.vala:2099 +#: Utility/Device.vala:2121 msgid "Unmounting from" msgstr "" -#: Gtk/PropertiesWindow.vala:266 +#: Gtk/PropertiesWindow.vala:273 msgid "Unpacked" msgstr "" -#: Gtk/FileContextMenu.vala:2052 +#: Gtk/FileContextMenu.vala:2099 msgid "Unprotect the PDF document by removing password" msgstr "" @@ -3870,7 +3861,7 @@ msgid "Update recursively for all items inside the folder" msgstr "" -#: Gtk/FileViewList.vala:5675 +#: Gtk/FileViewList.vala:5701 msgid "Update required packages and try again" msgstr "" @@ -3888,18 +3879,18 @@ msgid "Uploading items..." msgstr "" -#: Gtk/PropertiesWindow.vala:500 Gtk/Sidebar.vala:1267 Gtk/Statusbar.vala:367 -#: Utility/Device.vala:2420 +#: Gtk/PropertiesWindow.vala:533 Gtk/Sidebar.vala:1282 Gtk/Statusbar.vala:359 +#: Utility/Device.vala:2442 #, c-format msgid "Used" msgstr "Utilisé" -#: Gtk/FileViewList.vala:411 Gtk/PropertiesWindow.vala:616 +#: Gtk/FileViewList.vala:409 Gtk/PropertiesWindow.vala:656 #, c-format msgid "User" msgstr "Utilisateur" -#: Utility/Device.vala:470 Utility/Device.vala:1834 +#: Utility/Device.vala:478 Utility/Device.vala:1856 msgid "User cancelled the password prompt" msgstr "" @@ -3911,41 +3902,37 @@ msgid "Utility" msgstr "Utilitaire" -#: Gtk/PropertiesWindow.vala:1003 +#: Gtk/PropertiesWindow.vala:1024 msgid "Value" msgstr "Valeur" -#: Utility/Device.vala:2397 +#: Utility/Device.vala:2419 #, c-format msgid "Vendor" msgstr "" -#: Gtk/Sidebar.vala:343 +#: Gtk/PlacesPopover.vala:627 Gtk/Sidebar.vala:345 msgid "Videos" msgstr "Vidéos" #: Gtk/FileViewToolbar.vala:262 Gtk/MainMenubar.vala:885 -#: Gtk/MainMenubar.vala:1046 Gtk/Settings.vala:527 Gtk/Settings.vala:1537 +#: Gtk/MainMenubar.vala:1046 Gtk/Settings.vala:527 Gtk/Settings.vala:1558 #: Gtk/ViewPopover.vala:116 msgid "View" msgstr "Vue" -#: Gtk/Settings.vala:1228 +#: Gtk/Settings.vala:1235 msgid "View Mode" msgstr "" -#: Gtk/FileContextMenu.vala:2531 +#: Gtk/FileContextMenu.vala:2578 msgid "View file properties" msgstr "Voir les propriétés" -#: Gtk/Settings.vala:2258 +#: Gtk/Settings.vala:2279 msgid "Virtual Machine" msgstr "" -#: Utility/TeeJee.Logging.vala:93 -msgid "W" -msgstr "" - #: Gtk/ProgressPanelVideoDownloadTask.vala:319 msgid "Web Page" msgstr "" @@ -3954,7 +3941,7 @@ msgid "Website ~ teejeetech.in" msgstr "" -#: Gtk/MainMenubar.vala:1928 +#: Gtk/MainMenubar.vala:1927 msgid "Wiki" msgstr "" @@ -3962,7 +3949,7 @@ msgid "Wiki ~ Documentation & Help" msgstr "" -#: Gtk/FileContextMenu.vala:708 +#: Gtk/FileContextMenu.vala:710 msgid "Window" msgstr "Fenêtre" @@ -3974,40 +3961,32 @@ msgid "Word Size" msgstr "Taille des mots" -#: Gtk/PropertiesWindow.vala:630 Gtk/PropertiesWindow.vala:636 -#: Gtk/PropertiesWindow.vala:642 +#: Gtk/PropertiesWindow.vala:670 Gtk/PropertiesWindow.vala:676 +#: Gtk/PropertiesWindow.vala:682 msgid "Write" msgstr "Écrire" -#: Gtk/FileContextMenu.vala:1656 +#: Gtk/FileContextMenu.vala:1703 msgid "Write ISO file to USB drive" msgstr "" -#: Gtk/DeviceContextMenu.vala:323 -msgid "Write any data waiting to be written to the device" -msgstr "Écrire les données en attente sur l'appareil" - -#: Gtk/FileContextMenu.vala:1655 +#: Gtk/FileContextMenu.vala:1702 msgid "Write to USB" msgstr "" -#: Utility/Device.vala:446 Utility/Device.vala:1809 Utility/Device.vala:1853 +#: Utility/Device.vala:454 Utility/Device.vala:1831 Utility/Device.vala:1875 msgid "Wrong password" msgstr "" -#: Gtk/MediaBar.vala:95 Gtk/PropertiesWindow.vala:230 -#: Gtk/PropertiesWindow.vala:235 Utility/Gtk/CustomMessageDialog.vala:176 +#: Gtk/MediaBar.vala:95 Gtk/PropertiesWindow.vala:237 +#: Gtk/PropertiesWindow.vala:242 Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "Oui" -#: Gtk/FileViewList.vala:4576 +#: Gtk/FileViewList.vala:4512 msgid "You do not have permission to rename this item" msgstr "Vous n'avez pas la permission de renommer cet élément" -#: Gtk/PropertiesWindow.vala:970 -msgid "You don't have permission to change some permissions" -msgstr "Vous n'avez pas la permission de modifier certaines permissions" - #: Utility/Shell.vala:55 msgid "Z shell (zsh)" msgstr "" @@ -4028,7 +4007,7 @@ msgid "file(s) exist at the destination" msgstr "Le ficher existe à la destination" -#: Gtk/Statusbar.vala:274 +#: Gtk/Statusbar.vala:266 msgid "free" msgstr "libre" @@ -4044,11 +4023,11 @@ msgid "items" msgstr "" -#: Gtk/FileViewList.vala:4507 +#: Gtk/FileViewList.vala:4446 msgid "selected item(s) will be deleted permanently" msgstr "la selection va être supprime définitivement" -#: Gtk/FileViewList.vala:4442 +#: Gtk/FileViewList.vala:4381 msgid "selected item(s) will be moved to trash" msgstr "la selection va être déplacer vers la corbeille" @@ -4065,6 +4044,98 @@ msgid "trashed" msgstr "" +#~ msgid "" +#~ "Allows X-window apps running inside the chroot environment to use the " +#~ "host display" +#~ msgstr "" +#~ "Autoriser l'application X-window à fonctionner dans l'environment chroot " +#~ "en utilisant cet affichage" + +#~ msgid "Allows network connection to be used inside the chroot environment" +#~ msgstr "" +#~ "Autoriser l'utilisation de la connexon reseau dans l'environment chroot" + +#~ msgid "" +#~ "Application will be started during system startup and will run minimized " +#~ "in system tray." +#~ msgstr "" +#~ "L'application va démarrer au lancement du système et rester minimisée " +#~ "dans la zone de notification." + +#~ msgid "Chroot: Enable GUI Apps" +#~ msgstr "Chroot: Activer les applications graphiques" + +#~ msgid "Chroot: Enable network" +#~ msgstr "Chroot: Activer le réseau" + +#~ msgid "Close this pane" +#~ msgstr "Fermer ce volet" + +#~ msgid "Flush Read Buffer" +#~ msgstr "Vider le tampon de lecture" + +#~ msgid "Flushes the read buffer for device" +#~ msgstr "Vider le tampon de lecture de l'appareil" + +#~ msgid "Hidden" +#~ msgstr "Caché" + +#~ msgid "" +#~ "Minimize to system tray when window is closed instead of exiting the " +#~ "application. Opening another folder will be much faster, as the " +#~ "application would already be running in the background." +#~ msgstr "" +#~ "Minimiser dans le zone de notification quand la fenêtre est fermée au " +#~ "lien de quitter l'application. La réouverture sera plus rapide, tant que " +#~ "l'application fonctionnera en arrière plan." + +#~ msgid "Minimize to tray" +#~ msgstr "Minimiser dans la zone de notification" + +#~ msgid "Not Responding" +#~ msgstr "Ne répond pas" + +#~ msgid "Run at startup" +#~ msgstr "Executer au démarrage" + +#, fuzzy +#~ msgid "Second File Not Found" +#~ msgstr "Fichier introuvable" + +#~ msgid "Select Extraction Location" +#~ msgstr "Selectionner la destination d'extraction" + +#~ msgid "Single click to activate" +#~ msgstr "Clique simple pour activer" + +#~ msgid "Sync Pending Writes" +#~ msgstr "Synchroniser les écritures en attente" + +#~ msgid "" +#~ "The data transfer seems to have stopped. Check if device is working " +#~ "correctly and if connection with the device is reliable." +#~ msgstr "" +#~ "Le transfère de données semble avoir été arreté. Verifier si l'appareil " +#~ "fonctionne correctement et si la connexion est fonctionnel." + +#~ msgid "Tree navigation" +#~ msgstr "Navigation en arbrorecense" + +#~ msgid "Write any data waiting to be written to the device" +#~ msgstr "Écrire les données en attente sur l'appareil" + +#~ msgid "You don't have permission to change some permissions" +#~ msgstr "Vous n'avez pas la permission de modifier certaines permissions" + +#~ msgid "Click to mount device and open in active pane" +#~ msgstr "Cliquer pour monter l'appareil et l'ouvrir dans le volet actif" + +#~ msgid "Click to open in active pane" +#~ msgstr "Cliquer pour ouvrir dans le volet actif" + +#~ msgid "Compare file with file of same name in other pane" +#~ msgstr "Comparer le fichier avec celui du même nom dans l'autre volet" + #~ msgid "A modern, light-weight file manager for Linux" #~ msgstr "Un gestionnaire de fichiers moderne et leger pour Linux" @@ -4224,9 +4295,6 @@ #~ msgid "Select Pathbar Style" #~ msgstr "Selectionner l'apparence de la barre d'emplacement" -#~ msgid "Select files to replace:" -#~ msgstr "Selectionner les fichiers à remplacer:" - #~ msgid "Show Lock button for encrypted devices" #~ msgstr "Afficher le bouton verrouillé pour les appareils cryptés" Binary files /tmp/tmpUTjRZD/PZEPzO01X2/polo-file-manager-17.10~28~ubuntu16.04.1/po/polo-nl.mo and /tmp/tmpUTjRZD/q_MGD58HNd/polo-file-manager-18.1~59~ubuntu16.04.1/po/polo-nl.mo differ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/po/polo-nl.po polo-file-manager-18.1~59~ubuntu16.04.1/po/polo-nl.po --- polo-file-manager-17.10~28~ubuntu16.04.1/po/polo-nl.po 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/po/polo-nl.po 2018-01-11 12:49:20.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: polo 1.6\n" "Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-09-17 16:05+0530\n" +"POT-Creation-Date: 2018-01-06 11:13+0530\n" "PO-Revision-Date: 2017-09-17 16:05+0530\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Heimen Stoffels \n" @@ -18,11 +18,12 @@ "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: Gtk/PropertiesWindow.vala:476 +#: Gtk/PropertiesWindow.vala:506 Gtk/PropertiesWindow.vala:508 +#: Gtk/Sidebar.vala:715 Gtk/Sidebar.vala:717 msgid "(empty)" msgstr "(Leeg)" -#: Gtk/FileContextMenu.vala:1103 +#: Gtk/FileContextMenu.vala:1150 msgid "..." msgstr "..." @@ -73,15 +74,15 @@ "Come back to Polo and click 'Finish' to add the account" msgstr "" -#: Gtk/FileViewToolbar.vala:502 Gtk/MainMenubar.vala:1958 +#: Gtk/FileViewToolbar.vala:498 Gtk/MainMenubar.vala:1957 msgid "About" msgstr "Over" -#: Gtk/FileViewList.vala:1021 +#: Gtk/FileViewList.vala:1019 msgid "Access" msgstr "Toegang" -#: Gtk/PropertiesWindow.vala:322 +#: Gtk/PropertiesWindow.vala:329 msgid "Accessed" msgstr "Benaderd" @@ -124,8 +125,8 @@ msgid "Action button" msgstr "" -#: Gtk/PropertiesWindow.vala:1105 Gtk/PropertiesWindow.vala:1159 -#: Gtk/Sidebar.vala:1163 +#: Gtk/PropertiesWindow.vala:1126 Gtk/PropertiesWindow.vala:1172 +#: Gtk/Sidebar.vala:1194 msgid "Actions" msgstr "" @@ -141,23 +142,23 @@ msgid "Add Cloud Storage Account" msgstr "Cloudopslag-account toevoegen" -#: Gtk/FileContextMenu.vala:2034 Gtk/Settings.vala:2618 +#: Gtk/FileContextMenu.vala:2081 Gtk/Settings.vala:2639 msgid "Add Password" msgstr "Wachtwoord toevoegen" -#: Gtk/Sidebar.vala:522 +#: Gtk/Sidebar.vala:533 msgid "Add bookmark" msgstr "Bladwijzer toevoegen" -#: Gtk/Sidebar.vala:523 +#: Gtk/Sidebar.vala:534 msgid "Add bookmark for this location" msgstr "Bladwijzer toevoegen voor deze locatie" -#: Gtk/FileContextMenu.vala:727 +#: Gtk/FileContextMenu.vala:729 msgid "Admin Window" msgstr "Adminvenster" -#: Gtk/Settings.vala:2250 +#: Gtk/Settings.vala:2271 msgid "Advanced" msgstr "Geavanceerd" @@ -165,23 +166,11 @@ msgid "Advanced options" msgstr "Geavanceerde opties" -#: Gtk/Settings.vala:2550 -msgid "" -"Allows X-window apps running inside the chroot environment to use the host " -"display" -msgstr "" -"Stelt X-venster-apps binnen de chroot-omgeving in staat om het hostscherm te " -"gebruiken" - -#: Gtk/Settings.vala:2536 -msgid "Allows network connection to be used inside the chroot environment" -msgstr "Staat netwerkverbindingen toe binnen de chroot-omgeving" - #: Utility/Shell.vala:61 msgid "Almquist shell (ash)" msgstr "" -#: Gtk/Settings.vala:2509 +#: Gtk/Settings.vala:2530 msgid "Amount of RAM to allocate for guest machine" msgstr "Hoeveelheid RAM-geheugen die de gastmachine mag gebruiken" @@ -189,11 +178,11 @@ msgid "An account exists with this name. Enter a new name for the account." msgstr "Er bestaat al een account met deze naam. Voer een nieuwe naam in." -#: Gtk/FileContextMenu.vala:1560 +#: Gtk/FileContextMenu.vala:1607 msgid "Analyze disk usage" msgstr "Schijfgebruik analyseren" -#: Gtk/FileViewList.vala:4579 +#: Gtk/FileViewList.vala:4515 msgid "Another file exists with this name" msgstr "Er bestaat al een bestand met deze naam" @@ -201,35 +190,27 @@ msgid "Another instance of this application is running" msgstr "Er draait al een proces van deze applicatie" -#: Common/Main.vala:912 Common/Main.vala:1062 Common/Main.vala:1151 +#: Common/Main.vala:923 Common/Main.vala:1073 Common/Main.vala:1162 msgid "App config loaded" msgstr "App-configuratie geladen" -#: Common/Main.vala:725 Common/Main.vala:1029 Common/Main.vala:1107 +#: Common/Main.vala:732 Common/Main.vala:1040 Common/Main.vala:1118 msgid "App config saved" msgstr "App-configuratie opgeslagen" -#: Gtk/FileViewToolbar.vala:503 +#: Gtk/FileViewToolbar.vala:499 msgid "Application Info" msgstr "Applicatie-informatie" -#: Gtk/Settings.vala:1496 -msgid "" -"Application will be started during system startup and will run minimized in " -"system tray." -msgstr "" -"De applicatie zal worden gestart bij het opstarten van het systeem en zal " -"geminimaliseerd in het systeemvak draaien." - #: Gtk/WizardWindow.vala:129 msgid "Apply" msgstr "" -#: Gtk/PropertiesWindow.vala:932 Gtk/PropertiesWindow.vala:950 +#: Gtk/PropertiesWindow.vala:951 Gtk/PropertiesWindow.vala:969 msgid "Apply recursively to directory contents" msgstr "Recursief toepassen op mapinhoud" -#: Gtk/FileContextMenu.vala:1406 +#: Gtk/FileContextMenu.vala:1453 msgid "Archive" msgstr "Archief" @@ -250,11 +231,11 @@ msgid "Authors" msgstr "Auteurs" -#: Gtk/PropertiesWindow.vala:507 +#: Gtk/PropertiesWindow.vala:540 msgid "Available" msgstr "Beschikbaar" -#: Gtk/FileViewToolbar.vala:155 Gtk/MainMenubar.vala:1255 Gtk/Pathbar.vala:819 +#: Gtk/FileViewToolbar.vala:155 Gtk/MainMenubar.vala:1255 Gtk/Pathbar.vala:797 #: Gtk/Settings.vala:391 Gtk/Settings.vala:777 Utility/Gtk/AboutWindow.vala:344 #: Utility/Gtk/AboutWindow.vala:376 msgid "Back" @@ -292,42 +273,47 @@ msgid "Block Size" msgstr "Blokgrootte" -#: Gtk/PropertiesWindow.vala:242 +#: Gtk/PropertiesWindow.vala:249 msgid "Blocks" msgstr "Blokken" -#: Gtk/FileViewToolbar.vala:288 Gtk/Pathbar.vala:169 Gtk/Settings.vala:544 -#: Gtk/Settings.vala:737 Gtk/Settings.vala:974 Gtk/Sidebar.vala:360 +#: Gtk/PlacesPopover.vala:519 +#, fuzzy +msgid "Bookmark" +msgstr "Bladwijzers" + +#: Gtk/FileViewToolbar.vala:287 Gtk/Pathbar.vala:168 Gtk/Settings.vala:544 +#: Gtk/Settings.vala:737 Gtk/Settings.vala:974 Gtk/Sidebar.vala:362 msgid "Bookmarks" msgstr "Bladwijzers" -#: Gtk/FileContextMenu.vala:2359 Gtk/Settings.vala:2773 +#: Gtk/FileContextMenu.vala:2406 Gtk/Settings.vala:2794 msgid "Boost Color" msgstr "" -#: Gtk/FileContextMenu.vala:2360 +#: Gtk/FileContextMenu.vala:2407 msgid "" "Boost color (more saturation). This can be used for correcting photos that " "are too dull (less color)." msgstr "" -#: Gtk/FileContextMenu.vala:1815 +#: Gtk/FileContextMenu.vala:1862 msgid "Boot Disk" msgstr "Opstartschijf" -#: Gtk/FileContextMenu.vala:1633 +#: Gtk/FileContextMenu.vala:1680 msgid "Boot ISO file in QEMU-KVM virtual machine" msgstr "ISO-bestand opstarten in QEMU-KVM virtuele machine" -#: Gtk/FileContextMenu.vala:1856 +#: Gtk/FileContextMenu.vala:1903 msgid "Boot from an ISO file with the selected disk attached" msgstr "Opstarten van een ISO-bestand met de geselecteerde schijf aangekoppeld" -#: Gtk/FileContextMenu.vala:1632 +#: Gtk/FileContextMenu.vala:1679 msgid "Boot in VM" msgstr "Opstarten in VM" -#: Gtk/FileContextMenu.vala:1816 +#: Gtk/FileContextMenu.vala:1863 msgid "Boot the selected disk in a virtual machine" msgstr "De geselecteerde schijf opstarten in een virtuele machine" @@ -335,7 +321,7 @@ msgid "Bourne again shell (bash)" msgstr "" -#: Gtk/FileViewList.vala:383 +#: Gtk/FileViewList.vala:381 #, c-format msgid "Broken" msgstr "" @@ -349,19 +335,19 @@ msgid "C shell (csh)" msgstr "" -#: Gtk/Settings.vala:2338 +#: Gtk/Settings.vala:2359 msgid "CPU" msgstr "CPU" -#: Gtk/Settings.vala:2439 +#: Gtk/Settings.vala:2460 msgid "CPU Cores" msgstr "CPU-kernen" -#: Gtk/Settings.vala:2467 +#: Gtk/Settings.vala:2488 msgid "CPU Limit (%)" msgstr "CPU-limiet (%)" -#: Gtk/Settings.vala:2376 +#: Gtk/Settings.vala:2397 msgid "CPU type to emulate for guest machine" msgstr "Na te bootsen CPU-type voor gastmachine" @@ -369,7 +355,7 @@ msgid "Calculate directory sizes" msgstr "Mapgroottes berekenen" -#: Gtk/FileViewList.vala:2849 +#: Gtk/FileViewList.vala:2784 msgid "Calculating dir size..." msgstr "" @@ -383,11 +369,11 @@ #: Gtk/ProgressPanelVideoDownloadTask.vala:231 #: Gtk/ProgressPanelVideoDownloadTask.vala:399 #: Gtk/SimpleProgressWindow.vala:139 Utility/Gtk/CustomMessageDialog.vala:172 -#: Utility/Gtk/GtkHelper.vala:140 +#: Utility/Gtk/GtkHelper.vala:154 msgid "Cancel" msgstr "Annuleren" -#: Gtk/FileViewTab.vala:393 Gtk/LayoutBox.vala:508 Gtk/MainWindow.vala:159 +#: Gtk/FileViewTab.vala:458 Gtk/LayoutBox.vala:508 Gtk/MainWindow.vala:158 msgid "Cancel File Operations?" msgstr "Bestandsoperaties annuleren?" @@ -399,19 +385,19 @@ msgid "Cancelled" msgstr "" -#: Gtk/ProgressPanelArchiveTask.vala:838 Gtk/ProgressPanelArchiveTask.vala:865 +#: Gtk/ProgressPanelArchiveTask.vala:865 msgid "Cancelled by user" msgstr "Geannuleerd door gebruiker" -#: Gtk/FileViewList.vala:6042 +#: Gtk/FileViewList.vala:6068 msgid "Cannot create archive in this location" msgstr "Archief kan niet worden gecreëerd op deze locatie" -#: Gtk/FileViewList.vala:5882 +#: Gtk/FileViewList.vala:5908 msgid "Cannot extract to this location" msgstr "Kan niet uitpakken naar deze locatie" -#: Gtk/FileViewToolbar.vala:463 Gtk/MainHeaderBar.vala:273 +#: Gtk/FileViewToolbar.vala:459 Gtk/MainHeaderBar.vala:273 msgid "Change Application Settings" msgstr "Applicatie-instellingen wijzigen" @@ -419,7 +405,7 @@ msgid "Change Directory" msgstr "Map wijzigen" -#: Gtk/Settings.vala:1883 Gtk/Settings.vala:2084 +#: Gtk/Settings.vala:1904 Gtk/Settings.vala:2105 msgid "Change column spacing" msgstr "Kolomruimte wijzigen" @@ -427,19 +413,19 @@ msgid "Change directory to current path" msgstr "Map wijzigen naar huidig pad" -#: Gtk/Settings.vala:1621 +#: Gtk/Settings.vala:1642 msgid "Change font size" msgstr "Lettertypegrootte wijzigen" -#: Gtk/Settings.vala:1655 Gtk/Settings.vala:1810 Gtk/Settings.vala:2011 +#: Gtk/Settings.vala:1676 Gtk/Settings.vala:1831 Gtk/Settings.vala:2032 msgid "Change icon size" msgstr "Pictogramgrootte wijzigen" -#: Gtk/Settings.vala:1698 Gtk/Settings.vala:1848 Gtk/Settings.vala:2049 +#: Gtk/Settings.vala:1719 Gtk/Settings.vala:1869 Gtk/Settings.vala:2070 msgid "Change row spacing" msgstr "Rijruimte wijzigen" -#: Gtk/PropertiesWindow.vala:336 +#: Gtk/PropertiesWindow.vala:343 msgid "Changed" msgstr "Gewijzigd" @@ -477,7 +463,7 @@ msgid "Check external tools" msgstr "Externe hulpmiddelen controleren" -#: Gtk/FileViewList.vala:2336 +#: Gtk/FileViewList.vala:2350 msgid "Check if internet connection is active" msgstr "" @@ -485,14 +471,6 @@ msgid "Chroot" msgstr "Chroot" -#: Gtk/Settings.vala:2547 -msgid "Chroot: Enable GUI Apps" -msgstr "Chroot: GUI-apps inschakelen" - -#: Gtk/Settings.vala:2533 -msgid "Chroot: Enable network" -msgstr "Chroot: netwerk inschakelen" - #: Gtk/CreateArchiveWindow.vala:1814 msgid "Cipher" msgstr "Cipher" @@ -533,25 +511,22 @@ msgid "Click 'Finish' to add the account" msgstr "Klik op 'Afronden' om het account toe te voegen" -#: Gtk/Pathbar.vala:331 -msgid "Click to edit path" -msgstr "Klik om pad te bewerken" - -#: Gtk/Sidebar.vala:727 -msgid "Click to mount device and open in active pane" -msgstr "Klik om apparaat aan te koppelen en te openen in actief paneel" - -#: Gtk/Sidebar.vala:724 -msgid "Click to open in active pane" -msgstr "Klik om te openen in actief paneel" +#: Gtk/PlacesPopover.vala:420 +#, fuzzy +msgid "Click to Remove" +msgstr "Klik om te selecteren" -#: Gtk/WizardWindow.vala:305 -msgid "Click to select" +#: Gtk/PlacesPopover.vala:424 +#, fuzzy +msgid "Click to Rename" msgstr "Klik om te selecteren" -#: Gtk/FileViewTab.vala:289 Gtk/MessageBar.vala:149 Gtk/SelectionBar.vala:167 -#: Gtk/Settings.vala:897 Gtk/WizardWindow.vala:143 -#: Utility/Gtk/AboutWindow.vala:401 +#: Gtk/Pathbar.vala:309 +msgid "Click to edit path" +msgstr "Klik om pad te bewerken" + +#: Gtk/FileViewTab.vala:327 Gtk/MessageBar.vala:149 Gtk/SelectionBar.vala:172 +#: Gtk/WizardWindow.vala:143 Utility/Gtk/AboutWindow.vala:401 msgid "Close" msgstr "Sluiten" @@ -563,15 +538,11 @@ msgid "Close button (R)" msgstr "" -#: Gtk/Pathbar.vala:986 -msgid "Close this pane" -msgstr "Dit paneel sluiten" - #: Gtk/MainHeaderBar.vala:321 Gtk/ProgressPanelArchiveTask.vala:515 msgid "Close this window" msgstr "Dit venster sluiten" -#: Gtk/MainWindow.vala:160 +#: Gtk/MainWindow.vala:159 msgid "" "Closing the application will cancel running file operations.\n" "Do you want to cancel?" @@ -580,7 +551,7 @@ "geannuleerd.\n" "Wilt u annuleren?" -#: Gtk/FileViewTab.vala:394 +#: Gtk/FileViewTab.vala:459 msgid "" "Closing this pane will cancel file operations running in this pane.\n" "Do you want to cancel?" @@ -606,11 +577,11 @@ msgid "Code Contributions" msgstr "Codebijdragen" -#: Gtk/Settings.vala:1876 +#: Gtk/Settings.vala:1897 msgid "Col spacing" msgstr "Kolomruimte" -#: Gtk/Settings.vala:2215 +#: Gtk/Settings.vala:2236 msgid "Columns" msgstr "Kolommen" @@ -622,28 +593,33 @@ msgid "Commander List (Dual-Pane + ListView)" msgstr "" -#: Common/Main.vala:487 +#: Common/Main.vala:489 msgid "Commands listed below are not available on this system" msgstr "De opdrachten hieronder zijn niet beschikbaar op dit systeem" -#: Gtk/FileContextMenu.vala:1078 +#: Gtk/FileContextMenu.vala:1082 msgid "Compare" msgstr "Vergelijken" -#: Gtk/FileContextMenu.vala:1079 -msgid "Compare file with file of same name in other pane" -msgstr "Vergelijk bestand met die met dezelfde naam in het andere paneel" +#: Gtk/FileContextMenu.vala:1113 +#, fuzzy +msgid "Compare text file with file in opposite pane" +msgstr "Tegenovergestelde paneel kan niet worden gevonden!" + +#: Gtk/FileContextMenu.vala:1083 +msgid "Compare text files side-by-side" +msgstr "" #: Utility/FileTask.vala:287 msgid "Comparing items..." msgstr "" #: Gtk/CreateArchiveWindow.vala:115 Gtk/CreateArchiveWindow.vala:2036 -#: Gtk/FileContextMenu.vala:1438 +#: Gtk/FileContextMenu.vala:1485 msgid "Compress" msgstr "Comprimeren" -#: Gtk/FileContextMenu.vala:1439 +#: Gtk/FileContextMenu.vala:1486 msgid "Compress selected items and create new archive" msgstr "Comprimeer geselecteerde items en creëer een nieuw archief" @@ -659,11 +635,11 @@ msgid "Confirm Passphrase" msgstr "Wachtwoord bevestigen" -#: Gtk/Settings.vala:1507 +#: Gtk/Settings.vala:1514 msgid "Confirm before deleting files" msgstr "Bevestiging vragen bij verwijderen van bestanden" -#: Gtk/Settings.vala:1519 +#: Gtk/Settings.vala:1526 msgid "Confirm before trashing files" msgstr "Bevestiging vragen bij verplaatsen naar prullenbak" @@ -675,7 +651,7 @@ msgid "Connect" msgstr "" -#: Gtk/FileContextMenu.vala:1700 +#: Gtk/FileContextMenu.vala:1747 msgid "Connect a USB device and come back to this menu" msgstr "Verbind een USB-apparaat en keer terug naar dit menu" @@ -691,15 +667,15 @@ msgid "Connecting to Server..." msgstr "" -#: Gtk/FileViewList.vala:1064 +#: Gtk/FileViewList.vala:1062 msgid "Content Type" msgstr "Inhoudssoort" -#: Gtk/PropertiesWindow.vala:203 +#: Gtk/PropertiesWindow.vala:210 msgid "Contents" msgstr "Inhoud" -#: Gtk/Settings.vala:2745 +#: Gtk/Settings.vala:2766 msgid "Convert" msgstr "" @@ -707,15 +683,15 @@ msgid "Convert Virtual Disk" msgstr "Virtuele schijf converteren" -#: Gtk/FileContextMenu.vala:2476 +#: Gtk/FileContextMenu.vala:2523 msgid "Convert to" msgstr "" -#: Gtk/FileContextMenu.vala:2304 +#: Gtk/FileContextMenu.vala:2351 msgid "Convert to black and white" msgstr "" -#: Gtk/FileContextMenu.vala:1877 +#: Gtk/FileContextMenu.vala:1924 msgid "Convert to..." msgstr "Converteren naar..." @@ -736,7 +712,7 @@ "Copy selected items in active pane" msgstr "" -#: Gtk/FileContextMenu.vala:1193 +#: Gtk/FileContextMenu.vala:1240 msgid "Copy Across" msgstr "Heen-en-weer kopiëren" @@ -747,15 +723,15 @@ "Copy selected items in active pane to opposite pane" msgstr "" -#: Gtk/FileContextMenu.vala:1359 +#: Gtk/FileContextMenu.vala:1406 msgid "Copy Path(s)" msgstr "Pad(en) kopiëren" -#: Gtk/FileContextMenu.vala:1153 +#: Gtk/FileContextMenu.vala:1200 msgid "Copy To..." msgstr "Kopiëren naar..." -#: Gtk/FileContextMenu.vala:1360 +#: Gtk/FileContextMenu.vala:1407 msgid "Copy file path to clipboard" msgstr "Bestandspad kopiëren naar klembord" @@ -767,11 +743,11 @@ msgid "Copy selected text to clipboard" msgstr "Geselecteerde tekst kopiëren naar het klembord" -#: Gtk/FileContextMenu.vala:1154 +#: Gtk/FileContextMenu.vala:1201 msgid "Copy to another location" msgstr "Naar andere locatie kopiëren" -#: Gtk/FileContextMenu.vala:1194 +#: Gtk/FileContextMenu.vala:1241 msgid "Copy to other pane" msgstr "Naar andere paneel kopiëren" @@ -792,24 +768,34 @@ msgid "Copying..." msgstr "" -#: Utility/Device.vala:1691 +#: Gtk/PlacesPopover.vala:477 +#, fuzzy, c-format +msgid "Could not find bookmarked path" +msgstr "Pad kan niet worden gevonden" + +#: Utility/Device.vala:1707 #, c-format msgid "Could not find file" msgstr "Bestand kan niet worden gevonden" -#: Gtk/FileViewList.vala:3366 +#: Gtk/FileViewList.vala:4941 +#, fuzzy, c-format +msgid "Could not find file in opposite pane" +msgstr "Tegenovergestelde paneel kan niet worden gevonden!" + +#: Gtk/FileViewList.vala:3301 msgid "Could not find path" msgstr "Pad kan niet worden gevonden" -#: Gtk/FileViewList.vala:4302 +#: Gtk/FileViewList.vala:4241 msgid "Could not find the opposite pane!" msgstr "Tegenovergestelde paneel kan niet worden gevonden!" -#: Gtk/FileViewList.vala:5835 +#: Gtk/FileViewList.vala:5861 msgid "Could not open file as archive" msgstr "" -#: Gtk/FileViewList.vala:2775 +#: Gtk/FileViewList.vala:2708 msgid "Counting items..." msgstr "" @@ -821,23 +807,23 @@ msgid "Create Derived Disk" msgstr "Afgeleide schijf creëren" -#: Gtk/FileContextMenu.vala:1775 +#: Gtk/FileContextMenu.vala:1822 msgid "Create Derived Disk..." msgstr "Afgeleide schijf creëren..." -#: Gtk/FileViewList.vala:4624 +#: Gtk/FileViewList.vala:4560 msgid "Create Directory" msgstr "Map creëren" -#: Gtk/FileContextMenu.vala:1758 +#: Gtk/FileContextMenu.vala:1805 msgid "Create Disk..." msgstr "Schijf creëren..." -#: Gtk/FileViewList.vala:4658 Gtk/FileViewList.vala:4694 +#: Gtk/FileViewList.vala:4594 Gtk/FileViewList.vala:4630 msgid "Create File" msgstr "Bestand creëren" -#: Gtk/FileContextMenu.vala:1795 +#: Gtk/FileContextMenu.vala:1842 msgid "Create Merged Disk..." msgstr "Samengevoegde schijf creëren..." @@ -853,11 +839,11 @@ msgid "Create Virtual Disk" msgstr "Virtuele schijf creëren" -#: Gtk/FileContextMenu.vala:1759 +#: Gtk/FileContextMenu.vala:1806 msgid "Create a virtual hard disk file" msgstr "Virtueel harde schijf-bestand creëren" -#: Gtk/FileContextMenu.vala:1796 +#: Gtk/FileContextMenu.vala:1843 msgid "" "Create a virtual hard disk file by merging selected derived disk with it's " "base" @@ -865,36 +851,36 @@ "Creëer een virtueel harde schijf-bestand door geselecteerde afgeleide " "schijven samen te voegen met de basis" -#: Gtk/FileContextMenu.vala:1776 +#: Gtk/FileContextMenu.vala:1823 msgid "Create a virtual hard disk file that uses selected disk as the base" msgstr "" "Creëer een virtueel harde schijf-bestand dat de geselecteerde schijf als " "basis gebruikt" -#: Gtk/FileViewList.vala:4429 +#: Gtk/FileViewList.vala:4368 msgid "Create copies of selected items?" msgstr "Kopieën creëren van geselecteerde items?" -#: Gtk/FileContextMenu.vala:775 +#: Gtk/FileContextMenu.vala:777 msgid "Create new file from template" msgstr "Nieuw bestand creëren uit sjabloon" -#: Gtk/FileContextMenu.vala:649 +#: Gtk/FileContextMenu.vala:651 msgid "Create new file in this location" msgstr "Nieuw bestand creëren op deze locatie" -#: Gtk/FileContextMenu.vala:629 +#: Gtk/FileContextMenu.vala:631 msgid "Create new folder in this location" msgstr "Nieuwe map creëren op deze locatie" #: Gtk/KvmCreateDiskWindow.vala:463 Gtk/ProgressPanelArchiveTask.vala:752 #: Gtk/ProgressPanelImageTask.vala:207 Gtk/ProgressPanelKvmTask.vala:258 -#: Gtk/PropertiesWindow.vala:304 +#: Gtk/PropertiesWindow.vala:311 #, c-format msgid "Created" msgstr "Gecreëerd" -#: Utility/TeeJee.FileSystem.vala:664 +#: Utility/TeeJee.FileSystem.vala:744 msgid "Created directory" msgstr "Map gecreëerd" @@ -957,7 +943,7 @@ msgid "Default shell (sh)" msgstr "" -#: Gtk/Settings.vala:1238 +#: Gtk/Settings.vala:1245 msgid "Default view mode to use for new panes" msgstr "Standaard weergavemodus voor nieuwe panelen" @@ -980,11 +966,11 @@ msgid "Delete selected items permanently" msgstr "Geselecteerde items permanent verwijderen" -#: Gtk/FileViewList.vala:4506 +#: Gtk/FileViewList.vala:4445 msgid "Delete selected items?" msgstr "Geselecteerde items verwijderen?" -#: Utility/TeeJee.FileSystem.vala:702 +#: Utility/TeeJee.FileSystem.vala:782 msgid "Deleted directory" msgstr "Map verwijderd" @@ -1005,15 +991,15 @@ "Afgeleide en basisbestanden blijven ongewijzigd en kunnen, indien nodig, " "worden verwijderd" -#: Gtk/Sidebar.vala:344 +#: Gtk/PlacesPopover.vala:628 Gtk/Sidebar.vala:346 msgid "Desktop" msgstr "Bureaublad" -#: Gtk/FileViewList.vala:5882 Gtk/FileViewList.vala:5904 +#: Gtk/FileViewList.vala:5908 Gtk/FileViewList.vala:5930 msgid "Destination directory does not exist" msgstr "Bestemmingsmap bestaat niet" -#: Gtk/FileViewList.vala:6042 +#: Gtk/FileViewList.vala:6068 msgid "Destination path is inside an archive (!)" msgstr "Bestemmingspad bevindt zich binnen een archief (!)" @@ -1021,28 +1007,28 @@ msgid "Details" msgstr "Details" -#: Gtk/PropertiesWindow.vala:468 Utility/Device.vala:362 -#: Utility/Device.vala:369 Utility/Device.vala:505 Utility/Device.vala:510 -#: Utility/Device.vala:554 Utility/Device.vala:1672 Utility/Device.vala:1678 -#: Utility/Device.vala:1871 Utility/Device.vala:1876 Utility/Device.vala:1903 -#: Utility/Device.vala:2396 Utility/Device.vala:2406 Utility/KvmTask.vala:314 +#: Gtk/PropertiesWindow.vala:498 Gtk/Sidebar.vala:707 Utility/Device.vala:370 +#: Utility/Device.vala:377 Utility/Device.vala:513 Utility/Device.vala:518 +#: Utility/Device.vala:562 Utility/Device.vala:1688 Utility/Device.vala:1694 +#: Utility/Device.vala:1893 Utility/Device.vala:1898 Utility/Device.vala:1925 +#: Utility/Device.vala:2418 Utility/Device.vala:2428 Utility/KvmTask.vala:314 #, c-format msgid "Device" msgstr "Apparaat" -#: Gtk/DeviceContextMenu.vala:502 +#: Gtk/DeviceContextMenu.vala:546 msgid "Device Locked" msgstr "Apparaat is vergrendeld" -#: Gtk/DeviceContextMenu.vala:422 +#: Gtk/DeviceContextMenu.vala:466 msgid "Device Unmounted" msgstr "Apparaat is ontkoppeld" -#: Utility/Device.vala:361 Utility/Device.vala:1671 +#: Utility/Device.vala:369 Utility/Device.vala:1687 msgid "Device mounted successfully" msgstr "Apparaat is succesvol aangekoppeld" -#: Utility/Device.vala:1725 +#: Utility/Device.vala:1747 msgid "Device name is empty!" msgstr "Apparaatnaam is leeg!" @@ -1050,12 +1036,12 @@ msgid "Device safely ejected and ready for use" msgstr "Apparaat is veilig uitgeworpen en klaar voor gebruik" -#: Gtk/FileViewList.vala:3358 +#: Gtk/FileViewList.vala:3293 msgid "Device was unmounted" msgstr "Apparaat is ontkoppeld" -#: Gtk/FileViewToolbar.vala:316 Gtk/Pathbar.vala:215 Gtk/Settings.vala:561 -#: Gtk/Settings.vala:757 Gtk/Settings.vala:992 Gtk/Sidebar.vala:379 +#: Gtk/FileViewToolbar.vala:312 Gtk/Pathbar.vala:201 Gtk/Settings.vala:561 +#: Gtk/Settings.vala:757 Gtk/Settings.vala:992 Gtk/Sidebar.vala:381 msgid "Devices" msgstr "Apparaten" @@ -1079,19 +1065,24 @@ "Tony George" msgstr "" -#: Utility/TeeJee.FileSystem.vala:840 +#: Utility/TeeJee.FileSystem.vala:920 msgid "Dir not found" msgstr "Map niet gevonden" -#: Gtk/FileViewList.vala:4632 +#: Gtk/FileViewList.vala:4568 msgid "Directory exists" msgstr "Map bestaat" -#: Gtk/FileContextMenu.vala:1559 +#: Gtk/FileContextMenu.vala:1628 +#, fuzzy +msgid "Disk Image" +msgstr "Schijfgebruik" + +#: Gtk/FileContextMenu.vala:1606 msgid "Disk Usage" msgstr "Schijfgebruik" -#: Gtk/FileViewList.vala:5123 +#: Gtk/FileViewList.vala:5141 msgid "Disk is Read-Only" msgstr "Schijf is alleen-lezen" @@ -1109,7 +1100,7 @@ msgid "Documentation" msgstr "Documentatie" -#: Gtk/Sidebar.vala:339 +#: Gtk/PlacesPopover.vala:623 Gtk/Sidebar.vala:341 msgid "Documents" msgstr "Documenten" @@ -1117,7 +1108,7 @@ msgid "Domain" msgstr "" -#: Gtk/FileViewToolbar.vala:482 Gtk/MainMenubar.vala:1948 +#: Gtk/FileViewToolbar.vala:478 Gtk/MainMenubar.vala:1947 #: Utility/Gtk/DonationWindow.vala:40 msgid "Donate" msgstr "Doneren" @@ -1166,17 +1157,21 @@ msgid "Downloading items..." msgstr "" -#: Gtk/Sidebar.vala:340 +#: Gtk/PlacesPopover.vala:624 Gtk/Sidebar.vala:342 msgid "Downloads" msgstr "Downloads" -#: Gtk/Settings.vala:1787 Gtk/Settings.vala:1973 Gtk/Settings.vala:2174 +#: Gtk/PlacesPopover.vala:417 +msgid "Drag to Re-order" +msgstr "" + +#: Gtk/Settings.vala:1808 Gtk/Settings.vala:1994 Gtk/Settings.vala:2195 msgid "Draw semi-transparent icons and thumbnails for hidden items" msgstr "" "Semi-doorzichtige pictogrammen en voorbeeldminiaturen weergeven voor " "verborgen items" -#: Gtk/Settings.vala:1757 Gtk/Settings.vala:1943 Gtk/Settings.vala:2144 +#: Gtk/Settings.vala:1778 Gtk/Settings.vala:1964 Gtk/Settings.vala:2165 msgid "" "Draw tiny emblems on the icon or thumbnail image to indicate folder " "contents, symlinks and read-only permissions.\n" @@ -1188,11 +1183,11 @@ "\n" "Schakel dit uit om mappen sneller te laden." -#: Gtk/Settings.vala:510 Gtk/ViewPopover.vala:216 +#: Gtk/ViewPopover.vala:216 msgid "Dual" msgstr "Twee panelen" -#: Gtk/FileViewToolbar.vala:364 +#: Gtk/FileViewToolbar.vala:360 msgid "Dual Horizontal" msgstr "Twee panelen - horizontaal" @@ -1200,7 +1195,7 @@ msgid "Dual Pane Mode" msgstr "Twee panelen-modus" -#: Gtk/FileViewToolbar.vala:354 +#: Gtk/FileViewToolbar.vala:350 msgid "Dual Vertical" msgstr "Twee panelen - verticaal" @@ -1208,54 +1203,39 @@ msgid "Duration" msgstr "" -#: Utility/TeeJee.Logging.vala:93 -msgid "E" -msgstr "E" - -#: Gtk/MainMenubar.vala:481 +#: Gtk/MainMenubar.vala:481 Gtk/PlacesPopover.vala:529 msgid "Edit" msgstr "Bewerken" -#: Gtk/FileViewTab.vala:255 -msgid "Edit Tab Name" +#: Gtk/FileViewTab.vala:259 +#, fuzzy +msgid "Edit Name" msgstr "Tabbladnaam bewerken" -#: Gtk/FileViewList.vala:395 +#: Gtk/FileViewList.vala:393 #, c-format msgid "Effective permissions for current user" msgstr "Effectieve rechten voor huidige gebruiker" -#: Gtk/DeviceContextMenu.vala:221 -msgid "Eject" -msgstr "" - -#: Gtk/Sidebar.vala:1190 -msgid "Eject Device" -msgstr "" - -#: Gtk/DeviceContextMenu.vala:525 +#: Gtk/DeviceContextMenu.vala:569 msgid "Eject Disk ?" msgstr "" -#: Gtk/DeviceContextMenu.vala:222 -msgid "Eject the device so that it can be removed safely" -msgstr "" - #: Gtk/ProgressPanelArchiveTask.vala:162 msgid "Elapsed:" msgstr "Verstreken:" -#: Gtk/Settings.vala:1985 +#: Gtk/Settings.vala:2006 msgid "Ellipsize file name" msgstr "" -#: Gtk/Settings.vala:1988 +#: Gtk/Settings.vala:2009 msgid "" "Ellipsize long file names with 3 dots. Uncheck this option to display entire " "file name." msgstr "" -#: Gtk/Settings.vala:1754 Gtk/Settings.vala:1940 Gtk/Settings.vala:2141 +#: Gtk/Settings.vala:1775 Gtk/Settings.vala:1961 Gtk/Settings.vala:2162 msgid "Emblems" msgstr "Emblemen" @@ -1287,11 +1267,11 @@ msgid "Encrypt file names" msgstr "Bestandsnamen versleutelen" -#: Gtk/PropertiesWindow.vala:231 +#: Gtk/PropertiesWindow.vala:238 msgid "Encrypted" msgstr "Versleuteld" -#: Utility/Device.vala:1827 +#: Utility/Device.vala:1849 msgid "Encrypted Device" msgstr "Versleuteld apparaat" @@ -1300,7 +1280,7 @@ msgid "Encrypted archive" msgstr "Versleuteld archief" -#: Utility/Device.vala:523 +#: Utility/Device.vala:531 #, c-format msgid "Encrypted device" msgstr "Versleuteld apparaat" @@ -1321,37 +1301,37 @@ msgid "Enter Password" msgstr "Wachtwoord invoeren" -#: Utility/Device.vala:525 Utility/FileItemArchive.vala:364 +#: Utility/Device.vala:533 Utility/FileItemArchive.vala:364 msgid "Enter Password to Unlock" msgstr "" -#: Gtk/FileViewList.vala:4632 Gtk/FileViewList.vala:4666 -#: Gtk/FileViewList.vala:4706 +#: Gtk/FileViewList.vala:4568 Gtk/FileViewList.vala:4602 +#: Gtk/FileViewList.vala:4642 msgid "Enter another name" msgstr "Nog een naam invoeren" -#: Gtk/FileViewList.vala:4624 +#: Gtk/FileViewList.vala:4560 msgid "Enter directory name" msgstr "Mapnaam invoeren" -#: Gtk/FileViewList.vala:4658 Gtk/FileViewList.vala:4694 +#: Gtk/FileViewList.vala:4594 Gtk/FileViewList.vala:4630 msgid "Enter file name" msgstr "Bestandsnaam invoeren" -#: Gtk/FileViewList.vala:4560 +#: Gtk/FileViewList.vala:4496 msgid "Enter new name" msgstr "Nieuwe naam invoeren" -#: Utility/Device.vala:1828 +#: Utility/Device.vala:1850 #, c-format msgid "Enter passphrase to unlock '%s'" msgstr "Voer wachtwoord in om '%s' te ontgrendelen" -#: Gtk/FileViewList.vala:5376 +#: Gtk/FileViewList.vala:5394 msgid "Enter password for PDF document" msgstr "Voer wachtwoord in voor PDF-document" -#: Utility/Gtk/GtkHelper.vala:1226 +#: Utility/Gtk/GtkHelper.vala:948 msgid "Enter path or browse for directory" msgstr "Voer een pad in of blader naar een map" @@ -1363,24 +1343,24 @@ msgid "Enter share name to connect (Required)" msgstr "" -#: Gtk/FileViewList.vala:4579 +#: Gtk/FileViewList.vala:4515 msgid "Enter unique name for selected file" msgstr "Voer een unieke naam in voor het geselecteerde bestand" #: Gtk/ProgressPanelArchiveTask.vala:771 Gtk/ProgressPanelArchiveTask.vala:782 #: Gtk/ProgressPanelImageTask.vala:198 Gtk/ProgressPanelKvmTask.vala:217 #: Gtk/ProgressPanelKvmTask.vala:220 Gtk/ProgressPanelPdfTask.vala:198 -#: Utility/Device.vala:1654 Utility/KvmTask.vala:311 +#: Utility/Device.vala:1670 Utility/KvmTask.vala:311 #: Utility/Gtk/GtkHelper.vala:18 #, c-format msgid "Error" msgstr "Fout" -#: Gtk/FileViewList.vala:2335 +#: Gtk/FileViewList.vala:2349 msgid "Error Connecting to Server" msgstr "" -#: Gtk/FileViewList.vala:3383 +#: Gtk/FileViewList.vala:3318 #, c-format msgid "Error opening directory: Permission denied" msgstr "" @@ -1389,8 +1369,8 @@ msgid "Example: 192.0.2.1" msgstr "" -#: Gtk/PropertiesWindow.vala:632 Gtk/PropertiesWindow.vala:638 -#: Gtk/PropertiesWindow.vala:644 +#: Gtk/PropertiesWindow.vala:672 Gtk/PropertiesWindow.vala:678 +#: Gtk/PropertiesWindow.vala:684 msgid "Execute" msgstr "Uitvoeren" @@ -1398,7 +1378,7 @@ msgid "Executing action..." msgstr "Bezig met uitvoeren van actie..." -#: Gtk/FileViewList.vala:5060 +#: Gtk/FileViewList.vala:5078 #, c-format msgid "Existing data on device will be destroyed" msgstr "Bestaande gegevens op het apparaat worden vernietigd" @@ -1407,7 +1387,7 @@ msgid "Exit" msgstr "Afsluiten" -#: Common/Main.vala:1202 +#: Common/Main.vala:1213 msgid "Exiting Application" msgstr "Bezig met afsluiten van app" @@ -1419,30 +1399,30 @@ msgid "External tools" msgstr "Externe hulpmiddelen" -#: Gtk/FileContextMenu.vala:1506 +#: Gtk/FileContextMenu.vala:1553 msgid "Extract Across" msgstr "Heen-en-weer uitpakken" -#: Gtk/FileContextMenu.vala:1531 +#: Gtk/FileContextMenu.vala:1578 msgid "Extract Here" msgstr "Hier uitpakken" -#: Gtk/FileContextMenu.vala:1483 +#: Gtk/FileContextMenu.vala:1530 msgid "Extract To.." msgstr "Uitpakken naar..." -#: Gtk/FileContextMenu.vala:1532 +#: Gtk/FileContextMenu.vala:1579 msgid "" "Extract archives in same location. New folder will be created with archive " "name." msgstr "" -#: Gtk/FileContextMenu.vala:1484 +#: Gtk/FileContextMenu.vala:1531 msgid "" "Extract archives to another location. Existing files will be overwritten." msgstr "" -#: Gtk/FileContextMenu.vala:1507 +#: Gtk/FileContextMenu.vala:1554 msgid "" "Extract archives to the opposite pane. Existing files will be overwritten." msgstr "" @@ -1471,77 +1451,77 @@ msgid "Failed to Remove Account" msgstr "" -#: Utility/TeeJee.FileSystem.vala:1166 +#: Utility/TeeJee.FileSystem.vala:1246 msgid "Failed to change owner/group!" msgstr "Wijzigen van eigenaar/groep is mislukt!" -#: Utility/TeeJee.FileSystem.vala:360 +#: Utility/TeeJee.FileSystem.vala:440 msgid "Failed to copy file" msgstr "Kopiëren van bestand is mislukt" -#: Utility/TeeJee.FileSystem.vala:674 +#: Utility/TeeJee.FileSystem.vala:754 msgid "Failed to create directory" msgstr "Creëren van map is mislukt" -#: Utility/TeeJee.FileSystem.vala:560 +#: Utility/TeeJee.FileSystem.vala:640 msgid "Failed to create hard link" msgstr "Creëren van harde koppeling is mislukt" -#: Utility/TeeJee.FileSystem.vala:537 +#: Utility/TeeJee.FileSystem.vala:617 msgid "Failed to create symlink" msgstr "Creëren van symlink is mislukt" -#: Utility/TeeJee.FileSystem.vala:186 Utility/TeeJee.FileSystem.vala:234 +#: Utility/TeeJee.FileSystem.vala:266 Utility/TeeJee.FileSystem.vala:314 msgid "Failed to delete items" msgstr "Verwijderen van items is mislukt" -#: Utility/Device.vala:1285 +#: Utility/Device.vala:1295 msgid "Failed to get partition list" msgstr "Verkrijgen van partitielijst is mislukt" -#: Utility/Device.vala:553 Utility/Device.vala:1902 +#: Utility/Device.vala:561 Utility/Device.vala:1924 msgid "Failed to lock device" msgstr "Vergrendelen van apparaat is mislukt" -#: Utility/Device.vala:368 Utility/Device.vala:1677 +#: Utility/Device.vala:376 Utility/Device.vala:1693 msgid "Failed to mount device" msgstr "Aankoppelen van apparaat is mislukt" -#: Utility/TeeJee.FileSystem.vala:379 +#: Utility/TeeJee.FileSystem.vala:459 msgid "Failed to move file" msgstr "Verplaatsen van bestand is mislukt" -#: Utility/TeeJee.FileSystem.vala:255 +#: Utility/TeeJee.FileSystem.vala:335 msgid "Failed to move items to trash" msgstr "Verplaatsen van items naar prullenbak is mislukt" -#: Utility/TeeJee.FileSystem.vala:296 +#: Utility/TeeJee.FileSystem.vala:376 msgid "Failed to read file" msgstr "Lezen van bestand is mislukt" -#: Utility/TeeJee.FileSystem.vala:441 +#: Utility/TeeJee.FileSystem.vala:521 msgid "Failed to rename item" msgstr "Itemnaam wijzigen is mislukt" -#: Utility/TeeJee.FileSystem.vala:1128 +#: Utility/TeeJee.FileSystem.vala:1208 msgid "Failed to set permissions!" msgstr "Instellen van rechten is mislukt!" -#: Utility/TeeJee.FileSystem.vala:212 +#: Utility/TeeJee.FileSystem.vala:292 msgid "Failed to trash items" msgstr "Verplaatsen van items naar prullenbak is mislukt" -#: Utility/Device.vala:447 Utility/Device.vala:469 Utility/Device.vala:489 -#: Utility/Device.vala:504 Utility/Device.vala:1810 Utility/Device.vala:1833 -#: Utility/Device.vala:1854 Utility/Device.vala:1870 +#: Utility/Device.vala:455 Utility/Device.vala:477 Utility/Device.vala:497 +#: Utility/Device.vala:512 Utility/Device.vala:1832 Utility/Device.vala:1855 +#: Utility/Device.vala:1876 Utility/Device.vala:1892 msgid "Failed to unlock device" msgstr "Ontgrendelen van apparaat is mislukt" -#: Utility/Device.vala:2110 +#: Utility/Device.vala:2132 msgid "Failed to unmount" msgstr "Ontkoppelen van apparaat is mislukt" -#: Utility/TeeJee.FileSystem.vala:342 +#: Utility/TeeJee.FileSystem.vala:422 msgid "Failed to write file" msgstr "Schrijven naar bestand is mislukt" @@ -1558,7 +1538,7 @@ msgid "Fetching info..." msgstr "" -#: Gtk/FileContextMenu.vala:648 Gtk/KvmCreateDiskWindow.vala:428 +#: Gtk/FileContextMenu.vala:650 Gtk/KvmCreateDiskWindow.vala:428 #: Gtk/MainMenubar.vala:123 Gtk/ProgressPanelImageTask.vala:156 #: Gtk/ProgressPanelKvmTask.vala:203 Gtk/ProgressPanelPdfTask.vala:156 #: Gtk/ProgressPanelUsbWriterTask.vala:162 @@ -1570,7 +1550,7 @@ msgid "File Conflict" msgstr "Bestandsconflict" -#: Gtk/Settings.vala:1352 +#: Gtk/Settings.vala:1359 msgid "File Manager" msgstr "Bestandsbeheerder" @@ -1578,11 +1558,16 @@ msgid "File Name" msgstr "Bestandsnaam" -#: Gtk/FileViewList.vala:4666 Gtk/FileViewList.vala:4706 +#: Gtk/FileViewList.vala:4940 +#, fuzzy +msgid "File Not Found" +msgstr "Bestand niet gevonden" + +#: Gtk/FileViewList.vala:4602 Gtk/FileViewList.vala:4642 msgid "File exists" msgstr "Bestaat bestaat al" -#: Utility/TeeJee.FileSystem.vala:992 Utility/TeeJee.FileSystem.vala:1041 +#: Utility/TeeJee.FileSystem.vala:1072 Utility/TeeJee.FileSystem.vala:1121 msgid "File is missing" msgstr "Bestand ontbreekt" @@ -1591,17 +1576,17 @@ msgstr "Bestand is geen archief of is een niet-ondersteund formaat" #: Gtk/PoloGtk.vala:106 Utility/GtkBookmark.vala:122 Utility/MimeTypes.vala:88 -#: Utility/RsyncTask.vala:288 Utility/TeeJee.FileSystem.vala:374 -#: Utility/TeeJee.FileSystem.vala:869 Utility/XdgUserDirectories.vala:143 +#: Utility/RsyncTask.vala:288 Utility/TeeJee.FileSystem.vala:454 +#: Utility/TeeJee.FileSystem.vala:949 Utility/XdgUserDirectories.vala:143 msgid "File not found" msgstr "Bestand niet gevonden" -#: Gtk/FileViewList.vala:402 +#: Gtk/FileViewList.vala:400 #, c-format msgid "File type" msgstr "Bestandstype" -#: Gtk/PropertiesWindow.vala:697 +#: Gtk/PropertiesWindow.vala:716 msgid "" "File will be executed with the priviledges of the file's group instead of " "priviledges of user who is executing the file.\n" @@ -1615,7 +1600,7 @@ "Handig voor uitvoerbare bestanden. Stelt iedereen met de juiste rechten in " "staat om het bestand uit te voeren met de groepsrechten." -#: Gtk/PropertiesWindow.vala:694 +#: Gtk/PropertiesWindow.vala:713 msgid "" "File will be executed with the priviledges of the file's owner instead of " "priviledges of user who is executing the file.\n" @@ -1633,17 +1618,18 @@ msgid "Files:" msgstr "Bestanden:" -#: Gtk/PropertiesWindow.vala:450 Gtk/PropertiesWindow.vala:478 -#: Gtk/Sidebar.vala:337 Utility/Device.vala:2414 +#: Gtk/PlacesPopover.vala:621 Gtk/PropertiesWindow.vala:472 +#: Gtk/PropertiesWindow.vala:510 Gtk/Sidebar.vala:339 Gtk/Sidebar.vala:719 +#: Utility/Device.vala:2436 #, c-format msgid "Filesystem" msgstr "Bestandssysteem" -#: Gtk/SelectionBar.vala:154 +#: Gtk/SelectionBar.vala:159 msgid "Filter" msgstr "" -#: Gtk/Statusbar.vala:495 +#: Gtk/Statusbar.vala:471 msgid "Filter Items" msgstr "" @@ -1656,7 +1642,7 @@ msgid "Finished with errors" msgstr "Afgerond met fouten" -#: Gtk/LayoutPanel.vala:229 +#: Gtk/LayoutPanel.vala:219 #, c-format msgid "Finished ~ Close Tab to exit" msgstr "Afgerond ~ Sluit het tabblad om af te sluiten" @@ -1673,7 +1659,7 @@ msgid "Flash Complete" msgstr "Flashen voltooid" -#: Gtk/FileViewList.vala:5059 +#: Gtk/FileViewList.vala:5077 #, c-format msgid "Flash ISO to device?" msgstr "ISO flashen naar apparaat?" @@ -1682,23 +1668,20 @@ msgid "Flashing ISO to device..." msgstr "Bezig met flashen van ISO naar apparaat..." -#: Gtk/DeviceContextMenu.vala:345 -msgid "Flush Read Buffer" -msgstr "Leesbuffer wissen" - -#: Gtk/DeviceContextMenu.vala:346 -msgid "Flushes the read buffer for device" -msgstr "Wist de leesbuffer van het apparaat" - -#: Gtk/FileContextMenu.vala:628 +#: Gtk/FileContextMenu.vala:630 msgid "Folder" msgstr "Map" -#: Gtk/FileViewList.vala:3374 +#: Gtk/FileViewList.vala:3309 msgid "Folder is empty" msgstr "De map is leeg" -#: Gtk/FileContextMenu.vala:1340 +#: Gtk/PlacesPopover.vala:478 +msgid "" +"Folder may have been deleted or renamed, or device may have been unmounted" +msgstr "" + +#: Gtk/FileContextMenu.vala:1387 msgid "Follow Symlink Path" msgstr "Symlinkpad volgen" @@ -1710,7 +1693,7 @@ msgid "Font" msgstr "Lettertype" -#: Gtk/Settings.vala:1614 +#: Gtk/Settings.vala:1635 msgid "Font scale" msgstr "Lettertypegrootte" @@ -1729,15 +1712,16 @@ msgid "Format" msgstr "Formaat" -#: Gtk/DeviceContextMenu.vala:273 +#: Gtk/DeviceContextMenu.vala:294 msgid "Format device using GNOME disk utility" msgstr "" -#: Gtk/DeviceContextMenu.vala:272 +#: Gtk/DeviceContextMenu.vala:293 msgid "Format..." msgstr "" -#: Gtk/FileViewToolbar.vala:176 Gtk/MainMenubar.vala:1300 +#: Gtk/FileViewToolbar.vala:176 Gtk/MainMenubar.vala:1300 Gtk/Pathbar.vala:827 +#: Gtk/Settings.vala:408 Gtk/Settings.vala:797 msgid "Forward" msgstr "Vooruit" @@ -1745,7 +1729,7 @@ msgid "Found" msgstr "Gevonden" -#: Gtk/Sidebar.vala:1272 Gtk/Statusbar.vala:372 +#: Gtk/Sidebar.vala:1287 Gtk/Statusbar.vala:364 #, c-format msgid "Free" msgstr "Vrij" @@ -1758,10 +1742,14 @@ msgid "Fullscreen Mode" msgstr "Volledig scherm-modus" -#: Gtk/DeviceContextMenu.vala:555 Gtk/DeviceContextMenu.vala:572 +#: Gtk/DeviceContextMenu.vala:599 msgid "GNOME Disk Uitility (gnome-disks) is not installed" msgstr "" +#: Gtk/DeviceContextMenu.vala:616 +msgid "GNOME Disk Utility (gnome-disks) is not installed" +msgstr "" + #: Gtk/Settings.vala:165 msgid "GTK Theme" msgstr "" @@ -1770,11 +1758,11 @@ msgid "GTK theme to use" msgstr "" -#: Gtk/PropertiesWindow.vala:147 Gtk/Settings.vala:1159 +#: Gtk/PropertiesWindow.vala:154 Gtk/Settings.vala:1159 msgid "General" msgstr "Algemeen" -#: Gtk/FileViewList.vala:3457 +#: Gtk/FileViewList.vala:3392 msgid "Generating thumbnails..." msgstr "Bezig met genereren van voorbeelden..." @@ -1786,19 +1774,19 @@ msgid "Go" msgstr "Ga" -#: Gtk/Pathbar.vala:879 +#: Gtk/Pathbar.vala:857 msgid "Go Up" msgstr "Ga omhoog" -#: Gtk/FileViewList.vala:3746 +#: Gtk/FileViewList.vala:3685 msgid "Go to location" msgstr "Ga naar locatie" -#: Gtk/Settings.vala:2390 +#: Gtk/Settings.vala:2411 msgid "Graphics" msgstr "Videokaart" -#: Gtk/Settings.vala:2426 +#: Gtk/Settings.vala:2447 msgid "" "Graphics card to emulate for guest machine.\n" "\n" @@ -1829,8 +1817,8 @@ "\n" "qxl - Krachtige videokaart voor het gebruiken van SPICE." -#: Gtk/FileViewList.vala:414 Gtk/FileViewList.vala:935 -#: Gtk/PropertiesWindow.vala:620 Gtk/PropertiesWindow.vala:846 +#: Gtk/FileViewList.vala:412 Gtk/FileViewList.vala:933 +#: Gtk/PropertiesWindow.vala:660 Gtk/PropertiesWindow.vala:865 #, c-format msgid "Group" msgstr "Groep" @@ -1839,7 +1827,7 @@ msgid "Headerbar" msgstr "Kopbalk" -#: Gtk/PropertiesWindow.vala:278 +#: Gtk/PropertiesWindow.vala:285 msgid "Headers" msgstr "Koppen" @@ -1847,16 +1835,12 @@ msgid "Help" msgstr "Hulp" -#: Gtk/Settings.vala:493 -msgid "Hidden" -msgstr "Verborgen" - -#: Gtk/CreateArchiveWindow.vala:1802 Gtk/FileContextMenu.vala:1295 +#: Gtk/CreateArchiveWindow.vala:1802 Gtk/FileContextMenu.vala:1342 #: Gtk/PasswordDialog.vala:202 msgid "Hide" msgstr "Verbergen" -#: Gtk/FileContextMenu.vala:1296 +#: Gtk/FileContextMenu.vala:1343 msgid "Hide selected items" msgstr "Geselecteerde items verbergen" @@ -1864,12 +1848,12 @@ msgid "History" msgstr "" -#: Gtk/FileViewToolbar.vala:217 Gtk/Pathbar.vala:909 Gtk/Settings.vala:459 -#: Gtk/Settings.vala:837 Gtk/Sidebar.vala:338 +#: Gtk/FileViewToolbar.vala:217 Gtk/Pathbar.vala:887 Gtk/PlacesPopover.vala:622 +#: Gtk/Settings.vala:459 Gtk/Settings.vala:837 Gtk/Sidebar.vala:340 msgid "Home" msgstr "Persoonlijke map" -#: Gtk/MainMenubar.vala:1908 +#: Gtk/MainMenubar.vala:1907 msgid "Homepage" msgstr "Startpagina" @@ -1881,45 +1865,41 @@ msgid "Host IP (Eg: 192.0.10.1)" msgstr "" -#: Gtk/FileContextMenu.vala:1581 -msgid "ISO" -msgstr "ISO" - #: Utility/Gtk/AboutWindow.vala:467 msgid "Icon Themes & Utilities" msgstr "Pictogramthema's en hulpmiddelen" -#: Gtk/Settings.vala:1562 +#: Gtk/Settings.vala:1583 msgid "Icon View" msgstr "Pictogramweergave" -#: Gtk/Settings.vala:1648 Gtk/Settings.vala:1803 Gtk/Settings.vala:2004 +#: Gtk/Settings.vala:1669 Gtk/Settings.vala:1824 Gtk/Settings.vala:2025 msgid "Icon size" msgstr "Pictogramgrootte" -#: Gtk/FileViewToolbar.vala:402 Gtk/Settings.vala:1260 Gtk/ViewPopover.vala:134 +#: Gtk/FileViewToolbar.vala:398 Gtk/Settings.vala:1267 Gtk/ViewPopover.vala:134 msgid "Icons" msgstr "Pictogrammen" -#: Gtk/Settings.vala:2565 Gtk/Settings.vala:2579 +#: Gtk/Settings.vala:2586 Gtk/Settings.vala:2600 msgid "If selected, the action will remove original file on success" msgstr "" -#: Gtk/Settings.vala:2593 Gtk/Settings.vala:2607 Gtk/Settings.vala:2621 -#: Gtk/Settings.vala:2635 Gtk/Settings.vala:2649 Gtk/Settings.vala:2663 -#: Gtk/Settings.vala:2677 Gtk/Settings.vala:2692 Gtk/Settings.vala:2706 -#: Gtk/Settings.vala:2720 Gtk/Settings.vala:2734 Gtk/Settings.vala:2748 -#: Gtk/Settings.vala:2762 Gtk/Settings.vala:2776 +#: Gtk/Settings.vala:2614 Gtk/Settings.vala:2628 Gtk/Settings.vala:2642 +#: Gtk/Settings.vala:2656 Gtk/Settings.vala:2670 Gtk/Settings.vala:2684 +#: Gtk/Settings.vala:2698 Gtk/Settings.vala:2713 Gtk/Settings.vala:2727 +#: Gtk/Settings.vala:2741 Gtk/Settings.vala:2755 Gtk/Settings.vala:2769 +#: Gtk/Settings.vala:2783 Gtk/Settings.vala:2797 msgid "" "If selected, the action will replace original file on success, instead of " "creating new file." msgstr "" -#: Gtk/FileContextMenu.vala:2206 +#: Gtk/FileContextMenu.vala:2253 msgid "Image" msgstr "" -#: Gtk/Settings.vala:2314 +#: Gtk/Settings.vala:2335 msgid "Image Actions" msgstr "" @@ -1945,7 +1925,7 @@ msgid "Install Rclone (Cloud Storage Support)" msgstr "" -#: Gtk/FileContextMenu.vala:1855 +#: Gtk/FileContextMenu.vala:1902 msgid "Install from ISO..." msgstr "Installeren vanuit ISO-bestand..." @@ -1953,19 +1933,19 @@ msgid "Install p7zip 16.02 (Archive Support)" msgstr "" -#: Gtk/FileViewList.vala:5645 Gtk/FileViewList.vala:5667 +#: Gtk/FileViewList.vala:5671 Gtk/FileViewList.vala:5693 msgid "Install required packages and try again" msgstr "" -#: Gtk/FileViewList.vala:4302 +#: Gtk/FileViewList.vala:4241 msgid "Internal Error" msgstr "Interne fout" -#: Utility/Device.vala:488 +#: Utility/Device.vala:496 msgid "Invalid Passphrase" msgstr "" -#: Gtk/FileViewList.vala:5904 +#: Gtk/FileViewList.vala:5930 msgid "Invalid Path" msgstr "" @@ -1973,7 +1953,7 @@ msgid "Invalid Server Name" msgstr "" -#: Gtk/MainMenubar.vala:1918 +#: Gtk/MainMenubar.vala:1917 msgid "Issue Tracker" msgstr "Probleemtracker" @@ -1987,7 +1967,7 @@ msgid "Item" msgstr "Item" -#: Gtk/FileViewList.vala:390 +#: Gtk/FileViewList.vala:388 msgid "Item is not a symbolic link" msgstr "" @@ -1995,15 +1975,15 @@ msgid "Items" msgstr "Items" -#: Gtk/FileContextMenu.vala:1720 +#: Gtk/FileContextMenu.vala:1767 msgid "KVM" msgstr "KVM" -#: Gtk/PropertiesWindow.vala:1002 +#: Gtk/PropertiesWindow.vala:1023 msgid "Key" msgstr "Sleutel" -#: Gtk/MainMenubar.vala:1938 +#: Gtk/MainMenubar.vala:1937 msgid "Keyboard Shortcuts" msgstr "Sneltoetsen" @@ -2011,7 +1991,7 @@ msgid "Korn shell (ksh)" msgstr "" -#: Gtk/PropertiesWindow.vala:476 Utility/Device.vala:2415 +#: Gtk/PropertiesWindow.vala:506 Gtk/Sidebar.vala:715 Utility/Device.vala:2437 #, c-format msgid "Label" msgstr "Label" @@ -2024,7 +2004,7 @@ msgid "Large icons" msgstr "Grote pictogrammen" -#: Gtk/FileViewList.vala:399 +#: Gtk/FileViewList.vala:397 #, c-format msgid "Last modified date" msgstr "Laatst aangepast-datum" @@ -2050,27 +2030,27 @@ msgid "License" msgstr "Licentie" -#: Gtk/Settings.vala:2481 +#: Gtk/Settings.vala:2502 msgid "" "Limit the CPU usage for VM process. It is recommended to keep this below 90 " "to prevent the host system from becoming unresponsive when intensive tasks " "are running in the guest OS." msgstr "" -#: Gtk/PropertiesWindow.vala:178 +#: Gtk/PropertiesWindow.vala:185 msgid "Link Target" msgstr "Linkdoel" -#: Gtk/FileViewList.vala:383 Gtk/FileViewList.vala:386 +#: Gtk/FileViewList.vala:381 Gtk/FileViewList.vala:384 #, c-format msgid "Link to" msgstr "Koppelen aan" -#: Gtk/FileViewToolbar.vala:395 Gtk/Settings.vala:1258 Gtk/ViewPopover.vala:127 +#: Gtk/FileViewToolbar.vala:391 Gtk/Settings.vala:1265 Gtk/ViewPopover.vala:127 msgid "List" msgstr "Lijst" -#: Gtk/Settings.vala:1544 +#: Gtk/Settings.vala:1565 msgid "List View" msgstr "Lijstweergave" @@ -2082,28 +2062,33 @@ msgid "Listing source items..." msgstr "" -#: Gtk/FileViewList.vala:3396 +#: Gtk/FileViewList.vala:3331 msgid "Loading..." msgstr "" -#: Gtk/CreateArchiveWindow.vala:404 Gtk/PropertiesWindow.vala:175 +#: Gtk/CreateArchiveWindow.vala:404 Gtk/PropertiesWindow.vala:182 msgid "Location" msgstr "Locatie" -#: Gtk/Sidebar.vala:919 +#: Gtk/Sidebar.vala:958 msgid "Location not found" msgstr "Locatie niet gevonden" -#: Gtk/DeviceContextMenu.vala:198 +#: Gtk/DeviceContextMenu.vala:225 msgid "Lock" msgstr "" -#: Utility/Device.vala:561 Utility/Device.vala:1909 +#: Gtk/FileViewTab.vala:295 +#, fuzzy +msgid "Lock Path" +msgstr "Pad" + +#: Utility/Device.vala:569 Utility/Device.vala:1931 #, c-format msgid "Locked" msgstr "Vergrendeld" -#: Utility/Device.vala:560 Utility/Device.vala:1908 +#: Utility/Device.vala:568 Utility/Device.vala:1930 msgid "Locked successfully" msgstr "Succesvol vergrendeld" @@ -2115,23 +2100,24 @@ msgid "Logout from cloud storage account" msgstr "Uitloggen van cloudopslag-account" -#: Gtk/FileViewList.vala:1150 +#: Gtk/FileViewList.vala:1148 msgid "MD5" msgstr "MD5" -#: Gtk/FileViewToolbar.vala:483 +#: Gtk/FileViewToolbar.vala:479 msgid "Make a donation" msgstr "Doneren" -#: Gtk/DeviceContextMenu.vala:247 +#: Gtk/DeviceContextMenu.vala:270 msgid "Manage device using GNOME disk utility" msgstr "" -#: Gtk/DeviceContextMenu.vala:246 +#: Gtk/DeviceContextMenu.vala:269 msgid "Manage..." msgstr "" -#: Gtk/PropertiesWindow.vala:471 +#: Gtk/PropertiesWindow.vala:501 Gtk/Sidebar.vala:710 +#, c-format msgid "Mapped" msgstr "In kaart gebracht" @@ -2139,7 +2125,7 @@ msgid "Maximize" msgstr "Maximaliseren" -#: Gtk/Settings.vala:1210 +#: Gtk/Settings.vala:1217 msgid "Maximize on startup" msgstr "Gemaximaliseerd opstarten" @@ -2151,19 +2137,19 @@ msgid "Maximum" msgstr "Maximum" -#: Gtk/FileViewToolbar.vala:416 Gtk/Settings.vala:1264 Gtk/ViewPopover.vala:148 +#: Gtk/FileViewToolbar.vala:412 Gtk/Settings.vala:1271 Gtk/ViewPopover.vala:148 msgid "Media" msgstr "Media" -#: Gtk/PropertiesWindow.vala:995 +#: Gtk/PropertiesWindow.vala:1016 msgid "MediaInfo" msgstr "Media-informatie" -#: Gtk/FileViewList.vala:3385 +#: Gtk/FileViewList.vala:3320 msgid "Menubar: File > New Admin Window" msgstr "" -#: Gtk/FileContextMenu.vala:2017 Gtk/Settings.vala:2576 +#: Gtk/FileContextMenu.vala:2064 Gtk/Settings.vala:2597 msgid "Merge" msgstr "" @@ -2171,20 +2157,20 @@ msgid "Merge Derived Disk" msgstr "Afgeleide schijf samenvoegen" -#: Gtk/FileContextMenu.vala:2018 +#: Gtk/FileContextMenu.vala:2065 msgid "Merge selected PDF files into one document" msgstr "Geselecteerde PDF-bestanden samenvoegen in één document" -#: Gtk/CreateArchiveWindow.vala:614 Gtk/PropertiesWindow.vala:225 +#: Gtk/CreateArchiveWindow.vala:614 Gtk/PropertiesWindow.vala:232 msgid "Method" msgstr "Methode" -#: Gtk/PropertiesWindow.vala:290 Utility/FileItem.vala:660 +#: Gtk/PropertiesWindow.vala:297 Utility/FileItem.vala:660 #, c-format msgid "Mime" msgstr "Mime" -#: Gtk/FileViewList.vala:405 +#: Gtk/FileViewList.vala:403 #, c-format msgid "Mime type" msgstr "Mimesoort" @@ -2193,79 +2179,67 @@ msgid "Minimize" msgstr "Minimaliseren" -#: Gtk/Settings.vala:1482 -msgid "" -"Minimize to system tray when window is closed instead of exiting the " -"application. Opening another folder will be much faster, as the application " -"would already be running in the background." -msgstr "" -"Minimaliseren naar systeemvak als het venster wordt gesloten i.p.v. de " -"applicatie afsluiten. Het openen van een map zal veel sneller gaan omdat de " -"applicatie al op de achtergrond draait." - -#: Gtk/Settings.vala:1479 -msgid "Minimize to tray" -msgstr "Minimaliseren naar systeemvak" - #: Gtk/ToolsWindow.vala:155 msgid "Missing" msgstr "Ontbreken" -#: Gtk/MainWindow.vala:549 +#: Gtk/MainWindow.vala:548 msgid "Missing Dependencies" msgstr "Ontbrekende afhankelijkheden" -#: Gtk/DeviceContextMenu.vala:554 Gtk/DeviceContextMenu.vala:571 -#: Gtk/FileViewList.vala:5644 +#: Gtk/DeviceContextMenu.vala:598 Gtk/DeviceContextMenu.vala:615 +#: Gtk/FileViewList.vala:5670 msgid "Missing Dependency" msgstr "Ontbrekende afhankelijkheid" -#: Utility/Gtk/GtkHelper.vala:362 +#: Utility/Gtk/GtkHelper.vala:376 msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: Gtk/FileViewList.vala:5666 +#: Gtk/FileViewList.vala:5692 msgid "Missing Plugin" msgstr "" -#: Utility/Device.vala:2398 +#: Utility/Device.vala:2420 #, c-format msgid "Model" msgstr "Model" #: Gtk/FileConflictDialog.vala:543 Gtk/FileConflictDialog.vala:555 -#: Gtk/FileViewList.vala:806 Gtk/PropertiesWindow.vala:308 +#: Gtk/FileViewList.vala:804 Gtk/PropertiesWindow.vala:315 #: Utility/FileItem.vala:657 #, c-format msgid "Modified" msgstr "Bewerkt" -#: Gtk/FileContextMenu.vala:1104 +#: Gtk/FileContextMenu.vala:1151 msgid "More options" msgstr "Meer opties" -#: Gtk/DeviceContextMenu.vala:152 Gtk/DeviceContextMenu.vala:298 -#: Gtk/FileContextMenu.vala:1611 Gtk/PropertiesWindow.vala:481 +#: Gtk/DeviceContextMenu.vala:179 Gtk/FileContextMenu.vala:1658 +#: Gtk/PropertiesWindow.vala:513 Gtk/Sidebar.vala:722 +#, c-format msgid "Mount" msgstr "Aankoppelen" -#: Gtk/FileContextMenu.vala:1835 +#: Gtk/FileContextMenu.vala:1882 msgid "Mount Disk" msgstr "Schijf aankoppelen" -#: Gtk/FileContextMenu.vala:1612 -msgid "Mount the ISO file as a read-only disk" +#: Gtk/FileContextMenu.vala:1659 +#, fuzzy +msgid "Mount the disk image as read-only device" msgstr "ISO-bestand aankoppelen als alleen-lezen-schijf" -#: Gtk/FileContextMenu.vala:1836 +#: Gtk/FileContextMenu.vala:1883 msgid "Mount the selected disk" msgstr "Geselecteerde schijf aankoppelen" -#: Gtk/DeviceContextMenu.vala:153 Gtk/DeviceContextMenu.vala:299 +#: Gtk/DeviceContextMenu.vala:180 msgid "Mount this volume" msgstr "Dit volume aankoppelen" -#: Gtk/FileViewList.vala:5007 +#: Gtk/FileViewList.vala:5027 #, c-format msgid "Mounted ISO" msgstr "ISO aangekoppeld" @@ -2274,7 +2248,7 @@ msgid "Mounted successfully" msgstr "Succesvol aangekoppeld" -#: Gtk/FileContextMenu.vala:1211 +#: Gtk/FileContextMenu.vala:1258 msgid "Move Across" msgstr "Heen-en-weer verplaatsen" @@ -2289,7 +2263,7 @@ msgid "Move Down" msgstr "Omlaag verplaatsen" -#: Gtk/FileContextMenu.vala:1171 +#: Gtk/FileContextMenu.vala:1218 msgid "Move To..." msgstr "Verplaatsen naar..." @@ -2309,11 +2283,11 @@ msgid "Move selected item up" msgstr "Geselecteerd item omhoog verplaatsen" -#: Gtk/FileContextMenu.vala:1172 +#: Gtk/FileContextMenu.vala:1219 msgid "Move to another location" msgstr "Naar andere locatie verplaatsen" -#: Gtk/FileContextMenu.vala:1212 +#: Gtk/FileContextMenu.vala:1259 msgid "Move to other pane" msgstr "Naar ander paneel verplaatsen" @@ -2334,7 +2308,7 @@ msgid "Multiple items selected" msgstr "Meerdere items geselecteerd" -#: Gtk/Sidebar.vala:342 +#: Gtk/PlacesPopover.vala:626 Gtk/Sidebar.vala:344 msgid "Music" msgstr "Muziek" @@ -2346,18 +2320,18 @@ msgid "NETBIOS Name" msgstr "" -#: Gtk/FileViewList.vala:396 +#: Gtk/FileViewList.vala:394 msgid "NTD = Rename Trash Delete" msgstr "NNV = Naam wijzigen Naar prullenbak Verwijderen" #: Gtk/ColumnSelectionBox.vala:111 Gtk/CreateArchiveWindow.vala:259 -#: Gtk/FileViewList.vala:648 Gtk/PropertiesWindow.vala:169 +#: Gtk/FileViewList.vala:646 Gtk/PropertiesWindow.vala:176 #: Utility/FileItem.vala:654 #, c-format msgid "Name" msgstr "Naam" -#: Gtk/FileContextMenu.vala:586 +#: Gtk/FileContextMenu.vala:588 msgid "New" msgstr "Nieuw" @@ -2365,15 +2339,15 @@ msgid "New Admin Window" msgstr "Nieuw administratorvenster" -#: Gtk/FileViewList.vala:4653 +#: Gtk/FileViewList.vala:4589 msgid "New File" msgstr "" -#: Gtk/FileViewList.vala:4619 +#: Gtk/FileViewList.vala:4555 msgid "New Folder" msgstr "" -#: Gtk/FileViewTab.vala:323 Gtk/MainMenubar.vala:158 +#: Gtk/FileViewTab.vala:361 Gtk/MainMenubar.vala:158 msgid "New Tab" msgstr "Nieuw tabblad" @@ -2398,39 +2372,38 @@ "De nieuwe schijf zal worden gecreëerd door het samenvoegen van de inhoud van " "de afgeleide en basisbestanden" -#: Gtk/Pathbar.vala:849 Gtk/Settings.vala:408 Gtk/Settings.vala:797 #: Gtk/WizardWindow.vala:114 msgid "Next" msgstr "Volgende" -#: Gtk/MediaBar.vala:147 Gtk/PropertiesWindow.vala:230 -#: Gtk/PropertiesWindow.vala:235 Utility/Gtk/CustomMessageDialog.vala:177 +#: Gtk/MediaBar.vala:146 Gtk/PropertiesWindow.vala:237 +#: Gtk/PropertiesWindow.vala:242 Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "Nee" -#: Gtk/FileViewList.vala:6037 +#: Gtk/FileViewList.vala:6063 msgid "No Files Selected" msgstr "Geen bestanden geselecteerd" -#: Gtk/FileViewList.vala:5500 Gtk/FileViewList.vala:5520 -#: Gtk/FileViewList.vala:5540 Gtk/FileViewList.vala:5560 -#: Gtk/FileViewList.vala:5580 Gtk/FileViewList.vala:5600 +#: Gtk/FileViewList.vala:5518 Gtk/FileViewList.vala:5538 +#: Gtk/FileViewList.vala:5558 Gtk/FileViewList.vala:5578 +#: Gtk/FileViewList.vala:5598 Gtk/FileViewList.vala:5618 msgid "No Images Selected" msgstr "" -#: Gtk/FileViewList.vala:5480 +#: Gtk/FileViewList.vala:5498 msgid "No JPEGs Selected" msgstr "" -#: Gtk/FileViewList.vala:5458 +#: Gtk/FileViewList.vala:5476 msgid "No PNGs Selected" msgstr "" -#: Gtk/FileViewList.vala:4576 +#: Gtk/FileViewList.vala:4512 msgid "No Permission" msgstr "Geen toegang" -#: Gtk/FileContextMenu.vala:1699 +#: Gtk/FileContextMenu.vala:1746 msgid "No USB devices found" msgstr "Geen USB-apparaten gevonden" @@ -2438,15 +2411,12 @@ msgid "Normal" msgstr "Normaal" -#: Gtk/ProgressPanelFileTask.vala:433 -msgid "Not Responding" -msgstr "Reageert niet" - -#: Gtk/FileViewList.vala:5834 Gtk/FileViewList.vala:5930 +#: Gtk/FileViewList.vala:4974 Gtk/FileViewList.vala:4981 +#: Gtk/FileViewList.vala:5860 Gtk/FileViewList.vala:5956 msgid "Not Supported" msgstr "" -#: Gtk/Settings.vala:2454 +#: Gtk/Settings.vala:2475 msgid "" "Number of CPU cores to emulate for guest machine. This can be greater than " "the number of cores on host machine." @@ -2456,13 +2426,13 @@ #: Gtk/FileConflictDialog.vala:254 Gtk/ProgressPanelArchiveTask.vala:521 #: Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:139 +#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:153 #: Utility/Gtk/LoadingWindow.vala:110 msgid "OK" msgstr "Oké" -#: Gtk/DeviceContextMenu.vala:128 Gtk/FileContextMenu.vala:236 -#: Gtk/FileContextMenu.vala:305 Gtk/FileContextMenu.vala:1460 +#: Gtk/DeviceContextMenu.vala:153 Gtk/FileContextMenu.vala:238 +#: Gtk/FileContextMenu.vala:307 Gtk/FileContextMenu.vala:1507 #: Gtk/MainMenubar.vala:1241 msgid "Open" msgstr "Openen" @@ -2479,59 +2449,59 @@ msgid "Open Opposite" msgstr "Tegenovergestelde openen" -#: Gtk/FileContextMenu.vala:1034 +#: Gtk/FileContextMenu.vala:1031 msgid "Open Original Location" msgstr "Originele locatie openen" -#: Gtk/FileContextMenu.vala:796 +#: Gtk/FileContextMenu.vala:798 msgid "Open Templates Folder" msgstr "Sjablonenmap openen" -#: Gtk/FileContextMenu.vala:1057 +#: Gtk/FileContextMenu.vala:1054 msgid "Open Trash Directory" msgstr "Prullenbak openen" -#: Gtk/FileContextMenu.vala:328 Gtk/FileContextMenu.vala:362 +#: Gtk/FileContextMenu.vala:330 Gtk/FileContextMenu.vala:364 msgid "Open With" msgstr "Openen met" -#: Gtk/FileContextMenu.vala:671 +#: Gtk/FileContextMenu.vala:673 msgid "Open a terminal window" msgstr "Terminalvenster openen" -#: Gtk/FileViewList.vala:3384 +#: Gtk/FileViewList.vala:3319 msgid "Open an admin window to browse this folder" msgstr "" -#: Gtk/FileContextMenu.vala:1461 +#: Gtk/FileContextMenu.vala:1508 msgid "Open archive" msgstr "" -#: Gtk/FileContextMenu.vala:564 +#: Gtk/FileContextMenu.vala:566 msgid "Open as Admin" msgstr "Als administrator openen" -#: Gtk/FileContextMenu.vala:565 +#: Gtk/FileContextMenu.vala:567 msgid "Open folder as administrator" msgstr "Map openen als administrator" -#: Gtk/FileContextMenu.vala:523 +#: Gtk/FileContextMenu.vala:525 msgid "Open folder in new tab" msgstr "Map openen op nieuw tabblad" -#: Gtk/FileContextMenu.vala:544 +#: Gtk/FileContextMenu.vala:546 msgid "Open folder in new window" msgstr "Map openen in nieuw venster" -#: Gtk/FileContextMenu.vala:522 +#: Gtk/FileContextMenu.vala:524 msgid "Open in New Tab" msgstr "Openen op nieuw tabblad" -#: Gtk/FileContextMenu.vala:543 +#: Gtk/FileContextMenu.vala:545 msgid "Open in New Window" msgstr "Openen in nieuw venster" -#: Gtk/DeviceContextMenu.vala:129 +#: Gtk/DeviceContextMenu.vala:154 msgid "Open in active pane" msgstr "Openen in actief paneel" @@ -2543,11 +2513,11 @@ msgid "Open menu" msgstr "Menu openen" -#: Gtk/FileContextMenu.vala:690 +#: Gtk/FileContextMenu.vala:692 msgid "Open new tab" msgstr "Nieuw tabblad openen" -#: Gtk/FileContextMenu.vala:709 +#: Gtk/FileContextMenu.vala:711 msgid "Open new window" msgstr "Nieuw venster openen" @@ -2559,15 +2529,15 @@ msgid "Open right-pane location in left pane" msgstr "Rechterpaneel-locatie openen in linkerpaneel" -#: Gtk/FileContextMenu.vala:306 +#: Gtk/FileContextMenu.vala:308 msgid "Open selected item" msgstr "Geselecteerd item openen" -#: Gtk/FileContextMenu.vala:797 +#: Gtk/FileContextMenu.vala:799 msgid "Open templates folder" msgstr "Sjablonenmap openen" -#: Gtk/FileContextMenu.vala:1058 +#: Gtk/FileContextMenu.vala:1055 msgid "Open the actual location of trashed item in a new tab" msgstr "Werkelijke locatie van item in prullenbak openen op nieuw tabblad" @@ -2575,7 +2545,7 @@ msgid "Open the next visited location" msgstr "Volgende bezochte locatie openen" -#: Gtk/FileContextMenu.vala:1035 +#: Gtk/FileContextMenu.vala:1032 msgid "Open the original location of trashed item in a new tab" msgstr "Originele locatie van item in prullenbak openen op nieuw tabblad" @@ -2587,39 +2557,39 @@ msgid "Open the previous visited location" msgstr "Vorige bezochte locatie openen" -#: Gtk/FileContextMenu.vala:1341 +#: Gtk/FileContextMenu.vala:1388 msgid "Open the symbolic link's target location" msgstr "Doellocatie van symlink openen" -#: Gtk/Pathbar.vala:939 +#: Gtk/Pathbar.vala:917 msgid "Open this directory path in opposite pane" msgstr "Dit mappad openen in het tegenovergestelde paneel" -#: Gtk/FileContextMenu.vala:728 +#: Gtk/FileContextMenu.vala:730 msgid "Open window as administrator" msgstr "Venster openen als administrator" -#: Gtk/FileContextMenu.vala:292 +#: Gtk/FileContextMenu.vala:294 msgid "Open with default application" msgstr "Openen met standaard applicatie" -#: Gtk/FileContextMenu.vala:329 Gtk/FileContextMenu.vala:388 +#: Gtk/FileContextMenu.vala:331 Gtk/FileContextMenu.vala:390 msgid "Open with other applications" msgstr "Openen met andere applicaties" -#: Gtk/Settings.vala:2674 +#: Gtk/Settings.vala:2695 msgid "Optimize" msgstr "" -#: Gtk/FileContextMenu.vala:2119 +#: Gtk/FileContextMenu.vala:2166 msgid "Optimize For" msgstr "Optimaliseren voor" -#: Gtk/Settings.vala:2689 +#: Gtk/Settings.vala:2710 msgid "Optimize PNG" msgstr "" -#: Gtk/FileContextMenu.vala:2269 +#: Gtk/FileContextMenu.vala:2316 msgid "Optimize PNG (lossless)" msgstr "" @@ -2640,24 +2610,24 @@ msgid "Optional: guest (default)" msgstr "" -#: Gtk/PoloGtk.vala:144 Gtk/Settings.vala:1743 Gtk/Settings.vala:1927 -#: Gtk/Settings.vala:2130 +#: Gtk/PoloGtk.vala:144 Gtk/Settings.vala:1764 Gtk/Settings.vala:1948 +#: Gtk/Settings.vala:2151 msgid "Options" msgstr "Opties" -#: Gtk/FileViewList.vala:1236 +#: Gtk/FileViewList.vala:1234 msgid "Original Location" msgstr "Originele locatie" -#: Gtk/FileContextMenu.vala:387 +#: Gtk/FileContextMenu.vala:389 msgid "Other" msgstr "Overig" -#: Gtk/FileContextMenu.vala:496 Gtk/PropertiesWindow.vala:624 +#: Gtk/FileContextMenu.vala:498 Gtk/PropertiesWindow.vala:664 msgid "Others" msgstr "Overigen" -#: Gtk/FileViewList.vala:5674 +#: Gtk/FileViewList.vala:5700 msgid "Outdated Plugin" msgstr "" @@ -2665,23 +2635,23 @@ msgid "Overwrite existing file?" msgstr "Bestaand bestand overschrijven?" -#: Gtk/FileViewList.vala:892 Gtk/PropertiesWindow.vala:788 +#: Gtk/FileViewList.vala:890 Gtk/PropertiesWindow.vala:807 msgid "Owner" msgstr "Eigenaar" -#: Gtk/FileContextMenu.vala:1956 +#: Gtk/FileContextMenu.vala:2003 msgid "PDF" msgstr "PDF" -#: Gtk/Settings.vala:2291 +#: Gtk/Settings.vala:2312 msgid "PDF Actions" msgstr "" -#: Gtk/FileViewList.vala:849 Gtk/PropertiesWindow.vala:254 +#: Gtk/FileViewList.vala:847 Gtk/PropertiesWindow.vala:261 msgid "Packed" msgstr "Ingepakt" -#: Gtk/Settings.vala:2077 +#: Gtk/Settings.vala:2098 msgid "Padding" msgstr "Opvulling" @@ -2689,16 +2659,21 @@ msgid "Panes" msgstr "Panelen" -#: Utility/Device.vala:2410 +#: Utility/Device.vala:2432 #, c-format msgid "Parent Device" msgstr "Bovenliggend apparaat" -#: Gtk/FileViewList.vala:5931 +#: Gtk/PropertiesWindow.vala:508 Gtk/Sidebar.vala:717 +#, fuzzy, c-format +msgid "PartLabel" +msgstr "Label" + +#: Gtk/FileViewList.vala:5957 msgid "Partial extraction not supported for solid archives" msgstr "Gedeeltelijk uitpakken wordt niet ondersteund voor solide archieven" -#: Gtk/DeviceContextMenu.vala:526 +#: Gtk/DeviceContextMenu.vala:570 msgid "" "Partitions on following device will be unmounted and device will be ejected:" msgstr "" @@ -2737,7 +2712,7 @@ "\n" "Items plakken in het actieve paneel" -#: Gtk/FileContextMenu.vala:1270 +#: Gtk/FileContextMenu.vala:1317 msgid "Paste Hardlinks" msgstr "Harde koppelingen plakken" @@ -2749,11 +2724,11 @@ msgid "Paste Into Folder" msgstr "" -#: Gtk/FileContextMenu.vala:1233 +#: Gtk/FileContextMenu.vala:1280 msgid "Paste Symlinks" msgstr "Symlinks plakken" -#: Gtk/FileContextMenu.vala:1252 +#: Gtk/FileContextMenu.vala:1299 msgid "Paste Symlinks (relative)" msgstr "Symlinks plakken (relatief)" @@ -2761,7 +2736,7 @@ msgid "Paste clipboard contents" msgstr "Klembordinhoud plakken" -#: Gtk/FileContextMenu.vala:1271 +#: Gtk/FileContextMenu.vala:1318 msgid "" "Paste hard links to selected items in this directory.\n" "\n" @@ -2782,7 +2757,7 @@ msgid "Paste items into selected directory" msgstr "" -#: Gtk/FileContextMenu.vala:1234 +#: Gtk/FileContextMenu.vala:1281 msgid "" "Paste symbolic links to selected items in this directory. Absolute path will " "be used for symlink target." @@ -2790,7 +2765,7 @@ "Symlinks plakken naar geselecteerde items in deze map. Het absolute pad zal " "worden gebruikt voor het symlinkdoel." -#: Gtk/FileContextMenu.vala:1253 +#: Gtk/FileContextMenu.vala:1300 msgid "" "Paste symbolic links to selected items in this directory. Relative paths " "will be used for symlink target.\n" @@ -2804,11 +2779,16 @@ "Dit is handig als de bestanden zich bevinden op een verwijderbare schijf " "omdat absolute paden wijzigen als de schijf is aangekoppeld op een ander pad." -#: Gtk/FileConflictDialog.vala:405 Utility/Device.vala:362 -#: Utility/Device.vala:1672 +#: Gtk/FileConflictDialog.vala:405 Utility/Device.vala:370 +#: Utility/Device.vala:1688 msgid "Path" msgstr "Pad" +#: Gtk/PlacesPopover.vala:474 +#, fuzzy +msgid "Path Not Found" +msgstr "Pad niet gevonden" + #: Gtk/BookmarksMenu.vala:132 msgid "Path not found" msgstr "Pad niet gevonden" @@ -2823,21 +2803,25 @@ msgid "Pause" msgstr "Pauzeren" -#: Gtk/FileViewList.vala:417 Gtk/FileViewList.vala:978 -#: Gtk/PropertiesWindow.vala:600 Gtk/PropertiesWindow.vala:602 +#: Gtk/Settings.vala:1207 +msgid "Performance" +msgstr "" + +#: Gtk/FileViewList.vala:415 Gtk/FileViewList.vala:976 +#: Gtk/PropertiesWindow.vala:640 Gtk/PropertiesWindow.vala:642 #, c-format msgid "Permissions" msgstr "Rechten" -#: Gtk/Sidebar.vala:341 +#: Gtk/PlacesPopover.vala:625 Gtk/Sidebar.vala:343 msgid "Pictures" msgstr "Afbeeldingen" -#: Gtk/Settings.vala:956 Gtk/Sidebar.vala:332 +#: Gtk/Settings.vala:956 Gtk/Sidebar.vala:334 msgid "Places" msgstr "Locaties" -#: Common/Main.vala:488 +#: Common/Main.vala:490 msgid "Please install required packages and try running again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" @@ -2873,16 +2857,16 @@ msgid "Processed:" msgstr "Verwerkt:" -#: Gtk/FileContextMenu.vala:2530 Gtk/MiddleToolbar.vala:309 -#: Gtk/PropertiesWindow.vala:78 +#: Gtk/DeviceContextMenu.vala:317 Gtk/FileContextMenu.vala:2577 +#: Gtk/MiddleToolbar.vala:309 Gtk/PropertiesWindow.vala:96 msgid "Properties" msgstr "Eigenschappen" -#: Gtk/FileContextMenu.vala:2035 +#: Gtk/FileContextMenu.vala:2082 msgid "Protect the PDF document by adding password" msgstr "Beveilig het PDF-document door een wachtwoord toe te voegen" -#: Gtk/PropertiesWindow.vala:691 +#: Gtk/PropertiesWindow.vala:710 msgid "" "Protects files in shared directory from being deleted by other users. Only " "the owner of the file, owner of the directory or root user will be able to " @@ -2900,7 +2884,7 @@ "bestandsnamen wijzigen of door hun gecreëerde bestanden verwijderen. Ze " "kunnen geen bestanden verwijderen die gecreëerd zijn door andere gebruikers." -#: Gtk/Sidebar.vala:345 +#: Gtk/PlacesPopover.vala:629 Gtk/Sidebar.vala:347 msgid "Public" msgstr "Openbaar" @@ -2908,19 +2892,32 @@ msgid "Quad" msgstr "Drie panelen" -#: Gtk/FileViewToolbar.vala:374 +#: Gtk/FileViewToolbar.vala:370 msgid "Quad Pane" msgstr "Drie panelen" +#: Gtk/Settings.vala:1541 +msgid "" +"Query items in subfolders when a folder is loaded.\n" +"\n" +"Enabled - Folders display item count in 'Size' column\n" +"\n" +"Disabled - Folders display size of directory file in 'Size' column" +msgstr "" + +#: Gtk/Settings.vala:1538 +msgid "Query subfolders" +msgstr "" + #: Utility/MediaFile.vala:46 msgid "Queued" msgstr "In wachtrij" -#: Gtk/Settings.vala:2494 +#: Gtk/Settings.vala:2515 msgid "RAM (MB)" msgstr "RAM (MB)" -#: Gtk/FileViewList.vala:396 +#: Gtk/FileViewList.vala:394 msgid "RWX = Read Write Execute" msgstr "RWX = Read (lezen) Write (schrijven) Execute (uitvoeren)" @@ -2939,12 +2936,12 @@ "Download and install Rclone?" msgstr "" -#: Gtk/PropertiesWindow.vala:628 Gtk/PropertiesWindow.vala:634 -#: Gtk/PropertiesWindow.vala:640 +#: Gtk/PropertiesWindow.vala:668 Gtk/PropertiesWindow.vala:674 +#: Gtk/PropertiesWindow.vala:680 msgid "Read" msgstr "Lezen" -#: Gtk/FileViewList.vala:5123 +#: Gtk/FileViewList.vala:5141 msgid "" "Read-only disks cannot be booted.\n" "\n" @@ -2968,7 +2965,8 @@ "afgeleide schijf creëren uit dit bestand en daarvan opstarten i.p.v. deze " "schijf direct op te starten." -#: Gtk/PropertiesWindow.vala:484 +#: Gtk/PropertiesWindow.vala:516 Gtk/Sidebar.vala:725 +#, c-format msgid "ReadOnly" msgstr "Alleen-lezen" @@ -2992,39 +2990,39 @@ "Herbouwt de systeem-lettertypecache zodat nieuw geïnstalleerde lettertypen " "zichtbaar worden voor applicaties" -#: Gtk/FileContextMenu.vala:2320 +#: Gtk/FileContextMenu.vala:2367 msgid "Reduce Color" msgstr "" -#: Gtk/FileContextMenu.vala:2102 Gtk/Settings.vala:2590 +#: Gtk/FileContextMenu.vala:2149 Gtk/Settings.vala:2611 msgid "Reduce File Size" msgstr "Bestandsgrootte beperken" -#: Gtk/Settings.vala:2703 +#: Gtk/Settings.vala:2724 msgid "Reduce JPEG" msgstr "" -#: Gtk/FileContextMenu.vala:2286 +#: Gtk/FileContextMenu.vala:2333 msgid "Reduce JPEG Quality" msgstr "" -#: Gtk/FileContextMenu.vala:2321 +#: Gtk/FileContextMenu.vala:2368 msgid "" "Reduce color (less saturation). This can be used for correcting photos that " "are over-saturated (too much color)." msgstr "" -#: Gtk/FileContextMenu.vala:2287 +#: Gtk/FileContextMenu.vala:2334 msgid "Reduce file size of JPEG images by reducing quality" msgstr "" -#: Gtk/FileContextMenu.vala:2270 +#: Gtk/FileContextMenu.vala:2317 msgid "" "Reduce file size of PNG images without losing quality. PNG files will be re-" "packed using better compression algorithms." msgstr "" -#: Gtk/FileContextMenu.vala:2103 +#: Gtk/FileContextMenu.vala:2150 msgid "" "Reduce the file size of PDF document by downscaling images. Use the " "'Optimize For' submenu for more options." @@ -3044,7 +3042,7 @@ msgid "Remaining:" msgstr "Resterend:" -#: Gtk/Settings.vala:1467 +#: Gtk/Settings.vala:1474 msgid "Remember last session" msgstr "Laatste sessie onthouden" @@ -3068,28 +3066,28 @@ msgid "Remove Bookmark" msgstr "Bladwijzer verwijderen" -#: Gtk/FileContextMenu.vala:2068 Gtk/FileContextMenu.vala:2303 -#: Gtk/Settings.vala:2759 +#: Gtk/FileContextMenu.vala:2115 Gtk/FileContextMenu.vala:2350 +#: Gtk/Settings.vala:2780 msgid "Remove Color" msgstr "Kleur verwijderen" -#: Gtk/FileContextMenu.vala:2051 Gtk/Settings.vala:2632 +#: Gtk/FileContextMenu.vala:2098 Gtk/Settings.vala:2653 msgid "Remove Password" msgstr "Wachtwoord verwijderen" -#: Gtk/Sidebar.vala:517 +#: Gtk/Sidebar.vala:528 msgid "Remove bookmark" msgstr "Bladwijzer verwijderen" -#: Gtk/Sidebar.vala:518 +#: Gtk/Sidebar.vala:529 msgid "Remove bookmark for this location" msgstr "Bladwijzer voor deze locatie verwijderen" -#: Gtk/Settings.vala:2646 +#: Gtk/Settings.vala:2667 msgid "Remove color" msgstr "" -#: Gtk/FileContextMenu.vala:2069 +#: Gtk/FileContextMenu.vala:2116 msgid "Remove colors from PDF document" msgstr "Kleuren uit dit PDF-document verwijderen" @@ -3098,7 +3096,7 @@ msgstr "" #: Gtk/BookmarkContextMenu.vala:89 Gtk/FileContextMenu.vala:937 -#: Gtk/FileViewList.vala:4560 Gtk/MainMenubar.vala:739 Gtk/Sidebar.vala:1133 +#: Gtk/FileViewList.vala:4496 Gtk/MainMenubar.vala:739 Gtk/Sidebar.vala:1172 msgid "Rename" msgstr "Naam wijzigen" @@ -3126,7 +3124,7 @@ msgid "Replace Older" msgstr "Oudere hervangen" -#: Gtk/Settings.vala:2286 +#: Gtk/Settings.vala:2307 msgid "Replace Original Files ?" msgstr "" @@ -3146,7 +3144,7 @@ msgid "Replaced" msgstr "" -#: Gtk/FileViewList.vala:4423 +#: Gtk/FileViewList.vala:4362 msgid "Requested operation is not possible" msgstr "De gevraagde operatie is niet mogelijk" @@ -3159,13 +3157,14 @@ msgstr "" "Vereist thema-ondersteuning. Gebruik de 'donkere' variant van het GTK-thema." -#: Gtk/ColumnSelectionBox.vala:181 Gtk/Settings.vala:1729 -#: Gtk/Settings.vala:1913 Gtk/Settings.vala:2116 Gtk/TermContextMenu.vala:369 +#: Gtk/ColumnSelectionBox.vala:181 Gtk/Settings.vala:1750 +#: Gtk/Settings.vala:1934 Gtk/Settings.vala:2137 Gtk/TermContextMenu.vala:369 msgid "Reset" msgstr "Herstellen" -#: Gtk/FileViewTab.vala:273 -msgid "Reset Tab Name" +#: Gtk/FileViewTab.vala:277 +#, fuzzy +msgid "Reset Name" msgstr "Tabbladnaam herstellen" #: Gtk/TermContextMenu.vala:180 @@ -3180,11 +3179,11 @@ msgid "Reset to default columns" msgstr "Herstellen naar standaard kolommen" -#: Gtk/Settings.vala:2717 +#: Gtk/Settings.vala:2738 msgid "Resize" msgstr "" -#: Gtk/FileContextMenu.vala:2398 +#: Gtk/FileContextMenu.vala:2445 msgid "Resize to" msgstr "" @@ -3196,11 +3195,11 @@ msgid "Restart Application ?" msgstr "Applicatie opnieuw starten?" -#: Gtk/FileContextMenu.vala:1381 Gtk/TrashBar.vala:134 +#: Gtk/FileContextMenu.vala:1428 Gtk/TrashBar.vala:134 msgid "Restore" msgstr "Terugzetten" -#: Gtk/FileContextMenu.vala:1382 +#: Gtk/FileContextMenu.vala:1429 msgid "Restore item to the original location" msgstr "Item terugzetten naar originele locatie" @@ -3208,7 +3207,7 @@ msgid "Restore selected items to original locations" msgstr "Geselecteerde items terugzetten naar originele locaties" -#: Gtk/MainWindow.vala:1098 +#: Gtk/MainWindow.vala:1099 msgid "Restoring session..." msgstr "Bezig met herstellen van sessie..." @@ -3220,29 +3219,25 @@ msgid "Resume" msgstr "Hervatten" -#: Utility/Device.vala:2400 +#: Utility/Device.vala:2422 #, c-format msgid "Revision" msgstr "Revisie" -#: Gtk/FileContextMenu.vala:2158 Gtk/FileContextMenu.vala:2437 -#: Gtk/Settings.vala:2660 Gtk/Settings.vala:2731 +#: Gtk/FileContextMenu.vala:2205 Gtk/FileContextMenu.vala:2484 +#: Gtk/Settings.vala:2681 Gtk/Settings.vala:2752 msgid "Rotate" msgstr "" -#: Gtk/Settings.vala:1691 Gtk/Settings.vala:1841 Gtk/Settings.vala:2042 +#: Gtk/Settings.vala:1712 Gtk/Settings.vala:1862 Gtk/Settings.vala:2063 msgid "Row spacing" msgstr "Rijruimte" -#: Gtk/Settings.vala:1493 -msgid "Run at startup" -msgstr "Opstarten bij systeemopstart" - -#: Gtk/FileContextMenu.vala:1012 +#: Gtk/FileContextMenu.vala:1010 msgid "Run in Terminal" msgstr "Uitvoeren in terminal" -#: Gtk/FileContextMenu.vala:1013 +#: Gtk/FileContextMenu.vala:1011 msgid "Run the selected script in a terminal window" msgstr "Geselecteerd script uitvoeren in een terminalvenster" @@ -3258,7 +3253,7 @@ msgid "Running with Admin Priviledges (!)" msgstr "Uitvoeren met administratorrechten (!)" -#: Gtk/SelectionBar.vala:143 +#: Gtk/SelectionBar.vala:148 msgid "Select" msgstr "" @@ -3274,19 +3269,15 @@ msgid "Select Columns" msgstr "Selecteer kolommen" -#: Gtk/FileViewList.vala:4317 +#: Gtk/FileViewList.vala:4256 msgid "Select Copy Destination" msgstr "Selecteer kopieerbestemming" -#: Gtk/FileViewList.vala:5875 +#: Gtk/FileViewList.vala:5901 msgid "Select Destination" msgstr "Selecteer bestemming" -#: Gtk/ProgressPanelArchiveTask.vala:813 -msgid "Select Extraction Location" -msgstr "Selecteer uitpaklocatie" - -#: Utility/Gtk/GtkHelper.vala:770 +#: Utility/Gtk/GtkHelper.vala:777 msgid "Select File(s)" msgstr "Selecteer bestand(en)" @@ -3294,7 +3285,7 @@ msgid "Select Files to Replace" msgstr "" -#: Utility/Gtk/GtkHelper.vala:774 +#: Utility/Gtk/GtkHelper.vala:781 msgid "Select Folder(s)" msgstr "Selecteer map(pen)" @@ -3306,7 +3297,7 @@ msgid "Select Format" msgstr "" -#: Gtk/FileViewList.vala:5151 +#: Gtk/FileViewList.vala:5169 msgid "Select ISO File" msgstr "Selecteer ISO-bestand" @@ -3318,7 +3309,7 @@ msgid "Select ListView Columns" msgstr "Selecteer lijstweergave-kolommen" -#: Gtk/FileViewList.vala:4317 +#: Gtk/FileViewList.vala:4256 msgid "Select Move Destination" msgstr "Selecteer verplaatsbestemming" @@ -3330,10 +3321,15 @@ msgid "Select Older" msgstr "Selecteer oudere" -#: Utility/Gtk/GtkHelper.vala:1236 +#: Utility/Gtk/GtkHelper.vala:958 msgid "Select Path" msgstr "Selecteer pad" +#: Gtk/FileContextMenu.vala:1131 +#, fuzzy +msgid "Select Second File..." +msgstr "Selecteer ISO-bestand" + #: Gtk/FileConflictDialog.vala:258 msgid "Select all files in list" msgstr "Selecteer alle bestanden in de lijst" @@ -3346,25 +3342,35 @@ msgid "Select older files in list" msgstr "Selecteer oudere bestanden in de lijst" +#: Gtk/FileContextMenu.vala:1132 +#, fuzzy +msgid "Select second file for compare" +msgstr "Selecteer te verplaatsen item" + #: Gtk/ColumnSelectionBox.vala:285 Gtk/ColumnSelectionBox.vala:320 msgid "Select single item to move" msgstr "Selecteer te verplaatsen item" -#: Gtk/FileViewList.vala:5480 +#: Gtk/FileViewList.vala:5498 msgid "Select the JPEG image files to convert" msgstr "" -#: Gtk/FileViewList.vala:5458 +#: Gtk/FileViewList.vala:5476 msgid "Select the PNG image files to convert" msgstr "" -#: Gtk/FileViewList.vala:5500 Gtk/FileViewList.vala:5520 -#: Gtk/FileViewList.vala:5540 Gtk/FileViewList.vala:5560 -#: Gtk/FileViewList.vala:5580 Gtk/FileViewList.vala:5600 +#: Gtk/FileViewList.vala:5518 Gtk/FileViewList.vala:5538 +#: Gtk/FileViewList.vala:5558 Gtk/FileViewList.vala:5578 +#: Gtk/FileViewList.vala:5598 Gtk/FileViewList.vala:5618 msgid "Select the image files to convert" msgstr "" -#: Utility/Device.vala:2399 +#: Gtk/FileViewList.vala:4975 Gtk/FileViewList.vala:4982 +#, fuzzy, c-format +msgid "Selected item is not a text file" +msgstr "Selecteer te vervangen bestanden:" + +#: Utility/Device.vala:2421 #, c-format msgid "Serial" msgstr "Serieel" @@ -3377,35 +3383,35 @@ msgid "Session & Startup" msgstr "Sessie & Opstarten" -#: Gtk/FileContextMenu.vala:441 +#: Gtk/FileContextMenu.vala:443 msgid "Set Default" msgstr "Als standaard instellen" -#: Gtk/FileContextMenu.vala:471 +#: Gtk/FileContextMenu.vala:473 msgid "Set as Default and Open With" msgstr "Als standaard en openen met instellen" -#: Gtk/FileContextMenu.vala:2250 +#: Gtk/FileContextMenu.vala:2297 msgid "Set as Wallpaper" msgstr "" -#: Gtk/FileContextMenu.vala:442 Gtk/FileContextMenu.vala:497 +#: Gtk/FileContextMenu.vala:444 Gtk/FileContextMenu.vala:499 msgid "Set default application for file type" msgstr "Instellen als standaard applicatie voor bestandstype" -#: Gtk/Settings.vala:1730 Gtk/Settings.vala:1914 Gtk/Settings.vala:2117 +#: Gtk/Settings.vala:1751 Gtk/Settings.vala:1935 Gtk/Settings.vala:2138 msgid "Set default values" msgstr "Standaardwaarden instellen" -#: Gtk/FileContextMenu.vala:2251 +#: Gtk/FileContextMenu.vala:2298 msgid "Set the image as wallpaper" msgstr "" -#: Gtk/Settings.vala:1362 +#: Gtk/Settings.vala:1369 msgid "Sets the default application for opening folders" msgstr "Stelt de standaard applicatie in voor het openen van mappen" -#: Gtk/FileViewToolbar.vala:462 Gtk/SettingsWindow.vala:49 +#: Gtk/FileViewToolbar.vala:458 Gtk/SettingsWindow.vala:49 #: Gtk/TermContextMenu.vala:222 msgid "Settings" msgstr "Instellingen" @@ -3418,7 +3424,7 @@ msgid "Share Name Not Specified" msgstr "" -#: Gtk/FileViewList.vala:3386 +#: Gtk/FileViewList.vala:3321 msgid "Shortcut: [Super] + N" msgstr "" @@ -3448,11 +3454,11 @@ msgid "Show Hidden" msgstr "Verborgen weergeven" -#: Gtk/Settings.vala:2519 +#: Gtk/Settings.vala:2540 msgid "Show KVM in context menu" msgstr "KVM weergeven in rechtermuisknopmenu" -#: Gtk/Settings.vala:2522 +#: Gtk/Settings.vala:2543 msgid "Show KVM submenu in right-click context menu" msgstr "KVM-submenu weergeven in rechtermuisknopmenu" @@ -3467,6 +3473,11 @@ "Gecombineerde kopbalk weergeven i.p.v. werk- en locatiebalken [Herstart " "vereist]" +#: Gtk/DeviceContextMenu.vala:318 +#, fuzzy +msgid "Show device properties" +msgstr "Bestandseigenschappen weergeven" + #: Gtk/Statusbar.vala:195 msgid "Show hidden items" msgstr "" @@ -3511,7 +3522,7 @@ msgid "Show the toolbar" msgstr "Werkbalk weergeven" -#: Gtk/Settings.vala:1772 Gtk/Settings.vala:1958 Gtk/Settings.vala:2159 +#: Gtk/Settings.vala:1793 Gtk/Settings.vala:1979 Gtk/Settings.vala:2180 msgid "" "Show thumbnail previews in place of icons.\n" "\n" @@ -3533,22 +3544,18 @@ msgid "Single" msgstr "Eén" -#: Gtk/FileViewToolbar.vala:344 +#: Gtk/FileViewToolbar.vala:340 msgid "Single Pane" msgstr "Eén paneel" -#: Gtk/Settings.vala:1433 -msgid "Single click to activate" -msgstr "Activeren met één muisklik" - -#: Gtk/Settings.vala:1450 +#: Gtk/Settings.vala:1457 msgid "Single window mode" msgstr "Eén venster-modus" #: Gtk/FileConflictDialog.vala:542 Gtk/FileConflictDialog.vala:554 -#: Gtk/FileViewList.vala:750 Gtk/PropertiesWindow.vala:190 -#: Gtk/PropertiesWindow.vala:493 Gtk/Sidebar.vala:1265 Gtk/Statusbar.vala:365 -#: Utility/Device.vala:2402 Utility/Device.vala:2417 Utility/FileItem.vala:655 +#: Gtk/FileViewList.vala:748 Gtk/PropertiesWindow.vala:197 +#: Gtk/PropertiesWindow.vala:526 Gtk/Sidebar.vala:1280 Gtk/Statusbar.vala:357 +#: Utility/Device.vala:2424 Utility/Device.vala:2439 Utility/FileItem.vala:655 #, c-format msgid "Size" msgstr "Grootte" @@ -3565,11 +3572,11 @@ msgid "Skip existing files" msgstr "Bestaande bestanden overslaan" -#: Gtk/PropertiesWindow.vala:236 +#: Gtk/PropertiesWindow.vala:243 msgid "Solid" msgstr "Solide" -#: Gtk/FileContextMenu.vala:2514 Gtk/MainMenubar.vala:1197 +#: Gtk/FileContextMenu.vala:2561 Gtk/MainMenubar.vala:1197 #: Gtk/ViewPopover.vala:354 msgid "Sort By" msgstr "Sorteren op" @@ -3582,11 +3589,11 @@ msgid "Source" msgstr "Bron" -#: Gtk/FileViewList.vala:4422 Gtk/FileViewList.vala:4428 +#: Gtk/FileViewList.vala:4361 Gtk/FileViewList.vala:4367 msgid "Source and destination are same" msgstr "Bron en bestemming zijn hetzelfde" -#: Gtk/PropertiesWindow.vala:649 +#: Gtk/PropertiesWindow.vala:689 msgid "Special bits" msgstr "Speciale snufjes" @@ -3594,11 +3601,11 @@ msgid "Speed:" msgstr "Snelheid:" -#: Gtk/FileContextMenu.vala:2000 Gtk/Settings.vala:2562 +#: Gtk/FileContextMenu.vala:2047 Gtk/Settings.vala:2583 msgid "Split" msgstr "Splitsen" -#: Gtk/FileContextMenu.vala:2001 +#: Gtk/FileContextMenu.vala:2048 msgid "Split PDF document by page" msgstr "PDF-document splitsen per pagina" @@ -3610,6 +3617,10 @@ msgid "Split archive into volumes of specified size (in MB)" msgstr "Archief splitsen in volumes van opgegeven grootte (in MB)" +#: Gtk/TermContextMenu.vala:200 +msgid "Start chroot session in current directory" +msgstr "" + #: Gtk/ToolsWindow.vala:89 msgid "Status" msgstr "Status" @@ -3618,7 +3629,7 @@ msgid "Statusbar" msgstr "Statusbalk" -#: Gtk/MediaBar.vala:153 +#: Gtk/MediaBar.vala:152 msgid "Stay in current view" msgstr "In huidige weergave blijven" @@ -3650,7 +3661,7 @@ msgid "Swap" msgstr "Omwisselen" -#: Gtk/MiddleToolbar.vala:391 Gtk/Pathbar.vala:963 +#: Gtk/MiddleToolbar.vala:391 Gtk/Pathbar.vala:941 msgid "Swap directory path with opposite pane" msgstr "Mappad omwisselen met tegenovergestelde paneel" @@ -3662,24 +3673,20 @@ msgid "Switch to media browser view?" msgstr "Overschakelen naar mediaweergave?" -#: Gtk/FileViewList.vala:1193 +#: Gtk/FileViewList.vala:1191 msgid "Symlink Target" msgstr "Symlink-doel" -#: Gtk/DeviceContextMenu.vala:322 -msgid "Sync Pending Writes" -msgstr "Wachtende schrijfsels synchroniseren" - #: Gtk/PoloGtk.vala:142 msgid "Syntax" msgstr "Syntax" -#: Utility/Device.vala:2423 +#: Utility/Device.vala:2445 #, c-format msgid "System" msgstr "Systeem" -#: Gtk/FileContextMenu.vala:689 +#: Gtk/FileContextMenu.vala:691 msgid "Tab" msgstr "Tabblad" @@ -3691,32 +3698,20 @@ msgid "Tabs at bottom" msgstr "Tabbladen onderaan" -#: Gtk/FileContextMenu.vala:670 Gtk/FileViewToolbar.vala:432 -#: Gtk/Settings.vala:476 Gtk/Settings.vala:1297 +#: Gtk/FileContextMenu.vala:672 Gtk/FileViewToolbar.vala:428 +#: Gtk/Settings.vala:476 Gtk/Settings.vala:1304 msgid "Terminal" msgstr "Terminal" -#: Gtk/Settings.vala:1307 +#: Gtk/Settings.vala:1314 msgid "Terminal emulator to use for terminal panes" msgstr "" -#: Gtk/TermBox.vala:278 -msgid "Terminal is busy" -msgstr "Terminal is bezig" - #: Gtk/ProgressPanelArchiveTask.vala:107 msgid "Testing" msgstr "Bezig met testen" -#: Gtk/ProgressPanelFileTask.vala:434 -msgid "" -"The data transfer seems to have stopped. Check if device is working " -"correctly and if connection with the device is reliable." -msgstr "" -"De gegevensoverdracht lijkt te zijn gestopt. Controleer of het apparaat " -"correct werkt en of de verbinding met het apparaat betrouwbaar is." - -#: Gtk/FileViewList.vala:6037 +#: Gtk/FileViewList.vala:6063 msgid "There are no files selected for compression" msgstr "Er zijn geen bestanden geselecteerd om te comprimeren" @@ -3728,25 +3723,21 @@ msgid "There were some errors:" msgstr "" -#: Gtk/TermBox.vala:279 -msgid "This action cannot be executed while a process is running" -msgstr "Deze actie kan niet worden uitgevoerd zolang er een proces draait" - #: Gtk/Settings.vala:1108 msgid "" "This application is designed for the Arc GTK theme. It may not look right " "with other themes." msgstr "" -#: Gtk/Settings.vala:1769 Gtk/Settings.vala:1955 Gtk/Settings.vala:2156 +#: Gtk/Settings.vala:1790 Gtk/Settings.vala:1976 Gtk/Settings.vala:2177 msgid "Thumbnails" msgstr "Miniatuurvoorbeelden" -#: Gtk/Settings.vala:1580 +#: Gtk/Settings.vala:1601 msgid "Tile View" msgstr "Tegelweergave" -#: Gtk/FileViewToolbar.vala:409 Gtk/Settings.vala:1262 Gtk/ViewPopover.vala:141 +#: Gtk/FileViewToolbar.vala:405 Gtk/Settings.vala:1269 Gtk/ViewPopover.vala:141 msgid "Tiles" msgstr "Tegels" @@ -3754,11 +3745,16 @@ msgid "Title" msgstr "" -#: Gtk/Statusbar.vala:434 +#: Gtk/FileContextMenu.vala:1112 +#, c-format +msgid "To '%s' in Opposite Pane" +msgstr "" + +#: Gtk/Statusbar.vala:426 msgid "Toggle Middle Toolbar" msgstr "Middelste werkbalk weergeven/verbergen" -#: Gtk/Statusbar.vala:430 +#: Gtk/Statusbar.vala:422 msgid "Toggle Sidebar" msgstr "Zijbalk weergeven/verbergen" @@ -3766,8 +3762,8 @@ msgid "Toggle Terminal Pane" msgstr "Terminalpaneel weergeven/verbergen" -#: Gtk/FileViewToolbar.vala:433 Gtk/MiddleToolbar.vala:366 -#: Gtk/Statusbar.vala:465 +#: Gtk/FileViewToolbar.vala:429 Gtk/MiddleToolbar.vala:366 +#: Gtk/Statusbar.vala:449 msgid "Toggle terminal panel" msgstr "Terminalpaneel weergeven/verbergen" @@ -3795,12 +3791,12 @@ msgid "Translations" msgstr "Vertalingen" -#: Gtk/Settings.vala:1784 Gtk/Settings.vala:1970 Gtk/Settings.vala:2171 +#: Gtk/Settings.vala:1805 Gtk/Settings.vala:1991 Gtk/Settings.vala:2192 msgid "Transparency" msgstr "Doorzichtigheid" #: Gtk/FileContextMenu.vala:959 Gtk/FileViewPane.vala:152 -#: Gtk/MainMenubar.vala:645 Gtk/Sidebar.vala:346 +#: Gtk/MainMenubar.vala:645 Gtk/PlacesPopover.vala:630 Gtk/Sidebar.vala:348 msgid "Trash" msgstr "Naar prullenbak" @@ -3811,22 +3807,18 @@ "Move selected items to recycle bin" msgstr "" -#: Gtk/FileViewList.vala:4441 +#: Gtk/FileViewList.vala:4380 msgid "Trash selected items?" msgstr "Geselecteerde items verplaatsen naar prullenbak?" -#: Gtk/FileViewList.vala:1279 +#: Gtk/FileViewList.vala:1277 msgid "Trashed On" msgstr "Weggegooid op" -#: Gtk/Settings.vala:2220 -msgid "Tree navigation" -msgstr "Boomnavigatie" - #: Gtk/ConnectServerWindow.vala:220 Gtk/FileConflictDialog.vala:541 -#: Gtk/FileConflictDialog.vala:553 Gtk/FileViewList.vala:1107 -#: Gtk/PropertiesWindow.vala:218 Gtk/PropertiesWindow.vala:286 -#: Utility/Device.vala:2413 Utility/FileItem.vala:659 +#: Gtk/FileConflictDialog.vala:553 Gtk/FileViewList.vala:1105 +#: Gtk/PropertiesWindow.vala:225 Gtk/PropertiesWindow.vala:293 +#: Utility/Device.vala:2435 Utility/FileItem.vala:659 #, c-format msgid "Type" msgstr "Type" @@ -3843,7 +3835,7 @@ msgid "URI" msgstr "" -#: Gtk/PropertiesWindow.vala:474 Utility/Device.vala:2412 +#: Gtk/PropertiesWindow.vala:504 Gtk/Sidebar.vala:713 Utility/Device.vala:2434 #, c-format msgid "UUID" msgstr "UUID" @@ -3864,19 +3856,19 @@ msgid "UnMaximize the terminal" msgstr "Terminal de-maximaliseren" -#: Gtk/FileContextMenu.vala:2085 Gtk/Settings.vala:2604 +#: Gtk/FileContextMenu.vala:2132 Gtk/Settings.vala:2625 msgid "Uncompress" msgstr "De-comprimeren" -#: Gtk/FileContextMenu.vala:2086 +#: Gtk/FileContextMenu.vala:2133 msgid "Uncompress PDF document" msgstr "PDF-document de-comprimeren" -#: Gtk/FileContextMenu.vala:1318 +#: Gtk/FileContextMenu.vala:1365 msgid "Unhide" msgstr "Weergeven" -#: Gtk/FileContextMenu.vala:1319 +#: Gtk/FileContextMenu.vala:1366 msgid "Unhide selected items" msgstr "Geselecteerde items niet langer verbergen" @@ -3884,39 +3876,40 @@ msgid "Unknown Format" msgstr "" -#: Utility/Device.vala:510 Utility/Device.vala:1876 +#: Gtk/FileViewTab.vala:310 +#, fuzzy +msgid "Unlock Path" +msgstr "Selecteer pad" + +#: Utility/Device.vala:518 Utility/Device.vala:1898 msgid "Unlocked" msgstr "Ontgrendeld" -#: Utility/Device.vala:509 Utility/Device.vala:1875 +#: Utility/Device.vala:517 Utility/Device.vala:1897 msgid "Unlocked successfully" msgstr "Succesvol ontgrendeld" -#: Gtk/DeviceContextMenu.vala:175 Gtk/MainMenubar.vala:1560 +#: Gtk/DeviceContextMenu.vala:202 msgid "Unmount" msgstr "Ontkoppelen" -#: Gtk/DeviceContextMenu.vala:199 +#: Gtk/DeviceContextMenu.vala:226 msgid "Unmount and lock encrypted volume" msgstr "" -#: Gtk/MainMenubar.vala:1561 -msgid "Unmount cloud storage account" -msgstr "" - -#: Gtk/DeviceContextMenu.vala:176 +#: Gtk/DeviceContextMenu.vala:203 msgid "Unmount this volume" msgstr "Dit volume ontkoppelen" -#: Utility/Device.vala:2099 +#: Utility/Device.vala:2121 msgid "Unmounting from" msgstr "Bezig met ontkoppelen van" -#: Gtk/PropertiesWindow.vala:266 +#: Gtk/PropertiesWindow.vala:273 msgid "Unpacked" msgstr "Uitgepakt" -#: Gtk/FileContextMenu.vala:2052 +#: Gtk/FileContextMenu.vala:2099 msgid "Unprotect the PDF document by removing password" msgstr "PDF-document niet langer beveiligen door het wachtwoord te verwijderen" @@ -3929,7 +3922,7 @@ msgid "Update recursively for all items inside the folder" msgstr "" -#: Gtk/FileViewList.vala:5675 +#: Gtk/FileViewList.vala:5701 msgid "Update required packages and try again" msgstr "" @@ -3947,18 +3940,18 @@ msgid "Uploading items..." msgstr "" -#: Gtk/PropertiesWindow.vala:500 Gtk/Sidebar.vala:1267 Gtk/Statusbar.vala:367 -#: Utility/Device.vala:2420 +#: Gtk/PropertiesWindow.vala:533 Gtk/Sidebar.vala:1282 Gtk/Statusbar.vala:359 +#: Utility/Device.vala:2442 #, c-format msgid "Used" msgstr "Gebruikt" -#: Gtk/FileViewList.vala:411 Gtk/PropertiesWindow.vala:616 +#: Gtk/FileViewList.vala:409 Gtk/PropertiesWindow.vala:656 #, c-format msgid "User" msgstr "Gebruiker" -#: Utility/Device.vala:470 Utility/Device.vala:1834 +#: Utility/Device.vala:478 Utility/Device.vala:1856 msgid "User cancelled the password prompt" msgstr "Gebruiker heeft het wachtwoordvenster geannuleerd" @@ -3970,41 +3963,37 @@ msgid "Utility" msgstr "Hulpmiddel" -#: Gtk/PropertiesWindow.vala:1003 +#: Gtk/PropertiesWindow.vala:1024 msgid "Value" msgstr "Waarde" -#: Utility/Device.vala:2397 +#: Utility/Device.vala:2419 #, c-format msgid "Vendor" msgstr "Uitgever" -#: Gtk/Sidebar.vala:343 +#: Gtk/PlacesPopover.vala:627 Gtk/Sidebar.vala:345 msgid "Videos" msgstr "Video's" #: Gtk/FileViewToolbar.vala:262 Gtk/MainMenubar.vala:885 -#: Gtk/MainMenubar.vala:1046 Gtk/Settings.vala:527 Gtk/Settings.vala:1537 +#: Gtk/MainMenubar.vala:1046 Gtk/Settings.vala:527 Gtk/Settings.vala:1558 #: Gtk/ViewPopover.vala:116 msgid "View" msgstr "Weergave" -#: Gtk/Settings.vala:1228 +#: Gtk/Settings.vala:1235 msgid "View Mode" msgstr "Weergavemodus" -#: Gtk/FileContextMenu.vala:2531 +#: Gtk/FileContextMenu.vala:2578 msgid "View file properties" msgstr "Bestandseigenschappen weergeven" -#: Gtk/Settings.vala:2258 +#: Gtk/Settings.vala:2279 msgid "Virtual Machine" msgstr "Virtuele machine" -#: Utility/TeeJee.Logging.vala:93 -msgid "W" -msgstr "W" - #: Gtk/ProgressPanelVideoDownloadTask.vala:319 msgid "Web Page" msgstr "" @@ -4013,7 +4002,7 @@ msgid "Website ~ teejeetech.in" msgstr "Website ~ teejeetech.in" -#: Gtk/MainMenubar.vala:1928 +#: Gtk/MainMenubar.vala:1927 msgid "Wiki" msgstr "Wiki" @@ -4021,7 +4010,7 @@ msgid "Wiki ~ Documentation & Help" msgstr "Wiki ~ Documentatie & Hulp" -#: Gtk/FileContextMenu.vala:708 +#: Gtk/FileContextMenu.vala:710 msgid "Window" msgstr "Venster" @@ -4033,40 +4022,32 @@ msgid "Word Size" msgstr "Woordgrootte" -#: Gtk/PropertiesWindow.vala:630 Gtk/PropertiesWindow.vala:636 -#: Gtk/PropertiesWindow.vala:642 +#: Gtk/PropertiesWindow.vala:670 Gtk/PropertiesWindow.vala:676 +#: Gtk/PropertiesWindow.vala:682 msgid "Write" msgstr "Schrijven" -#: Gtk/FileContextMenu.vala:1656 +#: Gtk/FileContextMenu.vala:1703 msgid "Write ISO file to USB drive" msgstr "ISO-bestand naar USB-schijf schrijven" -#: Gtk/DeviceContextMenu.vala:323 -msgid "Write any data waiting to be written to the device" -msgstr "Schrijf alle gegevens in de wachtrij naar het apparaat" - -#: Gtk/FileContextMenu.vala:1655 +#: Gtk/FileContextMenu.vala:1702 msgid "Write to USB" msgstr "Schrijven naar USB" -#: Utility/Device.vala:446 Utility/Device.vala:1809 Utility/Device.vala:1853 +#: Utility/Device.vala:454 Utility/Device.vala:1831 Utility/Device.vala:1875 msgid "Wrong password" msgstr "Onjuist wachtwoord" -#: Gtk/MediaBar.vala:95 Gtk/PropertiesWindow.vala:230 -#: Gtk/PropertiesWindow.vala:235 Utility/Gtk/CustomMessageDialog.vala:176 +#: Gtk/MediaBar.vala:95 Gtk/PropertiesWindow.vala:237 +#: Gtk/PropertiesWindow.vala:242 Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "Ja" -#: Gtk/FileViewList.vala:4576 +#: Gtk/FileViewList.vala:4512 msgid "You do not have permission to rename this item" msgstr "U heeft geen toestemming om de naam van dit item te wijzigen" -#: Gtk/PropertiesWindow.vala:970 -msgid "You don't have permission to change some permissions" -msgstr "U heeft geen toestemming om sommige rechten te wijzigen" - #: Utility/Shell.vala:55 msgid "Z shell (zsh)" msgstr "" @@ -4087,7 +4068,7 @@ msgid "file(s) exist at the destination" msgstr "bestand(en) bestaat/bestaan al op de bestemming" -#: Gtk/Statusbar.vala:274 +#: Gtk/Statusbar.vala:266 msgid "free" msgstr "vrij" @@ -4103,11 +4084,11 @@ msgid "items" msgstr "items" -#: Gtk/FileViewList.vala:4507 +#: Gtk/FileViewList.vala:4446 msgid "selected item(s) will be deleted permanently" msgstr "geselecteerd(e) item(s) wordt/worden permanent verwijderd" -#: Gtk/FileViewList.vala:4442 +#: Gtk/FileViewList.vala:4381 msgid "selected item(s) will be moved to trash" msgstr "geselecteerd(e) item(s) wordt/worden verplaatst naar de prullenbak" @@ -4124,6 +4105,112 @@ msgid "trashed" msgstr "in prullenbak gegooid" +#~ msgid "" +#~ "Allows X-window apps running inside the chroot environment to use the " +#~ "host display" +#~ msgstr "" +#~ "Stelt X-venster-apps binnen de chroot-omgeving in staat om het hostscherm " +#~ "te gebruiken" + +#~ msgid "Allows network connection to be used inside the chroot environment" +#~ msgstr "Staat netwerkverbindingen toe binnen de chroot-omgeving" + +#~ msgid "" +#~ "Application will be started during system startup and will run minimized " +#~ "in system tray." +#~ msgstr "" +#~ "De applicatie zal worden gestart bij het opstarten van het systeem en zal " +#~ "geminimaliseerd in het systeemvak draaien." + +#~ msgid "Chroot: Enable GUI Apps" +#~ msgstr "Chroot: GUI-apps inschakelen" + +#~ msgid "Chroot: Enable network" +#~ msgstr "Chroot: netwerk inschakelen" + +#~ msgid "Close this pane" +#~ msgstr "Dit paneel sluiten" + +#~ msgid "E" +#~ msgstr "E" + +#~ msgid "Flush Read Buffer" +#~ msgstr "Leesbuffer wissen" + +#~ msgid "Flushes the read buffer for device" +#~ msgstr "Wist de leesbuffer van het apparaat" + +#~ msgid "Hidden" +#~ msgstr "Verborgen" + +#~ msgid "" +#~ "Minimize to system tray when window is closed instead of exiting the " +#~ "application. Opening another folder will be much faster, as the " +#~ "application would already be running in the background." +#~ msgstr "" +#~ "Minimaliseren naar systeemvak als het venster wordt gesloten i.p.v. de " +#~ "applicatie afsluiten. Het openen van een map zal veel sneller gaan omdat " +#~ "de applicatie al op de achtergrond draait." + +#~ msgid "Minimize to tray" +#~ msgstr "Minimaliseren naar systeemvak" + +#~ msgid "Not Responding" +#~ msgstr "Reageert niet" + +#~ msgid "Run at startup" +#~ msgstr "Opstarten bij systeemopstart" + +#, fuzzy +#~ msgid "Second File Not Found" +#~ msgstr "Bestand niet gevonden" + +#~ msgid "Select Extraction Location" +#~ msgstr "Selecteer uitpaklocatie" + +#~ msgid "Single click to activate" +#~ msgstr "Activeren met één muisklik" + +#~ msgid "Sync Pending Writes" +#~ msgstr "Wachtende schrijfsels synchroniseren" + +#~ msgid "Terminal is busy" +#~ msgstr "Terminal is bezig" + +#~ msgid "" +#~ "The data transfer seems to have stopped. Check if device is working " +#~ "correctly and if connection with the device is reliable." +#~ msgstr "" +#~ "De gegevensoverdracht lijkt te zijn gestopt. Controleer of het apparaat " +#~ "correct werkt en of de verbinding met het apparaat betrouwbaar is." + +#~ msgid "This action cannot be executed while a process is running" +#~ msgstr "Deze actie kan niet worden uitgevoerd zolang er een proces draait" + +#~ msgid "Tree navigation" +#~ msgstr "Boomnavigatie" + +#~ msgid "W" +#~ msgstr "W" + +#~ msgid "Write any data waiting to be written to the device" +#~ msgstr "Schrijf alle gegevens in de wachtrij naar het apparaat" + +#~ msgid "You don't have permission to change some permissions" +#~ msgstr "U heeft geen toestemming om sommige rechten te wijzigen" + +#~ msgid "Click to mount device and open in active pane" +#~ msgstr "Klik om apparaat aan te koppelen en te openen in actief paneel" + +#~ msgid "Click to open in active pane" +#~ msgstr "Klik om te openen in actief paneel" + +#~ msgid "Compare file with file of same name in other pane" +#~ msgstr "Vergelijk bestand met die met dezelfde naam in het andere paneel" + +#~ msgid "ISO" +#~ msgstr "ISO" + #~ msgid "A modern, light-weight file manager for Linux" #~ msgstr "Een moderne, lichtgewicht bestandsbeheerder voor Linux" @@ -4305,9 +4392,6 @@ #~ msgid "Select Pathbar Style" #~ msgstr "Selecteer locatiebalk-stijl" -#~ msgid "Select files to replace:" -#~ msgstr "Selecteer te vervangen bestanden:" - #~ msgid "Show Lock button for encrypted devices" #~ msgstr "Vergrendelknop weergeven voor versleutelde apparaten" diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/polo.geany polo-file-manager-18.1~59~ubuntu16.04.1/polo.geany --- polo-file-manager-17.10~28~ubuntu16.04.1/polo.geany 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/polo.geany 2018-01-11 12:49:20.000000000 +0000 @@ -28,144 +28,144 @@ long_line_column=72 [files] -current_page=69 -FILE_NAME_0=1061;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FAdminBar.vala;0;4 -FILE_NAME_1=36670;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FCreateArchiveWindow.vala;0;4 -FILE_NAME_2=19869;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileContextMenu.vala;0;4 -FILE_NAME_3=5196;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileViewPane.vala;0;4 -FILE_NAME_4=5698;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileViewTab.vala;0;4 -FILE_NAME_5=14496;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileViewToolbar.vala;0;4 +current_page=68 +FILE_NAME_0=1583;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FAdminBar.vala;0;4 +FILE_NAME_1=45162;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FCreateArchiveWindow.vala;0;4 +FILE_NAME_2=26833;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileContextMenu.vala;0;4 +FILE_NAME_3=1612;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileViewPane.vala;0;4 +FILE_NAME_4=1349;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileViewTab.vala;0;4 +FILE_NAME_5=7408;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileViewToolbar.vala;0;4 FILE_NAME_6=435;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FHotkeys.vala;0;4 -FILE_NAME_7=7597;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FLayoutBox.vala;0;4 -FILE_NAME_8=2556;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FLayoutPanel.vala;0;4 -FILE_NAME_9=10252;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMainWindow.vala;0;4 +FILE_NAME_7=10105;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FLayoutBox.vala;0;4 +FILE_NAME_8=7067;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FLayoutPanel.vala;0;4 +FILE_NAME_9=30264;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMainWindow.vala;0;4 FILE_NAME_10=2879;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMediaBar.vala;0;4 -FILE_NAME_11=13534;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMiddleToolbar.vala;0;4 +FILE_NAME_11=13824;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMiddleToolbar.vala;0;4 FILE_NAME_12=2754;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPasswordDialog.vala;0;4 -FILE_NAME_13=4298;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPathbar.vala;0;4 -FILE_NAME_14=1427;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGvfsMount.vala;0;4 -FILE_NAME_15=1098;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPoloGtk.vala;0;4 -FILE_NAME_16=876;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 -FILE_NAME_17=8448;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPropertiesWindow.vala;0;4 -FILE_NAME_18=37299;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSettings.vala;0;4 +FILE_NAME_13=3778;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPathbar.vala;0;4 +FILE_NAME_14=5404;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGvfsMount.vala;0;4 +FILE_NAME_15=1321;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPoloGtk.vala;0;4 +FILE_NAME_16=1079;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 +FILE_NAME_17=26239;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPropertiesWindow.vala;0;4 +FILE_NAME_18=64188;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSettings.vala;0;4 FILE_NAME_19=1444;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSettingsWindow.vala;0;4 -FILE_NAME_20=9960;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSidebar.vala;0;4 -FILE_NAME_21=1998;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSidebarItem.vala;0;4 +FILE_NAME_20=31996;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSidebar.vala;0;4 +FILE_NAME_21=2823;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSidebarItem.vala;0;4 FILE_NAME_22=2783;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSimpleProgressWindow.vala;0;4 -FILE_NAME_23=10806;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FStatusbar.vala;0;4 +FILE_NAME_23=2017;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FStatusbar.vala;0;4 FILE_NAME_24=4788;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FTrashBar.vala;0;4 -FILE_NAME_25=2953;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FWizardWindow.vala;0;4 -FILE_NAME_26=4724;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FCommon%2FMain.vala;0;4 +FILE_NAME_25=9645;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FWizardWindow.vala;0;4 +FILE_NAME_26=1360;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FCommon%2FMain.vala;0;4 FILE_NAME_27=2021;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtkTheme.vala;0;4 FILE_NAME_28=1448;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FAppLock.vala;0;4 FILE_NAME_29=1860;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 FILE_NAME_30=1577;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FBash.vala;0;4 FILE_NAME_31=1434;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FCryptTabEntry.vala;0;4 -FILE_NAME_32=42823;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FDevice.vala;0;4 -FILE_NAME_33=35390;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FFileItem.vala;0;4 +FILE_NAME_32=60582;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FDevice.vala;0;4 +FILE_NAME_33=47244;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FFileItem.vala;0;4 FILE_NAME_34=1461;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FFsTabEntry.vala;0;4 -FILE_NAME_35=5064;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtkBookmark.vala;0;4 -FILE_NAME_36=2791;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FIconManager.vala;0;4 -FILE_NAME_37=3114;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FLinuxDistro.vala;0;4 -FILE_NAME_38=12597;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FMediaFile.vala;0;4 -FILE_NAME_39=11633;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FMimeTypes.vala;0;4 -FILE_NAME_40=523;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FMountEntry.vala;0;4 -FILE_NAME_41=1531;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 -FILE_NAME_42=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FProcStats.vala;0;4 -FILE_NAME_43=14470;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FRsyncTask.vala;0;4 -FILE_NAME_44=30;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FSystemGroup.vala;0;4 -FILE_NAME_45=29;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FSystemUser.vala;0;4 -FILE_NAME_46=10877;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 -FILE_NAME_47=2231;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.Json.vala;0;4 -FILE_NAME_48=1586;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 -FILE_NAME_49=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.MediaInfo.vala;0;4 -FILE_NAME_50=7953;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 -FILE_NAME_51=6270;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.Process.vala;0;4 -FILE_NAME_52=7786;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 -FILE_NAME_53=9983;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FThumbnailer.vala;0;4 -FILE_NAME_54=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FThunarMenuEntry.vala;0;4 -FILE_NAME_55=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTimeoutCounter.vala;0;4 -FILE_NAME_56=4794;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTrashCan.vala;0;4 -FILE_NAME_57=4771;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTreeViewColumnManager.vala;0;4 -FILE_NAME_58=8744;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FAboutWindow.vala;0;4 -FILE_NAME_59=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FCellRendererProgress2.vala;0;4 -FILE_NAME_60=1417;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FCustomMessageDialog.vala;0;4 -FILE_NAME_61=2676;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FDonationWindow.vala;0;4 -FILE_NAME_62=2814;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FExtendedTreeView.vala;0;4 -FILE_NAME_63=14200;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FGtkHelper.vala;0;4 -FILE_NAME_64=1825;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FIconCache.vala;0;4 -FILE_NAME_65=2658;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FLoadingWindow.vala;0;4 -FILE_NAME_66=1509;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FTreeModelCache.vala;0;4 -FILE_NAME_67=1170;Make;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fmakefile;0;4 -FILE_NAME_68=1707;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fpolo-uninstall;0;4 -FILE_NAME_69=970;None;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fdebian%2Fchangelog;0;4 -FILE_NAME_70=13938;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileConflictDialog.vala;0;4 -FILE_NAME_71=16280;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FFileTask.vala;0;4 -FILE_NAME_72=8265;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FDeviceContextMenu.vala;0;4 -FILE_NAME_73=749;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fdebian%2Fcontrol;0;4 -FILE_NAME_74=6274;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FColumnSelectionBox.vala;0;4 -FILE_NAME_75=4470;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FArchiveTask.vala;0;4 -FILE_NAME_76=1617;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanel.vala;0;4 -FILE_NAME_77=14829;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelArchiveTask.vala;0;4 -FILE_NAME_78=11933;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelFileTask.vala;0;4 -FILE_NAME_79=5264;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMainHeaderBar.vala;0;4 -FILE_NAME_80=7540;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FViewPopover.vala;0;4 -FILE_NAME_81=39275;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMainMenubar.vala;0;4 -FILE_NAME_82=37;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FXdgUserDirectories.vala;0;4 -FILE_NAME_83=4635;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FTermBox.vala;0;4 -FILE_NAME_84=3442;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FTermContextMenu.vala;0;4 -FILE_NAME_85=923;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fpolo-chroot;0;4 -FILE_NAME_86=26;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FSysInfo.vala;0;4 -FILE_NAME_87=1116;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPoloShortcutsWindow.vala;0;4 -FILE_NAME_88=5762;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FKvmCreateDiskWindow.vala;0;4 -FILE_NAME_89=4289;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FKvmTask.vala;0;4 -FILE_NAME_90=6167;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelKvmTask.vala;0;4 -FILE_NAME_91=6939;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FPdfTask.vala;0;4 -FILE_NAME_92=3119;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FUsbWriterTask.vala;0;4 -FILE_NAME_93=5364;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FRCloneClient.vala;0;4 -FILE_NAME_94=7755;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FCloudLoginWindow.vala;0;4 -FILE_NAME_95=5153;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelUsbWriterTask.vala;0;4 -FILE_NAME_96=4592;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelPdfTask.vala;0;4 -FILE_NAME_97=5;Make;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fmakefile;0;4 -FILE_NAME_98=1341;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FPlugin.vala;0;4 -FILE_NAME_99=546;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fbuild-installers.sh;0;4 -FILE_NAME_100=63;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fbuild-deb.sh;0;4 -FILE_NAME_101=458;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fbuild-source.sh;0;4 -FILE_NAME_102=2471;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSelectionBar.vala;0;4 -FILE_NAME_103=2698;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FShell.vala;0;4 -FILE_NAME_104=1618;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FImageTask.vala;0;4 -FILE_NAME_105=5323;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelImageTask.vala;0;4 -FILE_NAME_106=64218;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileViewList.vala;0;4 -FILE_NAME_107=5069;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FFileItemCloud.vala;0;4 -FILE_NAME_108=9829;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelVideoDownloadTask.vala;0;4 -FILE_NAME_109=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FBookmarkContextMenu.vala;0;4 -FILE_NAME_110=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FBookmarksMenu.vala;0;4 -FILE_NAME_111=14033;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FConnectServerWindow.vala;0;4 -FILE_NAME_112=2315;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FDevicesMenu.vala;0;4 -FILE_NAME_113=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FIPaneActive.vala;0;4 -FILE_NAME_114=1063;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPathbarStyleMenu.vala;0;4 -FILE_NAME_115=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPlacesPopover.vala;0;4 -FILE_NAME_116=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSortMenu.vala;0;4 -FILE_NAME_117=4054;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FRCloneTask.vala;0;4 -FILE_NAME_118=721;None;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Finstaller%2Fsanity.config;0;4 -FILE_NAME_119=7078;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FFileItemArchive.vala;0;4 -FILE_NAME_120=3783;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMessageBar.vala;0;4 -FILE_NAME_121=3728;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FTouchFileDateContextMenu.vala;0;4 -FILE_NAME_122=17057;Vala;0;EUTF-8;1;1;1;%2Fmnt%2Fsdcard%2FDropbox%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FLicenseText.vala;0;4 -FILE_NAME_123=1725;Vala;0;EUTF-8;1;1;1;%2Fmnt%2Fsdcard%2FDropbox%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fgtk3-version.vala;0;4 -FILE_NAME_124=258;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fshare%2Fpolo%2Ffiles%2Fgtk-theme%2Finstall-gtk-theme;0;4 -FILE_NAME_125=586;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fshare%2Fpolo%2Ffiles%2Fbashrc;0;4 -FILE_NAME_126=302;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fpolo-gtk.desktop;0;4 -FILE_NAME_127=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGvfsTask.vala;0;4 -FILE_NAME_128=2328;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FVideoDownloadTask.vala;0;4 -FILE_NAME_129=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FToolsWindow.vala;0;4 +FILE_NAME_35=4504;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtkBookmark.vala;0;4 +FILE_NAME_36=3114;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FLinuxDistro.vala;0;4 +FILE_NAME_37=12597;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FMediaFile.vala;0;4 +FILE_NAME_38=8793;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FMimeTypes.vala;0;4 +FILE_NAME_39=523;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FMountEntry.vala;0;4 +FILE_NAME_40=1531;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 +FILE_NAME_41=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FProcStats.vala;0;4 +FILE_NAME_42=14470;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FRsyncTask.vala;0;4 +FILE_NAME_43=30;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FSystemGroup.vala;0;4 +FILE_NAME_44=29;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FSystemUser.vala;0;4 +FILE_NAME_45=27206;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 +FILE_NAME_46=2231;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.Json.vala;0;4 +FILE_NAME_47=1586;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 +FILE_NAME_48=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.MediaInfo.vala;0;4 +FILE_NAME_49=4945;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 +FILE_NAME_50=2264;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.Process.vala;0;4 +FILE_NAME_51=7786;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 +FILE_NAME_52=9983;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FThumbnailer.vala;0;4 +FILE_NAME_53=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FThunarMenuEntry.vala;0;4 +FILE_NAME_54=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTimeoutCounter.vala;0;4 +FILE_NAME_55=4794;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTrashCan.vala;0;4 +FILE_NAME_56=4771;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FTreeViewColumnManager.vala;0;4 +FILE_NAME_57=9210;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FAboutWindow.vala;0;4 +FILE_NAME_58=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FCellRendererProgress2.vala;0;4 +FILE_NAME_59=1417;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FCustomMessageDialog.vala;0;4 +FILE_NAME_60=2658;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FDonationWindow.vala;0;4 +FILE_NAME_61=1262;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FExtendedTreeView.vala;0;4 +FILE_NAME_62=1206;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FGtkHelper.vala;0;4 +FILE_NAME_63=1825;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FIconCache.vala;0;4 +FILE_NAME_64=2658;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FLoadingWindow.vala;0;4 +FILE_NAME_65=1509;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FTreeModelCache.vala;0;4 +FILE_NAME_66=3482;Make;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fmakefile;0;4 +FILE_NAME_67=1707;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fpolo-uninstall;0;4 +FILE_NAME_68=626;None;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fdebian%2Fchangelog;0;4 +FILE_NAME_69=13938;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileConflictDialog.vala;0;4 +FILE_NAME_70=16280;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FFileTask.vala;0;4 +FILE_NAME_71=6945;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FDeviceContextMenu.vala;0;4 +FILE_NAME_72=876;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fdebian%2Fcontrol;0;4 +FILE_NAME_73=2195;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FColumnSelectionBox.vala;0;4 +FILE_NAME_74=4470;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FArchiveTask.vala;0;4 +FILE_NAME_75=1617;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanel.vala;0;4 +FILE_NAME_76=22473;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelArchiveTask.vala;0;4 +FILE_NAME_77=1604;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelFileTask.vala;0;4 +FILE_NAME_78=5264;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMainHeaderBar.vala;0;4 +FILE_NAME_79=7540;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FViewPopover.vala;0;4 +FILE_NAME_80=38434;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMainMenubar.vala;0;4 +FILE_NAME_81=37;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FXdgUserDirectories.vala;0;4 +FILE_NAME_82=6385;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FTermBox.vala;0;4 +FILE_NAME_83=818;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FTermContextMenu.vala;0;4 +FILE_NAME_84=1780;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fpolo-chroot;0;4 +FILE_NAME_85=26;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FSysInfo.vala;0;4 +FILE_NAME_86=1116;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPoloShortcutsWindow.vala;0;4 +FILE_NAME_87=5762;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FKvmCreateDiskWindow.vala;0;4 +FILE_NAME_88=4289;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FKvmTask.vala;0;4 +FILE_NAME_89=6167;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelKvmTask.vala;0;4 +FILE_NAME_90=6939;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FPdfTask.vala;0;4 +FILE_NAME_91=3119;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FUsbWriterTask.vala;0;4 +FILE_NAME_92=5364;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FRCloneClient.vala;0;4 +FILE_NAME_93=8131;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FCloudLoginWindow.vala;0;4 +FILE_NAME_94=5153;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelUsbWriterTask.vala;0;4 +FILE_NAME_95=4416;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelPdfTask.vala;0;4 +FILE_NAME_96=23;Make;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fmakefile;0;4 +FILE_NAME_97=1341;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FPlugin.vala;0;4 +FILE_NAME_98=1089;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fbuild-installers.sh;0;4 +FILE_NAME_99=538;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fbuild-deb.sh;0;4 +FILE_NAME_100=560;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fbuild-source.sh;0;4 +FILE_NAME_101=2471;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSelectionBar.vala;0;4 +FILE_NAME_102=2698;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FShell.vala;0;4 +FILE_NAME_103=1618;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FImageTask.vala;0;4 +FILE_NAME_104=5323;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelImageTask.vala;0;4 +FILE_NAME_105=8022;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FFileViewList.vala;0;4 +FILE_NAME_106=7203;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FFileItemCloud.vala;0;4 +FILE_NAME_107=9829;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FProgressPanelVideoDownloadTask.vala;0;4 +FILE_NAME_108=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FBookmarkContextMenu.vala;0;4 +FILE_NAME_109=2541;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FBookmarksMenu.vala;0;4 +FILE_NAME_110=14546;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FConnectServerWindow.vala;0;4 +FILE_NAME_111=3976;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FDevicesMenu.vala;0;4 +FILE_NAME_112=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FIPaneActive.vala;0;4 +FILE_NAME_113=1063;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPathbarStyleMenu.vala;0;4 +FILE_NAME_114=11907;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FPlacesPopover.vala;0;4 +FILE_NAME_115=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FSortMenu.vala;0;4 +FILE_NAME_116=4054;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FRCloneTask.vala;0;4 +FILE_NAME_117=7078;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FFileItemArchive.vala;0;4 +FILE_NAME_118=3303;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FMessageBar.vala;0;4 +FILE_NAME_119=3972;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FTouchFileDateContextMenu.vala;0;4 +FILE_NAME_120=258;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fshare%2Fpolo%2Ffiles%2Fgtk-theme%2Finstall-gtk-theme;0;4 +FILE_NAME_121=586;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fshare%2Fpolo%2Ffiles%2Fbashrc;0;4 +FILE_NAME_122=302;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2Fpolo-gtk.desktop;0;4 +FILE_NAME_123=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGvfsTask.vala;0;4 +FILE_NAME_124=2328;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FVideoDownloadTask.vala;0;4 +FILE_NAME_125=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FGtk%2FToolsWindow.vala;0;4 +FILE_NAME_126=4565;Make;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Ftimeshift%2Fsrc%2Fmakefile;0;4 +FILE_NAME_127=7010;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo-donation-plugins%2Fsrc%2Fpolo-iso.vala;0;4 +FILE_NAME_128=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FLicenseText.vala;0;4 +FILE_NAME_129=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Fpolo%2Fsrc%2FUtility%2FGtk%2FIconManager.vala;0;4 [VTE] -last_dir=/home/teejee +last_dir=/data/projects/linux/polo [build-menu] NF_00_LB=_Make -NF_00_CM=make all +NF_00_CM=make app-gtk NF_00_WD=%p EX_00_LB=_Execute EX_00_CM=src/polo-gtk --debug @@ -174,9 +174,9 @@ EX_01_CM=src/polo-gtk --debug EX_01_WD=%p ValaFT_00_LB=_Compile -ValaFT_00_CM=make all +ValaFT_00_CM=make app-gtk ValaFT_00_WD=%p ValaFT_01_LB=_Build -ValaFT_01_CM=make all +ValaFT_01_CM=make app-gtk ValaFT_01_WD=%p filetypes=Vala; diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/polo.pot polo-file-manager-18.1~59~ubuntu16.04.1/polo.pot --- polo-file-manager-17.10~28~ubuntu16.04.1/polo.pot 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/polo.pot 2018-01-11 12:49:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: polo 1.6\n" "Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-10-02 22:25+0530\n" +"POT-Creation-Date: 2018-01-06 11:13+0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,11 +17,12 @@ "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: Gtk/PropertiesWindow.vala:493 +#: Gtk/PropertiesWindow.vala:506 Gtk/PropertiesWindow.vala:508 +#: Gtk/Sidebar.vala:715 Gtk/Sidebar.vala:717 msgid "(empty)" msgstr "" -#: Gtk/FileContextMenu.vala:1101 +#: Gtk/FileContextMenu.vala:1150 msgid "..." msgstr "" @@ -70,7 +71,7 @@ "Come back to Polo and click 'Finish' to add the account" msgstr "" -#: Gtk/FileViewToolbar.vala:502 Gtk/MainMenubar.vala:1957 +#: Gtk/FileViewToolbar.vala:498 Gtk/MainMenubar.vala:1957 msgid "About" msgstr "" @@ -78,7 +79,7 @@ msgid "Access" msgstr "" -#: Gtk/PropertiesWindow.vala:322 +#: Gtk/PropertiesWindow.vala:329 msgid "Accessed" msgstr "" @@ -121,8 +122,8 @@ msgid "Action button" msgstr "" -#: Gtk/PropertiesWindow.vala:1122 Gtk/PropertiesWindow.vala:1168 -#: Gtk/Sidebar.vala:1166 +#: Gtk/PropertiesWindow.vala:1126 Gtk/PropertiesWindow.vala:1172 +#: Gtk/Sidebar.vala:1194 msgid "Actions" msgstr "" @@ -138,7 +139,7 @@ msgid "Add Cloud Storage Account" msgstr "" -#: Gtk/FileContextMenu.vala:2032 Gtk/Settings.vala:2639 +#: Gtk/FileContextMenu.vala:2081 Gtk/Settings.vala:2639 msgid "Add Password" msgstr "" @@ -150,7 +151,7 @@ msgid "Add bookmark for this location" msgstr "" -#: Gtk/FileContextMenu.vala:727 +#: Gtk/FileContextMenu.vala:729 msgid "Admin Window" msgstr "" @@ -162,16 +163,6 @@ msgid "Advanced options" msgstr "" -#: Gtk/Settings.vala:2571 -msgid "" -"Allows X-window apps running inside the chroot environment to use the host " -"display" -msgstr "" - -#: Gtk/Settings.vala:2557 -msgid "Allows network connection to be used inside the chroot environment" -msgstr "" - #: Utility/Shell.vala:61 msgid "Almquist shell (ash)" msgstr "" @@ -184,11 +175,11 @@ msgid "An account exists with this name. Enter a new name for the account." msgstr "" -#: Gtk/FileContextMenu.vala:1558 +#: Gtk/FileContextMenu.vala:1607 msgid "Analyze disk usage" msgstr "" -#: Gtk/FileViewList.vala:4513 +#: Gtk/FileViewList.vala:4515 msgid "Another file exists with this name" msgstr "" @@ -196,33 +187,27 @@ msgid "Another instance of this application is running" msgstr "" -#: Common/Main.vala:918 Common/Main.vala:1068 Common/Main.vala:1157 +#: Common/Main.vala:923 Common/Main.vala:1073 Common/Main.vala:1162 msgid "App config loaded" msgstr "" -#: Common/Main.vala:729 Common/Main.vala:1035 Common/Main.vala:1113 +#: Common/Main.vala:732 Common/Main.vala:1040 Common/Main.vala:1118 msgid "App config saved" msgstr "" -#: Gtk/FileViewToolbar.vala:503 +#: Gtk/FileViewToolbar.vala:499 msgid "Application Info" msgstr "" -#: Gtk/Settings.vala:1503 -msgid "" -"Application will be started during system startup and will run minimized in " -"system tray." -msgstr "" - #: Gtk/WizardWindow.vala:129 msgid "Apply" msgstr "" -#: Gtk/PropertiesWindow.vala:949 Gtk/PropertiesWindow.vala:967 +#: Gtk/PropertiesWindow.vala:951 Gtk/PropertiesWindow.vala:969 msgid "Apply recursively to directory contents" msgstr "" -#: Gtk/FileContextMenu.vala:1404 +#: Gtk/FileContextMenu.vala:1453 msgid "Archive" msgstr "" @@ -243,11 +228,11 @@ msgid "Authors" msgstr "" -#: Gtk/PropertiesWindow.vala:524 +#: Gtk/PropertiesWindow.vala:540 msgid "Available" msgstr "" -#: Gtk/FileViewToolbar.vala:155 Gtk/MainMenubar.vala:1255 Gtk/Pathbar.vala:803 +#: Gtk/FileViewToolbar.vala:155 Gtk/MainMenubar.vala:1255 Gtk/Pathbar.vala:797 #: Gtk/Settings.vala:391 Gtk/Settings.vala:777 Utility/Gtk/AboutWindow.vala:344 #: Utility/Gtk/AboutWindow.vala:376 msgid "Back" @@ -285,42 +270,46 @@ msgid "Block Size" msgstr "" -#: Gtk/PropertiesWindow.vala:242 +#: Gtk/PropertiesWindow.vala:249 msgid "Blocks" msgstr "" -#: Gtk/FileViewToolbar.vala:288 Gtk/Pathbar.vala:169 Gtk/Settings.vala:544 +#: Gtk/PlacesPopover.vala:519 +msgid "Bookmark" +msgstr "" + +#: Gtk/FileViewToolbar.vala:287 Gtk/Pathbar.vala:168 Gtk/Settings.vala:544 #: Gtk/Settings.vala:737 Gtk/Settings.vala:974 Gtk/Sidebar.vala:362 msgid "Bookmarks" msgstr "" -#: Gtk/FileContextMenu.vala:2357 Gtk/Settings.vala:2794 +#: Gtk/FileContextMenu.vala:2406 Gtk/Settings.vala:2794 msgid "Boost Color" msgstr "" -#: Gtk/FileContextMenu.vala:2358 +#: Gtk/FileContextMenu.vala:2407 msgid "" "Boost color (more saturation). This can be used for correcting photos that " "are too dull (less color)." msgstr "" -#: Gtk/FileContextMenu.vala:1813 +#: Gtk/FileContextMenu.vala:1862 msgid "Boot Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1631 +#: Gtk/FileContextMenu.vala:1680 msgid "Boot ISO file in QEMU-KVM virtual machine" msgstr "" -#: Gtk/FileContextMenu.vala:1854 +#: Gtk/FileContextMenu.vala:1903 msgid "Boot from an ISO file with the selected disk attached" msgstr "" -#: Gtk/FileContextMenu.vala:1630 +#: Gtk/FileContextMenu.vala:1679 msgid "Boot in VM" msgstr "" -#: Gtk/FileContextMenu.vala:1814 +#: Gtk/FileContextMenu.vala:1863 msgid "Boot the selected disk in a virtual machine" msgstr "" @@ -362,7 +351,7 @@ msgid "Calculate directory sizes" msgstr "" -#: Gtk/FileViewList.vala:2782 +#: Gtk/FileViewList.vala:2784 msgid "Calculating dir size..." msgstr "" @@ -392,19 +381,19 @@ msgid "Cancelled" msgstr "" -#: Gtk/ProgressPanelArchiveTask.vala:838 Gtk/ProgressPanelArchiveTask.vala:865 +#: Gtk/ProgressPanelArchiveTask.vala:865 msgid "Cancelled by user" msgstr "" -#: Gtk/FileViewList.vala:5974 +#: Gtk/FileViewList.vala:6068 msgid "Cannot create archive in this location" msgstr "" -#: Gtk/FileViewList.vala:5814 +#: Gtk/FileViewList.vala:5908 msgid "Cannot extract to this location" msgstr "" -#: Gtk/FileViewToolbar.vala:463 Gtk/MainHeaderBar.vala:273 +#: Gtk/FileViewToolbar.vala:459 Gtk/MainHeaderBar.vala:273 msgid "Change Application Settings" msgstr "" @@ -432,7 +421,7 @@ msgid "Change row spacing" msgstr "" -#: Gtk/PropertiesWindow.vala:336 +#: Gtk/PropertiesWindow.vala:343 msgid "Changed" msgstr "" @@ -471,14 +460,6 @@ msgid "Chroot" msgstr "" -#: Gtk/Settings.vala:2568 -msgid "Chroot: Enable GUI Apps" -msgstr "" - -#: Gtk/Settings.vala:2554 -msgid "Chroot: Enable network" -msgstr "" - #: Gtk/CreateArchiveWindow.vala:1814 msgid "Cipher" msgstr "" @@ -517,25 +498,20 @@ msgid "Click 'Finish' to add the account" msgstr "" -#: Gtk/Pathbar.vala:315 -msgid "Click to edit path" -msgstr "" - -#: Gtk/Sidebar.vala:738 -msgid "Click to mount device and open in active pane" +#: Gtk/PlacesPopover.vala:420 +msgid "Click to Remove" msgstr "" -#: Gtk/Sidebar.vala:735 -msgid "Click to open in active pane" +#: Gtk/PlacesPopover.vala:424 +msgid "Click to Rename" msgstr "" -#: Gtk/WizardWindow.vala:297 -msgid "Click to select" +#: Gtk/Pathbar.vala:309 +msgid "Click to edit path" msgstr "" #: Gtk/FileViewTab.vala:327 Gtk/MessageBar.vala:149 Gtk/SelectionBar.vala:172 -#: Gtk/Settings.vala:897 Gtk/WizardWindow.vala:143 -#: Utility/Gtk/AboutWindow.vala:401 +#: Gtk/WizardWindow.vala:143 Utility/Gtk/AboutWindow.vala:401 msgid "Close" msgstr "" @@ -547,10 +523,6 @@ msgid "Close button (R)" msgstr "" -#: Gtk/Pathbar.vala:970 -msgid "Close this pane" -msgstr "" - #: Gtk/MainHeaderBar.vala:321 Gtk/ProgressPanelArchiveTask.vala:515 msgid "Close this window" msgstr "" @@ -601,12 +573,16 @@ msgid "Commands listed below are not available on this system" msgstr "" -#: Gtk/FileContextMenu.vala:1076 +#: Gtk/FileContextMenu.vala:1082 msgid "Compare" msgstr "" -#: Gtk/FileContextMenu.vala:1077 -msgid "Compare file with file of same name in other pane" +#: Gtk/FileContextMenu.vala:1113 +msgid "Compare text file with file in opposite pane" +msgstr "" + +#: Gtk/FileContextMenu.vala:1083 +msgid "Compare text files side-by-side" msgstr "" #: Utility/FileTask.vala:287 @@ -614,11 +590,11 @@ msgstr "" #: Gtk/CreateArchiveWindow.vala:115 Gtk/CreateArchiveWindow.vala:2036 -#: Gtk/FileContextMenu.vala:1436 +#: Gtk/FileContextMenu.vala:1485 msgid "Compress" msgstr "" -#: Gtk/FileContextMenu.vala:1437 +#: Gtk/FileContextMenu.vala:1486 msgid "Compress selected items and create new archive" msgstr "" @@ -650,7 +626,7 @@ msgid "Connect" msgstr "" -#: Gtk/FileContextMenu.vala:1698 +#: Gtk/FileContextMenu.vala:1747 msgid "Connect a USB device and come back to this menu" msgstr "" @@ -670,7 +646,7 @@ msgid "Content Type" msgstr "" -#: Gtk/PropertiesWindow.vala:203 +#: Gtk/PropertiesWindow.vala:210 msgid "Contents" msgstr "" @@ -682,15 +658,15 @@ msgid "Convert Virtual Disk" msgstr "" -#: Gtk/FileContextMenu.vala:2474 +#: Gtk/FileContextMenu.vala:2523 msgid "Convert to" msgstr "" -#: Gtk/FileContextMenu.vala:2302 +#: Gtk/FileContextMenu.vala:2351 msgid "Convert to black and white" msgstr "" -#: Gtk/FileContextMenu.vala:1875 +#: Gtk/FileContextMenu.vala:1924 msgid "Convert to..." msgstr "" @@ -699,7 +675,7 @@ msgstr "" #: Gtk/CreateArchiveWindow.vala:654 Gtk/CreateArchiveWindow.vala:705 -#: Gtk/CreateArchiveWindow.vala:720 Gtk/FileContextMenu.vala:841 +#: Gtk/CreateArchiveWindow.vala:720 Gtk/FileContextMenu.vala:843 #: Gtk/MainMenubar.vala:558 Gtk/TermContextMenu.vala:119 msgid "Copy" msgstr "" @@ -711,7 +687,7 @@ "Copy selected items in active pane" msgstr "" -#: Gtk/FileContextMenu.vala:1191 +#: Gtk/FileContextMenu.vala:1240 msgid "Copy Across" msgstr "" @@ -722,19 +698,19 @@ "Copy selected items in active pane to opposite pane" msgstr "" -#: Gtk/FileContextMenu.vala:1357 +#: Gtk/FileContextMenu.vala:1406 msgid "Copy Path(s)" msgstr "" -#: Gtk/FileContextMenu.vala:1151 +#: Gtk/FileContextMenu.vala:1200 msgid "Copy To..." msgstr "" -#: Gtk/FileContextMenu.vala:1358 +#: Gtk/FileContextMenu.vala:1407 msgid "Copy file path to clipboard" msgstr "" -#: Gtk/FileContextMenu.vala:842 +#: Gtk/FileContextMenu.vala:844 msgid "Copy selected items" msgstr "" @@ -742,11 +718,11 @@ msgid "Copy selected text to clipboard" msgstr "" -#: Gtk/FileContextMenu.vala:1152 +#: Gtk/FileContextMenu.vala:1201 msgid "Copy to another location" msgstr "" -#: Gtk/FileContextMenu.vala:1192 +#: Gtk/FileContextMenu.vala:1241 msgid "Copy to other pane" msgstr "" @@ -767,24 +743,34 @@ msgid "Copying..." msgstr "" -#: Utility/Device.vala:1704 +#: Gtk/PlacesPopover.vala:477 +#, c-format +msgid "Could not find bookmarked path" +msgstr "" + +#: Utility/Device.vala:1707 #, c-format msgid "Could not find file" msgstr "" -#: Gtk/FileViewList.vala:3299 +#: Gtk/FileViewList.vala:4941 +#, c-format +msgid "Could not find file in opposite pane" +msgstr "" + +#: Gtk/FileViewList.vala:3301 msgid "Could not find path" msgstr "" -#: Gtk/FileViewList.vala:4239 +#: Gtk/FileViewList.vala:4241 msgid "Could not find the opposite pane!" msgstr "" -#: Gtk/FileViewList.vala:5767 +#: Gtk/FileViewList.vala:5861 msgid "Could not open file as archive" msgstr "" -#: Gtk/FileViewList.vala:2706 +#: Gtk/FileViewList.vala:2708 msgid "Counting items..." msgstr "" @@ -796,23 +782,23 @@ msgid "Create Derived Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1773 +#: Gtk/FileContextMenu.vala:1822 msgid "Create Derived Disk..." msgstr "" -#: Gtk/FileViewList.vala:4558 +#: Gtk/FileViewList.vala:4560 msgid "Create Directory" msgstr "" -#: Gtk/FileContextMenu.vala:1756 +#: Gtk/FileContextMenu.vala:1805 msgid "Create Disk..." msgstr "" -#: Gtk/FileViewList.vala:4592 Gtk/FileViewList.vala:4628 +#: Gtk/FileViewList.vala:4594 Gtk/FileViewList.vala:4630 msgid "Create File" msgstr "" -#: Gtk/FileContextMenu.vala:1793 +#: Gtk/FileContextMenu.vala:1842 msgid "Create Merged Disk..." msgstr "" @@ -828,44 +814,44 @@ msgid "Create Virtual Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1757 +#: Gtk/FileContextMenu.vala:1806 msgid "Create a virtual hard disk file" msgstr "" -#: Gtk/FileContextMenu.vala:1794 +#: Gtk/FileContextMenu.vala:1843 msgid "" "Create a virtual hard disk file by merging selected derived disk with it's " "base" msgstr "" -#: Gtk/FileContextMenu.vala:1774 +#: Gtk/FileContextMenu.vala:1823 msgid "Create a virtual hard disk file that uses selected disk as the base" msgstr "" -#: Gtk/FileViewList.vala:4366 +#: Gtk/FileViewList.vala:4368 msgid "Create copies of selected items?" msgstr "" -#: Gtk/FileContextMenu.vala:775 +#: Gtk/FileContextMenu.vala:777 msgid "Create new file from template" msgstr "" -#: Gtk/FileContextMenu.vala:649 +#: Gtk/FileContextMenu.vala:651 msgid "Create new file in this location" msgstr "" -#: Gtk/FileContextMenu.vala:629 +#: Gtk/FileContextMenu.vala:631 msgid "Create new folder in this location" msgstr "" #: Gtk/KvmCreateDiskWindow.vala:463 Gtk/ProgressPanelArchiveTask.vala:752 #: Gtk/ProgressPanelImageTask.vala:207 Gtk/ProgressPanelKvmTask.vala:258 -#: Gtk/PropertiesWindow.vala:304 +#: Gtk/PropertiesWindow.vala:311 #, c-format msgid "Created" msgstr "" -#: Utility/TeeJee.FileSystem.vala:664 +#: Utility/TeeJee.FileSystem.vala:744 msgid "Created directory" msgstr "" @@ -885,7 +871,7 @@ msgid "Credits" msgstr "" -#: Gtk/FileContextMenu.vala:815 Gtk/MainMenubar.vala:516 +#: Gtk/FileContextMenu.vala:817 Gtk/MainMenubar.vala:516 msgid "Cut" msgstr "" @@ -896,7 +882,7 @@ "Cut selected items in active pane" msgstr "" -#: Gtk/FileContextMenu.vala:816 +#: Gtk/FileContextMenu.vala:818 msgid "Cut selected items" msgstr "" @@ -936,7 +922,7 @@ msgid "Defaults" msgstr "" -#: Gtk/FileContextMenu.vala:979 Gtk/MainMenubar.vala:690 Gtk/TrashBar.vala:98 +#: Gtk/FileContextMenu.vala:981 Gtk/MainMenubar.vala:690 Gtk/TrashBar.vala:98 msgid "Delete" msgstr "" @@ -947,15 +933,15 @@ "Delete selected items permanently (without sending to recycle bin)" msgstr "" -#: Gtk/FileContextMenu.vala:980 Gtk/TrashBar.vala:102 +#: Gtk/FileContextMenu.vala:982 Gtk/TrashBar.vala:102 msgid "Delete selected items permanently" msgstr "" -#: Gtk/FileViewList.vala:4443 +#: Gtk/FileViewList.vala:4445 msgid "Delete selected items?" msgstr "" -#: Utility/TeeJee.FileSystem.vala:702 +#: Utility/TeeJee.FileSystem.vala:782 msgid "Deleted directory" msgstr "" @@ -974,15 +960,15 @@ "required" msgstr "" -#: Gtk/Sidebar.vala:346 +#: Gtk/PlacesPopover.vala:628 Gtk/Sidebar.vala:346 msgid "Desktop" msgstr "" -#: Gtk/FileViewList.vala:5814 Gtk/FileViewList.vala:5836 +#: Gtk/FileViewList.vala:5908 Gtk/FileViewList.vala:5930 msgid "Destination directory does not exist" msgstr "" -#: Gtk/FileViewList.vala:5974 +#: Gtk/FileViewList.vala:6068 msgid "Destination path is inside an archive (!)" msgstr "" @@ -990,28 +976,28 @@ msgid "Details" msgstr "" -#: Gtk/PropertiesWindow.vala:485 Utility/Device.vala:369 -#: Utility/Device.vala:376 Utility/Device.vala:512 Utility/Device.vala:517 -#: Utility/Device.vala:561 Utility/Device.vala:1685 Utility/Device.vala:1691 -#: Utility/Device.vala:1890 Utility/Device.vala:1895 Utility/Device.vala:1922 -#: Utility/Device.vala:2415 Utility/Device.vala:2425 Utility/KvmTask.vala:314 +#: Gtk/PropertiesWindow.vala:498 Gtk/Sidebar.vala:707 Utility/Device.vala:370 +#: Utility/Device.vala:377 Utility/Device.vala:513 Utility/Device.vala:518 +#: Utility/Device.vala:562 Utility/Device.vala:1688 Utility/Device.vala:1694 +#: Utility/Device.vala:1893 Utility/Device.vala:1898 Utility/Device.vala:1925 +#: Utility/Device.vala:2418 Utility/Device.vala:2428 Utility/KvmTask.vala:314 #, c-format msgid "Device" msgstr "" -#: Gtk/DeviceContextMenu.vala:519 +#: Gtk/DeviceContextMenu.vala:546 msgid "Device Locked" msgstr "" -#: Gtk/DeviceContextMenu.vala:439 +#: Gtk/DeviceContextMenu.vala:466 msgid "Device Unmounted" msgstr "" -#: Utility/Device.vala:368 Utility/Device.vala:1684 +#: Utility/Device.vala:369 Utility/Device.vala:1687 msgid "Device mounted successfully" msgstr "" -#: Utility/Device.vala:1744 +#: Utility/Device.vala:1747 msgid "Device name is empty!" msgstr "" @@ -1019,11 +1005,11 @@ msgid "Device safely ejected and ready for use" msgstr "" -#: Gtk/FileViewList.vala:3291 +#: Gtk/FileViewList.vala:3293 msgid "Device was unmounted" msgstr "" -#: Gtk/FileViewToolbar.vala:316 Gtk/Pathbar.vala:207 Gtk/Settings.vala:561 +#: Gtk/FileViewToolbar.vala:312 Gtk/Pathbar.vala:201 Gtk/Settings.vala:561 #: Gtk/Settings.vala:757 Gtk/Settings.vala:992 Gtk/Sidebar.vala:381 msgid "Devices" msgstr "" @@ -1048,23 +1034,23 @@ "Tony George" msgstr "" -#: Utility/TeeJee.FileSystem.vala:840 +#: Utility/TeeJee.FileSystem.vala:920 msgid "Dir not found" msgstr "" -#: Gtk/FileViewList.vala:4566 +#: Gtk/FileViewList.vala:4568 msgid "Directory exists" msgstr "" -#: Gtk/FileContextMenu.vala:1579 +#: Gtk/FileContextMenu.vala:1628 msgid "Disk Image" msgstr "" -#: Gtk/FileContextMenu.vala:1557 +#: Gtk/FileContextMenu.vala:1606 msgid "Disk Usage" msgstr "" -#: Gtk/FileViewList.vala:5055 +#: Gtk/FileViewList.vala:5141 msgid "Disk is Read-Only" msgstr "" @@ -1079,7 +1065,7 @@ msgid "Documentation" msgstr "" -#: Gtk/Sidebar.vala:341 +#: Gtk/PlacesPopover.vala:623 Gtk/Sidebar.vala:341 msgid "Documents" msgstr "" @@ -1087,7 +1073,7 @@ msgid "Domain" msgstr "" -#: Gtk/FileViewToolbar.vala:482 Gtk/MainMenubar.vala:1947 +#: Gtk/FileViewToolbar.vala:478 Gtk/MainMenubar.vala:1947 #: Utility/Gtk/DonationWindow.vala:40 msgid "Donate" msgstr "" @@ -1136,10 +1122,14 @@ msgid "Downloading items..." msgstr "" -#: Gtk/Sidebar.vala:342 +#: Gtk/PlacesPopover.vala:624 Gtk/Sidebar.vala:342 msgid "Downloads" msgstr "" +#: Gtk/PlacesPopover.vala:417 +msgid "Drag to Re-order" +msgstr "" + #: Gtk/Settings.vala:1808 Gtk/Settings.vala:1994 Gtk/Settings.vala:2195 msgid "Draw semi-transparent icons and thumbnails for hidden items" msgstr "" @@ -1152,11 +1142,11 @@ "Disable this for faster loading of directories." msgstr "" -#: Gtk/Settings.vala:510 Gtk/ViewPopover.vala:216 +#: Gtk/ViewPopover.vala:216 msgid "Dual" msgstr "" -#: Gtk/FileViewToolbar.vala:364 +#: Gtk/FileViewToolbar.vala:360 msgid "Dual Horizontal" msgstr "" @@ -1164,7 +1154,7 @@ msgid "Dual Pane Mode" msgstr "" -#: Gtk/FileViewToolbar.vala:354 +#: Gtk/FileViewToolbar.vala:350 msgid "Dual Vertical" msgstr "" @@ -1172,11 +1162,7 @@ msgid "Duration" msgstr "" -#: Utility/TeeJee.Logging.vala:93 -msgid "E" -msgstr "" - -#: Gtk/MainMenubar.vala:481 +#: Gtk/MainMenubar.vala:481 Gtk/PlacesPopover.vala:529 msgid "Edit" msgstr "" @@ -1189,22 +1175,10 @@ msgid "Effective permissions for current user" msgstr "" -#: Gtk/DeviceContextMenu.vala:244 -msgid "Eject" -msgstr "" - -#: Gtk/Sidebar.vala:1185 -msgid "Eject Device" -msgstr "" - -#: Gtk/DeviceContextMenu.vala:542 +#: Gtk/DeviceContextMenu.vala:569 msgid "Eject Disk ?" msgstr "" -#: Gtk/DeviceContextMenu.vala:245 -msgid "Eject the device so that it can be removed safely" -msgstr "" - #: Gtk/ProgressPanelArchiveTask.vala:162 msgid "Elapsed:" msgstr "" @@ -1251,11 +1225,11 @@ msgid "Encrypt file names" msgstr "" -#: Gtk/PropertiesWindow.vala:231 +#: Gtk/PropertiesWindow.vala:238 msgid "Encrypted" msgstr "" -#: Utility/Device.vala:1846 +#: Utility/Device.vala:1849 msgid "Encrypted Device" msgstr "" @@ -1264,7 +1238,7 @@ msgid "Encrypted archive" msgstr "" -#: Utility/Device.vala:530 +#: Utility/Device.vala:531 #, c-format msgid "Encrypted device" msgstr "" @@ -1285,37 +1259,37 @@ msgid "Enter Password" msgstr "" -#: Utility/Device.vala:532 Utility/FileItemArchive.vala:364 +#: Utility/Device.vala:533 Utility/FileItemArchive.vala:364 msgid "Enter Password to Unlock" msgstr "" -#: Gtk/FileViewList.vala:4566 Gtk/FileViewList.vala:4600 -#: Gtk/FileViewList.vala:4640 +#: Gtk/FileViewList.vala:4568 Gtk/FileViewList.vala:4602 +#: Gtk/FileViewList.vala:4642 msgid "Enter another name" msgstr "" -#: Gtk/FileViewList.vala:4558 +#: Gtk/FileViewList.vala:4560 msgid "Enter directory name" msgstr "" -#: Gtk/FileViewList.vala:4592 Gtk/FileViewList.vala:4628 +#: Gtk/FileViewList.vala:4594 Gtk/FileViewList.vala:4630 msgid "Enter file name" msgstr "" -#: Gtk/FileViewList.vala:4494 +#: Gtk/FileViewList.vala:4496 msgid "Enter new name" msgstr "" -#: Utility/Device.vala:1847 +#: Utility/Device.vala:1850 #, c-format msgid "Enter passphrase to unlock '%s'" msgstr "" -#: Gtk/FileViewList.vala:5308 +#: Gtk/FileViewList.vala:5394 msgid "Enter password for PDF document" msgstr "" -#: Utility/Gtk/GtkHelper.vala:1233 +#: Utility/Gtk/GtkHelper.vala:948 msgid "Enter path or browse for directory" msgstr "" @@ -1327,14 +1301,14 @@ msgid "Enter share name to connect (Required)" msgstr "" -#: Gtk/FileViewList.vala:4513 +#: Gtk/FileViewList.vala:4515 msgid "Enter unique name for selected file" msgstr "" #: Gtk/ProgressPanelArchiveTask.vala:771 Gtk/ProgressPanelArchiveTask.vala:782 #: Gtk/ProgressPanelImageTask.vala:198 Gtk/ProgressPanelKvmTask.vala:217 #: Gtk/ProgressPanelKvmTask.vala:220 Gtk/ProgressPanelPdfTask.vala:198 -#: Utility/Device.vala:1667 Utility/KvmTask.vala:311 +#: Utility/Device.vala:1670 Utility/KvmTask.vala:311 #: Utility/Gtk/GtkHelper.vala:18 #, c-format msgid "Error" @@ -1344,7 +1318,7 @@ msgid "Error Connecting to Server" msgstr "" -#: Gtk/FileViewList.vala:3316 +#: Gtk/FileViewList.vala:3318 #, c-format msgid "Error opening directory: Permission denied" msgstr "" @@ -1353,8 +1327,8 @@ msgid "Example: 192.0.2.1" msgstr "" -#: Gtk/PropertiesWindow.vala:649 Gtk/PropertiesWindow.vala:655 -#: Gtk/PropertiesWindow.vala:661 +#: Gtk/PropertiesWindow.vala:672 Gtk/PropertiesWindow.vala:678 +#: Gtk/PropertiesWindow.vala:684 msgid "Execute" msgstr "" @@ -1362,7 +1336,7 @@ msgid "Executing action..." msgstr "" -#: Gtk/FileViewList.vala:4992 +#: Gtk/FileViewList.vala:5078 #, c-format msgid "Existing data on device will be destroyed" msgstr "" @@ -1371,7 +1345,7 @@ msgid "Exit" msgstr "" -#: Common/Main.vala:1208 +#: Common/Main.vala:1213 msgid "Exiting Application" msgstr "" @@ -1383,30 +1357,30 @@ msgid "External tools" msgstr "" -#: Gtk/FileContextMenu.vala:1504 +#: Gtk/FileContextMenu.vala:1553 msgid "Extract Across" msgstr "" -#: Gtk/FileContextMenu.vala:1529 +#: Gtk/FileContextMenu.vala:1578 msgid "Extract Here" msgstr "" -#: Gtk/FileContextMenu.vala:1481 +#: Gtk/FileContextMenu.vala:1530 msgid "Extract To.." msgstr "" -#: Gtk/FileContextMenu.vala:1530 +#: Gtk/FileContextMenu.vala:1579 msgid "" "Extract archives in same location. New folder will be created with archive " "name." msgstr "" -#: Gtk/FileContextMenu.vala:1482 +#: Gtk/FileContextMenu.vala:1531 msgid "" "Extract archives to another location. Existing files will be overwritten." msgstr "" -#: Gtk/FileContextMenu.vala:1505 +#: Gtk/FileContextMenu.vala:1554 msgid "" "Extract archives to the opposite pane. Existing files will be overwritten." msgstr "" @@ -1435,77 +1409,77 @@ msgid "Failed to Remove Account" msgstr "" -#: Utility/TeeJee.FileSystem.vala:1166 +#: Utility/TeeJee.FileSystem.vala:1246 msgid "Failed to change owner/group!" msgstr "" -#: Utility/TeeJee.FileSystem.vala:360 +#: Utility/TeeJee.FileSystem.vala:440 msgid "Failed to copy file" msgstr "" -#: Utility/TeeJee.FileSystem.vala:674 +#: Utility/TeeJee.FileSystem.vala:754 msgid "Failed to create directory" msgstr "" -#: Utility/TeeJee.FileSystem.vala:560 +#: Utility/TeeJee.FileSystem.vala:640 msgid "Failed to create hard link" msgstr "" -#: Utility/TeeJee.FileSystem.vala:537 +#: Utility/TeeJee.FileSystem.vala:617 msgid "Failed to create symlink" msgstr "" -#: Utility/TeeJee.FileSystem.vala:186 Utility/TeeJee.FileSystem.vala:234 +#: Utility/TeeJee.FileSystem.vala:266 Utility/TeeJee.FileSystem.vala:314 msgid "Failed to delete items" msgstr "" -#: Utility/Device.vala:1292 +#: Utility/Device.vala:1295 msgid "Failed to get partition list" msgstr "" -#: Utility/Device.vala:560 Utility/Device.vala:1921 +#: Utility/Device.vala:561 Utility/Device.vala:1924 msgid "Failed to lock device" msgstr "" -#: Utility/Device.vala:375 Utility/Device.vala:1690 +#: Utility/Device.vala:376 Utility/Device.vala:1693 msgid "Failed to mount device" msgstr "" -#: Utility/TeeJee.FileSystem.vala:379 +#: Utility/TeeJee.FileSystem.vala:459 msgid "Failed to move file" msgstr "" -#: Utility/TeeJee.FileSystem.vala:255 +#: Utility/TeeJee.FileSystem.vala:335 msgid "Failed to move items to trash" msgstr "" -#: Utility/TeeJee.FileSystem.vala:296 +#: Utility/TeeJee.FileSystem.vala:376 msgid "Failed to read file" msgstr "" -#: Utility/TeeJee.FileSystem.vala:441 +#: Utility/TeeJee.FileSystem.vala:521 msgid "Failed to rename item" msgstr "" -#: Utility/TeeJee.FileSystem.vala:1128 +#: Utility/TeeJee.FileSystem.vala:1208 msgid "Failed to set permissions!" msgstr "" -#: Utility/TeeJee.FileSystem.vala:212 +#: Utility/TeeJee.FileSystem.vala:292 msgid "Failed to trash items" msgstr "" -#: Utility/Device.vala:454 Utility/Device.vala:476 Utility/Device.vala:496 -#: Utility/Device.vala:511 Utility/Device.vala:1829 Utility/Device.vala:1852 -#: Utility/Device.vala:1873 Utility/Device.vala:1889 +#: Utility/Device.vala:455 Utility/Device.vala:477 Utility/Device.vala:497 +#: Utility/Device.vala:512 Utility/Device.vala:1832 Utility/Device.vala:1855 +#: Utility/Device.vala:1876 Utility/Device.vala:1892 msgid "Failed to unlock device" msgstr "" -#: Utility/Device.vala:2129 +#: Utility/Device.vala:2132 msgid "Failed to unmount" msgstr "" -#: Utility/TeeJee.FileSystem.vala:342 +#: Utility/TeeJee.FileSystem.vala:422 msgid "Failed to write file" msgstr "" @@ -1522,7 +1496,7 @@ msgid "Fetching info..." msgstr "" -#: Gtk/FileContextMenu.vala:648 Gtk/KvmCreateDiskWindow.vala:428 +#: Gtk/FileContextMenu.vala:650 Gtk/KvmCreateDiskWindow.vala:428 #: Gtk/MainMenubar.vala:123 Gtk/ProgressPanelImageTask.vala:156 #: Gtk/ProgressPanelKvmTask.vala:203 Gtk/ProgressPanelPdfTask.vala:156 #: Gtk/ProgressPanelUsbWriterTask.vala:162 @@ -1542,11 +1516,15 @@ msgid "File Name" msgstr "" -#: Gtk/FileViewList.vala:4600 Gtk/FileViewList.vala:4640 +#: Gtk/FileViewList.vala:4940 +msgid "File Not Found" +msgstr "" + +#: Gtk/FileViewList.vala:4602 Gtk/FileViewList.vala:4642 msgid "File exists" msgstr "" -#: Utility/TeeJee.FileSystem.vala:992 Utility/TeeJee.FileSystem.vala:1041 +#: Utility/TeeJee.FileSystem.vala:1072 Utility/TeeJee.FileSystem.vala:1121 msgid "File is missing" msgstr "" @@ -1555,8 +1533,8 @@ msgstr "" #: Gtk/PoloGtk.vala:106 Utility/GtkBookmark.vala:122 Utility/MimeTypes.vala:88 -#: Utility/RsyncTask.vala:288 Utility/TeeJee.FileSystem.vala:374 -#: Utility/TeeJee.FileSystem.vala:869 Utility/XdgUserDirectories.vala:143 +#: Utility/RsyncTask.vala:288 Utility/TeeJee.FileSystem.vala:454 +#: Utility/TeeJee.FileSystem.vala:949 Utility/XdgUserDirectories.vala:143 msgid "File not found" msgstr "" @@ -1565,7 +1543,7 @@ msgid "File type" msgstr "" -#: Gtk/PropertiesWindow.vala:714 +#: Gtk/PropertiesWindow.vala:716 msgid "" "File will be executed with the priviledges of the file's group instead of " "priviledges of user who is executing the file.\n" @@ -1574,7 +1552,7 @@ "the file, to run it with the group's priviledges." msgstr "" -#: Gtk/PropertiesWindow.vala:711 +#: Gtk/PropertiesWindow.vala:713 msgid "" "File will be executed with the priviledges of the file's owner instead of " "priviledges of user who is executing the file.\n" @@ -1587,8 +1565,9 @@ msgid "Files:" msgstr "" -#: Gtk/PropertiesWindow.vala:467 Gtk/PropertiesWindow.vala:495 -#: Gtk/Sidebar.vala:339 Utility/Device.vala:2433 +#: Gtk/PlacesPopover.vala:621 Gtk/PropertiesWindow.vala:472 +#: Gtk/PropertiesWindow.vala:510 Gtk/Sidebar.vala:339 Gtk/Sidebar.vala:719 +#: Utility/Device.vala:2436 #, c-format msgid "Filesystem" msgstr "" @@ -1627,7 +1606,7 @@ msgid "Flash Complete" msgstr "" -#: Gtk/FileViewList.vala:4991 +#: Gtk/FileViewList.vala:5077 #, c-format msgid "Flash ISO to device?" msgstr "" @@ -1636,23 +1615,20 @@ msgid "Flashing ISO to device..." msgstr "" -#: Gtk/DeviceContextMenu.vala:362 -msgid "Flush Read Buffer" -msgstr "" - -#: Gtk/DeviceContextMenu.vala:363 -msgid "Flushes the read buffer for device" -msgstr "" - -#: Gtk/FileContextMenu.vala:628 +#: Gtk/FileContextMenu.vala:630 msgid "Folder" msgstr "" -#: Gtk/FileViewList.vala:3307 +#: Gtk/FileViewList.vala:3309 msgid "Folder is empty" msgstr "" -#: Gtk/FileContextMenu.vala:1338 +#: Gtk/PlacesPopover.vala:478 +msgid "" +"Folder may have been deleted or renamed, or device may have been unmounted" +msgstr "" + +#: Gtk/FileContextMenu.vala:1387 msgid "Follow Symlink Path" msgstr "" @@ -1681,15 +1657,15 @@ msgid "Format" msgstr "" -#: Gtk/DeviceContextMenu.vala:290 +#: Gtk/DeviceContextMenu.vala:294 msgid "Format device using GNOME disk utility" msgstr "" -#: Gtk/DeviceContextMenu.vala:289 +#: Gtk/DeviceContextMenu.vala:293 msgid "Format..." msgstr "" -#: Gtk/FileViewToolbar.vala:176 Gtk/MainMenubar.vala:1300 Gtk/Pathbar.vala:833 +#: Gtk/FileViewToolbar.vala:176 Gtk/MainMenubar.vala:1300 Gtk/Pathbar.vala:827 #: Gtk/Settings.vala:408 Gtk/Settings.vala:797 msgid "Forward" msgstr "" @@ -1698,7 +1674,7 @@ msgid "Found" msgstr "" -#: Gtk/Sidebar.vala:1259 Gtk/Statusbar.vala:364 +#: Gtk/Sidebar.vala:1287 Gtk/Statusbar.vala:364 #, c-format msgid "Free" msgstr "" @@ -1711,11 +1687,11 @@ msgid "Fullscreen Mode" msgstr "" -#: Gtk/DeviceContextMenu.vala:572 +#: Gtk/DeviceContextMenu.vala:599 msgid "GNOME Disk Uitility (gnome-disks) is not installed" msgstr "" -#: Gtk/DeviceContextMenu.vala:589 +#: Gtk/DeviceContextMenu.vala:616 msgid "GNOME Disk Utility (gnome-disks) is not installed" msgstr "" @@ -1727,11 +1703,11 @@ msgid "GTK theme to use" msgstr "" -#: Gtk/PropertiesWindow.vala:147 Gtk/Settings.vala:1159 +#: Gtk/PropertiesWindow.vala:154 Gtk/Settings.vala:1159 msgid "General" msgstr "" -#: Gtk/FileViewList.vala:3390 +#: Gtk/FileViewList.vala:3392 msgid "Generating thumbnails..." msgstr "" @@ -1743,11 +1719,11 @@ msgid "Go" msgstr "" -#: Gtk/Pathbar.vala:863 +#: Gtk/Pathbar.vala:857 msgid "Go Up" msgstr "" -#: Gtk/FileViewList.vala:3683 +#: Gtk/FileViewList.vala:3685 msgid "Go to location" msgstr "" @@ -1773,7 +1749,7 @@ msgstr "" #: Gtk/FileViewList.vala:412 Gtk/FileViewList.vala:933 -#: Gtk/PropertiesWindow.vala:637 Gtk/PropertiesWindow.vala:863 +#: Gtk/PropertiesWindow.vala:660 Gtk/PropertiesWindow.vala:865 #, c-format msgid "Group" msgstr "" @@ -1782,7 +1758,7 @@ msgid "Headerbar" msgstr "" -#: Gtk/PropertiesWindow.vala:278 +#: Gtk/PropertiesWindow.vala:285 msgid "Headers" msgstr "" @@ -1790,16 +1766,12 @@ msgid "Help" msgstr "" -#: Gtk/Settings.vala:493 -msgid "Hidden" -msgstr "" - -#: Gtk/CreateArchiveWindow.vala:1802 Gtk/FileContextMenu.vala:1293 +#: Gtk/CreateArchiveWindow.vala:1802 Gtk/FileContextMenu.vala:1342 #: Gtk/PasswordDialog.vala:202 msgid "Hide" msgstr "" -#: Gtk/FileContextMenu.vala:1294 +#: Gtk/FileContextMenu.vala:1343 msgid "Hide selected items" msgstr "" @@ -1807,8 +1779,8 @@ msgid "History" msgstr "" -#: Gtk/FileViewToolbar.vala:217 Gtk/Pathbar.vala:893 Gtk/Settings.vala:459 -#: Gtk/Settings.vala:837 Gtk/Sidebar.vala:340 +#: Gtk/FileViewToolbar.vala:217 Gtk/Pathbar.vala:887 Gtk/PlacesPopover.vala:622 +#: Gtk/Settings.vala:459 Gtk/Settings.vala:837 Gtk/Sidebar.vala:340 msgid "Home" msgstr "" @@ -1836,7 +1808,7 @@ msgid "Icon size" msgstr "" -#: Gtk/FileViewToolbar.vala:402 Gtk/Settings.vala:1267 Gtk/ViewPopover.vala:134 +#: Gtk/FileViewToolbar.vala:398 Gtk/Settings.vala:1267 Gtk/ViewPopover.vala:134 msgid "Icons" msgstr "" @@ -1854,7 +1826,7 @@ "creating new file." msgstr "" -#: Gtk/FileContextMenu.vala:2204 +#: Gtk/FileContextMenu.vala:2253 msgid "Image" msgstr "" @@ -1884,7 +1856,7 @@ msgid "Install Rclone (Cloud Storage Support)" msgstr "" -#: Gtk/FileContextMenu.vala:1853 +#: Gtk/FileContextMenu.vala:1902 msgid "Install from ISO..." msgstr "" @@ -1892,19 +1864,19 @@ msgid "Install p7zip 16.02 (Archive Support)" msgstr "" -#: Gtk/FileViewList.vala:5577 Gtk/FileViewList.vala:5599 +#: Gtk/FileViewList.vala:5671 Gtk/FileViewList.vala:5693 msgid "Install required packages and try again" msgstr "" -#: Gtk/FileViewList.vala:4239 +#: Gtk/FileViewList.vala:4241 msgid "Internal Error" msgstr "" -#: Utility/Device.vala:495 +#: Utility/Device.vala:496 msgid "Invalid Passphrase" msgstr "" -#: Gtk/FileViewList.vala:5836 +#: Gtk/FileViewList.vala:5930 msgid "Invalid Path" msgstr "" @@ -1932,11 +1904,11 @@ msgid "Items" msgstr "" -#: Gtk/FileContextMenu.vala:1718 +#: Gtk/FileContextMenu.vala:1767 msgid "KVM" msgstr "" -#: Gtk/PropertiesWindow.vala:1019 +#: Gtk/PropertiesWindow.vala:1023 msgid "Key" msgstr "" @@ -1948,7 +1920,7 @@ msgid "Korn shell (ksh)" msgstr "" -#: Gtk/PropertiesWindow.vala:493 Utility/Device.vala:2434 +#: Gtk/PropertiesWindow.vala:506 Gtk/Sidebar.vala:715 Utility/Device.vala:2437 #, c-format msgid "Label" msgstr "" @@ -1993,7 +1965,7 @@ "are running in the guest OS." msgstr "" -#: Gtk/PropertiesWindow.vala:178 +#: Gtk/PropertiesWindow.vala:185 msgid "Link Target" msgstr "" @@ -2002,7 +1974,7 @@ msgid "Link to" msgstr "" -#: Gtk/FileViewToolbar.vala:395 Gtk/Settings.vala:1265 Gtk/ViewPopover.vala:127 +#: Gtk/FileViewToolbar.vala:391 Gtk/Settings.vala:1265 Gtk/ViewPopover.vala:127 msgid "List" msgstr "" @@ -2018,19 +1990,19 @@ msgid "Listing source items..." msgstr "" -#: Gtk/FileViewList.vala:3329 +#: Gtk/FileViewList.vala:3331 msgid "Loading..." msgstr "" -#: Gtk/CreateArchiveWindow.vala:404 Gtk/PropertiesWindow.vala:175 +#: Gtk/CreateArchiveWindow.vala:404 Gtk/PropertiesWindow.vala:182 msgid "Location" msgstr "" -#: Gtk/Sidebar.vala:930 +#: Gtk/Sidebar.vala:958 msgid "Location not found" msgstr "" -#: Gtk/DeviceContextMenu.vala:221 +#: Gtk/DeviceContextMenu.vala:225 msgid "Lock" msgstr "" @@ -2038,12 +2010,12 @@ msgid "Lock Path" msgstr "" -#: Utility/Device.vala:568 Utility/Device.vala:1928 +#: Utility/Device.vala:569 Utility/Device.vala:1931 #, c-format msgid "Locked" msgstr "" -#: Utility/Device.vala:567 Utility/Device.vala:1927 +#: Utility/Device.vala:568 Utility/Device.vala:1930 msgid "Locked successfully" msgstr "" @@ -2059,19 +2031,20 @@ msgid "MD5" msgstr "" -#: Gtk/FileViewToolbar.vala:483 +#: Gtk/FileViewToolbar.vala:479 msgid "Make a donation" msgstr "" -#: Gtk/DeviceContextMenu.vala:266 +#: Gtk/DeviceContextMenu.vala:270 msgid "Manage device using GNOME disk utility" msgstr "" -#: Gtk/DeviceContextMenu.vala:265 +#: Gtk/DeviceContextMenu.vala:269 msgid "Manage..." msgstr "" -#: Gtk/PropertiesWindow.vala:488 +#: Gtk/PropertiesWindow.vala:501 Gtk/Sidebar.vala:710 +#, c-format msgid "Mapped" msgstr "" @@ -2091,19 +2064,19 @@ msgid "Maximum" msgstr "" -#: Gtk/FileViewToolbar.vala:416 Gtk/Settings.vala:1271 Gtk/ViewPopover.vala:148 +#: Gtk/FileViewToolbar.vala:412 Gtk/Settings.vala:1271 Gtk/ViewPopover.vala:148 msgid "Media" msgstr "" -#: Gtk/PropertiesWindow.vala:1012 +#: Gtk/PropertiesWindow.vala:1016 msgid "MediaInfo" msgstr "" -#: Gtk/FileViewList.vala:3318 +#: Gtk/FileViewList.vala:3320 msgid "Menubar: File > New Admin Window" msgstr "" -#: Gtk/FileContextMenu.vala:2015 Gtk/Settings.vala:2597 +#: Gtk/FileContextMenu.vala:2064 Gtk/Settings.vala:2597 msgid "Merge" msgstr "" @@ -2111,15 +2084,15 @@ msgid "Merge Derived Disk" msgstr "" -#: Gtk/FileContextMenu.vala:2016 +#: Gtk/FileContextMenu.vala:2065 msgid "Merge selected PDF files into one document" msgstr "" -#: Gtk/CreateArchiveWindow.vala:614 Gtk/PropertiesWindow.vala:225 +#: Gtk/CreateArchiveWindow.vala:614 Gtk/PropertiesWindow.vala:232 msgid "Method" msgstr "" -#: Gtk/PropertiesWindow.vala:290 Utility/FileItem.vala:660 +#: Gtk/PropertiesWindow.vala:297 Utility/FileItem.vala:660 #, c-format msgid "Mime" msgstr "" @@ -2133,17 +2106,6 @@ msgid "Minimize" msgstr "" -#: Gtk/Settings.vala:1489 -msgid "" -"Minimize to system tray when window is closed instead of exiting the " -"application. Opening another folder will be much faster, as the application " -"would already be running in the background." -msgstr "" - -#: Gtk/Settings.vala:1486 -msgid "Minimize to tray" -msgstr "" - #: Gtk/ToolsWindow.vala:155 msgid "Missing" msgstr "" @@ -2152,8 +2114,8 @@ msgid "Missing Dependencies" msgstr "" -#: Gtk/DeviceContextMenu.vala:571 Gtk/DeviceContextMenu.vala:588 -#: Gtk/FileViewList.vala:5576 +#: Gtk/DeviceContextMenu.vala:598 Gtk/DeviceContextMenu.vala:615 +#: Gtk/FileViewList.vala:5670 msgid "Missing Dependency" msgstr "" @@ -2161,48 +2123,49 @@ msgid "Missing Icon" msgstr "" -#: Gtk/FileViewList.vala:5598 +#: Gtk/FileViewList.vala:5692 msgid "Missing Plugin" msgstr "" -#: Utility/Device.vala:2417 +#: Utility/Device.vala:2420 #, c-format msgid "Model" msgstr "" #: Gtk/FileConflictDialog.vala:543 Gtk/FileConflictDialog.vala:555 -#: Gtk/FileViewList.vala:804 Gtk/PropertiesWindow.vala:308 +#: Gtk/FileViewList.vala:804 Gtk/PropertiesWindow.vala:315 #: Utility/FileItem.vala:657 #, c-format msgid "Modified" msgstr "" -#: Gtk/FileContextMenu.vala:1102 +#: Gtk/FileContextMenu.vala:1151 msgid "More options" msgstr "" -#: Gtk/DeviceContextMenu.vala:175 Gtk/DeviceContextMenu.vala:315 -#: Gtk/FileContextMenu.vala:1609 Gtk/PropertiesWindow.vala:498 +#: Gtk/DeviceContextMenu.vala:179 Gtk/FileContextMenu.vala:1658 +#: Gtk/PropertiesWindow.vala:513 Gtk/Sidebar.vala:722 +#, c-format msgid "Mount" msgstr "" -#: Gtk/FileContextMenu.vala:1833 +#: Gtk/FileContextMenu.vala:1882 msgid "Mount Disk" msgstr "" -#: Gtk/FileContextMenu.vala:1610 +#: Gtk/FileContextMenu.vala:1659 msgid "Mount the disk image as read-only device" msgstr "" -#: Gtk/FileContextMenu.vala:1834 +#: Gtk/FileContextMenu.vala:1883 msgid "Mount the selected disk" msgstr "" -#: Gtk/DeviceContextMenu.vala:176 Gtk/DeviceContextMenu.vala:316 +#: Gtk/DeviceContextMenu.vala:180 msgid "Mount this volume" msgstr "" -#: Gtk/FileViewList.vala:4941 +#: Gtk/FileViewList.vala:5027 #, c-format msgid "Mounted ISO" msgstr "" @@ -2211,7 +2174,7 @@ msgid "Mounted successfully" msgstr "" -#: Gtk/FileContextMenu.vala:1209 +#: Gtk/FileContextMenu.vala:1258 msgid "Move Across" msgstr "" @@ -2226,7 +2189,7 @@ msgid "Move Down" msgstr "" -#: Gtk/FileContextMenu.vala:1169 +#: Gtk/FileContextMenu.vala:1218 msgid "Move To..." msgstr "" @@ -2234,7 +2197,7 @@ msgid "Move Up" msgstr "" -#: Gtk/FileContextMenu.vala:958 +#: Gtk/FileContextMenu.vala:960 msgid "Move files to recycle bin" msgstr "" @@ -2246,11 +2209,11 @@ msgid "Move selected item up" msgstr "" -#: Gtk/FileContextMenu.vala:1170 +#: Gtk/FileContextMenu.vala:1219 msgid "Move to another location" msgstr "" -#: Gtk/FileContextMenu.vala:1210 +#: Gtk/FileContextMenu.vala:1259 msgid "Move to other pane" msgstr "" @@ -2271,7 +2234,7 @@ msgid "Multiple items selected" msgstr "" -#: Gtk/Sidebar.vala:344 +#: Gtk/PlacesPopover.vala:626 Gtk/Sidebar.vala:344 msgid "Music" msgstr "" @@ -2288,13 +2251,13 @@ msgstr "" #: Gtk/ColumnSelectionBox.vala:111 Gtk/CreateArchiveWindow.vala:259 -#: Gtk/FileViewList.vala:646 Gtk/PropertiesWindow.vala:169 +#: Gtk/FileViewList.vala:646 Gtk/PropertiesWindow.vala:176 #: Utility/FileItem.vala:654 #, c-format msgid "Name" msgstr "" -#: Gtk/FileContextMenu.vala:586 +#: Gtk/FileContextMenu.vala:588 msgid "New" msgstr "" @@ -2302,11 +2265,11 @@ msgid "New Admin Window" msgstr "" -#: Gtk/FileViewList.vala:4587 +#: Gtk/FileViewList.vala:4589 msgid "New File" msgstr "" -#: Gtk/FileViewList.vala:4553 +#: Gtk/FileViewList.vala:4555 msgid "New Folder" msgstr "" @@ -2334,34 +2297,34 @@ msgid "Next" msgstr "" -#: Gtk/MediaBar.vala:146 Gtk/PropertiesWindow.vala:230 -#: Gtk/PropertiesWindow.vala:235 Utility/Gtk/CustomMessageDialog.vala:177 +#: Gtk/MediaBar.vala:146 Gtk/PropertiesWindow.vala:237 +#: Gtk/PropertiesWindow.vala:242 Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "" -#: Gtk/FileViewList.vala:5969 +#: Gtk/FileViewList.vala:6063 msgid "No Files Selected" msgstr "" -#: Gtk/FileViewList.vala:5432 Gtk/FileViewList.vala:5452 -#: Gtk/FileViewList.vala:5472 Gtk/FileViewList.vala:5492 -#: Gtk/FileViewList.vala:5512 Gtk/FileViewList.vala:5532 +#: Gtk/FileViewList.vala:5518 Gtk/FileViewList.vala:5538 +#: Gtk/FileViewList.vala:5558 Gtk/FileViewList.vala:5578 +#: Gtk/FileViewList.vala:5598 Gtk/FileViewList.vala:5618 msgid "No Images Selected" msgstr "" -#: Gtk/FileViewList.vala:5412 +#: Gtk/FileViewList.vala:5498 msgid "No JPEGs Selected" msgstr "" -#: Gtk/FileViewList.vala:5390 +#: Gtk/FileViewList.vala:5476 msgid "No PNGs Selected" msgstr "" -#: Gtk/FileViewList.vala:4510 +#: Gtk/FileViewList.vala:4512 msgid "No Permission" msgstr "" -#: Gtk/FileContextMenu.vala:1697 +#: Gtk/FileContextMenu.vala:1746 msgid "No USB devices found" msgstr "" @@ -2369,11 +2332,8 @@ msgid "Normal" msgstr "" -#: Gtk/ProgressPanelFileTask.vala:433 -msgid "Not Responding" -msgstr "" - -#: Gtk/FileViewList.vala:5766 Gtk/FileViewList.vala:5862 +#: Gtk/FileViewList.vala:4974 Gtk/FileViewList.vala:4981 +#: Gtk/FileViewList.vala:5860 Gtk/FileViewList.vala:5956 msgid "Not Supported" msgstr "" @@ -2390,8 +2350,8 @@ msgid "OK" msgstr "" -#: Gtk/DeviceContextMenu.vala:149 Gtk/FileContextMenu.vala:236 -#: Gtk/FileContextMenu.vala:305 Gtk/FileContextMenu.vala:1458 +#: Gtk/DeviceContextMenu.vala:153 Gtk/FileContextMenu.vala:238 +#: Gtk/FileContextMenu.vala:307 Gtk/FileContextMenu.vala:1507 #: Gtk/MainMenubar.vala:1241 msgid "Open" msgstr "" @@ -2408,59 +2368,59 @@ msgid "Open Opposite" msgstr "" -#: Gtk/FileContextMenu.vala:1032 +#: Gtk/FileContextMenu.vala:1031 msgid "Open Original Location" msgstr "" -#: Gtk/FileContextMenu.vala:796 +#: Gtk/FileContextMenu.vala:798 msgid "Open Templates Folder" msgstr "" -#: Gtk/FileContextMenu.vala:1055 +#: Gtk/FileContextMenu.vala:1054 msgid "Open Trash Directory" msgstr "" -#: Gtk/FileContextMenu.vala:328 Gtk/FileContextMenu.vala:362 +#: Gtk/FileContextMenu.vala:330 Gtk/FileContextMenu.vala:364 msgid "Open With" msgstr "" -#: Gtk/FileContextMenu.vala:671 +#: Gtk/FileContextMenu.vala:673 msgid "Open a terminal window" msgstr "" -#: Gtk/FileViewList.vala:3317 +#: Gtk/FileViewList.vala:3319 msgid "Open an admin window to browse this folder" msgstr "" -#: Gtk/FileContextMenu.vala:1459 +#: Gtk/FileContextMenu.vala:1508 msgid "Open archive" msgstr "" -#: Gtk/FileContextMenu.vala:564 +#: Gtk/FileContextMenu.vala:566 msgid "Open as Admin" msgstr "" -#: Gtk/FileContextMenu.vala:565 +#: Gtk/FileContextMenu.vala:567 msgid "Open folder as administrator" msgstr "" -#: Gtk/FileContextMenu.vala:523 +#: Gtk/FileContextMenu.vala:525 msgid "Open folder in new tab" msgstr "" -#: Gtk/FileContextMenu.vala:544 +#: Gtk/FileContextMenu.vala:546 msgid "Open folder in new window" msgstr "" -#: Gtk/FileContextMenu.vala:522 +#: Gtk/FileContextMenu.vala:524 msgid "Open in New Tab" msgstr "" -#: Gtk/FileContextMenu.vala:543 +#: Gtk/FileContextMenu.vala:545 msgid "Open in New Window" msgstr "" -#: Gtk/DeviceContextMenu.vala:150 +#: Gtk/DeviceContextMenu.vala:154 msgid "Open in active pane" msgstr "" @@ -2472,11 +2432,11 @@ msgid "Open menu" msgstr "" -#: Gtk/FileContextMenu.vala:690 +#: Gtk/FileContextMenu.vala:692 msgid "Open new tab" msgstr "" -#: Gtk/FileContextMenu.vala:709 +#: Gtk/FileContextMenu.vala:711 msgid "Open new window" msgstr "" @@ -2488,15 +2448,15 @@ msgid "Open right-pane location in left pane" msgstr "" -#: Gtk/FileContextMenu.vala:306 +#: Gtk/FileContextMenu.vala:308 msgid "Open selected item" msgstr "" -#: Gtk/FileContextMenu.vala:797 +#: Gtk/FileContextMenu.vala:799 msgid "Open templates folder" msgstr "" -#: Gtk/FileContextMenu.vala:1056 +#: Gtk/FileContextMenu.vala:1055 msgid "Open the actual location of trashed item in a new tab" msgstr "" @@ -2504,7 +2464,7 @@ msgid "Open the next visited location" msgstr "" -#: Gtk/FileContextMenu.vala:1033 +#: Gtk/FileContextMenu.vala:1032 msgid "Open the original location of trashed item in a new tab" msgstr "" @@ -2516,23 +2476,23 @@ msgid "Open the previous visited location" msgstr "" -#: Gtk/FileContextMenu.vala:1339 +#: Gtk/FileContextMenu.vala:1388 msgid "Open the symbolic link's target location" msgstr "" -#: Gtk/Pathbar.vala:923 +#: Gtk/Pathbar.vala:917 msgid "Open this directory path in opposite pane" msgstr "" -#: Gtk/FileContextMenu.vala:728 +#: Gtk/FileContextMenu.vala:730 msgid "Open window as administrator" msgstr "" -#: Gtk/FileContextMenu.vala:292 +#: Gtk/FileContextMenu.vala:294 msgid "Open with default application" msgstr "" -#: Gtk/FileContextMenu.vala:329 Gtk/FileContextMenu.vala:388 +#: Gtk/FileContextMenu.vala:331 Gtk/FileContextMenu.vala:390 msgid "Open with other applications" msgstr "" @@ -2540,7 +2500,7 @@ msgid "Optimize" msgstr "" -#: Gtk/FileContextMenu.vala:2117 +#: Gtk/FileContextMenu.vala:2166 msgid "Optimize For" msgstr "" @@ -2548,7 +2508,7 @@ msgid "Optimize PNG" msgstr "" -#: Gtk/FileContextMenu.vala:2267 +#: Gtk/FileContextMenu.vala:2316 msgid "Optimize PNG (lossless)" msgstr "" @@ -2578,15 +2538,15 @@ msgid "Original Location" msgstr "" -#: Gtk/FileContextMenu.vala:387 +#: Gtk/FileContextMenu.vala:389 msgid "Other" msgstr "" -#: Gtk/FileContextMenu.vala:496 Gtk/PropertiesWindow.vala:641 +#: Gtk/FileContextMenu.vala:498 Gtk/PropertiesWindow.vala:664 msgid "Others" msgstr "" -#: Gtk/FileViewList.vala:5606 +#: Gtk/FileViewList.vala:5700 msgid "Outdated Plugin" msgstr "" @@ -2594,11 +2554,11 @@ msgid "Overwrite existing file?" msgstr "" -#: Gtk/FileViewList.vala:890 Gtk/PropertiesWindow.vala:805 +#: Gtk/FileViewList.vala:890 Gtk/PropertiesWindow.vala:807 msgid "Owner" msgstr "" -#: Gtk/FileContextMenu.vala:1954 +#: Gtk/FileContextMenu.vala:2003 msgid "PDF" msgstr "" @@ -2606,7 +2566,7 @@ msgid "PDF Actions" msgstr "" -#: Gtk/FileViewList.vala:847 Gtk/PropertiesWindow.vala:254 +#: Gtk/FileViewList.vala:847 Gtk/PropertiesWindow.vala:261 msgid "Packed" msgstr "" @@ -2618,16 +2578,21 @@ msgid "Panes" msgstr "" -#: Utility/Device.vala:2429 +#: Utility/Device.vala:2432 #, c-format msgid "Parent Device" msgstr "" -#: Gtk/FileViewList.vala:5863 +#: Gtk/PropertiesWindow.vala:508 Gtk/Sidebar.vala:717 +#, c-format +msgid "PartLabel" +msgstr "" + +#: Gtk/FileViewList.vala:5957 msgid "Partial extraction not supported for solid archives" msgstr "" -#: Gtk/DeviceContextMenu.vala:543 +#: Gtk/DeviceContextMenu.vala:570 msgid "" "Partitions on following device will be unmounted and device will be ejected:" msgstr "" @@ -2663,23 +2628,23 @@ "Paste items in active pane" msgstr "" -#: Gtk/FileContextMenu.vala:1268 +#: Gtk/FileContextMenu.vala:1317 msgid "Paste Hardlinks" msgstr "" -#: Gtk/FileContextMenu.vala:900 +#: Gtk/FileContextMenu.vala:902 msgid "Paste Here" msgstr "" -#: Gtk/FileContextMenu.vala:870 +#: Gtk/FileContextMenu.vala:872 msgid "Paste Into Folder" msgstr "" -#: Gtk/FileContextMenu.vala:1231 +#: Gtk/FileContextMenu.vala:1280 msgid "Paste Symlinks" msgstr "" -#: Gtk/FileContextMenu.vala:1250 +#: Gtk/FileContextMenu.vala:1299 msgid "Paste Symlinks (relative)" msgstr "" @@ -2687,7 +2652,7 @@ msgid "Paste clipboard contents" msgstr "" -#: Gtk/FileContextMenu.vala:1269 +#: Gtk/FileContextMenu.vala:1318 msgid "" "Paste hard links to selected items in this directory.\n" "\n" @@ -2695,21 +2660,21 @@ "in multiple directories without taking up additional space." msgstr "" -#: Gtk/FileContextMenu.vala:901 +#: Gtk/FileContextMenu.vala:903 msgid "Paste items in current directory" msgstr "" -#: Gtk/FileContextMenu.vala:871 +#: Gtk/FileContextMenu.vala:873 msgid "Paste items into selected directory" msgstr "" -#: Gtk/FileContextMenu.vala:1232 +#: Gtk/FileContextMenu.vala:1281 msgid "" "Paste symbolic links to selected items in this directory. Absolute path will " "be used for symlink target." msgstr "" -#: Gtk/FileContextMenu.vala:1251 +#: Gtk/FileContextMenu.vala:1300 msgid "" "Paste symbolic links to selected items in this directory. Relative paths " "will be used for symlink target.\n" @@ -2718,11 +2683,15 @@ "will change if disk is mounted at another path." msgstr "" -#: Gtk/FileConflictDialog.vala:405 Utility/Device.vala:369 -#: Utility/Device.vala:1685 +#: Gtk/FileConflictDialog.vala:405 Utility/Device.vala:370 +#: Utility/Device.vala:1688 msgid "Path" msgstr "" +#: Gtk/PlacesPopover.vala:474 +msgid "Path Not Found" +msgstr "" + #: Gtk/BookmarksMenu.vala:132 msgid "Path not found" msgstr "" @@ -2742,12 +2711,12 @@ msgstr "" #: Gtk/FileViewList.vala:415 Gtk/FileViewList.vala:976 -#: Gtk/PropertiesWindow.vala:617 Gtk/PropertiesWindow.vala:619 +#: Gtk/PropertiesWindow.vala:640 Gtk/PropertiesWindow.vala:642 #, c-format msgid "Permissions" msgstr "" -#: Gtk/Sidebar.vala:343 +#: Gtk/PlacesPopover.vala:625 Gtk/Sidebar.vala:343 msgid "Pictures" msgstr "" @@ -2791,16 +2760,16 @@ msgid "Processed:" msgstr "" -#: Gtk/FileContextMenu.vala:2528 Gtk/MiddleToolbar.vala:309 -#: Gtk/PropertiesWindow.vala:78 +#: Gtk/DeviceContextMenu.vala:317 Gtk/FileContextMenu.vala:2577 +#: Gtk/MiddleToolbar.vala:309 Gtk/PropertiesWindow.vala:96 msgid "Properties" msgstr "" -#: Gtk/FileContextMenu.vala:2033 +#: Gtk/FileContextMenu.vala:2082 msgid "Protect the PDF document by adding password" msgstr "" -#: Gtk/PropertiesWindow.vala:708 +#: Gtk/PropertiesWindow.vala:710 msgid "" "Protects files in shared directory from being deleted by other users. Only " "the owner of the file, owner of the directory or root user will be able to " @@ -2811,7 +2780,7 @@ "files created by other users." msgstr "" -#: Gtk/Sidebar.vala:347 +#: Gtk/PlacesPopover.vala:629 Gtk/Sidebar.vala:347 msgid "Public" msgstr "" @@ -2819,7 +2788,7 @@ msgid "Quad" msgstr "" -#: Gtk/FileViewToolbar.vala:374 +#: Gtk/FileViewToolbar.vala:370 msgid "Quad Pane" msgstr "" @@ -2863,12 +2832,12 @@ "Download and install Rclone?" msgstr "" -#: Gtk/PropertiesWindow.vala:645 Gtk/PropertiesWindow.vala:651 -#: Gtk/PropertiesWindow.vala:657 +#: Gtk/PropertiesWindow.vala:668 Gtk/PropertiesWindow.vala:674 +#: Gtk/PropertiesWindow.vala:680 msgid "Read" msgstr "" -#: Gtk/FileViewList.vala:5055 +#: Gtk/FileViewList.vala:5141 msgid "" "Read-only disks cannot be booted.\n" "\n" @@ -2881,7 +2850,8 @@ "and boot from it, instead of booting this disk directly." msgstr "" -#: Gtk/PropertiesWindow.vala:501 +#: Gtk/PropertiesWindow.vala:516 Gtk/Sidebar.vala:725 +#, c-format msgid "ReadOnly" msgstr "" @@ -2903,11 +2873,11 @@ "to applications" msgstr "" -#: Gtk/FileContextMenu.vala:2318 +#: Gtk/FileContextMenu.vala:2367 msgid "Reduce Color" msgstr "" -#: Gtk/FileContextMenu.vala:2100 Gtk/Settings.vala:2611 +#: Gtk/FileContextMenu.vala:2149 Gtk/Settings.vala:2611 msgid "Reduce File Size" msgstr "" @@ -2915,27 +2885,27 @@ msgid "Reduce JPEG" msgstr "" -#: Gtk/FileContextMenu.vala:2284 +#: Gtk/FileContextMenu.vala:2333 msgid "Reduce JPEG Quality" msgstr "" -#: Gtk/FileContextMenu.vala:2319 +#: Gtk/FileContextMenu.vala:2368 msgid "" "Reduce color (less saturation). This can be used for correcting photos that " "are over-saturated (too much color)." msgstr "" -#: Gtk/FileContextMenu.vala:2285 +#: Gtk/FileContextMenu.vala:2334 msgid "Reduce file size of JPEG images by reducing quality" msgstr "" -#: Gtk/FileContextMenu.vala:2268 +#: Gtk/FileContextMenu.vala:2317 msgid "" "Reduce file size of PNG images without losing quality. PNG files will be re-" "packed using better compression algorithms." msgstr "" -#: Gtk/FileContextMenu.vala:2101 +#: Gtk/FileContextMenu.vala:2150 msgid "" "Reduce the file size of PDF document by downscaling images. Use the " "'Optimize For' submenu for more options." @@ -2977,12 +2947,12 @@ msgid "Remove Bookmark" msgstr "" -#: Gtk/FileContextMenu.vala:2066 Gtk/FileContextMenu.vala:2301 +#: Gtk/FileContextMenu.vala:2115 Gtk/FileContextMenu.vala:2350 #: Gtk/Settings.vala:2780 msgid "Remove Color" msgstr "" -#: Gtk/FileContextMenu.vala:2049 Gtk/Settings.vala:2653 +#: Gtk/FileContextMenu.vala:2098 Gtk/Settings.vala:2653 msgid "Remove Password" msgstr "" @@ -2998,7 +2968,7 @@ msgid "Remove color" msgstr "" -#: Gtk/FileContextMenu.vala:2067 +#: Gtk/FileContextMenu.vala:2116 msgid "Remove colors from PDF document" msgstr "" @@ -3006,12 +2976,12 @@ msgid "Removing items..." msgstr "" -#: Gtk/BookmarkContextMenu.vala:89 Gtk/FileContextMenu.vala:935 -#: Gtk/FileViewList.vala:4494 Gtk/MainMenubar.vala:739 Gtk/Sidebar.vala:1144 +#: Gtk/BookmarkContextMenu.vala:89 Gtk/FileContextMenu.vala:937 +#: Gtk/FileViewList.vala:4496 Gtk/MainMenubar.vala:739 Gtk/Sidebar.vala:1172 msgid "Rename" msgstr "" -#: Gtk/FileContextMenu.vala:936 Gtk/MiddleToolbar.vala:211 +#: Gtk/FileContextMenu.vala:938 Gtk/MiddleToolbar.vala:211 msgid "Rename selected item" msgstr "" @@ -3055,7 +3025,7 @@ msgid "Replaced" msgstr "" -#: Gtk/FileViewList.vala:4360 +#: Gtk/FileViewList.vala:4362 msgid "Requested operation is not possible" msgstr "" @@ -3092,7 +3062,7 @@ msgid "Resize" msgstr "" -#: Gtk/FileContextMenu.vala:2396 +#: Gtk/FileContextMenu.vala:2445 msgid "Resize to" msgstr "" @@ -3104,11 +3074,11 @@ msgid "Restart Application ?" msgstr "" -#: Gtk/FileContextMenu.vala:1379 Gtk/TrashBar.vala:134 +#: Gtk/FileContextMenu.vala:1428 Gtk/TrashBar.vala:134 msgid "Restore" msgstr "" -#: Gtk/FileContextMenu.vala:1380 +#: Gtk/FileContextMenu.vala:1429 msgid "Restore item to the original location" msgstr "" @@ -3128,12 +3098,12 @@ msgid "Resume" msgstr "" -#: Utility/Device.vala:2419 +#: Utility/Device.vala:2422 #, c-format msgid "Revision" msgstr "" -#: Gtk/FileContextMenu.vala:2156 Gtk/FileContextMenu.vala:2435 +#: Gtk/FileContextMenu.vala:2205 Gtk/FileContextMenu.vala:2484 #: Gtk/Settings.vala:2681 Gtk/Settings.vala:2752 msgid "Rotate" msgstr "" @@ -3142,10 +3112,6 @@ msgid "Row spacing" msgstr "" -#: Gtk/Settings.vala:1500 -msgid "Run at startup" -msgstr "" - #: Gtk/FileContextMenu.vala:1010 msgid "Run in Terminal" msgstr "" @@ -3182,18 +3148,14 @@ msgid "Select Columns" msgstr "" -#: Gtk/FileViewList.vala:4254 +#: Gtk/FileViewList.vala:4256 msgid "Select Copy Destination" msgstr "" -#: Gtk/FileViewList.vala:5807 +#: Gtk/FileViewList.vala:5901 msgid "Select Destination" msgstr "" -#: Gtk/ProgressPanelArchiveTask.vala:813 -msgid "Select Extraction Location" -msgstr "" - #: Utility/Gtk/GtkHelper.vala:777 msgid "Select File(s)" msgstr "" @@ -3214,7 +3176,7 @@ msgid "Select Format" msgstr "" -#: Gtk/FileViewList.vala:5083 +#: Gtk/FileViewList.vala:5169 msgid "Select ISO File" msgstr "" @@ -3226,7 +3188,7 @@ msgid "Select ListView Columns" msgstr "" -#: Gtk/FileViewList.vala:4254 +#: Gtk/FileViewList.vala:4256 msgid "Select Move Destination" msgstr "" @@ -3238,10 +3200,14 @@ msgid "Select Older" msgstr "" -#: Utility/Gtk/GtkHelper.vala:1243 +#: Utility/Gtk/GtkHelper.vala:958 msgid "Select Path" msgstr "" +#: Gtk/FileContextMenu.vala:1131 +msgid "Select Second File..." +msgstr "" + #: Gtk/FileConflictDialog.vala:258 msgid "Select all files in list" msgstr "" @@ -3254,25 +3220,34 @@ msgid "Select older files in list" msgstr "" +#: Gtk/FileContextMenu.vala:1132 +msgid "Select second file for compare" +msgstr "" + #: Gtk/ColumnSelectionBox.vala:285 Gtk/ColumnSelectionBox.vala:320 msgid "Select single item to move" msgstr "" -#: Gtk/FileViewList.vala:5412 +#: Gtk/FileViewList.vala:5498 msgid "Select the JPEG image files to convert" msgstr "" -#: Gtk/FileViewList.vala:5390 +#: Gtk/FileViewList.vala:5476 msgid "Select the PNG image files to convert" msgstr "" -#: Gtk/FileViewList.vala:5432 Gtk/FileViewList.vala:5452 -#: Gtk/FileViewList.vala:5472 Gtk/FileViewList.vala:5492 -#: Gtk/FileViewList.vala:5512 Gtk/FileViewList.vala:5532 +#: Gtk/FileViewList.vala:5518 Gtk/FileViewList.vala:5538 +#: Gtk/FileViewList.vala:5558 Gtk/FileViewList.vala:5578 +#: Gtk/FileViewList.vala:5598 Gtk/FileViewList.vala:5618 msgid "Select the image files to convert" msgstr "" -#: Utility/Device.vala:2418 +#: Gtk/FileViewList.vala:4975 Gtk/FileViewList.vala:4982 +#, c-format +msgid "Selected item is not a text file" +msgstr "" + +#: Utility/Device.vala:2421 #, c-format msgid "Serial" msgstr "" @@ -3285,19 +3260,19 @@ msgid "Session & Startup" msgstr "" -#: Gtk/FileContextMenu.vala:441 +#: Gtk/FileContextMenu.vala:443 msgid "Set Default" msgstr "" -#: Gtk/FileContextMenu.vala:471 +#: Gtk/FileContextMenu.vala:473 msgid "Set as Default and Open With" msgstr "" -#: Gtk/FileContextMenu.vala:2248 +#: Gtk/FileContextMenu.vala:2297 msgid "Set as Wallpaper" msgstr "" -#: Gtk/FileContextMenu.vala:442 Gtk/FileContextMenu.vala:497 +#: Gtk/FileContextMenu.vala:444 Gtk/FileContextMenu.vala:499 msgid "Set default application for file type" msgstr "" @@ -3305,7 +3280,7 @@ msgid "Set default values" msgstr "" -#: Gtk/FileContextMenu.vala:2249 +#: Gtk/FileContextMenu.vala:2298 msgid "Set the image as wallpaper" msgstr "" @@ -3313,7 +3288,7 @@ msgid "Sets the default application for opening folders" msgstr "" -#: Gtk/FileViewToolbar.vala:462 Gtk/SettingsWindow.vala:49 +#: Gtk/FileViewToolbar.vala:458 Gtk/SettingsWindow.vala:49 #: Gtk/TermContextMenu.vala:222 msgid "Settings" msgstr "" @@ -3326,7 +3301,7 @@ msgid "Share Name Not Specified" msgstr "" -#: Gtk/FileViewList.vala:3319 +#: Gtk/FileViewList.vala:3321 msgid "Shortcut: [Super] + N" msgstr "" @@ -3373,6 +3348,10 @@ "Show combined HeaderBar instead of Toolbar and Pathbars [Restart Required]" msgstr "" +#: Gtk/DeviceContextMenu.vala:318 +msgid "Show device properties" +msgstr "" + #: Gtk/Statusbar.vala:195 msgid "Show hidden items" msgstr "" @@ -3436,22 +3415,18 @@ msgid "Single" msgstr "" -#: Gtk/FileViewToolbar.vala:344 +#: Gtk/FileViewToolbar.vala:340 msgid "Single Pane" msgstr "" -#: Gtk/Settings.vala:1440 -msgid "Single click to activate" -msgstr "" - #: Gtk/Settings.vala:1457 msgid "Single window mode" msgstr "" #: Gtk/FileConflictDialog.vala:542 Gtk/FileConflictDialog.vala:554 -#: Gtk/FileViewList.vala:748 Gtk/PropertiesWindow.vala:190 -#: Gtk/PropertiesWindow.vala:510 Gtk/Sidebar.vala:1252 Gtk/Statusbar.vala:357 -#: Utility/Device.vala:2421 Utility/Device.vala:2436 Utility/FileItem.vala:655 +#: Gtk/FileViewList.vala:748 Gtk/PropertiesWindow.vala:197 +#: Gtk/PropertiesWindow.vala:526 Gtk/Sidebar.vala:1280 Gtk/Statusbar.vala:357 +#: Utility/Device.vala:2424 Utility/Device.vala:2439 Utility/FileItem.vala:655 #, c-format msgid "Size" msgstr "" @@ -3468,11 +3443,11 @@ msgid "Skip existing files" msgstr "" -#: Gtk/PropertiesWindow.vala:236 +#: Gtk/PropertiesWindow.vala:243 msgid "Solid" msgstr "" -#: Gtk/FileContextMenu.vala:2512 Gtk/MainMenubar.vala:1197 +#: Gtk/FileContextMenu.vala:2561 Gtk/MainMenubar.vala:1197 #: Gtk/ViewPopover.vala:354 msgid "Sort By" msgstr "" @@ -3485,11 +3460,11 @@ msgid "Source" msgstr "" -#: Gtk/FileViewList.vala:4359 Gtk/FileViewList.vala:4365 +#: Gtk/FileViewList.vala:4361 Gtk/FileViewList.vala:4367 msgid "Source and destination are same" msgstr "" -#: Gtk/PropertiesWindow.vala:666 +#: Gtk/PropertiesWindow.vala:689 msgid "Special bits" msgstr "" @@ -3497,11 +3472,11 @@ msgid "Speed:" msgstr "" -#: Gtk/FileContextMenu.vala:1998 Gtk/Settings.vala:2583 +#: Gtk/FileContextMenu.vala:2047 Gtk/Settings.vala:2583 msgid "Split" msgstr "" -#: Gtk/FileContextMenu.vala:1999 +#: Gtk/FileContextMenu.vala:2048 msgid "Split PDF document by page" msgstr "" @@ -3513,6 +3488,10 @@ msgid "Split archive into volumes of specified size (in MB)" msgstr "" +#: Gtk/TermContextMenu.vala:200 +msgid "Start chroot session in current directory" +msgstr "" + #: Gtk/ToolsWindow.vala:89 msgid "Status" msgstr "" @@ -3553,7 +3532,7 @@ msgid "Swap" msgstr "" -#: Gtk/MiddleToolbar.vala:391 Gtk/Pathbar.vala:947 +#: Gtk/MiddleToolbar.vala:391 Gtk/Pathbar.vala:941 msgid "Swap directory path with opposite pane" msgstr "" @@ -3569,20 +3548,16 @@ msgid "Symlink Target" msgstr "" -#: Gtk/DeviceContextMenu.vala:339 -msgid "Sync Pending Writes" -msgstr "" - #: Gtk/PoloGtk.vala:142 msgid "Syntax" msgstr "" -#: Utility/Device.vala:2442 +#: Utility/Device.vala:2445 #, c-format msgid "System" msgstr "" -#: Gtk/FileContextMenu.vala:689 +#: Gtk/FileContextMenu.vala:691 msgid "Tab" msgstr "" @@ -3594,7 +3569,7 @@ msgid "Tabs at bottom" msgstr "" -#: Gtk/FileContextMenu.vala:670 Gtk/FileViewToolbar.vala:432 +#: Gtk/FileContextMenu.vala:672 Gtk/FileViewToolbar.vala:428 #: Gtk/Settings.vala:476 Gtk/Settings.vala:1304 msgid "Terminal" msgstr "" @@ -3603,21 +3578,11 @@ msgid "Terminal emulator to use for terminal panes" msgstr "" -#: Gtk/TermBox.vala:278 -msgid "Terminal is busy" -msgstr "" - #: Gtk/ProgressPanelArchiveTask.vala:107 msgid "Testing" msgstr "" -#: Gtk/ProgressPanelFileTask.vala:434 -msgid "" -"The data transfer seems to have stopped. Check if device is working " -"correctly and if connection with the device is reliable." -msgstr "" - -#: Gtk/FileViewList.vala:5969 +#: Gtk/FileViewList.vala:6063 msgid "There are no files selected for compression" msgstr "" @@ -3629,10 +3594,6 @@ msgid "There were some errors:" msgstr "" -#: Gtk/TermBox.vala:279 -msgid "This action cannot be executed while a process is running" -msgstr "" - #: Gtk/Settings.vala:1108 msgid "" "This application is designed for the Arc GTK theme. It may not look right " @@ -3647,7 +3608,7 @@ msgid "Tile View" msgstr "" -#: Gtk/FileViewToolbar.vala:409 Gtk/Settings.vala:1269 Gtk/ViewPopover.vala:141 +#: Gtk/FileViewToolbar.vala:405 Gtk/Settings.vala:1269 Gtk/ViewPopover.vala:141 msgid "Tiles" msgstr "" @@ -3655,6 +3616,11 @@ msgid "Title" msgstr "" +#: Gtk/FileContextMenu.vala:1112 +#, c-format +msgid "To '%s' in Opposite Pane" +msgstr "" + #: Gtk/Statusbar.vala:426 msgid "Toggle Middle Toolbar" msgstr "" @@ -3667,7 +3633,7 @@ msgid "Toggle Terminal Pane" msgstr "" -#: Gtk/FileViewToolbar.vala:433 Gtk/MiddleToolbar.vala:366 +#: Gtk/FileViewToolbar.vala:429 Gtk/MiddleToolbar.vala:366 #: Gtk/Statusbar.vala:449 msgid "Toggle terminal panel" msgstr "" @@ -3700,8 +3666,8 @@ msgid "Transparency" msgstr "" -#: Gtk/FileContextMenu.vala:957 Gtk/FileViewPane.vala:152 -#: Gtk/MainMenubar.vala:645 Gtk/Sidebar.vala:348 +#: Gtk/FileContextMenu.vala:959 Gtk/FileViewPane.vala:152 +#: Gtk/MainMenubar.vala:645 Gtk/PlacesPopover.vala:630 Gtk/Sidebar.vala:348 msgid "Trash" msgstr "" @@ -3712,7 +3678,7 @@ "Move selected items to recycle bin" msgstr "" -#: Gtk/FileViewList.vala:4378 +#: Gtk/FileViewList.vala:4380 msgid "Trash selected items?" msgstr "" @@ -3720,14 +3686,10 @@ msgid "Trashed On" msgstr "" -#: Gtk/Settings.vala:2241 -msgid "Tree navigation" -msgstr "" - #: Gtk/ConnectServerWindow.vala:220 Gtk/FileConflictDialog.vala:541 #: Gtk/FileConflictDialog.vala:553 Gtk/FileViewList.vala:1105 -#: Gtk/PropertiesWindow.vala:218 Gtk/PropertiesWindow.vala:286 -#: Utility/Device.vala:2432 Utility/FileItem.vala:659 +#: Gtk/PropertiesWindow.vala:225 Gtk/PropertiesWindow.vala:293 +#: Utility/Device.vala:2435 Utility/FileItem.vala:659 #, c-format msgid "Type" msgstr "" @@ -3744,7 +3706,7 @@ msgid "URI" msgstr "" -#: Gtk/PropertiesWindow.vala:491 Utility/Device.vala:2431 +#: Gtk/PropertiesWindow.vala:504 Gtk/Sidebar.vala:713 Utility/Device.vala:2434 #, c-format msgid "UUID" msgstr "" @@ -3765,19 +3727,19 @@ msgid "UnMaximize the terminal" msgstr "" -#: Gtk/FileContextMenu.vala:2083 Gtk/Settings.vala:2625 +#: Gtk/FileContextMenu.vala:2132 Gtk/Settings.vala:2625 msgid "Uncompress" msgstr "" -#: Gtk/FileContextMenu.vala:2084 +#: Gtk/FileContextMenu.vala:2133 msgid "Uncompress PDF document" msgstr "" -#: Gtk/FileContextMenu.vala:1316 +#: Gtk/FileContextMenu.vala:1365 msgid "Unhide" msgstr "" -#: Gtk/FileContextMenu.vala:1317 +#: Gtk/FileContextMenu.vala:1366 msgid "Unhide selected items" msgstr "" @@ -3789,39 +3751,35 @@ msgid "Unlock Path" msgstr "" -#: Utility/Device.vala:517 Utility/Device.vala:1895 +#: Utility/Device.vala:518 Utility/Device.vala:1898 msgid "Unlocked" msgstr "" -#: Utility/Device.vala:516 Utility/Device.vala:1894 +#: Utility/Device.vala:517 Utility/Device.vala:1897 msgid "Unlocked successfully" msgstr "" -#: Gtk/DeviceContextMenu.vala:198 Gtk/MainMenubar.vala:1560 +#: Gtk/DeviceContextMenu.vala:202 msgid "Unmount" msgstr "" -#: Gtk/DeviceContextMenu.vala:222 +#: Gtk/DeviceContextMenu.vala:226 msgid "Unmount and lock encrypted volume" msgstr "" -#: Gtk/MainMenubar.vala:1561 -msgid "Unmount cloud storage account" -msgstr "" - -#: Gtk/DeviceContextMenu.vala:199 +#: Gtk/DeviceContextMenu.vala:203 msgid "Unmount this volume" msgstr "" -#: Utility/Device.vala:2118 +#: Utility/Device.vala:2121 msgid "Unmounting from" msgstr "" -#: Gtk/PropertiesWindow.vala:266 +#: Gtk/PropertiesWindow.vala:273 msgid "Unpacked" msgstr "" -#: Gtk/FileContextMenu.vala:2050 +#: Gtk/FileContextMenu.vala:2099 msgid "Unprotect the PDF document by removing password" msgstr "" @@ -3834,7 +3792,7 @@ msgid "Update recursively for all items inside the folder" msgstr "" -#: Gtk/FileViewList.vala:5607 +#: Gtk/FileViewList.vala:5701 msgid "Update required packages and try again" msgstr "" @@ -3852,18 +3810,18 @@ msgid "Uploading items..." msgstr "" -#: Gtk/PropertiesWindow.vala:517 Gtk/Sidebar.vala:1254 Gtk/Statusbar.vala:359 -#: Utility/Device.vala:2439 +#: Gtk/PropertiesWindow.vala:533 Gtk/Sidebar.vala:1282 Gtk/Statusbar.vala:359 +#: Utility/Device.vala:2442 #, c-format msgid "Used" msgstr "" -#: Gtk/FileViewList.vala:409 Gtk/PropertiesWindow.vala:633 +#: Gtk/FileViewList.vala:409 Gtk/PropertiesWindow.vala:656 #, c-format msgid "User" msgstr "" -#: Utility/Device.vala:477 Utility/Device.vala:1853 +#: Utility/Device.vala:478 Utility/Device.vala:1856 msgid "User cancelled the password prompt" msgstr "" @@ -3875,16 +3833,16 @@ msgid "Utility" msgstr "" -#: Gtk/PropertiesWindow.vala:1020 +#: Gtk/PropertiesWindow.vala:1024 msgid "Value" msgstr "" -#: Utility/Device.vala:2416 +#: Utility/Device.vala:2419 #, c-format msgid "Vendor" msgstr "" -#: Gtk/Sidebar.vala:345 +#: Gtk/PlacesPopover.vala:627 Gtk/Sidebar.vala:345 msgid "Videos" msgstr "" @@ -3898,7 +3856,7 @@ msgid "View Mode" msgstr "" -#: Gtk/FileContextMenu.vala:2529 +#: Gtk/FileContextMenu.vala:2578 msgid "View file properties" msgstr "" @@ -3906,10 +3864,6 @@ msgid "Virtual Machine" msgstr "" -#: Utility/TeeJee.Logging.vala:93 -msgid "W" -msgstr "" - #: Gtk/ProgressPanelVideoDownloadTask.vala:319 msgid "Web Page" msgstr "" @@ -3926,7 +3880,7 @@ msgid "Wiki ~ Documentation & Help" msgstr "" -#: Gtk/FileContextMenu.vala:708 +#: Gtk/FileContextMenu.vala:710 msgid "Window" msgstr "" @@ -3938,40 +3892,32 @@ msgid "Word Size" msgstr "" -#: Gtk/PropertiesWindow.vala:647 Gtk/PropertiesWindow.vala:653 -#: Gtk/PropertiesWindow.vala:659 +#: Gtk/PropertiesWindow.vala:670 Gtk/PropertiesWindow.vala:676 +#: Gtk/PropertiesWindow.vala:682 msgid "Write" msgstr "" -#: Gtk/FileContextMenu.vala:1654 +#: Gtk/FileContextMenu.vala:1703 msgid "Write ISO file to USB drive" msgstr "" -#: Gtk/DeviceContextMenu.vala:340 -msgid "Write any data waiting to be written to the device" -msgstr "" - -#: Gtk/FileContextMenu.vala:1653 +#: Gtk/FileContextMenu.vala:1702 msgid "Write to USB" msgstr "" -#: Utility/Device.vala:453 Utility/Device.vala:1828 Utility/Device.vala:1872 +#: Utility/Device.vala:454 Utility/Device.vala:1831 Utility/Device.vala:1875 msgid "Wrong password" msgstr "" -#: Gtk/MediaBar.vala:95 Gtk/PropertiesWindow.vala:230 -#: Gtk/PropertiesWindow.vala:235 Utility/Gtk/CustomMessageDialog.vala:176 +#: Gtk/MediaBar.vala:95 Gtk/PropertiesWindow.vala:237 +#: Gtk/PropertiesWindow.vala:242 Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "" -#: Gtk/FileViewList.vala:4510 +#: Gtk/FileViewList.vala:4512 msgid "You do not have permission to rename this item" msgstr "" -#: Gtk/PropertiesWindow.vala:987 -msgid "You don't have permission to change some permissions" -msgstr "" - #: Utility/Shell.vala:55 msgid "Z shell (zsh)" msgstr "" @@ -4008,11 +3954,11 @@ msgid "items" msgstr "" -#: Gtk/FileViewList.vala:4444 +#: Gtk/FileViewList.vala:4446 msgid "selected item(s) will be deleted permanently" msgstr "" -#: Gtk/FileViewList.vala:4379 +#: Gtk/FileViewList.vala:4381 msgid "selected item(s) will be moved to trash" msgstr "" diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/README.md polo-file-manager-18.1~59~ubuntu16.04.1/README.md --- polo-file-manager-17.10~28~ubuntu16.04.1/README.md 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/README.md 2018-01-11 12:49:20.000000000 +0000 @@ -16,29 +16,28 @@ *Single-pane layout with Sidebar and IconView* -[![](https://2.bp.blogspot.com/-N8kfKyg05gc/WSFeSxoNlHI/AAAAAAAAGv4/4624nEvjAYU7WB5VL-6CMIhfX_7sjJZcACLcB/s1600/polo_layout_classic_icons.png)](https://2.bp.blogspot.com/-N8kfKyg05gc/WSFeSxoNlHI/AAAAAAAAGv4/4624nEvjAYU7WB5VL-6CMIhfX_7sjJZcACLcB/s1600/polo_layout_classic_icons.png) +![](src/share/polo/images/polo_layout_single_icons.png) *Single-pane layout with Sidebar and ListView* -[![](https://2.bp.blogspot.com/-ztn3NTFgZ7g/WSFeSyKB_CI/AAAAAAAAGv0/KqTj5Bd5VKkpqOED08G1fMtMznR980-FQCLcB/s1600/polo_layout_classic_list.png)](https://2.bp.blogspot.com/-ztn3NTFgZ7g/WSFeSyKB_CI/AAAAAAAAGv0/KqTj5Bd5VKkpqOED08G1fMtMznR980-FQCLcB/s1600/polo_layout_classic_list.png) +![](src/share/polo/images/polo_layout_single_list.png) *Dual-pane layout with IconView* -[![](https://1.bp.blogspot.com/-i0M8VMXGW2E/WSFeS7_XqBI/AAAAAAAAGvw/hWYkNIpn1w8IHvRqorNgjwcopfL6ZofvgCLcB/s1600/polo_layout_commander_icons.png)](https://1.bp.blogspot.com/-i0M8VMXGW2E/WSFeS7_XqBI/AAAAAAAAGvw/hWYkNIpn1w8IHvRqorNgjwcopfL6ZofvgCLcB/s1600/polo_layout_commander_icons.png) +![](src/share/polo/images/polo_layout_dual_icons.png) *Dual-pane layout with ListView* -[![](https://4.bp.blogspot.com/-SoXr3INsUYo/WSFeTl19N_I/AAAAAAAAGv8/29ZnneUnWtYZhI-t3rQCx2z_n1JcjLtJQCLcB/s1600/polo_layout_commander_list.png)](https://4.bp.blogspot.com/-SoXr3INsUYo/WSFeTl19N_I/AAAAAAAAGv8/29ZnneUnWtYZhI-t3rQCx2z_n1JcjLtJQCLcB/s1600/polo_layout_commander_list.png) +![](src/share/polo/images/polo_layout_dual_list.png) -*Options for creating archives - Simple and Advanced Views - Supports encryption and split archives* +*Options for creating archives - Supports all encoder options, encryption, and split archives* -[![](https://3.bp.blogspot.com/-IS1yfrAgVfI/WQ1jQBOOE-I/AAAAAAAAGfc/a3c9wGnVAx4IFHrw5oXFKuF_JzVsOJMSACLcB/s320/polo_compress.png)](https://3.bp.blogspot.com/-IS1yfrAgVfI/WQ1jQBOOE-I/AAAAAAAAGfc/a3c9wGnVAx4IFHrw5oXFKuF_JzVsOJMSACLcB/s1600/polo_compress.png) [![](https://2.bp.blogspot.com/-s4qwOZ7W3tE/WQ1jP1u-ZfI/AAAAAAAAGfY/J5m6mpYrEU09N2erLx5zb6L3fomF7eH4gCLcB/s460/polo_compress_expanded.png)](https://2.bp.blogspot.com/-s4qwOZ7W3tE/WQ1jP1u-ZfI/AAAAAAAAGfY/J5m6mpYrEU09N2erLx5zb6L3fomF7eH4gCLcB/s1600/polo_compress_expanded.png) +![](images/polo_compress.png)![](images/polo_compress_expanded.png) +![](images/polo_compress_progress.png) +*Support for browsing cloud storage accounts* -*Archive creation progress - with options to pause and resume* - -[![](https://4.bp.blogspot.com/-8nrEdE3U9Pc/WQ1k9S9HytI/AAAAAAAAGfo/izFm14Gu7GEhQbIrnTMFGd0XfEdkKWtbACLcB/s460/polo_compress_progress.png)](https://4.bp.blogspot.com/-8nrEdE3U9Pc/WQ1k9S9HytI/AAAAAAAAGfo/izFm14Gu7GEhQbIrnTMFGd0XfEdkKWtbACLcB/s1600/polo_compress_progress.png) - +![](images/cloud_storage.png) ## Installation diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/release/sanity.config polo-file-manager-18.1~59~ubuntu16.04.1/release/sanity.config --- polo-file-manager-17.10~28~ubuntu16.04.1/release/sanity.config 1970-01-01 00:00:00.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/release/sanity.config 2018-01-11 12:49:20.000000000 +0000 @@ -0,0 +1,7 @@ +app_name: Polo File Manager +depends_debian: libgee-0.8-2 libvte-2.91-0 libjson-glib-1.0-0 libxml2 ffmpeg mediainfo rsync pv p7zip p7zip-full tar gzip bzip2 xz-utils fish qemu-kvm qemu-utils gvfs gvfs-bin gvfs-backends +depends_redhat: libgee vte291 json-glib libxml2 ffmpeg mediainfo rsync pv p7zip p7zip-plugins tar gzip bzip2 xz fish qemu-kvm qemu-img gvfs gvfs-bin gvfs-backends +depends_arch: libgee vte3 json-glib libxml2 ffmpeg mediainfo rsync pv p7zip tar xz gzip bzip2 fish qemu gvfs gvfs-bin gvfs-backends +depends_generic: libgee libvte json-glib libxml2 ffmpeg mediainfo rsync pv p7zip p7zip-full tar gzip bzip2 xz-utils fish qemu-kvm qemu-utils gvfs gvfs-bin gvfs-backends +assume_yes: 0 +exec_line: polo-gtk diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/scripts/install-p7zip-amd64.sh polo-file-manager-18.1~59~ubuntu16.04.1/scripts/install-p7zip-amd64.sh --- polo-file-manager-17.10~28~ubuntu16.04.1/scripts/install-p7zip-amd64.sh 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/scripts/install-p7zip-amd64.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ -#!/bin/bash - -cd /tmp - -wget http://launchpadlibrarian.net/279142125/p7zip_16.02+dfsg-1_amd64.deb http://launchpadlibrarian.net/279142124/p7zip-full_16.02+dfsg-1_amd64.deb http://launchpadlibrarian.net/279142120/p7zip-rar_16.02-1_amd64.deb - -sudo apt-get remove p7zip{,-full,-rar} - -sudo dpkg -i p7zip_16.02+dfsg-1_amd64.deb p7zip-full_16.02+dfsg-1_amd64.deb p7zip-rar_16.02-1_amd64.deb - -echo 'done' - diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/scripts/install-p7zip-i386.sh polo-file-manager-18.1~59~ubuntu16.04.1/scripts/install-p7zip-i386.sh --- polo-file-manager-17.10~28~ubuntu16.04.1/scripts/install-p7zip-i386.sh 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/scripts/install-p7zip-i386.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -#!/bin/bash - -cd /tmp - -wget http://launchpadlibrarian.net/279142192/p7zip_16.02+dfsg-1_i386.deb http://launchpadlibrarian.net/279142191/p7zip-full_16.02+dfsg-1_i386.deb http://launchpadlibrarian.net/279142173/p7zip-rar_16.02-1_i386.deb - -sudo apt-get remove p7zip{,-full,-rar} - -sudo dpkg -i p7zip_16.02+dfsg-1_i386.deb p7zip-full_16.02+dfsg-1_i386.deb p7zip-rar_16.02-1_i386.deb - -echo 'done' diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/scripts/install-p7zip.sh polo-file-manager-18.1~59~ubuntu16.04.1/scripts/install-p7zip.sh --- polo-file-manager-17.10~28~ubuntu16.04.1/scripts/install-p7zip.sh 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/scripts/install-p7zip.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -#!/bin/bash - -tempDir=$(mktemp -d) -cd $tempDir -echo "Using tempdir: $tempDir" - -if [ $(uname -m) == 'x86_64' ]; then - arch="amd64" - echo "Arch: 64-bit" -else - arch="i386" - echo "Arch: 32-bit" -fi - -runName="p7zip-v16.02-$arch" -runFile="$runName.run" - -echo "" -echo "---------------------------------------------------------------" -echo "Downloading $runFile" -echo "" -wget "https://github.com/teejee2008/p7zip-installer/releases/download/v16.02/$runFile" -if [ $? -ne 0 ]; then echo "Error"; exit 1; fi - -echo "" -echo "---------------------------------------------------------------" -echo "Installing binaries" -echo "" -sh $runFile -if [ $? -ne 0 ]; then echo "Error"; exit 1; fi - diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/scripts/install-rclone.sh polo-file-manager-18.1~59~ubuntu16.04.1/scripts/install-rclone.sh --- polo-file-manager-17.10~28~ubuntu16.04.1/scripts/install-rclone.sh 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/scripts/install-rclone.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -#!/bin/bash - -tempDir=$(mktemp -d) -cd $tempDir -echo "Using tempdir: $tempDir" - -if [ $(uname -m) == 'x86_64' ]; then - arch="amd64" - echo "Arch: 64-bit" -else - arch="386" - echo "Arch: 32-bit" -fi - -zipName="rclone-current-linux-$arch" -zipFile="$zipName.zip" - -echo "" -echo "---------------------------------------------------------------" -echo "Downloading $zipFile" -echo "" - -wget "https://downloads.rclone.org/$zipFile" -if [ $? -ne 0 ]; then echo "Error"; exit 1; fi - -unzip $zipFile -if [ $? -ne 0 ]; then echo "Error"; exit 1; fi - -cd rclone-*-linux-$arch -if [ $? -ne 0 ]; then echo "Error"; exit 1; fi - -echo "" -echo "---------------------------------------------------------------" -echo "Installing binaries" -echo "" -sudo cp rclone /usr/bin/ -sudo chown root:root /usr/bin/rclone -sudo chmod 755 /usr/bin/rclone - -echo "" -echo "---------------------------------------------------------------" -echo "Install Manpage" -echo "" -sudo mkdir -p /usr/local/share/man/man1 -sudo cp rclone.1 /usr/local/share/man/man1/ -sudo mandb - diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Common/Main.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Common/Main.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Common/Main.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Common/Main.vala 2018-01-11 12:49:20.000000000 +0000 @@ -37,7 +37,7 @@ public Main App; public const string AppName = "Polo File Manager"; public const string AppShortName = "polo"; -public const string AppVersion = "17.10 BETA"; +public const string AppVersion = "18.1 BETA"; public const string AppWikiVersion = ""; // update only if wiki page exists public const string AppAuthor = "Tony George"; public const string AppAuthorEmail = "teejeetech@gmail.com"; @@ -127,13 +127,11 @@ public string rclone_mounts = ""; - //public ArchiveTask archive_task; - //public DesktopApp crunchy_app; - //public Gee.ArrayList mimetype_list; public Json.Object appconfig; public Bash bash_admin_shell; public string shell_default = "fish"; + public string compare_default = "bcompare"; public AppMode app_mode = AppMode.OPEN; public Gee.ArrayList cmd_files; @@ -157,6 +155,8 @@ public int sidebar_position = DEFAULT_SIDEBAR_POSITION; public string sidebar_collapsed_sections = ""; + public int bookmarks_position = 300; + public bool headerbar_enabled = false; public bool headerbar_enabled_temp = false; public bool headerbar_window_buttons_left = false; @@ -522,6 +522,7 @@ tools["gnome-disks"] = new Tool("gnome-disks","gnome-disks","GNOME Disk Utility"); tools["rclone"] = new Tool("rclone","rclone","rsync for Cloud Storage"); tools["youtube-dl"] = new Tool("youtube-dl","youtube-dl","youtube-dl Downloader"); + tools["diffuse"] = new Tool("diffuse","diffuse","File Compare Utility"); check_all_tools(); } @@ -593,7 +594,9 @@ config.set_string_member("sidebar_position", sidebar_position.to_string()); config.set_string_member("sidebar_action_button", sidebar_action_button.to_string()); config.set_string_member("sidebar_collapsed_sections", sidebar_collapsed_sections); - + + config.set_string_member("bookmarks_position", bookmarks_position.to_string()); + //save headerbar_enabled_temp instead of headerbar_enabled config.set_string_member("headerbar_enabled", headerbar_enabled_temp.to_string()); config.set_string_member("headerbar_window_buttons_left", headerbar_window_buttons_left.to_string()); @@ -774,6 +777,8 @@ sidebar_position = json_get_int_from_string(config, "sidebar_position", sidebar_position); sidebar_action_button = json_get_bool_from_string(config, "sidebar_action_button", sidebar_action_button); + bookmarks_position = json_get_int_from_string(config, "bookmarks_position", bookmarks_position); + headerbar_enabled = json_get_bool_from_string(config, "headerbar_enabled", headerbar_enabled); headerbar_enabled_temp = headerbar_enabled; headerbar_window_buttons_left = json_get_bool_from_string(config, "headerbar_window_buttons_left", headerbar_window_buttons_left); diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/CreateArchiveWindow.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/CreateArchiveWindow.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/CreateArchiveWindow.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/CreateArchiveWindow.vala 2018-01-11 12:49:20.000000000 +0000 @@ -1993,7 +1993,7 @@ // action buttons -------------------------------------------------- - private void init_tooltip_messages() { + //private void init_tooltip_messages() { /*string tt_method = _("Compression Method\n\nStore - Store files without compression\n\nLZMA - Good compression and very fast decompression\n\nLZMA2 - Modified version of LZMA with better compression ratio for partially-compressible data, and better multi-threading support\n\nPPMd - Very good compression for text files (better than LZMA)\n\nDeflate - Very fast compression and decompression"); //lbl_method.set_tooltip_markup(tt_method); //cmb_method.set_tooltip_markup(tt_method); @@ -2004,7 +2004,7 @@ string tt_encrypt_headers = _("Archive header will be also encrypted (if supported by format)"); //chk_encrypt_header.set_tooltip_markup(tt_encrypt_headers); * */ - } + //} private void init_action_area() { diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/DeviceContextMenu.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/DeviceContextMenu.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/DeviceContextMenu.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/DeviceContextMenu.vala 2018-01-11 12:49:20.000000000 +0000 @@ -78,6 +78,8 @@ add_unmount(); + gtk_menu_add_separator(this); + if (App.tool_exists("gnome-disks")) { add_manage(); @@ -91,7 +93,9 @@ //add_flush(); - //gtk_menu_add_separator(this); + gtk_menu_add_separator(this); + + add_properties(); show_all(); } @@ -231,7 +235,7 @@ item.sensitive = device.is_on_encrypted_partition; } - private void add_eject(){ + /*private void add_eject(){ log_debug("DeviceContextMenu: add_eject()"); @@ -252,7 +256,7 @@ }); item.sensitive = (device.type == "disk"); - } + }*/ private void add_manage(){ @@ -302,7 +306,30 @@ item.sensitive = (device.type != "loop"); } - private void add_unlock(){ + private void add_properties(){ + + log_debug("DeviceContextMenu: add_properties()"); + + // item ------------------ + + var item = gtk_menu_add_item( + this, + _("Properties"), + _("Show device properties"), + null, + sg_icon, + sg_label); + + item.activate.connect (() => { + var win = new PropertiesWindow.for_device(device); + log_msg("111"); + win.show_all(); + }); + + item.sensitive = (device.type != "loop"); + } + + /*private void add_unlock(){ log_debug("DeviceContextMenu: add_lock()"); @@ -323,10 +350,10 @@ }); item.sensitive = !device.is_mounted; - } + }*/ - private void add_sync(){ + /*private void add_sync(){ log_debug("DeviceContextMenu: add_sync()"); @@ -347,9 +374,9 @@ }); item.sensitive = device.is_mounted; - } + }*/ - private void add_flush(){ + /*private void add_flush(){ log_debug("DeviceContextMenu: add_flush()"); @@ -370,7 +397,7 @@ }); item.sensitive = device.is_mounted; - } + }*/ public bool show_menu(Gdk.EventButton? event) { diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/DevicesMenu.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/DevicesMenu.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/DevicesMenu.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/DevicesMenu.vala 2018-01-11 12:49:20.000000000 +0000 @@ -161,7 +161,6 @@ // unlock if (dev.fstype.contains("luks")){ - string message, details; var unlocked_device = Device.luks_unlock(dev, "", "", pane.window); if (unlocked_device == null){ gtk_set_busy(false, pane.window); diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/FileContextMenu.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/FileContextMenu.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/FileContextMenu.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/FileContextMenu.vala 2018-01-11 12:49:20.000000000 +0000 @@ -138,6 +138,8 @@ gtk_menu_add_separator(this); //---------------------- add_disk_usage(this, sg_icon, sg_label); + + add_file_compare(this, sg_icon, sg_label); add_archive_actions(this, sg_icon, sg_label); @@ -992,8 +994,6 @@ && (!selected_item.is_trashed_item || ((selected_item.parent != null) && selected_item.parent.is_trash)); } - - private void add_run_in_terminal(Gtk.Menu menu, Gtk.SizeGroup sg_icon, Gtk.SizeGroup sg_label){ if (selected_item == null){ return; } @@ -1018,7 +1018,6 @@ }); } - private void add_trash_open_original_location(Gtk.Menu menu, Gtk.SizeGroup sg_icon, Gtk.SizeGroup sg_label){ if (selected_item == null){ return; } @@ -1064,31 +1063,81 @@ menu_item.sensitive = (selected_items.size == 1) && selected_item.can_rename && view.current_item.is_trash; } - + + private void add_file_compare(Gtk.Menu menu, Gtk.SizeGroup sg_icon, Gtk.SizeGroup sg_label){ - log_debug("FileContextMenu: add_file_compare()"); + log_debug("FileContextMenu: add_compare()"); + + if (selected_item == null){ return; } + + if (selected_items.size > 1){ return; } + + if (!file_is_regular(selected_item.file_path)){ return; } + + // ... ------------------------- + + var menu_item = gtk_menu_add_item( + menu, + _("Compare"), + _("Compare text files side-by-side"), + IconManager.lookup_image("compare",16), + sg_icon, + sg_label); + + menu_item.sensitive = (selected_items.size > 0) || (window.pending_action != null); + + var sub_menu = new Gtk.Menu(); + sub_menu.reserve_toggle_size = false; + menu_item.submenu = sub_menu; + + var sg_icon_sub = new Gtk.SizeGroup(SizeGroupMode.HORIZONTAL); + var sg_label_sub = new Gtk.SizeGroup(SizeGroupMode.HORIZONTAL); + + // items ------------------------------ + + add_file_compare_opposite(sub_menu, sg_icon_sub, sg_label_sub); + + add_file_compare_select_second(sub_menu, sg_icon_sub, sg_label_sub); + } + + private void add_file_compare_opposite(Gtk.Menu menu, Gtk.SizeGroup sg_icon, Gtk.SizeGroup sg_label){ + + log_debug("FileContextMenu: add_file_compare_opposite()"); // compare with Diffuse -------------------------- var menu_item = gtk_menu_add_item( menu, - _("Compare"),//TODO: show dialog for selecting second file - _("Compare file with file of same name in other pane"), - IconManager.lookup_image("folder-open",16), + _("To '%s' in Opposite Pane").printf(selected_item.file_name_ellipsized),//TODO: show dialog for selecting second file + _("Compare text file with file in opposite pane"), + null, sg_icon, sg_label); menu_item.activate.connect (() => { - - //var file1 = selected_items[0]; - //if (current_tab.view2.current_item.children.has_key(file1.file_name)){ - //var file2 = current_tab.view2.current_item.children[file1.file_name]; - //Posix.system("diffuse '%s' '%s'".printf(escape_single_quote(file1.file_path), escape_single_quote(file2.file_path))); - //} + view.compare_files_opposite(); }); } + private void add_file_compare_select_second(Gtk.Menu menu, Gtk.SizeGroup sg_icon, Gtk.SizeGroup sg_label){ + + log_debug("FileContextMenu: add_file_compare_select_second()"); + + // compare with Diffuse -------------------------- + + var menu_item = gtk_menu_add_item( + menu, + _("Select Second File..."), + _("Select second file for compare"), + null, + sg_icon, + sg_label); + + menu_item.activate.connect (() => { + view.compare_files_select_second(); + }); + } private void add_actions(Gtk.Menu menu, Gtk.SizeGroup sg_icon, Gtk.SizeGroup sg_label){ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/FileViewList.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/FileViewList.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/FileViewList.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/FileViewList.vala 2018-01-11 12:49:20.000000000 +0000 @@ -124,9 +124,9 @@ public signal void changed(); // helper - private Gtk.Image video_image; - private FileItem video_item; - private bool video_thumb_cycling_in_progress = false; + //private Gtk.Image video_image; + //private FileItem video_item; + //private bool video_thumb_cycling_in_progress = false; // contructor ------------------ @@ -621,8 +621,8 @@ if (current_item == null) { return false; } TreePath? path; - TreeViewColumn? column; - int cell_x, cell_y; + //TreeViewColumn? column; + //int cell_x, cell_y; path = iconview.get_path_at_pos((int) event.x, (int) event.y); if (!iconview.path_is_selected(path)){ @@ -1865,10 +1865,10 @@ iconview.key_press_event.connect(on_key_press_event); } - private void disconnect_key_press_handler(){ + /*private void disconnect_key_press_handler(){ treeview.key_press_event.disconnect(on_key_press_event); iconview.key_press_event.disconnect(on_key_press_event); - } + }*/ private bool on_key_press_event(Gdk.EventKey event){ @@ -1957,7 +1957,7 @@ paste(); } - private void set_as_drag_source(bool set_dnd){ + /*private void set_as_drag_source(bool set_dnd){ if (set_dnd){ Gtk.drag_source_set(treeview, Gdk.ModifierType.BUTTON1_MASK, MainWindow.drop_target_types, Gdk.DragAction.COPY); } @@ -1973,7 +1973,7 @@ else{ Gtk.drag_dest_unset(treeview); } - } + }*/ // properties ----------------------------- @@ -2572,6 +2572,8 @@ log_error (e.message); } + sleep(100); + int elapsed = 0; bool overlay_added = false; while (query_items_thread_running){ @@ -3503,7 +3505,7 @@ // cycle video thumbnails -------------------- - private void start_thumbnail_cycler(){ + /*private void start_thumbnail_cycler(){ return; if (!video_thumb_cycling_in_progress){ try { @@ -3562,7 +3564,7 @@ video_thumb_cycling_in_progress = false; log_debug("finished cycle_thumbnail_images_thread"); - } + }*/ // history ------------------------------ @@ -3994,7 +3996,7 @@ }); } - private void open_archive_item_finish(FileItemArchive item){ + /*private void open_archive_item_finish(FileItemArchive item){ string outpath = item.extraction_path; log_debug("outpath: %s".printf(outpath)); @@ -4017,7 +4019,7 @@ set_view_item(item); //} } - } + }*/ public void set_default_app(FileItem item, DesktopApp? app){ @@ -4818,7 +4820,7 @@ if (get_selected_items().size > 0){ item = get_selected_items()[0]; } - var win = new PropertiesWindow.with_parent(item, window); + var win = new PropertiesWindow.for_file(item); win.show_all(); } @@ -4915,6 +4917,90 @@ } } + public void compare_files_opposite(){ + + log_debug("FileViewList: compare_files_opposite()"); + + var selected_items = get_selected_items(); + if (selected_items.size == 0){ return; } + + err_log_clear(); + + var view2 = panel.opposite_pane.view; + + var file1 = selected_items[0]; + + if (view2.current_item.children.has_key(file1.file_name)){ + + var file2 = view2.current_item.children[file1.file_name]; + + compare_files(file1, file2); + } + else{ + string txt = _("File Not Found"); + string msg = "%s:\n\n%s".printf(_("Could not find file in opposite pane"), file1.file_name); + gtk_messagebox(txt, msg, window, true); + return; + } + } + + public void compare_files_select_second(){ + + log_debug("FileViewList: compare_files_select_second()"); + + var selected_items = get_selected_items(); + if (selected_items.size == 0){ return; } + + err_log_clear(); + + var file1 = selected_items[0]; + + var list = gtk_select_files(window, true, false, null, null, "", ""); + if (list.size == 0){ return; } + + var file2 = new FileItem.from_path(list[0]); + + compare_files(file1, file2); + } + + public void compare_files(FileItem file1, FileItem file2){ + + log_debug("FileViewList: compare_files()"); + + string txt, msg, cmd; + + if (!file_is_regular(file1.file_path)){ + + txt = _("Not Supported"); + msg = "%s:\n\n> %s".printf(_("Selected item is not a text file"), file1.file_name); + gtk_messagebox(txt, msg, window, true); + return; + } + + if (!file_is_regular(file2.file_path)){ + txt = _("Not Supported"); + msg = "%s:\n\n> %s".printf(_("Selected item is not a text file"), file2.file_name); + gtk_messagebox(txt, msg, window, true); + return; + } + + if ((App.compare_default == "bcompare") && cmd_exists("bcompare")){ + cmd = "bcompare '%s' '%s'".printf(escape_single_quote(file1.file_path), escape_single_quote(file2.file_path)); + log_debug(cmd); + exec_script_async(cmd); + return; + } + + if (cmd_exists("diffuse")){ + cmd = "diffuse '%s' '%s'".printf(escape_single_quote(file1.file_path), escape_single_quote(file2.file_path)); + log_debug(cmd); + exec_script_async(cmd); + return; + } + + check_diffuse(); // show message for installing diffuse + } + // ISO --------------------------------------- public void mount_iso(){ @@ -5007,7 +5093,7 @@ err_log_clear(); - var win = new KvmCreateDiskWindow(KvmTaskType.CREATE_DISK, window, current_item.file_path, "", "", ""); + new KvmCreateDiskWindow(KvmTaskType.CREATE_DISK, window, current_item.file_path, "", "", ""); } public void kvm_create_derived_disk(){ @@ -5018,7 +5104,7 @@ if (selected_items.size == 0){ return; } var item = selected_items[0]; - var win = new KvmCreateDiskWindow(KvmTaskType.CREATE_DISK_DERIVED, window, current_item.file_path, item.file_path, "", ""); + new KvmCreateDiskWindow(KvmTaskType.CREATE_DISK_DERIVED, window, current_item.file_path, item.file_path, "", ""); } public void kvm_create_merged_disk(){ @@ -5029,7 +5115,7 @@ if (selected_items.size == 0){ return; } var item = selected_items[0]; - var win = new KvmCreateDiskWindow(KvmTaskType.CONVERT_MERGE, window, current_item.file_path, "", item.file_path, ""); + new KvmCreateDiskWindow(KvmTaskType.CONVERT_MERGE, window, current_item.file_path, "", item.file_path, ""); } public void kvm_convert_disk(string disk_format){ @@ -5040,7 +5126,7 @@ if (selected_items.size == 0){ return; } var item = selected_items[0]; - var win = new KvmCreateDiskWindow(KvmTaskType.CONVERT_DISK, window, current_item.file_path, item.file_path, "", disk_format); + new KvmCreateDiskWindow(KvmTaskType.CONVERT_DISK, window, current_item.file_path, item.file_path, "", disk_format); } public void kvm_boot_disk(){ @@ -5555,13 +5641,21 @@ return check_tool("pdftk"); } + private bool check_diffuse(){ + return check_tool("diffuse"); + } + + /*private bool check_bcompare(){ + return check_tool("bcompare"); + }*/ + private bool check_ghostscript(){ return check_tool("gs"); } - private bool check_imagemagick(){ + /*private bool check_imagemagick(){ return check_tool("convert"); - } + }*/ private bool check_youtube_dl(){ return check_tool("youtube-dl"); @@ -5905,9 +5999,9 @@ action.task_complete.connect(()=>{ - var arch = ((FileItemArchive) current_item).archive_base_item; + //var arch = ((FileItemArchive) current_item).archive_base_item; - string src_path = path_combine(arch.extraction_path, current_item.file_path); + //string src_path = path_combine(arch.extraction_path, current_item.file_path); }); } @@ -5992,7 +6086,7 @@ // columns menu - private bool menu_columns_popup (Gdk.EventButton? event) { + /*private bool menu_columns_popup (Gdk.EventButton? event) { var menu_columns = build_menu_columns(); @@ -6003,11 +6097,11 @@ } return true; - } + }*/ - private Gtk.Menu build_menu_columns(){ - var menu = new Gtk.Menu(); - menu.reserve_toggle_size = false; + //private Gtk.Menu build_menu_columns(){ + //var menu = new Gtk.Menu(); + //menu.reserve_toggle_size = false; //menu_columns = menu; /*foreach(var col in column_list){ @@ -6040,11 +6134,11 @@ }); }*/ - menu.show_all(); + //menu.show_all(); - return menu; + //return menu; //menu_item_columns.set_submenu(menu); - } + //} } diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/FileViewTab.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/FileViewTab.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/FileViewTab.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/FileViewTab.vala 2018-01-11 12:49:20.000000000 +0000 @@ -48,7 +48,7 @@ private Gtk.Label tab_label; private Gtk.Entry tab_entry; private Gtk.EventBox ebox_close; - private Gtk.Image img_active; + //private Gtk.Image img_active; private Gtk.Image img_locked; public FileViewPane pane; public bool renamed = false; @@ -173,13 +173,13 @@ } } - private void add_active_icon(Gtk.Box box){ + /*private void add_active_icon(Gtk.Box box){ var img = IconManager.lookup_image("item-gray",16); img_active = img; box.add(img); refresh_active_indicator(); - } + }*/ public void refresh_active_indicator(){ @@ -397,7 +397,7 @@ panel.notebook_switch_page_disconnect(); - var index = tab_index; + //var index = tab_index; panel.tabs.remove(this); notebook.remove_page(tab_index); diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/FileViewToolbar.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/FileViewToolbar.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/FileViewToolbar.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/FileViewToolbar.vala 2018-01-11 12:49:20.000000000 +0000 @@ -46,10 +46,10 @@ public class FileViewToolbar : Gtk.Toolbar, IPaneActive { private int icon_size_actual = 16; - private Gtk.Menu menu_history; - private Gtk.Menu menu_disk; - private Gtk.Menu menu_bookmark; - private Gtk.Menu menu_layout; + //private Gtk.Menu menu_history; + //private Gtk.Menu menu_disk; + //private Gtk.Menu menu_bookmark; + //private Gtk.Menu menu_layout; private ViewPopover view_popover; public bool is_global = true; @@ -279,9 +279,8 @@ //button.set_menu(build_view_menu()); } - private Gtk.Popover popup_bm; - private Sidebar sidebar_bm; - + private PlacesPopover popup_bm; + private void add_toolbar_button_for_bookmarks(){ var button = new Gtk.ToolButton(null,null); @@ -295,15 +294,12 @@ gtk_apply_css({ button }, "padding-left: 2px; padding-right: 2px;"); - popup_bm = new Gtk.Popover(btn_bookmarks); - sidebar_bm = new Sidebar(popup_bm, "bm", pane); - popup_bm.add(sidebar_bm); + popup_bm = new PlacesPopover(button, pane); button.clicked.connect(() => { - if (view == null) { return; }; - sidebar_bm.show(); - sidebar_bm.refresh(); - gtk_show(popup_bm); + if (view != null){ + popup_bm.show_popup(); + } }); } diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/MainMenubar.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/MainMenubar.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/MainMenubar.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/MainMenubar.vala 2018-01-11 12:49:20.000000000 +0000 @@ -37,7 +37,7 @@ private Gtk.Menu? menu = null; private bool menu_mode = false; - private bool refreshed_once = false; + //private bool refreshed_once = false; private Gtk.CheckMenuItem chk_hidden; public signal void context_term(); @@ -109,7 +109,7 @@ uint accel_key; Gdk.ModifierType accel_mods; - var accel_flags = Gtk.AccelFlags.VISIBLE; + //var accel_flags = Gtk.AccelFlags.VISIBLE; Gtk.accelerator_parse(keycode, out accel_key, out accel_mods); item.remove_accelerator (Hotkeys.accel_group, accel_key, accel_mods); @@ -380,7 +380,7 @@ submenu.add(item); item.activate.connect (() => { - var win = new ConnectServerWindow(window, ""); + new ConnectServerWindow(window, ""); }); } @@ -1555,7 +1555,7 @@ submenu.show_all(); } - private void add_cloud_account_unmount(Gtk.Menu menu){ + /*private void add_cloud_account_unmount(Gtk.Menu menu){ var item = new Gtk.MenuItem.with_label (_("Unmount")); item.set_tooltip_text(_("Unmount cloud storage account")); @@ -1604,7 +1604,7 @@ subitem.sensitive = (App.rclone.get_mounted_path(acc.name).length > 0); } - } + }*/ private void add_cloud_account_browse(Gtk.Menu menu){ @@ -1835,7 +1835,7 @@ menu.add(item); item.activate.connect (() => { - var win = new ToolsWindow(window); + new ToolsWindow(window); }); } diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/MainWindow.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/MainWindow.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/MainWindow.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/MainWindow.vala 2018-01-11 12:49:20.000000000 +0000 @@ -47,7 +47,7 @@ private Gtk.Box vbox_main; private Gtk.Paned pane_nav; - private Gtk.Notebook notebook; + //private Gtk.Notebook notebook; public MainMenuBar menubar; public Sidebar sidebar; @@ -66,9 +66,9 @@ private int def_width = 700; private int def_height = 500; - private uint tmr_task = 0; + //private uint tmr_task = 0; private uint tmr_init = 0; - private uint tmr_init_tab_delayed = 0; + //private uint tmr_init_tab_delayed = 0; public bool window_is_ready = false; public bool window_is_closing = false; @@ -359,7 +359,7 @@ if (panel == layout_box.panel1){ continue; } - var tab = panel.add_tab(false); + panel.add_tab(false); //tab.pane.view.set_view_path(App.user_home); //tab.pane.view.set_view_path(file_path); } @@ -388,7 +388,7 @@ foreach(var panel in layout_box.panels){ - var tab = panel.add_tab(false); + panel.add_tab(false); //tab.pane.view.set_view_path(App.user_home); } @@ -811,7 +811,7 @@ //add_tab(); //} - var dlg = new SettingsWindow(); + new SettingsWindow(); } public void open_wizard_window(){ @@ -821,7 +821,7 @@ //add_tab(); //} - var dlg = new WizardWindow(); + new WizardWindow(); } public void open_donate_window(){ @@ -922,7 +922,7 @@ err_log_clear(); - var win = new CloudLoginWindow(this); + new CloudLoginWindow(this); //TermBox term = new TermBox(pane); //term.start_shell(); @@ -1162,7 +1162,7 @@ int num = (int) node_pane.get_int_member("number"); int active_tab = (int) node_pane.get_int_member("active_tab"); - bool is_visible = node_pane.get_boolean_member("visible"); + //bool is_visible = node_pane.get_boolean_member("visible"); log_debug("session-load: pane: %d".printf(num)); diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/MessageBar.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/MessageBar.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/MessageBar.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/MessageBar.vala 2018-01-11 12:49:20.000000000 +0000 @@ -131,7 +131,7 @@ private void add_close_button(Gtk.Box box){ - var img = new Gtk.Image.from_pixbuf(IconManager.lookup("window-close", 16, true)); + //var img = new Gtk.Image.from_pixbuf(IconManager.lookup("window-close", 16, true)); var ebox = new Gtk.EventBox(); //ebox.add(img); diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/MiddleToolbar.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/MiddleToolbar.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/MiddleToolbar.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/MiddleToolbar.vala 2018-01-11 12:49:20.000000000 +0000 @@ -36,10 +36,10 @@ public class MiddleToolbar : Gtk.Toolbar, IPaneActive { private int icon_size_actual = 16; - private Gtk.Menu menu_history; - private Gtk.Menu menu_disk; - private Gtk.Menu menu_bookmark; - private Gtk.Menu menu_layout; + //private Gtk.Menu menu_history; + //private Gtk.Menu menu_disk; + //private Gtk.Menu menu_bookmark; + //private Gtk.Menu menu_layout; public bool is_global = true; private Gtk.ToolButton btn_cut; @@ -550,7 +550,7 @@ this.sensitive = true; } - var list = view.get_selected_items(); + //var list = view.get_selected_items(); btn_cut.sensitive = view.can_cut; btn_copy.sensitive = view.can_copy; diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/Pathbar.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/Pathbar.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/Pathbar.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/Pathbar.vala 2018-01-11 12:49:20.000000000 +0000 @@ -64,7 +64,7 @@ private Gtk.EventBox ebox_edit_buffer; private Gtk.ScrolledWindow scrolled; - private Gtk.Box box_left; + //private Gtk.Box box_left; private Gtk.EventBox ebox_back; private Gtk.Image img_back; @@ -90,17 +90,17 @@ private Gtk.EventBox ebox_open_other; private Gtk.Image img_open_other; - private Gtk.EventBox ebox_close; - private Gtk.Image img_close; + //private Gtk.EventBox ebox_close; + //private Gtk.Image img_close; - private Gtk.Image img_edit; + //private Gtk.Image img_edit; private int ICON_SIZE = 16; private Gtk.Entry txt_path; - private int BOX_SPACING = 3; + //private int BOX_SPACING = 3; - private Gtk.Menu menu_disk; - private Gtk.Menu menu_bookmark; + //private Gtk.Menu menu_disk; + //private Gtk.Menu menu_bookmark; public bool path_edit_mode = false; @@ -152,8 +152,7 @@ // bookmarks - private Gtk.Popover popup_bm; - private Sidebar sidebar_bm; + private PlacesPopover popup_bm; private void add_item_bookmarks(Gtk.Box box){ @@ -172,15 +171,10 @@ set_pointer_cursor_for_eventbox(ebox); - popup_bm = new Gtk.Popover(ebox); - sidebar_bm = new Sidebar(popup_bm, "bm", pane); - popup_bm.add(sidebar_bm); + popup_bm = new PlacesPopover(ebox, pane); ebox.button_press_event.connect((event)=>{ - //menu_bookmark_popup(null); - sidebar_bm.show(); - sidebar_bm.refresh(); - gtk_show(popup_bm); + popup_bm.show_popup(); return false; }); } @@ -665,9 +659,9 @@ } // print the list - foreach(var str in list){ + //foreach(var str in list){ //log_debug("parts: %s".printf(str)); - } + //} return list; } @@ -955,7 +949,7 @@ }); } - private void add_item_close(){ + /*private void add_item_close(){ log_debug("Pathbar: add_item_close()"); @@ -986,7 +980,7 @@ window.update_accelerators_for_active_pane(); return true; }); - } + }*/ // actions @@ -1022,7 +1016,7 @@ handled = true; } else{ - var win = new ConnectServerWindow(window, txt_path.text); + new ConnectServerWindow(window, txt_path.text); handled = true; } } diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/PlacesPopover.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/PlacesPopover.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/PlacesPopover.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/PlacesPopover.vala 2018-01-11 12:49:20.000000000 +0000 @@ -58,17 +58,677 @@ } // ------------------------------- + + private Gtk.TreeView treeview_places; + private Gtk.TreeView treeview_bm; + private Gtk.Paned paned; + + private int def_width = 600; + private int def_height = 500; - public PlacesPopover(Gtk.Widget? _relative_to){ + private Gtk.Box vbox_main; + private Gtk.Box vbox_right; + private Gtk.Box vbox_left; + + private Gtk.Button btn_bookmark; + private Gtk.Button btn_edit; + + private Gtk.TreeViewColumn col_name; + private Gtk.CellRendererText cell_name; + private Gtk.TreeViewColumn col_delete; + private Gtk.TreeViewColumn col_reorder; + + private bool edit_mode = false; + + public PlacesPopover(Gtk.Widget? _relative_to, FileViewPane? parent_pane){ this.relative_to = _relative_to; + this._pane = parent_pane; + init_ui(); + + this.closed.connect(on_closed); } private void init_ui(){ + //vbox_main + vbox_main = new Gtk.Box(Orientation.VERTICAL, 0); + vbox_main.margin = 0; + vbox_main.set_size_request(def_width, def_height); + add(vbox_main); + + paned = new Gtk.Paned(Gtk.Orientation.HORIZONTAL); + vbox_main.add(paned); + + init_places(); + + init_bookmarks(); + + init_actions(); + } + + private void on_closed(){ + + save_bookmarks(); + + App.bookmarks_position = paned.position; + } + + // places --------------------------------------- + + private void init_places() { + + var vbox = new Gtk.Box(Orientation.VERTICAL, 0); + vbox.margin = 0; + paned.pack1(vbox, true, true); // resize, shrink + vbox_left = vbox; + + // treeview + var treeview = new Gtk.TreeView(); + treeview.get_selection().mode = Gtk.SelectionMode.MULTIPLE; + treeview.headers_visible = false; + treeview.headers_clickable = false; + treeview.rubber_banding = false; + treeview.has_tooltip = true; + treeview.enable_search = false; + treeview.set_rules_hint(false); + treeview.activate_on_single_click = true; + treeview.expand = true; + treeview_places = treeview; + + // scrolled + var scrolled = new Gtk.ScrolledWindow(null, null); + scrolled.set_shadow_type (ShadowType.ETCHED_IN); + scrolled.hscrollbar_policy = PolicyType.AUTOMATIC; + scrolled.vscrollbar_policy = PolicyType.AUTOMATIC; + scrolled.add (treeview); + //scrolled.hexpand = true; + //scrolled.vexpand = true; + //paned.pack1(scrolled, true, true); // resize, shrink + + scrolled.add(treeview); + + vbox.add(scrolled); + + //paned.pack1(vbox, true, true); + + // columns ------------------------------- + + var col = new TreeViewColumn(); + col.expand = true; + treeview.append_column(col); + + // cell icon + var cell_pix = new Gtk.CellRendererPixbuf(); + cell_pix.xpad = 3; + col.pack_start(cell_pix, false); + + // render icon + col.set_cell_data_func (cell_pix, (cell_layout, cell, model, iter) => { + + var pixcell = cell as Gtk.CellRendererPixbuf; + + Gdk.Pixbuf pix; + model.get (iter, ColumnItem.ICON, out pix, -1); + + pixcell.pixbuf = pix; + + bool enabled; + model.get (iter, ColumnItem.ENABLED, out enabled, -1); + + pixcell.sensitive = enabled; + }); + + // text + var cell_text = new CellRendererText (); + col.pack_start (cell_text, false); + + // render text + col.set_cell_data_func (cell_text, (cell_layout, cell, model, iter) => { + + var crt = cell as Gtk.CellRendererText; + + string name; + model.get (iter, ColumnItem.NAME, out name, -1); + + crt.text = name; + + bool enabled; + model.get (iter, ColumnItem.ENABLED, out enabled, -1); + + crt.sensitive = enabled; + }); + + treeview.set_tooltip_column(ColumnItem.TOOLTIP); + + var cursor = new Gdk.Cursor.from_name(Gdk.Display.get_default(), "pointer"); + scrolled.get_window().set_cursor(cursor); + + // events ------------------------------- + + treeview.row_activated.connect(treeview_places_row_activated); + } + + private void treeview_places_row_activated(TreePath path, TreeViewColumn? column){ + + log_debug("FileViewList: treeview_places_row_activated()"); + + var model = (Gtk.ListStore) treeview_places.model; + + TreeIter iter; + model.get_iter_from_string(out iter, path.to_string()); + + GtkBookmark bm; + model.get (iter, ColumnItem.BOOKMARK, out bm, -1); + + this.hide(); + if (bm.path.length > 0){ + pane.view.set_view_path(bm.path); + } + else{ + pane.view.set_view_path(bm.uri); + } + } + + // bookmarks ----------------------------- + + private void init_bookmarks() { + + var vbox = new Gtk.Box(Orientation.VERTICAL, 0); + vbox.margin = 0; + paned.pack2(vbox, true, true); // resize, shrink + vbox_right = vbox; + + // treeview + var treeview = new Gtk.TreeView(); + treeview.get_selection().mode = Gtk.SelectionMode.MULTIPLE; + treeview.headers_visible = false; + treeview.headers_clickable = false; + treeview.rubber_banding = false; + treeview.enable_search = false; + treeview.set_rules_hint(false); + treeview.activate_on_single_click = true; + treeview.expand = true; + treeview_bm = treeview; + + // scrolled + var scrolled = new Gtk.ScrolledWindow(null, null); + scrolled.set_shadow_type (ShadowType.ETCHED_IN); + scrolled.hscrollbar_policy = PolicyType.AUTOMATIC; + scrolled.vscrollbar_policy = PolicyType.AUTOMATIC; + //scrolled.hexpand = true; + //scrolled.vexpand = true; + //paned.pack2(scrolled, true, true); // resize, shrink + + scrolled.add(treeview); + + vbox.add(scrolled); + + // grip -------------------------------------------- + + var col = new TreeViewColumn(); + col.clickable = false; + col.resizable = false; + treeview.append_column(col); + col_reorder = col; + + // cell icon + var cell_pix = new Gtk.CellRendererPixbuf(); + col.pack_start(cell_pix, false); + + // render icon + col.set_cell_data_func (cell_pix, (cell_layout, cell, model, iter) => { + + var pixcell = cell as Gtk.CellRendererPixbuf; + + pixcell.pixbuf = IconManager.lookup("view-list-details-symbolic", 16, false, true); + }); + + col_reorder.visible = false; + + // name --------------------------------------------- + + col = new TreeViewColumn(); + col.clickable = false; + col.resizable = false; + col.expand = true; + treeview.append_column(col); + col_name = col; + + // cell icon -------------------------------------- + + cell_pix = new Gtk.CellRendererPixbuf(); + cell_pix.xpad = 3; + col.pack_start(cell_pix, false); + + // render icon + col.set_cell_data_func (cell_pix, (cell_layout, cell, model, iter) => { + + var pixcell = cell as Gtk.CellRendererPixbuf; + + Gdk.Pixbuf pix; + model.get (iter, ColumnItem.ICON, out pix, -1); + + pixcell.pixbuf = pix; + + bool enabled; + model.get (iter, ColumnItem.ENABLED, out enabled, -1); + + pixcell.sensitive = enabled; + }); + + // text ------------------------------------------- + + var cell_text = new CellRendererText (); + col.pack_start (cell_text, false); + cell_name = cell_text; + + // render text + col.set_cell_data_func (cell_text, (cell_layout, cell, model, iter) => { + + var crt = cell as Gtk.CellRendererText; + + string name; + model.get (iter, ColumnItem.NAME, out name, -1); + + crt.text = name; + + bool enabled; + model.get (iter, ColumnItem.ENABLED, out enabled, -1); + + crt.sensitive = enabled; + }); + + //cell_text.editable = true; + cell_text.edited.connect((path, new_name)=>{ + + TreeIter iter; + var model = (Gtk.ListStore) treeview_bm.model; + + model.get_iter_from_string(out iter, path); + + GtkBookmark bm; + model.get(iter, ColumnItem.BOOKMARK, out bm, -1); + + model.set(iter, ColumnItem.NAME, new_name, -1); + + bm.name = new_name; + GtkBookmark.save_bookmarks(); + }); + + // delete action -------------------------------------------- + + col = new TreeViewColumn(); + col.clickable = false; + col.resizable = false; + treeview.append_column(col); + col_delete = col; + + // cell icon + cell_pix = new Gtk.CellRendererPixbuf(); + col.pack_start(cell_pix, false); + + // render icon + col.set_cell_data_func (cell_pix, (cell_layout, cell, model, iter) => { + + var pixcell = cell as Gtk.CellRendererPixbuf; + + pixcell.pixbuf = IconManager.lookup("tab-close", 16, false, true); + }); + + col_delete.visible = false; + + // -------------------------------------------------- + + // tooltip + treeview.has_tooltip = true; + treeview.query_tooltip.connect(treeview_query_tooltip); + + // cursor + var cursor = new Gdk.Cursor.from_name(Gdk.Display.get_default(), "pointer"); + scrolled.get_window().set_cursor(cursor); + + treeview.row_activated.connect(treeview_bookmarks_row_activated); + } + + private bool treeview_query_tooltip(int x, int y, bool keyboard_tooltip, Tooltip tooltip) { + + TreeModel model; + TreePath path; + TreeIter iter; + TreeViewColumn column; + + if (treeview_bm.get_tooltip_context (ref x, ref y, keyboard_tooltip, out model, out path, out iter)){ + + int bx, by; + treeview_bm.convert_widget_to_bin_window_coords(x, y, out bx, out by); + + if (treeview_bm.get_path_at_pos(bx, by, null, out column, null, null)){ + + GtkBookmark bm; + model.get(iter, 0, out bm, -1); + + string tt = ""; + + if (column == col_reorder){ + tt = _("Drag to Re-order"); + } + else if (column == col_delete){ + tt = _("Click to Remove"); + } + else{ + if (edit_mode){ + tt = _("Click to Rename"); + } + else{ + tt = bm.path; + } + } + + tooltip.set_markup(tt); + return true; + } + } + + return false; + } + + + private void treeview_bookmarks_row_activated(TreePath path, TreeViewColumn? column){ + + log_debug("FileViewList: treeview_bookmarks_row_activated()"); + + if (edit_mode){ + + if (column == col_delete){ + + var model = (Gtk.ListStore) treeview_bm.model; + + TreeIter iter; + model.get_iter_from_string(out iter, path.to_string()); + + GtkBookmark bm; + model.get (iter, ColumnItem.BOOKMARK, out bm, -1); + + GtkBookmark.remove_bookmark(bm.uri); + model.remove(ref iter); + } + } + else{ + + this.hide(); + + var model = (Gtk.ListStore) treeview_bm.model; + + TreeIter iter; + model.get_iter_from_string(out iter, path.to_string()); + + GtkBookmark bm; + model.get (iter, ColumnItem.BOOKMARK, out bm, -1); + + if (!bm.exists()){ + + string txt = _("Path Not Found"); + + string msg = "%s. %s.\n\n%s".printf( + _("Could not find bookmarked path"), + _("Folder may have been deleted or renamed, or device may have been unmounted"), + bm.path); + + gtk_messagebox(txt, msg, window, true); + + return; + } + + if (bm.path.length > 0){ + pane.view.set_view_path(bm.path); + } + else{ + pane.view.set_view_path(bm.uri); + } + } + } + + // actions ---------------------------------- + + private void init_actions(){ + + var hbox = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 0); + vbox_right.add(hbox); + + hbox.margin_top = 5; + hbox.margin_left = 3; + hbox.margin_right = 3; + hbox.margin_bottom = 3; + + // spacer ----------------------------------- + + //var dummy = new Gtk.Label(""); + //dummy.hexpand = true; + //hbox.add(dummy); + + // bookmark --------------------------------------- + + var bbox = new Gtk.ButtonBox(Gtk.Orientation.HORIZONTAL); + bbox.set_layout(Gtk.ButtonBoxStyle.CENTER); + bbox.spacing = 6; + hbox.add(bbox); + + bbox.hexpand = true; + + var button = new Gtk.Button.with_label(_("Bookmark")); + button.set_image(IconManager.lookup_image("user-bookmarks", 16, false, true)); + button.always_show_image = true; + bbox.add(button); + btn_bookmark = button; + + button.clicked.connect(btn_bookmark_clicked); + + // edit ----------------------------------------------------- + + button = new Gtk.Button.with_label(_("Edit")); + button.set_image(IconManager.lookup_image("item-gray", 16, false, true)); + button.always_show_image = true; + bbox.add(button); + btn_edit = button; + + button.clicked.connect(btn_edit_clicked); + } + + private void btn_bookmark_clicked(){ + + log_debug("btn_bookmark_clicked()"); + + if (pane.view.current_item != null){ + + //var path = pane.view.current_item.file_path; + var uri = pane.view.current_item.file_uri; + + if (!GtkBookmark.is_bookmarked(uri)){ + GtkBookmark.add_bookmark(uri); + log_debug("bookmark added: %s".printf(uri)); + } + else if (GtkBookmark.is_bookmarked(uri)){ + GtkBookmark.remove_bookmark(uri); + log_debug("bookmark removed: %s".printf(uri)); + } + } + else{ + log_debug("pane.view.current_item = null"); + } + + refresh_bookmarks(); + + refresh_actions(); + + this.hide(); + } + + private void btn_edit_clicked(){ + + log_debug("btn_edit_clicked()"); + + edit_mode = !edit_mode; + + cell_name.editable = edit_mode; + col_delete.visible = edit_mode; + col_reorder.visible = edit_mode; + treeview_bm.reorderable = edit_mode; + + if (!edit_mode){ + save_bookmarks(); + } + + refresh_bookmarks(); + + refresh_actions(); + } + + // refresh ---------------------------- + + public void show_popup(){ + + edit_mode = false; + + refresh(); + + gtk_show(this); + } + + private void refresh(){ + + refresh_places(); + + refresh_bookmarks(); + + refresh_actions(); + + this.show_all(); + + if ((App.bookmarks_position < 10) || (App.bookmarks_position > (def_width - 10))){ + App.bookmarks_position = (int) (def_width * 0.4); + } + + paned.set_position(App.bookmarks_position); + } + + private void refresh_places(){ + + log_debug("refresh_places()"); + + var model = new Gtk.ListStore(6, typeof(GtkBookmark), typeof(string), typeof(string), typeof(Gdk.Pixbuf?), typeof(bool), typeof(string)); + + treeview_places.set_model(model); + + add_bookmark(model, new GtkBookmark("file:///", _("Filesystem"))); + add_bookmark(model, new GtkBookmark("file://" + App.user_dirs.user_home, _("Home"))); + add_bookmark(model, new GtkBookmark("file://" + App.user_dirs.user_documents, _("Documents"))); + add_bookmark(model, new GtkBookmark("file://" + App.user_dirs.user_downloads, _("Downloads"))); + add_bookmark(model, new GtkBookmark("file://" + App.user_dirs.user_pictures, _("Pictures"))); + add_bookmark(model, new GtkBookmark("file://" + App.user_dirs.user_music, _("Music"))); + add_bookmark(model, new GtkBookmark("file://" + App.user_dirs.user_videos, _("Videos"))); + add_bookmark(model, new GtkBookmark("file://" + App.user_dirs.user_desktop, _("Desktop"))); + add_bookmark(model, new GtkBookmark("file://" + App.user_dirs.user_public, _("Public"))); + add_bookmark(model, new GtkBookmark("trash:///", _("Trash") + " (%s)".printf(format_file_size(App.trashcan.trash_can_size)))); + + foreach(var mount in GvfsMounts.get_mounts(App.user_id)){ + + var bm = new GtkBookmark(mount.file_uri, mount.display_name); + + add_bookmark(model, bm); + } + + treeview_places.expand_all(); + } + + private void refresh_bookmarks(){ + + var model = new Gtk.ListStore(6, typeof(GtkBookmark), typeof(string), typeof(string), typeof(Gdk.Pixbuf?), typeof(bool), typeof(string)); + + treeview_bm.set_model(model); + + foreach(var bm in GtkBookmark.bookmarks){ + + add_bookmark(model, bm); + } + + treeview_bm.expand_all(); + + cell_name.editable = edit_mode; + col_delete.visible = edit_mode; + col_reorder.visible = edit_mode; + treeview_bm.reorderable = edit_mode; + } + + private void add_bookmark(Gtk.ListStore model, GtkBookmark bm){ + + TreeIter iter; + model.append(out iter); + model.set(iter, ColumnItem.BOOKMARK, bm); + model.set(iter, ColumnItem.NAME, bm.name); + model.set(iter, ColumnItem.PATH, bm.uri); + model.set(iter, ColumnItem.ICON, bm.get_icon(22)); + model.set(iter, ColumnItem.ENABLED, bm.exists()); + model.set(iter, ColumnItem.TOOLTIP, bm.path); + } + + private void refresh_actions(){ + + if (pane.view.current_item != null){ + + //var path = pane.view.current_item.file_path; + var uri = pane.view.current_item.file_uri; + + if (GtkBookmark.is_bookmarked(uri)){ + btn_bookmark.set_image(IconManager.lookup_image("user-bookmarks", 16, false, true)); + } + else{ + btn_bookmark.set_image(IconManager.lookup_image("bookmark-missing", 16, false, true)); + } + } + + if (edit_mode){ + btn_edit.set_image(IconManager.lookup_image("item-green", 16, false, true)); + } + else{ + btn_edit.set_image(IconManager.lookup_image("item-gray", 16, false, true)); + } + } + + private enum ColumnItem { + BOOKMARK = 0, + NAME = 1, + PATH = 2, + ICON = 3, + ENABLED = 4, + TOOLTIP = 5 + } + + // save + + private void save_bookmarks(){ + + var list = new Gee.ArrayList(); + + var model = (Gtk.ListStore) treeview_bm.model; + + TreeIter iter; + bool iterExists = model.get_iter_first (out iter); + + while (iterExists){ + + GtkBookmark bm; + model.get (iter, ColumnItem.BOOKMARK, out bm, -1); + list.add(bm); + + iterExists = model.iter_next(ref iter); + } + + GtkBookmark.bookmarks = list; + GtkBookmark.save_bookmarks(); } } diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/PoloGtk.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/PoloGtk.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/PoloGtk.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/PoloGtk.vala 2018-01-11 12:49:20.000000000 +0000 @@ -54,7 +54,7 @@ //Device.test_all(); //exit(0); - var window = new MainWindow(); + new MainWindow(); //window.destroy.connect(Gtk.main_quit); //start event loop diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/ProgressPanelArchiveTask.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/ProgressPanelArchiveTask.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/ProgressPanelArchiveTask.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/ProgressPanelArchiveTask.vala 2018-01-11 12:49:20.000000000 +0000 @@ -41,7 +41,7 @@ private FileItemArchive? archive; // ui for archive_task - private Gtk.Grid grid_stats; + //private Gtk.Grid grid_stats; private Gtk.Spinner spinner; private Gtk.Label lbl_header; private Gtk.Label lbl_status; @@ -56,7 +56,7 @@ private Gtk.Label lbl_remaining_value; private Gtk.Label lbl_speed_value; //actions - private Gtk.Box hbox_actions; + //private Gtk.Box hbox_actions; private Gtk.Button btn_background; private Gtk.Button btn_pause; private Gtk.Button btn_stop; @@ -801,7 +801,7 @@ task_complete(); } - private string prompt_for_extraction_path(){ + /*private string prompt_for_extraction_path(){ log_debug("ProgressPanelArchiveTask: prompt_for_extraction_path()"); @@ -843,7 +843,7 @@ gtk_do_events(); return outpath; - } + }*/ private bool prompt_for_password_and_restart_task(){ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/ProgressPanelFileTask.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/ProgressPanelFileTask.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/ProgressPanelFileTask.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/ProgressPanelFileTask.vala 2018-01-11 12:49:20.000000000 +0000 @@ -52,9 +52,9 @@ private Gee.HashMap conflicts; private int64 copied_bytes = 0; - private int stalled_counter_limit = 10 * (1000 / 200); - private int stalled_counter = (int) stalled_counter_limit; - private bool stalled_warning_shown = false; + private const int stalled_counter_limit = 10 * (1000 / 200); + //private int stalled_counter = (int) stalled_counter_limit; + //private bool stalled_warning_shown = false; public ProgressPanelFileTask(FileViewPane _pane, Gee.ArrayList _items, FileActionType _action){ base(_pane, _items, _action); @@ -405,7 +405,7 @@ return true; } - private bool check_if_stalled(){ + /*private bool check_if_stalled(){ switch (action_type){ case FileActionType.DELETE: @@ -440,7 +440,7 @@ } return false; - } + }*/ public override void cancel(){ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/ProgressPanelPdfTask.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/ProgressPanelPdfTask.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/ProgressPanelPdfTask.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/ProgressPanelPdfTask.vala 2018-01-11 12:49:20.000000000 +0000 @@ -200,7 +200,7 @@ } else{ string msg = ""; - var list = new Gee.ArrayList(); + //var list = new Gee.ArrayList(); foreach(string outline in task.output_files){ if (msg.length > 0) { msg += "\n"; } diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/ProgressWindow.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/ProgressWindow.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/ProgressWindow.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/ProgressWindow.vala 2018-01-11 12:49:20.000000000 +0000 @@ -35,7 +35,7 @@ public class ProgressWindow : Window { - private Gtk.Box vbox_main; + /*private Gtk.Box vbox_main; private uint timerID = 0; private double progress_prev; @@ -53,7 +53,7 @@ private int def_width = 460; private uint tmr_init = 0; private uint tmr_task = 0; - private bool task_is_running = false; + private bool task_is_running = false;*/ //public ProgressWindow() { // destroy.connect(Gtk.main_quit); diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/PropertiesWindow.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/PropertiesWindow.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/PropertiesWindow.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/PropertiesWindow.vala 2018-01-11 12:49:20.000000000 +0000 @@ -35,16 +35,16 @@ public class PropertiesWindow : Gtk.Window { - private Gtk.Box vbox_main; + //private Gtk.Box vbox_main; private Gtk.DrawingArea area_archive; private Gtk.DrawingArea area_fs; - private FileItem file_item; - private FileItem dir_item; + private FileItem? file_item; + private FileItem? dir_item; private Device? device; private MediaFile mfile; private bool file_is_remote { - get { return file_item.file_path.has_prefix(App.rclone_mounts); } + get { return (file_item != null) && file_item.file_path.has_prefix(App.rclone_mounts); } } private Gtk.Box header_box; @@ -65,17 +65,7 @@ private signal void file_touched(); - public PropertiesWindow.with_parent(FileItem _file_item, Window parent) { - set_transient_for(App.main_window); - set_modal(true); - //set_type_hint(Gdk.WindowTypeHint.DIALOG); // Do not use; Hides close button on some window managers - set_skip_taskbar_hint(true); - set_skip_pager_hint(true); - window_position = WindowPosition.CENTER_ON_PARENT; - deletable = true; - resizable = true; - icon = get_app_icon(16,".svg"); - title = _("Properties"); + public PropertiesWindow.for_file(FileItem _file_item) { file_item = _file_item; dir_item = file_item.is_directory ? file_item : (new FileItem.from_path(file_item.file_location)); @@ -85,11 +75,29 @@ init_window(); } + public PropertiesWindow.for_device(Device _device) { + + device = _device; + + init_window(); + } + public void init_window () { + set_transient_for(App.main_window); + set_modal(true); + //set_type_hint(Gdk.WindowTypeHint.DIALOG); // Do not use; Hides close button on some window managers + set_skip_taskbar_hint(true); + set_skip_pager_hint(true); + window_position = WindowPosition.CENTER_ON_PARENT; + deletable = true; + resizable = true; + icon = get_app_icon(16,".svg"); + title = _("Properties"); + // vbox_main var vbox_main = new Gtk.Box(Gtk.Orientation.VERTICAL, 0); - //vbox_main.set_size_request(300, 400); + vbox_main.set_size_request(600, 400); add(vbox_main); header_box = new Gtk.Box(Orientation.HORIZONTAL, 6); @@ -112,31 +120,30 @@ switcher.set_stack(stack); + // hide tabs when showing only device properties + bool show_tabs = (device == null); + switcher.set_no_show_all(!show_tabs); + header_box.set_no_show_all(!show_tabs); + group_label = new Gtk.SizeGroup(Gtk.SizeGroupMode.HORIZONTAL); group1_value = new Gtk.SizeGroup(Gtk.SizeGroupMode.HORIZONTAL); group2_value = new Gtk.SizeGroup(Gtk.SizeGroupMode.HORIZONTAL); - + init_tab_properties(); - if (!file_is_remote){ - init_tab_fs(); - } + init_tab_fs(); - if (file_item.perms.length > 0){ - init_tab_permissions(); - } + init_tab_permissions(); - if (!file_item.is_directory && !file_is_remote){ - mfile = new MediaFile(file_item.file_path); - mfile.query_mediainfo_formatted(); - init_tab_mediainfo(); - } + init_tab_mediainfo(); } // properties tab private void init_tab_properties(){ + if (file_item == null){ return; } + log_debug("PropertiesWindow: init_tab_properties()"); var hbox = new Gtk.Box(Orientation.HORIZONTAL, 24); @@ -161,7 +168,7 @@ var vbox = new Gtk.Box(Orientation.VERTICAL, 6); hbox.add(vbox); - Label label; + //Label label; // name ---------------- @@ -456,24 +463,30 @@ private void init_tab_fs(){ - if ((file_item is FileItemArchive) || (file_item is FileItemCloud)){ return; } - + if ((file_item != null) && ((file_item is FileItemArchive) || (file_item is FileItemCloud) || file_is_remote)){ return; } + log_debug("PropertiesWindow: init_tab_fs()"); var hbox = new Gtk.Box(Orientation.VERTICAL, 12); hbox.margin = 12; - //hbox.margin_bottom = 24; - //hbox.margin_right = 24; stack.add_titled (hbox, _("Filesystem"), _("Filesystem")); - device = Device.get_device_by_path(dir_item.file_path); - if (device != null){ - device = Device.get_device_by_name(device.device); - } - else{ - log_error("device is NULL: Device.get_device_by_path(%s)".printf(dir_item.file_path)); + // get device for file_item --------------------------- + + if ((device == null) && (file_item != null)){ + + device = Device.get_device_by_path(dir_item.file_path); + + if (device != null){ + device = Device.get_device_by_name(device.device); + } + else{ + log_error("device is NULL: Device.get_device_by_path(%s)".printf(dir_item.file_path)); + } } + // create ui --------------------------------------------- + var vbox = new Gtk.Box(Orientation.VERTICAL, 6); hbox.add(vbox); @@ -492,6 +505,8 @@ add_property(vbox, _("Label"), ((device.label.length > 0) ? device.label : _("(empty)"))); + add_property(vbox, _("PartLabel"), ((device.partlabel.length > 0) ? device.partlabel : _("(empty)"))); + add_property(vbox, _("Filesystem"), device.fstype); if (device.is_mounted){ @@ -500,32 +515,38 @@ add_property(vbox, _("ReadOnly"), ((device.read_only ? "Yes" : "No"))); - var sep = new Gtk.Separator(Gtk.Orientation.HORIZONTAL); vbox.add(sep); } - string txt = "%s (%'ld bytes)".printf(format_file_size(dir_item.filesystem_size), dir_item.filesystem_size); + // create tooltip --------------------------- + + string txt = "%s (%'ld bytes)".printf(format_file_size(device.size_bytes), device.size_bytes); add_property(vbox, _("Size"), txt); txt = "%s (%'ld bytes) (%.0f%%)".printf( - format_file_size(dir_item.filesystem_used), - dir_item.filesystem_used, - (dir_item.filesystem_used * 100.0) / dir_item.filesystem_size); + format_file_size(device.used_bytes), + device.used_bytes, + (device.used_bytes * 100.0) / device.size_bytes); add_property(vbox, _("Used"), txt); txt = "%s (%'ld bytes) (%.0f%%)".printf( - format_file_size(dir_item.filesystem_free), - dir_item.filesystem_free, - (dir_item.filesystem_free * 100.0) / dir_item.filesystem_size); + format_file_size(device.free_bytes), + device.free_bytes, + (device.free_bytes * 100.0) / device.size_bytes); add_property(vbox, _("Available"), txt); - //ratio bar + var dummy = new Gtk.Label(""); + dummy.vexpand = true; + vbox.add(dummy); + + // ratio bar ------------------------------------------ + var area = new Gtk.DrawingArea(); - area.set_size_request(-1, 20); + area.set_size_request(-1, 30); area.hexpand = true; area.margin_top = 6; area.margin_left = 6; @@ -538,7 +559,9 @@ private bool area_fs_draw(Cairo.Context context) { - double used = (dir_item.filesystem_used * 1.0) / dir_item.filesystem_size; + if (device == null) { return true; } + + double used = (device.used_bytes * 1.0) / device.size_bytes; var color_white = Gdk.RGBA(); color_white.parse("white"); @@ -606,14 +629,14 @@ private void init_tab_permissions(){ + if ((file_item == null) || (file_item.perms.length == 0)){ return; } + if ((file_item is FileItemArchive) || (file_item is FileItemCloud)){ return; } log_debug("PropertiesWindow: init_tab_permissions()"); var vbox = new Gtk.Box(Orientation.VERTICAL, 6); vbox.margin = 12; - //hbox.margin_bottom = 24; - //vbox.margin_right = 24; stack.add_titled (vbox, _("Permissions"), _("Permissions")); var label = new Gtk.Label("%s:".printf(_("Permissions"))); @@ -672,27 +695,6 @@ add_option(grid, 2, 5, "g", "s", "SGID"); add_option(grid, 3, 5, "", "t", "Sticky"); - - //sep = new Gtk.Separator(Gtk.Orientation.HORIZONTAL); - //sep.margin_bottom = 12; - //grid.attach(sep, 0, 6, 5, 1); - - /*label = new Gtk.Label("%s:".printf(_("Ownership"))); - label.set_use_markup(true); - label.xalign = 0.0f; - label.margin_top = 6; - label.margin_bottom = 12; - vbox.add(label);*/ - - - - //add_user_combo(vbox); - - //add_group_combo(vbox); - - //if (App.user_uid != 0){ - //add_info_bar(vbox); - //} } private void add_option(Gtk.Grid grid, int col, int row, string user, string mode_bit, string? text = null){ @@ -978,7 +980,7 @@ }); } - private void add_info_bar(Gtk.Box box){ + /*private void add_info_bar(Gtk.Box box){ var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); hbox.margin_top = 6; @@ -995,20 +997,22 @@ css = " color: #000000; "; gtk_apply_css(new Gtk.Widget[] { label }, css); - } + }*/ // mediainfo tab private void init_tab_mediainfo(){ + if ((file_item == null) || file_item.is_directory || file_is_remote){ return; } + if ((file_item is FileItemArchive) || (file_item is FileItemCloud)){ return; } - + log_debug("PropertiesWindow: init_tab_mediainfo()"); + mfile = new MediaFile(file_item.file_path); + mfile.query_mediainfo_formatted(); + var vbox = new Gtk.Box(Orientation.VERTICAL, 12); - //vbox.margin = 12; - //vbox.margin_bottom = 24; - //vbox.margin_right = 24; stack.add_titled (vbox, _("MediaInfo"), _("MediaInfo")); //tv_info diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/Settings.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/Settings.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/Settings.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/Settings.vala 2018-01-11 12:49:20.000000000 +0000 @@ -52,14 +52,14 @@ private Gtk.Scale scale_tileview_row_spacing; private Gtk.Scale scale_tileview_padding; - private Gtk.Scale scale_toolbar_icon; - private Gtk.TreeView tv_columns; + //private Gtk.Scale scale_toolbar_icon; + //private Gtk.TreeView tv_columns; private Gtk.Box vbox_toolbar; private Gtk.Box vbox_pathbar; private Gtk.CheckButton chk_headerbar_enabled; - Gtk.IconSize[] toolbar_icon_sizes = new Gtk.IconSize[] { Gtk.IconSize.MENU, Gtk.IconSize.SMALL_TOOLBAR }; + //Gtk.IconSize[] toolbar_icon_sizes = new Gtk.IconSize[] { Gtk.IconSize.MENU, Gtk.IconSize.SMALL_TOOLBAR }; private int[] ICON_SIZE_MAPPING_LIST = new int[] { 16, 24, 32, 48 }; private int[] ICON_SIZE_MAPPING_ICONS = new int[] { 24, 32, 48, 64, 80, 96, 128, 256 }; @@ -488,7 +488,7 @@ }); } - private void add_toolbar_item_hidden(Gtk.Container box){ + /*private void add_toolbar_item_hidden(Gtk.Container box){ var chk = new Gtk.CheckButton.with_label(_("Hidden")); box.add(chk); @@ -520,7 +520,7 @@ window.toolbar.refresh_items(); }); - } + }*/ private void add_toolbar_item_view(Gtk.Container box){ @@ -892,7 +892,7 @@ }); } - private void add_pathbar_item_close(Gtk.Container box){ + /*private void add_pathbar_item_close(Gtk.Container box){ var chk = new Gtk.CheckButton.with_label(_("Close")); box.add(chk); @@ -910,7 +910,7 @@ } window.pathbar.refresh_icon_visibility(); }); - } + }*/ private void add_sidebar_option_visible(Gtk.Container box){ @@ -1435,7 +1435,7 @@ }); } - private void add_option_single_click_browse(Gtk.Box box){ + /*private void add_option_single_click_browse(Gtk.Box box){ var chk = new Gtk.CheckButton.with_label(_("Single click to activate")); box.add(chk); @@ -1450,7 +1450,7 @@ // v.refresh_single_click(); //} }); - } + }*/ private void add_option_single_instance_mode(Gtk.Box box){ @@ -1481,7 +1481,7 @@ }); } - private void add_option_minimize_to_tray(Gtk.Box box){ + /*private void add_option_minimize_to_tray(Gtk.Box box){ var chk = new Gtk.CheckButton.with_label(_("Minimize to tray")); box.add(chk); @@ -1507,7 +1507,7 @@ chk.toggled.connect(()=>{ App.autostart = chk.active; }); - } + }*/ private void add_option_confirm_delete(Gtk.Box box){ @@ -2236,7 +2236,7 @@ stack.add_titled (box, _("Columns"), _("Columns")); } - private void add_option_tree_navigation(Gtk.Container box){ + /*private void add_option_tree_navigation(Gtk.Container box){ var chk = new Gtk.CheckButton.with_label(_("Tree navigation")); //chk.active = App.list_view_tree_nav; @@ -2251,7 +2251,7 @@ // v.pane.refresh(); //} }); - } + }*/ public void refresh(){ @@ -2549,7 +2549,7 @@ }); } - private void add_option_network(Gtk.Box box){ + /*private void add_option_network(Gtk.Box box){ var chk = new Gtk.CheckButton.with_label(_("Chroot: Enable network")); box.add(chk); @@ -2575,7 +2575,7 @@ chk.toggled.connect(()=>{ App.term_enable_gui = chk.active; }); - } + }*/ private void add_option_pdf_split(Gtk.Box box){ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/Sidebar.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/Sidebar.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/Sidebar.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/Sidebar.vala 2018-01-11 12:49:20.000000000 +0000 @@ -61,7 +61,7 @@ private Gtk.ListBox listbox; private Gtk.ScrolledWindow scrolled; - private Gtk.ListBoxRow current_row; + //private Gtk.ListBoxRow current_row; private Gee.HashMap node_expanded = new Gee.HashMap(); private Gtk.SizeGroup sg_label; @@ -406,7 +406,7 @@ if (dev.children.size == 0){ var dev2 = dev.copy(); - dev2.type = "crypt"; + dev2.type = "part"; dev2.pkname = dev.device.replace("/dev/",""); dev2.parent = dev; add_device(dev2); @@ -652,7 +652,7 @@ var vbox = new Gtk.Box(Orientation.VERTICAL, 0); vbox.margin_right = 12; box.add(vbox); - var label_box = vbox; + //var label_box = vbox; // name var label = new Gtk.Label(""); @@ -698,6 +698,36 @@ row.set_data("item", item); + var dev = item.device; + + // create tooltip ----------------------------------------- + + string tt = ""; + + tt += "%s: %s\n".printf(_("Device"), dev.device); + + if (dev.mapped_name.length > 0){ + tt += "%s: %s\n".printf(_("Mapped"), "/dev/mapper/%s".printf(dev.mapped_name)); + } + + tt += "%s: %s\n".printf(_("UUID"), dev.uuid); + + tt += "%s: %s\n".printf(_("Label"), ((dev.label.length > 0) ? dev.label : _("(empty)"))); + + tt += "%s: %s\n".printf(_("PartLabel"), ((dev.partlabel.length > 0) ? dev.partlabel : _("(empty)"))); + + tt += "%s: %s\n".printf(_("Filesystem"), dev.fstype); + + if (dev.is_mounted){ + tt += "%s: %s\n".printf(_("Mount"), dev.mount_points[0].mount_point); + } + + tt += "%s: %s".printf(_("ReadOnly"), (dev.read_only ? "Yes" : "No")); + + row.set_tooltip_markup(tt); + + // create widgets ------------------------------------ + var ebox = new Gtk.EventBox(); row.add(ebox); @@ -711,7 +741,7 @@ var vbox = new Gtk.Box(Orientation.VERTICAL, 0); vbox.margin_right = 12; box.add(vbox); - var label_box = vbox; + //var label_box = vbox; // name var label = new Gtk.Label(""); @@ -722,8 +752,6 @@ // ----------------------------------- - var dev = item.device; - image.pixbuf = dev.get_icon(); image.margin_left = 12; @@ -731,12 +759,12 @@ label.set_use_markup(true); label.sensitive = dev.is_mounted; - if (dev.is_mounted){ - row.set_tooltip_markup(_("Click to open in active pane")); - } - else{ - row.set_tooltip_markup(_("Click to mount device and open in active pane")); - } + //if (dev.is_mounted){ + // row.set_tooltip_markup(_("Click to open in active pane")); + //} + //else{ + // row.set_tooltip_markup(_("Click to mount device and open in active pane")); + //} add_fs_bar(vbox, dev); @@ -812,7 +840,7 @@ var vbox = new Gtk.Box(Orientation.VERTICAL, 0); vbox.margin_right = 12; box.add(vbox); - var label_box = vbox; + //var label_box = vbox; // name var label = new Gtk.Label(""); @@ -972,9 +1000,9 @@ // connect signal for right-click menu row.button_press_event.connect((w,e) => { return row_bookmark_button_press_event(e, bm, label_box, entry, row); }); - const Gtk.TargetEntry[] targets = { - {"item", Gtk.TargetFlags.SAME_APP, 1} - }; + //const Gtk.TargetEntry[] targets = { + // {"item", Gtk.TargetFlags.SAME_APP, 1} + //}; //Gtk.drag_source_set(row, Gdk.ModifierType.BUTTON1_MASK, targets, Gdk.DragAction.MOVE); //Gtk.drag_dest_set(row, Gtk.DestDefaults.ALL, targets, Gdk.DragAction.MOVE); @@ -1026,7 +1054,7 @@ var vbox = new Gtk.Box(Orientation.VERTICAL, 0); vbox.margin_right = 12; box.add(vbox); - var label_box = vbox; + //var label_box = vbox; // name var label = new Gtk.Label(""); @@ -1173,7 +1201,7 @@ }); } - private void add_disk_eject_button(Gtk.Box box, Device dev){ + /*private void add_disk_eject_button(Gtk.Box box, Device dev){ var icon_size = popup ? 16 : 16; var img = new Gtk.Image.from_pixbuf(IconManager.lookup("media-eject", icon_size, true)); @@ -1190,7 +1218,7 @@ DeviceContextMenu.eject_disk(dev, pane, window); return true; }); - } + }*/ private void add_fs_bar(Gtk.Box box, Device dev){ @@ -1302,9 +1330,9 @@ }); } - private void on_drag_data_get (Gdk.DragContext context, Gtk.SelectionData data, uint info, uint time) { + //private void on_drag_data_get (Gdk.DragContext context, Gtk.SelectionData data, uint info, uint time) { - log_debug("on_drag_data_get"); + //log_debug("on_drag_data_get"); @@ -1317,19 +1345,19 @@ } data.set_uris((string[])uris.to_array());*/ - log_debug("on_drag_data_get: exit"); - } + //log_debug("on_drag_data_get: exit"); + //} - private void on_drag_data_received (Gdk.DragContext drag_context, int x, int y, Gtk.SelectionData data, uint info, uint time) { + //private void on_drag_data_received (Gdk.DragContext drag_context, int x, int y, Gtk.SelectionData data, uint info, uint time) { - log_debug("on_drag_data_received"); + //log_debug("on_drag_data_received"); - if ((data != null) && (data.get_length() >= 0)) { - log_debug("dnd: selection_length=%d".printf(data.get_length())); - var text = (string) data.get_data(); - log_debug(text); - } + //if ((data != null) && (data.get_length() >= 0)) { + // log_debug("dnd: selection_length=%d".printf(data.get_length())); + // var text = (string) data.get_data(); + // log_debug(text); + //} /*// get selected_items var selected_items = new Gee.ArrayList(); @@ -1349,10 +1377,10 @@ window.pending_action = action; */ - Gtk.drag_finish (drag_context, true, false, time); + //Gtk.drag_finish (drag_context, true, false, time); //paste(); - } + //} /* private void set_as_drag_source(bool set_dnd, Gtk.ListBoxRow row){ if (set_dnd){ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/Statusbar.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/Statusbar.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/Statusbar.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/Statusbar.vala 2018-01-11 12:49:20.000000000 +0000 @@ -75,7 +75,7 @@ private Gtk.EventBox ebox_filter; private Gtk.EventBox ebox_terminal; - private double fs_bar_value = 0; + //private double fs_bar_value = 0; private bool is_global{ get{ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/TermBox.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/TermBox.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/TermBox.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/TermBox.vala 2018-01-11 12:49:20.000000000 +0000 @@ -202,6 +202,11 @@ feed_command("exit"); } + public void restart_shell(){ + exit_shell(); + start_shell(); + } + public void terminate_child(){ //btn_cancel.sensitive = false; //process_quit(child_pid); @@ -219,11 +224,14 @@ } public void feed_command(string command, bool newline = true){ - string txt = command; + + string cmd = command; + if (newline){ - txt += "\n"; + cmd = "%s\n".printf(cmd); } - term.feed_child(txt, -1); + + term.feed_child(cmd, -1); } public void refresh(){ @@ -269,15 +277,15 @@ //} log_debug("TermBox: change_directory()"); - + feed_command("cd '%s'".printf(escape_single_quote(dir_path))); } - private void show_running_process_message(){ + //private void show_running_process_message(){ // TODO: Add check to ignore background process - gtk_messagebox(_("Terminal is busy"), - _("This action cannot be executed while a process is running"), window, true); - } + //gtk_messagebox(_("Terminal is busy"), + // _("This action cannot be executed while a process is running"), window, true); + //} public void copy(){ @@ -309,14 +317,14 @@ public void reset(){ log_debug("TermBox: reset()"); - + feed_command("tput reset"); } public void open_settings(){ log_debug("TermBox: open_settings()"); - + feed_command("fish_config"); } @@ -352,6 +360,11 @@ set_color_background(DEF_COLOR_BG); } + public void chroot_current(){ + + feed_command("sudo polo-chroot $(pwd)"); + } + public void chroot(string path){ var cmd = "sudo polo-chroot '%s' \n".printf( @@ -361,16 +374,5 @@ feed_command(cmd); } - - public void unchroot(string path){ - - feed_command("exit"); - - foreach(string txt in new string[] { "dev", "dev/pts", "proc", "run", "sys" }){ - string dest = path_combine(path, txt); - var cmd = "sudo umount '%s'".printf(escape_single_quote(dest)); - feed_command(cmd); - } - } } diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/TermContextMenu.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/TermContextMenu.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/TermContextMenu.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/TermContextMenu.vala 2018-01-11 12:49:20.000000000 +0000 @@ -55,8 +55,8 @@ private Gee.ArrayList selected_items; private FileItem? selected_item = null; - private bool is_trash = false; - private bool is_archive = false; + //private bool is_trash = false; + //private bool is_archive = false; public TermContextMenu(FileViewPane parent_pane){ @@ -95,7 +95,7 @@ add_clear_output(this, sg_icon, sg_label); - add_chroot(this, sg_icon, sg_label); + //add_chroot(this, sg_icon, sg_label); gtk_menu_add_separator(this); //--------------------------- @@ -197,17 +197,17 @@ var menu_item = gtk_menu_add_item( menu, _("Chroot"), - "", + _("Start chroot session in current directory"), null, sg_icon, sg_label); - menu_item.sensitive = view.is_normal_directory && (view.current_item != null) && view.current_item.is_sys_root; + menu_item.sensitive = true; // view.is_normal_directory && (view.current_item != null) && view.current_item.is_sys_root; if (!view.is_normal_directory || (view.current_item == null)) { return; } menu_item.activate.connect(()=>{ - pane.terminal.chroot(view.current_item.file_path); + pane.terminal.chroot_current(); }); } @@ -347,8 +347,8 @@ if (dlg.run() == Gtk.ResponseType.OK) { - string alpha = dlg.use_alpha.to_string(); - string col = dlg.rgba.to_string(); + //string alpha = dlg.use_alpha.to_string(); + //string col = dlg.rgba.to_string(); color_hex = rgba_to_hex(dlg.rgba, false, true); diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/TouchFileDateContextMenu.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/TouchFileDateContextMenu.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/TouchFileDateContextMenu.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/TouchFileDateContextMenu.vala 2018-01-11 12:49:20.000000000 +0000 @@ -175,9 +175,9 @@ task_is_running = false; } - private bool check_task_is_running(){ - return task_is_running; - } + //private bool check_task_is_running(){ + // return task_is_running; + //} public bool show_menu(Gdk.EventButton? event) { diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/WizardWindow.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/WizardWindow.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Gtk/WizardWindow.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Gtk/WizardWindow.vala 2018-01-11 12:49:20.000000000 +0000 @@ -283,7 +283,7 @@ App.save_app_config(); } - private Gtk.EventBox add_layout_option(Gtk.Box hbox, Gdk.Pixbuf pix, string label){ + /*private Gtk.EventBox add_layout_option(Gtk.Box hbox, Gdk.Pixbuf pix, string label){ var vbox = new Gtk.Box(Gtk.Orientation.VERTICAL, 6); hbox.add(vbox); @@ -301,9 +301,9 @@ add_label(vbox, label); return ebox; - } + }*/ - private void init_pathbar_style(){ + //private void init_pathbar_style(){ /*gtk_container_remove_children(vbox_main); @@ -361,7 +361,7 @@ }); this.show_all();*/ - } + //} } Binary files /tmp/tmpUTjRZD/PZEPzO01X2/polo-file-manager-17.10~28~ubuntu16.04.1/src/gtk3-version-polo and /tmp/tmpUTjRZD/q_MGD58HNd/polo-file-manager-18.1~59~ubuntu16.04.1/src/gtk3-version-polo differ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/makefile polo-file-manager-18.1~59~ubuntu16.04.1/src/makefile --- polo-file-manager-17.10~28~ubuntu16.04.1/src/makefile 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/makefile 2018-01-11 12:49:20.000000000 +0000 @@ -1,3 +1,6 @@ +SHELL=/bin/bash +CFLAGS=--std=c99 + prefix=/usr bindir=$(prefix)/bin sharedir=$(prefix)/share @@ -5,7 +8,7 @@ launcherdir=$(sharedir)/applications mandir=$(sharedir)/man man1dir=$(mandir)/man1 -CFLAGS=--std=c99 + app_name=polo app_fullname='Polo' @@ -21,8 +24,9 @@ define_symbols=$(shell { echo "${vte_symbols} ${gtk3_symbols}"; } ) -all: - #build binaries +all: app-gtk app-translations + +app-gtk: #polo-gtk valac -X -D'GETTEXT_PACKAGE="${app_name}"' \ @@ -33,15 +37,17 @@ Utility/*.vala \ Utility/Gtk/*.vala \ -o "${app_name}-gtk" \ - --pkg glib-2.0 --pkg gio-unix-2.0 \ - --pkg posix --pkg gtk+-3.0 --pkg gee-0.8 \ - --pkg json-glib-1.0 --pkg libxml-2.0 --pkg $(vte_version) + --target-glib 2.32 --pkg glib-2.0 \ + --pkg gio-unix-2.0 --pkg posix --pkg gtk+-3.0 \ + --pkg gee-0.8 --pkg json-glib-1.0 --pkg libxml-2.0 \ + --pkg $(vte_version) - #gtk3-version-polo valac "gtk3-version.vala" -o gtk3-version-polo --pkg gtk+-3.0 - #update translation template +app-translations: + + # update translation template xgettext --language=C --keyword=_ \ --copyright-holder='Tony George (teejeetech@gmail.com)' \ --package-name='${app_name}' \ @@ -55,9 +61,19 @@ Gtk/*.vala \ Utility/*.vala \ Utility/Gtk/*.vala + + # update translation files + for lang in de nl fr; do \ + msgmerge --update -v ../po/${app_name}-$$lang.po ../${app_name}.pot ; \ + done + + # am ar az bg ca cs da de el en_GB es et eu fr he hi hr hu ia id is it ko lt nb ne nl pl pt pt_BR ro ru sk sr sv tr uk vi zh_CN clean: - rm -rf *.o ${app_name} + rm -rfv ../release/{source,i386,amd64,armel,armhf} + rm -rfv ../release/*.{run,deb} + rm -rfv *.c *.o *.mo + rm -fv ${app_name}-gtk gtk3-version-polo install: mkdir -p "$(DESTDIR)$(bindir)" @@ -67,10 +83,8 @@ mkdir -p "$(DESTDIR)$(launcherdir)" mkdir -p "$(DESTDIR)$(sharedir)/${app_name}" mkdir -p "$(DESTDIR)$(sharedir)/pixmaps" + mkdir -p "$(DESTDIR)$(sharedir)/appdata" mkdir -p "$(DESTDIR)/var/log/polo" - mkdir -p "$(DESTDIR)$(localedir)/de/LC_MESSAGES" - mkdir -p "$(DESTDIR)$(localedir)/nl/LC_MESSAGES" - mkdir -p "$(DESTDIR)$(localedir)/fr/LC_MESSAGES" #binary install -m 0755 ${app_name}-gtk "$(DESTDIR)$(bindir)" @@ -89,11 +103,15 @@ #app icon install -m 0755 ./share/pixmaps/${app_name}.png "$(DESTDIR)$(sharedir)/pixmaps/" - #translations - install -m 0644 ../po/${app_name}-de.mo $(DESTDIR)$(localedir)/de/LC_MESSAGES/${app_name}.mo - install -m 0644 ../po/${app_name}-nl.mo $(DESTDIR)$(localedir)/nl/LC_MESSAGES/${app_name}.mo - install -m 0644 ../po/${app_name}-fr.mo $(DESTDIR)$(localedir)/fr/LC_MESSAGES/${app_name}.mo + # appdata + install -m 0755 ../debian/${app_name}-gtk.appdata.xml "$(DESTDIR)$(sharedir)/appdata" + # translations + for lang in de nl fr; do \ + mkdir -p "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES"; \ + msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/${app_name}.mo" ../po/${app_name}-$$lang.po ; \ + done + uninstall: #binary @@ -111,5 +129,8 @@ #app icon rm -f "$(DESTDIR)$(sharedir)/pixmaps/${app_name}.png" + # appdata + rm -f "$(DESTDIR)$(sharedir)/appdata/${app_name}-gtk.appdata.xml" + #translations rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/${app_name}.mo diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/polo-chroot polo-file-manager-18.1~59~ubuntu16.04.1/src/polo-chroot --- polo-file-manager-17.10~28~ubuntu16.04.1/src/polo-chroot 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/polo-chroot 2018-01-11 12:49:20.000000000 +0000 @@ -16,36 +16,59 @@ sudo echo "" if [ $? -ne 0 ]; then echo "Error"; exit 1; fi -sudo mount --rbind /dev "$path/dev" -sudo mount --rbind /run "$path/run" -sudo mount --rbind /sys "$path/sys" -sudo mount -t proc proc "$path/proc" +#sudo mount --rbind /dev "$path/dev" +#sudo mount --rbind /run "$path/run" +#sudo mount --rbind /sys "$path/sys" +#sudo mount --rbind /proc "$path/proc" + +sudo mount proc "$path/proc" -t proc -o nosuid,noexec,nodev +sudo mount sys "$path/sys" -t sysfs -o nosuid,noexec,nodev,ro +sudo mount udev "$path/dev" -t devtmpfs -o mode=0755,nosuid +sudo mount devpts "$path/dev/pts" -t devpts -o mode=0620,gid=5,nosuid,noexec +sudo mount shm "$path/dev/shm" -t tmpfs -o mode=1777,nosuid,nodev +sudo mount run "$path/run" -t tmpfs -o nosuid,nodev,mode=0755 +sudo mount tmp "$path/tmp" -t tmpfs -o mode=1777,strictatime,nodev,nosuid + +#sudo cp -vfL /etc/resolv.conf "$path/etc/resolv.conf" # -L not working +#sudo rsync -avhL --include=resolv.conf --exclude="*" "/etc/" "$path/etc/" + +timestamp=$(date "+%Y%m%d-%H%M%S") +sudo mv -vf "$path/etc/resolv.conf" "$path/etc/resolv.conf.bkup-$timestamp" +sudo cp -vfL /etc/resolv.conf "$path/etc/resolv.conf" -sudo cp /etc/resolv.conf "$path/etc/resolv.conf" - -#xhost +local: +xhost +local: tput reset echo "=====================================================" echo "Entering chroot environment... " echo "=====================================================" -#echo "Network and display sharing is enabled. " -#echo "You can connect to the internet, and run GUI apps." -echo "Type 'exit' to quit the session" +echo "> Internet sharing is enabled" +echo "> Display sharing is enabled" +echo "You can connect to internet, and start GUI apps in this session." +echo "-----------------------------------------------------" +echo "Type 'exit' to quit the session cleanly" +echo "-----------------------------------------------------" echo "" -#sudo chroot "$path" /bin/bash -c "export DISPLAY=$DISPLAY" +sudo chroot "$path" /bin/bash -c "export DISPLAY=$DISPLAY" +#SHELL=/bin/bash sudo unshare --fork --pid chroot "$path" sudo chroot "$path" sync +sudo rm -vf "$path/etc/resolv.conf" +sudo mv -vf "$path/etc/resolv.conf.bkup-$timestamp" "$path/etc/resolv.conf" + sudo umount --lazy --force --recursive "$path/dev" sudo umount --lazy --force --recursive "$path/run" sudo umount --lazy --force --recursive "$path/sys" sudo umount --lazy --force --recursive "$path/proc" +sudo umount --lazy --force --recursive "$path/tmp" + +#xhost -local: -echo "===============================" +echo "=====================================================" echo "Exited chroot environment" -echo "===============================" +echo "=====================================================" echo "" exit $? diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/share/polo/images/compare.svg polo-file-manager-18.1~59~ubuntu16.04.1/src/share/polo/images/compare.svg --- polo-file-manager-17.10~28~ubuntu16.04.1/src/share/polo/images/compare.svg 1970-01-01 00:00:00.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/share/polo/images/compare.svg 2018-01-11 12:49:20.000000000 +0000 @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/Device.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/Device.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/Device.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/Device.vala 2018-01-11 12:49:20.000000000 +0000 @@ -49,6 +49,7 @@ public string mapped_name = ""; public string uuid = ""; public string label = ""; + public string partlabel = ""; public int major = -1; public int minor = -1; @@ -325,7 +326,7 @@ if (status != 0){ if (parent_window != null){ string title = "Error unmounting %s".printf(device); - string msg = std_err; + //string msg = std_err; gtk_messagebox(title, std_err, parent_window, true); } } @@ -788,7 +789,7 @@ cmd = "lsblk --bytes --pairs --output NAME,KNAME,LABEL,UUID,TYPE,FSTYPE,SIZE,MOUNTPOINT,MODEL,RO,RM,MAJ:MIN"; } else{ - cmd = "lsblk --bytes --pairs --output NAME,KNAME,LABEL,UUID,TYPE,FSTYPE,SIZE,MOUNTPOINT,MODEL,RO,HOTPLUG,MAJ:MIN,PKNAME,VENDOR,SERIAL,REV"; + cmd = "lsblk --bytes --pairs --output NAME,KNAME,LABEL,PARTLABEL,UUID,TYPE,FSTYPE,SIZE,MOUNTPOINT,MODEL,RO,HOTPLUG,MAJ:MIN,PKNAME,VENDOR,SERIAL,REV"; } if (dev_name.length > 0){ @@ -838,46 +839,48 @@ rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" RM="([0-9]+)" MAJ:MIN="([0-9:]+)""""); } else{ - rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" HOTPLUG="([0-9]+)" MAJ:MIN="([0-9:]+)" PKNAME="(.*)" VENDOR="(.*)" SERIAL="(.*)" REV="(.*)""""); + rex = new Regex("""NAME="(.*)" KNAME="(.*)" LABEL="(.*)" PARTLABEL="(.*)" UUID="(.*)" TYPE="(.*)" FSTYPE="(.*)" SIZE="(.*)" MOUNTPOINT="(.*)" MODEL="(.*)" RO="([0-9]+)" HOTPLUG="([0-9]+)" MAJ:MIN="([0-9:]+)" PKNAME="(.*)" VENDOR="(.*)" SERIAL="(.*)" REV="(.*)""""); } if (rex.match (line, 0, out match)){ Device pi = new Device(); - pi.name = match.fetch(1).strip(); - pi.kname = match.fetch(2).strip(); - pi.label = match.fetch(3); // do not strip - labels can have leading or trailing spaces - pi.uuid = match.fetch(4).strip(); - pi.type = match.fetch(5).strip().down(); + int pos = 0; + pi.name = match.fetch(++pos).strip(); + pi.kname = match.fetch(++pos).strip(); + pi.label = match.fetch(++pos); // do not strip - labels can have leading or trailing spaces + pi.partlabel = match.fetch(++pos); // do not strip - labels can have leading or trailing spaces + pi.uuid = match.fetch(++pos).strip(); + pi.type = match.fetch(++pos).strip().down(); - pi.fstype = match.fetch(6).strip().down(); + pi.fstype = match.fetch(++pos).strip().down(); pi.fstype = (pi.fstype == "crypto_luks") ? "luks" : pi.fstype; pi.fstype = (pi.fstype == "lvm2_member") ? "lvm2" : pi.fstype; - pi.size_bytes = int64.parse(match.fetch(7).strip()); + pi.size_bytes = int64.parse(match.fetch(++pos).strip()); - var mp = match.fetch(8).strip(); + var mp = match.fetch(++pos).strip(); if (mp.length > 0){ pi.mount_points.add(new MountEntry(pi,mp,"")); } - pi.model = match.fetch(9).strip(); + pi.model = match.fetch(++pos).strip(); - pi.read_only = (match.fetch(10).strip() == "1"); + pi.read_only = (match.fetch(++pos).strip() == "1"); - pi.removable = (match.fetch(11).strip() == "1"); + pi.removable = (match.fetch(++pos).strip() == "1"); - string txt = match.fetch(12).strip(); + string txt = match.fetch(++pos).strip(); if (txt.contains(":")){ pi.major = int.parse(txt.split(":")[0]); pi.minor = int.parse(txt.split(":")[1]); } if (!lsblk_is_ancient){ - pi.pkname = match.fetch(13).strip(); - pi.vendor = match.fetch(14).strip(); - pi.serial = match.fetch(15).strip(); - pi.revision = match.fetch(16).strip(); + pi.pkname = match.fetch(++pos).strip(); + pi.vendor = match.fetch(++pos).strip(); + pi.serial = match.fetch(++pos).strip(); + pi.revision = match.fetch(++pos).strip(); } pi.order = ++index; @@ -1753,7 +1756,7 @@ if (status != 0){ if (parent_window != null){ string title = "Error unmounting %s".printf(dev_name_or_uuid); - string msg = std_err; + //string msg = std_err; gtk_messagebox(title, std_err, parent_window, true); } } diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/FileItemCloud.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/FileItemCloud.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/FileItemCloud.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/FileItemCloud.vala 2018-01-11 12:49:20.000000000 +0000 @@ -300,7 +300,7 @@ foreach(var node_child in arr.get_elements()){ var obj_child = node_child.get_object(); - string path = json_get_string(obj_child, "Path", ""); + //string path = json_get_string(obj_child, "Path", ""); string name = json_get_string(obj_child, "Name", ""); int64 size = json_get_int64(obj_child, "Size", 0); string modtime = json_get_string(obj_child, "ModTime", ""); diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/FileItem.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/FileItem.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/FileItem.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/FileItem.vala 2018-01-11 12:49:20.000000000 +0000 @@ -1252,7 +1252,7 @@ //item.display_path = path_combine(this.display_path, item_name); - bool item_was_queried = item.fileinfo_queried; + //bool item_was_queried = item.fileinfo_queried; // query file properties ------------ @@ -1643,7 +1643,7 @@ } if (!file.query_exists()) { - log_error("FileItem: query_children(): file not found: %s".printf(file_path), true); + log_error("FileItem: query_children(): file not found: %s".printf(file_path)); query_children_running = false; query_children_pending = false; return; diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/Gtk/GtkHelper.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/Gtk/GtkHelper.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/Gtk/GtkHelper.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/Gtk/GtkHelper.vala 2018-01-11 12:49:20.000000000 +0000 @@ -894,158 +894,6 @@ return col; } - - // add_column_icon - private Gtk.TreeViewColumn add_column_icon( - Gtk.TreeView treeview, string title, out Gtk.CellRendererPixbuf cell){ - - // TreeViewColumn - var col = new Gtk.TreeViewColumn(); - col.title = title; - - cell = new Gtk.CellRendererPixbuf(); - cell.xpad = 2; - col.pack_start (cell, false); - treeview.append_column(col); - - return col; - } - - // add_column_icon_and_text - private Gtk.TreeViewColumn add_column_icon_and_text( - Gtk.TreeView treeview, string title, - out Gtk.CellRendererPixbuf cell_pix, out Gtk.CellRendererText cell_text){ - - // TreeViewColumn - var col = new Gtk.TreeViewColumn(); - col.title = title; - - cell_pix = new Gtk.CellRendererPixbuf(); - cell_pix.xpad = 2; - col.pack_start (cell_pix, false); - - cell_text = new Gtk.CellRendererText(); - cell_text.xalign = 0.0f; - col.pack_start (cell_text, false); - treeview.append_column(col); - - return col; - } - - // add_column_radio_and_text - private Gtk.TreeViewColumn add_column_radio_and_text( - Gtk.TreeView treeview, string title, - out Gtk.CellRendererToggle cell_radio, out Gtk.CellRendererText cell_text){ - - // TreeViewColumn - var col = new Gtk.TreeViewColumn(); - col.title = title; - - cell_radio = new Gtk.CellRendererToggle(); - cell_radio.xpad = 2; - cell_radio.radio = true; - cell_radio.activatable = true; - col.pack_start (cell_radio, false); - - cell_text = new Gtk.CellRendererText(); - cell_text.xalign = 0.0f; - col.pack_start (cell_text, false); - treeview.append_column(col); - - return col; - } - - // add_column_icon_radio_text - private Gtk.TreeViewColumn add_column_icon_radio_text( - Gtk.TreeView treeview, string title, - out Gtk.CellRendererPixbuf cell_pix, - out Gtk.CellRendererToggle cell_radio, - out Gtk.CellRendererText cell_text){ - - // TreeViewColumn - var col = new Gtk.TreeViewColumn(); - col.title = title; - - cell_pix = new Gtk.CellRendererPixbuf(); - cell_pix.xpad = 2; - col.pack_start (cell_pix, false); - - cell_radio = new Gtk.CellRendererToggle(); - cell_radio.xpad = 2; - cell_radio.radio = true; - cell_radio.activatable = true; - col.pack_start (cell_radio, false); - - cell_text = new Gtk.CellRendererText(); - cell_text.xalign = 0.0f; - col.pack_start (cell_text, false); - treeview.append_column(col); - - return col; - } - - // add_label_scrolled - private Gtk.Label add_label_scrolled( - Gtk.Box box, string text, - bool show_border = false, bool wrap = false, int ellipsize_chars = 40){ - - // ScrolledWindow - var scroll = new Gtk.ScrolledWindow(null, null); - scroll.hscrollbar_policy = PolicyType.NEVER; - scroll.vscrollbar_policy = PolicyType.ALWAYS; - scroll.expand = true; - box.add(scroll); - - var label = new Gtk.Label(text); - label.xalign = 0.0f; - label.yalign = 0.0f; - label.margin = 6; - label.set_use_markup(true); - scroll.add(label); - - if (wrap){ - label.wrap = true; - label.wrap_mode = Pango.WrapMode.WORD; - } - else { - label.wrap = false; - label.ellipsize = Pango.EllipsizeMode.MIDDLE; - label.max_width_chars = ellipsize_chars; - } - - if (show_border){ - scroll.set_shadow_type (ShadowType.ETCHED_IN); - } - else{ - label.margin_left = 0; - } - - return label; - } - - // add_text_view - private Gtk.TextView add_text_view( - Gtk.Box box, string text){ - - // ScrolledWindow - var scrolled = new Gtk.ScrolledWindow(null, null); - scrolled.hscrollbar_policy = PolicyType.NEVER; - scrolled.vscrollbar_policy = PolicyType.ALWAYS; - scrolled.expand = true; - box.add(scrolled); - - var view = new Gtk.TextView(); - view.wrap_mode = Gtk.WrapMode.WORD_CHAR; - view.accepts_tab = false; - view.editable = false; - view.cursor_visible = false; - view.buffer.text = text; - view.sensitive = false; - scrolled.add (view); - - return view; - } - // add_label private Gtk.Label add_label( Gtk.Box box, string text, bool bold = false, @@ -1087,139 +935,6 @@ label.margin_bottom = 12; return label; } - - // add_label_subnote - private Gtk.Label add_label_subnote( - Gtk.Box box, string text){ - - var label = add_label(box, text, false, true); - label.margin_left = 6; - return label; - } - - // add_radio - private Gtk.RadioButton add_radio( - Gtk.Box box, string text, Gtk.RadioButton? another_radio_in_group){ - - Gtk.RadioButton radio = null; - - if (another_radio_in_group == null){ - radio = new Gtk.RadioButton(null); - } - else{ - radio = new Gtk.RadioButton.from_widget(another_radio_in_group); - } - - radio.label = text; - - box.add(radio); - - foreach(var child in radio.get_children()){ - if (child is Gtk.Label){ - var label = (Gtk.Label) child; - label.use_markup = true; - break; - } - } - - return radio; - } - - // add_checkbox - private Gtk.CheckButton add_checkbox( - Gtk.Box box, string text){ - - var chk = new Gtk.CheckButton.with_label(text); - chk.label = text; - box.add(chk); - - foreach(var child in chk.get_children()){ - if (child is Gtk.Label){ - var label = (Gtk.Label) child; - label.use_markup = true; - break; - } - } - - /* - chk.toggled.connect(()=>{ - chk.active; - }); - */ - - return chk; - } - - // add_spin - private Gtk.SpinButton add_spin( - Gtk.Box box, double min, double max, double val, - int digits = 0, double step = 1, double step_page = 1){ - - var adj = new Gtk.Adjustment(val, min, max, step, step_page, 0); - var spin = new Gtk.SpinButton(adj, step, digits); - spin.xalign = 0.5f; - box.add(spin); - - /* - spin.value_changed.connect(()=>{ - label.sensitive = spin.sensitive; - }); - */ - - return spin; - } - - // add_button - private Gtk.Button add_button( - Gtk.Box box, string text, string tooltip, - ref Gtk.SizeGroup? size_group, - Gtk.Image? icon = null){ - - var button = new Gtk.Button(); - box.add(button); - - button.set_label(text); - button.set_tooltip_text(tooltip); - - if (icon != null){ - button.set_image(icon); - button.set_always_show_image(true); - } - - if (size_group == null){ - size_group = new Gtk.SizeGroup(SizeGroupMode.HORIZONTAL); - } - - size_group.add_widget(button); - - return button; - } - - // add_toggle_button - private Gtk.ToggleButton add_toggle_button( - Gtk.Box box, string text, string tooltip, - ref Gtk.SizeGroup? size_group, - Gtk.Image? icon = null){ - - var button = new Gtk.ToggleButton(); - box.add(button); - - button.set_label(text); - button.set_tooltip_text(tooltip); - - if (icon != null){ - button.set_image(icon); - button.set_always_show_image(true); - } - - if (size_group == null){ - size_group = new Gtk.SizeGroup(SizeGroupMode.HORIZONTAL); - } - - size_group.add_widget(button); - - return button; - } // add_directory_chooser private Gtk.Entry add_directory_chooser( @@ -1264,7 +979,5 @@ return entry; } - - } diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/Gtk/IconManager.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/Gtk/IconManager.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/Gtk/IconManager.vala 1970-01-01 00:00:00.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/Gtk/IconManager.vala 2018-01-11 12:49:20.000000000 +0000 @@ -0,0 +1,392 @@ +/* + * IconManager.vala + * + * Copyright 2017 Tony George + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + * + * + */ + + +using Gtk; +using Gee; + +using TeeJee.Logging; +using TeeJee.FileSystem; +using TeeJee.JsonHelper; +using TeeJee.ProcessHelper; +using TeeJee.GtkHelper; +using TeeJee.System; +using TeeJee.Misc; + +public class IconManager : GLib.Object { + + public static Gtk.IconTheme theme; + + public static Gee.ArrayList search_paths = new Gee.ArrayList(); + + public static void init(string[] args, string app_name){ + + log_debug("IconManager: init()"); + + search_paths = new Gee.ArrayList(); + + string binpath = file_resolve_executable_path(args[0]); + log_debug("bin_path: %s".printf(binpath)); + + // check absolute location + string path = "/usr/share/%s/images".printf(app_name); + if (dir_exists(path)){ + search_paths.add(path); + log_debug("found images directory: %s".printf(path)); + } + + // check relative location + string base_path = file_parent(file_parent(file_parent(binpath))); + if (base_path != "/"){ + log_debug("base_path: %s".printf(base_path)); + path = path_combine(base_path, path); + if (dir_exists(path)){ + search_paths.add(path); + log_debug("found images directory: %s".printf(path)); + } + } + + refresh_icon_theme(); + } + + public static void refresh_icon_theme(){ + theme = Gtk.IconTheme.get_default(); + foreach(string path in search_paths){ + theme.append_search_path(path); + } + } + + public static Gdk.Pixbuf? lookup(string icon_name, int icon_size, bool symbolic = false, bool use_hardcoded = false){ + + Gdk.Pixbuf? pixbuf = null; + + if (icon_name.length == 0){ return null; } + + if (!use_hardcoded){ + try { + pixbuf = theme.load_icon_for_scale(icon_name, icon_size, 1, Gtk.IconLookupFlags.FORCE_SIZE); + if (pixbuf != null){ return pixbuf; } + } + catch (Error e) { + log_debug(e.message); + } + } + + foreach(string search_path in search_paths){ + + foreach(string ext in new string[] { ".svg", ".png", ".jpg", ".gif"}){ + + string img_file = path_combine(search_path, icon_name + ext); + + if (file_exists(img_file)){ + + pixbuf = load_pixbuf_from_file_at_scale(img_file, icon_size); + if (pixbuf != null){ return pixbuf; } + } + } + } + + return pixbuf; + } + + public static Gtk.Image? lookup_image(string icon_name, int icon_size, bool symbolic = false, bool use_hardcoded = false){ + + if (icon_name.length == 0){ return null; } + + Gdk.Pixbuf? pix = lookup(icon_name, icon_size, symbolic, use_hardcoded); + + if (pix == null){ + pix = generic_icon_image_missing(icon_size); + } + + return new Gtk.Image.from_pixbuf(pix); + } + + public static Gdk.Pixbuf? lookup_gicon(GLib.Icon? gicon, int icon_size){ + + Gdk.Pixbuf? pixbuf = null; + + if (gicon == null){ return null; } + + try { + pixbuf = theme.lookup_by_gicon(gicon, icon_size, Gtk.IconLookupFlags.FORCE_SIZE).load_icon(); + } + catch (Error e) { + log_debug(e.message); + } + + return pixbuf; + } + + public static Gtk.Image? lookup_animation(string gif_name){ + + if (gif_name.length == 0){ return null; } + + foreach(string search_path in search_paths){ + + foreach(string ext in new string[] { ".gif" }){ + + string img_file = path_combine(search_path, gif_name + ext); + + if (file_exists(img_file)){ + + return new Gtk.Image.from_file(img_file); + } + } + } + + return null; + } + + public static Gdk.Pixbuf? add_emblem (Gdk.Pixbuf pixbuf, string icon_name, int emblem_size, + bool emblem_symbolic, Gtk.CornerType corner_type) { + + if (icon_name.length == 0){ return pixbuf; } + + Gdk.Pixbuf? emblem = null; + + var SMALL_EMBLEM_COLOR = Gdk.RGBA(); + SMALL_EMBLEM_COLOR.parse("#000000"); + SMALL_EMBLEM_COLOR.alpha = 1.0; + + var EMBLEM_PADDING = 1; + + try { + var icon_info = theme.lookup_icon (icon_name, emblem_size, Gtk.IconLookupFlags.FORCE_SIZE); + if (emblem_symbolic){ + emblem = icon_info.load_symbolic(SMALL_EMBLEM_COLOR); + } + else{ + emblem = icon_info.load_icon(); + } + } catch (GLib.Error e) { + log_error("get_icon_emblemed(): %s".printf(e.message)); + return pixbuf; + } + + if (emblem == null) + return pixbuf; + + var offset_x = EMBLEM_PADDING; + + if ((corner_type == Gtk.CornerType.BOTTOM_RIGHT) || (corner_type == Gtk.CornerType.TOP_RIGHT)){ + offset_x = pixbuf.width - emblem.width - EMBLEM_PADDING ; + } + + var offset_y = EMBLEM_PADDING; + + if ((corner_type == Gtk.CornerType.BOTTOM_LEFT) || (corner_type == Gtk.CornerType.BOTTOM_RIGHT)){ + offset_y = pixbuf.height - emblem.height - EMBLEM_PADDING ; + } + + var emblemed = pixbuf.copy(); + + emblem.composite(emblemed, + offset_x, offset_y, + emblem_size, emblem_size, + offset_x, offset_y, + 1.0, 1.0, + Gdk.InterpType.BILINEAR, 255); + + return emblemed; + } + + public static Gdk.Pixbuf? add_overlay(Gdk.Pixbuf pixbuf_base, Gdk.Pixbuf pixbuf_overlay) { + + int offset_x = (pixbuf_base.width - pixbuf_overlay.width) / 2 ; + + var offset_y = (pixbuf_base.height - pixbuf_overlay.height) / 2 ; + + var emblemed = pixbuf_base.copy(); + + pixbuf_overlay.composite(emblemed, + offset_x, offset_y, + pixbuf_overlay.width, pixbuf_overlay.height, + offset_x, offset_y, + 1.0, 1.0, + Gdk.InterpType.BILINEAR, 255); + + return emblemed; + } + + public static Gdk.Pixbuf? resize_icon(Gdk.Pixbuf pixbuf_image, int icon_size) { + + //log_debug("resize_icon()"); + + var pixbuf_empty = new Gdk.Pixbuf(Gdk.Colorspace.RGB, true, 8, icon_size, icon_size); + pixbuf_empty.fill(0x00000000); + + //log_debug("pixbuf_empty: %d, %d".printf(pixbuf_empty.width, pixbuf_empty.height)); + + var pixbuf_resized = add_overlay(pixbuf_empty, pixbuf_image); + + //log_debug("pixbuf_resized: %d, %d".printf(pixbuf_resized.width, pixbuf_resized.height)); + + copy_pixbuf_options(pixbuf_image, pixbuf_resized); + + return pixbuf_resized; + } + + public static Gdk.Pixbuf? add_transparency (Gdk.Pixbuf pixbuf, int opacity = 130) { + + var trans = pixbuf.copy(); + trans.fill((uint32) 0xFFFFFF00); + + //log_debug("add_transparency"); + + int width = pixbuf.get_width(); + int height = pixbuf.get_height(); + pixbuf.composite(trans, 0, 0, width, height, 0, 0, 1.0, 1.0, Gdk.InterpType.BILINEAR, opacity); + + return trans; + } + + public static Gdk.Pixbuf? load_pixbuf_from_file(string file_path){ + + Gdk.Pixbuf? pixbuf = null; + + try{ + // load without scaling + pixbuf = new Gdk.Pixbuf.from_file(file_path); + + // return + if (pixbuf != null){ return pixbuf; } + } + catch (Error e){ + // ignore + } + + return null; + } + + public static Gdk.Pixbuf? load_pixbuf_from_file_at_scale(string file_path, int icon_size){ + + Gdk.Pixbuf? pixbuf = null; + + int width, height; + Gdk.Pixbuf.get_file_info(file_path, out width, out height); + + if ((width <= icon_size) && (height <= icon_size)){ + + try{ + // load without scaling + pixbuf = new Gdk.Pixbuf.from_file(file_path); + + // pad to requested size + pixbuf = resize_icon(pixbuf, icon_size); + + // return + if (pixbuf != null){ return pixbuf; } + } + catch (Error e){ + // ignore + } + } + else { + try{ + + if (file_path.down().has_suffix(".gif")){ + + pixbuf = new Gdk.Pixbuf.from_file(file_path); + + int ow, oh; + get_dimensions_fit_to_box(width, height, icon_size, icon_size, out ow, out oh); + pixbuf = pixbuf.scale_simple(ow, oh, Gdk.InterpType.HYPER); + } + else{ + + // load with scaling - scale down to requested box + pixbuf = new Gdk.Pixbuf.from_file_at_scale(file_path, icon_size, icon_size, true); + } + + // pad to requested size + pixbuf = resize_icon(pixbuf, icon_size); + + // return + if (pixbuf != null){ return pixbuf; } + } + catch (Error e){ + // ignore + } + } + + return null; + } + + public static void copy_pixbuf_options(Gdk.Pixbuf source, Gdk.Pixbuf target){ + + var map = source.get_options(); + foreach(string key in map.get_keys()){ + target.set_option(key, map[key]); + } + } + + public static void get_dimensions_fit_to_box(int in_width, int in_height, int req_width, int req_height, out int out_width, out int out_height){ + + out_width = in_width; + out_height = in_height; + + if (out_width > req_width){ + out_width = req_width; + out_height = (int) (((out_width * 1.0) / in_width) * in_height); + } + + if (out_height > req_height){ + out_height = req_height; + out_width = (int) (((out_height * 1.0) / in_height) * in_width); + } + } + + public static Gdk.Pixbuf? generic_icon_image(int icon_size) { + return lookup("image-x-generic", icon_size, false); + } + + public static Gdk.Pixbuf? generic_icon_image_missing(int icon_size) { + return lookup("image-missing", icon_size, false); + } + + public static Gdk.Pixbuf? generic_icon_video(int icon_size) { + return lookup("video-x-generic", icon_size, false); + } + + public static Gdk.Pixbuf? generic_icon_file(int icon_size) { + return lookup("text-x-preview", icon_size, false); + } + + public static Gdk.Pixbuf? generic_archive_file(int icon_size) { + return lookup("package-x-generic", icon_size, false); + } + + public static Gdk.Pixbuf? generic_icon_directory(int icon_size) { + return lookup("folder", icon_size, false); + } + + public static Gdk.Pixbuf? generic_icon_iso(int icon_size) { + return lookup("media-cdrom", icon_size, false); + } + + public static Gdk.Pixbuf? generic_icon_pdf(int icon_size) { + return lookup("application-pdf", icon_size, false); + } + +} diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/GtkBookmark.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/GtkBookmark.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/GtkBookmark.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/GtkBookmark.vala 2018-01-11 12:49:20.000000000 +0000 @@ -50,8 +50,8 @@ public static Gee.ArrayList bookmarks = new Gee.ArrayList(); - private static const string gtk_template = "%s/.config/gtk-3.0/bookmarks"; - private static const string custom_template = "%s/.config/%s-bookmarks"; + private const string gtk_template = "%s/.config/gtk-3.0/bookmarks"; + private const string custom_template = "%s/.config/%s-bookmarks"; private static string config_file; // constructors @@ -202,7 +202,7 @@ return false; } - + // instance methods public bool exists(){ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/IconManager.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/IconManager.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/IconManager.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/IconManager.vala 1970-01-01 00:00:00.000000000 +0000 @@ -1,392 +0,0 @@ -/* - * IconManager.vala - * - * Copyright 2017 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - - -using Gtk; -using Gee; - -using TeeJee.Logging; -using TeeJee.FileSystem; -using TeeJee.JsonHelper; -using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; -using TeeJee.Misc; - -public class IconManager : GLib.Object { - - public static Gtk.IconTheme theme; - - public static Gee.ArrayList search_paths = new Gee.ArrayList(); - - public static void init(string[] args, string app_name){ - - log_debug("IconManager: init()"); - - search_paths = new Gee.ArrayList(); - - string binpath = file_resolve_executable_path(args[0]); - log_debug("bin_path: %s".printf(binpath)); - - // check absolute location - string path = "/usr/share/%s/images".printf(app_name); - if (dir_exists(path)){ - search_paths.add(path); - log_debug("found images directory: %s".printf(path)); - } - - // check relative location - string base_path = file_parent(file_parent(file_parent(binpath))); - if (base_path != "/"){ - log_debug("base_path: %s".printf(base_path)); - path = path_combine(base_path, path); - if (dir_exists(path)){ - search_paths.add(path); - log_debug("found images directory: %s".printf(path)); - } - } - - refresh_icon_theme(); - } - - public static void refresh_icon_theme(){ - theme = Gtk.IconTheme.get_default(); - foreach(string path in search_paths){ - theme.append_search_path(path); - } - } - - public static Gdk.Pixbuf? lookup(string icon_name, int icon_size, bool symbolic = false, bool use_hardcoded = false){ - - Gdk.Pixbuf? pixbuf = null; - - if (icon_name.length == 0){ return null; } - - if (!use_hardcoded){ - try { - pixbuf = theme.load_icon_for_scale(icon_name, icon_size, 1, Gtk.IconLookupFlags.FORCE_SIZE); - if (pixbuf != null){ return pixbuf; } - } - catch (Error e) { - log_debug(e.message); - } - } - - foreach(string search_path in search_paths){ - - foreach(string ext in new string[] { ".svg", ".png", ".jpg", ".gif"}){ - - string img_file = path_combine(search_path, icon_name + ext); - - if (file_exists(img_file)){ - - pixbuf = load_pixbuf_from_file_at_scale(img_file, icon_size); - if (pixbuf != null){ return pixbuf; } - } - } - } - - return pixbuf; - } - - public static Gtk.Image? lookup_image(string icon_name, int icon_size, bool symbolic = false, bool use_hardcoded = false){ - - if (icon_name.length == 0){ return null; } - - Gdk.Pixbuf? pix = lookup(icon_name, icon_size, symbolic, use_hardcoded); - - if (pix == null){ - pix = generic_icon_image_missing(icon_size); - } - - return new Gtk.Image.from_pixbuf(pix); - } - - public static Gdk.Pixbuf? lookup_gicon(GLib.Icon? gicon, int icon_size){ - - Gdk.Pixbuf? pixbuf = null; - - if (gicon == null){ return null; } - - try { - pixbuf = theme.lookup_by_gicon(gicon, icon_size, Gtk.IconLookupFlags.FORCE_SIZE).load_icon(); - } - catch (Error e) { - log_debug(e.message); - } - - return pixbuf; - } - - public static Gtk.Image? lookup_animation(string gif_name){ - - if (gif_name.length == 0){ return null; } - - foreach(string search_path in search_paths){ - - foreach(string ext in new string[] { ".gif" }){ - - string img_file = path_combine(search_path, gif_name + ext); - - if (file_exists(img_file)){ - - return new Gtk.Image.from_file(img_file); - } - } - } - - return null; - } - - public static Gdk.Pixbuf? add_emblem (Gdk.Pixbuf pixbuf, string icon_name, int emblem_size, - bool emblem_symbolic, Gtk.CornerType corner_type) { - - if (icon_name.length == 0){ return pixbuf; } - - Gdk.Pixbuf? emblem = null; - - var SMALL_EMBLEM_COLOR = Gdk.RGBA(); - SMALL_EMBLEM_COLOR.parse("#000000"); - SMALL_EMBLEM_COLOR.alpha = 1.0; - - var EMBLEM_PADDING = 1; - - try { - var icon_info = theme.lookup_icon (icon_name, emblem_size, Gtk.IconLookupFlags.FORCE_SIZE); - if (emblem_symbolic){ - emblem = icon_info.load_symbolic(SMALL_EMBLEM_COLOR); - } - else{ - emblem = icon_info.load_icon(); - } - } catch (GLib.Error e) { - log_error("get_icon_emblemed(): %s".printf(e.message)); - return pixbuf; - } - - if (emblem == null) - return pixbuf; - - var offset_x = EMBLEM_PADDING; - - if ((corner_type == Gtk.CornerType.BOTTOM_RIGHT) || (corner_type == Gtk.CornerType.TOP_RIGHT)){ - offset_x = pixbuf.width - emblem.width - EMBLEM_PADDING ; - } - - var offset_y = EMBLEM_PADDING; - - if ((corner_type == Gtk.CornerType.BOTTOM_LEFT) || (corner_type == Gtk.CornerType.BOTTOM_RIGHT)){ - offset_y = pixbuf.height - emblem.height - EMBLEM_PADDING ; - } - - var emblemed = pixbuf.copy(); - - emblem.composite(emblemed, - offset_x, offset_y, - emblem_size, emblem_size, - offset_x, offset_y, - 1.0, 1.0, - Gdk.InterpType.BILINEAR, 255); - - return emblemed; - } - - public static Gdk.Pixbuf? add_overlay(Gdk.Pixbuf pixbuf_base, Gdk.Pixbuf pixbuf_overlay) { - - int offset_x = (pixbuf_base.width - pixbuf_overlay.width) / 2 ; - - var offset_y = (pixbuf_base.height - pixbuf_overlay.height) / 2 ; - - var emblemed = pixbuf_base.copy(); - - pixbuf_overlay.composite(emblemed, - offset_x, offset_y, - pixbuf_overlay.width, pixbuf_overlay.height, - offset_x, offset_y, - 1.0, 1.0, - Gdk.InterpType.BILINEAR, 255); - - return emblemed; - } - - public static Gdk.Pixbuf? resize_icon(Gdk.Pixbuf pixbuf_image, int icon_size) { - - //log_debug("resize_icon()"); - - var pixbuf_empty = new Gdk.Pixbuf(Gdk.Colorspace.RGB, true, 8, icon_size, icon_size); - pixbuf_empty.fill(0x00000000); - - //log_debug("pixbuf_empty: %d, %d".printf(pixbuf_empty.width, pixbuf_empty.height)); - - var pixbuf_resized = add_overlay(pixbuf_empty, pixbuf_image); - - //log_debug("pixbuf_resized: %d, %d".printf(pixbuf_resized.width, pixbuf_resized.height)); - - copy_pixbuf_options(pixbuf_image, pixbuf_resized); - - return pixbuf_resized; - } - - public static Gdk.Pixbuf? add_transparency (Gdk.Pixbuf pixbuf, int opacity = 130) { - - var trans = pixbuf.copy(); - trans.fill((uint32) 0xFFFFFF00); - - //log_debug("add_transparency"); - - int width = pixbuf.get_width(); - int height = pixbuf.get_height(); - pixbuf.composite(trans, 0, 0, width, height, 0, 0, 1.0, 1.0, Gdk.InterpType.BILINEAR, opacity); - - return trans; - } - - public static Gdk.Pixbuf? load_pixbuf_from_file(string file_path){ - - Gdk.Pixbuf? pixbuf = null; - - try{ - // load without scaling - pixbuf = new Gdk.Pixbuf.from_file(file_path); - - // return - if (pixbuf != null){ return pixbuf; } - } - catch (Error e){ - // ignore - } - - return null; - } - - public static Gdk.Pixbuf? load_pixbuf_from_file_at_scale(string file_path, int icon_size){ - - Gdk.Pixbuf? pixbuf = null; - - int width, height; - Gdk.Pixbuf.get_file_info(file_path, out width, out height); - - if ((width <= icon_size) && (height <= icon_size)){ - - try{ - // load without scaling - pixbuf = new Gdk.Pixbuf.from_file(file_path); - - // pad to requested size - pixbuf = resize_icon(pixbuf, icon_size); - - // return - if (pixbuf != null){ return pixbuf; } - } - catch (Error e){ - // ignore - } - } - else { - try{ - - if (file_path.down().has_suffix(".gif")){ - - pixbuf = new Gdk.Pixbuf.from_file(file_path); - - int ow, oh; - get_dimensions_fit_to_box(width, height, icon_size, icon_size, out ow, out oh); - pixbuf = pixbuf.scale_simple(ow, oh, Gdk.InterpType.HYPER); - } - else{ - - // load with scaling - scale down to requested box - pixbuf = new Gdk.Pixbuf.from_file_at_scale(file_path, icon_size, icon_size, true); - } - - // pad to requested size - pixbuf = resize_icon(pixbuf, icon_size); - - // return - if (pixbuf != null){ return pixbuf; } - } - catch (Error e){ - // ignore - } - } - - return null; - } - - public static void copy_pixbuf_options(Gdk.Pixbuf source, Gdk.Pixbuf target){ - - var map = source.get_options(); - foreach(string key in map.get_keys()){ - target.set_option(key, map[key]); - } - } - - public static void get_dimensions_fit_to_box(int in_width, int in_height, int req_width, int req_height, out int out_width, out int out_height){ - - out_width = in_width; - out_height = in_height; - - if (out_width > req_width){ - out_width = req_width; - out_height = (int) (((out_width * 1.0) / in_width) * in_height); - } - - if (out_height > req_height){ - out_height = req_height; - out_width = (int) (((out_height * 1.0) / in_height) * in_width); - } - } - - public static Gdk.Pixbuf? generic_icon_image(int icon_size) { - return lookup("image-x-generic", icon_size, false); - } - - public static Gdk.Pixbuf? generic_icon_image_missing(int icon_size) { - return lookup("image-missing", icon_size, false); - } - - public static Gdk.Pixbuf? generic_icon_video(int icon_size) { - return lookup("video-x-generic", icon_size, false); - } - - public static Gdk.Pixbuf? generic_icon_file(int icon_size) { - return lookup("text-x-preview", icon_size, false); - } - - public static Gdk.Pixbuf? generic_archive_file(int icon_size) { - return lookup("package-x-generic", icon_size, false); - } - - public static Gdk.Pixbuf? generic_icon_directory(int icon_size) { - return lookup("folder", icon_size, false); - } - - public static Gdk.Pixbuf? generic_icon_iso(int icon_size) { - return lookup("media-cdrom", icon_size, false); - } - - public static Gdk.Pixbuf? generic_icon_pdf(int icon_size) { - return lookup("application-pdf", icon_size, false); - } - -} diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/MimeTypes.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/MimeTypes.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/MimeTypes.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/MimeTypes.vala 2018-01-11 12:49:20.000000000 +0000 @@ -165,7 +165,8 @@ public static void set_default(string mimetype, DesktopApp app){ string cmd = "xdg-mime default %s %s".printf(app.desktop_file_name, mimetype); - exec_sync(cmd); + string std_out, std_err; + int status = exec_sync(cmd, out std_out, out std_err); query_mimeapps(user_home); } diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/TeeJee.FileSystem.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/TeeJee.FileSystem.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/TeeJee.FileSystem.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/TeeJee.FileSystem.vala 2018-01-11 12:49:20.000000000 +0000 @@ -155,16 +155,96 @@ return item.query_exists(); } - public bool file_exists (string file_path){ - /* Check if file exists */ - return (FileUtils.test(file_path, GLib.FileTest.EXISTS) - && !FileUtils.test(file_path, GLib.FileTest.IS_DIR)); + public bool file_exists(string item_path){ + + /* check if item exists on disk*/ + + var item = File.parse_name(item_path); + return item.query_exists(); + } + + public bool file_is_dir(string file_path){ + + try { + var file = File.new_for_path (file_path); + + if (file.query_exists()) { + + var info = file.query_info("%s".printf(FileAttribute.STANDARD_TYPE),0); // follow symlinks + + var file_type = info.get_file_type(); + + return (file_type == FileType.DIRECTORY); + } + } + catch (Error e) { + log_error (e.message); + } + + return false; } - public bool file_exists_regular (string file_path){ - /* Check if file exists */ - return ( FileUtils.test(file_path, GLib.FileTest.EXISTS) - && FileUtils.test(file_path, GLib.FileTest.IS_REGULAR)); + public bool file_is_regular(string file_path){ + + try { + var file = File.new_for_path (file_path); + + if (file.query_exists()) { + + var info = file.query_info("%s".printf(FileAttribute.STANDARD_TYPE),0); // follow symlinks + + var file_type = info.get_file_type(); + + return (file_type == FileType.REGULAR); + } + } + catch (Error e) { + log_error (e.message); + } + + return false; + } + + public bool file_is_special(string file_path){ + + try { + var file = File.new_for_path (file_path); + + if (file.query_exists()) { + + var info = file.query_info("%s".printf(FileAttribute.STANDARD_TYPE), 0); // follow symlinks + + var file_type = info.get_file_type(); + + return (file_type != FileType.REGULAR) && (file_type != FileType.DIRECTORY); + } + } + catch (Error e) { + log_error (e.message); + } + + return false; + } + + public bool file_is_symlink(string file_path){ + + try { + var file = File.new_for_path (file_path); + + if (file.query_exists()) { + + var info = file.query_info("%s".printf(FileAttribute.STANDARD_TYPE), FileQueryInfoFlags.NOFOLLOW_SYMLINKS); // don't follow symlinks + + var file_type = info.get_file_type(); + + return (file_type == FileType.SYMBOLIC_LINK); + } + } + catch (Error e) { + log_error (e.message); + } + + return false; } public bool file_delete(string file_path, Gtk.Window? window = null, out string error_msg = null){ @@ -755,14 +835,14 @@ log_debug(cmd); - int status = exec_sync(cmd); + string std_out, std_err; + int status = exec_sync(cmd, out std_out, out std_err); cmd = "stat --printf '%%h' '%s'".printf( escape_single_quote(test_file)); log_debug(cmd); - string std_out, std_err; status = exec_sync(cmd, out std_out, out std_err); log_debug("stdout: %s".printf(std_out)); diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/TeeJee.Logging.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/TeeJee.Logging.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/TeeJee.Logging.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/TeeJee.Logging.vala 2018-01-11 12:49:20.000000000 +0000 @@ -32,35 +32,40 @@ public string err_log; public bool LOG_ENABLE = true; public bool LOG_TIMESTAMP = false; - public bool LOG_COLORS = false; + public bool LOG_COLORS = true; public bool LOG_DEBUG = false; public bool LOG_TRACE = false; public bool LOG_COMMANDS = false; - public void log_msg (string message, bool highlight = false){ + public void log_msg (string message, bool highlight = false, bool is_warning = false){ if (!LOG_ENABLE) { return; } string msg = ""; - if (highlight && LOG_COLORS){ - msg += "\033[1;38;5;34m"; + if (LOG_COLORS){ + if (highlight){ + msg += "\033[1;38;5;34m"; + } + else if (is_warning){ + msg += "\033[1;38;5;93m"; + } } if (LOG_TIMESTAMP){ msg += "[" + timestamp(true) + "] "; } + if (is_warning){ + msg += "W: "; + } + msg += message; - if (highlight && LOG_COLORS){ + if (LOG_COLORS){ msg += "\033[0m"; } - if (highlight){ - msg += " %s".printf(string.nfill(20, '-')); - } - msg += "\n"; stdout.printf (msg); @@ -76,13 +81,13 @@ } } - public void log_error (string message, bool highlight = false, bool is_warning = false){ + public void log_error(string message){ if (!LOG_ENABLE) { return; } string msg = ""; - if (highlight && LOG_COLORS){ + if (LOG_COLORS){ msg += "\033[1;38;5;160m"; } @@ -90,27 +95,27 @@ msg += "[" + timestamp(true) + "] "; } - string prefix = (is_warning) ? _("W") : _("E"); + msg += "E: "; - msg += prefix + ": " + message; + msg += message; - if (highlight && LOG_COLORS){ + if (LOG_COLORS){ msg += "\033[0m"; } msg += "\n"; - stderr.printf (msg); + stderr.printf(msg); stderr.flush(); try { - string str = "[%s] %s: %s\n".printf(timestamp(), prefix, message); + string str = "[%s] E: %s\n".printf(timestamp(), message); if (dos_log != null){ dos_log.put_string (str); } - if ((err_log != null) && !is_warning){ + if (err_log != null){ err_log += "%s\n".printf(message); } } @@ -119,8 +124,8 @@ } } - public void log_warning (string message, bool highlight = false, bool is_warning = false){ - log_error(message, highlight, true); + public void log_warning (string message){ + log_msg(message, true, true); } public void log_debug (string message, bool highlight = false){ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/TeeJee.Process.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/TeeJee.Process.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/TeeJee.Process.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/TeeJee.Process.vala 2018-01-11 12:49:20.000000000 +0000 @@ -55,7 +55,7 @@ return temp; } - public int exec_sync (string cmd, out string? std_out = null, out string? std_err = null){ + public int exec_sync (string cmd, out string? std_out, out string? std_err){ /* Executes single command synchronously. * Pipes and multiple commands are not supported. diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/TeeJee.System.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/TeeJee.System.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/TeeJee.System.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/TeeJee.System.vala 2018-01-11 12:49:20.000000000 +0000 @@ -60,8 +60,6 @@ // returns actual user id of current user (even for applications executed with sudo and pkexec) - //int user_id = -1; - string pkexec_uid = GLib.Environment.get_variable("PKEXEC_UID"); if (pkexec_uid != null){ diff -Nru polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/TrashCan.vala polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/TrashCan.vala --- polo-file-manager-17.10~28~ubuntu16.04.1/src/Utility/TrashCan.vala 2017-10-06 16:40:34.000000000 +0000 +++ polo-file-manager-18.1~59~ubuntu16.04.1/src/Utility/TrashCan.vala 2018-01-11 12:49:20.000000000 +0000 @@ -286,10 +286,17 @@ } public static bool empty_trash(){ + if (cmd_exists("gvfs-trash")){ - int status = exec_sync("gvfs-trash --empty"); + + string cmd = "gvfs-trash --empty"; + + string std_out, std_err; + int status = exec_sync(cmd, out std_out, out std_err); + return (status == 0); } + return false; } }