Skip to content

Commit ce102c5

Browse files
committed
I had omitted two string translation tags with _(); here they are now.
1 parent f0ca43d commit ce102c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

usr/lib/bulky/bulky.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -642,9 +642,9 @@ def on_scope_changed(self, widget):
642642

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

650650
def preview_changes(self):

0 commit comments

Comments
 (0)