Procházet zdrojové kódy

stub out remote control page

Luke Pulverenti před 11 roky
rodič
revize
c3378d2329

+ 2 - 1
MediaBrowser.Model/Session/GeneralCommand.cs

@@ -48,6 +48,7 @@ namespace MediaBrowser.Model.Session
         SetAudioStreamIndex = 23,
         SetSubtitleStreamIndex = 24,
         ToggleFullscreen = 25,
-        DisplayContent = 26
+        DisplayContent = 26,
+        GoToSearch = 27
     }
 }

+ 20 - 1
MediaBrowser.Server.Implementations/Localization/Server/server.json

@@ -583,5 +583,24 @@
 	"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
 	"OptionAllUsers": "All users",
 	"OptionAdminUsers": "Administrators",
-	"OptionCustomUsers": "Custom"
+	"OptionCustomUsers": "Custom",
+	"ButtonArrowUp": "Up",
+	"ButtonArrowDown": "Down",
+	"ButtonArrowLeft": "Left",
+	"ButtonArrowRight": "Right",
+	"ButtonBack": "Back",
+	"ButtonInfo": "Info",
+	"ButtonPageUp": "Page Up",
+	"ButtonPageDown": "Page Down",
+	"PageAbbreviation": "PG",
+	"ButtonHome": "Home",
+	"ButtonSearch": "Search",
+	"ButtonSettings": "Settings",
+	"ButtonTakeScreenshot": "Capture Screenshot",
+	"ButtonLetterUp": "Letter Up",
+	"ButtonLetterDown": "Letter Down",
+	"PageButtonAbbreviation": "PG",
+	"LetterButtonAbbreviation": "A",
+	"TabNowPlaying": "Now Playing",
+	"TabNavigation": "Navigation"
 }

+ 1 - 0
MediaBrowser.WebDashboard/Api/DashboardService.cs

@@ -520,6 +520,7 @@ namespace MediaBrowser.WebDashboard.Api
                                 "mediaplayer.js",
                                 "mediaplayer-video.js",
                                 "nowplayingbar.js",
+                                "nowplayingpage.js",
 
                                 "ratingdialog.js",
                                 "aboutpage.js",

+ 3 - 0
MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj

@@ -646,6 +646,9 @@
     <Content Include="dashboard-ui\scripts\nowplayingbar.js">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </Content>
+    <Content Include="dashboard-ui\scripts\nowplayingpage.js">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </Content>
     <Content Include="dashboard-ui\scripts\ratingdialog.js">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </Content>