mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
move book support into the core
This commit is contained in:
parent
7d752911cb
commit
a693eeed4f
@ -1,55 +0,0 @@
|
||||
<div id="aboutPage" data-role="page" class="page type-interior">
|
||||
|
||||
<div data-role="content">
|
||||
<div class="content-primary">
|
||||
<div class="readOnlyContent">
|
||||
<h1>
|
||||
<img class="imgLogoIcon" src="css/images/logo.png" />
|
||||
</h1>
|
||||
<br />
|
||||
<br />
|
||||
<div id="appVersionNumber">${VersionNumber}</div>
|
||||
<br />
|
||||
<div class="detailSectionHeader">${HeaderCredits}</div>
|
||||
<div style="padding: 0 .5em;">
|
||||
<p>
|
||||
<a href="http://www.pismotechnic.com/pfm/" target="_blank">${PismoMessage}</a>
|
||||
</p>
|
||||
<p>
|
||||
<a href="http://www.tangiblesoftwaresolutions.com/" target="_blank">${TangibleSoftwareMessage}</a>
|
||||
</p>
|
||||
|
||||
<br />
|
||||
<p>${PleaseSupportOtherProduces}</p>
|
||||
|
||||
<p>
|
||||
<a href="http://fanart.tv" target="_blank">FanArt.tv</a>
|
||||
</p>
|
||||
<p>
|
||||
<a href="http://musicbrainz.org" target="_blank">MusicBrainz</a>
|
||||
</p>
|
||||
<p>
|
||||
<a href="http://www.themoviedb.org" target="_blank">TheMovieDb.org</a>
|
||||
</p>
|
||||
<p>
|
||||
<a href="http://www.omdbapi.com" target="_blank">The Open Movie Database</a>
|
||||
</p>
|
||||
<p>
|
||||
<a href="http://thetvdb.com" target="_blank">TheTVDB.com</a>
|
||||
</p>
|
||||
</div>
|
||||
<br/>
|
||||
<p>${ProjectHasCommunity}</p>
|
||||
<a data-role="button" data-icon="arrow-r" data-iconpos="right" href="http://emby.media/community" target="_blank">${VisitTheCommunity}</a>
|
||||
<br />
|
||||
<p>
|
||||
${CheckoutKnowledgeBase}
|
||||
</p>
|
||||
<a data-role="button" data-icon="search" data-iconpos="right" href="http://emby.media/community/index.php?/forum/23-knowledge-base/" target="_blank">${SearchKnowledgeBase}</a>
|
||||
<br />
|
||||
<p>${VisitProjectWebsiteLong}</p>
|
||||
<a data-role="button" data-icon="home" data-iconpos="right" href="http://emby.media" target="_blank">${VisitProjectWebsite}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@ -250,7 +250,7 @@
|
||||
{ name: Globalize.translate('FolderTypeMovies'), value: "movies" },
|
||||
{ name: Globalize.translate('FolderTypeMusic'), value: "music" },
|
||||
{ name: Globalize.translate('FolderTypeTvShows'), value: "tvshows" },
|
||||
{ name: Globalize.translate('FolderTypeBooks'), value: "books", message: Globalize.translate('MessageBookPluginRequired') },
|
||||
{ name: Globalize.translate('FolderTypeBooks'), value: "books", message: Globalize.translate('BookLibraryHelp') },
|
||||
{ name: Globalize.translate('FolderTypeGames'), value: "games", message: Globalize.translate('MessageGamePluginRequired') },
|
||||
{ name: Globalize.translate('OptionHomeVideos'), value: "homevideos" },
|
||||
{ name: Globalize.translate('FolderTypeMusicVideos'), value: "musicvideos" },
|
||||
|
@ -557,13 +557,6 @@ var Dashboard = {
|
||||
href: "reports.html",
|
||||
pageIds: [],
|
||||
icon: 'insert_chart'
|
||||
}, {
|
||||
name: Globalize.translate('TabAbout'),
|
||||
href: "about.html",
|
||||
icon: 'info',
|
||||
color: '#679C34',
|
||||
divider: true,
|
||||
pageIds: ['aboutPage']
|
||||
}];
|
||||
|
||||
},
|
||||
@ -1291,7 +1284,6 @@ var AppInfo = {};
|
||||
define("tvguide", [embyWebComponentsBowerPath + "/guide/guide"], returnFirstDependency);
|
||||
define("programStyles", ['css!' + embyWebComponentsBowerPath + "/guide/programs"], returnFirstDependency);
|
||||
define("guide-settings-dialog", [embyWebComponentsBowerPath + "/guide/guide-settings"], returnFirstDependency);
|
||||
define("guide-categories-dialog", [embyWebComponentsBowerPath + "/guide/guide-categories"], returnFirstDependency);
|
||||
define("syncDialog", [embyWebComponentsBowerPath + "/sync/sync"], returnFirstDependency);
|
||||
define("syncToggle", [embyWebComponentsBowerPath + "/sync/synctoggle"], returnFirstDependency);
|
||||
define("voiceDialog", [embyWebComponentsBowerPath + "/voice/voicedialog"], returnFirstDependency);
|
||||
@ -1866,14 +1858,6 @@ var AppInfo = {};
|
||||
|
||||
console.log('Defining core routes');
|
||||
|
||||
defineRoute({
|
||||
path: '/about.html',
|
||||
dependencies: [],
|
||||
autoFocus: false,
|
||||
controller: 'dashboard/aboutpage',
|
||||
roles: 'admin'
|
||||
});
|
||||
|
||||
defineRoute({
|
||||
path: '/addplugin.html',
|
||||
dependencies: [],
|
||||
|
@ -1748,7 +1748,7 @@
|
||||
"HeaderCancelSyncJob": "Cancel Sync",
|
||||
"CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?",
|
||||
"LabelQuality": "Quality:",
|
||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||
"BookLibraryHelp": "Audio and text books are supported",
|
||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||
"MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.",
|
||||
"SyncJobItemStatusQueued": "Queued",
|
||||
|
Loading…
Reference in New Issue
Block a user