From 4d9c26f5291075e1bcb9a5a383d900704d0419f9 Mon Sep 17 00:00:00 2001 From: Mike Fleetwood Date: Wed, 24 Jan 2024 16:12:06 +0000 Subject: [PATCH 1/5] Install AppStream file into ${datadir}/metainfo (#241) AppData files always were a subset of the AppStream specification [1][2]. AppStream 0.12 specification [3] onwards says the metainfo files will be found when placed in /usr/share/metainfo/ *AND* that /usr/share/appdata/ is a legacy location *AND* a future release of AppStream will likely drop support for it [4]. Debian 10, RHEL 7 and Ubuntu 18.04 LTS distributions all have the /usr/share/metainfo/ directory containing application .appdata.xml and .metainfo.xml files. Ubuntu 16.04 LTS does not have the directory despite the AppStream specification [3] claiming it does. As old supported distributions do have the directory, unconditionally update this. For reference are these commits in projects GNOME System Monitor [4] and Evince [5] from 2017 making the same change. [1] AppData Specification [circa 2016] https://web.archive.org/web/20160903181519/https://people.freedesktop.org/~hughsient/appdata/ "Rather than create a new schema from scratch, we'll be using a subset of the AppStream metadata proposal. Applications wishing to have long descriptions, screenshots and other useful things are required to ship one or more files in /usr/share/appdata/%{id}.appdata.xml. " [2] AppStream 0.4, 2.2 AppData XML files [circa 2013] https://web.archive.org/web/20131204004054/http://www.freedesktop.org/software/appstream/docs/sect-AppStream-Metadata-AppData.html [3] AppStream 0.12, 2.1.2 Filesystem locations [circa 2020] https://web.archive.org/web/20200615042130/https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#spec-component-location "2.1.2 Filesystem locations Upstream projects can ship one or more metainfo files in /usr/share/metainfo/%{id}.metainfo.xml, where id is a unique identifier of this specific component. (>) Note Component metadata of type desktop-application as described in Section 2.2, "Desktop Applications" can be installed with an .appdata.xml extension as well for historical reasons. AppStream implementations will read the XML files as long as they end up in the right location on the filesystem. (!) Important: Legacy Path AppStream tools scan the /usr/share/appdata/ path for legacy compatibility as well. It should not be used anymore by new software though, even on older Linux distributions (like RHEL 7 and Ubuntu 16.04 LTS) the metainfo path is well supported. Support for the legacy path will likely be dropped completely with a future AppStream 1.0 release. " [4] [GNOME System Monitor] Install appdata to the new location (bgo#790146) https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/commit/43dc0577712a6cd0979e4d85ec5196d507bd6e80 [5] [Evince] build: Install appstream metadata to non-deprecated location https://gitlab.gnome.org/GNOME/evince/-/commit/8cae24ea48deafc85265ce42adecb55aa2b57a6f Closes #241 - Move appstream metadata out of legacy path --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index f7074b2e..d9f58631 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,7 +18,7 @@ $(DESKTOP_FILES): $(DESKTOP_IN_FILES) APPDATA_IN_FILES = gparted.appdata.xml.in APPDATA_FILES =$(APPDATA_IN_FILES:.xml.in=.xml) -appdatadir = $(datadir)/appdata +appdatadir = $(datadir)/metainfo appdata_DATA = $(APPDATA_FILES) $(APPDATA_FILES): $(APPDATA_IN_FILES) -- GitLab From e4f62205b6c2a15a672c7e47560a9ac8812e5aaa Mon Sep 17 00:00:00 2001 From: Mike Fleetwood Date: Mon, 29 Jan 2024 20:07:46 +0000 Subject: [PATCH 2/5] Rename Makefile.am variables to APPSTREAM*/appstream* (#241) As the AppStream 1.0 [1] specification no longer describes them as appdata files, but as metainfo files, rename the Makefile.am variables for consistency. [1] AppStream 1.0 https://www.freedesktop.org/software/appstream/docs/index.html Closes #241 - Move appstream metadata out of legacy path --- Makefile.am | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile.am b/Makefile.am index d9f58631..6952391a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,12 +16,12 @@ desktop_DATA = $(DESKTOP_FILES) $(DESKTOP_FILES): $(DESKTOP_IN_FILES) $(AM_V_GEN)$(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@ -APPDATA_IN_FILES = gparted.appdata.xml.in -APPDATA_FILES =$(APPDATA_IN_FILES:.xml.in=.xml) -appdatadir = $(datadir)/metainfo -appdata_DATA = $(APPDATA_FILES) +APPSTREAM_IN_FILES = gparted.appdata.xml.in +APPSTREAM_FILES =$(APPSTREAM_IN_FILES:.xml.in=.xml) +appstreamdir = $(datadir)/metainfo +appstream_DATA = $(APPSTREAM_FILES) -$(APPDATA_FILES): $(APPDATA_IN_FILES) +$(APPSTREAM_FILES): $(APPSTREAM_IN_FILES) $(AM_V_GEN)$(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@ polkit_action_in_in_FILES = org.gnome.gparted.policy.in.in @@ -78,14 +78,14 @@ dist-hook: fi EXTRA_DIST = \ - $(APPDATA_IN_FILES) \ - $(APPDATA_FILES) \ + $(APPSTREAM_IN_FILES) \ + $(APPSTREAM_FILES) \ $(DESKTOP_IN_IN_FILES) \ $(DESKTOP_FILES) \ $(polkit_action_in_in_FILES) \ gparted.in DISTCLEANFILES = \ - $(appdata_DATA) \ + $(appstream_DATA) \ $(desktop_DATA) \ $(polkit_action_DATA) -- GitLab From 55ea5abfd40bc40db6b657a17bdd7cf650685922 Mon Sep 17 00:00:00 2001 From: Mike Fleetwood Date: Sat, 3 Feb 2024 08:37:06 +0000 Subject: [PATCH 3/5] Rename AppStream file to gparted.metainfo.xml (#241) Rename the file extension to match the current .metainfo.xml standard and avoid the legacy .appdata.xml name [1]. Don't change the %{id} portion of the name to org.gnome.gparted as that must remain the same [2]. PO files edited using: fgrep -l -r gparted.appdata.xml po/ | \ xargs sed -i 's/gparted\.appdata\.xml/gparted.metainfo.xml/' For reference are these commits in projects GNOME Character Map [4] and GNOME Terminal [5] which include renaming the .appdata.xml file to .metainfo.xml as part of larger changes. [1] AppStream 1.0, 2.1.2 Filesystem locations https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#spec-component-location "2.1.2 Filesystem locations Upstream projects can ship one or more metainfo files in /usr/share/metainfo/%{id}.metainfo.xml, where id is a unique identifier of this specific component. (>) Note Component metadata of type desktop-application as described in Section 2.3, "Desktop Applications" can be installed with an .appdata.xml extension as well for historical reasons. AppStream implementations will read the XML files as long as they end up in the right location on the filesystem. " [2] AppStream, 2.3.2 File specification https://www.freedesktop.org/software/appstream/docs/sect-Metadata-Application.html#tag-id-desktopapp " For desktop applications, the tag value must follow the reverse-DNS scheme as described in . Note In previous AppStream releases, the was used to associate metainfo files with their .desktop files to merge in data from .desktop files into the AppStream generator's final output. In modern metainfo files, the component-ID for desktop-application components can be an arbitrary reverse-DNS string (matching the naming rules applying to all AppStream metadata), while the tag is used to associate .desktop files with their metainfo files. Note that even though the component-ID can now be any rDNS name, when updating existing applications, do not change their to drop the .desktop suffix. The rules are relaxed when picking a new component-ID for new applications, but when updating older applications they still need to keep their original (when it's otherwise compliant). The ID is used to uniquely identify applications across distributions and releases and should always remain the same for the same application. " [3] [GNOME Character Map] build: Port to meson https://gitlab.gnome.org/GNOME/gucharmap/-/commit/fac68554a562c8905eb9e4803995e950a7a47f1b [4] [GNOME Terminal] build: Replace autotools with meson https://gitlab.gnome.org/GNOME/gnome-terminal/-/commit/79ed7130dcc10ae72d8c598186eb8e53ec805a78 Closes #241 - Move appstream metadata out of legacy path --- .gitignore | 2 +- Makefile.am | 2 +- gparted.appdata.xml.in => gparted.metainfo.xml.in | 0 po/POTFILES.in | 2 +- po/ar.po | 6 +++--- po/be.po | 10 +++++----- po/bs.po | 6 +++--- po/ca.po | 12 ++++++------ po/cs.po | 12 ++++++------ po/da.po | 12 ++++++------ po/de.po | 12 ++++++------ po/el.po | 6 +++--- po/en_GB.po | 10 +++++----- po/eo.po | 10 +++++----- po/es.po | 10 +++++----- po/eu.po | 12 ++++++------ po/fa.po | 12 ++++++------ po/fi.po | 10 +++++----- po/fr.po | 10 +++++----- po/fur.po | 12 ++++++------ po/gd.po | 6 +++--- po/gl.po | 12 ++++++------ po/he.po | 12 ++++++------ po/hr.po | 12 ++++++------ po/hu.po | 12 ++++++------ po/id.po | 12 ++++++------ po/ie.po | 12 ++++++------ po/is.po | 10 +++++----- po/it.po | 10 +++++----- po/ka.po | 12 ++++++------ po/kk.po | 12 ++++++------ po/ko.po | 12 ++++++------ po/lt.po | 12 ++++++------ po/lv.po | 10 +++++----- po/nb.po | 10 +++++----- po/nl.po | 10 +++++----- po/oc.po | 6 +++--- po/pa.po | 10 +++++----- po/pl.po | 12 ++++++------ po/pt.po | 12 ++++++------ po/pt_BR.po | 12 ++++++------ po/ro.po | 12 ++++++------ po/ru.po | 12 ++++++------ po/sk.po | 12 ++++++------ po/sl.po | 10 +++++----- po/sr.po | 10 +++++----- po/sr@latin.po | 6 +++--- po/sv.po | 12 ++++++------ po/th.po | 6 +++--- po/tr.po | 12 ++++++------ po/uk.po | 12 ++++++------ po/vi.po | 10 +++++----- po/zh_CN.po | 12 ++++++------ po/zh_HK.po | 6 +++--- po/zh_TW.po | 10 +++++----- 55 files changed, 269 insertions(+), 269 deletions(-) rename gparted.appdata.xml.in => gparted.metainfo.xml.in (100%) diff --git a/.gitignore b/.gitignore index 0e6748a4..06c819cc 100644 --- a/.gitignore +++ b/.gitignore @@ -29,9 +29,9 @@ config.* configure depcomp gparted -gparted.appdata.xml gparted.desktop gparted.desktop.in +gparted.metainfo.xml gpartedbin index.docbook install-sh diff --git a/Makefile.am b/Makefile.am index 6952391a..2709efac 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,7 +16,7 @@ desktop_DATA = $(DESKTOP_FILES) $(DESKTOP_FILES): $(DESKTOP_IN_FILES) $(AM_V_GEN)$(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@ -APPSTREAM_IN_FILES = gparted.appdata.xml.in +APPSTREAM_IN_FILES = gparted.metainfo.xml.in APPSTREAM_FILES =$(APPSTREAM_IN_FILES:.xml.in=.xml) appstreamdir = $(datadir)/metainfo appstream_DATA = $(APPSTREAM_FILES) diff --git a/gparted.appdata.xml.in b/gparted.metainfo.xml.in similarity index 100% rename from gparted.appdata.xml.in rename to gparted.metainfo.xml.in diff --git a/po/POTFILES.in b/po/POTFILES.in index a1d85cc1..bbdc7d83 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,6 +1,6 @@ # List of source files containing translatable strings. # Please keep this file sorted alphabetically. -gparted.appdata.xml.in +gparted.metainfo.xml.in gparted.desktop.in.in org.gnome.gparted.policy.in.in include/Utils.h diff --git a/po/ar.po b/po/ar.po index df57c96a..0f818157 100644 --- a/po/ar.po +++ b/po/ar.po @@ -27,13 +27,13 @@ msgstr "" "X-Poedit-Language: Arabic\n" "X-Project-Style: gnome\n" -#: ../gparted.appdata.xml.in.h:1 +#: ../gparted.metainfo.xml.in.h:1 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "مُقسِّم‌ج هو محرّر أقسام حرّ لإدارة أقسام القرص رسوميًا." -#: ../gparted.appdata.xml.in.h:2 +#: ../gparted.metainfo.xml.in.h:2 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -44,7 +44,7 @@ msgstr "" "البيانات. هذه الإجراءات تمكّنك من توسيع/تقليص قرص C:‎ لديك، أو إنشاء مساحة " "لأنظمة تشغيل جديدة أو محاولة إنقاذ البيانات من الأقسام المفقودة." -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs, reiserfs, " diff --git a/po/be.po b/po/be.po index cb2ae9ae..306fd3ad 100644 --- a/po/be.po +++ b/po/be.po @@ -18,23 +18,23 @@ msgstr "" "X-Crowdin-File: /master/sources/gparted/en_GB.po\n" "X-Crowdin-File-ID: 110\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "Рэдактар раздзелаў GParted" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Стварыць, пераразмеркаваць альбо выдаліць раздзелы" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "GParted is a free partition editor for graphically managing your disk partitions." msgstr "GParted — свабодны графічны рэдактар для кіравання раздзеламі дыска." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "With GParted you can resize, copy, label, and move partitions without data loss. These actions enable you to grow or shrink your C: drive, create space for new operating systems, or attempt data rescue from lost partitions." msgstr "Пры дапамозе GParted можна змяняць памер, капіяваць, адмячаць і перамяшчаць раздзелы без страты даных. Гэта дапамагае паменшыць альбо павялічыць раздзел \"C:\", вызваліць прастору для новых аперацыйных сістэм. Таксама GParted дазваляе аднавіць даныя са страчаных раздзелаў." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 #| msgid "" #| "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " #| "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs, reiserfs, " diff --git a/po/bs.po b/po/bs.po index ad21792c..b35873fd 100644 --- a/po/bs.po +++ b/po/bs.po @@ -15,14 +15,14 @@ msgstr "" "X-Generator: Poedit 1.7.4\n" "X-Launchpad-Export-Date: 2015-02-15 06:11+0000\n" -#: ../gparted.appdata.xml.in.h:1 +#: ../gparted.metainfo.xml.in.h:1 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "" "GParted je besplatan uređivač za grafičko upravljanje dijeljenjem diska." -#: ../gparted.appdata.xml.in.h:2 +#: ../gparted.metainfo.xml.in.h:2 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -33,7 +33,7 @@ msgstr "" "povečate ili smanjite svoj C: uređaj, kreirate prostor za novi operativni " "sistem, ili pokušati vratiti izgubljene podatke sa particije." -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs, reiserfs, " diff --git a/po/ca.po b/po/ca.po index 12f3375a..cd1a8161 100644 --- a/po/ca.po +++ b/po/ca.po @@ -23,15 +23,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.0.1\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Editor de particions GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Creeu, reorganitzeu i suprimiu particions" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -39,7 +39,7 @@ msgstr "" "Gparted és un editor de particions lliure per a gestionar de forma gràfica " "les particions del vostre disc." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -50,7 +50,7 @@ msgstr "" "vostre disc C:, crear espai per nous sistemes operatius, o intentar " "recuperar dades de particions perdudes." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -60,7 +60,7 @@ msgstr "" "ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, " "nilfs2, ntfs, reiserfs, reiser4, udf, ufs, i xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "Projecte GParted" diff --git a/po/cs.po b/po/cs.po index db6e26c8..b2ac5aba 100644 --- a/po/cs.po +++ b/po/cs.po @@ -23,15 +23,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Poedit 3.3.2\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Editor oddílů GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Vytvářejte, přeuspořádávejte a odstraňujte diskové oddíly" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -39,7 +39,7 @@ msgstr "" "GParted je svobodný editor oddílů sloužící ke správě diskových oddílů v " "grafickém prostředí." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -50,7 +50,7 @@ msgstr "" "například zvětšit nebo zmenšit svůj disk C:, vytvořit místo pro nové " "operační systémy nebo zkusit zachránit data ze ztracených oddílů." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -60,7 +60,7 @@ msgstr "" "ext2, ext3, ext4, FAT16, FAT32, HFS, HFS+, Linux-Swap, LVM2 PV, MINIX, " "NILFS2, NTFS, ReiserFS, Reiser4, UDF, UFS a XFS." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "" diff --git a/po/da.po b/po/da.po index 373f54dd..adffe22a 100644 --- a/po/da.po +++ b/po/da.po @@ -25,21 +25,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.0.1\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted - partitioneringsprogram" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Opret, omorganisér og slet partitioner" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted er et frit grafisk partitionsprogram for dine diskpartitioner." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -50,7 +50,7 @@ msgstr "" "drev, oprette plads til nye operativsystemer eller forsøge at redde data fra " "mistede partitioner." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -60,7 +60,7 @@ msgstr "" "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " "reiserfs, reiser4, udf, ufs og xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "GParted-projektet" diff --git a/po/de.po b/po/de.po index 7f111740..3231dc03 100644 --- a/po/de.po +++ b/po/de.po @@ -28,15 +28,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.3.1\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted Partitionierungswerkzeug" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Partitionen erzeugen, reorganisieren und löschen" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -44,7 +44,7 @@ msgstr "" "GParted ist ein freies Partitionierungswerkzeug zur grafischen Verwaltung " "Ihrer Laufwerkspartitionen." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -55,7 +55,7 @@ msgstr "" "verkleinern, Platz für weitere Betriebssysteme schaffen und eine " "Datenrettung auf verlorenen Partitionen versuchen." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -65,7 +65,7 @@ msgstr "" "ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, " "ntfs, reiserfs, reiser4, udf, ufs und xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "Das GParted-Projekt" diff --git a/po/el.po b/po/el.po index 2d1a0fb0..bb477235 100644 --- a/po/el.po +++ b/po/el.po @@ -21,7 +21,7 @@ msgstr "" "X-Generator: Poedit 2.1.1\n" "X-Project-Style: gnome\n" -#: ../gparted.appdata.xml.in.h:1 +#: ../gparted.metainfo.xml.in.h:1 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -29,7 +29,7 @@ msgstr "" "Το GParted είναι ένας δωρεάν επεξεργαστής κατάτμησης για την γραφική " "διαχείριση των κατατμήσεων στο δίσκο σας." -#: ../gparted.appdata.xml.in.h:2 +#: ../gparted.metainfo.xml.in.h:2 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -41,7 +41,7 @@ msgstr "" "δημιουργηθεί χώρος για νέα λειτουργικά συστήματα, ή να γίνει προσπάθεια " "διάσωσης των δεδομένων από χαμένες κατατμήσεις." -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs, reiserfs, " diff --git a/po/en_GB.po b/po/en_GB.po index 7844ef9b..df757ead 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -19,15 +19,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Gtranslator 3.34.0\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "GParted Partition Editor" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Create, reorganise, and delete partitions" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -35,7 +35,7 @@ msgstr "" "GParted is a free partition editor for graphically managing your disk " "partitions." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -45,7 +45,7 @@ msgstr "" "loss. These actions enable you to grow or shrink your C: drive, create space " "for new operating systems, or attempt data rescue from lost partitions." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 #| msgid "" #| "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " #| "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs, reiserfs, " diff --git a/po/eo.po b/po/eo.po index 9ad93294..d2422194 100644 --- a/po/eo.po +++ b/po/eo.po @@ -20,22 +20,22 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.7.1\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "GParted Subdiskoredaktilo" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Krei, reorganizi, kaj forigi subdiskojn" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "" "GParted estas libera subdiskoredaktilo por grafike mastrumi viajn subdiskojn." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -46,7 +46,7 @@ msgstr "" "datumportilon, krei spacon por aliaj operaciumoj, aŭ provi datumsavi el " "perditajn subdiskojn." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, reiserfs, " diff --git a/po/es.po b/po/es.po index e7e9c525..fa24914d 100644 --- a/po/es.po +++ b/po/es.po @@ -25,15 +25,15 @@ msgstr "" "X-Generator: Gtranslator 40.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "Editor de particiones GParted" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Cree, reorganice y elimine particiones" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -41,7 +41,7 @@ msgstr "" "GParted es un editor de particiones libre para gestionar gráficamente las " "particiones del disco." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -52,7 +52,7 @@ msgstr "" "crear espacio para sistemas operativos nuevos o intentar recuperar datos de " "particiones perdidas." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " diff --git a/po/eu.po b/po/eu.po index 2d918f14..af5b1490 100644 --- a/po/eu.po +++ b/po/eu.po @@ -20,35 +20,35 @@ msgstr "Project-Id-Version: eu_to_be_translate\n" "X-Generator: Poedit 2.2.3\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted partizio-editorea" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Sortu, berrantolatu eta ezabatu partizioak" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted partizioen editore libre bat da, zure diskoen partizioak grafikoki kudeatzeko." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " "for new operating systems, or attempt data rescue from lost partitions." msgstr "GParted-ekin partizioak tamainaz aldatu, kopiatu, etiketatu eta lekuz alda ditzakezu daturik galdu gabe. Ekintza hauek C: euskarria hedatu eta uzkurtzea, sistema eragile berriarentzako lekua sortzea, edo galdutako partizioen datuak berreskuratzen saiatzea baimentzen dizute." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " "reiserfs, reiser4, udf, ufs, and xfs." msgstr "GParted aplikazioak hainbat fitxategi-sistemarekin lan egin dezake: btrfs, exfat, ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, reiserfs, reiser4, udf, ufs, eta xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "GParted proiektua" diff --git a/po/fa.po b/po/fa.po index 454fe8b2..a15ef17a 100644 --- a/po/fa.po +++ b/po/fa.po @@ -20,35 +20,35 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: Poedit 3.4.2\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "ویرایشگر افراز GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "ساخت، بازسازی و حذف پارتیشن‌ها" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "جی‌پارتد ویرایشگر افرازی آزاد برای مدیریت گرافیکی افرازهای دیسکتان است." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " "for new operating systems, or attempt data rescue from lost partitions." msgstr "" -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, reiserfs, " "reiser4, udf, ufs, and xfs." msgstr "" -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "پروژهٔ GParted" diff --git a/po/fi.po b/po/fi.po index dcd117c3..2b322dc4 100644 --- a/po/fi.po +++ b/po/fi.po @@ -20,15 +20,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.4.2\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "GParted - levyosioiden muokkain" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Luo, järjestele ja poista osioita" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -36,7 +36,7 @@ msgstr "" "GParted on sovellus levyjen ja osioiden hallintaan. GParted on vapaa " "ohjelmisto." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -47,7 +47,7 @@ msgstr "" "pienentää osion kokoa, luoda vapaata tilaa uudelle käyttöjärjestelmälle tai " "yrittää palauttaa tietoja poistetuilta osioilta." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " diff --git a/po/fr.po b/po/fr.po index b9733605..afc3fcf8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -37,21 +37,21 @@ msgstr "" "X-DL-State: Translating\n" "X-Generator: Gtranslator 42.0\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "Éditeur de partitions GParted" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Crée, réorganise et supprime des partitions" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted est un éditeur libre pour gérer des partitions de disques." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -63,7 +63,7 @@ msgstr "" "d’exploitation ou tenter de récupérer des données à partir de partitions " "perdues." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " diff --git a/po/fur.po b/po/fur.po index f52efd14..1a6cc673 100644 --- a/po/fur.po +++ b/po/fur.po @@ -19,15 +19,15 @@ msgstr "" "X-Editor: HaiPO 1.4 beta\n" "X-Generator: Poedit 3.2.2\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Editôr di partizions GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Cree, torne a organizâ e elimine lis partizions" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -35,7 +35,7 @@ msgstr "" "GParted al è un editôr di partizions gratuit pe gjestion grafiche des " "partizions dai discs." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -46,7 +46,7 @@ msgstr "" "C:, creâ spazi pai gnûfs sistemis operatîfs o cirî di recuperâ dâts di " "partizions pierdudis." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -56,7 +56,7 @@ msgstr "" "ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, " "ntfs, reiserfs, reiser4, udf, ufs e xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "Il Progjet GParted" diff --git a/po/gd.po b/po/gd.po index 2a74793e..d72ef6ab 100644 --- a/po/gd.po +++ b/po/gd.po @@ -19,7 +19,7 @@ msgstr "" "X-Generator: Virtaal 0.7.1\n" "X-Project-Style: gnome\n" -#: ../gparted.appdata.xml.in.h:1 +#: ../gparted.metainfo.xml.in.h:1 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -27,7 +27,7 @@ msgstr "" "'S e deasaiche pàirteachaidh an-asgaidh a tha sa GParted gus " "pàirteachaidhean nan diosga agad a stiùireadh gu grafaigeach." -#: ../gparted.appdata.xml.in.h:2 +#: ../gparted.metainfo.xml.in.h:2 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -39,7 +39,7 @@ msgstr "" "chruthachadh airson siostaman-obrachaidh ùra no feuchainn ri dàta aiseag o " "phàirteachaidhean caillte leis na gnìomhan seo." -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs, reiserfs, " diff --git a/po/gl.po b/po/gl.po index d0588e74..335e74ab 100644 --- a/po/gl.po +++ b/po/gl.po @@ -30,15 +30,15 @@ msgstr "" "X-DL-Domain: po\n" "X-DL-State: Translating\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Editor de particións GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Crear, reorganizar e eliminar particións" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -46,7 +46,7 @@ msgstr "" "GParted é un editor de particións libre para a xestión gráfica das " "particións do seu disco." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -57,7 +57,7 @@ msgstr "" "C:, crear espazo para novos sistemas operativos ou tentar recuperar datos de " "particións perdidas." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -67,7 +67,7 @@ msgstr "" "ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, " "nilfs2, ntfs, reiserfs, reiser4, udf, ufs, e xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "O proxecto GParted" diff --git a/po/he.po b/po/he.po index 9bafd51a..3879c4bb 100644 --- a/po/he.po +++ b/po/he.po @@ -19,21 +19,21 @@ msgstr "" "X-Launchpad-Export-Date: 2007-10-11 22:04+0000\n" "X-Generator: Gtranslator 42.0\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "עורך המחיצות GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "יצירה, ארגון מחדש ומחיקה של מחיצות" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "‫GParted הוא עורך מחיצות חופשי לניהול גרפי של מחיצות הכוננים שלך." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -43,7 +43,7 @@ msgstr "" "נתונים. הפעולות האלו מאפשרות לך להגדיל ולהקטין את כונן C:‎ שלך, ליצור מקום " "למערכות הפעלה חדשות או לנסות לשחזר נתונים ממחיצות שאבדו." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -53,7 +53,7 @@ msgstr "" "ext4,‏ fat16,‏ fat32,‏ hfs,‏ hfs+‎,‏ linux-swap,‏ lvm2 pv,‏ minix,‏ nilfs2,‏ ‏ntfs, " "reiserfs,‏ reiser4,‏ udf,‏ ufs ו־xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "מיזם GParted" diff --git a/po/hr.po b/po/hr.po index 4834dbec..7e1e3a16 100644 --- a/po/hr.po +++ b/po/hr.po @@ -20,15 +20,15 @@ msgstr "" "X-Launchpad-Export-Date: 2017-08-03 20:12+0000\n" "X-Generator: Poedit 3.2.2\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted uređivač particija" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Stvorite, preuredite i obrišite particije" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -36,7 +36,7 @@ msgstr "" "GParted je besplatan uređivač particija za grafičko upravljanje particijama " "diska." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -47,7 +47,7 @@ msgstr "" "particije, stvaranje prostora za nove operativne sustave ili pokušaj " "spašavanja podataka iz izgubljenih particija." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -57,7 +57,7 @@ msgstr "" "ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, " "ntfs, reiserfs, reiser4, udf, ufs i xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "GParted projekt" diff --git a/po/hu.po b/po/hu.po index d73cb45f..76d4d83a 100644 --- a/po/hu.po +++ b/po/hu.po @@ -19,22 +19,22 @@ msgstr "" "X-Generator: Lokalize 23.04.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted partíciószerkesztő" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Partíciók létrehozása, újraszervezése és törlése" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "" "A GParted egy szabad partíciószerkesztő lemezpartíciók grafikus kezelésére." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -45,7 +45,7 @@ msgstr "" "növelését vagy zsugorítását, helycsinálást új operációs rendszereknek, vagy " "adatmentés megkísérlését elveszett partíciókról." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -55,7 +55,7 @@ msgstr "" "ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, " "ntfs, reiserfs, reiser4, udf, ufs és xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "A GParted projekt" diff --git a/po/id.po b/po/id.po index a2faef69..5b2d356e 100644 --- a/po/id.po +++ b/po/id.po @@ -21,15 +21,15 @@ msgstr "" "X-Generator: Poedit 3.2.2\n" # Nama aplikasi dipertahankan pada posisi terdepan agar tidak mengubah urutan di menu -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted Penyunting Partisi" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Membuat, mengorganisasi ulang, serta menghapus partisi" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -37,7 +37,7 @@ msgstr "" "GParted adalah penyunting partisi bebas untuk mengelola partisi disk Anda " "secara grafis." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -48,7 +48,7 @@ msgstr "" "atau memperkecil drive C: Anda, membuat ruang bagi sistem operasi baru, atau " "mencoba menyelamatkan data dari partisi yang hilang." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -58,7 +58,7 @@ msgstr "" "ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, " "ntfs, reiserfs, reiser4, udf, ufs, dan xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "Proyek GParted" diff --git a/po/ie.po b/po/ie.po index 62fd8c2c..acfba58c 100644 --- a/po/ie.po +++ b/po/ie.po @@ -18,35 +18,35 @@ msgstr "" "Last-Translator: OIS \n" "X-Generator: Poedit 1.8.12\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Redactor de partitiones GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Crear, reorganisar e remover partitiones" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "" -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " "for new operating systems, or attempt data rescue from lost partitions." msgstr "" -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " "reiserfs, reiser4, udf, ufs, and xfs." msgstr "" -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "Li projecte GParted" diff --git a/po/is.po b/po/is.po index dd319577..1f7f684c 100644 --- a/po/is.po +++ b/po/is.po @@ -18,22 +18,22 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Lokalize 2.0\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "GParted disksneiðastjórinn" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Búa til, raða og eyða disksneiðum" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "" "GParted er frjáls disksneiðastjóri til að sýsla myndrænt með disksneiðar." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -44,7 +44,7 @@ msgstr "" "minnka C: drifið, búa til pláss fyrir ný stýrikerfi, eða að reyna björgun " "gagna af týndum disksneiðum." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, reiserfs, " diff --git a/po/it.po b/po/it.po index cc3f5da5..99a8f456 100644 --- a/po/it.po +++ b/po/it.po @@ -21,21 +21,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Generator: Poedit 3.0.1\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "Editor di partizioni GParted" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Crea, riorganizza ed elimina partizioni" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted è un editor di partizioni grafico per gestire i propri dischi." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -47,7 +47,7 @@ msgstr "" "sistemi operativi o tentare il ripristino dei dati da partizioni danneggiate " "o perse." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " diff --git a/po/ka.po b/po/ka.po index 535f52eb..cbce97e5 100644 --- a/po/ka.po +++ b/po/ka.po @@ -19,28 +19,28 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.3.1\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted - დანაყოფების რედაქტორი" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "შექმენით, გადაალაგეთ და წაშალეთ დანაყოფები" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted წარმოადგენს დანაყოფებს გრაფიკულად მართვის რედაქტორს." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " "for new operating systems, or attempt data rescue from lost partitions." msgstr "" -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -50,7 +50,7 @@ msgstr "" "ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, " "ntfs, reiserfs, reiser4, udf, ufs, და xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "პროექტი GParted" diff --git a/po/kk.po b/po/kk.po index 39b8c5f8..3aaebad1 100644 --- a/po/kk.po +++ b/po/kk.po @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.3.2\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted бөлімдерді басқарушысы" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Бөлімдерді жасау, басқару және өшіру" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -34,7 +34,7 @@ msgstr "" "GParted - бұл диск бөлімдерін графикалық түрде басқаруға арналған тегін " "қолданба." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -46,7 +46,7 @@ msgstr "" "орынды босата аласыз, немесе жоғалған бөлімдерден деректерді қалпына келтіру " "талабын жасай аласыз." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -56,7 +56,7 @@ msgstr "" "ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, " "ntfs, reiserfs, reiser4, udf, ufs және xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 #| msgid "Run GParted as root" msgid "The GParted Project" msgstr "GParted жобасы" diff --git a/po/ko.po b/po/ko.po index 0c982576..8b18a15c 100644 --- a/po/ko.po +++ b/po/ko.po @@ -20,15 +20,15 @@ msgstr "" "X-Generator: Poedit 2.3.1\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted 분할 영역 편집기" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "분할 영역을 만들고, 재배치하고, 삭제합니다" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -36,7 +36,7 @@ msgstr "" "GParted는 디스크 분할 영역을 그래픽 화면으로 관리하는 자유 분할 영역 편집기입" "니다." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -46,7 +46,7 @@ msgstr "" "붙이거나, 옮길 수 있습니다. C: 드라이브의 크기를 늘이거나 줄이고, 새 운영체제" "의 공간을 만들거나 분실한 분할 영역의 데이터 복구를 시도할 수 있습니다." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -56,7 +56,7 @@ msgstr "" "swap, lvm2 pv, minix, nilfs2, ntfs, reiserfs, reiser4, udf, ufs, xfs 등의 수" "많은 파일 시스템에서 동작합니다." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "GParted 프로젝트" diff --git a/po/lt.po b/po/lt.po index 733f1560..697cfc3f 100644 --- a/po/lt.po +++ b/po/lt.po @@ -22,15 +22,15 @@ msgstr "" "(n%100<10 || n%100>=20) ? 1 : 2)\n" "X-Generator: Gtranslator 42.0\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Skaidinių redaktorius „GParted“" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Kurkite, pertvarkykite ir trinkite skaidinius" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -38,7 +38,7 @@ msgstr "" "GParted yra laisvas skaidinių redaktorius grafiniam disko skaidinių " "tvarkymui." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -49,7 +49,7 @@ msgstr "" "vietos naujoms operacinėms sistemoms ar bandyti išgelbėti duomenis iš " "prarastų skaidinių." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -59,7 +59,7 @@ msgstr "" "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " "reiserfs, reiser4, udf, ufs ir xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "GParted projektas" diff --git a/po/lv.po b/po/lv.po index 7872d196..d24c66fa 100644 --- a/po/lv.po +++ b/po/lv.po @@ -28,22 +28,22 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 :" " 2);\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "GParted nodalījumu redaktors" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Veido, pārkārto un dzēš disku nodalījumus" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "" "GParted ir brīvs nodalījumu redaktors disku nodalījumu grafiskai pārvaldībai." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -54,7 +54,7 @@ msgstr "" "atvēlēt vietu jaunām operētājsistēmām vai mēģināt atgūt datus no zaudētiem " "nodalījumiem." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " diff --git a/po/nb.po b/po/nb.po index b2c416ac..aef5ec4e 100644 --- a/po/nb.po +++ b/po/nb.po @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.2.4\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "GParted partisjonsredigering" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Lag, omorganiser og slett partisjoner" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -34,7 +34,7 @@ msgstr "" "GParted er et gratis grafisk verktøy for å redigere og administrere " "partisjoner." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -45,7 +45,7 @@ msgstr "" "krympe C: -stasjonen, lage plass til nye operativsystemer, eller forsøke " "dataredning fra tapte partisjoner." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, reiserfs, " diff --git a/po/nl.po b/po/nl.po index 92c8465f..c44a92d6 100644 --- a/po/nl.po +++ b/po/nl.po @@ -81,15 +81,15 @@ msgstr "" "X-Generator: Poedit 3.0.1\n" # editor/bewerker -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "GParted partitiebewerker" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Partities aanmaken, ordenen en verwijderen" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -97,7 +97,7 @@ msgstr "" "GParted is een vrije partitiebewerker voor het grafisch beheren van uw " "schijfpartities." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -109,7 +109,7 @@ msgstr "" "creëren voor andere besturingssystemen, of een poging te doen tot " "dataherstel van verloren partities." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " diff --git a/po/oc.po b/po/oc.po index 99804fd6..d1140f78 100644 --- a/po/oc.po +++ b/po/oc.po @@ -25,20 +25,20 @@ msgid "Authentication is required to run the GParted Partition Editor" msgstr "" "Una autentificacion es necessària per aviar l’editor de particions GParted" -#: ../gparted.appdata.xml.in.h:1 +#: ../gparted.metainfo.xml.in.h:1 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "" -#: ../gparted.appdata.xml.in.h:2 +#: ../gparted.metainfo.xml.in.h:2 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " "for new operating systems, or attempt data rescue from lost partitions." msgstr "" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs, reiserfs, " diff --git a/po/pa.po b/po/pa.po index 3307468f..7a8478ba 100644 --- a/po/pa.po +++ b/po/pa.po @@ -19,15 +19,15 @@ msgstr "" "X-Generator: Lokalize 21.12.2\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "ਜੀਪਾਰਟਡ ਪਾਰਟੀਸ਼ਨ ਐਡੀਟਰ" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "ਪਾਰਟੀਸ਼ਨ ਬਣਾਓ, ਪਰਬੰਧ ਕਰੋ ਅਤੇ ਹਟਾਓ" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -36,7 +36,7 @@ msgstr "" " ਮੁਫ਼ਤ/ਮੁਕਤ " "ਪਾਰਟੀਸ਼ਨ ਐਡੀਟਰ ਹੈ।" -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -50,7 +50,7 @@ msgstr "" " ਕਰ ਸਕਦੀਆਂ " "ਹਨ।" -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 #| msgid "" #| "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " #| "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " diff --git a/po/pl.po b/po/pl.po index bb17658b..d3b23899 100644 --- a/po/pl.po +++ b/po/pl.po @@ -22,15 +22,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Edytor partycji GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Tworzenie, reorganizacja i usuwanie partycji" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -38,7 +38,7 @@ msgstr "" "GParted to edytor partycji będący wolnym oprogramowaniem, służący do " "graficznego zarządzania partycjami dysku." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -50,7 +50,7 @@ msgstr "" "systemów operacyjnych, a także można próbować odzyskać dane z utraconych " "partycji." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -61,7 +61,7 @@ msgstr "" "woluminy fizyczne LVM2, MINIX, NILFS2, NTFS, ReiserFS, Reiser4, UDF, UFS " "i XFS." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "Projekt GParted" diff --git a/po/pt.po b/po/pt.po index d29f5e55..84e734f8 100644 --- a/po/pt.po +++ b/po/pt.po @@ -23,15 +23,15 @@ msgstr "" "X-Generator: Poedit 3.3.2\n" "X-Project-Style: gnome\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Editor de partições GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Criar, reorganizar e eliminar partições" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -39,7 +39,7 @@ msgstr "" "O GParted é um editor de partições livre que lhe permite gerir graficamente " "as suas partições de disco." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -50,7 +50,7 @@ msgstr "" "C:, criar espaço para um novo sistema operativo ou tentar recuperar dados de " "partições perdidas." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -60,7 +60,7 @@ msgstr "" "exfat, ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, " "minix, nilfs2, ntfs, reiserfs, reiser4, udf, ufs e xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "O Projeto GParted" diff --git a/po/pt_BR.po b/po/pt_BR.po index d7b3a616..eb26eebf 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -31,15 +31,15 @@ msgstr "" "X-Generator: Poedit 3.2.2\n" "X-Project-Style: gnome\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Editor de partições GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Crie, reorganize e exclua partições" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -47,7 +47,7 @@ msgstr "" "O GParted é um editor de partições livre para gerenciamento gráfico de suas " "partições de disco." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -58,7 +58,7 @@ msgstr "" "unidade de disco C:, criar espaço para novos sistemas operacionais ou tentar " "recuperar dados das partições perdidas." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -68,7 +68,7 @@ msgstr "" "btrfs, exfat, ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 " "pv, minix, nilfs2, ntfs, reiserfs, reiser4, udf, ufs e xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "O Projeto GParted" diff --git a/po/ro.po b/po/ro.po index 2cd4d87f..8a1e033c 100644 --- a/po/ro.po +++ b/po/ro.po @@ -21,15 +21,15 @@ msgstr "" "X-Generator: Poedit 3.4\n" "X-Project-Style: gnome\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted - Editor de partiții" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Creează, reorganizează și șterge partiții" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -37,7 +37,7 @@ msgstr "" "GParted este un editor de partiții liber pentru a administra în mod grafic " "partițiile dumneavoastră de disc." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -48,7 +48,7 @@ msgstr "" "C:, să creați spațiu pentru un sisteme noi de operare, sau să încercați " "recuperări de date de pe partiții pierdute." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -58,7 +58,7 @@ msgstr "" "ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, " "nilfs2, ntfs, reiserfs, reiser4, udf, ufs, și xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "Proiectul GParted" diff --git a/po/ru.po b/po/ru.po index 181c4496..036e66c0 100644 --- a/po/ru.po +++ b/po/ru.po @@ -32,21 +32,21 @@ msgstr "" "X-DL-Domain: po\n" "X-DL-State: None\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Редактор разделов GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Создание, перераспределение и удаление разделов" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted — бесплатный редактор разделов с графическим управлением." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -57,7 +57,7 @@ msgstr "" "уменьшать диск «C:», создавать свободное пространство для новых операционных " "систем, а также восстанавливать данные с потерянных разделов." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -67,7 +67,7 @@ msgstr "" "ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, " "nilfs2, ntfs, reiserfs, reiser4, udf, ufs, а также xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "Проект GParted" diff --git a/po/sk.po b/po/sk.po index 7b167ee7..4878bd73 100644 --- a/po/sk.po +++ b/po/sk.po @@ -19,15 +19,15 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" "X-Generator: Poedit 3.2.2\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted - editor diskových oddielov" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Vytvára, reorganizuje a odstraňuje diskové oddiely" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -35,7 +35,7 @@ msgstr "" "GParted je bezplatný editor oddielov na grafické spravovanie oddielov na " "vašom disku." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -46,7 +46,7 @@ msgstr "" "vašu jednotku C:, vytvoriť miesto pre nové operačné systémy, alebo sa " "pokúsiť zachrániť údaje zo stratených oddielov." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -56,7 +56,7 @@ msgstr "" "ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, " "nilfs2, ntfs, reiserfs, reiser4, udf, ufs a xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "Projekt GParted" diff --git a/po/sl.po b/po/sl.po index b41f9d33..31d8d0f0 100644 --- a/po/sl.po +++ b/po/sl.po @@ -22,21 +22,21 @@ msgstr "" "X-Poedit-SourceCharset: utf-8\n" "X-Generator: Poedit 3.0.1\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "GParted urejevalnik razdelkov" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Ustvarjanje, urejanje in brisanje razdelkov" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted je napreden grafični urejevalnik razdelkov." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -47,7 +47,7 @@ msgstr "" "C:, ustvariti prostor za nove operacijske sisteme ali pa poskusiti obnoviti " "podatke poškodovanih razdelkov." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " diff --git a/po/sr.po b/po/sr.po index 90efeb8a..b6a7f527 100644 --- a/po/sr.po +++ b/po/sr.po @@ -18,15 +18,15 @@ msgstr "" "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Project-Style: gnome\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "Уређивач партиција Гпартед" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Стварајте, реорганизујте и бришите партиције" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -34,7 +34,7 @@ msgstr "" "Гпартед је слободан уређивач партиција за графичко управљање партицијама " "вашег диска." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -46,7 +46,7 @@ msgstr "" "оперативне системе, или да покушате да спасите податке са изгубљених " "партиција." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " diff --git a/po/sr@latin.po b/po/sr@latin.po index 06c0279d..e4e011f7 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -18,7 +18,7 @@ msgstr "" "n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Project-Style: gnome\n" -#: ../gparted.appdata.xml.in.h:1 +#: ../gparted.metainfo.xml.in.h:1 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -26,7 +26,7 @@ msgstr "" "Gparted je slobodan uređivač particija za grafičko upravljanje particijama " "vašeg diska." -#: ../gparted.appdata.xml.in.h:2 +#: ../gparted.metainfo.xml.in.h:2 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -38,7 +38,7 @@ msgstr "" "operativne sisteme, ili da pokušate da spasite podatke sa izgubljenih " "particija." -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs, reiserfs, " diff --git a/po/sv.po b/po/sv.po index 338592b8..70725045 100644 --- a/po/sv.po +++ b/po/sv.po @@ -22,15 +22,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.4.1\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted partitionsredigerare" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Skapa, organisera om och ta bort partitioner" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -38,7 +38,7 @@ msgstr "" "GParted är en fri partitionsredigerare för att grafiskt hantera dina " "diskpartitioner." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -49,7 +49,7 @@ msgstr "" "din C:-disk, skapa utrymme för nya operativsystem, eller försöka att rädda " "data från förlorade partitioner." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -59,7 +59,7 @@ msgstr "" "fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, reiserfs, " "reiser4, udf, ufs och xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "GParted-projektet" diff --git a/po/th.po b/po/th.po index b699a4e7..1d3219ab 100644 --- a/po/th.po +++ b/po/th.po @@ -21,13 +21,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Gtranslator 2.91.6\n" -#: ../gparted.appdata.xml.in.h:1 +#: ../gparted.metainfo.xml.in.h:1 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted เป็นเครื่องมือแก้ไขพาร์ทิชันเสรีสำหรับจัดการพาร์ทิชันในดิสก์ของคุณในแบบกราฟิก" -#: ../gparted.appdata.xml.in.h:2 +#: ../gparted.metainfo.xml.in.h:2 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -37,7 +37,7 @@ msgstr "" "การกระทำเหล่านี้ทำให้คุณสามารถขยายหรือลดขนาดไดรว์ C: ของคุณได้, " "สามารถสร้างที่ว่างสำหรับระบบปฏิบัติการใหม่ได้, หรือพยายามกู้ข้อมูลจากพาร์ทิชันที่สูญหาย" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs, reiserfs, " diff --git a/po/tr.po b/po/tr.po index bbe6df5e..97b9decb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -27,15 +27,15 @@ msgstr "" "X-Generator: Poedit 3.2.2\n" "X-POOTLE-MTIME: 1434043811.000000\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted Disk Bölümü Düzenleyicisi" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Bölümler oluştur, yeniden düzenle ve sil" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -43,7 +43,7 @@ msgstr "" "GParted; disk bölümlerinizi görsel olarak yönetmenize olanak tanıyan, " "ücretsiz bir bölümleme düzenleyicisidir." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -55,7 +55,7 @@ msgstr "" "sistemleri için yer açmanıza ya da kayıp bölümlerden veri kurtarmayı " "denemenize olanak tanır." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -65,7 +65,7 @@ msgstr "" "exfat, ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, " "minix, nilfs2, ntfs, reiserfs, reiser4, udf, ufs, ve xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "GParted Projesi" diff --git a/po/uk.po b/po/uk.po index d2aae8b9..aecfa9a1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -21,15 +21,15 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 20.12.0\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "Редактор розділів GParted" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "Створення, переміщення або вилучення розділів" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -37,7 +37,7 @@ msgstr "" "GParted — безплатний редактор розділів для графічного керування розділами " "дисків." -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -48,7 +48,7 @@ msgstr "" "створювати місце для нових операційних систем, намагатись відновити дані з " "втрачених розділів." -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -58,7 +58,7 @@ msgstr "" "exfat, ext2, ext3, ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, " "minix, nilfs2, ntfs, reiserfs, reiser4, udf, ufs, xfs." -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "Проєкт GParted" diff --git a/po/vi.po b/po/vi.po index 429769c8..f1a5f4dd 100644 --- a/po/vi.po +++ b/po/vi.po @@ -18,15 +18,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Gtranslator 2.91.7\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "Ứng dụng hiệu chỉnh phân vùng GParted" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "Tạo, tổ chức lại và xóa bỏ phân vùng" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." @@ -34,7 +34,7 @@ msgstr "" "GParted là một ứng dụng chỉnh sửa phân vùng miễn phí dùng để quản lý các " "phân vùng trên đĩa của bạn dùng môi trường đồ họa." -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -45,7 +45,7 @@ msgstr "" "nhỏ ổ đĩa C: của bạn, tạo chỗ trống để cài hệ điều hành mới, hay cố cứu dữ " "liệu từ các phân vùng đã mất." -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " diff --git a/po/zh_CN.po b/po/zh_CN.po index acff987f..f1a3c1f5 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -26,21 +26,21 @@ msgstr "" "X-Launchpad-Export-Date: 2016-03-22 12:43+0000\n" "X-Generator: Gtranslator 42.0\n" -#: gparted.appdata.xml.in:7 +#: gparted.metainfo.xml.in:7 msgid "GParted Partition Editor" msgstr "GParted 分区编辑器" -#: gparted.appdata.xml.in:8 gparted.desktop.in.in:6 +#: gparted.metainfo.xml.in:8 gparted.desktop.in.in:6 msgid "Create, reorganize, and delete partitions" msgstr "创建、重新组织或删除分区" -#: gparted.appdata.xml.in:10 +#: gparted.metainfo.xml.in:10 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted 是一款免费的分区编辑器,通过图形化的界面管理您的磁盘分区。" -#: gparted.appdata.xml.in:14 +#: gparted.metainfo.xml.in:14 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -49,7 +49,7 @@ msgstr "" "通过 GParted 您可以无损地调整、复制、标记或移动分区。通过这些操作您可以增大减" "小 C: 盘、为新操作系统创建新的空间或者尝试从丢失的分区恢复数据。" -#: gparted.appdata.xml.in:20 +#: gparted.metainfo.xml.in:20 msgid "" "GParted works with many file systems including: btrfs, exfat, ext2, ext3, " "ext4, fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, " @@ -59,7 +59,7 @@ msgstr "" "fat32、hfs、hfs+、linux-swap、lvm2 pv、minix、nilfs2、ntfs、reiserfs、" "reiser4、udf、ufs 和 xfs。" -#: gparted.appdata.xml.in:37 +#: gparted.metainfo.xml.in:37 msgid "The GParted Project" msgstr "GParted 项目" diff --git a/po/zh_HK.po b/po/zh_HK.po index a3cf9474..cf7318be 100644 --- a/po/zh_HK.po +++ b/po/zh_HK.po @@ -19,20 +19,20 @@ msgstr "" "X-Generator: Poedit 1.5.5\n" "X-Project-Style: gnome\n" -#: ../gparted.appdata.xml.in.h:1 +#: ../gparted.metainfo.xml.in.h:1 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted 是自由的分割區編輯器,可以用圖形化介面管理你的磁碟分割區。" -#: ../gparted.appdata.xml.in.h:2 +#: ../gparted.metainfo.xml.in.h:2 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " "for new operating systems, or attempt data rescue from lost partitions." msgstr "使用 GParted 你可以改變分割區的容量、複製、標籤、移動分割區而不致遺失資料。這些動作可以讓你增加或縮減你的 C: 磁碟機,建立額外的空間給新的作業系統,或是做為遺失分割區的資料救援。" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, nilfs2, ntfs, reiserfs, " diff --git a/po/zh_TW.po b/po/zh_TW.po index e55c08b9..38f669b7 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -19,21 +19,21 @@ msgstr "" "X-Generator: Poedit 2.3.1\n" "X-Project-Style: gnome\n" -#: ../gparted.appdata.xml.in.h:1 ../gparted.desktop.in.in.h:3 +#: ../gparted.metainfo.xml.in.h:1 ../gparted.desktop.in.in.h:3 msgid "GParted Partition Editor" msgstr "GParted 分割區編輯器" -#: ../gparted.appdata.xml.in.h:2 ../gparted.desktop.in.in.h:4 +#: ../gparted.metainfo.xml.in.h:2 ../gparted.desktop.in.in.h:4 msgid "Create, reorganize, and delete partitions" msgstr "建立、編輯或刪除分割區" -#: ../gparted.appdata.xml.in.h:3 +#: ../gparted.metainfo.xml.in.h:3 msgid "" "GParted is a free partition editor for graphically managing your disk " "partitions." msgstr "GParted 是自由的分割區編輯器,可以用圖形化介面管理您的磁碟分割區。" -#: ../gparted.appdata.xml.in.h:4 +#: ../gparted.metainfo.xml.in.h:4 msgid "" "With GParted you can resize, copy, label, and move partitions without data " "loss. These actions enable you to grow or shrink your C: drive, create space " @@ -43,7 +43,7 @@ msgstr "" "些動作可以讓您增加或縮減您的 C: 磁碟機,建立額外的空間給新的作業系統,或是做" "為遺失分割區的資料救援。" -#: ../gparted.appdata.xml.in.h:5 +#: ../gparted.metainfo.xml.in.h:5 msgid "" "GParted works with many file systems including: btrfs, ext2, ext3, ext4, " "fat16, fat32, hfs, hfs+, linux-swap, lvm2 pv, minix, nilfs2, ntfs, reiserfs, " -- GitLab From 6e6a11abe9a1937c4e034da7d9607d224cd741de Mon Sep 17 00:00:00 2001 From: Mike Fleetwood Date: Tue, 30 Jan 2024 21:10:53 +0000 Subject: [PATCH 4/5] Remove optional desktop filemanager dependancy from README ... now Attempt Data Rescue has been removed and GParted no longer has code to show "file:/tmp/gparted-roview-XXXXXX" URIs. Missed in earlier commit: 8ce9074ac672b19f29fd7c1cdc836a874be314cd Remove Attempt Data Rescue and use of gpart (!118) --- README | 2 -- 1 file changed, 2 deletions(-) diff --git a/README b/README index f8d4ab0c..8eb18196 100644 --- a/README +++ b/README @@ -315,8 +315,6 @@ system. These commands include: libparted doesn't, read UUIDs and volume labels hdparm - used to query disk device serial numbers udisks - used to prevent automounting of file systems - {filemanager} - used in attempt data rescue to display discovered - file systems. (e.g., nautilus, pcmanfm) hal-lock - used to prevent automounting of file systems pkexec - used to acquire root privileges in gparted shell script wrapper, but only if available when gparted -- GitLab From 03086546863c54339ef9336942da80240bd45656 Mon Sep 17 00:00:00 2001 From: Mike Fleetwood Date: Mon, 6 Nov 2023 21:08:29 +0000 Subject: [PATCH 5/5] Remove final namespace qualifiers from use of GParted's own enums ... because it is not necessary and clutters the code. --- include/Operation.h | 2 +- src/DrawingAreaVisualDisk.cc | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/Operation.h b/include/Operation.h index caee6bbe..02fd8c80 100644 --- a/include/Operation.h +++ b/include/Operation.h @@ -25,7 +25,7 @@ namespace GParted { - //FIXME: stop using GParted:: in front of our own enums.. it's not necessary and clutters the code + enum OperationType { OPERATION_DELETE = 0, OPERATION_CHECK = 1, diff --git a/src/DrawingAreaVisualDisk.cc b/src/DrawingAreaVisualDisk.cc index dbf4aade..0182ebbb 100644 --- a/src/DrawingAreaVisualDisk.cc +++ b/src/DrawingAreaVisualDisk.cc @@ -36,12 +36,12 @@ DrawingAreaVisualDisk::DrawingAreaVisualDisk() selected_vp = nullptr; // Set some standard colors - color_used .set( Utils::get_color( GParted::FS_USED ) ); - color_unused .set( Utils::get_color( GParted::FS_UNUSED ) ); - color_unallocated .set( Utils::get_color( GParted::FS_UNALLOCATED ) ); + color_used.set(Utils::get_color(FS_USED)); + color_unused.set(Utils::get_color(FS_UNUSED)); + color_unallocated.set(Utils::get_color(FS_UNALLOCATED)); color_text .set( "black" ); add_events( Gdk::BUTTON_PRESS_MASK ); - + set_size_request( -1, HEIGHT ) ; } -- GitLab