mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix string
This commit is contained in:
parent
c14b20727a
commit
faa78ebff1
2 changed files with 3 additions and 3 deletions
|
@ -83,7 +83,7 @@ function performInstallation(page, name, guid, version) {
|
||||||
loading.hide();
|
loading.hide();
|
||||||
alertText(globalize.translate('MessagePluginInstalled'));
|
alertText(globalize.translate('MessagePluginInstalled'));
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
alertText(globalize.translate('MessagePluginIntallError'));
|
alertText(globalize.translate('MessagePluginInstallError'));
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ function performInstallation(page, name, guid, version) {
|
||||||
msg += globalize.translate('PleaseConfirmPluginInstallation');
|
msg += globalize.translate('PleaseConfirmPluginInstallation');
|
||||||
|
|
||||||
import('confirm').then(({default: confirm}) => {
|
import('confirm').then(({default: confirm}) => {
|
||||||
confirm.default(msg, globalize.translate('HeaderConfirmPluginInstallation')).then(function () {
|
confirm(msg, globalize.translate('HeaderConfirmPluginInstallation')).then(function () {
|
||||||
alertCallback();
|
alertCallback();
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
console.debug('plugin not installed');
|
console.debug('plugin not installed');
|
||||||
|
|
|
@ -1282,7 +1282,7 @@
|
||||||
"PleaseRestartServerName": "Please restart Jellyfin Server - {0}.",
|
"PleaseRestartServerName": "Please restart Jellyfin Server - {0}.",
|
||||||
"PleaseSelectTwoItems": "Please select at least two items.",
|
"PleaseSelectTwoItems": "Please select at least two items.",
|
||||||
"MessagePluginInstalled": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.",
|
"MessagePluginInstalled": "The plugin has been successfully installed. Jellyfin Server will need to be restarted for changes to take effect.",
|
||||||
"MessagePluginIntallError": "An error occured while installing the plugin.",
|
"MessagePluginInstallError": "An error occured while installing the plugin.",
|
||||||
"MessageGetInstalledPluginsError": "An error occured while getting the list of currently installed plugins.",
|
"MessageGetInstalledPluginsError": "An error occured while getting the list of currently installed plugins.",
|
||||||
"PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames",
|
"PreferEmbeddedTitlesOverFileNames": "Prefer embedded titles over filenames",
|
||||||
"PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.",
|
"PreferEmbeddedTitlesOverFileNamesHelp": "This determines the default display title when no internet metadata or local metadata is available.",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue