Fix a missleading string
This commit is contained in:
parent
21bf68e148
commit
04272a9d3f
2 changed files with 2 additions and 3 deletions
|
@ -1164,7 +1164,7 @@ msgid "Enter your Plex Media Server's IP or URL, Examples are:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#39217"
|
msgctxt "#39217"
|
||||||
msgid "Use HTTPS (SSL) connections? With Kodi 18 or later, HTTPS will likely not work!"
|
msgid "Use HTTPS (SSL) connections? Answer should probably be yes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#39218"
|
msgctxt "#39218"
|
||||||
|
|
|
@ -85,8 +85,7 @@ class InitialSetup(object):
|
||||||
if not port:
|
if not port:
|
||||||
return False
|
return False
|
||||||
url = '%s:%s' % (address, port)
|
url = '%s:%s' % (address, port)
|
||||||
# "Use HTTPS (SSL) connections? With Kodi 18 or later, HTTPS will likely
|
# "Use HTTPS (SSL) connections? Answer should probably be yes."
|
||||||
# not work!"
|
|
||||||
https = utils.yesno_dialog(utils.lang(29999), utils.lang(39217))
|
https = utils.yesno_dialog(utils.lang(29999), utils.lang(39217))
|
||||||
if https:
|
if https:
|
||||||
url = 'https://%s' % url
|
url = 'https://%s' % url
|
||||||
|
|
Loading…
Reference in a new issue