diff --git a/src/components/accessSchedule/accessSchedule.template.html b/src/components/accessSchedule/accessSchedule.template.html index d89b69d9b..e209fbc1f 100644 --- a/src/components/accessSchedule/accessSchedule.template.html +++ b/src/components/accessSchedule/accessSchedule.template.html @@ -1,5 +1,5 @@
-

diff --git a/src/components/guide/guide-settings.template.html b/src/components/guide/guide-settings.template.html index edb2ffa8d..d4bad711b 100644 --- a/src/components/guide/guide-settings.template.html +++ b/src/components/guide/guide-settings.template.html @@ -1,5 +1,5 @@
-

diff --git a/src/components/guide/tvguide.template.html b/src/components/guide/tvguide.template.html index 730de5590..b0f23f4b3 100644 --- a/src/components/guide/tvguide.template.html +++ b/src/components/guide/tvguide.template.html @@ -29,10 +29,10 @@

- -
diff --git a/src/components/libraryoptionseditor/libraryoptionseditor.js b/src/components/libraryoptionseditor/libraryoptionseditor.js index ab193c264..f90643ce0 100644 --- a/src/components/libraryoptionseditor/libraryoptionseditor.js +++ b/src/components/libraryoptionseditor/libraryoptionseditor.js @@ -75,9 +75,9 @@ import 'emby-input'; html += '

'; html += '
'; if (i > 0) { - html += ``; + html += ``; } else if (plugins.length > 1) { - html += ``; + html += ``; } html += ''; } @@ -131,9 +131,9 @@ import 'emby-input'; html += ''; html += ''; if (index > 0) { - html += ''; + html += ''; } else if (plugins.length > 1) { - html += ''; + html += ''; } html += ''; }); @@ -197,9 +197,9 @@ import 'emby-input'; html += ''; html += ''; if (i > 0) { - html += ``; + html += ``; } else if (plugins.length > 1) { - html += ``; + html += ``; } html += ''; } @@ -236,9 +236,9 @@ import 'emby-input'; html += ''; html += ''; if (i > 0) { - html += ''; + html += ''; } else if (plugins.length > 1) { - html += ''; + html += ''; } html += ''; } @@ -291,13 +291,13 @@ import 'emby-input'; const btnSortable = elem.querySelector('.btnSortable'); const inner = btnSortable.querySelector('.material-icons'); if (elem.previousSibling) { - btnSortable.title = globalize.translate('ButtonUp'); + btnSortable.title = globalize.translate('Up'); btnSortable.classList.add('btnSortableMoveUp'); btnSortable.classList.remove('btnSortableMoveDown'); inner.classList.remove('keyboard_arrow_down'); inner.classList.add('keyboard_arrow_up'); } else { - btnSortable.title = globalize.translate('ButtonDown'); + btnSortable.title = globalize.translate('Down'); btnSortable.classList.remove('btnSortableMoveUp'); btnSortable.classList.add('btnSortableMoveDown'); inner.classList.remove('keyboard_arrow_up'); diff --git a/src/components/subtitlesettings/subtitlesettings.template.html b/src/components/subtitlesettings/subtitlesettings.template.html index af9139188..2884b26ef 100644 --- a/src/components/subtitlesettings/subtitlesettings.template.html +++ b/src/components/subtitlesettings/subtitlesettings.template.html @@ -14,7 +14,7 @@ - +
${DefaultSubtitlesHelp}
${SmartSubtitlesHelp}
diff --git a/src/controllers/dashboard/general.html b/src/controllers/dashboard/general.html index 9ac0a9083..078d9d605 100644 --- a/src/controllers/dashboard/general.html +++ b/src/controllers/dashboard/general.html @@ -19,7 +19,7 @@
${LabelPreferredDisplayLanguageHelp}
- ${LabelReadHowYouCanContribute} + ${LearnHowYouCanContribute}
diff --git a/src/controllers/itemDetails/index.html b/src/controllers/itemDetails/index.html index bc6bc5f5a..9aff1efa1 100644 --- a/src/controllers/itemDetails/index.html +++ b/src/controllers/itemDetails/index.html @@ -42,7 +42,7 @@ - - + @@ -46,7 +46,7 @@
- +
@@ -75,7 +75,7 @@
- +
diff --git a/src/controllers/music/music.html b/src/controllers/music/music.html index 1e22ae9f3..6ef1afb89 100644 --- a/src/controllers/music/music.html +++ b/src/controllers/music/music.html @@ -38,9 +38,9 @@
- + - +
@@ -92,7 +92,7 @@
- +
diff --git a/src/controllers/music/musicrecommended.js b/src/controllers/music/musicrecommended.js index e16afa2d5..ee182a042 100644 --- a/src/controllers/music/musicrecommended.js +++ b/src/controllers/music/musicrecommended.js @@ -187,7 +187,7 @@ import 'flexStyles'; }, { name: globalize.translate('TabPlaylists') }, { - name: globalize.translate('TabSongs') + name: globalize.translate('Songs') }, { name: globalize.translate('TabGenres') }]; diff --git a/src/controllers/playback/queue/index.html b/src/controllers/playback/queue/index.html index 2720dfe3f..8d8476bb1 100644 --- a/src/controllers/playback/queue/index.html +++ b/src/controllers/playback/queue/index.html @@ -59,7 +59,7 @@ - @@ -81,7 +81,7 @@ - @@ -99,7 +99,7 @@
-
@@ -120,7 +120,7 @@ - - +
@@ -60,7 +60,7 @@
- +
diff --git a/src/controllers/shows/tvrecommended.js b/src/controllers/shows/tvrecommended.js index c519e0ac5..3d78997ba 100644 --- a/src/controllers/shows/tvrecommended.js +++ b/src/controllers/shows/tvrecommended.js @@ -17,7 +17,7 @@ import 'emby-button'; function getTabs() { return [{ - name: globalize.translate('TabShows') + name: globalize.translate('Shows') }, { name: globalize.translate('Suggestions') }, { @@ -318,8 +318,8 @@ import 'emby-button'; libraryMenu.setTitle(item.Name); }); } else { - view.setAttribute('data-title', globalize.translate('TabShows')); - libraryMenu.setTitle(globalize.translate('TabShows')); + view.setAttribute('data-title', globalize.translate('Shows')); + libraryMenu.setTitle(globalize.translate('Shows')); } } diff --git a/src/controllers/wizard/finish/index.html b/src/controllers/wizard/finish/index.html index 4d54a10cd..3447ced02 100644 --- a/src/controllers/wizard/finish/index.html +++ b/src/controllers/wizard/finish/index.html @@ -6,7 +6,7 @@
diff --git a/src/controllers/wizard/remote/index.html b/src/controllers/wizard/remote/index.html index 0718c2dc3..0334f584c 100644 --- a/src/controllers/wizard/remote/index.html +++ b/src/controllers/wizard/remote/index.html @@ -22,10 +22,10 @@
diff --git a/src/controllers/wizard/settings/index.html b/src/controllers/wizard/settings/index.html index d4f537cf9..d1f557d8f 100644 --- a/src/controllers/wizard/settings/index.html +++ b/src/controllers/wizard/settings/index.html @@ -17,10 +17,10 @@
diff --git a/src/controllers/wizard/start/index.html b/src/controllers/wizard/start/index.html index 05e282bee..5306d2ca7 100644 --- a/src/controllers/wizard/start/index.html +++ b/src/controllers/wizard/start/index.html @@ -19,7 +19,7 @@
diff --git a/src/controllers/wizard/user/index.html b/src/controllers/wizard/user/index.html index 3ce0b3ba7..24429d043 100644 --- a/src/controllers/wizard/user/index.html +++ b/src/controllers/wizard/user/index.html @@ -23,10 +23,10 @@
diff --git a/src/scripts/itembynamedetailpage.js b/src/scripts/itembynamedetailpage.js index 7a56be678..306282b5f 100644 --- a/src/scripts/itembynamedetailpage.js +++ b/src/scripts/itembynamedetailpage.js @@ -32,7 +32,7 @@ function renderItems(page, item) { if (item.SeriesCount) { sections.push({ - name: globalize.translate('TabShows'), + name: globalize.translate('Shows'), type: 'Series' }); } diff --git a/src/scripts/libraryBrowser.js b/src/scripts/libraryBrowser.js index 83d683a69..debae200c 100644 --- a/src/scripts/libraryBrowser.js +++ b/src/scripts/libraryBrowser.js @@ -105,7 +105,7 @@ export function getQueryPagingHtml (options) { } if (options.sortButton) { - html += ''; + html += ''; } if (options.filterButton) { diff --git a/src/scripts/libraryMenu.js b/src/scripts/libraryMenu.js index 543aa6f3d..29d859740 100644 --- a/src/scripts/libraryMenu.js +++ b/src/scripts/libraryMenu.js @@ -567,7 +567,7 @@ import 'flexStyles'; view.ImageTags = {}; view.icon = 'live_tv'; const guideView = Object.assign({}, view); - guideView.Name = globalize.translate('ButtonGuide'); + guideView.Name = globalize.translate('Guide'); guideView.ImageTags = {}; guideView.icon = 'dvr'; guideView.url = 'livetv.html?tab=1';