summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroctoghost <[email protected]>2019-10-15 11:28:52 +0200
committerPablo Barciela <[email protected]>2019-10-20 16:15:14 +0200
commit1a4a1db06335e25ba3fc73368bddcb5e2a55ffc2 (patch)
tree2cce72c6429e5f715a887e50a5d9f2d12674d413
parent65227c8cec507c291c53a4b6c3452209cd3bc3fc (diff)
downloadengrampa-1a4a1db06335e25ba3fc73368bddcb5e2a55ffc2.tar.bz2
engrampa-1a4a1db06335e25ba3fc73368bddcb5e2a55ffc2.tar.xz
Fix localized pause UI logic
-rw-r--r--src/fr-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fr-window.c b/src/fr-window.c
index 2fc9736..48af62d 100644
--- a/src/fr-window.c
+++ b/src/fr-window.c
@@ -2299,7 +2299,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"));