diff -Nru gnome-disk-utility-3.36.1/debian/changelog gnome-disk-utility-3.36.3/debian/changelog --- gnome-disk-utility-3.36.1/debian/changelog 2020-03-24 20:01:10.000000000 +0000 +++ gnome-disk-utility-3.36.3/debian/changelog 2021-04-06 13:36:32.000000000 +0000 @@ -1,3 +1,9 @@ +gnome-disk-utility (3.36.3-0ubuntu1) focal; urgency=medium + + * New stable version (lp: #1922731) + + -- Sebastien Bacher Tue, 06 Apr 2021 15:36:32 +0200 + gnome-disk-utility (3.36.1-1ubuntu1) focal; urgency=medium * Sync with Debian. Remaining change: diff -Nru gnome-disk-utility-3.36.1/flatpak/org.gnome.DiskUtility.json gnome-disk-utility-3.36.3/flatpak/org.gnome.DiskUtility.json --- gnome-disk-utility-3.36.1/flatpak/org.gnome.DiskUtility.json 2020-03-21 17:17:09.254772000 +0000 +++ gnome-disk-utility-3.36.3/flatpak/org.gnome.DiskUtility.json 2020-07-19 22:00:00.564319600 +0000 @@ -140,7 +140,7 @@ "sources" : [ { "type" : "archive", - "url" : "https://www.mpfr.org/mpfr-current/mpfr-4.0.2.tar.xz", + "url" : "https://www.mpfr.org/mpfr-4.0.2/mpfr-4.0.2.tar.xz", "sha256": "1d3be708604eae0e42d578ba93b390c2a145f17743a744d8f3f8c2ad5855a38a" } ] @@ -220,6 +220,7 @@ { "name" : "polkit", "config-opts" : [ + "--disable-polkitd", "--enable-libelogind=no", "--enable-libsystemd-login=no", "--disable-introspection", @@ -227,11 +228,21 @@ "--disable-test", "--with-systemdsystemunitdir=no" ], + "rm-configure" : true, "sources" : [ { - "type" : "git", - "url" : "https://gitlab.freedesktop.org/polkit/polkit.git", - "branch" : "master" + "type" : "archive", + "url" : "https://www.freedesktop.org/software/polkit/releases/polkit-0.116.tar.gz", + "sha256" : "88170c9e711e8db305a12fdb8234fac5706c61969b94e084d0f117d8ec5d34b1" + }, + { + "type" : "patch", + "path" : "polkit-build-Add-option-to-build-without-polkitd.patch" + }, + { + "type" : "file", + "path" : "polkit-autogen", + "dest-filename" : "autogen.sh" } ] }, @@ -246,6 +257,23 @@ } ] }, + { + "name" : "libcanberra", + "buildsystem" : "autotools", + "config-opts" : [ + "--enable-gtk3", + "--disable-gtk", + "--disable-oss", + "--with-systemdsystemunitdir=no" + ], + "sources" : [ + { + "type" : "archive", + "url" : "http://0pointer.de/lennart/projects/libcanberra/libcanberra-0.30.tar.xz", + "sha256" : "c2b671e67e0c288a69fc33dc1b6f1b534d07882c2aceed37004bf48c601afa72" + } + ] + }, { "name" : "udisks2", "buildsystem" : "autotools", diff -Nru gnome-disk-utility-3.36.1/flatpak/polkit-autogen gnome-disk-utility-3.36.3/flatpak/polkit-autogen --- gnome-disk-utility-3.36.1/flatpak/polkit-autogen 1970-01-01 00:00:00.000000000 +0000 +++ gnome-disk-utility-3.36.3/flatpak/polkit-autogen 2020-07-19 22:00:00.564319600 +0000 @@ -0,0 +1,4 @@ +#!/bin/sh + +gtkdocize --flavour no-tmpl +autoreconf -if diff -Nru gnome-disk-utility-3.36.1/flatpak/polkit-build-Add-option-to-build-without-polkitd.patch gnome-disk-utility-3.36.3/flatpak/polkit-build-Add-option-to-build-without-polkitd.patch --- gnome-disk-utility-3.36.1/flatpak/polkit-build-Add-option-to-build-without-polkitd.patch 1970-01-01 00:00:00.000000000 +0000 +++ gnome-disk-utility-3.36.3/flatpak/polkit-build-Add-option-to-build-without-polkitd.patch 2020-07-19 22:00:00.564319600 +0000 @@ -0,0 +1,132 @@ +From 1073a44277316348d40d86ecec908f1d4812f360 Mon Sep 17 00:00:00 2001 +From: Christian Hergert +Date: Mon, 27 May 2019 11:49:09 -0700 +Subject: [PATCH] flatpak: make polkit suitable for use within flatpak + +This is based on patches from Patrick Griffis with additional fixes +to allow us to disable use of PAM within Flaptak. +--- + configure.ac | 20 ++++++++++++++++---- + src/Makefile.am | 6 +++++- + src/polkitagent/Makefile.am | 5 +++++ + test/Makefile.am | 6 +++++- + 4 files changed, 31 insertions(+), 6 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 5cedb4e..729d78d 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -79,11 +79,13 @@ PKG_CHECK_MODULES(GLIB, [gmodule-2.0 gio-unix-2.0 >= 2.30.0]) + AC_SUBST(GLIB_CFLAGS) + AC_SUBST(GLIB_LIBS) + +-PKG_CHECK_MODULES(LIBJS, [mozjs-60]) ++AS_IF([test x${enable_polkitd} = yes], [ ++ PKG_CHECK_MODULES(LIBJS, [mozjs-60]) + +-AC_SUBST(LIBJS_CFLAGS) +-AC_SUBST(LIBJS_CXXFLAGS) +-AC_SUBST(LIBJS_LIBS) ++ AC_SUBST(LIBJS_CFLAGS) ++ AC_SUBST(LIBJS_CXXFLAGS) ++ AC_SUBST(LIBJS_LIBS) ++]) + + EXPAT_LIB="" + AC_ARG_WITH(expat, [ --with-expat= Use expat from here], +@@ -236,6 +238,15 @@ if test "x$with_systemdsystemunitdir" != "xno"; then + fi + AM_CONDITIONAL(HAVE_SYSTEMD, [test -n "$systemdsystemunitdir"]) + ++dnl --------------------------------------------------------------------------- ++dnl - Disable polkitd when using library alone ++dnl --------------------------------------------------------------------------- ++ ++AC_ARG_ENABLE([polkitd], ++ [AS_HELP_STRING([--disable-polkitd], [Do not build polkitd])], ++ [enable_polkitd=$enableval], [enable_polkitd=yes]) ++AM_CONDITIONAL(BUILD_POLKITD, [test x${enable_polkitd} = yes]) ++ + dnl --------------------------------------------------------------------------- + dnl - User for running polkitd + dnl --------------------------------------------------------------------------- +@@ -579,6 +590,7 @@ echo " + Session tracking: ${SESSION_TRACKING} + PAM support: ${have_pam} + systemdsystemunitdir: ${systemdsystemunitdir} ++ polkitd: ${enable_polkitd} + polkitd user: ${POLKITD_USER}" + + if test "$have_pam" = yes ; then +diff --git a/src/Makefile.am b/src/Makefile.am +index 09fc7b3..c6fe91b 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -1,5 +1,9 @@ + +-SUBDIRS = polkit polkitbackend polkitagent programs ++SUBDIRS = polkit polkitagent programs ++ ++if BUILD_POLKITD ++SUBDIRS += polkitbackend ++endif + + if BUILD_EXAMPLES + SUBDIRS += examples +diff --git a/src/polkitagent/Makefile.am b/src/polkitagent/Makefile.am +index 49720db..633f9d4 100644 +--- a/src/polkitagent/Makefile.am ++++ b/src/polkitagent/Makefile.am +@@ -79,6 +79,7 @@ libpolkit_agent_1_la_LIBADD = \ + + libpolkit_agent_1_la_LDFLAGS = -export-symbols-regex '(^polkit_.*)' + ++if !POLKIT_AUTHFW_NONE + libprivdir = $(prefix)/lib/polkit-1 + libpriv_PROGRAMS = polkit-agent-helper-1 + +@@ -113,6 +114,8 @@ polkit_agent_helper_1_LDFLAGS = \ + $(AM_LDFLAGS) \ + $(NULL) + ++endif # !POLKIT_AUTHFW_NONE ++ + if HAVE_INTROSPECTION + + girdir = $(INTROSPECTION_GIRDIR) +@@ -142,6 +145,7 @@ include $(INTROSPECTION_MAKEFILE) + + endif # HAVE_INTROSPECTION + ++if !POLKIT_AUTHFW_NONE + # polkit-agent-helper-1 need to be setuid root because it's used to + # authenticate not only the invoking user, but possibly also root + # and/or other users. +@@ -149,6 +153,7 @@ endif # HAVE_INTROSPECTION + install-data-hook: + -chown root $(DESTDIR)$(libprivdir)/polkit-agent-helper-1 + -chmod 4755 $(DESTDIR)$(libprivdir)/polkit-agent-helper-1 ++endif # !POLKIT_AUTHFW_NONE + + EXTRA_DIST = polkitagentmarshal.list polkitagentenumtypes.h.template polkitagentenumtypes.c.template + CLEANFILES = $(gir_DATA) $(typelibs_DATA) +diff --git a/test/Makefile.am b/test/Makefile.am +index 59d0680..d43b0fe 100644 +--- a/test/Makefile.am ++++ b/test/Makefile.am +@@ -1,7 +1,11 @@ + +-SUBDIRS = mocklibc . polkit polkitbackend ++SUBDIRS = mocklibc . polkit + AM_CFLAGS = $(GLIB_CFLAGS) + ++if BUILD_POLKITD ++SUBDIRS += polkitbackend ++endif ++ + noinst_LTLIBRARIES = libpolkit-test-helper.la + libpolkit_test_helper_la_SOURCES = polkittesthelper.c polkittesthelper.h + libpolkit_test_helper_la_LIBADD = $(GLIB_LIBS) +-- +2.21.0 + diff -Nru gnome-disk-utility-3.36.1/meson.build gnome-disk-utility-3.36.3/meson.build --- gnome-disk-utility-3.36.1/meson.build 2020-03-21 17:17:09.254772000 +0000 +++ gnome-disk-utility-3.36.3/meson.build 2020-07-19 22:00:00.564319600 +0000 @@ -1,6 +1,6 @@ project( 'gnome-disk-utility', 'c', - version: '3.36.1', + version: '3.36.3', license: 'GPL2.0', default_options: 'buildtype=debugoptimized', meson_version: '>= 0.50.0', diff -Nru gnome-disk-utility-3.36.1/NEWS gnome-disk-utility-3.36.3/NEWS --- gnome-disk-utility-3.36.1/NEWS 2020-03-21 17:17:09.250772000 +0000 +++ gnome-disk-utility-3.36.3/NEWS 2020-07-19 22:00:00.552319500 +0000 @@ -1,3 +1,12 @@ +3.36.3 - July 19, 2020 +====================== + +Kai Lüke: +* Fix creating partitions by using special parameter when requesting the maximal partition size + +Updated translations: +* Baurzhan Muftakhidinov (kk), Cheng-Chia Tseng (zh_TW), Dušan Kazik (sk), Rūdolfs Mazurs (lv) + 3.36.1 - March 21, 2020 ======================= diff -Nru gnome-disk-utility-3.36.1/po/kk.po gnome-disk-utility-3.36.3/po/kk.po --- gnome-disk-utility-3.36.1/po/kk.po 2020-03-21 17:17:09.318772600 +0000 +++ gnome-disk-utility-3.36.3/po/kk.po 2020-07-19 22:00:00.620319600 +0000 @@ -1,15 +1,15 @@ # Kazakh translation for gnome-disk-utility. # Copyright (C) 2010 gnome-disk-utility's COPYRIGHT HOLDER # This file is distributed under the same license as the gnome-disk-utility package. -# Baurzhan Muftakhidinov , 2010-2016. +# Baurzhan Muftakhidinov , 2010-2020. # msgid "" msgstr "" "Project-Id-Version: gnome-disk-utility master\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-disk-utility/" "issues\n" -"POT-Creation-Date: 2019-01-15 19:56+0000\n" -"PO-Revision-Date: 2019-02-16 17:22+0500\n" +"POT-Creation-Date: 2020-03-31 16:26+0000\n" +"PO-Revision-Date: 2020-06-25 12:31+0500\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh \n" "Language: kk\n" @@ -17,7 +17,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.2.1\n" +"X-Generator: Poedit 2.3.1\n" #: data/gnome-disk-image-mounter.desktop.in:3 src/disk-image-mounter/main.c:48 msgid "Disk Image Mounter" @@ -27,12 +27,6 @@ msgid "Mount Disk Images" msgstr "Диск бейнелерін тіркеу" -#. Translators: Do NOT translate or transliterate this text (this is an icon file name)! -#: data/gnome-disk-image-mounter.desktop.in:7 -#: data/gnome-disk-image-writer.desktop.in:7 -msgid "drive-removable-media" -msgstr "drive-removable-media" - #: data/gnome-disk-image-writer.desktop.in:3 msgid "Disk Image Writer" msgstr "Диск бейнелерін жазушы" @@ -85,8 +79,8 @@ msgid "The GNOME Project" msgstr "GNOME жобасы" -#: data/org.gnome.DiskUtility.desktop.in:3 src/disks/gduwindow.c:1128 -#: src/disks/ui/about-dialog.ui:11 +#: data/org.gnome.DiskUtility.desktop.in:3 src/disks/gduwindow.c:1125 +#: src/disks/ui/about-dialog.ui:11 src/disks/ui/headerbar.ui:10 msgid "Disks" msgstr "Дисктер" @@ -104,12 +98,6 @@ "restore;benchmark;raid;luks;encryption;S.M.A.R.T.;smart;диск;жетек;том;бөлім;" "қатты диск;сд;бейне;қор көшірме;қалпына келтіру;сынау;шифрлеу;смарт;" -#. Translators: Do NOT translate or transliterate this text (this is an icon file name)! -#: data/org.gnome.DiskUtility.desktop.in:9 -#| msgid "Disk Utility" -msgid "org.gnome.DiskUtility" -msgstr "org.gnome.DiskUtility" - #: src/disk-image-mounter/main.c:46 msgid "An error occurred" msgstr "Қате кетті" @@ -124,7 +112,7 @@ #: src/disk-image-mounter/main.c:85 src/disks/gducreatediskimagedialog.c:927 #: src/disks/gducreateformatdialog.c:173 src/disks/gducreateformatdialog.c:455 -#: src/disks/gdunewdiskimagedialog.c:329 src/disks/gduwindow.c:828 +#: src/disks/gdunewdiskimagedialog.c:329 src/disks/gduwindow.c:825 msgid "_Cancel" msgstr "Ба_с тарту" @@ -265,7 +253,7 @@ #. #: src/disks/gduatasmartdialog.c:177 msgid "Start/Stop Count" -msgstr "" +msgstr "Бастау/тоқтату саны" #: src/disks/gduatasmartdialog.c:178 msgid "Number of spindle start/stop cycles" @@ -367,7 +355,7 @@ #. #: src/disks/gduatasmartdialog.c:251 msgid "Soft read error rate" -msgstr "" +msgstr "Жұмсақ оқу қатесі" #: src/disks/gduatasmartdialog.c:253 msgid "Frequency of errors while reading from the disk" @@ -652,11 +640,11 @@ #. #: src/disks/gduatasmartdialog.c:462 msgid "Loaded Hours" -msgstr "" +msgstr "Жүктелген сағаттар" #: src/disks/gduatasmartdialog.c:463 msgid "Number of hours in general operational state" -msgstr "" +msgstr "Жалпы пайдаланудағы сағат саны" #. Translators: SMART attribute, see http://smartmontools.sourceforge.net/doc.html #. * or the next string for a longer explanation. @@ -865,17 +853,17 @@ #: src/disks/gduatasmartdialog.c:787 msgctxt "smart-self-test-result" msgid "Last self-test was aborted" -msgstr "" +msgstr "Соңғы өзін-өзі сынау доғарылды" #: src/disks/gduatasmartdialog.c:791 msgctxt "smart-self-test-result" msgid "Last self-test was interrupted" -msgstr "" +msgstr "Соңғы өзін-өзі сынау үзілді" #: src/disks/gduatasmartdialog.c:795 msgctxt "smart-self-test-result" msgid "Last self-test did not complete" -msgstr "" +msgstr "Соңғы өзін-өзі сынау аяқталмады" #: src/disks/gduatasmartdialog.c:799 msgctxt "smart-self-test-result" @@ -886,25 +874,25 @@ #: src/disks/gduatasmartdialog.c:804 msgctxt "smart-self-test-result" msgid "Last self-test failed (electrical)" -msgstr "" +msgstr "Соңғы өзін-өзі сынау сәтсіз аяқталды (электр)" #. Translators: shown when the last self-test failed and the problem is with the servo subsystem - see http://en.wikipedia.org/wiki/Servomechanism #: src/disks/gduatasmartdialog.c:809 msgctxt "smart-self-test-result" msgid "Last self-test failed (servo)" -msgstr "" +msgstr "Соңғы өзін-өзі сынау сәтсіз аяқталды (серво)" #. Translators: shown when the last self-test failed and the problem is with the reading subsystem - #: src/disks/gduatasmartdialog.c:814 msgctxt "smart-self-test-result" msgid "Last self-test failed (read)" -msgstr "" +msgstr "Соңғы өзін-өзі сынау сәтсіз аяқталды (оқу)" #. Translators: shown when the last self-test failed and the disk is suspected of having handling damage (e.g. physical damage to the hard disk) #: src/disks/gduatasmartdialog.c:819 msgctxt "smart-self-test-result" msgid "Last self-test failed (handling)" -msgstr "" +msgstr "Соңғы өзін-өзі сынау сәтсіз аяқталды (өңдеу)" #. Translators: shown when a self-test is in progress. The first %d is the percentage of the test remaining. #: src/disks/gduatasmartdialog.c:824 @@ -949,7 +937,7 @@ #, c-format msgid "Disk is OK, one failing attribute is failing" msgid_plural "Disk is OK, %d attributes are failing" -msgstr[0] "" +msgstr[0] "Диск ОК, %d атрибут істен шықты" #: src/disks/gduatasmartdialog.c:1002 #, c-format @@ -961,7 +949,7 @@ #, c-format msgid "Disk is OK, one attribute failed in the past" msgid_plural "Disk is OK, %d attributes failed in the past" -msgstr[0] "" +msgstr[0] "Диск ОК, %d атрибут бұрында істен шықты" #. Otherwise, it's all honky dory #: src/disks/gduatasmartdialog.c:1022 @@ -979,11 +967,11 @@ #: src/disks/gduatasmartdialog.c:1121 msgid "Pre-Fail" -msgstr "" +msgstr "Істен шығудың алдында" #: src/disks/gduatasmartdialog.c:1123 msgid "Old-Age" -msgstr "" +msgstr "Жасы үлкен" #: src/disks/gduatasmartdialog.c:1126 msgid "Online" @@ -1063,7 +1051,7 @@ #. Translators: This string is used as the column title in the treeview for the assessment of the attribute #: src/disks/gduatasmartdialog.c:1628 src/disks/ui/disks.ui:303 msgid "Assessment" -msgstr "Бағалау:" +msgstr "Бағалау" #. Translators: This is used in the benchmark graph - %d is megabytes per second #: src/disks/gdubenchmarkdialog.c:332 @@ -1350,7 +1338,7 @@ #: src/disks/gducreatediskimagedialog.c:762 msgid "Error allocating space for disk image file: " -msgstr "Диск бейнесінің файл үшін орынды бөлу қатесі:" +msgstr "Диск бейнесінің файл үшін орынды бөлу қатесі: " #: src/disks/gducreatediskimagedialog.c:922 #: src/disks/gdunewdiskimagedialog.c:324 @@ -1463,7 +1451,7 @@ msgid "No Filesystem" msgstr "Файлдық жүйесі жоқ" -#: src/disks/gducreateotherpage.c:207 +#: src/disks/gducreateotherpage.c:203 #, c-format msgid "The utility %s is missing." msgstr "%s утилитасы жоқ болып тұр." @@ -1531,7 +1519,7 @@ #: src/disks/gdudisksettingsdialog.c:307 msgctxt "standby-value" msgid "Vendor-defined" -msgstr "" +msgstr "Жабдықтаушы анықтаған" #: src/disks/gdudisksettingsdialog.c:311 msgctxt "standby-value" @@ -1945,7 +1933,7 @@ msgid "_Restore" msgstr "Қал_пына келтіру" -#: src/disks/gduunlockdialog.c:112 src/disks/ui/unlock-device-dialog.ui:218 +#: src/disks/gduunlockdialog.c:112 src/disks/ui/unlock-device-dialog.ui:219 msgid "Select a Keyfile" msgstr "Кілттік файлды таңдау" @@ -1956,7 +1944,7 @@ #: src/disks/gduunlockdialog.c:224 #, c-format msgid "Invalid PIM" -msgstr "" +msgstr "PIM жарамсыз" #: src/disks/gduunlockdialog.c:261 msgid "The encryption passphrase was retrieved from the keyring" @@ -1970,7 +1958,7 @@ msgid "Volumes Grid" msgstr "Томдар торы" -#: src/disks/gduvolumegrid.c:566 src/disks/gduwindow.c:2057 +#: src/disks/gduvolumegrid.c:566 src/disks/gduwindow.c:2054 msgid "No Media" msgstr "Тасушы жоқ" @@ -2012,37 +2000,37 @@ msgid "Free Space" msgstr "Бос орын" -#: src/disks/gduwindow.c:652 +#: src/disks/gduwindow.c:649 msgid "Error deleting loop device" msgstr "" -#: src/disks/gduwindow.c:752 src/disks/gduwindow.c:795 +#: src/disks/gduwindow.c:749 src/disks/gduwindow.c:792 msgid "Error attaching disk image" msgstr "Диск бейнесін жалғау қатесі" -#: src/disks/gduwindow.c:825 +#: src/disks/gduwindow.c:822 msgid "Select Disk Image to Attach" msgstr "Жалғау үшін диск бейнесін таңдаңыз" -#: src/disks/gduwindow.c:829 +#: src/disks/gduwindow.c:826 msgid "_Attach" msgstr "Ж_алғау" #. set file types #. allow_compressed #. Add a RO check button that defaults to RO -#: src/disks/gduwindow.c:836 +#: src/disks/gduwindow.c:833 msgid "Set up _read-only loop device" msgstr "" -#: src/disks/gduwindow.c:837 +#: src/disks/gduwindow.c:834 msgid "" "If checked, the loop device will be read-only. This is useful if you don’t " "want the underlying file to be modified" msgstr "" #. Translators: Shown for a read-only device. The %s is the device file, e.g. /dev/sdb1 -#: src/disks/gduwindow.c:1700 +#: src/disks/gduwindow.c:1697 #, c-format msgid "%s (Read-Only)" msgstr "%s (Тек оқу үшін)" @@ -2051,7 +2039,7 @@ #. * The first %s is the estimated amount of time remaining (ex. "1 minute" or "5 minutes"). #. * The second %s is the average amount of bytes transfered per second (ex. "8.9 MB"). #. -#: src/disks/gduwindow.c:1738 +#: src/disks/gduwindow.c:1735 #, c-format msgctxt "job-remaining-with-rate" msgid "%s remaining (%s/sec)" @@ -2060,7 +2048,7 @@ #. Translators: Used for job progress. #. * The first %s is the estimated amount of time remaining (ex. "1 minute" or "5 minutes"). #. -#: src/disks/gduwindow.c:1746 +#: src/disks/gduwindow.c:1743 #, c-format msgctxt "job-remaining" msgid "%s remaining" @@ -2071,7 +2059,7 @@ #. * The second %s is the total amount of bytes to process (ex. "8.5 GB"). #. * The third %s is the estimated amount of time remaining including speed (if known) (ex. "1 minute remaining", "5 minutes remaining (42.3 MB/s)", "Less than a minute remaining"). #. -#: src/disks/gduwindow.c:1761 +#: src/disks/gduwindow.c:1758 #, c-format msgid "%s of %s — %s" msgstr "%s дайын, барлығы %s — %s" @@ -2080,17 +2068,17 @@ #. * The %s is the job description (e.g. "Erasing Device"). #. * The %f is the completion percentage (between 0.0 and 100.0). #. -#: src/disks/gduwindow.c:1886 +#: src/disks/gduwindow.c:1883 #, c-format msgid "%s: %2.1f%%" msgstr "%s: %2.1f%%" -#: src/disks/gduwindow.c:1966 src/disks/gduwindow.c:2345 +#: src/disks/gduwindow.c:1963 src/disks/gduwindow.c:2342 msgid "Block device is empty" msgstr "Блоктық құрылғы бос" #. Translators: Shown for unknown partitioning type. The first %s is the low-level type. -#: src/disks/gduwindow.c:1989 +#: src/disks/gduwindow.c:1986 #, c-format msgctxt "partitioning" msgid "Unknown (%s)" @@ -2099,11 +2087,11 @@ #. Translators: Shown in "Location" when drive is connected to another seat than where #. * our application is running. #. -#: src/disks/gduwindow.c:2148 +#: src/disks/gduwindow.c:2145 msgid "Connected to another seat" -msgstr "" +msgstr "Басқа орынға қосылған" -#: src/disks/gduwindow.c:2289 +#: src/disks/gduwindow.c:2286 msgid "Loop device is empty" msgstr "" @@ -2113,61 +2101,61 @@ #. * The second %s is a short string with the space free (e.g. '43 GB'). #. * The %f is the percentage in use (e.g. 62.2). #. -#: src/disks/gduwindow.c:2506 +#: src/disks/gduwindow.c:2503 #, c-format msgid "%s — %s free (%.1f%% full)" msgstr "%s — %s бос (%.1f%% full)" -#: src/disks/gduwindow.c:2536 +#: src/disks/gduwindow.c:2533 msgctxt "partition type" msgid "Unknown" msgstr "Белгісіз" #. Translators: Use for mount point '/' simply because '/' is too small to hit as a hyperlink #. -#: src/disks/gduwindow.c:2574 +#: src/disks/gduwindow.c:2571 msgctxt "volume-content-fs" msgid "Filesystem Root" msgstr "Файлдық жүйе түбірі" #. Translators: Shown as in-use part of 'Contents'. The first %s is the mount point, e.g. /media/foobar -#: src/disks/gduwindow.c:2582 +#: src/disks/gduwindow.c:2579 #, c-format msgctxt "volume-content-fs" msgid "Mounted at %s" msgstr "Тіркелген жері %s" #. Translators: Shown when the device is not mounted next to the "In Use" label -#: src/disks/gduwindow.c:2588 +#: src/disks/gduwindow.c:2585 msgctxt "volume-content-fs" msgid "Not Mounted" msgstr "Тіркелмеген" #. Translators: Shown as in-use part of 'Contents' if the swap device is in use -#: src/disks/gduwindow.c:2611 +#: src/disks/gduwindow.c:2608 msgctxt "volume-content-swap" msgid "Active" msgstr "Белсенді" #. Translators: Shown as in-use part of 'Contents' if the swap device is not in use -#: src/disks/gduwindow.c:2617 +#: src/disks/gduwindow.c:2614 msgctxt "volume-content-swap" msgid "Not Active" msgstr "Белсенді емес" #. Translators: Shown as in-use part of 'Contents' if the encrypted device is unlocked -#: src/disks/gduwindow.c:2632 +#: src/disks/gduwindow.c:2629 msgctxt "volume-content-crypto" msgid "Unlocked" msgstr "Босатылған" #. Translators: Shown as in-use part of 'Contents' if the encrypted device is unlocked -#: src/disks/gduwindow.c:2638 +#: src/disks/gduwindow.c:2635 msgctxt "volume-content-crypto" msgid "Locked" msgstr "Бұғатталған" -#: src/disks/gduwindow.c:2652 +#: src/disks/gduwindow.c:2649 msgctxt "volume-contents-msdos-ext" msgid "Extended Partition" msgstr "Кеңейтілген бөлім" @@ -2176,147 +2164,150 @@ #. * The first %s is the usual contents string e.g. "Swapspace" or "Ext4 (version 1.0)". #. * The second %s is either "Mounted at /path/to/fs", "Not Mounted, "Active", "Not Active", "Unlocked" or "Locked". #. -#: src/disks/gduwindow.c:2672 +#: src/disks/gduwindow.c:2669 #, c-format msgctxt "volume-contents-combiner" msgid "%s — %s" msgstr "%s — %s" #. Translators: used to convey free space for partitions -#: src/disks/gduwindow.c:2796 +#: src/disks/gduwindow.c:2789 msgid "Unallocated Space" msgstr "Бөлінбеген орын" -#: src/disks/gduwindow.c:2988 +#: src/disks/gduwindow.c:2979 msgid "Error while repairing filesystem" msgstr "Файлдық жүйені қалпына келтіру кезіндегі қате" -#: src/disks/gduwindow.c:3015 +#: src/disks/gduwindow.c:3006 msgid "Repair successful" msgstr "Қалпына келтіру сәтті аяқталды" -#: src/disks/gduwindow.c:3015 +#: src/disks/gduwindow.c:3006 msgid "Repair failed" msgstr "Қалпына келтіру сәтсіз аяқталды" -#: src/disks/gduwindow.c:3018 +#: src/disks/gduwindow.c:3009 #, c-format msgid "Filesystem %s on %s has been repaired." -msgstr "" +msgstr "%s файл жүйесі (%s жерінде) жөнделді." #. show as result and not error message, because it's not a malfunction of GDU -#: src/disks/gduwindow.c:3024 +#: src/disks/gduwindow.c:3015 #, c-format msgid "Filesystem %s on %s could not be repaired." -msgstr "" +msgstr "%s файл жүйесін (%s жерінде) жөндеу мүмкін емес." -#: src/disks/gduwindow.c:3077 +#: src/disks/gduwindow.c:3068 msgid "Confirm Repair" msgstr "Қалпына келтіруді растау" -#: src/disks/gduwindow.c:3080 +#: src/disks/gduwindow.c:3071 msgid "" "A filesystem repair is not always possible and can cause data loss. Consider " "backing it up first in order to use forensic recovery tools that retrieve " -"lost files. Depending on the amount of data this operation takes longer time." +"lost files. The operation may take a long time, especially if the partition " +"contains a lot of data." msgstr "" -#: src/disks/gduwindow.c:3108 +#: src/disks/gduwindow.c:3099 msgid "Error while checking filesystem" msgstr "Файлдық жүйені тексеру кезіндегі қатесі" -#: src/disks/gduwindow.c:3135 +#: src/disks/gduwindow.c:3126 msgid "Filesystem intact" msgstr "Файлдық жүйе өзгертілмеген" -#: src/disks/gduwindow.c:3135 +#: src/disks/gduwindow.c:3126 msgid "Filesystem damaged" msgstr "Файлдық жүйе зақымдалған" -#: src/disks/gduwindow.c:3138 +#: src/disks/gduwindow.c:3129 #, c-format msgid "Filesystem %s on %s is undamaged." -msgstr "" +msgstr "%s файл жүйесі (%s жерінде) зақымдалмаған." #. show as result and not error message, because it's not a malfunction of GDU -#: src/disks/gduwindow.c:3144 +#: src/disks/gduwindow.c:3135 #, c-format msgid "Filesystem %s on %s needs repairing." -msgstr "" +msgstr "%s файл жүйесі (%s жерінде) жөндеуді талап етеді." -#: src/disks/gduwindow.c:3195 +#: src/disks/gduwindow.c:3186 msgid "Confirm Check" msgstr "Тексеруді растау" -#: src/disks/gduwindow.c:3198 -msgid "Depending on the amount of data the filesystem check takes longer time." +#: src/disks/gduwindow.c:3189 +msgid "" +"The check may take a long time, especially if the partition contains a lot " +"of data." msgstr "" -#: src/disks/gduwindow.c:3437 +#: src/disks/gduwindow.c:3426 msgid "An error occurred when trying to put the drive into standby mode" msgstr "" -#: src/disks/gduwindow.c:3484 +#: src/disks/gduwindow.c:3473 msgid "An error occurred when trying to wake up the drive from standby mode" msgstr "" -#: src/disks/gduwindow.c:3530 +#: src/disks/gduwindow.c:3519 msgid "Error powering off drive" msgstr "Жетекті сөндіру қатесі" #. Translators: Heading for powering off a device with multiple drives -#: src/disks/gduwindow.c:3582 +#: src/disks/gduwindow.c:3571 msgid "Are you sure you want to power off the drives?" msgstr "Жетектерді сөндіруді шынымен қалайсыз ба?" #. Translators: Message for powering off a device with multiple drives -#: src/disks/gduwindow.c:3584 +#: src/disks/gduwindow.c:3573 msgid "" "This operation will prepare the system for the following drives to be " "powered down and removed." msgstr "" -#: src/disks/gduwindow.c:3588 src/disks/ui/drive-menu.ui:44 +#: src/disks/gduwindow.c:3577 src/disks/ui/drive-menu.ui:44 msgid "_Power Off" msgstr "_Сөндіру" -#: src/disks/gduwindow.c:3668 +#: src/disks/gduwindow.c:3657 msgid "Error mounting filesystem" msgstr "Файлдық жүйені тіркеу қатесі" -#: src/disks/gduwindow.c:3754 +#: src/disks/gduwindow.c:3743 msgid "Error deleting partition" msgstr "Бөлімді өшіру қатесі" -#: src/disks/gduwindow.c:3791 +#: src/disks/gduwindow.c:3780 msgid "Are you sure you want to delete the partition?" msgstr "Бөлімді өшіруді шынымен қалайсыз ба?" -#: src/disks/gduwindow.c:3792 +#: src/disks/gduwindow.c:3781 msgid "All data on the partition will be lost" msgstr "Бөлімдегі барлық ақпарат жоғалады" -#: src/disks/gduwindow.c:3793 +#: src/disks/gduwindow.c:3782 msgid "_Delete" msgstr "Ө_шіру" -#: src/disks/gduwindow.c:3824 +#: src/disks/gduwindow.c:3813 msgid "Error ejecting media" msgstr "Тасушыны шығару қатесі" -#: src/disks/gduwindow.c:3907 +#: src/disks/gduwindow.c:3896 msgid "Error starting swap" msgstr "Свопты іске қосу қатесі" -#: src/disks/gduwindow.c:3944 +#: src/disks/gduwindow.c:3933 msgid "Error stopping swap" msgstr "Свопты тоқтату қатесі" -#: src/disks/gduwindow.c:3986 +#: src/disks/gduwindow.c:3975 msgid "Error setting autoclear flag" msgstr "Автотазарту жалаушасын орнату қатесі" -#: src/disks/gduwindow.c:4039 src/disks/gduwindow.c:4103 +#: src/disks/gduwindow.c:4028 src/disks/gduwindow.c:4092 msgid "Error canceling job" msgstr "Тапсырмадан бас тарту қатесі" @@ -2539,7 +2530,7 @@ msgid "Confirm the details of the current volume before proceeding." msgstr "" -#: src/disks/ui/create-confirm-page.ui:46 src/disks/ui/disks.ui:901 +#: src/disks/ui/create-confirm-page.ui:46 src/disks/ui/disks.ui:910 msgid "Device" msgstr "Құрылғы" @@ -2652,7 +2643,7 @@ #: src/disks/ui/create-partition-page.ui:112 #: src/disks/ui/new-disk-image-dialog.ui:141 src/disks/ui/resize-dialog.ui:128 msgid "kB" -msgstr "КБ" +msgstr "кБ" #: src/disks/ui/create-partition-page.ui:113 #: src/disks/ui/new-disk-image-dialog.ui:142 src/disks/ui/resize-dialog.ui:129 @@ -2701,7 +2692,7 @@ #: src/disks/ui/create-partition-page.ui:135 src/disks/ui/resize-dialog.ui:151 msgid "Free Space _Following" -msgstr "Бос орын кейінгі (МиБ):" +msgstr "Бос орын кейінгі (МиБ)" #: src/disks/ui/create-partition-page.ui:148 src/disks/ui/resize-dialog.ui:168 msgid "The free space following the partition" @@ -2858,7 +2849,7 @@ msgid "Media" msgstr "Тасушы" -#: src/disks/ui/disks.ui:341 src/disks/ui/disks.ui:1013 +#: src/disks/ui/disks.ui:341 src/disks/ui/disks.ui:1022 msgid "Job" msgstr "Тапсырма" @@ -2866,7 +2857,7 @@ msgid "Name" msgstr "Аты" -#: src/disks/ui/disks.ui:476 src/disks/ui/disks.ui:831 +#: src/disks/ui/disks.ui:476 src/disks/ui/disks.ui:840 msgid "Size" msgstr "Өлшемі" @@ -2895,48 +2886,93 @@ msgid "Mount selected partition" msgstr "Таңдалған диск бөлімін тіркеу" -#: src/disks/ui/disks.ui:705 +#: src/disks/ui/disks.ui:693 +msgctxt "Accessibility label for toolbutton-mount" +msgid "Mount" +msgstr "Тіркеу" + +#: src/disks/ui/disks.ui:706 msgid "Unmount selected partition" msgstr "Таңдалған бөлімді тіркеуден шығару" -#: src/disks/ui/disks.ui:718 +#: src/disks/ui/disks.ui:707 +msgctxt "Accessibility label for toolbutton-unmount" +msgid "Unmount" +msgstr "Тіркеуден босату" + +#: src/disks/ui/disks.ui:720 msgid "Activate selected swap partition" msgstr "Таңдалған swap бөлімін белсендіру" -#: src/disks/ui/disks.ui:731 +#: src/disks/ui/disks.ui:721 +msgctxt "Accessibility label for toolbutton-activate-swap" +msgid "Activate swap" +msgstr "Свопты белсендіру" + +#: src/disks/ui/disks.ui:734 msgid "Deactivate selected swap partition" msgstr "Таңдалған swap бөлімін белсенді емес қылу" -#: src/disks/ui/disks.ui:745 +#: src/disks/ui/disks.ui:735 +msgctxt "Accessibility label for toolbutton-deactivate-swap" +msgid "Deactivate swap" +msgstr "Свопты ажырату" + +#: src/disks/ui/disks.ui:748 msgid "Unlock selected encrypted partition" msgstr "Таңдалған шифрленген бөлімін шифрлеуден босату" -#: src/disks/ui/disks.ui:758 +#: src/disks/ui/disks.ui:749 +msgctxt "Accessibility label for toolbutton-unlock" +msgid "Unlock" +msgstr "Босату" + +#: src/disks/ui/disks.ui:762 msgid "Lock selected encrypted partition" msgstr "Таңдалған шифрленген бөлімін блоктау" -#: src/disks/ui/disks.ui:770 +#: src/disks/ui/disks.ui:763 +msgctxt "Accessibility label for toolbutton-lock" +msgid "Lock" +msgstr "Блоктау" + +#: src/disks/ui/disks.ui:776 msgid "Create partition in unallocated space" msgstr "" -#: src/disks/ui/disks.ui:783 +#: src/disks/ui/disks.ui:777 +msgctxt "Accessibility label for toolbutton-partition-create" +msgid "Create partition" +msgstr "Бөлімді жасау" + +#: src/disks/ui/disks.ui:790 msgid "Delete selected partition" msgstr "Таңдалған бөлімді жою" -#: src/disks/ui/disks.ui:796 +#: src/disks/ui/disks.ui:791 +msgctxt "Accessibility label for toolbutton-partition-delete" +msgid "Delete partition" +msgstr "Бөлімді жою" + +#: src/disks/ui/disks.ui:804 msgid "Additional partition options" msgstr "Қосымша бөлімдеу опциялары" +#: src/disks/ui/disks.ui:805 +msgctxt "Accessibility label for toolbutton-volume-menu" +msgid "Menu" +msgstr "" + #. The contents of the device, for example 'Unknown', 'FAT (32-bit version)', 'Ext4 (version 1.0)', 'Swap (version 2)' -#: src/disks/ui/disks.ui:864 +#: src/disks/ui/disks.ui:873 msgid "Contents" msgstr "Құрамасы" -#: src/disks/ui/disks.ui:938 +#: src/disks/ui/disks.ui:947 msgid "UUID" msgstr "UUID" -#: src/disks/ui/disks.ui:975 +#: src/disks/ui/disks.ui:984 msgid "Partition Type" msgstr "Бөлім түрі" @@ -3299,6 +3335,11 @@ "be moved. The minimal size is calculated according to the current content. " "Keep additional free space for the filesystem to work fast and reliably." msgstr "" +"Файл жүйесін өзгерту деректердің жоғалуына әкелуі мүмкін. Оның алдында " +"деректеріңіздің сақтық көшірмесін жасау ұсынылады. Егер көптеген деректер " +"жылжытылса, өлшемін өзгерту әрекеті ұзағырақ болады. Ең аз жаңа өлшем " +"ағымдағы мазмұнға сәйкес есептеледі. Жылдам және сенімді жұмыс істеу үшін " +"файл жүйесі үшін қосымша бос орын ұстаңыз." #: src/disks/ui/resize-dialog.ui:197 msgid "_Difference" @@ -3362,50 +3403,55 @@ #: src/disks/ui/shortcuts.ui:38 msgctxt "shortcut window" +msgid "Keyboard shortcuts" +msgstr "Пернетақта жарлықтары" + +#: src/disks/ui/shortcuts.ui:45 +msgctxt "shortcut window" msgid "Quit" msgstr "Шығу" -#: src/disks/ui/shortcuts.ui:47 +#: src/disks/ui/shortcuts.ui:54 msgctxt "shortcut window" msgid "Drive" msgstr "Жетек" -#: src/disks/ui/shortcuts.ui:51 +#: src/disks/ui/shortcuts.ui:58 msgctxt "shortcut window" msgid "Open the drive menu" -msgstr "" +msgstr "Дискі мәзірін ашу" -#: src/disks/ui/shortcuts.ui:58 +#: src/disks/ui/shortcuts.ui:65 msgctxt "shortcut window" msgid "Format the drive" msgstr "Жетекті пішімдеу" -#: src/disks/ui/shortcuts.ui:65 +#: src/disks/ui/shortcuts.ui:72 msgctxt "shortcut window" msgid "Restore an image to the disk" msgstr "Бейнені дискіге қалпына келтіру" -#: src/disks/ui/shortcuts.ui:72 +#: src/disks/ui/shortcuts.ui:79 msgctxt "shortcut window" msgid "SMART data" -msgstr "" +msgstr "SMART деректері" -#: src/disks/ui/shortcuts.ui:79 +#: src/disks/ui/shortcuts.ui:86 msgctxt "shortcut window" msgid "Drive settings" msgstr "Жетек баптаулары" -#: src/disks/ui/shortcuts.ui:88 +#: src/disks/ui/shortcuts.ui:95 msgctxt "shortcut window" msgid "Partition" msgstr "Бөлім" -#: src/disks/ui/shortcuts.ui:92 +#: src/disks/ui/shortcuts.ui:99 msgctxt "shortcut window" msgid "Open the volume menu" msgstr "Том мәзірін ашу" -#: src/disks/ui/shortcuts.ui:99 +#: src/disks/ui/shortcuts.ui:106 msgctxt "shortcut window" msgid "Format the selected volume" msgstr "Таңдалған томды пішімдеу" @@ -3521,14 +3567,14 @@ msgstr "" #: src/disks/ui/unlock-device-dialog.ui:204 -msgid "Keyfiles" -msgstr "" +msgid "_Keyfiles" +msgstr "_Кілттік файлдар" -#: src/disks/ui/unlock-device-dialog.ui:220 +#: src/disks/ui/unlock-device-dialog.ui:221 msgid "Select a keyfile to unlock this volume" -msgstr "" +msgstr "Бұл томды босату үшін кілт файлды таңдау" -#: src/disks/ui/unlock-device-dialog.ui:259 +#: src/disks/ui/unlock-device-dialog.ui:260 msgid "_Unlock" msgstr "Бо_сату" @@ -3580,128 +3626,128 @@ msgid "_Benchmark Partition…" msgstr "Бөлімді _сынау…" -#: src/libgdu/gduutils.c:111 +#: src/libgdu/gduutils.c:107 msgid "All Files" msgstr "Барлық файлдар" -#: src/libgdu/gduutils.c:116 +#: src/libgdu/gduutils.c:112 msgid "Disk Images (*.img, *.img.xz, *.iso)" msgstr "Диск бейнелері (*.img, *.img.xz, *.iso)" -#: src/libgdu/gduutils.c:118 +#: src/libgdu/gduutils.c:114 msgid "Disk Images (*.img, *.iso)" msgstr "Диск бейнелері (*.img, *.iso)" #. Translators: Used for number of years -#: src/libgdu/gduutils.c:447 +#: src/libgdu/gduutils.c:443 #, c-format msgid "%d year" msgid_plural "%d years" msgstr[0] "%d жыл" #. Translators: Used for number of months -#: src/libgdu/gduutils.c:454 +#: src/libgdu/gduutils.c:450 #, c-format msgid "%d month" msgid_plural "%d months" msgstr[0] "%d ай" #. Translators: Used for number of days -#: src/libgdu/gduutils.c:461 +#: src/libgdu/gduutils.c:457 #, c-format msgid "%d day" msgid_plural "%d days" msgstr[0] "%d күн" #. Translators: Used for number of hours -#: src/libgdu/gduutils.c:468 +#: src/libgdu/gduutils.c:464 #, c-format msgid "%d hour" msgid_plural "%d hours" msgstr[0] "%d сағат" #. Translators: Used for number of minutes -#: src/libgdu/gduutils.c:475 +#: src/libgdu/gduutils.c:471 #, c-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d минут" #. Translators: Used for number of seconds -#: src/libgdu/gduutils.c:482 +#: src/libgdu/gduutils.c:478 #, c-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d секунд" #. Translators: Used for number of milli-seconds -#: src/libgdu/gduutils.c:489 +#: src/libgdu/gduutils.c:485 #, c-format msgid "%d milli-second" msgid_plural "%d milli-seconds" msgstr[0] "%d миллисекунд" #. Translators: Used for duration greater than one year. First %s is number of years, second %s is months, third %s is days -#: src/libgdu/gduutils.c:553 +#: src/libgdu/gduutils.c:549 #, c-format msgctxt "duration-year-to-inf" msgid "%s, %s and %s" msgstr "%s, %s және %s" #. Translators: Used for durations less than one year but greater than one month. First %s is number of months, second %s is days -#: src/libgdu/gduutils.c:558 +#: src/libgdu/gduutils.c:554 #, c-format msgctxt "duration-months-to-year" msgid "%s and %s" msgstr "%s және %s" #. Translators: Used for durations less than one month but greater than one day. First %s is number of days, second %s is hours -#: src/libgdu/gduutils.c:563 +#: src/libgdu/gduutils.c:559 #, c-format msgctxt "duration-day-to-month" msgid "%s and %s" msgstr "%s және %s" #. Translators: Used for durations less than one day but greater than one hour. First %s is number of hours, second %s is minutes -#: src/libgdu/gduutils.c:568 +#: src/libgdu/gduutils.c:564 #, c-format msgctxt "duration-hour-to-day" msgid "%s and %s" msgstr "%s және %s" #. Translators: Used for durations less than one hour but greater than one minute. First %s is number of minutes, second %s is seconds -#: src/libgdu/gduutils.c:579 +#: src/libgdu/gduutils.c:575 #, c-format msgctxt "duration-minute-to-hour" msgid "%s and %s" msgstr "%s және %s" -#: src/libgdu/gduutils.c:588 +#: src/libgdu/gduutils.c:584 msgctxt "duration" msgid "Less than a minute" msgstr "Бір минуттан аз" #. Translators: Used for durations less than one minute byte greater than one second. First %s is number of seconds -#: src/libgdu/gduutils.c:593 +#: src/libgdu/gduutils.c:589 #, c-format msgctxt "duration-second-to-minute" msgid "%s" msgstr "%s" #. Translators: Used for durations less than one second. First %s is number of milli-seconds -#: src/libgdu/gduutils.c:599 +#: src/libgdu/gduutils.c:595 #, c-format msgctxt "duration-zero-to-second" msgid "%s" msgstr "%s" #. Translators: Shown in confirmation dialogs with a list of devices that will be affected by the action -#: src/libgdu/gduutils.c:835 +#: src/libgdu/gduutils.c:831 msgctxt "confirmation-list-of-devices" msgid "Affected Devices" msgstr "Әсер етілетін құрылғылар" -#: src/libgdu/gduutils.c:1411 +#: src/libgdu/gduutils.c:1399 msgid "Error unmounting filesystem" msgstr "Файлдық жүйені тіркеуден босату қатесі" @@ -3731,6 +3777,13 @@ msgid "Examine" msgstr "Тексеру" +#~ msgid "drive-removable-media" +#~ msgstr "drive-removable-media" + +#~| msgid "Disk Utility" +#~ msgid "org.gnome.DiskUtility" +#~ msgstr "org.gnome.DiskUtility" + #~ msgid "gnome-disks" #~ msgstr "gnome-disks" @@ -3918,10 +3971,6 @@ #~ msgstr "Дайындау..." #, fuzzy -#~ msgid "Unmounting..." -#~ msgstr "Тіркеуден босатылуда..." - -#, fuzzy #~ msgid "Formatting..." #~ msgstr "Пішімдеу..." diff -Nru gnome-disk-utility-3.36.1/po/lv.po gnome-disk-utility-3.36.3/po/lv.po --- gnome-disk-utility-3.36.1/po/lv.po 2020-03-21 17:17:09.322772500 +0000 +++ gnome-disk-utility-3.36.3/po/lv.po 2020-07-19 22:00:00.624319600 +0000 @@ -5,15 +5,15 @@ # # FIRST AUTHOR , 2010. # Rūdolfs Mazurs , 2010. -# Rudolfs , 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019. +# Rudolfs , 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020. # Peteris Krisjanis , 2012. msgid "" msgstr "" "Project-Id-Version: gnome-disk-utility\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-disk-utility/issues" "\n" -"POT-Creation-Date: 2019-07-29 21:55+0000\n" -"PO-Revision-Date: 2019-08-24 17:00+0200\n" +"POT-Creation-Date: 2020-03-31 16:26+0000\n" +"PO-Revision-Date: 2020-04-03 23:39+0300\n" "Last-Translator: Rūdolfs Mazurs \n" "Language-Team: Latvian \n" "Language: lv\n" @@ -22,7 +22,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 :" " 2);\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 19.12.3\n" "X-Launchpad-Export-Date: 2010-05-09 08:28+0000\n" #: data/gnome-disk-image-mounter.desktop.in:3 src/disk-image-mounter/main.c:48 @@ -87,7 +87,7 @@ msgstr "GNOME projekts" #: data/org.gnome.DiskUtility.desktop.in:3 src/disks/gduwindow.c:1125 -#: src/disks/ui/about-dialog.ui:11 +#: src/disks/ui/about-dialog.ui:11 src/disks/ui/headerbar.ui:10 msgid "Disks" msgstr "Diski" @@ -1988,7 +1988,7 @@ msgid "_Restore" msgstr "_Atjaunot" -#: src/disks/gduunlockdialog.c:112 src/disks/ui/unlock-device-dialog.ui:218 +#: src/disks/gduunlockdialog.c:112 src/disks/ui/unlock-device-dialog.ui:219 msgid "Select a Keyfile" msgstr "Izvēlieties atslēgdatni" @@ -2260,11 +2260,6 @@ msgstr "Apstiprināt labošanu" #: src/disks/gduwindow.c:3071 -#| msgid "" -#| "A filesystem repair is not always possible and can cause data loss. " -#| "Consider backing it up first in order to use forensic recovery tools that " -#| "retrieve lost files. Depending on the amount of data this operation takes " -#| "longer time." msgid "" "A filesystem repair is not always possible and can cause data loss. Consider " "backing it up first in order to use forensic recovery tools that retrieve " @@ -2272,8 +2267,8 @@ "contains a lot of data." msgstr "" "Datņu sistēmas salabošana ne vienmēr ir iespējama un var beigties ar datu " -"zaudēšanu. Darbība var aizņemt daudz laika, it īpaši, ja nodalījums satur" -" daudz datu." +"zaudēšanu. Darbība var aizņemt daudz laika, it īpaši, ja nodalījums satur " +"daudz datu." #: src/disks/gduwindow.c:3099 msgid "Error while checking filesystem" @@ -2990,7 +2985,6 @@ msgstr "Montēt izvēlēto nodalījumu" #: src/disks/ui/disks.ui:693 -#| msgid "_Mount" msgctxt "Accessibility label for toolbutton-mount" msgid "Mount" msgstr "Montēt" @@ -3000,7 +2994,6 @@ msgstr "Atmontēt izvēlēto nodalījumu" #: src/disks/ui/disks.ui:707 -#| msgid "_Mount" msgctxt "Accessibility label for toolbutton-unmount" msgid "Unmount" msgstr "Atmontēt" @@ -3010,8 +3003,6 @@ msgstr "Aktivizēt izvēlēto maiņvietas nodalījumu" #: src/disks/ui/disks.ui:721 -#| msgctxt "volume-content-swap" -#| msgid "Active" msgctxt "Accessibility label for toolbutton-activate-swap" msgid "Activate swap" msgstr "Aktivizēt maiņvietu" @@ -3021,7 +3012,6 @@ msgstr "Deaktivizēt izvēlēto maiņvietas nodalījumu" #: src/disks/ui/disks.ui:735 -#| msgid "Deactivate selected swap partition" msgctxt "Accessibility label for toolbutton-deactivate-swap" msgid "Deactivate swap" msgstr "Deaktivizēt maiņvietu" @@ -3031,7 +3021,6 @@ msgstr "Atbloķēt izvēlēto šifrēto nodalījumu" #: src/disks/ui/disks.ui:749 -#| msgid "_Unlock" msgctxt "Accessibility label for toolbutton-unlock" msgid "Unlock" msgstr "Atbloķēt" @@ -3041,8 +3030,6 @@ msgstr "Bloķēt izvēlēto šifrēto nodalījumu" #: src/disks/ui/disks.ui:763 -#| msgctxt "volume-content-crypto" -#| msgid "Locked" msgctxt "Accessibility label for toolbutton-lock" msgid "Lock" msgstr "Bloķēt" @@ -3052,7 +3039,6 @@ msgstr "Izveidot nodalījumu neizmantotajā apgabalā" #: src/disks/ui/disks.ui:777 -#| msgid "Create Partition" msgctxt "Accessibility label for toolbutton-partition-create" msgid "Create partition" msgstr "Izveidot nodalījumu" @@ -3062,7 +3048,6 @@ msgstr "Dzēst izvēlēto nodalījumu" #: src/disks/ui/disks.ui:791 -#| msgid "Delete selected partition" msgctxt "Accessibility label for toolbutton-partition-delete" msgid "Delete partition" msgstr "Dzēst nodalījumu" @@ -3553,51 +3538,57 @@ msgstr "Palīdzība" #: src/disks/ui/shortcuts.ui:38 +#| msgid "_Keyboard Shortcuts" +msgctxt "shortcut window" +msgid "Keyboard shortcuts" +msgstr "Tastatūras īsinājumtaustiņi" + +#: src/disks/ui/shortcuts.ui:45 msgctxt "shortcut window" msgid "Quit" msgstr "Iziet" -#: src/disks/ui/shortcuts.ui:47 +#: src/disks/ui/shortcuts.ui:54 msgctxt "shortcut window" msgid "Drive" msgstr "Dzinis" -#: src/disks/ui/shortcuts.ui:51 +#: src/disks/ui/shortcuts.ui:58 msgctxt "shortcut window" msgid "Open the drive menu" msgstr "Atvērt dziņu izvēlni" -#: src/disks/ui/shortcuts.ui:58 +#: src/disks/ui/shortcuts.ui:65 msgctxt "shortcut window" msgid "Format the drive" msgstr "Formatēt dzini" -#: src/disks/ui/shortcuts.ui:65 +#: src/disks/ui/shortcuts.ui:72 msgctxt "shortcut window" msgid "Restore an image to the disk" msgstr "Atjaunot attēlu no diska" -#: src/disks/ui/shortcuts.ui:72 +#: src/disks/ui/shortcuts.ui:79 msgctxt "shortcut window" msgid "SMART data" msgstr "SMART dati" -#: src/disks/ui/shortcuts.ui:79 +#: src/disks/ui/shortcuts.ui:86 msgctxt "shortcut window" msgid "Drive settings" msgstr "Dziņa iestatījumi" -#: src/disks/ui/shortcuts.ui:88 +#: src/disks/ui/shortcuts.ui:95 msgctxt "shortcut window" msgid "Partition" msgstr "Nodalījums" -#: src/disks/ui/shortcuts.ui:92 +#: src/disks/ui/shortcuts.ui:99 msgctxt "shortcut window" msgid "Open the volume menu" msgstr "Atvērt sējuma vietu" -#: src/disks/ui/shortcuts.ui:99 +#: src/disks/ui/shortcuts.ui:106 msgctxt "shortcut window" msgid "Format the selected volume" msgstr "Formatēt izvēlēto sējumu" @@ -3718,14 +3709,15 @@ "vērtība, ko izmantot šim sējumam." #: src/disks/ui/unlock-device-dialog.ui:204 -msgid "Keyfiles" -msgstr "Atslēgdatnes" +#| msgid "Keyfiles" +msgid "_Keyfiles" +msgstr "_Atslēgdatnes" -#: src/disks/ui/unlock-device-dialog.ui:220 +#: src/disks/ui/unlock-device-dialog.ui:221 msgid "Select a keyfile to unlock this volume" msgstr "Izvēlieties atslēgdatni, lai atslēgtu šo sējumu" -#: src/disks/ui/unlock-device-dialog.ui:259 +#: src/disks/ui/unlock-device-dialog.ui:260 msgid "_Unlock" msgstr "_Atbloķēt" @@ -3912,15 +3904,15 @@ msgid "Affected Devices" msgstr "Ietekmētās ierīces" -#: src/libgdu/gduutils.c:1398 +#: src/libgdu/gduutils.c:1399 msgid "Error unmounting filesystem" msgstr "Kļūda, atmontējot datņu sistēmu" -#: src/libgdu/gduutils.c:1418 +#: src/libgdu/gduutils.c:1431 msgid "Error locking device" msgstr "Kļūda, bloķējot ierīci" -#: src/libgdu/gduutils.c:1439 +#: src/libgdu/gduutils.c:1452 msgid "Error disabling autoclear for loop device" msgstr "Kļūda, izslēdzot automātisko attīrīšanu cikla ierīcei" diff -Nru gnome-disk-utility-3.36.1/po/sk.po gnome-disk-utility-3.36.3/po/sk.po --- gnome-disk-utility-3.36.1/po/sk.po 2020-03-21 17:17:09.342772700 +0000 +++ gnome-disk-utility-3.36.3/po/sk.po 2020-07-19 22:00:00.644319500 +0000 @@ -10,8 +10,8 @@ "Project-Id-Version: gnome-disk-utility\n" "Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-disk-utility/" "issues\n" -"POT-Creation-Date: 2020-01-13 10:31+0000\n" -"PO-Revision-Date: 2020-01-26 21:17+0100\n" +"POT-Creation-Date: 2020-03-31 16:26+0000\n" +"PO-Revision-Date: 2020-04-05 12:51+0200\n" "Last-Translator: Dušan Kazik \n" "Language-Team: slovenčina <>\n" "Language: sk\n" @@ -19,7 +19,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" -"X-Generator: Poedit 2.2.4\n" +"X-Generator: Poedit 2.3\n" # window title, program name #: data/gnome-disk-image-mounter.desktop.in:3 src/disk-image-mounter/main.c:48 @@ -2073,7 +2073,7 @@ #: src/disks/gduunlockdialog.c:224 #, c-format msgid "Invalid PIM" -msgstr "" +msgstr "Neplatný PIM" #: src/disks/gduunlockdialog.c:261 msgid "The encryption passphrase was retrieved from the keyring" @@ -2807,7 +2807,7 @@ # GtkLabel label #: src/disks/ui/create-filesystem-page.ui:47 msgid "For example: “Angela’s Files” or “Backup”." -msgstr "Napríklad: „Angeline súbory“ alebo „Záloha“" +msgstr "Napríklad: „Angeline súbory“ alebo „Záloha“." # GtkLabel label #: src/disks/ui/create-filesystem-page.ui:74 @@ -3824,55 +3824,60 @@ #: src/disks/ui/shortcuts.ui:38 msgctxt "shortcut window" +msgid "Keyboard shortcuts" +msgstr "Klávesové skratky" + +#: src/disks/ui/shortcuts.ui:45 +msgctxt "shortcut window" msgid "Quit" msgstr "Ukončenie" -#: src/disks/ui/shortcuts.ui:47 +#: src/disks/ui/shortcuts.ui:54 msgctxt "shortcut window" msgid "Drive" msgstr "Jednotka" -#: src/disks/ui/shortcuts.ui:51 +#: src/disks/ui/shortcuts.ui:58 msgctxt "shortcut window" msgid "Open the drive menu" msgstr "Otvorenie ponuky jednotky" # cmd desc -#: src/disks/ui/shortcuts.ui:58 +#: src/disks/ui/shortcuts.ui:65 msgctxt "shortcut window" msgid "Format the drive" msgstr "Formátovanie jednotky" # cmd desc -#: src/disks/ui/shortcuts.ui:65 +#: src/disks/ui/shortcuts.ui:72 msgctxt "shortcut window" msgid "Restore an image to the disk" msgstr "Obnovenie obrazu na disk" -#: src/disks/ui/shortcuts.ui:72 +#: src/disks/ui/shortcuts.ui:79 msgctxt "shortcut window" msgid "SMART data" msgstr "Údaje SMART" # GtkDialog title -#: src/disks/ui/shortcuts.ui:79 +#: src/disks/ui/shortcuts.ui:86 msgctxt "shortcut window" msgid "Drive settings" msgstr "Nastavenia jednotky" # GtkLabel label -#: src/disks/ui/shortcuts.ui:88 +#: src/disks/ui/shortcuts.ui:95 msgctxt "shortcut window" msgid "Partition" msgstr "Oddiel" -#: src/disks/ui/shortcuts.ui:92 +#: src/disks/ui/shortcuts.ui:99 msgctxt "shortcut window" msgid "Open the volume menu" msgstr "Otvorenie ponuky zväzku" # cmd desc -#: src/disks/ui/shortcuts.ui:99 +#: src/disks/ui/shortcuts.ui:106 msgctxt "shortcut window" msgid "Format the selected volume" msgstr "Naformátovanie vybraného zväzku" @@ -4000,13 +4005,15 @@ #: src/disks/ui/unlock-device-dialog.ui:171 msgid "PI_M" -msgstr "" +msgstr "PI_M" #: src/disks/ui/unlock-device-dialog.ui:187 msgid "" "If set, the VeraCrypt PIM (Personal Iterations Multiplier) numeric value to " "use for this volume." msgstr "" +"Ak je nastavené, bude použitá číselná hodnota pre VeraCrypt PIM (osobný " +"násobič opakovaní) pre tento zväzok." #: src/disks/ui/unlock-device-dialog.ui:204 msgid "_Keyfiles" @@ -4215,15 +4222,15 @@ msgid "Affected Devices" msgstr "Ovplyvnené zariadenia" -#: src/libgdu/gduutils.c:1398 +#: src/libgdu/gduutils.c:1399 msgid "Error unmounting filesystem" msgstr "Chyba pri odpájaní súborového systému" -#: src/libgdu/gduutils.c:1418 +#: src/libgdu/gduutils.c:1431 msgid "Error locking device" msgstr "Chyba pri zamykaní zariadenia" -#: src/libgdu/gduutils.c:1439 +#: src/libgdu/gduutils.c:1452 msgid "Error disabling autoclear for loop device" msgstr "Chyba pri zakázaní príznaku autoclear pre zariadenie slučky" diff -Nru gnome-disk-utility-3.36.1/po/zh_TW.po gnome-disk-utility-3.36.3/po/zh_TW.po --- gnome-disk-utility-3.36.1/po/zh_TW.po 2020-03-21 17:17:09.358772800 +0000 +++ gnome-disk-utility-3.36.3/po/zh_TW.po 2020-07-19 22:00:00.656319600 +0000 @@ -8,18 +8,18 @@ msgid "" msgstr "" "Project-Id-Version: gnome-disk-utility 3.3.93\n" -"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-disk-utility/issues" -"\n" -"POT-Creation-Date: 2019-11-27 16:07+0000\n" -"PO-Revision-Date: 2019-11-28 00:08+0800\n" -"Last-Translator: pan93412 \n" +"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-disk-utility/" +"issues\n" +"POT-Creation-Date: 2020-03-05 21:55+0000\n" +"PO-Revision-Date: 2020-04-01 00:24+0800\n" +"Last-Translator: Cheng-Chia Tseng \n" "Language-Team: Chinese \n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 19.11.80\n" +"X-Generator: Poedit 2.3\n" #: data/gnome-disk-image-mounter.desktop.in:3 src/disk-image-mounter/main.c:48 msgid "Disk Image Mounter" @@ -45,7 +45,8 @@ msgid "" "Default location for the Create/Restore disk image dialogs. If blank the ~/" "Documents folder is used." -msgstr "建立/還原磁碟映像檔對話盒的預設位置。如果留空則會使用 ~/Documents 資料夾。" +msgstr "" +"建立/還原磁碟映像檔對話盒的預設位置。如果留空則會使用 ~/Documents 資料夾。" #: data/org.gnome.DiskUtility.appdata.xml.in:7 msgid "GNOME Disks" @@ -2493,7 +2494,8 @@ msgid "" "Number of samples. Bigger number produces a more accurate picture of access " "time patterns but takes more time." -msgstr "取樣的數目。較大的數目會產生較準確的存取時間模式概觀,但是會花上較多的時間。" +msgstr "" +"取樣的數目。較大的數目會產生較準確的存取時間模式概觀,但是會花上較多的時間。" #: src/disks/ui/change-passphrase-dialog.ui:7 msgid "Change Passphrase" @@ -2797,7 +2799,8 @@ msgid "" "Aggressive spin-down may wear out the drive faster than anticipated. Please " "check the “Start/Stop Count” SMART attribute from time to time" -msgstr "強制降低轉速可能會加快磁碟機損耗。請隨時檢查「開始/停止計數」 SMART 屬性" +msgstr "" +"強制降低轉速可能會加快磁碟機損耗。請隨時檢查「開始/停止計數」 SMART 屬性" #: src/disks/ui/disk-settings-dialog.ui:308 msgid "A_PM" @@ -2849,7 +2852,8 @@ msgid "" "Performance is increased by enabling write caching, but leaves the system " "susceptible to data loss in the event of a power failure" -msgstr "啟用寫入快取會增加效能,但是會讓系統在電源發生問題的事件時有可能遺失資料" +msgstr "" +"啟用寫入快取會增加效能,但是會讓系統在電源發生問題的事件時有可能遺失資料" #: src/disks/ui/disk-settings-dialog.ui:622 msgid "Wr_ite Cache" @@ -3218,7 +3222,8 @@ msgid "" "If checked, the device is always shown in the user interface no matter what " "its directory is [x-gvfs-show]" -msgstr "如果勾選此選項,裝置永遠會顯示在使用者介面中,不管它的目錄為何 [x-gvfs-show]" +msgstr "" +"如果勾選此選項,裝置永遠會顯示在使用者介面中,不管它的目錄為何 [x-gvfs-show]" #: src/disks/ui/edit-fstab-dialog.ui:308 msgid "Require additional authori_zation to mount" @@ -3246,7 +3251,8 @@ msgid "" "If set, the name of the symbolic icon to use in the device in the user " "interface [x-gvfs-symbolic-icon=]" -msgstr "如果設定,符號圖示的名稱會用在使用者介面的裝置中 [x-gvfs-symbolic-icon=]" +msgstr "" +"如果設定,符號圖示的名稱會用在使用者介面的裝置中 [x-gvfs-symbolic-icon=]" #: src/disks/ui/edit-fstab-dialog.ui:396 msgid "Mount Opt_ions" @@ -3441,50 +3447,55 @@ #: src/disks/ui/shortcuts.ui:38 msgctxt "shortcut window" +msgid "Keyboard shortcuts" +msgstr "鍵盤快捷鍵" + +#: src/disks/ui/shortcuts.ui:45 +msgctxt "shortcut window" msgid "Quit" msgstr "退出" -#: src/disks/ui/shortcuts.ui:47 +#: src/disks/ui/shortcuts.ui:54 msgctxt "shortcut window" msgid "Drive" msgstr "磁碟機" -#: src/disks/ui/shortcuts.ui:51 +#: src/disks/ui/shortcuts.ui:58 msgctxt "shortcut window" msgid "Open the drive menu" msgstr "開啟磁碟機選單" -#: src/disks/ui/shortcuts.ui:58 +#: src/disks/ui/shortcuts.ui:65 msgctxt "shortcut window" msgid "Format the drive" msgstr "格式化磁碟機" -#: src/disks/ui/shortcuts.ui:65 +#: src/disks/ui/shortcuts.ui:72 msgctxt "shortcut window" msgid "Restore an image to the disk" msgstr "還原磁碟映像檔至磁碟" -#: src/disks/ui/shortcuts.ui:72 +#: src/disks/ui/shortcuts.ui:79 msgctxt "shortcut window" msgid "SMART data" msgstr "SMART 資料" -#: src/disks/ui/shortcuts.ui:79 +#: src/disks/ui/shortcuts.ui:86 msgctxt "shortcut window" msgid "Drive settings" msgstr "磁碟機設定值" -#: src/disks/ui/shortcuts.ui:88 +#: src/disks/ui/shortcuts.ui:95 msgctxt "shortcut window" msgid "Partition" msgstr "分割區" -#: src/disks/ui/shortcuts.ui:92 +#: src/disks/ui/shortcuts.ui:99 msgctxt "shortcut window" msgid "Open the volume menu" msgstr "開啟儲存區選單" -#: src/disks/ui/shortcuts.ui:99 +#: src/disks/ui/shortcuts.ui:106 msgctxt "shortcut window" msgid "Format the selected volume" msgstr "格式化選取的儲存區" @@ -3601,7 +3612,6 @@ "區。" #: src/disks/ui/unlock-device-dialog.ui:204 -#| msgid "Keyfiles" msgid "_Keyfiles" msgstr "金鑰檔(_K)" diff -Nru gnome-disk-utility-3.36.1/src/disks/gducreateformatdialog.c gnome-disk-utility-3.36.3/src/disks/gducreateformatdialog.c --- gnome-disk-utility-3.36.1/src/disks/gducreateformatdialog.c 2020-03-21 17:17:09.370772800 +0000 +++ gnome-disk-utility-3.36.3/src/disks/gducreateformatdialog.c 2020-07-19 22:00:00.660319600 +0000 @@ -368,6 +368,22 @@ } size = gdu_create_partition_page_get_size (data->partition_page); + /* Normal alignments of a few MB are expected to happen and normally it works well + * to pass a slightly larger size. + * Yet sometimes there are huge amounts of alignment enforced by libblockdev/libparted + * and it's unclear how many MB should be left when creating a partition on a 1 TB + * drive. The maximal size we present to the user is based on the size of unallocated + * space which may be too large. + * To address this issue, rely on the maximal size being found automatically by passing + * the special argument 0. + * However, this won't cover cases where the user substracts a few MB and now wonders + * why the partition can't be created. Heuristics for these corner cases could be + * implemented or libblockdev improved to handle these cases better but it would be + * easier and more accurate to create a partition with a maximal size first and then + * shrink it to the user's desired size if needed. + */ + if (size == data->add_partition_maxsize) + size = 0; udisks_partition_table_call_create_partition (data->table, data->add_partition_offset, size,