Skip to content
This repository has been archived by the owner on Oct 30, 2022. It is now read-only.

Commit

Permalink
🐛 - Fix labels on save data prompts
Browse files Browse the repository at this point in the history
  • Loading branch information
drinfernoo committed Jun 15, 2020
1 parent 73f328e commit 557ba4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/libs/debridit.py
Expand Up @@ -447,7 +447,7 @@ def auto_update(who):
dialog = xbmcgui.Dialog()

if dialog.yesno(CONFIG.ADDONTITLE,
"[COLOR {0}]Would you like to save the [COLOR {1}]Debrid Info[/COLOR] for [COLOR {2}]{3}[/COLOR]?".format(CONFIG.COLOR2, CONFIG.COLOR1, CONFIG.COLOR1, n),
"Would you like to save the [COLOR {0}]Debrid Info[/COLOR] for [COLOR {1}]{2}[/COLOR]?".format(CONFIG.COLOR2, CONFIG.COLOR1, n),
"Addon: [COLOR springgreen][B]{0}[/B][/COLOR]".format(u),
"Saved:[/COLOR] [COLOR red][B]{0}[/B][/COLOR]".format(su) if not su == '' else 'Saved:[/COLOR] [COLOR red][B]None[/B][/COLOR]',
yeslabel="[B][COLOR springreen]Save Debrid[/COLOR][/B]",
Expand Down
2 changes: 1 addition & 1 deletion resources/libs/loginit.py
Expand Up @@ -891,7 +891,7 @@ def auto_update(who):
dialog = xbmcgui.Dialog()

if dialog.yesno(CONFIG.ADDONTITLE,
"[COLOR {0}]Would you like to save the [COLOR {0}]Login Info[/COLOR] for [COLOR {1}]{2}[/COLOR]?".format(CONFIG.COLOR2, CONFIG.COLOR1, CONFIG.COLOR1, n),
"Would you like to save the [COLOR {0}]Login Info[/COLOR] for [COLOR {1}]{2}[/COLOR]?".format(CONFIG.COLOR2, CONFIG.COLOR1, n),
"Addon: [COLOR springgreen][B]{0}[/B][/COLOR]".format(u),
"Saved:[/COLOR] [COLOR red][B]{0}[/B][/COLOR]".format(su) if not su == '' else 'Saved:[/COLOR] [COLOR red][B]None[/B][/COLOR]',
yeslabel="[B][COLOR springgreen]Save Data[/COLOR][/B]",
Expand Down
2 changes: 1 addition & 1 deletion resources/libs/traktit.py
Expand Up @@ -365,7 +365,7 @@ def auto_update(who):
dialog = xbmcgui.Dialog()

if dialog.yesno(CONFIG.ADDONTITLE,
"[COLOR {0}]Would you like to save the [COLOR {1}]Trakt Data[/COLOR] for [COLOR {2}]{3}[/COLOR]?".format(CONFIG.COLOR2, CONFIG.COLOR1, CONFIG.COLOR1, n),
"Would you like to save the [COLOR {0}]Trakt Data[/COLOR] for [COLOR {1}]{2}[/COLOR]?".format(CONFIG.COLOR2, CONFIG.COLOR1, n),
"Addon: [COLOR springgreen][B]{0}[/B][/COLOR]".format(u),
"Saved:[/COLOR] [COLOR red][B]{0}[/B][/COLOR]".format(su) if not su == '' else 'Saved:[/COLOR] [COLOR red][B]None[/B][/COLOR]',
yeslabel="[B][COLOR springgreen]Save Data[/COLOR][/B]",
Expand Down

0 comments on commit 557ba4c

Please sign in to comment.