From 92db06a83c4ba62fd54e718707b1494981179603 Mon Sep 17 00:00:00 2001 From: octoghost <40995059+octoghost@users.noreply.github.com> Date: Tue, 15 Oct 2019 11:28:52 +0200 Subject: Fix localized pause UI logic --- src/fr-window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fr-window.c') diff --git a/src/fr-window.c b/src/fr-window.c index fc94f2e..cd59321 100644 --- a/src/fr-window.c +++ b/src/fr-window.c @@ -2304,7 +2304,7 @@ static void change_button_label (FrWindow *window, const gchar *state; state = gtk_button_get_label (GTK_BUTTON (button)); - if (g_strrstr ("_Pause", state) != NULL) + if (g_strrstr (_("_Pause"), state) != NULL) { gtk_widget_set_visible (window->priv->pd_progress_bar, FALSE); fr_command_message (window->archive->command, _("Process paused")); -- cgit v1.2.1