From 2ee1de74ac15e5b453df40ccd77205585a8c1db1 Mon Sep 17 00:00:00 2001 From: lenemter Date: Sun, 13 Oct 2024 10:47:37 +0300 Subject: [PATCH 1/2] Setup extra translations --- po/extra/LINGUAS | 0 po/extra/POTFILES | 2 ++ po/extra/extra.pot | 44 ++++++++++++++++++++++++++++++++++++++++++++ po/extra/meson.build | 4 ++++ po/meson.build | 4 +++- 5 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 po/extra/LINGUAS create mode 100644 po/extra/POTFILES create mode 100644 po/extra/extra.pot create mode 100644 po/extra/meson.build diff --git a/po/extra/LINGUAS b/po/extra/LINGUAS new file mode 100644 index 0000000..e69de29 diff --git a/po/extra/POTFILES b/po/extra/POTFILES new file mode 100644 index 0000000..fb735a4 --- /dev/null +++ b/po/extra/POTFILES @@ -0,0 +1,2 @@ +data/app-generator.appdata.xml.in +data/app-generator.desktop.in \ No newline at end of file diff --git a/po/extra/extra.pot b/po/extra/extra.pot new file mode 100644 index 0000000..9a91e74 --- /dev/null +++ b/po/extra/extra.pot @@ -0,0 +1,44 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the extra package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: extra\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-10-13 10:46+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: data/app-generator.appdata.xml.in:6 data/app-generator.desktop.in:6 +msgid "App Generator" +msgstr "" + +#: data/app-generator.appdata.xml.in:7 +msgid "Create an elementary OS app using one of the pre-made app templates" +msgstr "" + +#: data/app-generator.appdata.xml.in:9 +msgid "" +"App Generator streamlines the process of creating Vala and GTK projects, " +"allowing you to quickly get started without having to configure everything " +"from scratch. With just a few clicks, it generates a well-organized and " +"functional project structure, optimizing your workflow and saving you from " +"repetitive setup tasks. Perfect for developers who want to focus on coding " +"without worrying about configuration details." +msgstr "" + +#: data/app-generator.appdata.xml.in:29 +msgid "First Release!!!" +msgstr "" + +#: data/app-generator.desktop.in:7 +msgid "Create an elementary OS app using one of the pre-made app templates." +msgstr "" diff --git a/po/extra/meson.build b/po/extra/meson.build new file mode 100644 index 0000000..ceac4a6 --- /dev/null +++ b/po/extra/meson.build @@ -0,0 +1,4 @@ +i18n.gettext('extra', + args: '--directory=' + meson.source_root(), + preset: 'glib' +) \ No newline at end of file diff --git a/po/meson.build b/po/meson.build index 17f413d..c8845b0 100644 --- a/po/meson.build +++ b/po/meson.build @@ -1,4 +1,6 @@ i18n.gettext(meson.project_name(), args: '--directory=' + meson.source_root(), preset: 'glib' -) \ No newline at end of file +) + +subdir('extra') From 9b10f4d60b98688cdb60353447668bf058e14365 Mon Sep 17 00:00:00 2001 From: Leo Date: Sun, 13 Oct 2024 11:01:33 +0300 Subject: [PATCH 2/2] Update po/extra/meson.build Co-authored-by: Ryo Nakano --- po/extra/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/extra/meson.build b/po/extra/meson.build index ceac4a6..3f6f98d 100644 --- a/po/extra/meson.build +++ b/po/extra/meson.build @@ -1,4 +1,5 @@ i18n.gettext('extra', args: '--directory=' + meson.source_root(), - preset: 'glib' + preset: 'glib', + install: false ) \ No newline at end of file