Skip to content

Commit

Permalink
fix unlocalised strings
Browse files Browse the repository at this point in the history
  • Loading branch information
jurialmunkey committed Jan 6, 2022
1 parent 2c5c36d commit 3de2508
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="context.themoviedb.helper" version="1.0.5" name="TMDbHelper - Additional Context Menu Items" provider-name="jurialmunkey">
<addon id="context.themoviedb.helper" version="1.0.6" name="TMDbHelper - Additional Context Menu Items" provider-name="jurialmunkey">
<requires>
<import addon="xbmc.python" version="3.0.0" />
<import addon="plugin.video.themoviedb.helper" version="4.0.68" />
</requires>
<extension point="kodi.context.item">
<menu id="kodi.core.main">
<menu>
<label>TMDbHelper Options</label>
<label>$ADDON[plugin.video.themoviedb.helper 32145]</label>
<item library="context-playusing.py">
<label>Select player</label>
<label>$ADDON[plugin.video.themoviedb.helper 32322]</label>
<visible>[String.IsEqual(ListItem.dbtype,episode) | String.IsEqual(ListItem.dbtype,movie)] + String.IsEmpty(ListItem.Property(tmdbhelper.context.playusing)) + String.IsEmpty(ListItem.Property(item.info))</visible>
</item>
<item library="context-related.py">
<label>Browse lists</label>
<label>$ADDON[plugin.video.themoviedb.helper 32235]</label>
<visible>[String.IsEqual(ListItem.dbtype,episode) | String.IsEqual(ListItem.dbtype,tvshow) | String.IsEqual(ListItem.dbtype,movie)] + String.IsEmpty(ListItem.Property(tmdbhelper.context.related)) + String.IsEmpty(ListItem.Property(item.info))</visible>
</item>
<item library="context-trakt.py">
<label>Trakt options</label>
<label>$ADDON[plugin.video.themoviedb.helper 32295]</label>
<visible>[String.IsEqual(ListItem.dbtype,episode) | String.IsEqual(ListItem.dbtype,tvshow) | String.IsEqual(ListItem.dbtype,movie)] + String.IsEmpty(ListItem.Property(tmdbhelper.context.trakt)) + String.IsEmpty(ListItem.Property(item.info))</visible>
</item>
<item library="context-refresh.py">
<label>Refresh details</label>
<label>$ADDON[plugin.video.themoviedb.helper 32233]</label>
<visible>[String.IsEqual(ListItem.dbtype,episode) | String.IsEqual(ListItem.dbtype,tvshow) | String.IsEqual(ListItem.dbtype,movie)] + String.IsEmpty(ListItem.Property(tmdbhelper.context.refresh)) + String.IsEmpty(ListItem.Property(item.info))</visible>
</item>
<item library="context-artwork.py">
<label>Manage artwork</label>
<label>$ADDON[plugin.video.themoviedb.helper 32222]</label>
<visible>[String.IsEqual(ListItem.dbtype,tvshow) | String.IsEqual(ListItem.dbtype,movie)] + String.IsEmpty(ListItem.Property(tmdbhelper.context.artwork)) + String.IsEmpty(ListItem.Property(item.info))</visible>
</item>
</menu>
Expand Down

0 comments on commit 3de2508

Please sign in to comment.