diff --git a/usr/lib/bulky/bulky.py b/usr/lib/bulky/bulky.py index 463d9d4..0d04f4d 100755 --- a/usr/lib/bulky/bulky.py +++ b/usr/lib/bulky/bulky.py @@ -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):