Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions usr/lib/bulky/bulky.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,9 +642,9 @@ def on_scope_changed(self, widget):

def on_widget_change(self, widget):
if self.replace_regex_check.get_active():
self.find_entry.set_placeholder_text("Enter a regular expression; example: .+")
self.find_entry.set_placeholder_text( _("Enter a regular expression; example: .+") )
else:
self.find_entry.set_placeholder_text("Enter a search string; wildcards ? and * are supported.")
self.find_entry.set_placeholder_text( _("Enter a search string; wildcards ? and * allowed.") )
self.preview_changes()

def preview_changes(self):
Expand Down