?? messages.js
字號:
"ExtrasWidgetsScreen.CalendarSelect.Title": "CalendarSelect", "ExtrasWidgetsScreen.CalendarSelect.Desc1": "The CalendarSelect component provides the " + "capability to select dates from a visual representation of " + "a calendar.", "ExtrasWidgetsScreen.CalendarSelect.Desc2": "It features animated transitions when selecting " + "a month or year.", "ExtrasWidgetsScreen.Menu.Title": "Menu Components", "ExtrasWidgetsScreen.Menu.ContextButton": "A Button with a ContextMenu (Right-click it!)", "ExtrasWidgetsScreen.Menu.DropDownButton": "Options", "ExtrasWidgetsScreen.Menu.DropDownSelection": "Enable Selection in DropDownMenu", "ExtrasWidgetsScreen.Menu.Note": "Note: the example menu components above do not have " + "configured event listeners, so selecting an option " + "will cause no action.", "ExtrasWidgetsScreen.Menu.MenuBarPane.Desc": "A MenuBarPane displays a conventional pull-down menu, such " + "as the one shown at the top of the screen.", "ExtrasWidgetsScreen.Menu.ContextMenu.Desc": "A ContextMenu provides the capability to display a context " + "menu for any component.", "ExtrasWidgetsScreen.Menu.DropDownMenu.Desc": "DropDownMenu is a simple menu control with a small visual " + "footprint. It can optionally be used as a list selection " + "component.", "ExtrasWidgetsScreen.ToolTip.Title": "ToolTipContainer", "ExtrasWidgetsScreen.ToolTip.Button": "A Button in a ToolTipContainer (Roll the mouse over it!)", "ExtrasWidgetsScreen.ToolTip.Tip": "This is a custom tool tip.", "ExtrasWidgetsScreen.ToolTip.Desc": "The ToolTipContainer component lets you place arbitrary " + "components in a tool tip.", "ExtrasWidgetsScreen.ColorSelect.Title": "ColorSelect", "ExtrasWidgetsScreen.ColorSelect.Desc": "The ColorSelect component enables a user " + "to select an RGB color " + "quickly using a visual component.", "ExtrasWidgetsScreen.ColorSelect.ChangeText": "Adjust the ColorSelect to change " + "the color of this text.", "ExtrasWidgetsScreen.ColorSelect.DisplayHex": "Display Hex Color Value", "JavaDevelopmentScreen.Title": "Java Development", "JavaDevelopmentScreen.Text.1": "Echo3 applications can be built entirely in server-side " + "Java. When using this development method, the state of an " + "Echo application is automatically serialized to the browser. " + "The user's input and actions are then serialized back to the " + "server and processed by server-side Java code. The " + "client-side and server-side APIs are very similar.", "JavaDevelopmentScreen.Text.2": "Developers creating server-side Echo applications " + "<span style=\"color: #00004f;font-weight: bold;\">" + "do not need " + "any knowledge of HTML or JavaScript</span>.", "JavaDevelopmentScreen.Text.3": "Server-side Echo2 applications can be easily ported to Echo3. " + "The only significant API change is that the nextapp.echo2 " + "package name prefix has been changed to nextapp.echo. In " + "some cases applications can be run after only a " + "search-and-replace.", "JavaDevelopmentScreen.SourceDescription.Title": "NumberGuessApp.java", "JavaDevelopmentScreen.SourceDescription.Message": "Shown here is the source of an Echo3 server-side development " + "tutorial application, the \"Guess-A-Number\" game.", "JSDevelopmentScreen.Title": "JavaScript Development", "JSDevelopmentScreen.Tab.CoreJS": "CoreJS Framework", "JSDevelopmentScreen.Tab.HierarchalConstruction": "Hierarchal Construction", "JSDevelopmentScreen.Tab.LazyModuleLoading": "Lazy JS Module Loading", "JSDevelopmentScreen.CoreJS.0": "Echo3 uses the CoreJS framework to enable true " + "object-oriented JavaScript development.", "JSDevelopmentScreen.CoreJS.1": "The CoreJS framework allows the developer to create JavaScript " + "objects that use " + "<span style=\"color: #ffffff;font-weight: bold;\">" + "classical inheritance</span> (rather than prototype-based " + "inheritance). It provides a convenient means of creating " + "<span style=\"color: #ffffff;font-weight: bold;\">" + "object-oriented event handlers</span>. And it does this with " + "a syntax that makes JavaScript code " + "<span style=\"color: #ffffff;font-weight: bold;\">" + "easy to read, write, and maintain</span>.", "JSDevelopmentScreen.CoreJS.2": "Writing code using CoreJS is not done at the expense of " + "performance. " + "<span style=\"color: #ffffff;font-weight: bold;\">" + "The use of closures is minimized</span> by the inheritance model, " + "eliminating a common source of reduced performance seen " + "in JavaScript frameworks.", "JSDevelopmentScreen.LazyJS.WindowTitle": "Example", "JSDevelopmentScreen.LazyJS.0": "Lazy-loading of Modules Enables the Development of Large " + "JavaScript Applications", "JSDevelopmentScreen.LazyJS.1": "CoreJS (on which Echo3 is built) provides a " + "convenient means of " + "<span style=\"color: #ffffff;font-weight: bold;\">" + "dynamically downloading JavaScript " + "modules to the client as when they are needed</span>. This " + "enables a developer to create very large JavaScript " + "applications without incurring an unnecessary delay " + "at startup to load a monolithic application.", "JSDevelopmentScreen.LazyJS.2": "<span style=\"color: #ffffff;font-weight: bold;\">" + "Writing applications that use dynamic module loading is " + "straightforward.</span> " + "Just enclose any inter-module calls in a " + "\"Library.exec\" statement, such as in the code shown to the right.", "JSDevelopmentScreen.LazyJS.3": "The example code shown will load the modules " + "\"Alpha.js\" and \"Beta.js\". They will be installed in " + "the specified order, and will not be reloaded if they were " + "previously fetched. When the loading has completed, the " + "method will be executed.", "JSDevelopmentScreen.CoreJS.WindowTitle": "CoreJS Class Declaration", "JSDevelopmentScreen.CoreJS.RolloverDirection": "Roll the mouse over any green text to see a description.", "JSDevelopmentScreen.CoreJS.Simple": "Simple", "JSDevelopmentScreen.CoreJS.Advanced": "Advanced", "JSDevelopmentScreen.ClassNameAlpha": "The class name. The declared class, returned by Core.extend(), " + "is being assigned to the variable \"Example.Alpha.\"", "JSDevelopmentScreen.ClassNameBeta": "The class name. The declared class, returned by Core.extend(), " + "is being assigned to the variable \"Example.Beta.\"", "JSDevelopmentScreen.CoreExtend": "Core.extend() is the CoreJS method used to declare a class.", "JSDevelopmentScreen.BaseClass": "This is the base class which is being extended. " + "This parameter is omitted when extending directly from Object.", "JSDevelopmentScreen.StaticBlock": "This is a static declaration block. All properties defined " + "inside of it will be assigned to \"ExampleClass\" as class " + "properties.", "JSDevelopmentScreen.StaticField": "This is a static class field. It is referenced as " + "\"Example.Beta.staticField.\"", "JSDevelopmentScreen.StaticMethod": "This is a static class method. It is invoked as " + "\"Example.Beta.staticMethod(x, y).\"", "JSDevelopmentScreen.StaticInitializer": "This is a static initializer method. It will be invoked when " + "the class is declared.", "JSDevelopmentScreen.VirtualBlock": "This is a virtual declaration block. All properties declared " + "here will be allowed to be overridden by extending classes. " + "Properties not declared in this block are final: attempting to " + "override one in a derived class will result in an exception " + "being thrown.", "JSDevelopmentScreen.VirtualField": "This is a publicly accessible, virtual field. This field is " + "may be overridden by derived classes.", "JSDevelopmentScreen.VirtualMethod": "This is a virtual, publicly accessible method. By being " + "declared inside of the $virtual block, it is allowed to be " + "overridden by derived classes.", "JSDevelopmentScreen.AbstractBlock": "This is an abstract declaration block. If this block is " + "present, the class is abstract. All properties contained " + "in this block must be provided by derived classes.", "JSDevelopmentScreen.AbstractMethod": "This method must be implemented by any derived classes.", "JSDevelopmentScreen.IncludeBlock": "This is an include block. Methods contained in objects " + "referenced in this block will be copied into the class declaration.", "JSDevelopmentScreen.InternalField": "This is an internal, pseudo-private field. Leading underscores " + "are used to denote internal properties. Because this property " + "is declared outside of the $virtual block, it cannot be " + "overridden by derived classes.", "JSDevelopmentScreen.PublicField": "This is a publicly accessible field. Because this property " + "is declared outside of the $virtual block, it cannot be " + "overridden by derived classes.", "JSDevelopmentScreen.Constructor": "This is the constructor function for the class.", "JSDevelopmentScreen.SuperConstructorCall": "This is a call to the super-constructor of this class.", "JSDevelopmentScreen.InternalMethod": "This is an internal, pseudo-private method. Leading " + "underscores are used to denote internal properties. " + "Because this property is declared outside of the $virtual " + "block, it cannot be overridden by derived classes.", "JSDevelopmentScreen.PublicMethod": "This is a normal, publicly accessible method. By being " + "declared outside of the $virtual block, it is final, and may " + "not be overridden by derived classes.", "JSDevelopmentScreen.Hierarchal.0": "Complete user interfaces can be created using " + "\"Hierarchal Component Construction\":", "JSDevelopmentScreen.Hierarchal.1": "Client-side component constructors in Echo3 allow you to pass " + "in the initial state of a component. The state information may " +
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -