diff options
author | octoghost <[email protected]> | 2019-10-15 11:28:52 +0200 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-10-20 16:13:58 +0200 |
commit | 92db06a83c4ba62fd54e718707b1494981179603 (patch) | |
tree | 54e8cacdb58cdb9d4f270fb61742449823baa3a2 | |
parent | f12fe1b53154da6cbd3196f7dbeed8b6dcaae0d4 (diff) | |
download | engrampa-92db06a83c4ba62fd54e718707b1494981179603.tar.bz2 engrampa-92db06a83c4ba62fd54e718707b1494981179603.tar.xz |
Fix localized pause UI logic
-rw-r--r-- | src/fr-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
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")); |