1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

use translations for status string

This commit is contained in:
dkanada 2020-12-28 13:51:57 +09:00 committed by GitHub
parent 1c3f38663d
commit 908c7b94ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,7 +79,7 @@ function getPluginCardHtml(plugin, pluginConfigurationPages) {
html += "<div class='cardText'>";
html += configPage && configPage.DisplayName ? configPage.DisplayName : plugin.Name;
html += '<br/>Status: ' + plugin.Status + '</div>';
html += '<br/>' + globalize.translate('LabelStatus') + ' ' + plugin.Status + '</div>';
html += "<div class='cardText cardText-secondary'>";
html += plugin.Version;
html += '</div>';