Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve spelling / wording of prompts #34

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/DeploymentManager.js
Expand Up @@ -86,8 +86,8 @@ DeploymentManager.prototype.generateConfigFile = function() {
}

atom.confirm({
message: "Which type of configuration you want to generate ?",
detailedMessage: "Be careful, this will overwrite the existent configuration file !",
message: "Which type of configuration would you like to generate?",
detailedMessage: "Be carefulthis will overwrite the existing configuration file!",
buttons: {
"SFTP": function () {
writeConfig(configFactory.getSftpConfig());
Expand Down Expand Up @@ -225,7 +225,7 @@ DeploymentManager.prototype.uploadCurrentFile = function() {
*/
DeploymentManager.prototype.downloadCurrentFile = function() {
atom.confirm({
message: "You will download the current file, be careful, it will be overwritted.",
message: "Warning: you are downloading a single file. If a file exists with this same name, it will be overwritten. Proceed?",
buttons: {
"Overwrite": function () {
var connectionReady = function (connection) {
Expand Down Expand Up @@ -299,7 +299,7 @@ DeploymentManager.prototype.uploadSelection = function() {
*/
DeploymentManager.prototype.downloadSelection = function() {
atom.confirm({
message: "You will download all your selection, be careful, it will be overwritted.",
message: "Warning: you are downloading multiple files. Any files with the same names as your selection will be overwritten. Proceed?",
buttons: {
"Overwrite": function () {
var connectionReady = function (connection) {
Expand Down