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

update forms

This commit is contained in:
Luke Pulverenti 2016-02-10 00:29:38 -05:00
parent 95dadd9829
commit 165e7bf677
4 changed files with 7 additions and 9 deletions

View file

@ -1123,7 +1123,7 @@ paper-input + .fieldDescription {
} }
.background-theme-a, paper-dialog.background-theme-a { .background-theme-a, paper-dialog.background-theme-a {
background-color: #f4f4f4; background-color: #f6f6f6;
} }
.ui-page-theme-a .content-secondary { .ui-page-theme-a .content-secondary {

View file

@ -4,7 +4,7 @@
<title>${TitleMediaLibrary}</title> <title>${TitleMediaLibrary}</title>
</head> </head>
<body> <body>
<div id="librarySettingsPage" data-role="page" class="page type-interior librarySectionPage" data-require="jqmcollapsible,scripts/librarysettings"> <div id="librarySettingsPage" data-role="page" class="page type-interior librarySectionPage" data-require="jqmcollapsible,scripts/librarysettings,paper-input">
<div data-role="content"> <div data-role="content">
<div class="content-primary"> <div class="content-primary">
@ -48,15 +48,16 @@
<br /> <br />
<div> <div>
<label for="txtSeasonZeroName">${LabelSeasonZeroDisplayName}</label> <label for="txtSeasonZeroName">${LabelSeasonZeroDisplayName}</label>
<input type="text" id="txtSeasonZeroName" name="txtSeasonZeroName" required="required" /> <paper-input type="text" id="txtSeasonZeroName" required></paper-input>
</div> </div>
<br /> <br />
</div> </div>
</div> </div>
<br /> <br />
<br />
<ul data-role="listview" class="ulForm"> <ul data-role="listview" class="ulForm">
<li class="fldLibraryMonitor hide"> <li class="fldLibraryMonitor hide">
<label for="selectEnableRealtimeMonitor">${LabelEnableRealtimeMonitor}</label> <label for="selectEnableRealtimeMonitor" class="selectLabel">${LabelEnableRealtimeMonitor}</label>
<select id="selectEnableRealtimeMonitor" data-mini="true"> <select id="selectEnableRealtimeMonitor" data-mini="true">
<option value="Auto">${OptionAuto}</option> <option value="Auto">${OptionAuto}</option>
<option value="Enabled">${OptionYes}</option> <option value="Enabled">${OptionYes}</option>
@ -70,8 +71,6 @@
<button type="submit" data-role="none" class="clearButton"> <button type="submit" data-role="none" class="clearButton">
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button> <paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button>
</button> </button>
<paper-button raised class="cancel block btnCancel" onclick="history.back();"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
</li> </li>
</ul> </ul>

View file

@ -72,8 +72,7 @@
require(['prompt'], function (prompt) { require(['prompt'], function (prompt) {
prompt({ prompt({
text: Globalize.translate('LabelNewName'), title: Globalize.translate('LabelNewName'),
title: Globalize.translate('HeaderRenameMediaFolder'),
callback: function (newName) { callback: function (newName) {
if (newName && newName != virtualFolder.Name) { if (newName && newName != virtualFolder.Name) {

View file

@ -595,7 +595,7 @@
"LabelEpisodeNumber": "Episode number:", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names.", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
"HeaderSupportTheTeam": "Support the Emby Team", "HeaderSupportTheTeam": "Support the Emby Team",
"LabelSupportAmount": "Amount (USD)", "LabelSupportAmount": "Amount (USD)",
"HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",