From 5e5455ce2f5b8b16a721b8c26cfc99859d6ca634 Mon Sep 17 00:00:00 2001 From: Edip Hzr Date: Fri, 19 Jul 2024 23:34:42 +0300 Subject: [PATCH 1/3] fix: correct wrong translation --- po/tr.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/tr.po b/po/tr.po index 9e9fcf5..8faff08 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: 1.0.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-07-08 19:10+0300\n" -"PO-Revision-Date: 2024-07-08 19:13+0300\n" +"PO-Revision-Date: 2024-07-19 23:23+0300\n" "Last-Translator: Edip Hzr \n" -"Language-Team: Turkish <>\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: Gtranslator 42.0\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Gtranslator 46.1\n" #: src/data/ui/AppWindow.ui:106 msgid "Pardus Boot Repair" @@ -130,7 +130,7 @@ msgstr "Sürdür" #: src/data/ui/AppWindow.ui:593 msgid "Helps to repair broken systems" -msgstr "Bozuk paketleri onarmaya yardımcı olur." +msgstr "Bozuk sistemlerin onarılmasına yardımcı olur" #: src/data/ui/AppWindow.ui:595 msgid "Website" From 7d077d5f08392ab911213b38438ddb4e9c1bd15a Mon Sep 17 00:00:00 2001 From: Edip Hzr Date: Fri, 19 Jul 2024 23:40:46 +0300 Subject: [PATCH 2/3] fix: update app version to 1.0.0 --- src/Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.py b/src/Main.py index 1ace5b9..ae2e1fc 100755 --- a/src/Main.py +++ b/src/Main.py @@ -14,7 +14,7 @@ gettext.install("pardus-boot-repair", "/usr/share/locale/") Handy.init() -APPVERSION = "0.5.2" +APPVERSION = "1.0.0" APP_DIR = os.path.dirname(os.path.realpath(__file__)) resource = Gio.resource_load( From 8900885a5ac74cfe0eb2ad76c9168eb56c6971a6 Mon Sep 17 00:00:00 2001 From: Edip <75365757+Vilez0@users.noreply.github.com> Date: Mon, 11 Nov 2024 20:25:32 +0300 Subject: [PATCH 3/3] fix: fix typo --- src/Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.py b/src/Main.py index ae2e1fc..65007e7 100755 --- a/src/Main.py +++ b/src/Main.py @@ -136,7 +136,7 @@ def on_button_about_clicked(self, widget): self.dialog_about.hide() """ - row functions is seperated to at least 2 subfunctions + row functions are seperated to at least 2 subfunctions pre() and post() pre() function will be called first and it will prepare the page for the user input or execute the command then set the post_command to the post() function post_command is a function that will be called after the vte command is executed (see vte_cb() function)