Skip to content

Commit 4389e9d

Browse files
committed
nemo-query-editor.c: Don't translate an empty string.
1 parent 5e1fd4b commit 4389e9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nemo-query-editor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ nemo_query_editor_set_active (NemoQueryEditor *editor,
623623

624624
if (g_file_is_native (location) && !g_strv_contains (content_forbidden_dirs, editor->priv->base_uri)) {
625625
gtk_widget_set_sensitive (editor->priv->content_main_box, TRUE);
626-
gtk_entry_set_placeholder_text (GTK_ENTRY (editor->priv->content_entry), _(""));
626+
gtk_entry_set_placeholder_text (GTK_ENTRY (editor->priv->content_entry), "");
627627
} else {
628628
gtk_widget_set_sensitive (editor->priv->content_main_box, FALSE);
629629
gtk_entry_set_placeholder_text (GTK_ENTRY (editor->priv->content_entry),

0 commit comments

Comments
 (0)