Skip to content

Commit dea1e96

Browse files
committed
Fixed notification dialog to use localize resolve.
1 parent 50dfcf7 commit dea1e96

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • resources/site-packages/lt2http

resources/site-packages/lt2http/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def translatePath(path):
2828
def notify(message, header=ADDON_NAME, time=5000, image=ADDON_ICON):
2929
sound = ADDON.getSetting('do_not_disturb') == 'false'
3030
dialog = xbmcgui.Dialog()
31-
return dialog.notification(toUtf8(header), toUtf8(message), toUtf8(image), time, sound)
31+
return dialog.notification(getLocalizedLabel(header), getLocalizedLabel(message), toUtf8(image), time, sound)
3232

3333
def dialog_ok(message, header=ADDON_NAME):
3434
dialog = xbmcgui.Dialog()

0 commit comments

Comments
 (0)