Skip to content

Commit

Permalink
Remove Firefox branding from app name in front-end
Browse files Browse the repository at this point in the history
  • Loading branch information
timvisee committed Oct 15, 2020
1 parent 505eb8c commit 45d5f41
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/controller.js
Expand Up @@ -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();
});
Expand Down
2 changes: 1 addition & 1 deletion app/ui/archiveTile.js
Expand Up @@ -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
});
Expand Down
2 changes: 1 addition & 1 deletion app/ui/legal.js
Expand Up @@ -24,7 +24,7 @@ module.exports = function(state, emit) {
>
<span
>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</span
>
<a
Expand Down
4 changes: 2 additions & 2 deletions app/ui/surveyDialog.js
Expand Up @@ -17,8 +17,8 @@ module.exports = function() {
Tell us what you think.
</h1>
<p class="font-normal leading-normal text-grey-80 px-4">
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.
</p>
<a
class="btn rounded-lg w-full flex-shrink-0 focus:outline my-5"
Expand Down
2 changes: 1 addition & 1 deletion build/android_index_plugin.js
Expand Up @@ -20,7 +20,7 @@ class AndroidIndexPlugin {
const page = html`
<html lang="en-US">
<head>
<title>Firefox Send</title>
<title>Send</title>
<meta charset="utf-8" />
<meta
name="viewport"
Expand Down
4 changes: 2 additions & 2 deletions ios/send-ios/assets/index.html
Expand Up @@ -2,7 +2,7 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Firefox Send</title>
<title>Send</title>
<link href="index.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
Expand All @@ -14,4 +14,4 @@
<script src="ios.js"></script>
</body>
</html>

2 changes: 1 addition & 1 deletion server/routes/webmanifest.js
Expand Up @@ -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: [
Expand Down
2 changes: 1 addition & 1 deletion server/state.js
Expand Up @@ -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,
Expand Down

0 comments on commit 45d5f41

Please sign in to comment.