Skip to content

Commit

Permalink
Use _ for gettext.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtwebster committed May 14, 2024
1 parent f25db23 commit 9a0beb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usr/lib/webapp-manager/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def create_webapp(self, name, url, icon, category, browser, custom_parameters, i
desktop_file.write("[Desktop Entry]\n")
desktop_file.write("Version=1.0\n")
desktop_file.write("Name=%s\n" % name)
desktop_file.write("Comment=%s\n" % gettext.gettext("Web App"))
desktop_file.write("Comment=%s\n" % _("Web App"))

exec_string = self.get_exec_string(browser, codename, custom_parameters, icon, isolate_profile, navbar,
privatewindow, url)
Expand Down

0 comments on commit 9a0beb8

Please sign in to comment.