зеркало из https://github.com/mozilla/pjs.git
Added tooltips to Publish dialogs, b=139896, r=brade/robinf, sr=kin, a=adt, a=shaver/drivers
This commit is contained in:
Родитель
4743a8081e
Коммит
904c1fa3da
|
@ -75,12 +75,14 @@
|
|||
<spacer class="spacer"/>
|
||||
<row align="center">
|
||||
<label value="&pageTitle.label;"/>
|
||||
<textbox id="PageTitleInput" class="minWidth15"/>
|
||||
<textbox id="PageTitleInput"
|
||||
tooltiptext="&pageTitle.tooltip;" class="minWidth15"/>
|
||||
<label value="&pageTitleExample.label;"/>
|
||||
</row>
|
||||
<row align="center">
|
||||
<label value="&filename.label;"/>
|
||||
<textbox id="FilenameInput" class="minWidth15"/>
|
||||
<textbox id="FilenameInput"
|
||||
tooltiptext="&filename.tooltip;" class="minWidth15"/>
|
||||
<label value="&filenameExample.label;"/>
|
||||
</row>
|
||||
</rows>
|
||||
|
@ -98,17 +100,20 @@
|
|||
<spacer class="spacer"/>
|
||||
<groupbox>
|
||||
<caption>
|
||||
<checkbox id="OtherDirCheckbox" label="&publishImgCheckbox.label;" oncommand="doEnabling();"/>
|
||||
<checkbox id="OtherDirCheckbox" label="&publishImgCheckbox.label;"
|
||||
tooltiptext="&publishImgCheckbox.tooltip;" oncommand="doEnabling();"/>
|
||||
</caption>
|
||||
<vbox>
|
||||
<radiogroup id="OtherDirRadiogroup">
|
||||
<hbox>
|
||||
<spacer class="checkbox-spacer"/>
|
||||
<radio id="SameLocationRadio" label="&sameLocationRadio.label;" oncommand="doEnabling();"/>
|
||||
<radio id="SameLocationRadio" label="&sameLocationRadio.label;"
|
||||
tooltiptext="&sameLocationRadio.tooltip;" oncommand="doEnabling();"/>
|
||||
</hbox>
|
||||
<hbox>
|
||||
<spacer class="checkbox-spacer"/>
|
||||
<radio id="UseSubdirRadio" label="&useSubdirRadio.label;" oncommand="doEnabling();"/>
|
||||
<radio id="UseSubdirRadio" label="&useSubdirRadio.label;"
|
||||
tooltiptext="&useSubdir.tooltip;" oncommand="doEnabling();"/>
|
||||
</hbox>
|
||||
</radiogroup>
|
||||
</vbox>
|
||||
|
@ -117,7 +122,7 @@
|
|||
<spacer class="radio-spacer"/>
|
||||
<!-- Contents filled in at runtime -->
|
||||
<menulist id="OtherDirList" class="minWidth20" editable="true" flex="1"
|
||||
oninput="onInputSettings();"/>
|
||||
tooltiptext="&useSubdir.tooltip;" oninput="onInputSettings();"/>
|
||||
<!--
|
||||
<button label="&chooseDirButton.label;" oncommand="ChooseDir(gDialog.OtherDirList);" disabled="true"/>
|
||||
-->
|
||||
|
|
|
@ -35,14 +35,17 @@
|
|||
<caption label="&serverInfo.label;"/>
|
||||
<hbox align="center">
|
||||
<label value="&siteName.label;"/>
|
||||
<textbox id="SiteNameInput" class="MinWidth20em" oninput="onInputSettings();" flex="1"/>
|
||||
<textbox id="SiteNameInput" class="MinWidth20em"
|
||||
tooltiptext="&siteName.tooltip;" oninput="onInputSettings();" flex="1"/>
|
||||
</hbox>
|
||||
<spacer class="spacer"/>
|
||||
<label value="&siteUrl.label;"/>
|
||||
<textbox id="PublishUrlInput" class="MinWidth20em" oninput="onInputSettings();"/>
|
||||
<textbox id="PublishUrlInput" class="MinWidth20em"
|
||||
tooltiptext="&siteUrl.tooltip;" oninput="onInputSettings();"/>
|
||||
<spacer class="spacer"/>
|
||||
<label value="&browseUrl.label;"/>
|
||||
<textbox id="BrowseUrlInput" class="MinWidth20em" oninput="onInputSettings();"/>
|
||||
<textbox id="BrowseUrlInput" class="MinWidth20em"
|
||||
tooltiptext="&browseUrl.tooltip;" oninput="onInputSettings();"/>
|
||||
<spacer class="spacer"/>
|
||||
</groupbox>
|
||||
<groupbox id="LoginSettingsBox">
|
||||
|
@ -52,13 +55,16 @@
|
|||
<rows>
|
||||
<row align="center">
|
||||
<label value="&username.label;"/>
|
||||
<textbox id="UsernameInput" class="MinWidth10em" flex="1" oninput="onInputSettings();"/>
|
||||
<textbox id="UsernameInput" class="MinWidth10em"
|
||||
tooltiptext="&username.tooltip;" oninput="onInputSettings();" flex="1"/>
|
||||
</row>
|
||||
<row align="center">
|
||||
<label value="&password.label;"/>
|
||||
<hbox>
|
||||
<textbox id="PasswordInput" type="password" class="MinWidth5em" oninput="onInputSettings();"/>
|
||||
<checkbox id="SavePassword" label="&savePassword.label;" oncommand="onInputSettings();"/>
|
||||
<textbox id="PasswordInput" type="password" class="MinWidth5em"
|
||||
oninput="onInputSettings();"/>
|
||||
<checkbox id="SavePassword" label="&savePassword.label;"
|
||||
tooltiptext="&savePassword.tooltip;" oncommand="onInputSettings();"/>
|
||||
</hbox>
|
||||
</row>
|
||||
</rows>
|
||||
|
|
|
@ -30,16 +30,23 @@
|
|||
|
||||
<!-- Publish Tab Panel -->
|
||||
<!ENTITY siteList.label "Site Name:">
|
||||
<!ENTITY siteList.tooltip "Choose the site that you want to publish to">
|
||||
<!ENTITY newSiteButton.label "New Site">
|
||||
<!ENTITY siteDirList.label "Select or type a directory name in your publishing site:">
|
||||
<!ENTITY siteDirList.tooltip "Choose or enter the name of the remote subdirectory to publish to">
|
||||
<!ENTITY docDirList.label "Site subdirectory for this page:">
|
||||
<!ENTITY publishImgCheckbox.label "Include images and other files">
|
||||
<!ENTITY publishImgCheckbox.tooltip "Publish images and other files referenced by this page">
|
||||
<!ENTITY sameLocationRadio.label "Use same location as page">
|
||||
<!ENTITY sameLocationRadio.tooltip "Publish files to the same location as the page">
|
||||
<!ENTITY useSubdirRadio.label "Use this site subdirectory:">
|
||||
<!ENTITY useSubdir.tooltip "Choose or enter name of remote subdirectory where files will be published">
|
||||
<!ENTITY chooseDirButton.label "Choose...">
|
||||
<!ENTITY pageTitle.label "Page Title:">
|
||||
<!ENTITY pageTitle.tooltip "Enter a title to identify the page in the window and in bookmarks">
|
||||
<!ENTITY pageTitleExample.label "e.g.: "My Web Page"">
|
||||
<!ENTITY filename.label "Filename:">
|
||||
<!ENTITY filename.tooltip "Enter a name for this file, including '.html' for a web page">
|
||||
<!ENTITY filenameExample.label "e.g,: "mypage.html"">
|
||||
<!ENTITY relatedDocs.label "Other files to publish">
|
||||
<!ENTITY setDefaultButton.label "Set as Default">
|
||||
|
@ -51,8 +58,14 @@
|
|||
<!ENTITY serverInfo.label "Server Information">
|
||||
<!ENTITY loginInfo.label "Login Information">
|
||||
<!ENTITY siteName.label "Site Name:">
|
||||
<!ENTITY siteUrl.label "Publishing URL (provided by your ISP or Sys Admin.):">
|
||||
<!ENTITY browseUrl.label "HTTP address to browse to:">
|
||||
<!ENTITY siteName.tooltip "A nickname that identifies this publishing site (e.g.: 'MySite')">
|
||||
<!ENTITY siteUrl.label "Publishing address (e.g.: 'ftp://ftp.myisp.com/myusername'):">
|
||||
<!ENTITY siteUrl.tooltip "The FTP:// or HTTP:// address provided by your ISP or web hosting service">
|
||||
<!ENTITY browseUrl.label "HTTP address of your homepage (e.g.: 'http://www.myisp.com/myusername'):">
|
||||
<!ENTITY browseUrl.tooltip "The HTTP:// address of your home directory (don't include filename)">
|
||||
<!ENTITY username.label "User name:">
|
||||
<!ENTITY username.tooltip "The user name you use to log in to your ISP or web hosting service">
|
||||
<!ENTITY password.label "Password:">
|
||||
<!ENTITY password.tooltip "The password associated with your user name">
|
||||
<!ENTITY savePassword.label "Save Password">
|
||||
<!ENTITY savePassword.tooltip "Select this to save your password securely using Password Manager">
|
||||
|
|
Загрузка…
Ссылка в новой задаче