Kodi Community Forum
Help on renaming Menu - 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: AppTV (https://forum.kodi.tv/forumdisplay.php?fid=76)
+---- Thread: Help on renaming Menu (/showthread.php?tid=47187)



Help on renaming Menu - an2ny0515 - 2009-03-19

Help I want to rename some Item Menu like Programs, I want it be Name Mygame, Please help me

Image


- doobiest - 2009-03-19

Bump, I use the same skin and want that too. Though I want my Movies button to be renamed to just Video.


- althekiller - 2009-03-20

You just need to modify the language/[your language here]/strings.xml file to say what you want. Those should be in the system wide strings, but be aware that some skins contain local skin specific strings as well.


- doobiest - 2009-03-20

Thanks dude!


- an2ny0515 - 2009-03-20

Thanks For The help


- kermyb123 - 2009-03-22

How would one completely remove an itemHuh


- CHI3f - 2009-03-23

kermyb123 Wrote:How would one completely remove an itemHuh

Starting on line 73 of Home.xml found in the PAL folder of the skin you will see a section of code like this,

Code:
            <content>
                <item>
                     <icon>icon-video.png</icon>
                     <thumb>icon-video-blur1.png</thumb>
                    <label>31001</label>
                    <onclick>ActivateWindow(MyVideoFiles)</onclick>
                    <visible>!Skin.HasSetting(movie-library)</visible>
                </item>
                <item>
                     <icon>icon-video.png</icon>
                     <thumb>icon-video-blur1.png</thumb>
                    <label>31001</label>
                    <onclick>ActivateWindow(MyVideoLibrary,MovieTitles)</onclick>
                    <visible>Skin.HasSetting(movie-library)</visible>
                </item>
                <item>
                     <icon>icon-tv.png</icon>
                     <thumb>icon-tv-blur1.png</thumb>
                    <label>31010</label>
                    <onclick>ActivateWindow(MyVideoLibrary,tvshowtitles)</onclick>
                    <visible>!Skin.HasSetting(tv-library)</visible>
                </item>
                <item>
                     <icon>icon-youtube.png</icon>
                     <thumb>icon-youtube-blur1.png</thumb>
                    <label>YouTube</label>
                    <onclick>XBMC.RunScript(Q:\scripts\YouTube\default.py)</onclick>
                    <visible>Skin.HasSetting(home-youtube)</visible>
                </item>
                <item>
                     <icon>icon-music.png</icon>
                     <thumb>icon-music-blur1.png</thumb>
                    <label>31003</label>
                    <onclick>ActivateWindow(MyMusic)</onclick>
                </item>
                <item>
                     <icon>icon-programs.png</icon>
                     <thumb>icon-programs-blur1.png</thumb>
                    <label>31002</label>
                    <onclick>ActivateWindow(MyPrograms)</onclick>
                </item>
                <item>
                     <icon>icon-photo.png</icon>
                     <thumb>icon-photo-blur1.png</thumb>
                    <label>31004</label>
                    <onclick>ActivateWindow(MyPictures)</onclick>
                </item>
                <item>
                     <icon>icon-weather.png</icon>
                     <thumb>icon-weather-blur1.png</thumb>
                    <label>31005</label>
                    <onclick>ActivateWindow(Weather)</onclick>
                    <visible>Skin.HasSetting(home-weather)</visible>
                </item>
                <item>
                     <icon>icon-settings.png</icon>
                     <thumb>icon-settings-blur1.png</thumb>
                    <label>31015</label>
                    <onclick>ActivateWindow(50)</onclick>
                </item>
                <item>
                     <icon>icon-disc.png</icon>
                     <thumb>icon-disc-blur1.png</thumb>
                    <label>31009</label>
                    <onclick>XBMC.PlayDVD</onclick>
                    <visible>System.HasMediaDVD</visible>
                </item>
            </content>

All you have to do is find the button you want to remove it from <item> to </item>.


- kermyb123 - 2009-03-24

Found it out before you posted the reply - probably will help another at some point - thanks for the reply.