download page style updates
This commit is contained in:
parent
08dc5fa23b
commit
2fd72096ae
|
@ -13,6 +13,9 @@ function password(state, emit) {
|
|||
class="h-full w-full flex flex-col items-center justify-center bg-white py-8"
|
||||
>
|
||||
<h1 class="mb-4">${state.translate('downloadFilesTitle')}</h1>
|
||||
<p class="w-full mb-4 md:w-4/5 font-light text-center">
|
||||
${state.translate('downloadMessage')}
|
||||
</p>
|
||||
<form
|
||||
class="flex flex-row flex-no-wrap w-full md:w-4/5"
|
||||
onsubmit="${checkPassword}"
|
||||
|
@ -137,9 +140,9 @@ module.exports = function(state, emit) {
|
|||
break;
|
||||
default:
|
||||
content = html`
|
||||
<div class="flex flex-col w-full h-full items-center mt-12">
|
||||
<div class="flex flex-col w-full h-full items-center justify-center">
|
||||
<h1 class="mb-4">${state.translate('downloadFilesTitle')}</h1>
|
||||
<p class="w-full md:w-4/5 pb-4 mb-4 text-center">
|
||||
<p class="w-full md:w-4/5 font-light text-center">
|
||||
${state.translate('downloadMessage')}
|
||||
</p>
|
||||
${archiveTile.preview(state, emit)}
|
||||
|
|
|
@ -3,6 +3,8 @@ const html = require('choo/html');
|
|||
const { bytes, platform } = require('../utils');
|
||||
const { canceledSignup, submittedSignup } = require('../metrics');
|
||||
|
||||
const DAYS = Math.floor(LIMITS.MAX_EXPIRE_SECONDS / 86400);
|
||||
|
||||
module.exports = function(trigger) {
|
||||
return function(state, emit, close) {
|
||||
const hidden = platform() === 'android' ? 'hidden' : '';
|
||||
|
@ -15,7 +17,7 @@ module.exports = function(trigger) {
|
|||
size: bytes(LIMITS.MAX_FILE_SIZE)
|
||||
})}</li>
|
||||
<li>${state.translate('accountBenefitExpiry')}</li>
|
||||
<li>${state.translate('accountBenefitExpiryTwo')}</li>
|
||||
<li>${state.translate('accountBenefitExpiryTwo', { count: DAYS })}</li>
|
||||
<li>${state.translate('accountBenefitSync')}</li>
|
||||
</ul>
|
||||
<form
|
||||
|
|
|
@ -162,16 +162,18 @@ downloadProgressButton = Downloading... { $progress }
|
|||
downloadMessage2 = Firefox Send lets you share files with a safe, private, and encrypted link that automatically expires to ensure your stuff does not remain online forever.
|
||||
signInEmailEnter = Enter your Email
|
||||
emailEntryPlaceholder = Enter your email
|
||||
signInSizeBump = Sign in to send up to {$size}
|
||||
signInSizeBump = Sign in to send up to { $size }
|
||||
signInContinueMessage = to continue to Firefox Send
|
||||
signInContinueButton = Continue
|
||||
signInMenuOption = Sign in/up
|
||||
signInNextOption = Continue
|
||||
accountMenuOption = Firefox Account
|
||||
accountBenefitTitle = Create a Firefox Account or sign in to:
|
||||
accountBenefitLargeFiles = Share files up to { $size}
|
||||
accountBenefitLargeFiles = Share files up to { $size }
|
||||
accountBenefitExpiry = Share files with more people
|
||||
accountBenefitExpiryTwo = Keep links active for up to { days } days
|
||||
accountBenefitExpiryTwo = { $count ->
|
||||
*[other] Keep links active for up to { $count } days
|
||||
}
|
||||
accountBenefitSync = Manage shared files from any device
|
||||
manageAccount = Manage Account
|
||||
logOut = Sign Out
|
||||
|
|
Loading…
Reference in New Issue