update translations

This commit is contained in:
Luke Pulverenti 2014-05-09 15:43:06 -04:00
parent 301d946c14
commit 843a0eee28
26 changed files with 154 additions and 156 deletions

View file

@ -17,7 +17,8 @@
tileColor: "#050810",
thumbImage: "https://github.com/MediaBrowser/MediaBrowser.Resources/raw/master/images/mbkinect/thumb.png",
externalUrl: "http://mediabrowser.tv/community/index.php?/topic/850-media-browser-kinect-sensor-plug-in-support/",
isPremium: false
isPremium: false,
isExternal: true
});
return apps;
@ -108,15 +109,17 @@
html += "</div>";
html += "<div class='posterItemText packageReviewText' style='color:#000;'>";
html += plugin.price > 0 ? "$" + plugin.price.toFixed(2) : "Free";
html += Dashboard.getStoreRatingHtml(plugin.avgRating, plugin.id, plugin.name);
if (!plugin.isExternal) {
html += "<div class='posterItemText packageReviewText' style='color:#000;'>";
html += plugin.price > 0 ? "$" + plugin.price.toFixed(2) : "Free";
html += Dashboard.getStoreRatingHtml(plugin.avgRating, plugin.id, plugin.name);
html += "<span class='storeReviewCount'>";
html += " " + plugin.totalRatings + " Reviews";
html += "</span>";
html += "<span class='storeReviewCount'>";
html += " " + plugin.totalRatings + " Reviews";
html += "</span>";
html += "</div>";
html += "</div>";
}
var installedPlugin = plugin.isApp ? null : installedPlugins.filter(function (ip) {
return ip.Name == plugin.name;