diff options
author | Garrett Brown <themagnificentmrb@gmail.com> | 2018-10-02 16:27:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 16:27:43 +0200 |
commit | 06531d7be3ef7cf4d4d1d4723a8d892e7c151d12 (patch) | |
tree | f65abb0efc4340ee0e4b75dfc108d38eeb1c1781 | |
parent | 8777af54995a770cd8f79f5f0d36792063f63faa (diff) | |
parent | ccf0f4c6b548f7f2f2ae0225752fc918ee8e1bc3 (diff) |
Merge pull request #14498 from garbear/help-controllers
Game OSD: Extend help dialog to explain lack of remote support
-rw-r--r-- | addons/resource.language.en_gb/resources/strings.po | 8 | ||||
-rw-r--r-- | addons/skin.estuary/xml/GameOSD.xml | 13 |
2 files changed, 18 insertions, 3 deletions
diff --git a/addons/resource.language.en_gb/resources/strings.po b/addons/resource.language.en_gb/resources/strings.po index 6b5c24f7b3..269b7ecafa 100644 --- a/addons/resource.language.en_gb/resources/strings.po +++ b/addons/resource.language.en_gb/resources/strings.po @@ -17490,7 +17490,13 @@ msgctxt "#35235" msgid "Press {0:s} to open the in-game menu." msgstr "" -#empty strings from id 35236 to 35249 +#. Additional help text shown when the user first plays a game. This will be removed in the future. +#: addons/skin.estuary/xml/GameOSD.xml +msgctxt "#35236" +msgid "In this release, only controllers can be used to play games." +msgstr "" + +#empty strings from id 35237 to 35249 #: xbmc/windows/GUIMediaWindow.cpp msgctxt "#35250" diff --git a/addons/skin.estuary/xml/GameOSD.xml b/addons/skin.estuary/xml/GameOSD.xml index 001db4f2ac..13b68d65db 100644 --- a/addons/skin.estuary/xml/GameOSD.xml +++ b/addons/skin.estuary/xml/GameOSD.xml @@ -10,13 +10,13 @@ <visible>System.GetBool(gamesgeneral.showosdhelp)</visible> <defaultcontrol always="true">1103</defaultcontrol> <centerleft>50%</centerleft> - <height>910</height> + <height>1040</height> <centertop>50%</centertop> <width>700</width> <animation effect="fade" time="200">VisibleChange</animation> <include content="DialogBackgroundCommons"> <param name="width" value="700" /> - <param name="height" value="910" /> + <param name="height" value="1040" /> <param name="header_label" value="$LOCALIZE[35221]" /> <param name="header_id" value="2" /> </include> @@ -37,6 +37,15 @@ <width>640</width> <height>640</height> </control> + <control type="textbox"> + <description>Additional help text. This will be removed in future versions.</description> + <bottom>30</bottom> + <left>30</left> + <right>30</right> + <height>130</height> + <font>font13</font> + <label>$LOCALIZE[35236]</label> + </control> <control type="button"> <description>Button to close the dialog</description> <top>0</top> |