diff --git a/app/controller.js b/app/controller.js index 2107a8f1..3943721d 100644 --- a/app/controller.js +++ b/app/controller.js @@ -36,7 +36,7 @@ export default function(state, emitter) { document.addEventListener('blur', () => (updateTitle = true)); document.addEventListener('focus', () => { updateTitle = false; - emitter.emit('DOMTitleChange', 'Firefox Send'); + emitter.emit('DOMTitleChange', 'Send'); }); checkFiles(); }); diff --git a/app/ui/archiveTile.js b/app/ui/archiveTile.js index 35ca0f9d..f643553d 100644 --- a/app/ui/archiveTile.js +++ b/app/ui/archiveTile.js @@ -267,7 +267,7 @@ module.exports = function(state, emit, archive) { try { await navigator.share({ title: state.translate('-send-brand'), - text: `Download "${archive.name}" with Firefox Send: simple, safe file sharing`, + text: `Download "${archive.name}" with Send: simple, safe file sharing`, //state.translate('shareMessage', { name }), url: archive.url }); diff --git a/app/ui/legal.js b/app/ui/legal.js index 41763226..54981416 100644 --- a/app/ui/legal.js +++ b/app/ui/legal.js @@ -24,7 +24,7 @@ module.exports = function(state, emit) { > describes how we handle that information. Below are the top - things you should know about Firefox Send. You can also view the + things you should know about Send. You can also view the code

- Love Firefox Send? Take a quick survey to let us know how we can make - it better. + Love Send? Take a quick survey to let us know how we can make it + better.

- Firefox Send + Send - Firefox Send + Send @@ -14,4 +14,4 @@ - + diff --git a/server/routes/webmanifest.js b/server/routes/webmanifest.js index 276ddd24..4d82c2fa 100644 --- a/server/routes/webmanifest.js +++ b/server/routes/webmanifest.js @@ -2,7 +2,7 @@ const assets = require('../../common/assets'); module.exports = function(req, res) { const manifest = { - name: 'Firefox Send', + name: 'Send', short_name: 'Send', lang: req.language, icons: [ diff --git a/server/state.js b/server/state.js index 6947a721..143459a3 100644 --- a/server/state.js +++ b/server/state.js @@ -30,7 +30,7 @@ module.exports = async function(req) { locale, capabilities: { account: false }, translate: getTranslator(locale), - title: 'Firefox Send', + title: 'Send', description: 'Encrypt and send files with a link that automatically expires to ensure your important documents don’t stay online forever.', baseUrl: config.base_url,