diff options
author | ronie <ronie@users.noreply.github.com> | 2016-07-30 12:23:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-30 12:23:38 +0200 |
commit | 40b7793f1bea249bc7043d22572ef2c2fb734aa6 (patch) | |
tree | 2d83c568a65958f68ef2daef5bba375fb30437e3 | |
parent | 9f6bc1c2875c9107f1ccd9eb6244a903c158db69 (diff) | |
parent | f5596ca19fab2d5dcc8441a01156e9d1cc3e73ac (diff) |
Merge pull request #10191 from ronie/estouchy20
[skin.estouchy] update
-rw-r--r-- | addons/skin.estouchy/addon.xml | 2 | ||||
-rw-r--r-- | addons/skin.estouchy/changelog.txt | 3 | ||||
-rw-r--r-- | addons/skin.estouchy/xml/DialogSelect.xml | 4 | ||||
-rw-r--r-- | addons/skin.estouchy/xml/Includes.xml | 7 |
4 files changed, 9 insertions, 7 deletions
diff --git a/addons/skin.estouchy/addon.xml b/addons/skin.estouchy/addon.xml index 3f6511edf5..073bc50dc4 100644 --- a/addons/skin.estouchy/addon.xml +++ b/addons/skin.estouchy/addon.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<addon id="skin.estouchy" version="1.0.19" name="Estouchy" provider-name="Team Kodi"> +<addon id="skin.estouchy" version="1.0.20" name="Estouchy" provider-name="Team Kodi"> <requires> <import addon="xbmc.gui" version="5.12.0"/> </requires> diff --git a/addons/skin.estouchy/changelog.txt b/addons/skin.estouchy/changelog.txt index 216d14a677..d7691b536e 100644 --- a/addons/skin.estouchy/changelog.txt +++ b/addons/skin.estouchy/changelog.txt @@ -1,3 +1,6 @@ +V1.0.20 +- Fix seeklabel + V1.0.19 - Updated language files from Transifex diff --git a/addons/skin.estouchy/xml/DialogSelect.xml b/addons/skin.estouchy/xml/DialogSelect.xml index b3467dbc91..c616eaf78a 100644 --- a/addons/skin.estouchy/xml/DialogSelect.xml +++ b/addons/skin.estouchy/xml/DialogSelect.xml @@ -153,7 +153,7 @@ <font>font22</font> <align>left</align> <aligny>center</aligny> - <label>$INFO[ListItem.AddonSummary]</label> + <label>$INFO[ListItem.Label2]</label> </control> <control type="image"> <posx>555</posx> @@ -190,7 +190,7 @@ <font>font22</font> <align>left</align> <aligny>center</aligny> - <label>$INFO[ListItem.AddonSummary]</label> + <label>$INFO[ListItem.Label2]</label> </control> <control type="image"> <posx>555</posx> diff --git a/addons/skin.estouchy/xml/Includes.xml b/addons/skin.estouchy/xml/Includes.xml index 911ce765ba..512fc4179a 100644 --- a/addons/skin.estouchy/xml/Includes.xml +++ b/addons/skin.estouchy/xml/Includes.xml @@ -70,12 +70,11 @@ <value>icon_breadcrumb_settings.png</value> </variable> <variable name="SeekLabel"> + <value condition="!String.IsEmpty(Player.SeekStepSize)">[UPPERCASE]$LOCALIZE[773][/UPPERCASE] $INFO[Player.SeekStepSize]</value> + <value condition="!String.IsEmpty(Player.SeekOffset)">[UPPERCASE]$LOCALIZE[773][/UPPERCASE] $INFO[Player.SeekOffset]</value> <value condition="Player.Forwarding">$LOCALIZE[31044] $VAR[Speed]</value> <value condition="Player.Rewinding">$LOCALIZE[31045] $VAR[Speed]</value> - <value condition="Player.Seeking + !Player.DisplayAfterSeek">[UPPERCASE]$LOCALIZE[773][/UPPERCASE]</value> - <value condition="Player.Seeking">$INFO[Player.SeekTime]</value> - <value condition="Player.DisplayAfterSeek + ![Player.Forwarding | Player.Rewinding]">[UPPERCASE]$LOCALIZE[773][/UPPERCASE] $INFO[Player.SeekOffset]</value> - <value condition="!String.IsEmpty(Player.SeekStepSize) + ![Player.Forwarding | Player.Rewinding]">[UPPERCASE]$LOCALIZE[773][/UPPERCASE] $INFO[Player.SeekStepSize]</value> + <value condition="Player.Paused">[UPPERCASE]$LOCALIZE[31043][/UPPERCASE]</value> </variable> <variable name="Speed"> <value condition="Player.Forwarding2x | Player.Rewinding2x">2x</value> |