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

Merge pull request #2083 from BaronGreenback/pluginMod

Multi-repository plugin modification
This commit is contained in:
Bill Thornton 2020-11-21 15:33:16 -05:00 committed by GitHub
commit ef7ff894b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -24,7 +24,7 @@ function populateVersions(packageInfo, page, installedPlugin) {
for (let i = 0; i < packageInfo.versions.length; i++) { for (let i = 0; i < packageInfo.versions.length; i++) {
const version = packageInfo.versions[i]; const version = packageInfo.versions[i];
html += '<option value="' + version.version + '">' + version.version + '</option>'; html += '<option value="' + version.version + '">' + globalize.translate('PluginFromRepo', version.version, version.repositoryName) + '</option>';
} }
const selectmenu = $('#selectVersion', page).html(html); const selectmenu = $('#selectVersion', page).html(html);

View file

@ -1158,6 +1158,7 @@
"ProductionLocations": "Production locations", "ProductionLocations": "Production locations",
"Profile": "Profile", "Profile": "Profile",
"Programs": "Programs", "Programs": "Programs",
"PluginFromRepo": "{0} from repository {1}",
"Quality": "Quality", "Quality": "Quality",
"QuickConnect": "Quick Connect", "QuickConnect": "Quick Connect",
"QuickConnectActivationSuccessful": "Successfully activated", "QuickConnectActivationSuccessful": "Successfully activated",