diff --git a/app/components/gh-uploader.js b/app/components/gh-uploader.js index 6b802b7a29..54efcf3465 100644 --- a/app/components/gh-uploader.js +++ b/app/components/gh-uploader.js @@ -181,7 +181,7 @@ export default Component.extend({ if (!extension || extensions.indexOf(extension.toLowerCase()) === -1) { let validExtensions = `.${extensions.join(', .').toUpperCase()}`; - return `The image type you uploaded is not supported. Please use ${validExtensions}`; + return `The file type you uploaded is not supported. Please use ${validExtensions}`; } return true; diff --git a/app/controllers/settings/labs.js b/app/controllers/settings/labs.js index 3885a79ff7..15cd507bc3 100644 --- a/app/controllers/settings/labs.js +++ b/app/controllers/settings/labs.js @@ -26,7 +26,7 @@ const IMPORT_MIME_TYPES = [ const JSON_EXTENSION = ['json']; const JSON_MIME_TYPE = ['application/json']; -const YAML_EXTENSION = ['yml', 'yaml']; +const YAML_EXTENSION = ['yaml']; const YAML_MIME_TYPE = [ 'text/vnd.yaml', 'application/vnd.yaml', diff --git a/app/templates/settings/labs.hbs b/app/templates/settings/labs.hbs index cb436f87b3..123bec1052 100644 --- a/app/templates/settings/labs.hbs +++ b/app/templates/settings/labs.hbs @@ -307,7 +307,7 @@ {{/if}} - Download current routes.yml + Download current routes.yaml {{/if}}