Navigation Menu

Skip to content

Commit

Permalink
Shorter prompt string.
Browse files Browse the repository at this point in the history
The old string was deemed too long.

BUG=None
TEST=Manual


Review URL: http://codereview.chromium.org/9733021

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128649 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
jamiewalch@chromium.org committed Mar 24, 2012
1 parent 3bae27b commit f29b398
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
14 changes: 5 additions & 9 deletions remoting/webapp/_locales/en/messages.json
Expand Up @@ -50,7 +50,7 @@
"description": "Label for the connect button. Clicking this button will start the Chromoting session if the access code is correct."
},
"CONFIRM_HOST_DELETE": {
"message": "You are about to disable remote connections to $hostname$. If you change your mind, you will need to visit that computer to re-enable this feature. Are you sure you want to disable remote connections?",
"message": "Are you sure you want to disable remote connections to $hostname$? If you change your mind, you'll need to visit that computer to re-enable connections.",
"description": "Confirmation prompt shown when a user attempts to delete a Me2Me host from their host list.",
"placeholders": {
"hostname": {
Expand Down Expand Up @@ -102,6 +102,10 @@
}
}
},
"DISABLE_HOST": {
"message": "Disable",
"description": "Label for the 'yes' response to the dialog asking the user to confirm whether or not they want to disable remote access to a host."
},
"DISCONNECT_BUTTON_PLUS_SHORTCUT_LINUX": {
"message": "Disconnect (Ctrl+Alt+Esc)",
"description": "Label for the disconnect button including the Linux keyboard shortcut. Clicking this button disconnects the remote user."
Expand Down Expand Up @@ -264,10 +268,6 @@
"message": "My Computers",
"description": "Sub-title for the remote access section of the UI, which contains a list of currently-shared hosts and a button to enable this computer for long-term sharing."
},
"NO": {
"message": "No",
"description": "Label for general-purpose 'No' buttons."
},
"OK": {
"message": "OK",
"description": "Label for general-purpose OK buttons."
Expand Down Expand Up @@ -353,9 +353,5 @@
"WARNING_NAT_DISABLED": {
"message": "NOTE: Policy settings permit connections only between computers within your network.",
"description": "Message displayed at the bottom of the host screen if local policy dictates that NAT traversal is disabled, meaning that connections outside the local network will not work."
},
"YES": {
"message": "Yes",
"description": "Label for general-purpose 'Yes' buttons."
}
}
4 changes: 2 additions & 2 deletions remoting/webapp/main.html
Expand Up @@ -401,11 +401,11 @@ <h2 i18n-content="CONNECTION_HISTORY_TITLE"></h2>
</p>
<div class="centered">
<button id="confirm-host-delete"
i18n-content="YES"
i18n-content="DISABLE_HOST"
type="button">
</button>
<button id="cancel-host-delete"
i18n-content="NO"
i18n-content="CANCEL"
type="button">
</button>
</div>
Expand Down

0 comments on commit f29b398

Please sign in to comment.