From 396698b373863c2aaaaa75bd1a6c6d1203c347fc Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Fri, 11 Jul 2025 19:55:48 +0900 Subject: [PATCH] Make back the app name translatable --- data/atlas.metainfo.xml.in | 2 +- src/MainWindow.vala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/atlas.metainfo.xml.in b/data/atlas.metainfo.xml.in index e6feabd..dd8c6dc 100644 --- a/data/atlas.metainfo.xml.in +++ b/data/atlas.metainfo.xml.in @@ -7,7 +7,7 @@ CC0-1.0 GPL-3.0-or-later - Atlas + Atlas View where to go

diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 3e5fc74..64dcf1e 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -42,7 +42,7 @@ public class Atlas.MainWindow : Adw.ApplicationWindow { private MapWidget map_widget; construct { - title = "Atlas"; + title = _("Atlas"); add_action_entries (ACTION_ENTRIES, this); location_store = new ListStore (typeof (Geocode.Place));