Minor text tweak for menu and buttons.

This commit is contained in:
Sean Li 2015-02-27 15:48:05 -08:00
parent 4793e3b1bb
commit 43d12c65fc
2 changed files with 5 additions and 5 deletions

View File

@ -112,7 +112,7 @@ var Containers = React.createClass({
},
handleMouseEnterDockerTerminal: function () {
this.setState({
currentButtonLabel: 'Open Terminal to use Docker Command Line'
currentButtonLabel: 'Open terminal to use Docker command line.'
});
},
handleMouseLeaveDockerTerminal: function () {
@ -122,7 +122,7 @@ var Containers = React.createClass({
},
handleMouseEnterReportIssue: function () {
this.setState({
currentButtonLabel: 'Report an Issue or Suggest Feedback'
currentButtonLabel: 'Report an issue or suggest feedback.'
});
},
handleMouseLeaveReportIssue: function () {
@ -132,7 +132,7 @@ var Containers = React.createClass({
},
handleMouseEnterPreferences: function () {
this.setState({
currentButtonLabel: 'Change App Preferences'
currentButtonLabel: 'Change app preferences.'
});
},
handleMouseLeavePreferences: function () {

View File

@ -73,7 +73,7 @@ var MenuTemplate = function () {
type: 'separator'
},
{
label: 'Open Terminal to use Docker Command Line',
label: 'Open Docker Command Line Terminal',
accelerator: 'Command+Shift+T',
enabled: !!docker.host(),
click: function() {
@ -161,7 +161,7 @@ var MenuTemplate = function () {
label: 'Help',
submenu: [
{
label: 'Report an Issue or Suggest Feedback',
label: 'Report Issue or Suggest Feedback',
click: function () {
metrics.track('Opened Issue Reporter', {
from: 'menu'