mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-09 12:42:44 +01:00
Remove Firefox branding from app name in front-end
This commit is contained in:
parent
505eb8c585
commit
45d5f41731
@ -36,7 +36,7 @@ export default function(state, emitter) {
|
|||||||
document.addEventListener('blur', () => (updateTitle = true));
|
document.addEventListener('blur', () => (updateTitle = true));
|
||||||
document.addEventListener('focus', () => {
|
document.addEventListener('focus', () => {
|
||||||
updateTitle = false;
|
updateTitle = false;
|
||||||
emitter.emit('DOMTitleChange', 'Firefox Send');
|
emitter.emit('DOMTitleChange', 'Send');
|
||||||
});
|
});
|
||||||
checkFiles();
|
checkFiles();
|
||||||
});
|
});
|
||||||
|
@ -267,7 +267,7 @@ module.exports = function(state, emit, archive) {
|
|||||||
try {
|
try {
|
||||||
await navigator.share({
|
await navigator.share({
|
||||||
title: state.translate('-send-brand'),
|
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 }),
|
//state.translate('shareMessage', { name }),
|
||||||
url: archive.url
|
url: archive.url
|
||||||
});
|
});
|
||||||
|
@ -24,7 +24,7 @@ module.exports = function(state, emit) {
|
|||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
>describes how we handle that information. Below are the top
|
>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
|
code</span
|
||||||
>
|
>
|
||||||
<a
|
<a
|
||||||
|
@ -17,8 +17,8 @@ module.exports = function() {
|
|||||||
Tell us what you think.
|
Tell us what you think.
|
||||||
</h1>
|
</h1>
|
||||||
<p class="font-normal leading-normal text-grey-80 px-4">
|
<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
|
Love Send? Take a quick survey to let us know how we can make it
|
||||||
it better.
|
better.
|
||||||
</p>
|
</p>
|
||||||
<a
|
<a
|
||||||
class="btn rounded-lg w-full flex-shrink-0 focus:outline my-5"
|
class="btn rounded-lg w-full flex-shrink-0 focus:outline my-5"
|
||||||
|
@ -20,7 +20,7 @@ class AndroidIndexPlugin {
|
|||||||
const page = html`
|
const page = html`
|
||||||
<html lang="en-US">
|
<html lang="en-US">
|
||||||
<head>
|
<head>
|
||||||
<title>Firefox Send</title>
|
<title>Send</title>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta
|
<meta
|
||||||
name="viewport"
|
name="viewport"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en-US">
|
||||||
<head>
|
<head>
|
||||||
<title>Firefox Send</title>
|
<title>Send</title>
|
||||||
<link href="index.css" rel="stylesheet">
|
<link href="index.css" rel="stylesheet">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||||
</head>
|
</head>
|
||||||
@ -14,4 +14,4 @@
|
|||||||
<script src="ios.js"></script>
|
<script src="ios.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ const assets = require('../../common/assets');
|
|||||||
|
|
||||||
module.exports = function(req, res) {
|
module.exports = function(req, res) {
|
||||||
const manifest = {
|
const manifest = {
|
||||||
name: 'Firefox Send',
|
name: 'Send',
|
||||||
short_name: 'Send',
|
short_name: 'Send',
|
||||||
lang: req.language,
|
lang: req.language,
|
||||||
icons: [
|
icons: [
|
||||||
|
@ -30,7 +30,7 @@ module.exports = async function(req) {
|
|||||||
locale,
|
locale,
|
||||||
capabilities: { account: false },
|
capabilities: { account: false },
|
||||||
translate: getTranslator(locale),
|
translate: getTranslator(locale),
|
||||||
title: 'Firefox Send',
|
title: 'Send',
|
||||||
description:
|
description:
|
||||||
'Encrypt and send files with a link that automatically expires to ensure your important documents don’t stay online forever.',
|
'Encrypt and send files with a link that automatically expires to ensure your important documents don’t stay online forever.',
|
||||||
baseUrl: config.base_url,
|
baseUrl: config.base_url,
|
||||||
|
Loading…
Reference in New Issue
Block a user