From e21d810266f098c5bab78309b831f014c8ceeab3 Mon Sep 17 00:00:00 2001 From: Colin Clark Date: Sat, 2 Mar 2024 10:53:07 +0000 Subject: [PATCH] Fix untranslated text --- src/preferences.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/preferences.cc b/src/preferences.cc index a56f3bff..869322a0 100644 --- a/src/preferences.cc +++ b/src/preferences.cc @@ -4274,7 +4274,7 @@ void show_about_window(LayoutWindow *lw) g_input_stream_read_all(in_stream_translators, translators, size, &bytes_read, nullptr, nullptr); g_input_stream_close(in_stream_translators, nullptr, nullptr); - comment = g_strconcat(N_("Project created by John Ellis\nGQview 1998\nGeeqie 2007\n\n\nDevelopment and bug reports:\n"), GQ_EMAIL_ADDRESS, N_("\nhttps://github.com/BestImageViewer/geeqie/issues"), NULL); + comment = g_strconcat(_("Project created by John Ellis\nGQview 1998\nGeeqie 2007\n\n\nDevelopment and bug reports:\n"), GQ_EMAIL_ADDRESS, _("\nhttps://github.com/BestImageViewer/geeqie/issues"), NULL); artists[0] = g_strdup("Néstor Díaz Valencia "); artists[1] = nullptr; -- 2.20.1