Bug Translate: Russian - 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: Ace 2 (https://forum.kodi.tv/forumdisplay.php?fid=190) +----- Thread: Bug Translate: Russian (/showthread.php?tid=166046) |
Translate: Russian - garict - 2013-05-30 /* Sorry for my bad English */ In the Russian translation of the menu items overlap occurs. Main menu "Settings": -> Appearance -> International -> Audio -> Song Submission -> Network -> Remote control -> Skin Settings -> Restore settings This is due to the fact that the Russian words longer than the English, as it can increase the width of the menu items? [Solved] Translate: Russian - garict - 2013-06-13 Solving: 1. Find includes.xml (\XBMC\addons\skin.ace\720p\) 2. Find include node <include name="SettingsButton">: 2.1 Change parameter <height> (from <height>40</height> to <height>50</height>) 2.1 Change parameter <aligny> (from <aligny>top</aligny> to <aligny>center</aligny>) 3. Find SkinSettings.xml (\XBMC\addons\skin.ace\720p\) 4. Find control node <control type="list" id="9100"> 5. Change 2 parameters <itemlayout> and <focusedlayout> From: Code: <focusedlayout width="240" height="40"> Code: <itemlayout width="240" height="50"> Done! |