From a15f17ac99ce8e9184c2d0b6d4646579d6f1e04b Mon Sep 17 00:00:00 2001 From: Joshua Strobl Date: Wed, 7 Jul 2021 22:28:19 +0300 Subject: [PATCH] Rename "Local Library" buttons to "Library" to be consistent with Podcasts -> Library. --- src/koto-nav.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/koto-nav.c b/src/koto-nav.c index 3d84a44..44f9b63 100644 --- a/src/koto-nav.c +++ b/src/koto-nav.c @@ -111,7 +111,7 @@ void koto_nav_create_audiobooks_section(KotoNav * self) { koto_expander_set_content(a_expander, new_content); - self->audiobooks_local = koto_button_new_plain("Local Library"); + self->audiobooks_local = koto_button_new_plain("Library"); self->audiobooks_audible = koto_button_new_plain("Audible"); self->audiobooks_librivox = koto_button_new_plain("LibriVox"); @@ -128,7 +128,7 @@ void koto_nav_create_music_section(KotoNav * self) { GtkWidget * new_content = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0); - self->music_local = koto_button_new_plain("Local Library"); + self->music_local = koto_button_new_plain("Library"); self->music_radio = koto_button_new_plain("Radio"); gtk_box_append(GTK_BOX(new_content), GTK_WIDGET(self->music_local));