diff --git a/po/warehouse.pot b/po/warehouse.pot index 75c2d43..d324df8 100644 --- a/po/warehouse.pot +++ b/po/warehouse.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.flattool.heliguy.Warehouse\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-11-13 13:49+0100\n" +"POT-Creation-Date: 2023-11-14 12:05-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: data/io.github.flattool.Warehouse.desktop.in:3 src/main.py:128 +#: data/io.github.flattool.Warehouse.desktop.in:3 msgid "Warehouse" msgstr "" diff --git a/src/main.py b/src/main.py index f8f52a8..1551689 100644 --- a/src/main.py +++ b/src/main.py @@ -125,7 +125,7 @@ class WarehouseApplication(Adw.Application): """Callback for the app.about action.""" about = Adw.AboutWindow( transient_for=self.props.active_window, - application_name=_("Warehouse"), + application_name="Warehouse", application_icon="io.github.flattool.Warehouse", developer_name="Heliguy", version=self.version, diff --git a/src/snapshots_window.py b/src/snapshots_window.py index 3f9c918..b52abab 100644 --- a/src/snapshots_window.py +++ b/src/snapshots_window.py @@ -131,7 +131,7 @@ class SnapshotsWindow(Adw.Window): except subprocess.CalledProcessError as e: print("Error in snapshots_windopw.py: createSnapshot():", e) GLib.idle_add(lambda *_a: self.toast_overlay.add_toast(Adw.Toast.new(_("Could not create snapshot")))) - if(int(time.time()) == epoch): + if(int(time.time()) == epoch): # Wait 1s if the snapshot is made too quickly, to prevent overriding a snapshot file subprocess.run(['sleep', '1s']) # `tar -tf filepath` to see the contents of a tar file