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..3f6f98d --- /dev/null +++ b/po/extra/meson.build @@ -0,0 +1,5 @@ +i18n.gettext('extra', + args: '--directory=' + meson.source_root(), + preset: 'glib', + install: false +) \ 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')