Need some help with addon settings (incorrect labels)
#1
Hi all,

i have some trouble with my addon settings. In Kodi 17 all is fine, but in V18 there is a label id error.
The setting shows the wrong label instead the setting.
The lsep show the id number instead the text from string.po

i treid lot of things (split setting categories, renamed settings, deleted setting) without success.
there are some changes in kodi, to change something, or is there a bug?
yes i know, there is a special character issue in strings.po, but i mean that's not the main bug.

you can get a test addon from this url:
https://github.com/harryberlin/my-xbmc-k...v0.0.1.zip

screenshots of bug:
Image

Image
empty signature
Reply
#2
Please double check your code before opening an issue on GitHub in future.

Line 152 -

xml:
<setting label="30150&#xD;&#xA;" type="lsep"></setting>
Reply
#3
thanks for feedback.
but can't figure out, why the other enum setting only shows "Programme":
xml:
<setting label="30054" id="mir_fold" type="enum" default="0" lvalues="Off|Single Press|After Hold|Double Press"></setting>

Image
empty signature
Reply
#4
xml:
<setting label="30054" id="mir_fold" type="enum" default="0" lvalues="Off|Single Press|After Hold|Double Press"></setting>

That's wrong.  You need to define 'Off', 'Single Press', 'After Hold' etc etc in strings.po for each langauge and then use the string id's in lvalues.
xml:
lvalues="32001|32002|32003|32004"
Learning Linux the hard way !!
Reply
#5
thanks for help
empty signature
Reply

Logout Mark Read Team Forum Stats Members Help
Need some help with addon settings (incorrect labels)0