Kodi Community Forum
Edit Main Category Title - Help Pls - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: MediaStream (https://forum.kodi.tv/forumdisplay.php?fid=69)
+----- Thread: Edit Main Category Title - Help Pls (/showthread.php?tid=56431)



Edit Main Category Title - Help Pls - moomookun - 2009-08-16

Hi, I am new to XBMC and MediaStream.

I would like to change the main menu of "Watch My Video" to "Setup My Video" but I don't know how. I know the setting is in the 720p/xml files but I don't know which one and which lines.

Can anyone help please?
Thank you


- nicoli_k - 2009-08-16

Edit the Home.xml file with any text editor and near the bottom, you'll see:

Code:
<description>My Videos Button</description>
            <label> $LOCALIZE[31001] </label>
            <label2> $LOCALIZE[31011] </label2>
            <visible>!Skin.HasSetting(HideVideos)</visible>
            <onclick>XBMC.ActivateWindow(24)</onclick>

Change the labels to make it say what you wish. for example change it to
Code:
<description>My Videos Button</description>
            <label> My Videos </label>
            <label2> Set Up </label2>
            <visible>!Skin.HasSetting(HideVideos)</visible>
            <onclick>XBMC.ActivateWindow(24)</onclick>

and it will say Set Up for the smaller top section, and My Videos for the larger bottom section of text.


- moomookun - 2009-08-16

Thank you very much nicoli! That is exactly what I wanted, Big Grin