diff options
author | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-19 20:30:32 +0000 |
---|---|---|
committer | jamiewalch@google.com <jamiewalch@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-19 20:30:32 +0000 |
commit | d72de5bee9af23c9db0ff4a805117987f5755569 (patch) | |
tree | a34b81c6ecc27e964d812ac1dec49063e3938fc9 /remoting | |
parent | 151b4f24d0746185e5254b251db88041aba257be (diff) | |
download | chromium_src-d72de5bee9af23c9db0ff4a805117987f5755569.zip chromium_src-d72de5bee9af23c9db0ff4a805117987f5755569.tar.gz chromium_src-d72de5bee9af23c9db0ff4a805117987f5755569.tar.bz2 |
Replace debug button with Help. Add 'securely' to host description.
BUG=None
TEST=Manual
Review URL: http://codereview.chromium.org/7694007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97502 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/webapp/me2mom/_locales/en/messages.json | 10 | ||||
-rw-r--r-- | remoting/webapp/me2mom/choice.html | 6 |
2 files changed, 7 insertions, 9 deletions
diff --git a/remoting/webapp/me2mom/_locales/en/messages.json b/remoting/webapp/me2mom/_locales/en/messages.json index c0dab30..056efef 100644 --- a/remoting/webapp/me2mom/_locales/en/messages.json +++ b/remoting/webapp/me2mom/_locales/en/messages.json @@ -33,10 +33,6 @@ "message": "You are currently sharing this machine with another user. Please confirm that you want to continue sharing.", "description": "Message displayed when the session has lasted longer than five minutes, explaining that the host computer is being shared and asking whether or not the user wants to continue sharing it." }, - "DEBUG_BUTTON": { - "message": "Debug Log", - "description": "Label for the debug log button. Clicking this button reveals log of debug messages at the bottom of the page." - }, "DESCRIPTION_AUTHORIZE": { "message": "In order to use Chromoting you must first grant extended access permissions to your computer. Click Continue to authorize. You only have to do this once.", "description": "Text shown when the app first starts, or if the access token is invalidated, explaining the need to authorize the Chromoting app before use." @@ -46,7 +42,7 @@ "description": "Description for the client app. This is shown to the client user above the access code entry box before the connection is started." }, "DESCRIPTION_SHARE": { - "message": "With Chromoting you can easily let another Chrome user see and control your computer.", + "message": "With Chromoting you can easily and securely let another Chrome user see and control your computer.", "description": "Description for the host app. This is shown to the host above the 'Share' button user before the client connects." }, "DISCONNECT_BUTTON": { @@ -125,6 +121,10 @@ "message": "waiting for connection…", "description": "Footer text displayed at the host after an access code has been generated, but before a client connects." }, + "HELP": { + "message": "Help?", + "description": "Help link, displayed in the top-left (assuming ltr layout) corner of the main screen. Clicking this takes the user to our FAQ." + }, "INSTRUCTIONS_SHARE_ABOVE": { "message": "To begin sharing your desktop, read out the access code below to the person who will be assisting you.", "description": "Instructions shown above the access code when it is ready to be conveyed to the client." diff --git a/remoting/webapp/me2mom/choice.html b/remoting/webapp/me2mom/choice.html index db7edb0..b8c2a2a 100644 --- a/remoting/webapp/me2mom/choice.html +++ b/remoting/webapp/me2mom/choice.html @@ -49,8 +49,8 @@ found in the LICENSE file. </div> <div class="top-secondary" data-ui-mode="auth client host"> - <a href="#" onclick="remoting.toggleDebugLog();" - i18n-content="DEBUG_BUTTON"></a> + <a href="https://sites.google.com/a/google.com/chromoting/welcome/faq" + target="_blank" i18n-content="HELP"></a> </div> <div id="session-toolbar" @@ -63,8 +63,6 @@ found in the LICENSE file. <button type="button" onclick="remoting.disconnect();" i18n-content="DISCONNECT_BUTTON"></button> <span class="end-align"> - <button type="button" onclick="remoting.toggleDebugLog();" - i18n-content="DEBUG_BUTTON"></button> <button type="button" onclick="remoting.toggleScaleToFit();" i18n-content="SCALE_BUTTON"></button> </span> |