From 56af1c154a4c6ce2d74c0f74af2f5a1df585eea6 Mon Sep 17 00:00:00 2001 From: yyc12345 Date: Tue, 22 Sep 2026 16:06:23 +0800 Subject: [PATCH] refactor: use metaglot to take appstream file i18n over --- CMakeLists.txt | 17 ++- ...t.blumia.pineapple-pictures.metainfo.ca.po | 47 -------- ...t.blumia.pineapple-pictures.metainfo.de.po | 47 -------- ...t.blumia.pineapple-pictures.metainfo.fr.po | 47 -------- ...t.blumia.pineapple-pictures.metainfo.id.po | 47 -------- ...t.blumia.pineapple-pictures.metainfo.it.po | 47 -------- ...lumia.pineapple-pictures.metainfo.nb_NO.po | 47 -------- ...lumia.pineapple-pictures.metainfo.pa_PK.po | 47 -------- ...net.blumia.pineapple-pictures.metainfo.pot | 46 -------- ...t.blumia.pineapple-pictures.metainfo.si.po | 47 -------- ...t.blumia.pineapple-pictures.metainfo.tr.po | 49 --------- ...ia.pineapple-pictures.metainfo.xml.liquid} | 102 +++++------------- ...lumia.pineapple-pictures.metainfo.xml.toml | 30 ++++++ locales/appstream/appstream.pot | 43 ++++++++ locales/appstream/ca.po | 43 ++++++++ locales/appstream/de.po | 43 ++++++++ .../appstream/es.po | 29 ++--- locales/appstream/fr.po | 43 ++++++++ locales/appstream/id.po | 43 ++++++++ locales/appstream/it.po | 43 ++++++++ .../appstream/ja.po | 29 ++--- .../appstream/ko.po | 98 ++++++++--------- locales/appstream/nb_NO.po | 43 ++++++++ .../appstream/nl.po | 29 ++--- locales/appstream/pa_PK.po | 43 ++++++++ .../appstream/ru.po | 33 +++--- locales/appstream/si.po | 43 ++++++++ .../appstream/sl.po | 102 +++++++++--------- .../appstream/ta.po | 100 +++++++++-------- locales/appstream/tr.po | 45 ++++++++ .../appstream/uk.po | 33 +++--- .../appstream/vi.po | 100 +++++++++-------- .../appstream/zh_CN.po | 29 ++--- 33 files changed, 767 insertions(+), 867 deletions(-) delete mode 100644 dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ca.po delete mode 100644 dist/appstream/po/net.blumia.pineapple-pictures.metainfo.de.po delete mode 100644 dist/appstream/po/net.blumia.pineapple-pictures.metainfo.fr.po delete mode 100644 dist/appstream/po/net.blumia.pineapple-pictures.metainfo.id.po delete mode 100644 dist/appstream/po/net.blumia.pineapple-pictures.metainfo.it.po delete mode 100644 dist/appstream/po/net.blumia.pineapple-pictures.metainfo.nb_NO.po delete mode 100644 dist/appstream/po/net.blumia.pineapple-pictures.metainfo.pa_PK.po delete mode 100644 dist/appstream/po/net.blumia.pineapple-pictures.metainfo.pot delete mode 100644 dist/appstream/po/net.blumia.pineapple-pictures.metainfo.si.po delete mode 100644 dist/appstream/po/net.blumia.pineapple-pictures.metainfo.tr.po rename dist/{appstream/net.blumia.pineapple-pictures.metainfo.xml => net.blumia.pineapple-pictures.metainfo.xml.liquid} (66%) create mode 100644 dist/net.blumia.pineapple-pictures.metainfo.xml.toml create mode 100644 locales/appstream/appstream.pot create mode 100644 locales/appstream/ca.po create mode 100644 locales/appstream/de.po rename dist/appstream/po/net.blumia.pineapple-pictures.metainfo.es.po => locales/appstream/es.po (65%) create mode 100644 locales/appstream/fr.po create mode 100644 locales/appstream/id.po create mode 100644 locales/appstream/it.po rename dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ja.po => locales/appstream/ja.po (66%) rename dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ko.po => locales/appstream/ko.po (55%) create mode 100644 locales/appstream/nb_NO.po rename dist/appstream/po/net.blumia.pineapple-pictures.metainfo.nl.po => locales/appstream/nl.po (65%) create mode 100644 locales/appstream/pa_PK.po rename dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ru.po => locales/appstream/ru.po (69%) create mode 100644 locales/appstream/si.po rename dist/appstream/po/net.blumia.pineapple-pictures.metainfo.sl.po => locales/appstream/sl.po (56%) rename dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ta.po => locales/appstream/ta.po (66%) create mode 100644 locales/appstream/tr.po rename dist/appstream/po/net.blumia.pineapple-pictures.metainfo.uk.po => locales/appstream/uk.po (66%) rename dist/appstream/po/net.blumia.pineapple-pictures.metainfo.vi.po => locales/appstream/vi.po (55%) rename dist/appstream/po/net.blumia.pineapple-pictures.metainfo.zh_CN.po => locales/appstream/zh_CN.po (60%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0005f10..b1da25f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -275,9 +275,22 @@ elseif (UNIX) DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/applications" ) - # install app metadata file for appstream (and some other stuff using this metadata like snapcraft) + # generate and install app metadata file for appstream (and some other stuff using this metadata like snapcraft) + set (PPIC_METAINFO_FILE ${CMAKE_CURRENT_BINARY_DIR}/net.blumia.pineapple-pictures.metainfo.xml) + execute_process ( + COMMAND ${UV_EXECUTABLE} tool run metaglot render appstream + --manifest ${CMAKE_SOURCE_DIR}/dist/net.blumia.pineapple-pictures.metainfo.xml.toml + --po ${CMAKE_SOURCE_DIR}/locales/appstream/*.po + --template ${CMAKE_SOURCE_DIR}/dist/net.blumia.pineapple-pictures.metainfo.xml.liquid + --output ${PPIC_METAINFO_FILE} + RESULT_VARIABLE METAGLOT_METAINFO_RESULT + ) + if (NOT METAGLOT_METAINFO_RESULT EQUAL 0) + message (FATAL_ERROR "Failed to generate net.blumia.pineapple-pictures.metainfo.xml via MetaGlot (exit code: ${METAGLOT_METAINFO_RESULT}). If it is not installed yet, run: uv tool install git+https://github.com/SarasasChipWorkshop/metaglot.git") + endif () + install ( - FILES dist/appstream/net.blumia.pineapple-pictures.metainfo.xml + FILES ${PPIC_METAINFO_FILE} DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/metainfo" ) endif() diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ca.po b/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ca.po deleted file mode 100644 index b37c310..0000000 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ca.po +++ /dev/null @@ -1,47 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.de.po b/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.de.po deleted file mode 100644 index b1a73c4..0000000 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.de.po +++ /dev/null @@ -1,47 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.fr.po b/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.fr.po deleted file mode 100644 index 8e78c0c..0000000 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.fr.po +++ /dev/null @@ -1,47 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.id.po b/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.id.po deleted file mode 100644 index 6eaa32c..0000000 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.id.po +++ /dev/null @@ -1,47 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: id\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" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.it.po b/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.it.po deleted file mode 100644 index e9c8f78..0000000 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.it.po +++ /dev/null @@ -1,47 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.nb_NO.po b/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.nb_NO.po deleted file mode 100644 index 4d1f350..0000000 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.nb_NO.po +++ /dev/null @@ -1,47 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.pa_PK.po b/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.pa_PK.po deleted file mode 100644 index 4cd2aed..0000000 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.pa_PK.po +++ /dev/null @@ -1,47 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: pa_PK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.pot b/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.pot deleted file mode 100644 index 528103a..0000000 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.pot +++ /dev/null @@ -1,46 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "" - diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.si.po b/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.si.po deleted file mode 100644 index 1a68752..0000000 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.si.po +++ /dev/null @@ -1,47 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: si\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.tr.po b/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.tr.po deleted file mode 100644 index f7c24d6..0000000 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.tr.po +++ /dev/null @@ -1,49 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: 2025-12-20 20:00+0000\n" -"Last-Translator: Sabri Ünal \n" -"Language-Team: Turkish \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.15.1\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "Pineapple Resimler" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "Resim Görüntüleyici" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "Gary (BLumia) Wang et al." diff --git a/dist/appstream/net.blumia.pineapple-pictures.metainfo.xml b/dist/net.blumia.pineapple-pictures.metainfo.xml.liquid similarity index 66% rename from dist/appstream/net.blumia.pineapple-pictures.metainfo.xml rename to dist/net.blumia.pineapple-pictures.metainfo.xml.liquid index 7465e42..3f4a0f1 100644 --- a/dist/appstream/net.blumia.pineapple-pictures.metainfo.xml +++ b/dist/net.blumia.pineapple-pictures.metainfo.xml.liquid @@ -1,52 +1,27 @@ net.blumia.pineapple-pictures - Pineapple Pictures - Pineapple Pictures - Pineapple Pictures - Pineapple Pictures - Pineapple Afbeeldingen - Pineapple Pictures - Pineapple Slike - அன்னாசி படங்கள் - Pineapple Resimler - Pineapple Pictures - Pineapple Pictures - 菠萝看图 - Image Viewer - Visor de imágenes - 画像ビューアー - 이미지 뷰어 - Afbeeldingsweergave - Просмотр изображений - Pregledovalnik slik - பட பார்வையாளர் - Resim Görüntüleyici - Переглядач зображень - Trình xem ảnh - 图像查看器 + {{ default.strings.name | xml_escape }} +{% for lang in languages %} + {{ lang.strings.name | xml_escape }} +{% endfor %} + {{ default.strings.summary | xml_escape }} +{% for lang in languages %} + {{ lang.strings.summary | xml_escape }} +{% endfor %} CC0-1.0 MIT -

Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support.

-

Pineapple Pictures es un visor de imágenes ligero y fácil de usar que viene con una práctica miniatura de navegación al hacer zoom, y no contiene ningún soporte de gestión de imágenes.

-

Pineapple Picturesは、ズームイン時に便利なナビゲーションサムネイルを備えた軽量で使いやすい画像ビューアです。画像管理のサポートは含まれていません。

-

Pineapple Pictures는 가볍고 사용하기 쉬운 이미지 뷰어로, 확대 시 편리한 내비게이션 썸네일과 함께 제공되며 이미지 관리 지원이 포함되어 있지 않습니다.

-

Pineapple Afbeeldingen is een licht en eenvoudig te gebruiken afbeeldingsweergaveprogramma met miniatuurnavigatie na inzoomen. Het programma heeft echter geen fotobeheermogelijkheid.

-

Pineapple Pictures - это легкий и простой в использовании просмотрщик изображений, оснащенный удобной навигацией по миниатюрам при увеличении масштаба и не содержащий никакой поддержки управления изображениями.

-

Pineapple Pictures je lahek in enostaven pregledovalnik slik, ki ima pri povečavi priročno sličico za navigacijo in ne vsebuje nobene podpore za upravljanje slik.

-

அன்னாசி படங்கள் ஒரு இலகுரக மற்றும் பயன்படுத்த எளிதான பட பார்வையாளராகும், இது பெரிதாக்கும்போது ஒரு எளிமையான வழிசெலுத்தல் சிறுபடத்துடன் வருகிறது, மேலும் எந்த பட மேலாண்மை ஆதரவையும் கொண்டிருக்கவில்லை.

-

Pineapple Pictures – це легкий і простий у використанні переглядач зображень, який постачається зі зручною навігаційною мініатюрою при збільшенні масштабу і не містить жодної підтримки керування зображеннями.

-

Pineapple Pictures là trình xem hình ảnh nhẹ và dễ sử dụng, đi kèm với hình thu nhỏ điều hướng tiện dụng khi phóng to và không chứa bất kỳ hỗ trợ quản lý hình ảnh nào.

-

菠萝看图是一个轻量级易用的图像查看器,在图片放大时提供了方便的鸟瞰导航功能,且不包含任何图片管理功能。

+

{{ default.strings.description | xml_escape }}

+{% for lang in languages %} +

{{ lang.strings.description | xml_escape }}

+{% endfor %}
- Gary (BLumia) Wang et al. - Gary (BLumia) Wang など - Gary (BLumia) Wang e.a. - Gary (BLumia) Wang et al. - Gary (BLumia) Wang. - Gary (BLumia) Wang 等人 + {{ default.strings.developer_name | xml_escape }} +{% for lang in languages %} + {{ lang.strings.developer_name | xml_escape }} +{% endfor %} net.blumia.pineapple-pictures.desktop https://github.com/BLumia/pineapple-pictures @@ -59,45 +34,24 @@ - Main window when an image file is loaded - Ventana principal cuando se carga un archivo de imagen - 画像ファイル読み込み時のメインウィンドウ - 이미지 파일이 로드될 때 기본 창 - Hoofdvenster na het laden van een afbeelding - Основное окно после загрузки файла изображения - Glavno okno ob nalaganju slikovne datoteke - ஒரு படக் கோப்பு ஏற்றப்படும் போது முதன்மையான சாளரம் - Головне вікно після завантаження файлу зображення - Cửa sổ chính khi tải tệp hình ảnh - 加载图片后的主窗口 + {{ default.strings.screenshot_caption_main | xml_escape }} +{% for lang in languages %} + {{ lang.strings.screenshot_caption_main | xml_escape }} +{% endfor %} https://pineapple-pictures.sourceforge.io/ppic-gui-static.png - Zooming in a raster image - Ampliar una imagen rasterizada - ラスター画像の拡大 - 래스터 이미지 확대하기 - Inzoomen op een roosterafbeelding - Масштабирование растрового изображения - Povečevanje rastrske slike - ராச்டர் படத்தில் பெரிதாக்குதல் - Масштабування растрового зображення - Phóng to hình ảnh raster - 放大浏览位图 + {{ default.strings.screenshot_caption_raster | xml_escape }} +{% for lang in languages %} + {{ lang.strings.screenshot_caption_raster | xml_escape }} +{% endfor %} https://pineapple-pictures.sourceforge.io/ppic-zoom-raster.png - Zooming in a vector image - Ampliar una imagen vectorial - ベクター画像の拡大 - 벡터 이미지 확대하기 - Inzoomen op een vectorafbeelding - Масштабирование векторного изображения - Povečevanje vektorske slike - ஒரு திசையன் படத்தில் பெரிதாக்குதல் - Масштабування векторного зображення - Phóng to hình ảnh vector - 放大浏览矢量图 + {{ default.strings.screenshot_caption_vector | xml_escape }} +{% for lang in languages %} + {{ lang.strings.screenshot_caption_vector | xml_escape }} +{% endfor %} https://pineapple-pictures.sourceforge.io/ppic-zoom-svg.png diff --git a/dist/net.blumia.pineapple-pictures.metainfo.xml.toml b/dist/net.blumia.pineapple-pictures.metainfo.xml.toml new file mode 100644 index 0000000..7674557 --- /dev/null +++ b/dist/net.blumia.pineapple-pictures.metainfo.xml.toml @@ -0,0 +1,30 @@ +version = 1 +source_language = "en" + +[strings.name] +msgid = "Pineapple Pictures" +comment = "Display name of the application." + +[strings.summary] +msgid = "Image Viewer" +comment = "One-line summary shown in software centers." + +[strings.description] +msgid = "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." +comment = "Description paragraph shown in the details page." + +[strings.developer_name] +msgid = "Gary (BLumia) Wang et al." +comment = "Name of the application developers." + +[strings.screenshot_caption_main] +msgid = "Main window when an image file is loaded" +comment = "Caption of the primary screenshot." + +[strings.screenshot_caption_raster] +msgid = "Zooming in a raster image" +comment = "Caption of the raster image zooming screenshot." + +[strings.screenshot_caption_vector] +msgid = "Zooming in a vector image" +comment = "Caption of the vector image zooming screenshot." diff --git a/locales/appstream/appstream.pot b/locales/appstream/appstream.pot new file mode 100644 index 0000000..213e01a --- /dev/null +++ b/locales/appstream/appstream.pot @@ -0,0 +1,43 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: MetaGlot/polib\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "" + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "" diff --git a/locales/appstream/ca.po b/locales/appstream/ca.po new file mode 100644 index 0000000..f087382 --- /dev/null +++ b/locales/appstream/ca.po @@ -0,0 +1,43 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "" + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "" diff --git a/locales/appstream/de.po b/locales/appstream/de.po new file mode 100644 index 0000000..0532263 --- /dev/null +++ b/locales/appstream/de.po @@ -0,0 +1,43 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "" + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.es.po b/locales/appstream/es.po similarity index 65% rename from dist/appstream/po/net.blumia.pineapple-pictures.metainfo.es.po rename to locales/appstream/es.po index 9228973..e56f61d 100644 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.es.po +++ b/locales/appstream/es.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2024-04-19 17:07+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: Spanish 1;\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "" + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "" diff --git a/locales/appstream/id.po b/locales/appstream/id.po new file mode 100644 index 0000000..5f558c9 --- /dev/null +++ b/locales/appstream/id.po @@ -0,0 +1,43 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: id\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" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "" + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "" diff --git a/locales/appstream/it.po b/locales/appstream/it.po new file mode 100644 index 0000000..17ddffd --- /dev/null +++ b/locales/appstream/it.po @@ -0,0 +1,43 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "" + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ja.po b/locales/appstream/ja.po similarity index 66% rename from dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ja.po rename to locales/appstream/ja.po index 13a2f56..1ce8593 100644 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ja.po +++ b/locales/appstream/ja.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2023-11-14 17:05+0000\n" "Last-Translator: mmahhi \n" "Language-Team: Japanese \n" -"Language-Team: Korean \n" -"Language: ko\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: Weblate 5.15.1\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "Pineapple Pictures" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "이미지 뷰어" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" -"Pineapple Pictures는 가볍고 사용하기 쉬운 이미지 뷰어로, 확대 시 편리한 내비" -"게이션 썸네일과 함께 제공되며 이미지 관리 지원이 포함되어 있지 않습니다." - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "이미지 파일이 로드될 때 기본 창" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "래스터 이미지 확대하기" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "벡터 이미지 확대하기" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "Gary (BLumia) Wang 외" +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2025-12-27 02:00+0000\n" +"Last-Translator: Gary Wang \n" +"Language-Team: Korean \n" +"Language: ko\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: Weblate 5.15.1\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "Pineapple Pictures" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "이미지 뷰어" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" +"Pineapple Pictures는 가볍고 사용하기 쉬운 이미지 뷰어로, 확대 시 편리한 내비" +"게이션 썸네일과 함께 제공되며 이미지 관리 지원이 포함되어 있지 않습니다." + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "Gary (BLumia) Wang 외" + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "이미지 파일이 로드될 때 기본 창" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "래스터 이미지 확대하기" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "벡터 이미지 확대하기" diff --git a/locales/appstream/nb_NO.po b/locales/appstream/nb_NO.po new file mode 100644 index 0000000..d39a47f --- /dev/null +++ b/locales/appstream/nb_NO.po @@ -0,0 +1,43 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "" + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.nl.po b/locales/appstream/nl.po similarity index 65% rename from dist/appstream/po/net.blumia.pineapple-pictures.metainfo.nl.po rename to locales/appstream/nl.po index 9448285..3f123f0 100644 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.nl.po +++ b/locales/appstream/nl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2023-08-23 06:41+0000\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch 1;\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "" + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ru.po b/locales/appstream/ru.po similarity index 69% rename from dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ru.po rename to locales/appstream/ru.po index f5048f2..ccc12b2 100644 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ru.po +++ b/locales/appstream/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2023-08-23 06:41+0000\n" "Last-Translator: Andrey \n" "Language-Team: Russian =2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 5.0-dev\n" -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 +#. Display name of the application. msgid "Pineapple Pictures" msgstr "Pineapple Pictures" -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 +#. One-line summary shown in software centers. msgid "Image Viewer" msgstr "Просмотр изображений" -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 +#. Description paragraph shown in the details page. msgid "" "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " "with a handy navigation thumbnail when zoom-in, and doesn't contain any " @@ -35,22 +32,18 @@ msgstr "" "изображений, оснащенный удобной навигацией по миниатюрам при увеличении " "масштаба и не содержащий никакой поддержки управления изображениями." -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "Gary (BLumia) Wang et al." + +#. Caption of the primary screenshot. msgid "Main window when an image file is loaded" msgstr "Основное окно после загрузки файла изображения" -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 +#. Caption of the raster image zooming screenshot. msgid "Zooming in a raster image" msgstr "Масштабирование растрового изображения" -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 +#. Caption of the vector image zooming screenshot. msgid "Zooming in a vector image" msgstr "Масштабирование векторного изображения" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "Gary (BLumia) Wang et al." diff --git a/locales/appstream/si.po b/locales/appstream/si.po new file mode 100644 index 0000000..e81a5ab --- /dev/null +++ b/locales/appstream/si.po @@ -0,0 +1,43 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: si\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "" + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.sl.po b/locales/appstream/sl.po similarity index 56% rename from dist/appstream/po/net.blumia.pineapple-pictures.metainfo.sl.po rename to locales/appstream/sl.po index 3c22abd..83c2da1 100644 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.sl.po +++ b/locales/appstream/sl.po @@ -1,53 +1,49 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: 2026-01-25 01:53+0000\n" -"Last-Translator: Andrej Poženel - SDT \n" -"Language-Team: Slovenian \n" -"Language: sl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3;\n" -"X-Generator: Weblate 5.16-dev\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "Pineapple Slike" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "Pregledovalnik slik" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" -"Pineapple Pictures je lahek in enostaven pregledovalnik slik, ki ima pri " -"povečavi priročno sličico za navigacijo in ne vsebuje nobene podpore za " -"upravljanje slik." - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "Glavno okno ob nalaganju slikovne datoteke" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "Povečevanje rastrske slike" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "Povečevanje vektorske slike" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "Gary (BLumia) Wang et al." +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2026-01-25 01:53+0000\n" +"Last-Translator: Andrej Poženel - SDT \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.16-dev\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "Pineapple Slike" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "Pregledovalnik slik" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" +"Pineapple Pictures je lahek in enostaven pregledovalnik slik, ki ima pri " +"povečavi priročno sličico za navigacijo in ne vsebuje nobene podpore za " +"upravljanje slik." + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "Gary (BLumia) Wang et al." + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "Glavno okno ob nalaganju slikovne datoteke" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "Povečevanje rastrske slike" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "Povečevanje vektorske slike" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ta.po b/locales/appstream/ta.po similarity index 66% rename from dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ta.po rename to locales/appstream/ta.po index 8a0f494..084aa53 100644 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.ta.po +++ b/locales/appstream/ta.po @@ -1,52 +1,48 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: 2025-01-28 09:01+0000\n" -"Last-Translator: தமிழ்நேரம் \n" -"Language-Team: Tamil \n" -"Language: ta\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.10-dev\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "அன்னாசி படங்கள்" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "பட பார்வையாளர்" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" -"அன்னாசி படங்கள் ஒரு இலகுரக மற்றும் பயன்படுத்த எளிதான பட பார்வையாளராகும், இது " -"பெரிதாக்கும்போது ஒரு எளிமையான வழிசெலுத்தல் சிறுபடத்துடன் வருகிறது, மேலும் எந்த பட " -"மேலாண்மை ஆதரவையும் கொண்டிருக்கவில்லை." - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "ஒரு படக் கோப்பு ஏற்றப்படும் போது முதன்மையான சாளரம்" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "ராச்டர் படத்தில் பெரிதாக்குதல்" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "ஒரு திசையன் படத்தில் பெரிதாக்குதல்" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "கேரி (ப்ளூமியா) வாங் மற்றும் பலர்." +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2025-01-28 09:01+0000\n" +"Last-Translator: தமிழ்நேரம் \n" +"Language-Team: Tamil \n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.10-dev\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "அன்னாசி படங்கள்" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "பட பார்வையாளர்" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" +"அன்னாசி படங்கள் ஒரு இலகுரக மற்றும் பயன்படுத்த எளிதான பட பார்வையாளராகும், இது " +"பெரிதாக்கும்போது ஒரு எளிமையான வழிசெலுத்தல் சிறுபடத்துடன் வருகிறது, மேலும் எந்த பட " +"மேலாண்மை ஆதரவையும் கொண்டிருக்கவில்லை." + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "கேரி (ப்ளூமியா) வாங் மற்றும் பலர்." + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "ஒரு படக் கோப்பு ஏற்றப்படும் போது முதன்மையான சாளரம்" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "ராச்டர் படத்தில் பெரிதாக்குதல்" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "ஒரு திசையன் படத்தில் பெரிதாக்குதல்" diff --git a/locales/appstream/tr.po b/locales/appstream/tr.po new file mode 100644 index 0000000..d04b00f --- /dev/null +++ b/locales/appstream/tr.po @@ -0,0 +1,45 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2025-12-20 20:00+0000\n" +"Last-Translator: Sabri Ünal \n" +"Language-Team: Turkish \n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.15.1\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "Pineapple Resimler" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "Resim Görüntüleyici" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "Gary (BLumia) Wang et al." + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.uk.po b/locales/appstream/uk.po similarity index 66% rename from dist/appstream/po/net.blumia.pineapple-pictures.metainfo.uk.po rename to locales/appstream/uk.po index 850698a..222e654 100644 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.uk.po +++ b/locales/appstream/uk.po @@ -1,11 +1,11 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2024-01-01 16:10+0000\n" "Last-Translator: Сергій \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,18 +14,15 @@ msgstr "" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 5.4-dev\n" -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 +#. Display name of the application. msgid "Pineapple Pictures" msgstr "Pineapple Pictures" -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 +#. One-line summary shown in software centers. msgid "Image Viewer" msgstr "Переглядач зображень" -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 +#. Description paragraph shown in the details page. msgid "" "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " "with a handy navigation thumbnail when zoom-in, and doesn't contain any " @@ -35,22 +32,18 @@ msgstr "" "зображень, який постачається зі зручною навігаційною мініатюрою при " "збільшенні масштабу і не містить жодної підтримки керування зображеннями." -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "Gary (BLumia) Wang." + +#. Caption of the primary screenshot. msgid "Main window when an image file is loaded" msgstr "Головне вікно після завантаження файлу зображення" -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 +#. Caption of the raster image zooming screenshot. msgid "Zooming in a raster image" msgstr "Масштабування растрового зображення" -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 +#. Caption of the vector image zooming screenshot. msgid "Zooming in a vector image" msgstr "Масштабування векторного зображення" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "Gary (BLumia) Wang." diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.vi.po b/locales/appstream/vi.po similarity index 55% rename from dist/appstream/po/net.blumia.pineapple-pictures.metainfo.vi.po rename to locales/appstream/vi.po index 695d377..52aff33 100644 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.vi.po +++ b/locales/appstream/vi.po @@ -1,52 +1,48 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" -"PO-Revision-Date: 2025-12-25 17:00+0000\n" -"Last-Translator: Loc Huynh \n" -"Language-Team: Vietnamese \n" -"Language: vi\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: Weblate 5.15.1\n" - -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 -msgid "Pineapple Pictures" -msgstr "Pineapple Pictures" - -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 -msgid "Image Viewer" -msgstr "Trình xem ảnh" - -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 -msgid "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes with a handy navigation thumbnail when zoom-in, and doesn't contain any image management support." -msgstr "" -"Pineapple Pictures là trình xem hình ảnh nhẹ và dễ sử dụng, đi kèm với hình " -"thu nhỏ điều hướng tiện dụng khi phóng to và không chứa bất kỳ hỗ trợ quản " -"lý hình ảnh nào." - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 -msgid "Main window when an image file is loaded" -msgstr "Cửa sổ chính khi tải tệp hình ảnh" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 -msgid "Zooming in a raster image" -msgstr "Phóng to hình ảnh raster" - -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 -msgid "Zooming in a vector image" -msgstr "Phóng to hình ảnh vector" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "Gary (BLumia) Wang et al." +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2025-12-25 17:00+0000\n" +"Last-Translator: Loc Huynh \n" +"Language-Team: Vietnamese \n" +"Language: vi\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: Weblate 5.15.1\n" + +#. Display name of the application. +msgid "Pineapple Pictures" +msgstr "Pineapple Pictures" + +#. One-line summary shown in software centers. +msgid "Image Viewer" +msgstr "Trình xem ảnh" + +#. Description paragraph shown in the details page. +msgid "" +"Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " +"with a handy navigation thumbnail when zoom-in, and doesn't contain any " +"image management support." +msgstr "" +"Pineapple Pictures là trình xem hình ảnh nhẹ và dễ sử dụng, đi kèm với hình " +"thu nhỏ điều hướng tiện dụng khi phóng to và không chứa bất kỳ hỗ trợ quản " +"lý hình ảnh nào." + +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "Gary (BLumia) Wang et al." + +#. Caption of the primary screenshot. +msgid "Main window when an image file is loaded" +msgstr "Cửa sổ chính khi tải tệp hình ảnh" + +#. Caption of the raster image zooming screenshot. +msgid "Zooming in a raster image" +msgstr "Phóng to hình ảnh raster" + +#. Caption of the vector image zooming screenshot. +msgid "Zooming in a vector image" +msgstr "Phóng to hình ảnh vector" diff --git a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.zh_CN.po b/locales/appstream/zh_CN.po similarity index 60% rename from dist/appstream/po/net.blumia.pineapple-pictures.metainfo.zh_CN.po rename to locales/appstream/zh_CN.po index e552839..e8e955d 100644 --- a/dist/appstream/po/net.blumia.pineapple-pictures.metainfo.zh_CN.po +++ b/locales/appstream/zh_CN.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2023-08-22 18:49中国标准时间\n" +"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2023-08-22 18:22+0800\n" "Last-Translator: \n" "Language-Team: \n" @@ -11,18 +11,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.2\n" -#. (itstool) path: component/name -#: net.blumia.pineapple-pictures.metainfo.xml:7 +#. Display name of the application. msgid "Pineapple Pictures" msgstr "菠萝看图" -#. (itstool) path: component/summary -#: net.blumia.pineapple-pictures.metainfo.xml:9 +#. One-line summary shown in software centers. msgid "Image Viewer" msgstr "图像查看器" -#. (itstool) path: description/p -#: net.blumia.pineapple-pictures.metainfo.xml:12 +#. Description paragraph shown in the details page. msgid "" "Pineapple Pictures is a lightweight and easy-to-use image viewer that comes " "with a handy navigation thumbnail when zoom-in, and doesn't contain any " @@ -31,22 +28,18 @@ msgstr "" "菠萝看图是一个轻量级易用的图像查看器,在图片放大时提供了方便的鸟瞰导航功能," "且不包含任何图片管理功能。" -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:17 +#. Name of the application developers. +msgid "Gary (BLumia) Wang et al." +msgstr "Gary (BLumia) Wang 等人" + +#. Caption of the primary screenshot. msgid "Main window when an image file is loaded" msgstr "加载图片后的主窗口" -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:22 +#. Caption of the raster image zooming screenshot. msgid "Zooming in a raster image" msgstr "放大浏览位图" -#. (itstool) path: screenshot/caption -#: net.blumia.pineapple-pictures.metainfo.xml:27 +#. Caption of the vector image zooming screenshot. msgid "Zooming in a vector image" msgstr "放大浏览矢量图" - -#. (itstool) path: component/developer_name -#: net.blumia.pineapple-pictures.metainfo.xml:34 -msgid "Gary (BLumia) Wang et al." -msgstr "Gary (BLumia) Wang 等人"