missing localized strings

This commit is contained in:
Erica Z 2024-10-10 10:16:23 +00:00
parent 446bc3d6ae
commit c55b600a45
2 changed files with 14 additions and 14 deletions

View file

@ -10,24 +10,24 @@ template $WaveletSetup: Adw.NavigationPage {
Adw.Clamp { Adw.Clamp {
child: Adw.PreferencesGroup { child: Adw.PreferencesGroup {
title: "Authentication"; title: _("Authentication");
Adw.EntryRow server_url { Adw.EntryRow server_url {
title: "Server URL"; title: _("Server URL");
input-purpose: url; input-purpose: url;
} }
Adw.EntryRow username { Adw.EntryRow username {
title: "Username"; title: _("Username");
} }
Adw.PasswordEntryRow password { Adw.PasswordEntryRow password {
title: "Password"; title: _("Password");
} }
Adw.ActionRow status { Adw.ActionRow status {
title: "Status"; title: _("Status");
subtitle: "Not connected"; subtitle: _("Not connected");
styles [ styles [
"property", "property",
@ -35,7 +35,7 @@ template $WaveletSetup: Adw.NavigationPage {
} }
Adw.ButtonRow validate { Adw.ButtonRow validate {
title: "Connect and save"; title: _("Connect and save");
sensitive: false; sensitive: false;
} }
}; };

View file

@ -32,14 +32,14 @@ template $WaveletWindow: Adw.ApplicationWindow {
ListBoxRow sidebar_setup { ListBoxRow sidebar_setup {
Label { Label {
xalign: 0; xalign: 0;
label: "Setup"; label: _("Setup");
} }
} }
ListBoxRow sidebar_play_queue { ListBoxRow sidebar_play_queue {
Label { Label {
xalign: 0; xalign: 0;
label: "Play queue"; label: _("Play queue");
} }
} }
} }
@ -54,7 +54,7 @@ template $WaveletWindow: Adw.ApplicationWindow {
] ]
Adw.ButtonRow { Adw.ButtonRow {
title: "Shuffle all tracks"; title: _("Shuffle all tracks");
start-icon-name: "media-playlist-shuffle"; start-icon-name: "media-playlist-shuffle";
} }
} }
@ -66,28 +66,28 @@ template $WaveletWindow: Adw.ApplicationWindow {
Stack stack { Stack stack {
StackPage { StackPage {
name: "setup"; name: "setup";
title: "Setup"; title: _("Setup");
child: $WaveletSetup setup {}; child: $WaveletSetup setup {};
} }
StackPage { StackPage {
name: "artist_list"; name: "artist_list";
title: "Artists"; title: _("Artists");
child: $WaveletArtistList artist_list {}; child: $WaveletArtistList artist_list {};
} }
StackPage { StackPage {
name: "song_list"; name: "song_list";
title: "Songs"; title: _("Songs");
child: $WaveletSongList song_list {}; child: $WaveletSongList song_list {};
} }
StackPage { StackPage {
name: "play_queue"; name: "play_queue";
title: "Play queue"; title: _("Play queue");
child: $WaveletPlayQueue play_queue {}; child: $WaveletPlayQueue play_queue {};
} }