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

Don't concatenate on notifications.js

This commit is contained in:
ferferga 2020-04-03 20:21:00 +02:00
parent 05e26e6588
commit fd93ce45f7
3 changed files with 12 additions and 12 deletions

View file

@ -173,15 +173,15 @@ define(['serverNotifications', 'playbackManager', 'events', 'globalize', 'requir
}; };
if (status === 'completed') { if (status === 'completed') {
notification.title = globalize.translate('PackageInstallCompleted', installation.Name + ' ' + installation.Version); notification.title = globalize.translate('PackageInstallCompleted', installation.Name, installation.Version);
notification.vibrate = true; notification.vibrate = true;
} else if (status === 'cancelled') { } else if (status === 'cancelled') {
notification.title = globalize.translate('PackageInstallCancelled', installation.Name + ' ' + installation.Version); notification.title = globalize.translate('PackageInstallCancelled', installation.Name, installation.Version);
} else if (status === 'failed') { } else if (status === 'failed') {
notification.title = globalize.translate('PackageInstallFailed', installation.Name + ' ' + installation.Version); notification.title = globalize.translate('PackageInstallFailed', installation.Name, installation.Version);
notification.vibrate = true; notification.vibrate = true;
} else if (status === 'progress') { } else if (status === 'progress') {
notification.title = globalize.translate('InstallingPackage', installation.Name + ' ' + installation.Version); notification.title = globalize.translate('InstallingPackage', installation.Name, installation.Version);
notification.actions = notification.actions =
[ [

View file

@ -521,7 +521,7 @@
"Images": "Images", "Images": "Images",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.", "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Jellyfin database and displayed within seasons and series. This may cause significantly longer library scans.",
"InstallingPackage": "Installing {0}", "InstallingPackage": "Installing {0} (version {1})",
"InstantMix": "Instant mix", "InstantMix": "Instant mix",
"ItemCount": "{0} items", "ItemCount": "{0} items",
"Items": "Items", "Items": "Items",
@ -1210,9 +1210,9 @@
"OriginalAirDateValue": "Original air date: {0}", "OriginalAirDateValue": "Original air date: {0}",
"OtherArtist": "Other Artist", "OtherArtist": "Other Artist",
"Overview": "Overview", "Overview": "Overview",
"PackageInstallCancelled": "{0} installation cancelled.", "PackageInstallCancelled": "{0} (version {1}) installation cancelled.",
"PackageInstallCompleted": "{0} installation completed.", "PackageInstallCompleted": "{0} (version {1}) installation completed.",
"PackageInstallFailed": "{0} installation failed.", "PackageInstallFailed": "{0} (version {1}) installation failed.",
"ParentalRating": "Parental rating", "ParentalRating": "Parental rating",
"PasswordMatchError": "Password and password confirmation must match.", "PasswordMatchError": "Password and password confirmation must match.",
"PasswordResetComplete": "The password has been reset.", "PasswordResetComplete": "The password has been reset.",

View file

@ -425,7 +425,7 @@
"Images": "Imágenes", "Images": "Imágenes",
"ImportFavoriteChannelsHelp": "Si está activado, sólo los canales guardados como favoritos en el sintonizador se importarán.", "ImportFavoriteChannelsHelp": "Si está activado, sólo los canales guardados como favoritos en el sintonizador se importarán.",
"ImportMissingEpisodesHelp": "Si está activada, la información sobre los episodios que faltan se importará en su base de datos Jellyfin y se mostrará en temporadas y series. Esto puede causar exploraciones de bibliotecas significativamente más largas.", "ImportMissingEpisodesHelp": "Si está activada, la información sobre los episodios que faltan se importará en su base de datos Jellyfin y se mostrará en temporadas y series. Esto puede causar exploraciones de bibliotecas significativamente más largas.",
"InstallingPackage": "Instalando {0}", "InstallingPackage": "Instalando {0} (versión {1})",
"InstantMix": "Mix instantáneo", "InstantMix": "Mix instantáneo",
"ItemCount": "Elementos {0}", "ItemCount": "Elementos {0}",
"Items": "Elemento", "Items": "Elemento",
@ -998,9 +998,9 @@
"OptionWeekly": "Semanal", "OptionWeekly": "Semanal",
"OriginalAirDateValue": "Fecha de emisión original: {0}", "OriginalAirDateValue": "Fecha de emisión original: {0}",
"Overview": "Sinopsis", "Overview": "Sinopsis",
"PackageInstallCancelled": "{0} instalación cancelada.", "PackageInstallCancelled": "{0} (versión {1}) instalación cancelada.",
"PackageInstallCompleted": "{0} instalación completada.", "PackageInstallCompleted": "{0} (versión {1}) instalación completada.",
"PackageInstallFailed": "{0} instalación fallida.", "PackageInstallFailed": "{0} (versión {1}) instalación fallida.",
"ParentalRating": "Calificación de los padres", "ParentalRating": "Calificación de los padres",
"PasswordMatchError": "La contraseña y la confirmación de la contraseña deben de ser iguales.", "PasswordMatchError": "La contraseña y la confirmación de la contraseña deben de ser iguales.",
"PasswordResetComplete": "La contraseña se ha restablecido.", "PasswordResetComplete": "La contraseña se ha restablecido.",