debrand web app
10
README.md
@@ -1,7 +1,15 @@
|
||||
# [](https://send.firefox.com/) Firefox Send
|
||||
# Firefox Send
|
||||
|
||||
[](https://circleci.com/gh/mozilla/send)
|
||||
|
||||
## NOTICE - May 2021
|
||||
|
||||
Mozilla discontinued the Firefox Send service in September 2021. For more information about this, please see the [Mozilla Blog](https://blog.mozilla.org/blog/2020/09/17/update-on-firefox-send-and-firefox-notes/).
|
||||
|
||||
Please note that the [Mozilla Public License 2.0](https://www.mozilla.org/en-US/MPL/2.0/) does not "grant any rights in the trademarks, service marks, or logos of any Contributor." You may fork and modify the source code for Firefox Send pursuant to the Mozilla Public License, but you may not create a version of the service that uses Mozilla trademarks or logos.
|
||||
|
||||
This repository is archived. In May 2021, Mozilla removed Mozilla trademarks from some of the files in this repository so that developers using this code are less likely to inadvertently infringe Mozilla's trademarks and confuse users. You are welcome to copy and modify this code under its open source license, but please ensure that all use complies with [Mozilla's trademark policy](https://www.mozilla.org/en-US/foundation/trademarks/policy/). In other words, if you create a new version of Firefox Send you must remove all "Mozilla" and "Firefox" branding to ensure that users are not confused about who is providing the service.
|
||||
|
||||
**Docs:** [FAQ](docs/faq.md), [Encryption](docs/encryption.md), [Build](docs/build.md), [Docker](docs/docker.md), [Metrics](docs/metrics.md), [More](docs/)
|
||||
|
||||
---
|
||||
|
||||
@@ -6,8 +6,6 @@ import { bytes, locale } from './utils';
|
||||
import okDialog from './ui/okDialog';
|
||||
import copyDialog from './ui/copyDialog';
|
||||
import shareDialog from './ui/shareDialog';
|
||||
import signupDialog from './ui/signupDialog';
|
||||
import surveyDialog from './ui/surveyDialog';
|
||||
|
||||
export default function(state, emitter) {
|
||||
let lastRender = 0;
|
||||
@@ -36,7 +34,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();
|
||||
});
|
||||
@@ -110,19 +108,6 @@ export default function(state, emitter) {
|
||||
render();
|
||||
});
|
||||
|
||||
emitter.on('signup-cta', source => {
|
||||
const query = state.query;
|
||||
state.user.startAuthFlow(source, {
|
||||
campaign: query.utm_campaign,
|
||||
content: query.utm_content,
|
||||
medium: query.utm_medium,
|
||||
source: query.utm_source,
|
||||
term: query.utm_term
|
||||
});
|
||||
state.modal = signupDialog(source);
|
||||
render();
|
||||
});
|
||||
|
||||
emitter.on('authenticate', async (code, oauthState) => {
|
||||
try {
|
||||
await state.user.finishLogin(code, oauthState);
|
||||
@@ -309,7 +294,7 @@ export default function(state, emitter) {
|
||||
!state.user.surveyed
|
||||
) {
|
||||
state.user.surveyed = true;
|
||||
state.modal = surveyDialog();
|
||||
// state.modal = surveyDialog();
|
||||
} else {
|
||||
state.modal = null;
|
||||
}
|
||||
|
||||
22
app/main.css
@@ -31,10 +31,6 @@ a:focus {
|
||||
}
|
||||
|
||||
body {
|
||||
background-image: url('../assets/bg.svg');
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
@@ -182,19 +178,6 @@ footer li:hover {
|
||||
@apply bg-white;
|
||||
}
|
||||
|
||||
.mozilla-logo {
|
||||
background-image: url('../assets/mozilla-logo.svg');
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100px, 48px;
|
||||
overflow: hidden;
|
||||
text-indent: 120%;
|
||||
white-space: nowrap;
|
||||
display: inline-block;
|
||||
height: 32px;
|
||||
width: 100px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
#password-msg::after {
|
||||
content: '\200b';
|
||||
}
|
||||
@@ -337,11 +320,6 @@ select {
|
||||
@apply bg-grey-90;
|
||||
}
|
||||
|
||||
.mozilla-logo {
|
||||
background-color: white;
|
||||
border: 1px solid white;
|
||||
}
|
||||
|
||||
@screen md {
|
||||
.main > section {
|
||||
@apply border;
|
||||
|
||||
@@ -7,7 +7,6 @@ module.exports = function(app = choo({ hash: true })) {
|
||||
app.route('/download/:id', body(download));
|
||||
app.route('/download/:id/:key', body(download));
|
||||
app.route('/unsupported/:reason', body(require('./ui/unsupported')));
|
||||
app.route('/legal', body(require('./ui/legal')));
|
||||
app.route('/error', body(require('./ui/error')));
|
||||
app.route('/blank', body(require('./ui/blank')));
|
||||
app.route('/oauth', function(state, emit) {
|
||||
|
||||
@@ -1,29 +1,15 @@
|
||||
const html = require('choo/html');
|
||||
const Promo = require('./promo');
|
||||
const Header = require('./header');
|
||||
const Footer = require('./footer');
|
||||
|
||||
function banner(state) {
|
||||
if (state.layout) {
|
||||
return; // server side
|
||||
}
|
||||
const show =
|
||||
!state.capabilities.standalone &&
|
||||
!state.route.startsWith('/unsupported/') &&
|
||||
state.locale === 'en-US';
|
||||
if (show) {
|
||||
return state.cache(Promo, 'promo').render();
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = function body(main) {
|
||||
return function(state, emit) {
|
||||
const b = html`
|
||||
<body
|
||||
class="flex flex-col items-center font-sans md:h-screen md:bg-grey-10 dark:bg-black"
|
||||
>
|
||||
${banner(state, emit)} ${state.cache(Header, 'header').render()}
|
||||
${main(state, emit)} ${state.cache(Footer, 'footer').render()}
|
||||
${state.cache(Header, 'header').render()} ${main(state, emit)}
|
||||
${state.cache(Footer, 'footer').render()}
|
||||
</body>
|
||||
`;
|
||||
if (state.layout) {
|
||||
|
||||
@@ -12,35 +12,10 @@ class Footer extends Component {
|
||||
}
|
||||
|
||||
createElement() {
|
||||
const translate = this.state.translate;
|
||||
return html`
|
||||
<footer
|
||||
class="flex flex-col md:flex-row items-start w-full flex-none self-start p-6 md:p-8 font-medium text-xs text-grey-60 dark:text-grey-40 md:items-center justify-between"
|
||||
>
|
||||
<a class="mozilla-logo m-2" href="https://www.mozilla.org/">
|
||||
Mozilla
|
||||
</a>
|
||||
<ul
|
||||
class="flex flex-col md:flex-row items-start md:items-center md:justify-end"
|
||||
>
|
||||
<li class="m-2">
|
||||
<a href="https://www.mozilla.org/about/legal/terms/services/#send">
|
||||
${translate('footerLinkLegal')}
|
||||
</a>
|
||||
</li>
|
||||
<li class="m-2">
|
||||
<a href="/legal"> ${translate('footerLinkPrivacy')} </a>
|
||||
</li>
|
||||
<li class="m-2">
|
||||
<a href="https://www.mozilla.org/privacy/websites/#cookies">
|
||||
${translate('footerLinkCookies')}
|
||||
</a>
|
||||
</li>
|
||||
<li class="m-2">
|
||||
<a href="https://github.com/mozilla/send">GitHub </a>
|
||||
</li>
|
||||
</ul>
|
||||
</footer>
|
||||
></footer>
|
||||
`;
|
||||
}
|
||||
}
|
||||
|
||||
109
app/ui/legal.js
@@ -1,109 +0,0 @@
|
||||
const html = require('choo/html');
|
||||
const modal = require('./modal');
|
||||
|
||||
module.exports = function(state, emit) {
|
||||
state.modal = null;
|
||||
return html`
|
||||
<main class="main">
|
||||
${state.modal && modal(state, emit)}
|
||||
<div
|
||||
class="flex flex-col items-center bg-white m-4 px-6 py-8 border border-grey-30 md:border-none md:px-12 md:py-16 shadow w-full md:h-full dark:bg-grey-90"
|
||||
>
|
||||
<h1 class="text-center text-3xl font-bold">
|
||||
${state.translate('legalTitle')}
|
||||
</h1>
|
||||
<p class="mt-2">${state.translate('legalDateStamp')}</p>
|
||||
<div class="overflow-y-scroll py-8 px-12">
|
||||
<p class="leading-normal">
|
||||
<span>When Mozilla receives information from you, our</span>
|
||||
<a
|
||||
href="https://www.mozilla.org/privacy/"
|
||||
target="__blank"
|
||||
rel="noopener noreferrer"
|
||||
class="link-blue hover:underline"
|
||||
>Mozilla Privacy Policy</a
|
||||
>
|
||||
<span
|
||||
>describes how we handle that information. Below are the top
|
||||
things you should know about Firefox Send. You can also view the
|
||||
code</span
|
||||
>
|
||||
<a
|
||||
href="https://github.com/mozilla/send/blob/master/docs/metrics.md"
|
||||
target="__blank"
|
||||
rel="noopener noreferrer"
|
||||
class="link-blue hover:underline"
|
||||
>here</a
|
||||
>.
|
||||
</p>
|
||||
<ul class="mt-6 leading-normal">
|
||||
<li class="mb-4">
|
||||
<b>Content</b>: Mozilla receives an encrypted copy of the file you
|
||||
upload but we cannot access the content or name of your encrypted
|
||||
file. By default, files are stored for a maximum of either 24
|
||||
hours or 7 days. If you choose a download cap, the file can be
|
||||
deleted from our server sooner.
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<b>Data on your device</b>: So that you can check status or delete
|
||||
files, basic information about your uploaded files is stored on
|
||||
your local device. This includes our identifier for the file, the
|
||||
filename, and the file’s unique download URL. This is cleared if
|
||||
you delete your uploaded file or upon visiting Send after the file
|
||||
expires. Note, however, that the URL will persist in your browsing
|
||||
history (and with whomever you shared it) until manually deleted.
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<b>Personal data</b>: The following is necessary to provide the
|
||||
service:
|
||||
<ul class="mt-6 leading-normal">
|
||||
<li class="mb-4">
|
||||
<u>IP addresses</u>: We receive IP addresses of downloaders
|
||||
and uploaders as part of our standard server logs. These are
|
||||
retained for 90 days, and for that period, may be connected to
|
||||
activity of a file’s download URL. Although we develop our
|
||||
services in ways that minimize identification, you should know
|
||||
that it may be possible to correlate the IP address of a Send
|
||||
user to the IP address of other Mozilla services with
|
||||
accounts; and if there is a match, this could identify the
|
||||
account email address.
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<u>Firefox Account</u>: This is required for authentication
|
||||
only if you wish to upload larger file sizes. Your Firefox
|
||||
Account record will retain aggregate data on your usage of
|
||||
Send: for example, if you created a Firefox Account in
|
||||
connection with Send, number of files sent and approximate
|
||||
file sizes, and how many times you’ve used the service.
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<b>Non-personal data</b>: We receive the following to improve our
|
||||
service and performance:
|
||||
<ul class="mt-6 leading-normal">
|
||||
<li class="mb-4">
|
||||
<u>Interaction data</u>: This includes information such as
|
||||
number of people sending and receiving files, number of files
|
||||
uploaded and approximate file sizes, percentage of file
|
||||
downloaders who become uploaders, how people engage with the
|
||||
website (time spent, clicks, referrer information, site exit
|
||||
path, use of passwords).
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<u>Technical data</u>: This includes information such as
|
||||
operating system, browser, language preference, country,
|
||||
timestamps, duration for file transfer, reasons for errors,
|
||||
reasons for file expiration.
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<b>Third Party Services</b>: We use Google Cloud Platform.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
`;
|
||||
};
|
||||
@@ -1,40 +0,0 @@
|
||||
const html = require('choo/html');
|
||||
const Component = require('choo/component');
|
||||
const assets = require('../../common/assets');
|
||||
|
||||
class Promo extends Component {
|
||||
constructor(name, state) {
|
||||
super(name);
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
update() {
|
||||
return false;
|
||||
}
|
||||
|
||||
createElement() {
|
||||
return html`
|
||||
<send-promo
|
||||
class="w-full flex-row items-center content-center justify-center bg-white text-grey-80 px-4 py-3 flex border-b border-grey-banner leading-normal dark:bg-grey-90 dark:text-grey-20 dark:border-grey-80"
|
||||
>
|
||||
<div class="flex items-center mx-auto">
|
||||
<img
|
||||
src="${assets.get('master-logo.svg')}"
|
||||
class="w-6 h-6"
|
||||
alt="Firefox"
|
||||
/>
|
||||
<span class="ml-2 sm:ml-4 text-xs sm:text-base">
|
||||
${`Like Firefox Send? You'll love our new full-device VPN. `}
|
||||
<a
|
||||
class="underline link-blue"
|
||||
href="https://vpn.mozilla.org/?utm_source=send.firefox.com&utm_medium=referral&utm_content=Try+Firefox+Private+Network&utm_campaign=top-bar"
|
||||
>${`Get it today`}</a
|
||||
>
|
||||
</span>
|
||||
</div>
|
||||
</send-promo>
|
||||
`;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Promo;
|
||||
@@ -1,5 +1,4 @@
|
||||
const html = require('choo/html');
|
||||
const raw = require('choo/html/raw');
|
||||
const assets = require('../../common/assets');
|
||||
|
||||
const REPORTABLES = ['Malware', 'Pii', 'Abuse'];
|
||||
@@ -16,13 +15,6 @@ module.exports = function(state, emit) {
|
||||
<p class="text-xl text-center mb-4 leading-normal">
|
||||
${state.translate('reportUnknownDescription')}
|
||||
</p>
|
||||
<p class="text-center">
|
||||
${raw(
|
||||
replaceLinks(state.translate('reportReasonCopyright'), [
|
||||
'https://www.mozilla.org/about/legal/report-infringement/'
|
||||
])
|
||||
)}
|
||||
</p>
|
||||
</section>
|
||||
</main>
|
||||
`;
|
||||
@@ -88,13 +80,6 @@ module.exports = function(state, emit) {
|
||||
</li>
|
||||
`
|
||||
)}
|
||||
<li class="mt-4 mb-2 leading-normal">
|
||||
${raw(
|
||||
replaceLinks(state.translate('reportReasonCopyright'), [
|
||||
'https://www.mozilla.org/about/legal/report-infringement/'
|
||||
])
|
||||
)}
|
||||
</li>
|
||||
</ul>
|
||||
</fieldset>
|
||||
<input
|
||||
@@ -127,13 +112,4 @@ module.exports = function(state, emit) {
|
||||
const form = event.target;
|
||||
emit('report', { reason: form.reason.value });
|
||||
}
|
||||
|
||||
function replaceLinks(str, urls) {
|
||||
let i = 0;
|
||||
const s = str.replace(
|
||||
/<a>([^<]+)<\/a>/g,
|
||||
(m, v) => `<a class="text-blue" href="${urls[i++]}">${v}</a>`
|
||||
);
|
||||
return `<p>${s}</p>`;
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1,92 +0,0 @@
|
||||
const html = require('choo/html');
|
||||
const assets = require('../../common/assets');
|
||||
const { bytes } = require('../utils');
|
||||
const { canceledSignup, submittedSignup } = require('../metrics');
|
||||
|
||||
module.exports = function(trigger) {
|
||||
return function(state, emit, close) {
|
||||
const DAYS = Math.floor(state.LIMITS.MAX_EXPIRE_SECONDS / 86400);
|
||||
let submitting = false;
|
||||
return html`
|
||||
<send-signup-dialog
|
||||
class="flex flex-col justify-center my-16 md:my-0 px-8 md:px-24 w-full h-full"
|
||||
>
|
||||
<img src="${assets.get('master-logo.svg')}" class="h-16 mt-1 mb-4" />
|
||||
<section class="flex flex-col flex-shrink-0 self-center">
|
||||
<h1 class="text-3xl font-bold text-center">
|
||||
${state.translate('accountBenefitTitle')}
|
||||
</h1>
|
||||
<ul
|
||||
class="leading-normal list-disc text-grey-80 my-2 mt-4 pl-4 md:self-center dark:text-grey-40"
|
||||
>
|
||||
<li>
|
||||
${state.translate('accountBenefitLargeFiles', {
|
||||
size: bytes(state.LIMITS.MAX_FILE_SIZE)
|
||||
})}
|
||||
</li>
|
||||
<li>${state.translate('accountBenefitDownloadCount')}</li>
|
||||
<li>
|
||||
${state.translate('accountBenefitTimeLimit', { count: DAYS })}
|
||||
</li>
|
||||
<li>${state.translate('accountBenefitSync')}</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="flex flex-col flex-grow m-4 md:self-center md:w-128">
|
||||
<form onsubmit=${submitEmail} data-no-csrf>
|
||||
<input
|
||||
id="email-input"
|
||||
type="email"
|
||||
class="hidden border rounded-lg w-full px-2 py-1 h-12 mb-3 text-lg text-grey-70 leading-loose dark:bg-grey-80 dark:text-white"
|
||||
placeholder=${state.translate('emailPlaceholder')}
|
||||
/>
|
||||
<input
|
||||
class="btn rounded-lg w-full flex flex-shrink-0 items-center justify-center"
|
||||
value="${state.translate('signInOnlyButton')}"
|
||||
title="${state.translate('signInOnlyButton')}"
|
||||
id="email-submit"
|
||||
type="submit"
|
||||
/>
|
||||
</form>
|
||||
${state.user.loginRequired
|
||||
? ''
|
||||
: html`
|
||||
<button
|
||||
class="my-3 link-blue font-medium"
|
||||
title="${state.translate('deletePopupCancel')}"
|
||||
onclick=${cancel}
|
||||
>
|
||||
${state.translate('deletePopupCancel')}
|
||||
</button>
|
||||
`}
|
||||
</section>
|
||||
</send-signup-dialog>
|
||||
`;
|
||||
|
||||
function emailish(str) {
|
||||
if (!str) {
|
||||
return false;
|
||||
}
|
||||
// just check if it's the right shape
|
||||
const a = str.split('@');
|
||||
return a.length === 2 && a.every(s => s.length > 0);
|
||||
}
|
||||
|
||||
function cancel(event) {
|
||||
canceledSignup({ trigger });
|
||||
close(event);
|
||||
}
|
||||
|
||||
function submitEmail(event) {
|
||||
event.preventDefault();
|
||||
if (submitting) {
|
||||
return;
|
||||
}
|
||||
submitting = true;
|
||||
|
||||
const el = document.getElementById('email-input');
|
||||
const email = el.value;
|
||||
submittedSignup({ trigger });
|
||||
emit('login', emailish(email) ? email : null);
|
||||
}
|
||||
};
|
||||
};
|
||||
@@ -1,42 +0,0 @@
|
||||
const html = require('choo/html');
|
||||
const version = require('../../package.json').version;
|
||||
const { browserName } = require('../utils');
|
||||
|
||||
module.exports = function() {
|
||||
return function(state, emit, close) {
|
||||
const surveyUrl = `${
|
||||
state.PREFS.surveyUrl
|
||||
}?ver=${version}&browser=${browserName()}&anon=${
|
||||
state.user.loggedIn
|
||||
}&active_count=${state.storage.files.length}`;
|
||||
return html`
|
||||
<send-survey-dialog
|
||||
class="flex flex-col items-center text-center p-4 max-w-sm m-auto"
|
||||
>
|
||||
<h1 class="text-3xl font-bold my-4">
|
||||
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.
|
||||
</p>
|
||||
<a
|
||||
class="btn rounded-lg w-full flex-shrink-0 focus:outline my-5"
|
||||
onclick="${() => emit('closeModal')}"
|
||||
title="Give feedback"
|
||||
href="${surveyUrl}"
|
||||
target="_blank"
|
||||
>
|
||||
Give feedback
|
||||
</a>
|
||||
<button
|
||||
class="link-blue font-medium cursor-pointer focus:outline"
|
||||
onclick="${close}"
|
||||
title="Skip"
|
||||
>
|
||||
Skip
|
||||
</button>
|
||||
</send-survey-dialog>
|
||||
`;
|
||||
};
|
||||
};
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 19 KiB |
@@ -1,31 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="1440px" height="909px" viewBox="0 0 1440 909" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: sketchtool 53 (72520) - https://sketchapp.com -->
|
||||
<title>71CDA8D6-6870-4A28-B45F-707A97F95302</title>
|
||||
<desc>Created with sketchtool.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="0" y="0.791595976" width="1440" height="938.017204"></rect>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Send_Home-Spec">
|
||||
<g id="Pattern-3">
|
||||
<g id="bg-shapes-01" transform="translate(0.000000, -0.791596)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="Mask" fill-opacity="0" fill="#FFFFFF" xlink:href="#path-1"></use>
|
||||
<g mask="url(#mask-2)" fill="#FFFFFF" fill-rule="nonzero">
|
||||
<g transform="translate(-41.000000, -205.881720)">
|
||||
<ellipse id="Oval" cx="43.4808403" cy="716.468133" rx="43.4511199" ry="43.6380065"></ellipse>
|
||||
<path d="M398.104382,765.687158 C432.728564,765.687158 460.784554,737.505523 460.784554,702.737394 C460.784554,667.96429 432.723611,639.787629 398.104382,639.787629 C284.468706,639.787629 192.023625,546.944935 192.023625,432.820504 C192.023625,318.696074 284.468706,225.853379 398.104382,225.853379 C432.728564,225.853379 460.784554,197.671744 460.784554,162.903615 C460.784554,128.135486 432.723611,99.9538503 398.104382,99.9538503 C215.34913,99.9538503 66.6583273,249.284183 66.6583273,432.825479 C66.6583273,616.366775 215.34913,765.687158 398.104382,765.687158 Z" id="Path"></path>
|
||||
<path d="M107.784833,1107.52553 L220.731988,994.092583 C225.670516,989.132814 228.444413,982.402054 228.444413,975.387737 C228.444413,968.37342 225.670516,961.642661 220.731988,956.682892 L107.784833,843.254918 C97.4966464,832.922481 80.8185889,832.922481 70.5304019,843.254918 C60.2422149,853.587355 60.2422149,870.337147 70.5304019,880.669584 L164.852817,975.392712 L70.5304019,1070.11087 C60.2422149,1080.4433 60.2422149,1097.19309 70.5304019,1107.52553 C75.6769721,1112.69424 82.4135798,1115.2761 89.1600944,1115.2761 C95.8967021,1115.27113 102.643217,1112.68926 107.784833,1107.52553 Z" id="Path"></path>
|
||||
<path d="M1243.53296,742.3701 L1551.67595,432.907005 C1565.14873,419.376274 1572.71935,401.017629 1572.71935,381.87353 C1572.71935,362.729432 1565.14873,344.370786 1551.67595,330.840055 L1243.53296,21.3769605 C1215.46119,-6.80507938 1169.96447,-6.80507938 1141.8927,21.3769605 C1113.83136,49.5590004 1113.83136,95.2618701 1141.8927,123.44391 L1399.22598,381.87353 L1141.8927,640.30315 C1113.83136,668.48519 1113.83136,714.18806 1141.8927,742.3701 C1155.92859,756.466356 1174.3181,763.509248 1192.71283,763.509248 C1211.09713,763.509248 1229.49707,756.46112 1243.53296,742.3701 Z" id="Path"></path>
|
||||
<ellipse id="Oval" cx="1417.39037" cy="673.515125" rx="30" ry="30.1290323"></ellipse>
|
||||
<path d="M1068.44288,969.593673 C1068.44288,985.323653 1081.13346,998.068816 1096.79607,998.068816 C1112.45869,998.068816 1125.14927,985.323653 1125.14927,969.593673 C1125.14927,917.971285 1166.96577,875.969952 1218.37203,875.969952 C1269.77829,875.969952 1311.59479,917.96631 1311.59479,969.593673 C1311.59479,985.323653 1324.28537,998.068816 1339.94799,998.068816 C1355.6106,998.068816 1368.30118,985.323653 1368.30118,969.593673 C1368.30118,886.571023 1301.04408,819.019668 1218.37203,819.019668 C1135.69998,819.019668 1068.44288,886.566048 1068.44288,969.593673 Z" id="Path"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.8 KiB |
@@ -1,94 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="336px" height="210px" viewBox="0 0 336 210" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: sketchtool 53.1 (72631) - https://sketchapp.com -->
|
||||
<title>CC310D7B-7EC7-4AEF-90E5-10044C2FA0F1</title>
|
||||
<desc>Created with sketchtool.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="-28.184294%" y1="-47.2118902%" x2="84.470028%" y2="96.7133243%" id="linearGradient-1">
|
||||
<stop stop-color="#FA357F" offset="0%"></stop>
|
||||
<stop stop-color="#7878FF" offset="99.91%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="20.1958296%" y1="50.3861311%" x2="169.064414%" y2="48.680104%" id="linearGradient-2">
|
||||
<stop stop-color="#FFF361" offset="0%"></stop>
|
||||
<stop stop-color="#FFA80A" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="7.13940616%" y1="-13.3627152%" x2="84.3212705%" y2="120.017199%" id="linearGradient-3">
|
||||
<stop stop-color="#FF5162" offset="0%"></stop>
|
||||
<stop stop-color="#83219D" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="50.0466667%" y1="98.7466885%" x2="50.0466667%" y2="63.9770799%" id="linearGradient-4">
|
||||
<stop stop-color="#008787" offset="0.4302823%"></stop>
|
||||
<stop stop-color="#005E5E" offset="99.91%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="34.0866057%" y1="25.5581764%" x2="59.4765337%" y2="63.0992243%" id="linearGradient-5">
|
||||
<stop stop-color="#FFD943" offset="0%"></stop>
|
||||
<stop stop-color="#FFA80A" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="21.6627829%" y1="-7.19090722%" x2="65.1350317%" y2="106.40324%" id="linearGradient-6">
|
||||
<stop stop-color="#FF8748" offset="0%"></stop>
|
||||
<stop stop-color="#FE7852" offset="13.28%"></stop>
|
||||
<stop stop-color="#FC546A" offset="50.49%"></stop>
|
||||
<stop stop-color="#FA3D79" offset="80.73%"></stop>
|
||||
<stop stop-color="#FA357F" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Send_Download-Completed" transform="translate(-552.000000, -339.000000)" fill-rule="nonzero">
|
||||
<g id="firefox-send_illustrations-03" transform="translate(552.000000, 339.000000)">
|
||||
<ellipse id="Oval" fill="#EDEDF0" opacity="0.5" cx="165.886875" cy="198.410625" rx="73.52625" ry="11.563125"></ellipse>
|
||||
<g id="Group" transform="translate(0.000000, 39.375000)" fill="#EDEDF0" opacity="0.5">
|
||||
<g transform="translate(30.187500, 116.812500)">
|
||||
<g transform="translate(21.000000, 5.250000)" id="Path">
|
||||
<path d="M1.575,3.255 L91.546875,3.255 C92.26875,3.255 92.859375,2.664375 92.859375,1.9425 C92.859375,1.220625 92.26875,0.63 91.546875,0.63 L1.575,0.63 C0.853125,0.63 0.2625,1.220625 0.2625,1.9425 C0.2625,2.664375 0.853125,3.255 1.575,3.255 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(76.125000, 0.000000)" id="Path">
|
||||
<path d="M1.693125,1.8375 L24.268125,1.8375 C24.635625,1.8375 24.924375,1.54875 24.924375,1.18125 C24.924375,0.81375 24.635625,0.525 24.268125,0.525 L1.693125,0.525 C1.325625,0.525 1.036875,0.81375 1.036875,1.18125 C1.036875,1.54875 1.325625,1.8375 1.693125,1.8375 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(0.000000, 11.812500)" id="Shape">
|
||||
<path d="M0.525,1.89 C0.525,1.5225 0.81375,1.23375 1.18125,1.23375 L5.11875,1.23375 C5.48625,1.23375 5.775,1.5225 5.775,1.89 C5.775,2.2575 5.48625,2.54625 5.11875,2.54625 L1.18125,2.54625 C0.81375,2.54625 0.525,2.2575 0.525,1.89 Z M14.9625,1.89 C14.9625,1.5225 15.25125,1.23375 15.61875,1.23375 L31.36875,1.23375 C31.73625,1.23375 32.025,1.5225 32.025,1.89 C32.025,2.2575 31.73625,2.54625 31.36875,2.54625 L15.61875,2.54625 C15.25125,2.54625 14.9625,2.2575 14.9625,1.89 Z M42.525,1.89 C42.525,1.5225 42.81375,1.23375 43.18125,1.23375 L44.49375,1.23375 C44.86125,1.23375 45.15,1.5225 45.15,1.89 C45.15,2.2575 44.86125,2.54625 44.49375,2.54625 L43.18125,2.54625 C42.81375,2.54625 42.525,2.2575 42.525,1.89 Z M49.0875,1.89 C49.0875,1.5225 49.37625,1.23375 49.74375,1.23375 L53.68125,1.23375 C54.04875,1.23375 54.3375,1.5225 54.3375,1.89 C54.3375,2.2575 54.04875,2.54625 53.68125,2.54625 L49.74375,2.54625 C49.37625,2.54625 49.0875,2.2575 49.0875,1.89 Z M63.525,1.89 C63.525,1.5225 63.81375,1.23375 64.18125,1.23375 L79.93125,1.23375 C80.29875,1.23375 80.5875,1.5225 80.5875,1.89 C80.5875,2.2575 80.29875,2.54625 79.93125,2.54625 L64.18125,2.54625 C63.81375,2.54625 63.525,2.2575 63.525,1.89 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(123.375000, 72.187500)">
|
||||
<g transform="translate(26.250000, 5.250000)" id="Path">
|
||||
<path d="M1.771875,3.163125 L147.039375,3.163125 C147.76125,3.163125 148.351875,2.5725 148.351875,1.850625 C148.351875,1.12875 147.76125,0.538125 147.039375,0.538125 L1.771875,0.538125 C1.05,0.538125 0.459375,1.12875 0.459375,1.850625 C0.459375,2.5725 1.05,3.163125 1.771875,3.163125 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(45.937500, 0.000000)" id="Path">
|
||||
<path d="M1.70625,1.850625 L38.14125,1.850625 C38.50875,1.850625 38.7975,1.561875 38.7975,1.194375 C38.7975,0.826875 38.50875,0.538125 38.14125,0.538125 L1.70625,0.538125 C1.33875,0.538125 1.05,0.826875 1.05,1.194375 C1.05,1.561875 1.351875,1.850625 1.70625,1.850625 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(0.000000, 11.812500)" id="Shape">
|
||||
<path d="M1.2075,1.666875 C1.2075,1.299375 1.49625,1.010625 1.86375,1.010625 L17.61375,1.010625 C17.98125,1.010625 18.27,1.299375 18.27,1.666875 C18.27,2.034375 17.98125,2.323125 17.61375,2.323125 L1.86375,2.323125 C1.49625,2.323125 1.2075,2.034375 1.2075,1.666875 Z M27.4575,1.666875 C27.4575,1.299375 27.74625,1.010625 28.11375,1.010625 L32.05125,1.010625 C32.41875,1.010625 32.7075,1.299375 32.7075,1.666875 C32.7075,2.034375 32.41875,2.323125 32.05125,2.323125 L28.11375,2.323125 C27.74625,2.323125 27.4575,2.034375 27.4575,1.666875 Z M36.645,1.666875 C36.645,1.299375 36.93375,1.010625 37.30125,1.010625 L38.61375,1.010625 C38.98125,1.010625 39.27,1.299375 39.27,1.666875 C39.27,2.034375 38.98125,2.323125 38.61375,2.323125 L37.30125,2.323125 C36.93375,2.323125 36.645,2.034375 36.645,1.666875 Z M49.77,1.666875 C49.77,1.299375 50.05875,1.010625 50.42625,1.010625 L66.17625,1.010625 C66.54375,1.010625 66.8325,1.299375 66.8325,1.666875 C66.8325,2.034375 66.54375,2.323125 66.17625,2.323125 L50.42625,2.323125 C50.05875,2.323125 49.77,2.034375 49.77,1.666875 Z M76.02,1.666875 C76.02,1.299375 76.30875,1.010625 76.67625,1.010625 L80.61375,1.010625 C80.98125,1.010625 81.27,1.299375 81.27,1.666875 C81.27,2.034375 80.98125,2.323125 80.61375,2.323125 L76.67625,2.323125 C76.30875,2.323125 76.02,2.034375 76.02,1.666875 Z M85.2075,1.666875 C85.2075,1.299375 85.49625,1.010625 85.86375,1.010625 L87.17625,1.010625 C87.54375,1.010625 87.8325,1.299375 87.8325,1.666875 C87.8325,2.034375 87.54375,2.323125 87.17625,2.323125 L85.86375,2.323125 C85.49625,2.323125 85.2075,2.034375 85.2075,1.666875 Z M98.3325,1.666875 C98.3325,1.299375 98.62125,1.010625 98.98875,1.010625 L114.73875,1.010625 C115.10625,1.010625 115.395,1.299375 115.395,1.666875 C115.395,2.034375 115.10625,2.323125 114.73875,2.323125 L98.98875,2.323125 C98.62125,2.323125 98.3325,2.034375 98.3325,1.666875 Z M124.5825,1.666875 C124.5825,1.299375 124.87125,1.010625 125.23875,1.010625 L129.17625,1.010625 C129.54375,1.010625 129.8325,1.299375 129.8325,1.666875 C129.8325,2.034375 129.54375,2.323125 129.17625,2.323125 L125.23875,2.323125 C124.87125,2.323125 124.5825,2.034375 124.5825,1.666875 Z M133.77,1.666875 C133.77,1.299375 134.05875,1.010625 134.42625,1.010625 L135.73875,1.010625 C136.10625,1.010625 136.395,1.299375 136.395,1.666875 C136.395,2.034375 136.10625,2.323125 135.73875,2.323125 L134.42625,2.323125 C134.05875,2.323125 133.77,2.034375 133.77,1.666875 Z M146.895,1.666875 C146.895,1.299375 147.18375,1.010625 147.55125,1.010625 L163.30125,1.010625 C163.66875,1.010625 163.9575,1.299375 163.9575,1.666875 C163.9575,2.034375 163.66875,2.323125 163.30125,2.323125 L147.55125,2.323125 C147.18375,2.323125 146.895,2.034375 146.895,1.666875 Z M173.145,1.666875 C173.145,1.299375 173.43375,1.010625 173.80125,1.010625 L177.73875,1.010625 C178.10625,1.010625 178.395,1.299375 178.395,1.666875 C178.395,2.034375 178.10625,2.323125 177.73875,2.323125 L173.80125,2.323125 C173.43375,2.323125 173.145,2.034375 173.145,1.666875 Z M182.3325,1.666875 C182.3325,1.299375 182.62125,1.010625 182.98875,1.010625 L184.30125,1.010625 C184.66875,1.010625 184.9575,1.299375 184.9575,1.666875 C184.9575,2.034375 184.66875,2.323125 184.30125,2.323125 L182.98875,2.323125 C182.62125,2.323125 182.3325,2.034375 182.3325,1.666875 Z M195.4575,1.666875 C195.4575,1.299375 195.74625,1.010625 196.11375,1.010625 L211.86375,1.010625 C212.23125,1.010625 212.52,1.299375 212.52,1.666875 C212.52,2.034375 212.23125,2.323125 211.86375,2.323125 L196.11375,2.323125 C195.74625,2.323125 195.4575,2.034375 195.4575,1.666875 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M2.139375,33.2325 L35.503125,33.2325 C35.503125,33.2325 25.06875,9.89625 47.22375,6.8775 C66.99,4.186875 74.799375,24.504375 74.799375,24.504375 C74.799375,24.504375 77.14875,12.78375 88.895625,15.028125 C100.485,17.233125 109.0425,35.88375 109.0425,35.88375 L138.10125,35.88375" id="Path"></path>
|
||||
<g transform="translate(1.312500, 0.000000)" id="Shape">
|
||||
<path d="M137.36625,30.37125 L128.7825,30.37125 C128.349375,30.37125 128.008125,30.03 128.008125,29.596875 C128.008125,29.16375 128.349375,28.8225 128.7825,28.8225 L137.36625,28.8225 C137.799375,28.8225 138.140625,29.16375 138.140625,29.596875 C138.140625,30.03 137.799375,30.37125 137.36625,30.37125 Z M114.883125,30.37125 L113.334375,30.37125 C112.90125,30.37125 112.56,30.03 112.56,29.596875 C112.56,29.16375 112.90125,28.8225 113.334375,28.8225 L114.883125,28.8225 C115.31625,28.8225 115.6575,29.16375 115.6575,29.596875 C115.6575,30.03 115.303125,30.37125 114.883125,30.37125 Z M34.755,29.439375 L32.274375,29.439375 C31.84125,29.439375 31.5,29.098125 31.5,28.665 C31.5,28.231875 31.84125,27.890625 32.274375,27.890625 L33.613125,27.890625 C33.508125,27.615 33.39,27.27375 33.25875,26.893125 C33.1275,26.48625 33.3375,26.053125 33.744375,25.90875 C34.15125,25.7775 34.584375,25.9875 34.72875,26.394375 C35.135625,27.58875 35.46375,28.32375 35.46375,28.336875 C35.56875,28.573125 35.5425,28.84875 35.41125,29.071875 C35.266875,29.308125 35.0175,29.439375 34.755,29.439375 Z M19.92375,29.439375 L1.39125,29.439375 C0.958125,29.439375 0.616875,29.098125 0.616875,28.665 C0.616875,28.231875 0.958125,27.890625 1.39125,27.890625 L19.92375,27.890625 C20.356875,27.890625 20.698125,28.231875 20.698125,28.665 C20.698125,29.098125 20.34375,29.439375 19.92375,29.439375 Z M107.769375,29.360625 C107.49375,29.360625 107.23125,29.21625 107.1,28.966875 C106.60125,28.0875 105.7875,26.69625 104.698125,25.06875 C104.461875,24.714375 104.55375,24.22875 104.908125,23.9925 C105.2625,23.75625 105.748125,23.848125 105.984375,24.2025 C107.1,25.869375 107.94,27.3 108.451875,28.205625 C108.661875,28.573125 108.530625,29.045625 108.15,29.255625 C108.01875,29.32125 107.8875,29.360625 107.769375,29.360625 Z M32.55,21.42 C32.169375,21.42 31.84125,21.144375 31.78875,20.750625 C31.71,20.23875 31.6575,19.700625 31.618125,19.1625 C31.57875,18.7425 31.906875,18.361875 32.326875,18.335625 C32.773125,18.309375 33.1275,18.61125 33.15375,19.044375 C33.193125,19.55625 33.245625,20.055 33.324375,20.540625 C33.39,20.960625 33.088125,21.354375 32.668125,21.406875 C32.62875,21.42 32.589375,21.42 32.55,21.42 Z M72.778125,18.020625 C72.5025,18.020625 72.24,17.87625 72.095625,17.61375 C71.8725,17.206875 71.623125,16.760625 71.3475,16.30125 C71.124375,15.93375 71.2425,15.46125 71.61,15.238125 C71.9775,15.015 72.45,15.133125 72.673125,15.500625 C72.961875,15.98625 73.224375,16.445625 73.460625,16.87875 C73.6575,17.259375 73.52625,17.71875 73.145625,17.92875 C73.0275,17.994375 72.89625,18.020625 72.778125,18.020625 Z M97.295625,16.051875 C97.111875,16.051875 96.94125,15.98625 96.796875,15.868125 C93.84375,13.335 90.90375,11.773125 88.029375,11.221875 C85.2075,10.68375 82.71375,10.959375 80.64,12.0225 C80.259375,12.219375 79.8,12.061875 79.603125,11.694375 C79.40625,11.31375 79.550625,10.854375 79.93125,10.6575 C82.306875,9.42375 85.155,9.10875 88.318125,9.7125 C91.455,10.31625 94.644375,11.983125 97.8075,14.7 C98.135625,14.975625 98.161875,15.46125 97.88625,15.789375 C97.715625,15.96 97.505625,16.051875 97.295625,16.051875 Z M68.394375,11.668125 C68.184375,11.668125 67.96125,11.57625 67.816875,11.405625 C66.80625,10.2375 65.716875,9.174375 64.60125,8.2425 C64.273125,7.966875 64.23375,7.48125 64.509375,7.153125 C64.785,6.825 65.270625,6.785625 65.59875,7.06125 C66.78,8.045625 67.921875,9.174375 68.985,10.395 C69.260625,10.723125 69.234375,11.20875 68.90625,11.484375 C68.74875,11.6025 68.565,11.668125 68.394375,11.668125 Z M36.553125,7.16625 C36.343125,7.16625 36.133125,7.074375 35.975625,6.916875 C35.686875,6.601875 35.713125,6.11625 36.028125,5.8275 C38.495625,3.59625 41.97375,2.1525 46.370625,1.561875 C49.06125,1.194375 51.699375,1.23375 54.193125,1.666875 C54.613125,1.745625 54.88875,2.139375 54.823125,2.559375 C54.744375,2.979375 54.350625,3.268125 53.930625,3.189375 C51.594375,2.7825 49.11375,2.75625 46.580625,3.0975 C42.49875,3.661875 39.29625,4.96125 37.065,6.9825 C36.920625,7.100625 36.736875,7.16625 36.553125,7.16625 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(0.000000, 32.812500)" id="Path">
|
||||
<path d="M139.636875,3.49125 L2.12625,3.49125 C1.273125,3.49125 0.5775,2.795625 0.5775,1.9425 C0.5775,1.089375 1.273125,0.39375 2.12625,0.39375 L139.636875,0.39375 C140.49,0.39375 141.185625,1.089375 141.185625,1.9425 C141.185625,2.795625 140.49,3.49125 139.636875,3.49125 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(217.875000, 1.312500)">
|
||||
<path d="M2.034375,19.359375 L20.65875,19.359375 C20.65875,19.359375 14.83125,6.339375 27.195,4.659375 C38.22,3.163125 42.590625,14.49 42.590625,14.49 C42.590625,14.49 43.903125,7.95375 50.465625,9.200625 C56.93625,10.434375 61.71375,20.8425 61.71375,20.8425 L77.923125,20.8425" id="Path"></path>
|
||||
<g transform="translate(1.312500, 0.000000)" id="Shape">
|
||||
<path d="M19.884375,17.2725 L1.28625,17.2725 C0.853125,17.2725 0.511875,16.93125 0.511875,16.498125 C0.511875,16.065 0.853125,15.72375 1.28625,15.72375 L19.884375,15.72375 C20.3175,15.72375 20.65875,16.065 20.65875,16.498125 C20.65875,16.93125 20.3175,17.2725 19.884375,17.2725 Z M77.175,17.023125 L76.453125,17.023125 C76.02,17.023125 75.67875,16.681875 75.67875,16.24875 C75.67875,15.815625 76.02,15.474375 76.453125,15.474375 L77.175,15.474375 C77.608125,15.474375 77.949375,15.815625 77.949375,16.24875 C77.949375,16.681875 77.608125,17.023125 77.175,17.023125 Z M70.258125,17.023125 L65.611875,17.023125 C65.17875,17.023125 64.8375,16.681875 64.8375,16.24875 C64.8375,15.815625 65.17875,15.474375 65.611875,15.474375 L70.258125,15.474375 C70.69125,15.474375 71.0325,15.815625 71.0325,16.24875 C71.0325,16.681875 70.69125,17.023125 70.258125,17.023125 Z M41.855625,12.39 C41.540625,12.39 41.251875,12.18 41.13375,11.89125 L41.015625,11.615625 C40.858125,11.26125 40.989375,10.84125 41.3175,10.644375 C42.039375,8.47875 44.07375,5.394375 48.129375,5.394375 C48.680625,5.394375 49.27125,5.446875 49.875,5.565 C52.185,5.998125 54.508125,7.35 56.791875,9.555 C57.09375,9.856875 57.106875,10.3425 56.805,10.644375 C56.503125,10.959375 56.0175,10.959375 55.715625,10.6575 C53.655,8.6625 51.594375,7.455 49.58625,7.074375 C49.074375,6.9825 48.58875,6.93 48.129375,6.93 C43.666875,6.93 42.65625,11.563125 42.616875,11.76 C42.538125,12.140625 42.223125,12.39 41.855625,12.39 Z M20.29125,5.473125 C20.1075,5.473125 19.936875,5.4075 19.7925,5.289375 C19.464375,5.01375 19.425,4.528125 19.700625,4.2 C20.724375,2.9925 22.155,2.1 23.953125,1.535625 C24.36,1.404375 24.793125,1.640625 24.924375,2.0475 C25.055625,2.454375 24.819375,2.8875 24.4125,3.01875 C22.903125,3.49125 21.721875,4.22625 20.881875,5.1975 C20.7375,5.38125 20.514375,5.473125 20.29125,5.473125 Z M31.828125,2.874375 C31.7625,2.874375 31.696875,2.86125 31.618125,2.848125 C31.15875,2.73 30.68625,2.625 30.200625,2.559375 C29.780625,2.49375 29.47875,2.1 29.544375,1.68 C29.61,1.26 30.00375,0.984375 30.42375,1.02375 C30.975,1.1025 31.513125,1.220625 32.025,1.351875 C32.431875,1.47 32.68125,1.89 32.57625,2.296875 C32.484375,2.638125 32.169375,2.874375 31.828125,2.874375 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(0.000000, 18.375000)" id="Path">
|
||||
<path d="M79.1175,4.095 L2.375625,4.095 C1.5225,4.095 0.826875,3.399375 0.826875,2.54625 C0.826875,1.693125 1.5225,0.9975 2.375625,0.9975 L79.1175,0.9975 C79.970625,0.9975 80.66625,1.693125 80.66625,2.54625 C80.66625,3.399375 79.970625,4.095 79.1175,4.095 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M199.014375,201.705 L133.363125,201.980625 C127.995,202.006875 123.61125,197.6625 123.598125,192.294375 L123.230625,102.08625 C123.204375,96.705 127.561875,92.32125 132.943125,92.295 L173.8275,92.124375 C176.413125,92.11125 178.89375,93.121875 180.718125,94.94625 L205.56375,119.51625 C207.40125,121.340625 208.45125,123.82125 208.464375,126.406875 L208.74,191.91375 C208.753125,197.295 204.40875,201.67875 199.014375,201.705 Z" id="Path" fill="#2AC3A2"></path>
|
||||
<g id="Group" transform="translate(90.562500, 0.000000)">
|
||||
<path d="M127.089375,21.105 C116.851875,11.1825 104.23875,4.580625 90.58875,1.75875 C99.015,5.210625 106.785,11.52375 113.26875,20.356875 C123.598125,34.426875 129.504375,53.26125 129.898125,73.42125 C129.924375,74.655 129.59625,75.83625 128.9925,76.715625 C128.835,76.951875 128.65125,77.14875 128.4675,77.3325 L145.254375,77.188125 C146.44875,77.175 147.590625,76.689375 148.4175,75.83625 C149.244375,74.983125 149.70375,73.828125 149.664375,72.63375 C149.191875,53.038125 141.1725,34.741875 127.089375,21.105 Z" id="Path" fill="url(#linearGradient-1)"></path>
|
||||
<path d="M21.42,74.379375 C21.459375,54.2325 27.0375,35.28 37.1175,21.039375 C43.60125,11.878125 51.463125,5.355 60.06,1.81125 C46.055625,4.75125 33.193125,11.68125 22.876875,22.036875 C9.03,35.91 1.33875,54.3375 1.2075,73.933125 C1.194375,75.1275 1.666875,76.269375 2.52,77.1225 C3.36,77.9625 4.515,78.435 5.709375,78.421875 L22.929375,78.264375 C22.7325,78.09375 22.561875,77.896875 22.39125,77.660625 C21.774375,76.78125 21.42,75.6 21.42,74.379375 Z" id="Path" fill="url(#linearGradient-2)"></path>
|
||||
<path d="M129.898125,73.42125 C129.504375,53.274375 123.585,34.426875 113.26875,20.356875 C106.785,11.52375 99.015,5.210625 90.58875,1.75875 C86.296875,0.879375 81.9,0.3675 77.450625,0.249375 C82.2675,2.52 86.75625,9.68625 90.365625,21 C94.801875,34.925625 97.400625,53.52375 97.663125,73.395 C97.67625,74.6025 97.545,75.770625 97.295625,76.636875 C97.1775,77.056875 97.033125,77.385 96.875625,77.608125 L128.480625,77.3325 C128.664375,77.14875 128.848125,76.951875 129.005625,76.715625 C129.59625,75.83625 129.924375,74.655 129.898125,73.42125 Z" id="Path" fill="url(#linearGradient-3)"></path>
|
||||
<path d="M75.67875,111.22125 C72.410625,111.22125 69.7725,108.583125 69.7725,105.315 L69.7725,28.940625 C69.7725,25.6725 72.410625,23.034375 75.67875,23.034375 C78.946875,23.034375 81.585,25.6725 81.585,28.940625 L81.585,105.315 C81.585,108.57 78.946875,111.22125 75.67875,111.22125 Z" id="Path" fill="url(#linearGradient-4)"></path>
|
||||
<path d="M52.185,77.030625 C51.9225,76.164375 51.765,74.99625 51.765,73.78875 C51.68625,53.9175 53.94375,35.266875 58.14375,21.275625 C61.53,9.988125 65.848125,2.7825 70.573125,0.3675 C67.01625,0.60375 63.49875,1.07625 60.06,1.798125 C51.463125,5.341875 43.588125,11.878125 37.1175,21.02625 C27.0375,35.266875 21.4725,54.219375 21.42,74.36625 C21.42,75.6 21.76125,76.78125 22.378125,77.6475 C22.54875,77.88375 22.719375,78.080625 22.91625,78.25125 L52.618125,77.98875 C52.47375,77.77875 52.31625,77.450625 52.185,77.030625 Z" id="Path" fill="url(#linearGradient-5)"></path>
|
||||
<path d="M70.573125,0.3675 C65.848125,2.7825 61.516875,9.988125 58.14375,21.275625 C53.956875,35.266875 51.68625,53.9175 51.765,73.78875 C51.765,74.99625 51.9225,76.164375 52.185,77.030625 C52.31625,77.450625 52.460625,77.765625 52.63125,78.001875 L96.8625,77.608125 C97.02,77.371875 97.164375,77.056875 97.2825,76.636875 C97.531875,75.770625 97.663125,74.6025 97.65,73.395 C97.374375,53.52375 94.78875,34.925625 90.3525,21 C86.743125,9.68625 82.254375,2.52 77.4375,0.249375 C76.558125,0.223125 75.67875,0.196875 74.78625,0.21 C73.381875,0.223125 71.9775,0.28875 70.573125,0.3675 Z" id="Path" fill="url(#linearGradient-6)"></path>
|
||||
</g>
|
||||
<path d="M160.88625,175.966875 C159.166875,175.966875 157.513125,175.284375 156.2925,174.06375 L136.78875,154.56 C134.2425,152.01375 134.2425,147.905625 136.78875,145.359375 C139.335,142.813125 143.443125,142.813125 145.989375,145.359375 L160.02,159.39 L184.681875,124.280625 C186.7425,121.340625 190.785,120.61875 193.738125,122.679375 C196.678125,124.74 197.4,128.795625 195.339375,131.735625 L166.24125,173.1975 C165.13875,174.7725 163.393125,175.783125 161.476875,175.940625 C161.266875,175.95375 161.083125,175.966875 160.88625,175.966875 Z" id="Path" fill="#008787"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 194 B |
@@ -1,92 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="356px" height="210px" viewBox="0 0 356 210" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: sketchtool 53.1 (72631) - https://sketchapp.com -->
|
||||
<title>5A8EEB55-E89B-49C5-8493-6FC78CEDF580</title>
|
||||
<desc>Created with sketchtool.</desc>
|
||||
<defs>
|
||||
<linearGradient x1="58.3126473%" y1="123.961053%" x2="40.1375665%" y2="-37.2724424%" id="linearGradient-1">
|
||||
<stop stop-color="#0A5CC7" offset="0.4302823%"></stop>
|
||||
<stop stop-color="#83219D" offset="99.91%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="-28.1745341%" y1="-47.2105072%" x2="84.4799145%" y2="96.7146446%" id="linearGradient-2">
|
||||
<stop stop-color="#FA357F" offset="0%"></stop>
|
||||
<stop stop-color="#7878FF" offset="99.91%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="20.1896063%" y1="50.397188%" x2="169.058059%" y2="48.6911625%" id="linearGradient-3">
|
||||
<stop stop-color="#FFF361" offset="0%"></stop>
|
||||
<stop stop-color="#FFA80A" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="7.14778295%" y1="-13.3614253%" x2="84.3296473%" y2="120.018489%" id="linearGradient-4">
|
||||
<stop stop-color="#FF5162" offset="0%"></stop>
|
||||
<stop stop-color="#83219D" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="34.0837535%" y1="25.5596147%" x2="59.4736431%" y2="63.1005055%" id="linearGradient-5">
|
||||
<stop stop-color="#FFD943" offset="0%"></stop>
|
||||
<stop stop-color="#FFA80A" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="21.6679292%" y1="-7.19688832%" x2="65.140178%" y2="106.397259%" id="linearGradient-6">
|
||||
<stop stop-color="#FF8748" offset="0%"></stop>
|
||||
<stop stop-color="#FE7852" offset="13.28%"></stop>
|
||||
<stop stop-color="#FC546A" offset="50.49%"></stop>
|
||||
<stop stop-color="#FA3D79" offset="80.73%"></stop>
|
||||
<stop stop-color="#FA357F" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Send_Went_Wrong" transform="translate(-542.000000, -304.000000)" fill-rule="nonzero">
|
||||
<g id="firefox-send_illustrations-02" transform="translate(541.986755, 304.000000)">
|
||||
<g id="Group" transform="translate(0.000000, 41.721854)" fill="#EDEDF0" opacity="0.5">
|
||||
<g transform="translate(31.986755, 123.774834)">
|
||||
<g transform="translate(22.251656, 5.562914)" id="Path">
|
||||
<path d="M1.71059603,3.36556291 L97.0450331,3.36556291 C97.8099338,3.36556291 98.4357616,2.7397351 98.4357616,1.97483444 C98.4357616,1.20993377 97.8099338,0.58410596 97.0450331,0.58410596 L1.71059603,0.58410596 C0.945695364,0.58410596 0.31986755,1.20993377 0.31986755,1.97483444 C0.31986755,2.7397351 0.945695364,3.36556291 1.71059603,3.36556291 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(80.662252, 0.000000)" id="Path">
|
||||
<path d="M1.84966887,1.86357616 L25.7701987,1.86357616 C26.1596026,1.86357616 26.4655629,1.55761589 26.4655629,1.16821192 C26.4655629,0.778807947 26.1596026,0.472847682 25.7701987,0.472847682 L1.84966887,0.472847682 C1.4602649,0.472847682 1.15430464,0.778807947 1.15430464,1.16821192 C1.15430464,1.55761589 1.4602649,1.86357616 1.84966887,1.86357616 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(0.000000, 12.516556)" id="Shape">
|
||||
<path d="M0.598013245,1.9192053 C0.598013245,1.52980132 0.90397351,1.22384106 1.29337748,1.22384106 L5.46556291,1.22384106 C5.85496689,1.22384106 6.16092715,1.52980132 6.16092715,1.9192053 C6.16092715,2.30860927 5.85496689,2.61456954 5.46556291,2.61456954 L1.29337748,2.61456954 C0.917880795,2.61456954 0.598013245,2.29470199 0.598013245,1.9192053 Z M15.8960265,1.9192053 C15.8960265,1.52980132 16.2019868,1.22384106 16.5913907,1.22384106 L33.2801325,1.22384106 C33.6695364,1.22384106 33.9754967,1.52980132 33.9754967,1.9192053 C33.9754967,2.30860927 33.6695364,2.61456954 33.2801325,2.61456954 L16.5913907,2.61456954 C16.215894,2.61456954 15.8960265,2.29470199 15.8960265,1.9192053 Z M45.1013245,1.9192053 C45.1013245,1.52980132 45.4072848,1.22384106 45.7966887,1.22384106 L47.1874172,1.22384106 C47.5768212,1.22384106 47.8827815,1.52980132 47.8827815,1.9192053 C47.8827815,2.30860927 47.5768212,2.61456954 47.1874172,2.61456954 L45.7966887,2.61456954 C45.4211921,2.61456954 45.1013245,2.29470199 45.1013245,1.9192053 Z M52.0549669,1.9192053 C52.0549669,1.52980132 52.3609272,1.22384106 52.7503311,1.22384106 L56.9225166,1.22384106 C57.3119205,1.22384106 57.6178808,1.52980132 57.6178808,1.9192053 C57.6178808,2.30860927 57.3119205,2.61456954 56.9225166,2.61456954 L52.7503311,2.61456954 C52.3748344,2.61456954 52.0549669,2.29470199 52.0549669,1.9192053 Z M67.3529801,1.9192053 C67.3529801,1.52980132 67.6589404,1.22384106 68.0483444,1.22384106 L84.7370861,1.22384106 C85.1264901,1.22384106 85.4324503,1.52980132 85.4324503,1.9192053 C85.4324503,2.30860927 85.1264901,2.61456954 84.7370861,2.61456954 L68.0483444,2.61456954 C67.6728477,2.61456954 67.3529801,2.29470199 67.3529801,1.9192053 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(130.728477, 76.490066)">
|
||||
<g transform="translate(27.814570, 5.562914)" id="Path">
|
||||
<path d="M1.93311258,3.25430464 L155.85894,3.25430464 C156.623841,3.25430464 157.249669,2.62847682 157.249669,1.86357616 C157.249669,1.0986755 156.623841,0.472847682 155.85894,0.472847682 L1.93311258,0.472847682 C1.16821192,0.472847682 0.542384106,1.0986755 0.542384106,1.86357616 C0.542384106,2.62847682 1.15430464,3.25430464 1.93311258,3.25430464 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(48.675497, 0.000000)" id="Path">
|
||||
<path d="M1.86357616,1.86357616 L40.4701987,1.86357616 C40.8596026,1.86357616 41.1655629,1.55761589 41.1655629,1.16821192 C41.1655629,0.778807947 40.8596026,0.472847682 40.4701987,0.472847682 L1.86357616,0.472847682 C1.47417219,0.472847682 1.16821192,0.778807947 1.16821192,1.16821192 C1.16821192,1.55761589 1.47417219,1.86357616 1.86357616,1.86357616 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(0.000000, 12.516556)" id="Shape">
|
||||
<path d="M1.32119205,1.68278146 C1.32119205,1.29337748 1.62715232,0.987417219 2.01655629,0.987417219 L18.705298,0.987417219 C19.094702,0.987417219 19.4006623,1.29337748 19.4006623,1.68278146 C19.4006623,2.07218543 19.094702,2.3781457 18.705298,2.3781457 L2.01655629,2.3781457 C1.6410596,2.3781457 1.32119205,2.07218543 1.32119205,1.68278146 Z M29.1357616,1.68278146 C29.1357616,1.29337748 29.4417219,0.987417219 29.8311258,0.987417219 L34.0033113,0.987417219 C34.3927152,0.987417219 34.6986755,1.29337748 34.6986755,1.68278146 C34.6986755,2.07218543 34.3927152,2.3781457 34.0033113,2.3781457 L29.8311258,2.3781457 C29.4556291,2.3781457 29.1357616,2.07218543 29.1357616,1.68278146 Z M38.8708609,1.68278146 C38.8708609,1.29337748 39.1768212,0.987417219 39.5662252,0.987417219 L40.9569536,0.987417219 C41.3463576,0.987417219 41.6523179,1.29337748 41.6523179,1.68278146 C41.6523179,2.07218543 41.3463576,2.3781457 40.9569536,2.3781457 L39.5662252,2.3781457 C39.1907285,2.3781457 38.8708609,2.07218543 38.8708609,1.68278146 Z M52.7781457,1.68278146 C52.7781457,1.29337748 53.084106,0.987417219 53.4735099,0.987417219 L70.1622517,0.987417219 C70.5516556,0.987417219 70.8576159,1.29337748 70.8576159,1.68278146 C70.8576159,2.07218543 70.5516556,2.3781457 70.1622517,2.3781457 L53.4735099,2.3781457 C53.0980132,2.3781457 52.7781457,2.07218543 52.7781457,1.68278146 Z M80.5927152,1.68278146 C80.5927152,1.29337748 80.8986755,0.987417219 81.2880795,0.987417219 L85.4602649,0.987417219 C85.8496689,0.987417219 86.1556291,1.29337748 86.1556291,1.68278146 C86.1556291,2.07218543 85.8496689,2.3781457 85.4602649,2.3781457 L81.2880795,2.3781457 C80.9125828,2.3781457 80.5927152,2.07218543 80.5927152,1.68278146 Z M90.3278146,1.68278146 C90.3278146,1.29337748 90.6337748,0.987417219 91.0231788,0.987417219 L92.4139073,0.987417219 C92.8033113,0.987417219 93.1092715,1.29337748 93.1092715,1.68278146 C93.1092715,2.07218543 92.8033113,2.3781457 92.4139073,2.3781457 L91.0231788,2.3781457 C90.6476821,2.3781457 90.3278146,2.07218543 90.3278146,1.68278146 Z M104.235099,1.68278146 C104.235099,1.29337748 104.54106,0.987417219 104.930464,0.987417219 L121.619205,0.987417219 C122.008609,0.987417219 122.31457,1.29337748 122.31457,1.68278146 C122.31457,2.07218543 122.008609,2.3781457 121.619205,2.3781457 L104.930464,2.3781457 C104.554967,2.3781457 104.235099,2.07218543 104.235099,1.68278146 Z M132.049669,1.68278146 C132.049669,1.29337748 132.355629,0.987417219 132.745033,0.987417219 L136.917219,0.987417219 C137.306623,0.987417219 137.612583,1.29337748 137.612583,1.68278146 C137.612583,2.07218543 137.306623,2.3781457 136.917219,2.3781457 L132.745033,2.3781457 C132.369536,2.3781457 132.049669,2.07218543 132.049669,1.68278146 Z M141.784768,1.68278146 C141.784768,1.29337748 142.090728,0.987417219 142.480132,0.987417219 L143.870861,0.987417219 C144.260265,0.987417219 144.566225,1.29337748 144.566225,1.68278146 C144.566225,2.07218543 144.260265,2.3781457 143.870861,2.3781457 L142.480132,2.3781457 C142.104636,2.3781457 141.784768,2.07218543 141.784768,1.68278146 Z M155.692053,1.68278146 C155.692053,1.29337748 155.998013,0.987417219 156.387417,0.987417219 L173.076159,0.987417219 C173.465563,0.987417219 173.771523,1.29337748 173.771523,1.68278146 C173.771523,2.07218543 173.465563,2.3781457 173.076159,2.3781457 L156.387417,2.3781457 C156.011921,2.3781457 155.692053,2.07218543 155.692053,1.68278146 Z M183.506623,1.68278146 C183.506623,1.29337748 183.812583,0.987417219 184.201987,0.987417219 L188.374172,0.987417219 C188.763576,0.987417219 189.069536,1.29337748 189.069536,1.68278146 C189.069536,2.07218543 188.763576,2.3781457 188.374172,2.3781457 L184.201987,2.3781457 C183.82649,2.3781457 183.506623,2.07218543 183.506623,1.68278146 Z M193.241722,1.68278146 C193.241722,1.29337748 193.547682,0.987417219 193.937086,0.987417219 L195.327815,0.987417219 C195.717219,0.987417219 196.023179,1.29337748 196.023179,1.68278146 C196.023179,2.07218543 195.717219,2.3781457 195.327815,2.3781457 L193.937086,2.3781457 C193.561589,2.3781457 193.241722,2.07218543 193.241722,1.68278146 Z M207.149007,1.68278146 C207.149007,1.29337748 207.454967,0.987417219 207.844371,0.987417219 L224.533113,0.987417219 C224.922517,0.987417219 225.228477,1.29337748 225.228477,1.68278146 C225.228477,2.07218543 224.922517,2.3781457 224.533113,2.3781457 L207.844371,2.3781457 C207.468874,2.3781457 207.149007,2.07218543 207.149007,1.68278146 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M2.30860927,35.1298013 L37.6609272,35.1298013 C37.6609272,35.1298013 26.6046358,10.402649 50.0801325,7.20397351 C71.0245033,4.35298013 79.2993377,25.881457 79.2993377,25.881457 C79.2993377,25.881457 81.7887417,13.4622517 94.2357616,15.8403974 C106.515894,18.1768212 115.583444,37.9390728 115.583444,37.9390728 L146.374172,37.9390728" id="Path"></path>
|
||||
<g transform="translate(1.390728, 0.000000)" id="Shape">
|
||||
<path d="M145.609272,32.0980132 L136.513907,32.0980132 C136.054967,32.0980132 135.693377,31.7364238 135.693377,31.2774834 C135.693377,30.818543 136.054967,30.4569536 136.513907,30.4569536 L145.609272,30.4569536 C146.068212,30.4569536 146.429801,30.818543 146.429801,31.2774834 C146.429801,31.7364238 146.054305,32.0980132 145.609272,32.0980132 Z M121.772185,32.0980132 L120.131126,32.0980132 C119.672185,32.0980132 119.310596,31.7364238 119.310596,31.2774834 C119.310596,30.818543 119.672185,30.4569536 120.131126,30.4569536 L121.772185,30.4569536 C122.231126,30.4569536 122.592715,30.818543 122.592715,31.2774834 C122.592715,31.7364238 122.231126,32.0980132 121.772185,32.0980132 Z M36.8821192,31.110596 L34.2536424,31.110596 C33.794702,31.110596 33.4331126,30.7490066 33.4331126,30.2900662 C33.4331126,29.8311258 33.794702,29.4695364 34.2536424,29.4695364 L35.6721854,29.4695364 C35.5609272,29.1774834 35.4357616,28.815894 35.2966887,28.4125828 C35.1576159,27.981457 35.3801325,27.5225166 35.8112583,27.3695364 C36.2423841,27.2304636 36.7013245,27.4529801 36.8543046,27.884106 C37.2854305,29.1496689 37.6331126,29.9284768 37.6331126,29.9423841 C37.7443709,30.1927152 37.7165563,30.4847682 37.5774834,30.7211921 C37.410596,30.9715232 37.1602649,31.110596 36.8821192,31.110596 Z M21.1529801,31.110596 L1.52980132,31.110596 C1.07086093,31.110596 0.709271523,30.7490066 0.709271523,30.2900662 C0.709271523,29.8311258 1.07086093,29.4695364 1.52980132,29.4695364 L21.1668874,29.4695364 C21.6258278,29.4695364 21.9874172,29.8311258 21.9874172,30.2900662 C21.9735099,30.7350993 21.6119205,31.110596 21.1529801,31.110596 Z M114.234437,31.013245 C113.942384,31.013245 113.664238,30.8602649 113.525166,30.5960265 C112.996689,29.6642384 112.134437,28.1900662 110.980132,26.4655629 C110.729801,26.0900662 110.827152,25.5754967 111.202649,25.3251656 C111.578146,25.0748344 112.092715,25.1721854 112.343046,25.5476821 C113.525166,27.3139073 114.415232,28.8298013 114.957616,29.789404 C115.180132,30.1788079 115.04106,30.6794702 114.637748,30.9019868 C114.512583,30.9854305 114.37351,31.013245 114.234437,31.013245 Z M34.5456954,22.613245 C34.1423841,22.613245 33.794702,22.3211921 33.7390728,21.9039735 C33.6556291,21.3615894 33.6,20.7913907 33.5582781,20.2211921 C33.5165563,19.7761589 33.8642384,19.3728477 34.3092715,19.3450331 C34.7821192,19.3172185 35.1576159,19.6370861 35.1854305,20.0960265 C35.2271523,20.6384106 35.2827815,21.1668874 35.3662252,21.681457 C35.4357616,22.1264901 35.115894,22.5437086 34.6708609,22.5993377 C34.6152318,22.613245 34.5735099,22.613245 34.5456954,22.613245 Z M77.1576159,19.0112583 C76.8655629,19.0112583 76.5874172,18.8582781 76.4344371,18.5801325 C76.1980132,18.1490066 75.9337748,17.6761589 75.6417219,17.189404 C75.405298,16.8 75.5304636,16.2993377 75.9198675,16.0629139 C76.3092715,15.8264901 76.8099338,15.9516556 77.0463576,16.3410596 C77.3523179,16.8556291 77.6304636,17.3423841 77.8807947,17.8013245 C78.089404,18.2046358 77.9503311,18.6913907 77.5470199,18.9139073 C77.4218543,18.9695364 77.2966887,19.0112583 77.1576159,19.0112583 Z M103.136424,16.9112583 C102.941722,16.9112583 102.760927,16.8417219 102.607947,16.7165563 C99.4788079,14.0324503 96.3635762,12.3774834 93.3178808,11.7933775 C90.3278146,11.2231788 87.6854305,11.5152318 85.4880795,12.6417219 C85.0847682,12.8503311 84.5980132,12.6834437 84.389404,12.2940397 C84.1807947,11.8907285 84.3337748,11.4039735 84.7370861,11.1953642 C87.2543046,9.88807947 90.2721854,9.55430464 93.6238411,10.1940397 C96.9476821,10.8337748 100.327152,12.6 103.678808,15.4788079 C104.02649,15.7708609 104.054305,16.2854305 103.762252,16.6331126 C103.595364,16.8139073 103.372848,16.9112583 103.136424,16.9112583 Z M72.5125828,12.2801325 C72.2900662,12.2801325 72.0536424,12.1827815 71.9006623,12.0019868 C70.8298013,10.7642384 69.6754967,9.63774834 68.4933775,8.65033113 C68.1456954,8.35827815 68.1039735,7.84370861 68.3960265,7.49602649 C68.6880795,7.14834437 69.202649,7.10662252 69.5503311,7.3986755 C70.8019868,8.44172185 72.0119205,9.63774834 73.1384106,10.9311258 C73.4304636,11.2788079 73.402649,11.7933775 73.0549669,12.0854305 C72.9019868,12.210596 72.7072848,12.2801325 72.5125828,12.2801325 Z M38.7735099,7.50993377 C38.5509934,7.50993377 38.3284768,7.41258278 38.1615894,7.24569536 C37.8556291,6.91192053 37.8834437,6.39735099 38.2172185,6.09139073 C40.8317881,3.72715232 44.5172185,2.19735099 49.1761589,1.57152318 C52.0271523,1.18211921 54.8225166,1.22384106 57.4649007,1.68278146 C57.9099338,1.76622517 58.2019868,2.18344371 58.1324503,2.62847682 C58.0490066,3.07350993 57.6317881,3.3794702 57.186755,3.29602649 C54.7112583,2.86490066 52.0827815,2.83708609 49.3986755,3.1986755 C45.0735099,3.79668874 41.6801325,5.17350993 39.315894,7.31523179 C39.1629139,7.44039735 38.9682119,7.50993377 38.7735099,7.50993377 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(0.000000, 34.768212)" id="Path">
|
||||
<path d="M148.015232,3.60198675 L2.30860927,3.60198675 C1.40463576,3.60198675 0.667549669,2.86490066 0.667549669,1.96092715 C0.667549669,1.05695364 1.40463576,0.31986755 2.30860927,0.31986755 L148.015232,0.31986755 C148.919205,0.31986755 149.656291,1.05695364 149.656291,1.96092715 C149.642384,2.87880795 148.919205,3.60198675 148.015232,3.60198675 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g transform="translate(230.860927, 1.390728)">
|
||||
<path d="M2.21125828,20.415894 L21.9456954,20.415894 C21.9456954,20.415894 15.7708609,6.61986755 28.8715232,4.8397351 C40.5536424,3.25430464 45.1847682,15.2562914 45.1847682,15.2562914 C45.1847682,15.2562914 46.5754967,8.33046358 53.5291391,9.65165563 C60.3854305,10.9589404 65.4476821,21.9874172 65.4476821,21.9874172 L82.6231788,21.9874172" id="Path"></path>
|
||||
<g transform="translate(1.390728, 0.000000)" id="Shape">
|
||||
<path d="M21.1251656,18.2046358 L1.41854305,18.2046358 C0.959602649,18.2046358 0.598013245,17.8430464 0.598013245,17.384106 C0.598013245,16.9251656 0.959602649,16.5635762 1.41854305,16.5635762 L21.1251656,16.5635762 C21.584106,16.5635762 21.9456954,16.9251656 21.9456954,17.384106 C21.9456954,17.8430464 21.584106,18.2046358 21.1251656,18.2046358 Z M81.8304636,17.9543046 L81.0655629,17.9543046 C80.6066225,17.9543046 80.2450331,17.5927152 80.2450331,17.1337748 C80.2450331,16.6748344 80.6066225,16.313245 81.0655629,16.313245 L81.8304636,16.313245 C82.289404,16.313245 82.6509934,16.6748344 82.6509934,17.1337748 C82.6509934,17.5927152 82.2754967,17.9543046 81.8304636,17.9543046 Z M74.5013245,17.9543046 L69.5781457,17.9543046 C69.1192053,17.9543046 68.7576159,17.5927152 68.7576159,17.1337748 C68.7576159,16.6748344 69.1192053,16.313245 69.5781457,16.313245 L74.5013245,16.313245 C74.9602649,16.313245 75.3218543,16.6748344 75.3218543,17.1337748 C75.3218543,17.5927152 74.9602649,17.9543046 74.5013245,17.9543046 Z M44.392053,13.0450331 C44.0582781,13.0450331 43.7523179,12.8225166 43.6271523,12.5165563 L43.5019868,12.2245033 C43.3350993,11.8490066 43.4741722,11.4039735 43.8218543,11.1953642 C44.586755,8.90066225 46.7423841,5.63245033 51.0397351,5.63245033 C51.6238411,5.63245033 52.2496689,5.68807947 52.889404,5.81324503 C55.3370861,6.27218543 57.7986755,7.70463576 60.218543,10.0410596 C60.5384106,10.3609272 60.5523179,10.8754967 60.2324503,11.1953642 C59.9125828,11.5291391 59.3980132,11.5291391 59.0781457,11.2092715 C56.894702,9.09536424 54.7112583,7.81589404 52.5834437,7.41258278 C52.0410596,7.31523179 51.5264901,7.25960265 51.0397351,7.25960265 C46.3112583,7.25960265 45.2403974,12.1688742 45.1986755,12.3774834 C45.1152318,12.7668874 44.781457,13.0450331 44.392053,13.0450331 Z M21.5562914,5.71589404 C21.3615894,5.71589404 21.1807947,5.64635762 21.0278146,5.52119205 C20.6801325,5.22913907 20.6384106,4.71456954 20.9304636,4.36688742 C22.0152318,3.08741722 23.5311258,2.14172185 25.4364238,1.54370861 C25.8675497,1.40463576 26.3264901,1.65496689 26.4655629,2.08609272 C26.6046358,2.51721854 26.3543046,2.97615894 25.9231788,3.11523179 C24.3238411,3.61589404 23.0721854,4.39470199 22.1821192,5.42384106 C22.0152318,5.61854305 21.7927152,5.71589404 21.5562914,5.71589404 Z M33.7668874,2.94834437 C33.697351,2.94834437 33.6278146,2.93443709 33.5443709,2.9205298 C33.0576159,2.79536424 32.5569536,2.68410596 32.0423841,2.61456954 C31.597351,2.54503311 31.2774834,2.12781457 31.3470199,1.68278146 C31.4165563,1.23774834 31.8337748,0.945695364 32.2788079,0.987417219 C32.8629139,1.07086093 33.4331126,1.19602649 33.9754967,1.33509934 C34.4066225,1.4602649 34.6708609,1.90529801 34.5596026,2.33642384 C34.4622517,2.71192053 34.1284768,2.94834437 33.7668874,2.94834437 Z"></path>
|
||||
</g>
|
||||
<g transform="translate(0.000000, 19.470199)" id="Path">
|
||||
<path d="M83.8887417,4.24172185 L2.57284768,4.24172185 C1.66887417,4.24172185 0.931788079,3.50463576 0.931788079,2.60066225 C0.931788079,1.69668874 1.66887417,0.959602649 2.57284768,0.959602649 L83.8887417,0.959602649 C84.7927152,0.959602649 85.5298013,1.69668874 85.5298013,2.60066225 C85.5298013,3.50463576 84.7927152,4.24172185 83.8887417,4.24172185 Z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group" transform="translate(95.960265, 0.000000)">
|
||||
<path d="M106.710596,170.475497 C105,170.489404 103.400662,171.170861 102.204636,172.380795 L86.7536424,188.109934 L86.3503311,142.883444 L73.5278146,137.682119 L73.9728477,188.221192 L58.2437086,172.770199 C57.0198675,171.574172 55.4205298,170.92053 53.7099338,170.934437 C51.9993377,170.948344 50.4,171.629801 49.2039735,172.839735 C48.007947,174.063576 47.3543046,175.662914 47.3682119,177.37351 C47.3821192,179.084106 48.0635762,180.683444 49.2735099,181.87947 L76.0033113,208.136424 C77.2271523,209.33245 78.8264901,209.986093 80.5370861,209.972185 C82.2476821,209.958278 83.8470199,209.276821 85.0430464,208.066887 L111.3,181.337086 C112.496026,180.113245 113.149669,178.513907 113.135762,176.803311 C113.121854,175.092715 112.440397,173.493377 111.230464,172.297351 C110.02053,171.115232 108.407285,170.461589 106.710596,170.475497 Z" id="Path" fill="#0060DF"></path>
|
||||
<path d="M86.0165563,80.6066225 C85.9887417,77.0880795 83.0960265,74.2509934 79.5774834,74.2788079 C76.0589404,74.3066225 73.2218543,77.1993377 73.2496689,80.7178808 L73.5278146,114.039735 L86.3503311,119.24106 L86.0165563,80.6066225 Z" id="Path" fill="url(#linearGradient-1)"></path>
|
||||
<path d="M134.70596,22.2794702 C123.858278,11.7655629 110.493377,4.77019868 96.0298013,1.78013245 C104.958278,5.43774834 113.191391,12.1271523 120.061589,21.486755 C131.006623,36.3953642 137.264901,56.3662252 137.682119,77.7139073 C137.709934,79.0211921 137.362252,80.2728477 136.722517,81.2046358 C136.555629,81.4549669 136.360927,81.6635762 136.166225,81.8582781 L153.953642,81.705298 C155.219205,81.6913907 156.429139,81.1768212 157.305298,80.2728477 C158.181457,79.3688742 158.668212,78.1450331 158.62649,76.8794702 C158.125828,56.115894 149.628477,36.7291391 134.70596,22.2794702 Z" id="Path" fill="url(#linearGradient-2)"></path>
|
||||
<path d="M22.7523179,78.7152318 C22.7940397,57.3675497 28.7046358,37.2854305 39.3854305,22.1960265 C46.2556291,12.4887417 54.5860927,5.57682119 63.6953642,1.8218543 C48.8562914,4.93708609 35.2271523,12.2801325 24.2960265,23.2529801 C9.62384106,37.9668874 1.47417219,57.4927152 1.33509934,78.2423841 C1.32119205,79.507947 1.8218543,80.7178808 2.72582781,81.6218543 C3.61589404,82.5119205 4.8397351,83.0125828 6.10529801,82.9986755 L24.3516556,82.8317881 C24.1430464,82.6509934 23.9622517,82.4423841 23.781457,82.192053 C23.1139073,81.2741722 22.7523179,80.0225166 22.7523179,78.7152318 Z" id="Path" fill="url(#linearGradient-3)"></path>
|
||||
<path d="M137.682119,77.7139073 C137.264901,56.3662252 130.992715,36.3953642 120.061589,21.486755 C113.191391,12.1271523 104.958278,5.43774834 96.0298013,1.78013245 C91.4821192,0.848344371 86.8231788,0.305960265 82.1086093,0.180794702 C87.2125828,2.58675497 91.9688742,10.1801325 95.7933775,22.1682119 C100.49404,36.9238411 103.247682,56.6304636 103.525828,77.6860927 C103.539735,78.9655629 103.400662,80.2033113 103.136424,81.1211921 C103.011258,81.5662252 102.858278,81.9139073 102.691391,82.1503311 L136.180132,81.8582781 C136.374834,81.6635762 136.569536,81.4549669 136.736424,81.2046358 C137.362252,80.2728477 137.709934,79.0072848 137.682119,77.7139073 Z" id="Path" fill="url(#linearGradient-4)"></path>
|
||||
<path d="M55.3509934,81.5384106 C55.0728477,80.6205298 54.9059603,79.3827815 54.9059603,78.1033113 C54.8225166,57.0476821 57.2145695,37.2854305 61.6649007,22.4602649 C65.2529801,10.5 69.8284768,2.86490066 74.8350993,0.305960265 C71.0662252,0.556291391 67.3390728,1.05695364 63.6953642,1.8218543 C54.5860927,5.57682119 46.2417219,12.502649 39.3854305,22.1960265 C28.7046358,37.2854305 22.807947,57.3675497 22.7523179,78.7152318 C22.7523179,80.0225166 23.1139073,81.2741722 23.7675497,82.192053 C23.9483444,82.4423841 24.1291391,82.6509934 24.3377483,82.8317881 L55.8099338,82.5536424 C55.6430464,82.3172185 55.4900662,81.9834437 55.3509934,81.5384106 Z" id="Path" fill="url(#linearGradient-5)"></path>
|
||||
<path d="M74.8211921,0.305960265 C69.8145695,2.86490066 65.2251656,10.5 61.6509934,22.4602649 C57.2145695,37.2854305 54.8086093,57.0476821 54.892053,78.1033113 C54.892053,79.3827815 55.0589404,80.6205298 55.3370861,81.5384106 C55.4761589,81.9834437 55.6291391,82.3172185 55.8099338,82.5675497 L102.677483,82.1503311 C102.844371,81.9 102.997351,81.5662252 103.122517,81.1211921 C103.386755,80.2033113 103.525828,78.9655629 103.511921,77.6860927 C103.219868,56.6304636 100.480132,36.9238411 95.7794702,22.1682119 C91.9549669,10.1801325 87.1986755,2.58675497 82.094702,0.180794702 C81.1629139,0.152980132 80.2311258,0.125165563 79.2854305,0.139072848 C77.797351,0.139072848 76.3092715,0.208609272 74.8211921,0.305960265 Z" id="Path" fill="url(#linearGradient-6)"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 194 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 843 B |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@@ -1,41 +1,2 @@
|
||||
<svg viewBox="0 0 65 64" height="64" width="65" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<defs>
|
||||
<linearGradient id="linear-gradient" x1="46.37" y1="59.71" x2="15.42" y2="6.11" gradientTransform="matrix(1, 0, 0, -1, 0, 64)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#ff980e"/>
|
||||
<stop offset="0.21" stop-color="#ff7139"/>
|
||||
<stop offset="0.36" stop-color="#ff5854"/>
|
||||
<stop offset="0.46" stop-color="#ff4f5e"/>
|
||||
<stop offset="0.69" stop-color="#ff3750"/>
|
||||
<stop offset="0.86" stop-color="#f92261"/>
|
||||
<stop offset="1" stop-color="#f5156c"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linear-gradient-2" x1="46.37" y1="59.71" x2="15.42" y2="6.11" gradientTransform="matrix(1, 0, 0, -1, 0, 64)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff44f" stop-opacity="0.8"/>
|
||||
<stop offset="0.09" stop-color="#fff44f" stop-opacity="0.7"/>
|
||||
<stop offset="0.75" stop-color="#fff44f" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linear-gradient-3" x1="40.19" y1="26.08" x2="54.32" y2="50.55" gradientTransform="matrix(1, 0, 0, -1, 0, 64)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#3a8ee6"/>
|
||||
<stop offset="0.24" stop-color="#5c79f0"/>
|
||||
<stop offset="0.63" stop-color="#9059ff"/>
|
||||
<stop offset="1" stop-color="#c139e6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linear-gradient-4" x1="54.32" y1="50.58" x2="48.39" y2="40.31" gradientTransform="matrix(1, 0, 0, -1, 0, 64)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#6e008b" stop-opacity="0.5"/>
|
||||
<stop offset="0.5" stop-color="#c846cb" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="linear-gradient-5" x1="56.96" y1="22.5" x2="41.98" y2="37.46" gradientTransform="matrix(1, 0, 0, -1, 0, 64)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.14" stop-color="#6a2bea" stop-opacity="0"/>
|
||||
<stop offset="0.34" stop-color="#642de4" stop-opacity="0.03"/>
|
||||
<stop offset="0.55" stop-color="#5131d3" stop-opacity="0.12"/>
|
||||
<stop offset="0.76" stop-color="#3139b7" stop-opacity="0.27"/>
|
||||
<stop offset="0.98" stop-color="#054490" stop-opacity="0.48"/>
|
||||
<stop offset="1" stop-color="#00458b" stop-opacity="0.5"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path d="M32.56,0C14.61,0,0,14.33,0,31.94a3.42,3.42,0,0,0,3.42,3.42H29.14V52.3l-8-8a3.42,3.42,0,1,0-4.84,4.84L30.14,63a2.73,2.73,0,0,0,.25.23l.23.17h.05l.24.14.27.13.28.1.29.07L32,64h1.27l.29-.07.29-.1.27-.13.24-.14.24-.17L35,63,48.8,49.18A3.43,3.43,0,0,0,44,44.34l-8,8v-17H61.7a3.42,3.42,0,0,0,3.42-3.42h0C65.12,14.33,50.51,0,32.56,0ZM7.09,28.51A25.54,25.54,0,0,1,32.56,6.85,25.55,25.55,0,0,1,58,28.51Z" fill="url(#linear-gradient)"/>
|
||||
<path d="M32.56,0C14.61,0,0,14.33,0,31.94a3.42,3.42,0,0,0,3.42,3.42H29.14V52.3l-8-8a3.42,3.42,0,1,0-4.84,4.84L30.14,63a2.73,2.73,0,0,0,.25.23l.23.17h.05l.24.14.27.13.28.1.29.07L32,64h1.27l.29-.07.29-.1.27-.13.24-.14.24-.17L35,63,48.8,49.18A3.43,3.43,0,0,0,44,44.34l-8,8v-17H61.7a3.42,3.42,0,0,0,3.42-3.42h0C65.12,14.33,50.51,0,32.56,0ZM7.09,28.51A25.54,25.54,0,0,1,32.56,6.85,25.55,25.55,0,0,1,58,28.51Z" fill="url(#linear-gradient-2)"/>
|
||||
<path d="M36,7.08A25.45,25.45,0,0,1,58,28.51H42.85A6.85,6.85,0,0,0,36,35.36H61.7a3.43,3.43,0,0,0,3.42-3.43c0-12.2-8.63-18.13-16-21.59A35.75,35.75,0,0,0,36,7.08Z" fill="url(#linear-gradient-3)"/>
|
||||
<path d="M57.89,27.76c2.31,1.86,4.63,3.71,6.9,5.61a3.27,3.27,0,0,0,.33-1.44c0-12.2-8.63-18.13-16-21.59A35.75,35.75,0,0,0,36,7.08,25.47,25.47,0,0,1,57.89,27.76Z" fill="url(#linear-gradient-4)"/>
|
||||
<path d="M57.5,28.51H42.85A6.85,6.85,0,0,0,36,35.36H61.7a3.36,3.36,0,0,0,2.64-1.28C62.09,32.19,59.79,30.36,57.5,28.51Z" opacity=".9" fill="url(#linear-gradient-5)"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 134 B |
147
assets/intro.svg
@@ -1,151 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="100%" height="100%" viewBox="0 0 264 179" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;">
|
||||
<g transform="matrix(1,0,0,1,-50.1817,-11.5386)">
|
||||
<g>
|
||||
<g opacity="0.5">
|
||||
<path d="M105.47,94.88L126.79,94.89C126.79,94.89 120.12,79.98 134.29,78.05C146.92,76.33 151.91,89.32 151.91,89.32C151.91,89.32 153.41,81.83 160.92,83.27C168.33,84.68 173.79,96.6 173.79,96.6L192.36,96.6" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M192.72,93.09L188.71,93.09C188.43,93.09 188.21,92.87 188.21,92.59C188.21,92.31 188.43,92.09 188.71,92.09L192.72,92.09C193,92.09 193.22,92.31 193.22,92.59C193.22,92.86 193,93.09 192.72,93.09ZM179.71,93.08L178.71,93.08C178.43,93.08 178.21,92.86 178.21,92.58C178.21,92.3 178.43,92.08 178.71,92.08L179.71,92.08C179.99,92.08 180.21,92.3 180.21,92.58C180.21,92.86 179.99,93.08 179.71,93.08ZM174.71,93.08L174.15,93.08C173.96,93.08 173.79,92.97 173.7,92.8C173.59,92.59 173.18,91.81 172.5,90.72C172.35,90.49 172.43,90.18 172.66,90.03C172.89,89.88 173.2,89.96 173.35,90.19C173.88,91.04 174.25,91.71 174.45,92.08L174.71,92.08C174.99,92.08 175.21,92.3 175.21,92.58C175.21,92.86 174.99,93.08 174.71,93.08ZM127.15,92.47L125.83,92.47C125.55,92.47 125.33,92.25 125.33,91.97C125.33,91.69 125.55,91.47 125.83,91.47L126.41,91.47C126.32,91.22 126.21,90.91 126.09,90.55C126.01,90.29 126.15,90.01 126.41,89.92C126.67,89.84 126.95,89.98 127.04,90.24C127.34,91.17 127.6,91.76 127.6,91.77C127.67,91.92 127.66,92.1 127.56,92.25C127.46,92.4 127.32,92.47 127.15,92.47ZM117.83,92.47L105.83,92.47C105.55,92.47 105.33,92.25 105.33,91.97C105.33,91.69 105.55,91.47 105.83,91.47L117.83,91.47C118.11,91.47 118.33,91.69 118.33,91.97C118.33,92.25 118.11,92.47 117.83,92.47ZM125.7,86.99C125.45,86.99 125.23,86.8 125.2,86.55C125.16,86.21 125.13,85.87 125.11,85.52C125.09,85.24 125.3,85.01 125.58,84.99C125.85,84.98 126.09,85.18 126.11,85.46C126.13,85.79 126.16,86.11 126.2,86.43C126.23,86.7 126.04,86.95 125.76,86.99C125.74,86.99 125.72,86.99 125.7,86.99ZM151.84,85.95C151.65,85.95 151.48,85.85 151.39,85.67C151.27,85.42 151.12,85.13 150.94,84.8C150.81,84.56 150.9,84.25 151.14,84.12C151.38,83.99 151.69,84.08 151.82,84.32C152.01,84.66 152.16,84.97 152.29,85.23C152.41,85.48 152.31,85.78 152.06,85.9C151.99,85.94 151.92,85.95 151.84,85.95ZM167.96,84.7C167.84,84.7 167.71,84.65 167.61,84.56C165.45,82.49 163.29,81.24 161.18,80.84C159.74,80.57 158.43,80.62 157.3,81C157.04,81.09 156.75,80.95 156.67,80.68C156.58,80.42 156.72,80.14 156.99,80.05C158.29,79.62 159.77,79.55 161.38,79.86C163.68,80.3 166.01,81.64 168.31,83.84C168.51,84.03 168.52,84.35 168.33,84.55C168.22,84.64 168.09,84.7 167.96,84.7ZM149.16,81.74C149.01,81.74 148.87,81.68 148.77,81.55C148.14,80.77 147.47,80.05 146.77,79.42C146.57,79.23 146.55,78.92 146.74,78.71C146.93,78.5 147.24,78.49 147.45,78.68C148.19,79.35 148.9,80.11 149.55,80.92C149.72,81.13 149.69,81.45 149.47,81.62C149.38,81.7 149.27,81.74 149.16,81.74ZM128.68,77.92C128.53,77.92 128.39,77.86 128.29,77.73C128.12,77.51 128.15,77.2 128.37,77.03C129.91,75.79 132.01,74.99 134.59,74.64C136.56,74.37 138.46,74.44 140.25,74.84C140.52,74.9 140.69,75.17 140.63,75.44C140.57,75.71 140.31,75.88 140.03,75.82C138.35,75.45 136.57,75.38 134.72,75.64C132.32,75.97 130.39,76.7 128.99,77.82C128.9,77.88 128.79,77.92 128.68,77.92Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M193.33,96.88L105.46,96.86C104.91,96.86 104.46,96.41 104.46,95.86C104.46,95.31 104.91,94.86 105.46,94.86L193.33,94.88C193.88,94.88 194.33,95.33 194.33,95.88C194.33,96.43 193.88,96.88 193.33,96.88Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g opacity="0.5">
|
||||
<path d="M306.31,117.22C306.52,116.91 306.83,116.35 306.52,116.05C306.26,115.86 305.95,115.77 305.63,115.79C304.89,115.81 304.17,116.07 303.58,116.53C302.36,117.45 301.24,118.92 301.48,119.69C303.65,119.14 305.58,118.28 306.31,117.22Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M125.12,129.61C128.96,129.7 132.74,128.68 136.01,126.67C138.98,124.82 142.43,123.89 145.93,123.97C149.43,123.88 152.88,124.82 155.86,126.67C162.59,130.59 170.91,130.59 177.64,126.67C183.78,123.07 191.38,123.07 197.52,126.67C204.25,130.59 212.57,130.59 219.3,126.67C225.44,123.07 233.04,123.07 239.18,126.67C242.45,128.68 246.23,129.7 250.07,129.61C250.62,129.61 251.07,129.16 251.07,128.61C251.07,128.06 250.62,127.61 250.07,127.61C246.56,127.7 243.11,126.76 240.13,124.91C233.4,120.99 225.08,120.99 218.35,124.91C212.21,128.51 204.61,128.51 198.47,124.91C191.74,120.99 183.42,120.99 176.69,124.91C170.55,128.5 162.96,128.5 156.82,124.91C153.55,122.9 149.77,121.88 145.93,121.97C142.09,121.88 138.31,122.9 135.04,124.91C132.06,126.76 128.61,127.7 125.1,127.61C121.59,127.7 118.14,126.76 115.16,124.91C111.89,122.9 108.11,121.88 104.27,121.97C103.72,121.97 103.27,122.42 103.27,122.97C103.27,123.52 103.72,123.97 104.27,123.97C107.78,123.88 111.23,124.82 114.21,126.67C117.48,128.68 121.27,129.7 125.12,129.61Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M313.27,118.55C313.1,118.34 312.79,118.3 312.57,118.47C309.82,120.29 306.65,121.37 303.37,121.63C302.13,121.83 300.87,121.83 299.63,121.63C301.63,121.01 303.39,120.14 304.18,119C305.18,117.63 304.56,116.82 304.27,116.54C303.39,115.69 301.45,115.87 300.03,116.94C298.96,117.74 297.14,119.61 297.55,121.14C295.97,121.5 294.36,121.73 292.74,121.82C292.46,121.82 292.24,122.04 292.24,122.32C292.24,122.6 292.46,122.82 292.74,122.82C294.54,122.72 296.33,122.45 298.09,122.03C298.97,122.74 300.73,122.95 303.43,122.65C309.69,121.95 313,119.39 313.14,119.28C313.37,119.13 313.45,118.82 313.3,118.59C313.29,118.58 313.28,118.56 313.27,118.55ZM300.62,117.71C301.21,117.25 301.93,116.99 302.67,116.97C302.99,116.95 303.3,117.04 303.56,117.23C303.87,117.53 303.56,118.09 303.35,118.4C302.62,119.46 300.69,120.29 298.52,120.87C298.29,120.09 299.4,118.62 300.62,117.71Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M210.52,122.99C210.22,122.99 209.95,122.76 209.92,122.45C209.89,122.12 210.13,121.83 210.46,121.79C211.75,121.66 212.93,121.41 214.05,121.01C214.36,120.9 214.7,121.06 214.82,121.38C214.93,121.69 214.77,122.04 214.45,122.15C213.24,122.58 211.97,122.86 210.58,122.99C210.56,122.99 210.54,122.99 210.52,122.99Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M253.58,122.83C253.29,122.83 253.04,122.62 252.99,122.33C252.93,122 253.15,121.69 253.48,121.64C256.49,121.12 258.39,119.9 260.23,118.72C260.51,118.54 260.88,118.62 261.06,118.9C261.24,119.18 261.16,119.55 260.88,119.73C259.03,120.92 256.93,122.26 253.68,122.82C253.65,122.82 253.61,122.83 253.58,122.83Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M204.8,122.78C204.76,122.78 204.73,122.78 204.69,122.77C201.59,122.19 199.57,120.9 197.63,119.65L197.54,119.59C197.26,119.41 197.18,119.04 197.36,118.76C197.54,118.48 197.91,118.4 198.19,118.58L198.28,118.64C200.22,119.88 202.05,121.05 204.92,121.59C205.25,121.65 205.46,121.97 205.4,122.29C205.34,122.58 205.09,122.78 204.8,122.78Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M288.07,122.71C288.03,122.71 287.99,122.71 287.95,122.7C285.06,122.09 283.13,120.85 281.26,119.66L280.86,119.41C280.58,119.23 280.5,118.86 280.68,118.58C280.86,118.3 281.23,118.22 281.51,118.4L281.91,118.65C283.77,119.84 285.53,120.96 288.21,121.53C288.53,121.6 288.74,121.92 288.67,122.24C288.6,122.52 288.35,122.71 288.07,122.71Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M245.97,122.65C245.93,122.65 245.88,122.64 245.83,122.63C245.5,122.55 245.18,122.47 244.87,122.38C244.55,122.28 244.37,121.95 244.47,121.63C244.57,121.31 244.9,121.13 245.22,121.23C245.5,121.32 245.8,121.4 246.11,121.47C246.43,121.54 246.63,121.87 246.56,122.19C246.49,122.46 246.24,122.65 245.97,122.65Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M241.55,120.86C241.45,120.86 241.34,120.83 241.25,120.78C240.62,120.42 240.03,120.04 239.43,119.66C238.95,119.36 238.48,119.05 237.99,118.76C237.71,118.59 237.61,118.22 237.78,117.94C237.95,117.65 238.32,117.56 238.6,117.73C239.1,118.03 239.59,118.34 240.07,118.65C240.65,119.02 241.23,119.39 241.84,119.75C242.13,119.92 242.22,120.28 242.06,120.57C241.96,120.75 241.76,120.86 241.55,120.86Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M217.68,120.49C217.48,120.49 217.28,120.39 217.17,120.2C217,119.92 217.09,119.55 217.37,119.37C217.64,119.2 217.91,119.04 218.17,118.87C218.45,118.69 218.82,118.77 219,119.05C219.18,119.33 219.1,119.7 218.82,119.88C218.55,120.05 218.28,120.22 218,120.39C217.89,120.47 217.79,120.49 217.68,120.49Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M265.64,117.2C265.39,117.2 265.15,117.04 265.07,116.78C264.97,116.46 265.14,116.13 265.46,116.02C266.67,115.63 267.94,115.38 269.35,115.27C269.7,115.23 269.97,115.49 270,115.82C270.03,116.15 269.78,116.44 269.45,116.47C268.14,116.57 266.96,116.8 265.84,117.17C265.76,117.19 265.7,117.2 265.64,117.2Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M182.36,117.09C182.1,117.09 181.86,116.92 181.78,116.66C181.69,116.34 181.87,116.01 182.18,115.91C183.39,115.55 184.67,115.33 186.08,115.24C186.41,115.2 186.7,115.47 186.72,115.8C186.74,116.13 186.49,116.42 186.16,116.44C184.84,116.52 183.65,116.72 182.53,117.06C182.47,117.08 182.41,117.09 182.36,117.09Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M225.39,116.78C225.11,116.78 224.86,116.59 224.8,116.3C224.73,115.98 224.94,115.66 225.26,115.59C226.51,115.33 227.83,115.2 229.31,115.2C230.69,115.2 231.93,115.31 233.11,115.54C233.44,115.6 233.65,115.92 233.59,116.24C233.53,116.57 233.22,116.78 232.89,116.72C231.79,116.51 230.62,116.4 229.32,116.4C227.93,116.4 226.68,116.52 225.52,116.76C225.47,116.78 225.43,116.78 225.39,116.78Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M190.89,116.68C190.86,116.68 190.82,116.68 190.79,116.67C190.5,116.62 190.19,116.58 189.88,116.54C189.55,116.5 189.32,116.2 189.35,115.87C189.39,115.54 189.7,115.3 190.02,115.34C190.36,115.38 190.68,115.43 191,115.48C191.33,115.54 191.55,115.85 191.49,116.17C191.43,116.47 191.18,116.68 190.89,116.68Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M274.16,116.62C274.13,116.62 274.1,116.62 274.07,116.61C273.77,116.57 273.47,116.53 273.15,116.5C272.82,116.47 272.58,116.17 272.61,115.84C272.64,115.51 272.93,115.27 273.27,115.3C273.61,115.33 273.93,115.37 274.25,115.42C274.58,115.47 274.8,115.78 274.75,116.1C274.71,116.41 274.45,116.62 274.16,116.62Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g opacity="0.5">
|
||||
<path d="M221.43,31.94L242.75,31.95C242.75,31.95 236.08,17.04 250.25,15.11C262.88,13.39 267.87,26.38 267.87,26.38C267.87,26.38 269.37,18.89 276.88,20.33C284.29,21.74 289.75,33.66 289.75,33.66L308.32,33.66" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M308.69,30.15L304.68,30.15C304.4,30.15 304.18,29.93 304.18,29.65C304.18,29.37 304.4,29.15 304.68,29.15L308.69,29.15C308.97,29.15 309.19,29.37 309.19,29.65C309.19,29.92 308.96,30.15 308.69,30.15ZM295.68,30.14L294.68,30.14C294.4,30.14 294.18,29.92 294.18,29.64C294.18,29.36 294.4,29.14 294.68,29.14L295.68,29.14C295.96,29.14 296.18,29.36 296.18,29.64C296.18,29.92 295.95,30.14 295.68,30.14ZM290.68,30.14L290.12,30.14C289.93,30.14 289.76,30.03 289.67,29.86C289.56,29.65 289.15,28.87 288.47,27.78C288.32,27.55 288.4,27.24 288.63,27.09C288.86,26.94 289.17,27.02 289.32,27.25C289.85,28.1 290.22,28.77 290.42,29.14L290.68,29.14C290.96,29.14 291.18,29.36 291.18,29.64C291.18,29.92 290.95,30.14 290.68,30.14ZM243.12,29.53L241.8,29.53C241.52,29.53 241.3,29.31 241.3,29.03C241.3,28.75 241.52,28.53 241.8,28.53L242.38,28.53C242.29,28.28 242.18,27.97 242.06,27.61C241.98,27.35 242.12,27.07 242.38,26.98C242.64,26.9 242.92,27.04 243.01,27.3C243.31,28.23 243.57,28.82 243.57,28.83C243.64,28.98 243.63,29.16 243.53,29.31C243.43,29.46 243.29,29.53 243.12,29.53ZM233.8,29.53L221.8,29.53C221.52,29.53 221.3,29.31 221.3,29.03C221.3,28.75 221.52,28.53 221.8,28.53L233.8,28.53C234.08,28.53 234.3,28.75 234.3,29.03C234.3,29.31 234.07,29.53 233.8,29.53ZM241.67,24.05C241.42,24.05 241.2,23.86 241.17,23.61C241.13,23.27 241.1,22.93 241.08,22.58C241.06,22.3 241.27,22.07 241.55,22.05C241.82,22.04 242.06,22.24 242.08,22.52C242.1,22.85 242.13,23.17 242.17,23.49C242.2,23.76 242.01,24.01 241.73,24.05C241.7,24.05 241.68,24.05 241.67,24.05ZM267.81,23.01C267.62,23.01 267.45,22.91 267.36,22.73C267.24,22.48 267.09,22.19 266.91,21.86C266.78,21.62 266.87,21.31 267.11,21.18C267.35,21.05 267.66,21.14 267.79,21.38C267.98,21.72 268.13,22.03 268.26,22.29C268.38,22.54 268.28,22.84 268.03,22.96C267.96,23 267.88,23.01 267.81,23.01ZM283.93,21.76C283.81,21.76 283.68,21.71 283.58,21.62C281.42,19.55 279.26,18.3 277.15,17.9C275.71,17.63 274.4,17.68 273.27,18.06C273.01,18.15 272.72,18.01 272.64,17.74C272.55,17.48 272.69,17.2 272.96,17.11C274.26,16.68 275.74,16.61 277.35,16.92C279.65,17.36 281.98,18.7 284.28,20.9C284.48,21.09 284.49,21.41 284.3,21.61C284.19,21.7 284.06,21.76 283.93,21.76ZM265.13,18.8C264.98,18.8 264.84,18.74 264.74,18.61C264.11,17.83 263.44,17.11 262.74,16.48C262.54,16.29 262.52,15.98 262.71,15.77C262.9,15.56 263.21,15.55 263.42,15.74C264.16,16.41 264.87,17.17 265.52,17.98C265.69,18.19 265.66,18.51 265.44,18.68C265.35,18.76 265.24,18.8 265.13,18.8ZM244.64,14.98C244.49,14.98 244.35,14.92 244.25,14.79C244.08,14.57 244.11,14.26 244.33,14.09C245.87,12.85 247.97,12.05 250.55,11.7C252.52,11.43 254.42,11.5 256.21,11.9C256.48,11.96 256.65,12.23 256.59,12.5C256.53,12.77 256.27,12.94 255.99,12.88C254.31,12.51 252.53,12.44 250.68,12.7C248.28,13.03 246.35,13.76 244.95,14.88C244.86,14.95 244.75,14.98 244.64,14.98Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M309.3,33.94L221.43,33.92C220.88,33.92 220.43,33.47 220.43,32.92C220.43,32.37 220.88,31.92 221.43,31.92L309.3,31.94C309.85,31.94 310.3,32.39 310.3,32.94C310.3,33.49 309.85,33.94 309.3,33.94Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g opacity="0.5">
|
||||
<g>
|
||||
<path d="M182.8,150.59C186.64,150.68 190.42,149.66 193.69,147.65C199.83,144.05 207.42,144.05 213.56,147.65C220.29,151.56 228.6,151.56 235.33,147.65C238.31,145.8 241.76,144.86 245.27,144.95C245.82,144.95 246.27,144.5 246.27,143.95C246.27,143.4 245.82,142.95 245.27,142.95C241.43,142.86 237.65,143.88 234.38,145.89C228.24,149.49 220.65,149.49 214.51,145.89C207.78,141.98 199.47,141.98 192.74,145.89C189.76,147.74 186.31,148.68 182.8,148.59C179.56,148.69 176.36,147.88 173.56,146.26C173.26,146.86 172.9,147.43 172.51,147.97C175.63,149.78 179.19,150.69 182.8,150.59Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<g>
|
||||
<path d="M226.93,157.84C226.64,157.84 226.39,157.63 226.34,157.34C226.28,157.01 226.5,156.7 226.83,156.65C229.84,156.13 231.74,154.91 233.58,153.73C233.86,153.55 234.23,153.63 234.41,153.91C234.59,154.19 234.51,154.56 234.23,154.74C232.38,155.93 230.28,157.27 227.03,157.83C227,157.84 226.96,157.84 226.93,157.84Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M219.32,157.66C219.28,157.66 219.23,157.65 219.18,157.64C218.85,157.56 218.53,157.48 218.22,157.39C217.9,157.29 217.72,156.96 217.82,156.64C217.92,156.32 218.25,156.14 218.57,156.24C218.85,156.33 219.15,156.41 219.46,156.48C219.78,156.55 219.98,156.88 219.91,157.2C219.84,157.47 219.59,157.66 219.32,157.66Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M214.9,155.87C214.8,155.87 214.69,155.84 214.6,155.79C213.97,155.43 213.38,155.05 212.78,154.67C212.3,154.37 211.83,154.06 211.34,153.77C211.06,153.6 210.96,153.23 211.13,152.95C211.3,152.66 211.67,152.57 211.95,152.74C212.45,153.04 212.94,153.35 213.42,153.66C214,154.03 214.58,154.4 215.19,154.76C215.48,154.93 215.57,155.29 215.41,155.58C215.31,155.76 215.11,155.87 214.9,155.87Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M238.99,152.21C238.74,152.21 238.5,152.05 238.42,151.79C238.32,151.47 238.49,151.14 238.81,151.03C240.02,150.64 241.29,150.39 242.7,150.28C243.05,150.24 243.32,150.5 243.35,150.83C243.38,151.16 243.13,151.45 242.8,151.48C241.49,151.58 240.31,151.81 239.19,152.18C239.11,152.2 239.05,152.21 238.99,152.21Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M198.74,151.79C198.46,151.79 198.21,151.6 198.15,151.31C198.08,150.99 198.29,150.67 198.61,150.6C199.86,150.34 201.18,150.21 202.66,150.21C204.04,150.21 205.28,150.32 206.46,150.55C206.79,150.61 207,150.93 206.94,151.25C206.88,151.58 206.57,151.79 206.24,151.73C205.14,151.52 203.97,151.41 202.67,151.41C201.28,151.41 200.03,151.53 198.87,151.77C198.82,151.79 198.78,151.79 198.74,151.79Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
<path d="M247.51,151.63C247.48,151.63 247.45,151.63 247.42,151.62C247.12,151.58 246.82,151.54 246.5,151.51C246.17,151.48 245.93,151.18 245.96,150.85C245.99,150.52 246.28,150.28 246.62,150.31C246.96,150.34 247.28,150.38 247.6,150.43C247.93,150.48 248.15,150.79 248.1,151.11C248.06,151.42 247.8,151.63 247.51,151.63Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M272.47,147.27C272.3,147.06 271.99,147.02 271.77,147.19C269.02,149.01 265.85,150.09 262.57,150.35C261.33,150.55 260.07,150.55 258.83,150.35C260.83,149.73 262.59,148.86 263.38,147.72C264.38,146.35 263.76,145.54 263.47,145.26C262.59,144.41 260.65,144.59 259.23,145.66C258.16,146.46 256.34,148.33 256.75,149.86C255.17,150.22 253.56,150.45 251.94,150.54C251.66,150.54 251.44,150.76 251.44,151.04C251.44,151.32 251.66,151.54 251.94,151.54C253.74,151.44 255.53,151.17 257.29,150.75C258.17,151.46 259.93,151.67 262.63,151.37C268.89,150.67 272.2,148.11 272.34,148C272.57,147.85 272.65,147.54 272.5,147.31C272.49,147.3 272.48,147.29 272.47,147.27ZM259.82,146.43C260.41,145.97 261.13,145.71 261.87,145.69C262.19,145.67 262.5,145.76 262.76,145.95C263.07,146.25 262.76,146.81 262.55,147.12C261.82,148.18 259.89,149.01 257.72,149.59C257.49,148.81 258.6,147.34 259.82,146.43Z" style="fill:rgb(237,237,240);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M139.13,114.49L117.33,106.16C115.55,105.48 114.65,103.48 115.33,101.69L126.78,71.74C127.46,69.95 129.47,69.06 131.25,69.74L144.83,74.93C145.69,75.26 146.38,75.91 146.75,76.75L151.84,88.08C152.22,88.92 152.24,89.88 151.92,90.74L143.61,112.49C142.92,114.27 140.92,115.17 139.13,114.49Z" style="fill:rgb(69,161,255);fill-rule:nonzero;"/>
|
||||
<g>
|
||||
<path id="XMLID_2_" d="M145.68,93.72C145.44,93.2 145.02,92.8 144.48,92.6C143.94,92.4 143.36,92.42 142.84,92.65L136.1,95.7L146.02,69.37C146.44,68.26 145.88,67.03 144.77,66.61C143.66,66.19 142.43,66.75 142.01,67.86L132.09,94.19L129.04,87.45C128.8,86.93 128.38,86.53 127.84,86.33C127.3,86.13 126.72,86.15 126.2,86.38C125.68,86.62 125.28,87.04 125.08,87.58C124.88,88.12 124.9,88.7 125.13,89.22L130.31,100.67C130.55,101.19 130.97,101.59 131.51,101.79C132.05,101.99 132.63,101.97 133.15,101.74L144.6,96.56C145.12,96.32 145.52,95.9 145.72,95.36C145.93,94.83 145.91,94.25 145.68,93.72Z" style="fill:rgb(0,96,223);fill-rule:nonzero;"/>
|
||||
<clipPath id="_clip1">
|
||||
<path d="M145.68,93.72C145.44,93.2 145.02,92.8 144.48,92.6C143.94,92.4 143.36,92.42 142.84,92.65L136.1,95.7L146.02,69.37C146.44,68.26 145.88,67.03 144.77,66.61C143.66,66.19 142.43,66.75 142.01,67.86L132.09,94.19L129.04,87.45C128.8,86.93 128.38,86.53 127.84,86.33C127.3,86.13 126.72,86.15 126.2,86.38C125.68,86.62 125.28,87.04 125.08,87.58C124.88,88.12 124.9,88.7 125.13,89.22L130.31,100.67C130.55,101.19 130.97,101.59 131.51,101.79C132.05,101.99 132.63,101.97 133.15,101.74L144.6,96.56C145.12,96.32 145.52,95.9 145.72,95.36C145.93,94.83 145.91,94.25 145.68,93.72Z"/>
|
||||
</clipPath>
|
||||
<g clip-path="url(#_clip1)">
|
||||
<path d="M136.62,76.97L145.86,85.65L151.63,67.2L139.96,59.57L136.62,76.97Z" style="fill:url(#_Linear2);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M168.32,57.02C166.2,52.42 162.86,48.61 158.7,45.92C161.05,48.14 162.82,51.23 163.83,55C165.45,60.99 164.99,67.99 162.54,74.72C162.39,75.13 162.13,75.48 161.82,75.7C161.74,75.76 161.65,75.8 161.57,75.84L167.15,77.94C167.55,78.09 167.99,78.07 168.37,77.9C168.76,77.72 169.05,77.4 169.2,77C171.55,70.44 171.24,63.35 168.32,57.02Z" style="fill:url(#_Linear3);fill-rule:nonzero;"/>
|
||||
<path d="M126.46,61.13C129.06,54.46 133.34,48.89 138.51,45.46C141.83,43.25 145.28,42.1 148.58,42.03C143.56,41.21 138.41,41.86 133.66,43.97C127.29,46.8 122.38,51.92 119.82,58.4C119.66,58.79 119.67,59.24 119.85,59.62C120.02,60.01 120.34,60.31 120.74,60.46L126.47,62.62C126.43,62.54 126.39,62.45 126.37,62.35C126.26,61.97 126.3,61.53 126.46,61.13Z" style="fill:url(#_Linear4);fill-rule:nonzero;"/>
|
||||
<path d="M162.54,74.72C164.99,67.99 165.45,60.98 163.83,55C162.81,51.24 161.05,48.15 158.7,45.92C157.39,45.08 156,44.34 154.54,43.73C155.84,45.1 156.42,48.05 156.16,52.27C155.85,57.45 154.32,63.96 151.86,70.58C151.71,70.98 151.52,71.35 151.32,71.61C151.23,71.73 151.14,71.82 151.05,71.88L161.56,75.84C161.65,75.81 161.73,75.76 161.81,75.7C162.13,75.49 162.39,75.13 162.54,74.72Z" style="fill:url(#_Linear5);fill-rule:nonzero;"/>
|
||||
<path d="M136.32,65.95C136.34,65.63 136.44,65.22 136.59,64.82C139.11,58.22 142.25,52.33 145.44,48.23C148.01,44.92 150.37,43.09 152.24,42.89C151.03,42.51 149.81,42.22 148.57,42.02C145.27,42.09 141.82,43.25 138.5,45.45C133.33,48.88 129.05,54.45 126.45,61.12C126.29,61.53 126.26,61.96 126.35,62.33C126.37,62.43 126.41,62.52 126.45,62.6L136.33,66.32C136.31,66.24 136.3,66.11 136.32,65.95Z" style="fill:url(#_Linear6);fill-rule:nonzero;"/>
|
||||
<path d="M152.24,42.9C150.36,43.09 148.01,44.93 145.44,48.24C142.25,52.34 139.11,58.23 136.59,64.83C136.44,65.23 136.34,65.64 136.32,65.96C136.31,66.11 136.32,66.24 136.34,66.34L151.05,71.88C151.13,71.82 151.22,71.73 151.32,71.61C151.51,71.36 151.71,70.98 151.86,70.58C154.32,63.96 155.85,57.46 156.16,52.27C156.42,48.06 155.84,45.1 154.54,43.73C154.25,43.61 153.96,43.49 153.67,43.38C153.19,43.21 152.72,43.05 152.24,42.9Z" style="fill:url(#_Linear7);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
<path d="M232.86,27.14C228.84,27.55 223.78,31.49 218.28,38.58C211.45,47.37 204.72,60 199.31,74.14C198.98,75 198.77,75.87 198.72,76.56C198.7,76.89 198.72,77.16 198.77,77.37L230.31,89.25C230.49,89.13 230.68,88.94 230.88,88.68C231.3,88.13 231.71,87.34 232.03,86.47C237.3,72.28 240.57,58.35 241.25,47.23C241.8,38.2 240.57,31.87 237.78,28.93C237.16,28.67 236.54,28.41 235.91,28.17C234.9,27.8 233.88,27.46 232.86,27.14Z" style="fill:url(#_Linear8);fill-rule:nonzero;"/>
|
||||
<g>
|
||||
<path d="M204.77,180.58L158.04,162.72C154.22,161.26 152.3,156.97 153.76,153.15L178.29,88.95C179.75,85.12 184.05,83.2 187.88,84.66L216.98,95.78C218.82,96.48 220.3,97.88 221.11,99.68L232.01,123.97C232.82,125.77 232.88,127.82 232.17,129.66L214.35,176.28C212.89,180.13 208.6,182.05 204.77,180.58Z" style="fill:rgb(69,161,255);fill-rule:nonzero;"/>
|
||||
<g>
|
||||
<path id="XMLID_1_" d="M218.79,136.08C218.28,134.96 217.37,134.11 216.23,133.68C215.08,133.25 213.83,133.29 212.72,133.79L198.28,140.33L219.54,83.9C220.43,81.53 219.23,78.88 216.86,77.98C214.49,77.09 211.84,78.29 210.94,80.66L189.68,137.09L183.14,122.65C182.63,121.53 181.72,120.68 180.58,120.25C179.43,119.82 178.18,119.86 177.07,120.36C175.95,120.87 175.1,121.78 174.67,122.92C174.24,124.07 174.28,125.32 174.78,126.43L185.89,150.97C186.4,152.09 187.31,152.94 188.45,153.37C189.6,153.8 190.85,153.76 191.96,153.26L216.5,142.15C217.62,141.64 218.47,140.73 218.9,139.59C219.33,138.45 219.29,137.2 218.79,136.08Z" style="fill:rgb(0,96,223);fill-rule:nonzero;"/>
|
||||
<clipPath id="_clip9">
|
||||
<path d="M218.79,136.08C218.28,134.96 217.37,134.11 216.23,133.68C215.08,133.25 213.83,133.29 212.72,133.79L198.28,140.33L219.54,83.9C220.43,81.53 219.23,78.88 216.86,77.98C214.49,77.09 211.84,78.29 210.94,80.66L189.68,137.09L183.14,122.65C182.63,121.53 181.72,120.68 180.58,120.25C179.43,119.82 178.18,119.86 177.07,120.36C175.95,120.87 175.1,121.78 174.67,122.92C174.24,124.07 174.28,125.32 174.78,126.43L185.89,150.97C186.4,152.09 187.31,152.94 188.45,153.37C189.6,153.8 190.85,153.76 191.96,153.26L216.5,142.15C217.62,141.64 218.47,140.73 218.9,139.59C219.33,138.45 219.29,137.2 218.79,136.08Z"/>
|
||||
</clipPath>
|
||||
<g clip-path="url(#_clip9)">
|
||||
<path d="M199.39,100.16L219.18,118.78L231.56,79.23L206.54,62.89L199.39,100.16Z" style="fill:url(#_Linear10);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M267.32,57.41C262.77,47.55 255.63,39.38 246.7,33.63C251.74,38.4 255.52,45.02 257.7,53.08C261.17,65.91 260.19,80.93 254.93,95.35C254.61,96.23 254.05,96.98 253.38,97.44C253.2,97.56 253.02,97.66 252.84,97.73L264.81,102.24C265.66,102.56 266.61,102.53 267.43,102.15C268.26,101.77 268.89,101.07 269.2,100.21C274.25,86.18 273.58,70.97 267.32,57.41Z" style="fill:url(#_Linear11);fill-rule:nonzero;"/>
|
||||
<path d="M177.6,66.22C183.17,51.91 192.34,39.98 203.42,32.63C210.54,27.9 217.93,25.43 225.01,25.27C214.25,23.51 203.2,24.9 193.02,29.42C179.37,35.48 168.84,46.46 163.36,60.34C163.03,61.19 163.05,62.13 163.41,62.96C163.78,63.79 164.47,64.44 165.32,64.76L177.6,69.39C177.51,69.21 177.44,69.02 177.38,68.81C177.18,68.02 177.26,67.09 177.6,66.22Z" style="fill:url(#_Linear12);fill-rule:nonzero;"/>
|
||||
<path d="M254.94,95.36C260.19,80.93 261.18,65.92 257.71,53.09C255.53,45.03 251.75,38.41 246.71,33.64C243.9,31.83 240.92,30.26 237.79,28.95C240.59,31.88 241.81,38.21 241.26,47.25C240.59,58.36 237.31,72.3 232.04,86.49C231.72,87.36 231.3,88.15 230.89,88.7C230.69,88.96 230.5,89.15 230.32,89.27L252.85,97.76C253.03,97.69 253.22,97.59 253.39,97.47C254.06,96.99 254.62,96.24 254.94,95.36Z" style="fill:url(#_Linear13);fill-rule:nonzero;"/>
|
||||
<path d="M198.73,76.56C198.78,75.88 198.99,75 199.32,74.14C204.72,60 211.46,47.37 218.29,38.58C223.8,31.49 228.85,27.55 232.87,27.14C230.28,26.33 227.65,25.7 225.01,25.27C217.93,25.43 210.54,27.9 203.42,32.63C192.34,39.98 183.18,51.91 177.6,66.22C177.26,67.09 177.18,68.03 177.38,68.82C177.43,69.03 177.51,69.22 177.6,69.4L198.78,77.38C198.72,77.16 198.7,76.89 198.73,76.56Z" style="fill:url(#_Linear14);fill-rule:nonzero;"/>
|
||||
<path d="M232.86,27.14C228.84,27.55 223.78,31.49 218.28,38.58C211.45,47.37 204.72,60 199.31,74.14C198.98,75 198.77,75.87 198.72,76.56C198.7,76.89 198.72,77.16 198.77,77.37L230.31,89.25C230.49,89.13 230.68,88.94 230.88,88.68C231.3,88.13 231.71,87.34 232.03,86.47C237.3,72.28 240.57,58.35 241.25,47.23C241.8,38.2 240.57,31.87 237.78,28.93C237.16,28.67 236.54,28.41 235.91,28.17C234.9,27.8 233.88,27.46 232.86,27.14Z" style="fill:url(#_Linear15);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M269.57,162.35L258.74,158.21C257.85,157.87 257.41,156.88 257.75,155.99L263.44,141.11C263.78,140.22 264.77,139.78 265.66,140.12L272.41,142.7C272.84,142.86 273.18,143.19 273.37,143.6L275.9,149.23C276.09,149.65 276.1,150.12 275.94,150.55L271.81,161.36C271.46,162.24 270.46,162.69 269.57,162.35Z" style="fill:rgb(69,161,255);fill-rule:nonzero;"/>
|
||||
<g>
|
||||
<path id="XMLID_3_" d="M272.83,152.03C272.71,151.77 272.5,151.57 272.24,151.47C271.97,151.37 271.68,151.38 271.43,151.5L268.08,153.02L273.01,139.94C273.22,139.39 272.94,138.78 272.39,138.57C271.84,138.36 271.23,138.64 271.02,139.19L266.09,152.27L264.57,148.92C264.45,148.66 264.24,148.46 263.98,148.36C263.71,148.26 263.42,148.27 263.17,148.39C262.91,148.51 262.71,148.72 262.61,148.98C262.51,149.25 262.52,149.54 262.64,149.79L265.22,155.48C265.34,155.74 265.55,155.94 265.81,156.04C266.07,156.14 266.37,156.13 266.62,156.01L272.31,153.43C272.57,153.31 272.77,153.1 272.87,152.84C272.95,152.58 272.94,152.29 272.83,152.03Z" style="fill:rgb(0,96,223);fill-rule:nonzero;"/>
|
||||
<clipPath id="_clip16">
|
||||
<path d="M272.83,152.03C272.71,151.77 272.5,151.57 272.24,151.47C271.97,151.37 271.68,151.38 271.43,151.5L268.08,153.02L273.01,139.94C273.22,139.39 272.94,138.78 272.39,138.57C271.84,138.36 271.23,138.64 271.02,139.19L266.09,152.27L264.57,148.92C264.45,148.66 264.24,148.46 263.98,148.36C263.71,148.26 263.42,148.27 263.17,148.39C262.91,148.51 262.71,148.72 262.61,148.98C262.51,149.25 262.52,149.54 262.64,149.79L265.22,155.48C265.34,155.74 265.55,155.94 265.81,156.04C266.07,156.14 266.37,156.13 266.62,156.01L272.31,153.43C272.57,153.31 272.77,153.1 272.87,152.84C272.95,152.58 272.94,152.29 272.83,152.03Z"/>
|
||||
</clipPath>
|
||||
<g clip-path="url(#_clip16)">
|
||||
<path d="M268.33,143.7L272.92,148.02L275.79,138.85L269.98,135.06L268.33,143.7Z" style="fill:url(#_Linear17);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M284.08,133.79C283.02,131.5 281.37,129.61 279.3,128.28C280.47,129.39 281.35,130.92 281.85,132.79C282.65,135.77 282.43,139.25 281.21,142.59C281.14,142.79 281.01,142.97 280.85,143.08C280.81,143.11 280.77,143.13 280.72,143.15L283.49,144.2C283.69,144.27 283.91,144.27 284.1,144.18C284.29,144.09 284.44,143.93 284.51,143.73C285.68,140.46 285.53,136.93 284.08,133.79Z" style="fill:url(#_Linear18);fill-rule:nonzero;"/>
|
||||
<path d="M263.28,135.83C264.57,132.51 266.7,129.75 269.27,128.04C270.92,126.94 272.63,126.37 274.28,126.33C271.79,125.92 269.22,126.24 266.86,127.29C263.7,128.69 261.25,131.24 259.98,134.46C259.9,134.66 259.91,134.88 259.99,135.07C260.08,135.26 260.23,135.41 260.43,135.49L263.28,136.56C263.26,136.52 263.24,136.47 263.23,136.43C263.18,136.25 263.2,136.03 263.28,135.83Z" style="fill:url(#_Linear19);fill-rule:nonzero;"/>
|
||||
<path d="M281.21,142.59C282.43,139.25 282.66,135.76 281.85,132.79C281.34,130.92 280.47,129.39 279.3,128.28C278.65,127.86 277.96,127.5 277.23,127.19C277.88,127.87 278.16,129.34 278.03,131.43C277.87,134.01 277.12,137.24 275.89,140.53C275.82,140.73 275.72,140.91 275.62,141.04C275.57,141.1 275.53,141.15 275.49,141.17L280.71,143.14C280.75,143.12 280.79,143.1 280.84,143.07C281,142.97 281.13,142.79 281.21,142.59Z" style="fill:url(#_Linear20);fill-rule:nonzero;"/>
|
||||
<path d="M268.17,138.23C268.18,138.07 268.23,137.87 268.31,137.67C269.56,134.39 271.12,131.46 272.71,129.43C273.99,127.79 275.16,126.87 276.09,126.78C275.49,126.59 274.88,126.45 274.27,126.35C272.63,126.39 270.92,126.96 269.26,128.06C266.69,129.76 264.57,132.53 263.27,135.85C263.19,136.05 263.17,136.27 263.22,136.45C263.23,136.5 263.25,136.54 263.27,136.58L268.18,138.43C268.17,138.37 268.17,138.31 268.17,138.23Z" style="fill:url(#_Linear21);fill-rule:nonzero;"/>
|
||||
<path d="M276.09,126.77C275.16,126.87 273.99,127.78 272.71,129.42C271.13,131.46 269.57,134.39 268.31,137.66C268.23,137.86 268.18,138.06 268.17,138.22C268.16,138.3 268.17,138.36 268.18,138.41L275.49,141.17C275.53,141.14 275.58,141.1 275.62,141.04C275.72,140.91 275.81,140.73 275.89,140.53C277.11,137.24 277.87,134.01 278.03,131.43C278.16,129.34 277.87,127.87 277.23,127.19C277.09,127.13 276.94,127.07 276.8,127.01C276.56,126.93 276.32,126.85 276.09,126.77Z" style="fill:url(#_Linear22);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M77.27,189.52L52.69,180.13C50.68,179.36 49.67,177.11 50.44,175.1L63.34,141.33C64.11,139.31 66.37,138.3 68.38,139.08L83.68,144.93C84.65,145.3 85.43,146.04 85.85,146.98L91.58,159.76C92.01,160.71 92.04,161.78 91.67,162.75L82.3,187.27C81.54,189.28 79.28,190.29 77.27,189.52Z" style="fill:rgb(69,161,255);fill-rule:nonzero;"/>
|
||||
<g>
|
||||
<path id="XMLID_4_" d="M84.64,166.12C84.37,165.53 83.89,165.08 83.29,164.86C82.69,164.63 82.03,164.65 81.44,164.92L73.84,168.36L85.02,138.68C85.49,137.43 84.86,136.04 83.61,135.57C82.36,135.1 80.97,135.73 80.5,136.98L69.32,166.66L65.88,159.06C65.61,158.47 65.13,158.02 64.53,157.8C63.93,157.57 63.27,157.59 62.68,157.86C62.09,158.13 61.64,158.61 61.42,159.21C61.2,159.81 61.21,160.47 61.48,161.06L67.32,173.97C67.59,174.56 68.07,175.01 68.67,175.23C69.27,175.46 69.93,175.44 70.52,175.17L83.43,169.33C84.02,169.06 84.47,168.58 84.69,167.98C84.93,167.36 84.91,166.7 84.64,166.12Z" style="fill:rgb(0,96,223);fill-rule:nonzero;"/>
|
||||
<clipPath id="_clip23">
|
||||
<path d="M84.64,166.12C84.37,165.53 83.89,165.08 83.29,164.86C82.69,164.63 82.03,164.65 81.44,164.92L73.84,168.36L85.02,138.68C85.49,137.43 84.86,136.04 83.61,135.57C82.36,135.1 80.97,135.73 80.5,136.98L69.32,166.66L65.88,159.06C65.61,158.47 65.13,158.02 64.53,157.8C63.93,157.57 63.27,157.59 62.68,157.86C62.09,158.13 61.64,158.61 61.42,159.21C61.2,159.81 61.21,160.47 61.48,161.06L67.32,173.97C67.59,174.56 68.07,175.01 68.67,175.23C69.27,175.46 69.93,175.44 70.52,175.17L83.43,169.33C84.02,169.06 84.47,168.58 84.69,167.98C84.93,167.36 84.91,166.7 84.64,166.12Z"/>
|
||||
</clipPath>
|
||||
<g clip-path="url(#_clip23)">
|
||||
<path d="M74.44,147.22L84.85,157.02L91.36,136.21L78.2,127.62L74.44,147.22Z" style="fill:url(#_Linear24);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
</g>
|
||||
<path d="M110.17,124.74C107.78,119.55 104.02,115.26 99.32,112.23C101.97,114.74 103.96,118.22 105.11,122.46C106.93,129.21 106.42,137.11 103.65,144.69C103.48,145.15 103.19,145.55 102.83,145.79C102.74,145.85 102.64,145.9 102.54,145.94L108.83,148.31C109.28,148.48 109.77,148.46 110.21,148.26C110.64,148.06 110.98,147.69 111.14,147.24C113.81,139.87 113.46,131.87 110.17,124.74Z" style="fill:url(#_Linear25);fill-rule:nonzero;"/>
|
||||
<path d="M62.98,129.37C65.91,121.85 70.73,115.57 76.56,111.7C80.31,109.21 84.19,107.91 87.92,107.83C82.26,106.9 76.45,107.63 71.1,110.01C63.92,113.2 58.38,118.97 55.5,126.27C55.32,126.72 55.33,127.21 55.53,127.65C55.72,128.09 56.09,128.43 56.53,128.6L62.99,131.03C62.94,130.94 62.9,130.84 62.88,130.73C62.76,130.32 62.8,129.83 62.98,129.37Z" style="fill:url(#_Linear26);fill-rule:nonzero;"/>
|
||||
<path d="M103.65,144.7C106.41,137.11 106.93,129.22 105.11,122.47C103.96,118.23 101.97,114.75 99.32,112.24C97.84,111.29 96.28,110.46 94.63,109.77C96.1,111.31 96.74,114.64 96.46,119.39C96.11,125.23 94.38,132.56 91.61,140.03C91.44,140.49 91.22,140.9 91,141.19C90.89,141.33 90.79,141.43 90.7,141.49L102.55,145.95C102.65,145.91 102.74,145.86 102.84,145.8C103.19,145.56 103.48,145.16 103.65,144.7Z" style="fill:url(#_Linear27);fill-rule:nonzero;"/>
|
||||
<path d="M74.09,134.81C74.11,134.45 74.23,133.99 74.4,133.54C77.24,126.1 80.79,119.46 84.38,114.84C87.28,111.11 89.94,109.04 92.05,108.82C90.69,108.39 89.31,108.06 87.92,107.83C84.19,107.91 80.31,109.21 76.56,111.7C70.73,115.57 65.91,121.84 62.98,129.37C62.8,129.83 62.76,130.32 62.87,130.74C62.9,130.85 62.94,130.95 62.98,131.04L74.12,135.24C74.09,135.13 74.08,134.99 74.09,134.81Z" style="fill:url(#_Linear28);fill-rule:nonzero;"/>
|
||||
<path d="M92.04,108.82C89.93,109.04 87.27,111.11 84.37,114.84C80.78,119.46 77.24,126.11 74.39,133.54C74.22,133.99 74.11,134.45 74.08,134.81C74.07,134.98 74.08,135.13 74.11,135.23L90.7,141.48C90.79,141.42 90.89,141.32 91,141.18C91.22,140.89 91.44,140.47 91.61,140.02C94.38,132.56 96.1,125.23 96.46,119.38C96.75,114.63 96.1,111.3 94.63,109.76C94.3,109.62 93.98,109.49 93.65,109.36C93.12,109.17 92.58,108.99 92.04,108.82Z" style="fill:url(#_Linear29);fill-rule:nonzero;"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.59681e-15,-26.0779,26.0779,1.59681e-15,144.128,85.6518)"><stop offset="0" style="stop-color:rgb(10,92,199);stop-opacity:1"/><stop offset="0" style="stop-color:rgb(10,92,199);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear3" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(22.1565,50.0308,-50.0308,22.1565,148.016,28.2064)"><stop offset="0" style="stop-color:rgb(250,53,127);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(120,120,255);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(120,120,255);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear4" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(49.3863,18.6083,-18.6083,49.3863,124.013,47.2236)"><stop offset="0" style="stop-color:rgb(255,243,97);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,168,10);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear5" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(15.9622,45.5041,-45.5041,15.9622,148.35,37.4201)"><stop offset="0" style="stop-color:rgb(255,81,98);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear6" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(6.638,13.7126,-13.7126,6.638,135.036,43.8416)"><stop offset="0" style="stop-color:rgb(255,217,67);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,168,10);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear7" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(7.67361,36.6506,-36.6506,7.67361,141.962,36.7113)"><stop offset="0" style="stop-color:rgb(255,135,72);stop-opacity:1"/><stop offset="0.13" style="stop-color:rgb(254,120,82);stop-opacity:1"/><stop offset="0.5" style="stop-color:rgb(252,84,106);stop-opacity:1"/><stop offset="0.81" style="stop-color:rgb(250,61,121);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(250,53,127);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear8" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.69647,51.7596,-51.7596,4.69647,216.443,19.2225)"><stop offset="0" style="stop-color:rgb(255,243,97);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,168,10);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear10" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.42253e-15,-55.8942,55.8942,3.42253e-15,215.472,118.78)"><stop offset="0" style="stop-color:rgb(10,92,199);stop-opacity:1"/><stop offset="0" style="stop-color:rgb(10,92,199);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear11" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(47.4893,107.234,-107.234,47.4893,223.805,-4.3458)"><stop offset="0" style="stop-color:rgb(250,53,127);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(120,120,255);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(120,120,255);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear12" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(105.852,39.8841,-39.8841,105.852,172.363,36.4203)"><stop offset="0" style="stop-color:rgb(255,243,97);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,168,10);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear13" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(34.2127,97.5317,-97.5317,34.2127,224.522,15.4024)"><stop offset="0" style="stop-color:rgb(255,81,98);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear14" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(14.2275,29.391,-29.391,14.2275,195.984,29.166)"><stop offset="0" style="stop-color:rgb(255,217,67);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,168,10);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear15" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(16.4472,78.5554,-78.5554,16.4472,210.834,13.8887)"><stop offset="0" style="stop-color:rgb(255,135,72);stop-opacity:1"/><stop offset="0.13" style="stop-color:rgb(254,120,82);stop-opacity:1"/><stop offset="0.5" style="stop-color:rgb(252,84,106);stop-opacity:1"/><stop offset="0.81" style="stop-color:rgb(250,61,121);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(250,53,127);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear17" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(7.93467e-16,-12.9583,12.9583,7.93467e-16,272.056,148.018)"><stop offset="0" style="stop-color:rgb(10,92,199);stop-opacity:1"/><stop offset="0" style="stop-color:rgb(10,92,199);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear18" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(11.0097,24.8605,-24.8605,11.0097,273.988,119.473)"><stop offset="0" style="stop-color:rgb(250,53,127);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(120,120,255);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(120,120,255);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear19" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(24.5402,9.24651,-9.24651,24.5402,262.063,128.92)"><stop offset="0" style="stop-color:rgb(255,243,97);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,168,10);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear20" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(7.9317,22.6113,-22.6113,7.9317,274.154,124.051)"><stop offset="0" style="stop-color:rgb(255,81,98);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear21" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.2985,6.8138,-6.8138,3.2985,267.538,127.242)"><stop offset="0" style="stop-color:rgb(255,217,67);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,168,10);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear22" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(3.81308,18.2119,-18.2119,3.81308,270.982,123.697)"><stop offset="0" style="stop-color:rgb(255,135,72);stop-opacity:1"/><stop offset="0.13" style="stop-color:rgb(254,120,82);stop-opacity:1"/><stop offset="0.5" style="stop-color:rgb(252,84,106);stop-opacity:1"/><stop offset="0.81" style="stop-color:rgb(250,61,121);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(250,53,127);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear24" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.80008e-15,-29.3976,29.3976,1.80008e-15,82.8973,157.016)"><stop offset="0" style="stop-color:rgb(10,92,199);stop-opacity:1"/><stop offset="0" style="stop-color:rgb(10,92,199);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear25" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(24.9771,56.3998,-56.3998,24.9771,87.2799,92.2572)"><stop offset="0" style="stop-color:rgb(250,53,127);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(120,120,255);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(120,120,255);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear26" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(55.6733,20.9771,-20.9771,55.6733,60.2207,113.698)"><stop offset="0" style="stop-color:rgb(255,243,97);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,168,10);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear27" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(17.9942,51.297,-51.297,17.9942,87.6569,102.644)"><stop offset="0" style="stop-color:rgb(255,81,98);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(131,33,157);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear28" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(7.483,15.4582,-15.4582,7.483,72.6475,109.883)"><stop offset="0" style="stop-color:rgb(255,217,67);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,168,10);stop-opacity:1"/></linearGradient>
|
||||
<linearGradient id="_Linear29" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(8.6504,41.3164,-41.3164,8.6504,80.4547,101.848)"><stop offset="0" style="stop-color:rgb(255,135,72);stop-opacity:1"/><stop offset="0.13" style="stop-color:rgb(254,120,82);stop-opacity:1"/><stop offset="0.5" style="stop-color:rgb(252,84,106);stop-opacity:1"/><stop offset="0.81" style="stop-color:rgb(250,61,121);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(250,53,127);stop-opacity:1"/></linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 45 KiB After Width: | Height: | Size: 458 B |
@@ -1,99 +1,2 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80">
|
||||
<defs>
|
||||
<radialGradient id="a" cx="-1186.91" cy="-517.676" r="90.78" gradientTransform="translate(1258.441 534.061)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff36e"/>
|
||||
<stop offset=".5" stop-color="#fc4055"/>
|
||||
<stop offset="1" stop-color="#e31587"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="b" cx="-1251.812" cy="-513.921" r="53.726" gradientTransform="translate(1258.441 534.061)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset=".001" stop-color="#c60084"/>
|
||||
<stop offset="1" stop-color="#fc4055" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="c" cx="-1179.15" cy="-522.842" r="106.599" gradientTransform="translate(1258.441 534.061)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#ffde67" stop-opacity=".6"/>
|
||||
<stop offset=".093" stop-color="#ffd966" stop-opacity=".581"/>
|
||||
<stop offset=".203" stop-color="#ffca65" stop-opacity=".525"/>
|
||||
<stop offset=".321" stop-color="#feb262" stop-opacity=".432"/>
|
||||
<stop offset=".446" stop-color="#fe8f5e" stop-opacity=".302"/>
|
||||
<stop offset=".573" stop-color="#fd6459" stop-opacity=".137"/>
|
||||
<stop offset=".664" stop-color="#fc4055" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="d" cx="42.285" cy="44.499" r="137.521" gradientTransform="translate(0 -.095)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset=".153" stop-color="#810220"/>
|
||||
<stop offset=".167" stop-color="#920b27" stop-opacity=".861"/>
|
||||
<stop offset=".216" stop-color="#cb2740" stop-opacity=".398"/>
|
||||
<stop offset=".253" stop-color="#ef394f" stop-opacity=".11"/>
|
||||
<stop offset=".272" stop-color="#fc4055" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="e" cx="31.878" cy="42.77" r="137.521" gradientTransform="translate(0 -.095)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset=".113" stop-color="#810220"/>
|
||||
<stop offset=".133" stop-color="#920b27" stop-opacity=".861"/>
|
||||
<stop offset=".204" stop-color="#cb2740" stop-opacity=".398"/>
|
||||
<stop offset=".257" stop-color="#ef394f" stop-opacity=".11"/>
|
||||
<stop offset=".284" stop-color="#fc4055" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="f" x1="-1212.61" y1="-525.103" x2="-1189.052" y2="-484.299" gradientTransform="translate(1258.441 532.89)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#ffbd4f"/>
|
||||
<stop offset=".508" stop-color="#ff9640" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="g" cx="-1255.933" cy="-77.395" r="88.863" gradientTransform="matrix(.959 0 0 .961 1273.896 86.468)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#ff9640"/>
|
||||
<stop offset=".8" stop-color="#fc4055"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="h" cx="-1255.933" cy="-77.395" r="88.863" gradientTransform="matrix(.959 0 0 .961 1273.896 86.468)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset=".084" stop-color="#ffde67"/>
|
||||
<stop offset=".147" stop-color="#ffdc66" stop-opacity=".968"/>
|
||||
<stop offset=".246" stop-color="#ffd562" stop-opacity=".879"/>
|
||||
<stop offset=".369" stop-color="#ffcb5d" stop-opacity=".734"/>
|
||||
<stop offset=".511" stop-color="#ffbc55" stop-opacity=".533"/>
|
||||
<stop offset=".667" stop-color="#ffaa4b" stop-opacity=".28"/>
|
||||
<stop offset=".822" stop-color="#ff9640" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="i" cx="49.941" cy="38.654" r="41.79" gradientTransform="matrix(.247 .971 -1.011 .259 76.681 -19.851)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset=".363" stop-color="#fc4055"/>
|
||||
<stop offset=".443" stop-color="#fd604d" stop-opacity=".633"/>
|
||||
<stop offset=".545" stop-color="#fe8644" stop-opacity=".181"/>
|
||||
<stop offset=".59" stop-color="#ff9640" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="j" cx="42.737" cy="42.193" r="41.79" gradientTransform="translate(0 -.095)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset=".216" stop-color="#fc4055" stop-opacity=".8"/>
|
||||
<stop offset=".267" stop-color="#fd5251" stop-opacity=".633"/>
|
||||
<stop offset=".41" stop-color="#fe8345" stop-opacity=".181"/>
|
||||
<stop offset=".474" stop-color="#ff9640" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="k" cx="-1238.198" cy="-87.433" r="150.195" gradientTransform="matrix(.959 0 0 .961 1273.896 86.468)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset=".054" stop-color="#fff36e"/>
|
||||
<stop offset=".457" stop-color="#ff9640"/>
|
||||
<stop offset=".639" stop-color="#ff9640"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="l" x1="59.052" y1="7.083" x2="18.155" y2="77.92" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff36e" stop-opacity=".8"/>
|
||||
<stop offset=".094" stop-color="#fff36e" stop-opacity=".699"/>
|
||||
<stop offset=".752" stop-color="#fff36e" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="m" x1="40.585" y1="-.67" x2="62.3" y2="62.203" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#b833e1"/>
|
||||
<stop offset=".371" stop-color="#9059ff"/>
|
||||
<stop offset=".614" stop-color="#5b6df8"/>
|
||||
<stop offset="1" stop-color="#0090ed"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="n" x1="-1230.731" y1="-532.566" x2="-1190.37" y2="-492.205" gradientTransform="translate(1258.441 532.89)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset=".805" stop-color="#722291" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#592acb" stop-opacity=".5"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path d="M71.944 15.7A39.47 39.47 0 0 0 41.588.009C32.3-.177 25.884 2.614 22.254 4.858 27.111 2.041 34.14.443 40.294.522c15.83.2 32.832 10.981 35.357 30.413 2.9 22.306-12.637 40.923-34.493 40.98-24.045.061-38.67-21.229-34.847-40.352a19.735 19.735 0 0 1 .413-2.787 37.815 37.815 0 0 1 4.193-14.018c-2.769 1.433-6.295 5.965-8.035 10.163A41.355 41.355 0 0 0 .284 45.1c.06.518.114 1.035.182 1.549A40.062 40.062 0 1 0 71.944 15.7zm-63.4 3.487z" fill="url(#a)"/>
|
||||
<path d="M71.944 15.7A39.47 39.47 0 0 0 41.588.009C32.3-.177 25.884 2.614 22.254 4.858 27.111 2.041 34.14.443 40.294.522c15.83.2 32.832 10.981 35.357 30.413 2.9 22.306-12.637 40.923-34.493 40.98-24.045.061-38.67-21.229-34.847-40.352a19.735 19.735 0 0 1 .413-2.787 37.815 37.815 0 0 1 4.193-14.018c-2.769 1.433-6.295 5.965-8.035 10.163A41.355 41.355 0 0 0 .284 45.1c.06.518.114 1.035.182 1.549A40.062 40.062 0 1 0 71.944 15.7zm-63.4 3.487z" fill="url(#b)" opacity=".67"/>
|
||||
<path d="M71.944 15.7A39.47 39.47 0 0 0 41.588.009C32.3-.177 25.884 2.614 22.254 4.858 27.111 2.041 34.14.443 40.294.522c15.83.2 32.832 10.981 35.357 30.413 2.9 22.306-12.637 40.923-34.493 40.98-24.045.061-38.67-21.229-34.847-40.352a19.735 19.735 0 0 1 .413-2.787 37.815 37.815 0 0 1 4.193-14.018c-2.769 1.433-6.295 5.965-8.035 10.163A41.355 41.355 0 0 0 .284 45.1c.06.518.114 1.035.182 1.549A40.062 40.062 0 1 0 71.944 15.7zm-63.4 3.487z" fill="url(#c)"/>
|
||||
<path d="M71.944 15.7A39.47 39.47 0 0 0 41.588.009C32.3-.177 25.884 2.614 22.254 4.858 27.111 2.041 34.14.443 40.294.522c15.83.2 32.832 10.981 35.357 30.413 2.9 22.306-12.637 40.923-34.493 40.98-24.045.061-38.67-21.229-34.847-40.352a19.735 19.735 0 0 1 .413-2.787 37.815 37.815 0 0 1 4.193-14.018c-2.769 1.433-6.295 5.965-8.035 10.163A41.355 41.355 0 0 0 .284 45.1c.06.518.114 1.035.182 1.549A40.062 40.062 0 1 0 71.944 15.7zm-63.4 3.487z" fill="url(#d)"/>
|
||||
<path d="M71.944 15.7A39.47 39.47 0 0 0 41.588.009C32.3-.177 25.884 2.614 22.254 4.858 27.111 2.041 34.14.443 40.294.522c15.83.2 32.832 10.981 35.357 30.413 2.9 22.306-12.637 40.923-34.493 40.98-24.045.061-38.67-21.229-34.847-40.352a19.735 19.735 0 0 1 .413-2.787 37.815 37.815 0 0 1 4.193-14.018c-2.769 1.433-6.295 5.965-8.035 10.163A41.355 41.355 0 0 0 .284 45.1c.06.518.114 1.035.182 1.549A40.062 40.062 0 1 0 71.944 15.7zm-63.4 3.487z" fill="url(#e)"/>
|
||||
<path d="M75.651 30.935a41.01 41.01 0 0 1 .3 7.247q1.99-.3 3.987-.53A40.01 40.01 0 0 0 71.944 15.7 39.47 39.47 0 0 0 41.588.009C32.3-.177 25.884 2.614 22.254 4.858 27.111 2.041 34.14.443 40.294.522 56.124.724 73.126 11.5 75.651 30.935z" fill="url(#f)"/>
|
||||
<path d="M76.625 29.826C74.374 9.518 56.263.39 40.294.522c-6.155.05-13.183 1.519-18.04 4.336a19.7 19.7 0 0 0-3.56 2.7c.129-.107.514-.424 1.152-.862l.063-.043.056-.038a26.655 26.655 0 0 1 7.692-3.572A43.5 43.5 0 0 1 40.84 1.5a33.254 33.254 0 0 1 31.25 31.993C72.457 46.7 61.648 57.23 49.188 57.84c-9.062.444-17.6-3.941-21.77-12.713a21.68 21.68 0 0 1-1.964-6.333c-1.976-13.35 6.989-24.735 15.21-27.554-4.435-3.874-15.548-3.611-23.819 2.474-5.956 4.382-9.82 11.049-11.1 19a32.945 32.945 0 0 0 2.34 18 35.3 35.3 0 0 0 30.089 21.443q1.489.114 2.984.113c26.462 0 37.942-20.087 35.467-42.444z" fill="url(#g)"/>
|
||||
<path d="M76.625 29.826C74.374 9.518 56.263.39 40.294.522c-6.155.05-13.183 1.519-18.04 4.336a19.7 19.7 0 0 0-3.56 2.7c.129-.107.514-.424 1.152-.862l.063-.043.056-.038a26.655 26.655 0 0 1 7.692-3.572A43.5 43.5 0 0 1 40.84 1.5a33.254 33.254 0 0 1 31.25 31.993C72.457 46.7 61.648 57.23 49.188 57.84c-9.062.444-17.6-3.941-21.77-12.713a21.68 21.68 0 0 1-1.964-6.333c-1.976-13.35 6.989-24.735 15.21-27.554-4.435-3.874-15.548-3.611-23.819 2.474-5.956 4.382-9.82 11.049-11.1 19a32.945 32.945 0 0 0 2.34 18 35.3 35.3 0 0 0 30.089 21.443q1.489.114 2.984.113c26.462 0 37.942-20.087 35.467-42.444z" fill="url(#h)"/>
|
||||
<path d="M76.625 29.826C74.374 9.518 56.263.39 40.294.522c-6.155.05-13.183 1.519-18.04 4.336a19.7 19.7 0 0 0-3.56 2.7c.129-.107.514-.424 1.152-.862l.063-.043.056-.038a26.655 26.655 0 0 1 7.692-3.572A43.5 43.5 0 0 1 40.84 1.5a33.254 33.254 0 0 1 31.25 31.993C72.457 46.7 61.648 57.23 49.188 57.84c-9.062.444-17.6-3.941-21.77-12.713a21.68 21.68 0 0 1-1.964-6.333c-1.976-13.35 6.989-24.735 15.21-27.554-4.435-3.874-15.548-3.611-23.819 2.474-5.956 4.382-9.82 11.049-11.1 19a32.945 32.945 0 0 0 2.34 18 35.3 35.3 0 0 0 30.089 21.443q1.489.114 2.984.113c26.462 0 37.942-20.087 35.467-42.444z" style="mix-blend-mode:multiply" opacity=".53" fill="url(#i)"/>
|
||||
<path d="M76.625 29.826C74.374 9.518 56.263.39 40.294.522c-6.155.05-13.183 1.519-18.04 4.336a19.7 19.7 0 0 0-3.56 2.7c.129-.107.514-.424 1.152-.862l.063-.043.056-.038a26.655 26.655 0 0 1 7.692-3.572A43.5 43.5 0 0 1 40.84 1.5a33.254 33.254 0 0 1 31.25 31.993C72.457 46.7 61.648 57.23 49.188 57.84c-9.062.444-17.6-3.941-21.77-12.713a21.68 21.68 0 0 1-1.964-6.333c-1.976-13.35 6.989-24.735 15.21-27.554-4.435-3.874-15.548-3.611-23.819 2.474-5.956 4.382-9.82 11.049-11.1 19a32.945 32.945 0 0 0 2.34 18 35.3 35.3 0 0 0 30.089 21.443q1.489.114 2.984.113c26.462 0 37.942-20.087 35.467-42.444z" style="mix-blend-mode:multiply" opacity=".53" fill="url(#j)"/>
|
||||
<path d="M49.188 57.84c17.1-1.04 24.42-15.2 24.879-25.245C74.783 16.9 65.472-.02 40.84 1.5a43.5 43.5 0 0 0-13.183 1.546 28.855 28.855 0 0 0-7.692 3.572l-.056.038-.063.043q-.574.4-1.123.842A33.482 33.482 0 0 1 39.7 3.605c14.142 1.856 27.072 12.857 27.072 27.373 0 11.169-8.631 19.7-18.738 19.087-15.015-.9-18.8-16.3-10.989-22.954-2.106-.453-6.064.435-8.82 4.555-2.473 3.7-2.333 9.41-.807 13.461a22.118 22.118 0 0 0 21.77 12.713z" fill="url(#k)"/>
|
||||
<path d="M71.944 15.7a39.958 39.958 0 0 0-3.482-3.982 31.342 31.342 0 0 0-3.177-2.926 24.393 24.393 0 0 1 1.849 1.79 22.466 22.466 0 0 1 4.882 8.144c2.089 6.329 1.953 14.25-2.036 20.471a23.539 23.539 0 0 1-20.855 10.895c-.361 0-.725 0-1.091-.027-15.015-.9-18.8-16.3-10.988-22.954-2.107-.453-6.065.435-8.821 4.555-2.473 3.7-2.333 9.41-.807 13.461a21.679 21.679 0 0 1-1.963-6.333c-1.977-13.35 6.988-24.735 15.209-27.554-4.435-3.874-15.548-3.611-23.819 2.474a27.845 27.845 0 0 0-10.087 14.6 38.5 38.5 0 0 1 4.159-13.553c-2.769 1.433-6.295 5.965-8.035 10.163A41.355 41.355 0 0 0 .284 45.1c.06.518.114 1.035.182 1.549A40.062 40.062 0 1 0 71.944 15.7z" fill="url(#l)"/>
|
||||
<path d="M72.016 18.726a22.458 22.458 0 0 0-4.882-8.144 30.224 30.224 0 0 0-9.094-6.493A40.518 40.518 0 0 0 49.1.92a39.834 39.834 0 0 0-16.565-.1c-5.683 1.2-10.68 3.659-13.841 6.733a32.1 32.1 0 0 1 8.031-3.2 33.565 33.565 0 0 1 31.173 8.1 27.01 27.01 0 0 1 4.329 5.3c4.895 7.959 4.432 17.965.615 23.866-2.835 4.384-8.907 8.5-14.572 8.452A23.629 23.629 0 0 0 69.98 39.2c3.989-6.224 4.125-14.145 2.036-20.474z" fill="url(#m)"/>
|
||||
<path d="M72.016 18.726a22.458 22.458 0 0 0-4.882-8.144 30.224 30.224 0 0 0-9.094-6.493A40.518 40.518 0 0 0 49.1.92a39.834 39.834 0 0 0-16.565-.1c-5.683 1.2-10.68 3.659-13.841 6.733a32.1 32.1 0 0 1 8.031-3.2 33.565 33.565 0 0 1 31.173 8.1 27.01 27.01 0 0 1 4.329 5.3c4.895 7.959 4.432 17.965.615 23.866-2.835 4.384-8.907 8.5-14.572 8.452A23.629 23.629 0 0 0 69.98 39.2c3.989-6.224 4.125-14.145 2.036-20.474z" fill="url(#n)"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 68 B |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 578.55 185.54"><path d="M503.5 117.21c0 4.92 2.37 8.82 9 8.82 7.8 0 16.11-5.6 16.61-18.31a80.86 80.86 0 0 0-11-1c-7.83-.01-14.61 2.19-14.61 10.49z"/><path d="M0 0v185.54h578.55V0zm163.78 139.93h-32V96.87c0-13.22-4.41-18.31-13.05-18.31-10.51 0-14.75 7.46-14.75 18.14v26.64h10.12v16.61h-32V96.87c0-13.22-4.4-18.31-13.05-18.31-10.51 0-14.75 7.46-14.75 18.14v26.64h14.54v16.61H22.22v-16.61h10.17V80.09h-11V63.48h32.87V75c4.58-8.13 12.55-13.05 23.22-13.05 11 0 21.19 5.26 24.92 16.45 4.24-10.17 12.88-16.45 24.92-16.45 13.73 0 26.28 8.31 26.28 26.45v34.94h10.17zm48.65 1.69c-23.56 0-39.84-14.41-39.84-38.82 0-22.38 13.56-40.86 41-40.86s40.86 18.48 40.86 39.84c.02 24.42-17.61 39.85-42.02 39.85zm121.72-1.69h-66.8l-2.2-11.53 42-48.32h-23.9l-3.39 11.87-15.77-1.69 2.71-26.79H334L335.69 75l-42.4 48.34H318l3.56-11.87 17.29 1.69zm41.36 0h-22.89v-27.46h22.89zm0-49h-22.89V63.48h22.89zm12 49L420.6 23.34h21.53l-33.06 116.59zm44.42 0L465 23.34h21.53l-33.04 116.59zm113.92 1.69c-10.17 0-15.76-5.94-16.78-15.26-4.41 7.8-12.21 15.26-24.58 15.26-11 0-23.56-5.94-23.56-21.87 0-18.82 18.14-23.22 35.6-23.22a100.23 100.23 0 0 1 12.55.68v-2.54c0-7.8-.17-17.12-12.55-17.12-4.58 0-8.14.34-11.7 2.2L502 90.6l-17.46-1.87 3.39-19.83c13.39-5.43 20.17-7 32.72-7 16.45 0 30.35 8.48 30.35 25.94v33.23c0 4.41 1.69 5.94 5.26 5.94a11.5 11.5 0 0 0 3.22-.51l.17 11.53a29.57 29.57 0 0 1-13.77 3.6z"/><path d="M213.27 78.73c-11.19 0-18.14 8.3-18.14 22.72 0 13.22 6.1 23.39 18 23.39 11.36 0 18.82-9.15 18.82-23.73-.03-15.43-8.33-22.38-18.68-22.38z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 194 B |
@@ -4,31 +4,4 @@
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
<metadata>
|
||||
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
||||
</metadata>
|
||||
<g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M3279 6996 c-2 -2 -40 -6 -84 -10 -44 -3 -98 -8 -120 -11 -22 -3 -58
|
||||
-7 -80 -10 -22 -3 -51 -7 -65 -10 -14 -3 -52 -10 -85 -16 -274 -49 -603 -159
|
||||
-879 -294 -874 -428 -1546 -1218 -1816 -2135 -12 -41 -26 -86 -31 -100 -7 -21
|
||||
-17 -62 -34 -140 -16 -77 -45 -237 -50 -285 -4 -33 -9 -69 -11 -80 -10 -54
|
||||
-18 -205 -19 -340 0 -143 2 -153 27 -208 49 -104 122 -171 223 -206 59 -20 77
|
||||
-20 1464 -21 773 0 1407 -2 1409 -5 6 -6 9 -1803 3 -1829 -3 -14 -108 87 -445
|
||||
427 -243 245 -459 456 -482 470 -124 76 -296 68 -412 -19 -117 -89 -168 -229
|
||||
-136 -381 19 -93 54 -144 215 -308 81 -82 196 -200 256 -261 146 -151 936
|
||||
-954 1045 -1064 121 -121 210 -161 347 -156 62 2 85 8 126 31 28 15 61 34 75
|
||||
41 14 8 121 111 239 231 117 120 398 406 625 637 760 773 708 716 741 809 37
|
||||
102 30 199 -22 304 -109 220 -403 265 -584 89 -42 -41 -491 -501 -734 -752
|
||||
-63 -65 -115 -112 -116 -104 -4 64 0 1822 5 1827 3 3 628 6 1388 5 948 -1
|
||||
1400 2 1438 10 117 22 210 96 264 208 l31 65 -1 180 c0 155 -5 230 -29 412 -2
|
||||
17 -9 60 -16 95 -6 35 -13 76 -16 92 -2 16 -20 90 -38 165 -116 472 -343 932
|
||||
-654 1326 -30 39 -60 75 -66 82 -360 404 -677 654 -1112 874 -286 145 -636
|
||||
262 -943 315 -101 17 -103 18 -195 29 -33 3 -71 9 -85 12 -31 5 -555 14 -561
|
||||
9z m427 -760 c530 -39 1049 -239 1486 -573 123 -94 359 -324 459 -448 293
|
||||
-362 512 -854 574 -1287 l7 -48 -853 -1 c-470 0 -1700 -1 -2734 -1 l-1880 -1
|
||||
1 34 c0 30 7 76 18 134 14 72 62 240 95 336 203 595 612 1105 1163 1450 178
|
||||
112 434 227 638 288 58 17 119 36 135 41 25 7 104 24 214 45 13 2 49 7 80 11
|
||||
31 3 59 8 62 10 3 1 55 6 115 10 60 3 110 7 111 8 4 3 231 -2 309 -8z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 330 B |
|
Before Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 10 KiB |
@@ -1,6 +1,2 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<symbol id="logo">
|
||||
<path d="M84,48h5.83V35.87H103.3V30.45H89.83V23.51H103.3V18H84Zm23.57,0h5.79V25.81h-5.79Zm2.88-32.12a3.46,3.46,0,0,0-2.59,1,3.62,3.62,0,0,0-1,2.65,3.57,3.57,0,0,0,1,2.59,3.52,3.52,0,0,0,2.61,1,3.46,3.46,0,0,0,3.65-3.26c0-.12,0-.23,0-.35a3.71,3.71,0,0,0-1-2.65,3.5,3.5,0,0,0-2.67-1Zm19.14,9.53a7.22,7.22,0,0,0-3.72.93,5.82,5.82,0,0,0-2.4,2.89V25.81h-5.59V48h5.63V36.29a5.27,5.27,0,0,1,1.31-4,4.94,4.94,0,0,1,3.49-1.21,6.33,6.33,0,0,1,1.73.23,4,4,0,0,1,1.23.55l2-5.59a7.51,7.51,0,0,0-1.66-.61,8.11,8.11,0,0,0-2-.26Zm23.94,3.19a11.15,11.15,0,0,0-3.61-2.37,12.08,12.08,0,0,0-4.6-.86,11.62,11.62,0,0,0-8.3,3.37,11.17,11.17,0,0,0-2.44,3.67,11.59,11.59,0,0,0-.89,4.54,12.24,12.24,0,0,0,.83,4.52,10.52,10.52,0,0,0,2.36,3.66,10.93,10.93,0,0,0,3.71,2.44,12.75,12.75,0,0,0,4.85.88,12.15,12.15,0,0,0,6.12-1.39,13.25,13.25,0,0,0,4.11-3.74L151,40.6a6.23,6.23,0,0,1-2.18,2.15,6.36,6.36,0,0,1-3.33.8,6.7,6.7,0,0,1-4.13-1.25,6,6,0,0,1-2.23-3.43h17.62V36.74a11.71,11.71,0,0,0-.87-4.56,10.5,10.5,0,0,0-2.35-3.59Zm-14.21,5.85a6.38,6.38,0,0,1,2.26-3.12,6.11,6.11,0,0,1,3.74-1.15,6.26,6.26,0,0,1,3.73,1.08,5.56,5.56,0,0,1,2.1,3.19ZM167,16.08a6.05,6.05,0,0,0-2.91,1.54,6.15,6.15,0,0,0-1.56,2.89,18.1,18.1,0,0,0-.48,4.52v.78H158.4v5.1h3.65V48h5.63V30.91H173v-5.1h-5.3V24.75a13.34,13.34,0,0,1,.12-2,2,2,0,0,1,.6-1.19,2.45,2.45,0,0,1,1.33-.57,15.25,15.25,0,0,1,2.34-.15H173V15.63h-1.48A19.06,19.06,0,0,0,167,16.08Zm27.4,12.65a12,12,0,0,0-16.72,0,10.87,10.87,0,0,0-2.46,3.67,11.61,11.61,0,0,0-.89,4.5,11.46,11.46,0,0,0,7.07,10.64,11.73,11.73,0,0,0,4.64.9,12,12,0,0,0,4.66-.9,11.26,11.26,0,0,0,3.72-2.49,11.83,11.83,0,0,0,2.46-3.67,11.31,11.31,0,0,0,.9-4.48A11.43,11.43,0,0,0,194.4,28.73ZM191.7,39.3a5.88,5.88,0,0,1-1.29,2,6.53,6.53,0,0,1-1.93,1.31,6,6,0,0,1-4.76,0,6.34,6.34,0,0,1-1.93-1.31,6.06,6.06,0,0,1-1.3-2,6.48,6.48,0,0,1,0-4.86,5.76,5.76,0,0,1,1.3-2,6.08,6.08,0,0,1,1.93-1.32,6,6,0,0,1,4.76,0,6.37,6.37,0,0,1,1.93,1.32,5.73,5.73,0,0,1,1.29,2A6.39,6.39,0,0,1,191.7,39.3Zm29.47-13.49h-6.65l-4.68,6.57-4.64-6.57h-6.74l7.84,10.8L198,48h6.82l5-6.94L214.89,48h6.86l-8.46-11.34Zm34,7.46a12.88,12.88,0,0,0-3.37-1.44c-1.25-.34-2.46-.63-3.63-.88l-3.08-.7a10.64,10.64,0,0,1-2.51-.86A4.54,4.54,0,0,1,240.87,28a3.61,3.61,0,0,1-.62-2.19,4.8,4.8,0,0,1,1.58-3.7c1.06-1,2.73-1.44,5-1.44a9.84,9.84,0,0,1,5.07,1.17,10.47,10.47,0,0,1,3.39,3.23l2.79-2.18A15.22,15.22,0,0,0,253.45,19a13.8,13.8,0,0,0-6.59-1.44,12.13,12.13,0,0,0-4.14.66A10.33,10.33,0,0,0,239.53,20a7.53,7.53,0,0,0-2.05,2.63,7.41,7.41,0,0,0-.72,3.24,6.7,6.7,0,0,0,.84,3.53,7.06,7.06,0,0,0,2.2,2.22A11.11,11.11,0,0,0,242.86,33c1.13.32,2.29.6,3.47.84l3.26.74a12.63,12.63,0,0,1,2.8,1,5.86,5.86,0,0,1,2,1.56,3.88,3.88,0,0,1,.74,2.42,5.2,5.2,0,0,1-1.81,4.09A7.83,7.83,0,0,1,248,45.2a11,11,0,0,1-9.89-5.38l-3,2.34a15.86,15.86,0,0,0,5.23,4.54,16.06,16.06,0,0,0,7.7,1.7,12.58,12.58,0,0,0,4.38-.72,10.14,10.14,0,0,0,3.3-2,8.79,8.79,0,0,0,2.1-2.85,8.09,8.09,0,0,0,.74-3.39,6.94,6.94,0,0,0-1-3.8,7.71,7.71,0,0,0-2.42-2.37Zm27.51-4.72a10.53,10.53,0,0,0-3.58-2.34,11.89,11.89,0,0,0-4.49-.84,11.6,11.6,0,0,0-4.62.9,11.35,11.35,0,0,0-3.66,2.46A11.84,11.84,0,0,0,263,37a12.21,12.21,0,0,0,.82,4.51,10.53,10.53,0,0,0,2.36,3.64,11.24,11.24,0,0,0,3.7,2.42,12.41,12.41,0,0,0,4.82.88A11.68,11.68,0,0,0,280.82,47,12.84,12.84,0,0,0,285,42.82l-2.88-1.69a7.85,7.85,0,0,1-7.43,4.27,9,9,0,0,1-3.22-.53,8.21,8.21,0,0,1-2.55-1.5,8,8,0,0,1-1.78-2.28,7.79,7.79,0,0,1-.87-2.91h19.59V36.66a11.75,11.75,0,0,0-.86-4.54,10.92,10.92,0,0,0-2.35-3.57ZM266.4,35.22a8.88,8.88,0,0,1,1-2.73,8.55,8.55,0,0,1,1.79-2.18,8,8,0,0,1,2.44-1.43,8.31,8.31,0,0,1,3-.52,7.45,7.45,0,0,1,7.84,6.86ZM308.82,28a8.11,8.11,0,0,0-3-2,10.89,10.89,0,0,0-3.92-.67,9.06,9.06,0,0,0-4.58,1.14,8.76,8.76,0,0,0-3.14,3V25.82h-3.29V48h3.37V35.67a7.92,7.92,0,0,1,.53-2.93,7,7,0,0,1,1.48-2.3,6.46,6.46,0,0,1,2.22-1.5,7,7,0,0,1,2.75-.54,6.33,6.33,0,0,1,5,1.93A7.46,7.46,0,0,1,308,35.51V48h3.41V35.34a12.46,12.46,0,0,0-.66-4.19A8.68,8.68,0,0,0,308.82,28Zm27-12.42v14.1a8.14,8.14,0,0,0-1.58-1.83,10.08,10.08,0,0,0-2-1.36,10.39,10.39,0,0,0-2.3-.84,10.22,10.22,0,0,0-2.4-.28,11.63,11.63,0,0,0-4.4.84,11.09,11.09,0,0,0-3.59,2.38,11.3,11.3,0,0,0-2.42,3.65,12.81,12.81,0,0,0,0,9.32,11.56,11.56,0,0,0,2.4,3.66,10.58,10.58,0,0,0,3.59,2.38,11.77,11.77,0,0,0,4.42.84,9.69,9.69,0,0,0,2.4-.31,11,11,0,0,0,2.3-.86,9.72,9.72,0,0,0,2-1.37,8.75,8.75,0,0,0,1.58-1.85v4h3.33V15.59Zm-.37,24.58a8.3,8.3,0,0,1-10.85,4.47h0a7.68,7.68,0,0,1-2.6-1.76,7.88,7.88,0,0,1-1.73-2.67,8.93,8.93,0,0,1-.62-3.35,8.67,8.67,0,0,1,.62-3.3A8,8,0,0,1,322,30.89a8.17,8.17,0,0,1,2.6-1.79,8.27,8.27,0,0,1,6.51,0,8.64,8.64,0,0,1,2.63,1.81,7.85,7.85,0,0,1,1.72,2.67,8.67,8.67,0,0,1,.62,3.26,8.86,8.86,0,0,1-.65,3.33Z" fill="currentColor"/>
|
||||
</symbol>
|
||||
<use xlink:href="#logo"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 90 B |
@@ -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"
|
||||
|
||||
@@ -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>
|
||||
|
||||
69
package-lock.json
generated
@@ -5846,6 +5846,11 @@
|
||||
"randomfill": "^1.0.3"
|
||||
}
|
||||
},
|
||||
"crypto-random-string": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
|
||||
"integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA=="
|
||||
},
|
||||
"css-blank-pseudo": {
|
||||
"version": "0.1.4",
|
||||
"resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz",
|
||||
@@ -8987,6 +8992,45 @@
|
||||
"google-auth-library": "^6.0.0",
|
||||
"pumpify": "^2.0.0",
|
||||
"stream-events": "^1.0.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"configstore": {
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz",
|
||||
"integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==",
|
||||
"requires": {
|
||||
"dot-prop": "^5.2.0",
|
||||
"graceful-fs": "^4.1.2",
|
||||
"make-dir": "^3.0.0",
|
||||
"unique-string": "^2.0.0",
|
||||
"write-file-atomic": "^3.0.0",
|
||||
"xdg-basedir": "^4.0.0"
|
||||
}
|
||||
},
|
||||
"make-dir": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
|
||||
"integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
|
||||
"requires": {
|
||||
"semver": "^6.0.0"
|
||||
}
|
||||
},
|
||||
"semver": {
|
||||
"version": "6.3.0",
|
||||
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
||||
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
|
||||
},
|
||||
"write-file-atomic": {
|
||||
"version": "3.0.3",
|
||||
"resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
|
||||
"integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
|
||||
"requires": {
|
||||
"imurmurhash": "^0.1.4",
|
||||
"is-typedarray": "^1.0.0",
|
||||
"signal-exit": "^3.0.2",
|
||||
"typedarray-to-buffer": "^3.1.5"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"gensync": {
|
||||
@@ -9210,8 +9254,7 @@
|
||||
"graceful-fs": {
|
||||
"version": "4.2.4",
|
||||
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
|
||||
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
|
||||
"dev": true
|
||||
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="
|
||||
},
|
||||
"growl": {
|
||||
"version": "1.10.5",
|
||||
@@ -10066,8 +10109,7 @@
|
||||
"imurmurhash": {
|
||||
"version": "0.1.4",
|
||||
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
|
||||
"integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
|
||||
"dev": true
|
||||
"integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o="
|
||||
},
|
||||
"indent-string": {
|
||||
"version": "4.0.0",
|
||||
@@ -16232,8 +16274,7 @@
|
||||
"signal-exit": {
|
||||
"version": "3.0.3",
|
||||
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz",
|
||||
"integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==",
|
||||
"dev": true
|
||||
"integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA=="
|
||||
},
|
||||
"simple-swizzle": {
|
||||
"version": "0.2.2",
|
||||
@@ -17970,6 +18011,14 @@
|
||||
"resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
|
||||
"integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c="
|
||||
},
|
||||
"typedarray-to-buffer": {
|
||||
"version": "3.1.5",
|
||||
"resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
|
||||
"integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
|
||||
"requires": {
|
||||
"is-typedarray": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"ua-parser-js": {
|
||||
"version": "0.7.21",
|
||||
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.21.tgz",
|
||||
@@ -18110,6 +18159,14 @@
|
||||
"imurmurhash": "^0.1.4"
|
||||
}
|
||||
},
|
||||
"unique-string": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz",
|
||||
"integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==",
|
||||
"requires": {
|
||||
"crypto-random-string": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"unist-util-find-all-after": {
|
||||
"version": "1.0.5",
|
||||
"resolved": "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-1.0.5.tgz",
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/mstile-150x150.png"/>
|
||||
<TileColor>#da532c</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Se ye importando…
|
||||
encryptingFile = Se ye cifrando…
|
||||
decryptingFile = Se ye descifrando…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Desblocar
|
||||
downloadButtonLabel = Descargar
|
||||
downloadFinish = Descarga completa
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Preba Firefox Send
|
||||
sendYourFilesLink = Preba Send
|
||||
errorPageHeader = I ha habiu bell problema!
|
||||
fileTooBig = Ixe fichero ye masiau gran pa cargar-lo. Ha de tener menos de { $size }
|
||||
linkExpiredAlt = Lo vinclo ye caducau
|
||||
notSupportedHeader = Lo suyo navegador no ye compatible
|
||||
notSupportedLink = Per qué no ye compatible lo mío navegador?
|
||||
notSupportedOutdatedDetail = Esta versión de Firefox no admite la tecnolochía web con que funciona lo Firefox Send. Habrás d'esviellar lo navegador.
|
||||
notSupportedOutdatedDetail = Esta versión de Firefox no admite la tecnolochía web con que funciona lo Send. Habrás d'esviellar lo navegador.
|
||||
updateFirefox = Esviellar Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Borrar
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Aviso legal
|
||||
footerLinkPrivacy = Privacidat
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = La contrasenya ye incorrecta. Torne-lo a intentar.
|
||||
javascriptRequired = Firefox Send necesita JavaScript
|
||||
whyJavascript = Per qué Firefox Send necesita JavaScript?
|
||||
javascriptRequired = Send necesita JavaScript
|
||||
whyJavascript = Per qué Send necesita JavaScript?
|
||||
enableJavascript = Activa JavaScript y torna-lo a intentar.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } h { $minutes } min
|
||||
@@ -47,8 +47,8 @@ passwordSetError = No s'ha puesto definir la clau
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
# Send is a brand name and should not be localized.
|
||||
title = فَيَرفُكس سِنْد
|
||||
siteFeedback = الانطباعات
|
||||
importingFile = يستورد…
|
||||
@@ -56,8 +56,8 @@ passwordSetError = يجب ألا تُضبط كلمة السر هذه
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importando...
|
||||
encryptingFile = Cifrando...
|
||||
decryptingFile = Descifrando...
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquiar
|
||||
downloadButtonLabel = Baxar
|
||||
downloadFinish = Completóse la descarga
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Probar Firefox Send
|
||||
sendYourFilesLink = Probar Send
|
||||
errorPageHeader = ¡Asocedió daqué malo!
|
||||
fileTooBig = Esti ficheru ye mui grande como pa xubilu. Debería tener menos de { $size }.
|
||||
linkExpiredAlt = Caducó l'enllaz
|
||||
notSupportedHeader = El to restolador nun ta sofitáu.
|
||||
notSupportedLink = ¿Por qué'l mio restolador nun ta sofitáu?
|
||||
notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox nun sofita la teunoloxía web qu'usa Firefox Send. Vas precisar anovar el restolador.
|
||||
notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox nun sofita la teunoloxía web qu'usa Send. Vas precisar anovar el restolador.
|
||||
updateFirefox = Anovar Firefox
|
||||
deletePopupCancel = Encaboxar
|
||||
deleteButtonHover = Desaniciar
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Llegal
|
||||
footerLinkPrivacy = Privacidá
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = La contraseña ye incorreuta. Volvi tentalo.
|
||||
javascriptRequired = Firefox Send rique JavaScript
|
||||
whyJavascript = ¿Por qué Firefox Send rique JavaScript?
|
||||
javascriptRequired = Send rique JavaScript
|
||||
whyJavascript = ¿Por qué Send rique JavaScript?
|
||||
enableJavascript = Activa JavaScript y volvi tentalo, por favor.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Nun pudo afitase esta contraseña
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Geri dönüş
|
||||
importingFile = İdxal edilir…
|
||||
encryptingFile = Şifrələnir...
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = Aç
|
||||
downloadButtonLabel = Endir
|
||||
downloadFinish = Endirmə Tamamlandı
|
||||
fileSizeProgress = ({ $partialSize } / { $totalSize })
|
||||
sendYourFilesLink = Firefox Send Yoxla
|
||||
sendYourFilesLink = Send Yoxla
|
||||
errorPageHeader = Nəsə səhv getdi!
|
||||
fileTooBig = Fayl yükləmək üçün çox böyükdür. Fayl { $size }-dan az olmalıdır.
|
||||
linkExpiredAlt = Keçidin vaxtı çıxıb
|
||||
notSupportedHeader = Səyyahınız dəstəklənmir.
|
||||
notSupportedLink = Səyyahım niyə dəstəklənmir?
|
||||
notSupportedOutdatedDetail = Heyf ki, Firefox səyyahının bu versiyası Firefox Send-ə güc verən web texnologiyalarını dəstəkləmir. Səyyahınızı yeniləməlisiniz.
|
||||
notSupportedOutdatedDetail = Heyf ki, Firefox səyyahının bu versiyası Send-ə güc verən web texnologiyalarını dəstəkləmir. Səyyahınızı yeniləməlisiniz.
|
||||
updateFirefox = Firefox-u Yenilə
|
||||
deletePopupCancel = Ləğv et
|
||||
deleteButtonHover = Sil
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = Hüquqi
|
||||
footerLinkPrivacy = Məxfilik
|
||||
footerLinkCookies = Çərəzlər
|
||||
passwordTryAgain = Səhv parol. Təkrar yoxlayın.
|
||||
javascriptRequired = Firefox Send üçün JavaScript lazımdır
|
||||
whyJavascript = Firefox Send niyə JavaScript tələb edir?
|
||||
javascriptRequired = Send üçün JavaScript lazımdır
|
||||
whyJavascript = Send niyə JavaScript tələb edir?
|
||||
enableJavascript = Lütfən JavaScript-i aktiv edib təkrar yoxlayın.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } saat { $minutes } dəq
|
||||
@@ -48,8 +48,8 @@ passwordSetError = Parol qurula bilmədi
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Nikan uelis tikijkuilos tein tiknemilijtos
|
||||
importingFile = Mokalakijtok…
|
||||
encryptingFile = Motatijtok…
|
||||
@@ -18,13 +18,13 @@ unlockButtonLabel = Xikajchiua tein amo kikaua maj tekiti
|
||||
downloadButtonLabel = Xiktemoui
|
||||
downloadFinish = Nochi motemouij ya
|
||||
fileSizeProgress = ({ $partialSize } itech { $totalSize })
|
||||
sendYourFilesLink = Xikejeko Firefox Send
|
||||
sendYourFilesLink = Xikejeko Send
|
||||
errorPageHeader = ¡Tensa amo kuali kisak!
|
||||
fileTooBig = Nejin tajkuilol semi ueyi. Moneki amo panos { $size }
|
||||
linkExpiredAlt = Nejin tein tikpatskilij amo tekititok ya
|
||||
notSupportedHeader = Monavegador amo kualtia.
|
||||
notSupportedLink = ¿Keyej nonavegador amo kualtia?
|
||||
notSupportedOutdatedDetail = Tetayokoltij, Firefox tein tikuitok amo kiselia tepostekitilis tecnología web tein ika tekiti Firefox Send. Moneki tikyankuilis monavegador.
|
||||
notSupportedOutdatedDetail = Tetayokoltij, Firefox tein tikuitok amo kiselia tepostekitilis tecnología web tein ika tekiti Send. Moneki tikyankuilis monavegador.
|
||||
updateFirefox = Maj Firefox moyankuili
|
||||
deletePopupCancel = Maj motsakuili uan amo tami tein kichiujtok
|
||||
deleteButtonHover = Maj majchiua
|
||||
@@ -32,8 +32,8 @@ footerLinkLegal = Keniuj motekitiltis
|
||||
footerLinkPrivacy = Keniuj tikyekpiaj tein tikseliaj
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Amo yektik ichtakatajtol. Oksepa xikijkuilo.
|
||||
javascriptRequired = Firefox Send kineki maj moajsi JavaScript
|
||||
whyJavascript = ¿Keyej Firefox Send kineki maj moajsi JavaScript?
|
||||
javascriptRequired = Send kineki maj moajsi JavaScript
|
||||
whyJavascript = ¿Keyej Send kineki maj moajsi JavaScript?
|
||||
enableJavascript = Se kualtakayot, xikaua maj peua tekiti JavaScript uan oksepa xikejeko.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -46,8 +46,8 @@ passwordSetError = Nejin ichtakatajtol amo uel kiixtaliani
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Xiktitani
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Імпартаванне...
|
||||
encryptingFile = Зашыфроўка...
|
||||
decryptingFile = Расшыфроўка...
|
||||
@@ -21,13 +21,13 @@ unlockButtonLabel = Разблакаваць
|
||||
downloadButtonLabel = Сцягнуць
|
||||
downloadFinish = Сцягванне скончана
|
||||
fileSizeProgress = ({ $partialSize } з { $totalSize })
|
||||
sendYourFilesLink = Паспрабуйце Firefox Send
|
||||
sendYourFilesLink = Паспрабуйце Send
|
||||
errorPageHeader = Нешта пайшло не так!
|
||||
fileTooBig = Гэты файл надта вялікі. Ён мусіць быць меншым за { $size }
|
||||
linkExpiredAlt = Тэрмін дзеяння спасылкі сышоў
|
||||
notSupportedHeader = Ваш браўзер не падтрымліваецца.
|
||||
notSupportedLink = Чаму мой браўзер не падтрымліваецца?
|
||||
notSupportedOutdatedDetail = На жаль, гэтая версія Firefox не падтрымлівае вэб-тэхналогію, што забяспечвае працу Firefox Send. Вам трэба абнавіць свой браўзер.
|
||||
notSupportedOutdatedDetail = На жаль, гэтая версія Firefox не падтрымлівае вэб-тэхналогію, што забяспечвае працу Send. Вам трэба абнавіць свой браўзер.
|
||||
updateFirefox = Абнавіць Firefox
|
||||
deletePopupCancel = Скасаваць
|
||||
deleteButtonHover = Выдаліць
|
||||
@@ -35,8 +35,8 @@ footerLinkLegal = Прававыя звесткі
|
||||
footerLinkPrivacy = Прыватнасць
|
||||
footerLinkCookies = Кукі
|
||||
passwordTryAgain = Некарэктны пароль. Паспрабуйце зноў.
|
||||
javascriptRequired = Для Firefox Send неабходны JavaScript
|
||||
whyJavascript = Чаму для Firefox Send неабходны JavaScript?
|
||||
javascriptRequired = Для Send неабходны JavaScript
|
||||
whyJavascript = Чаму для Send неабходны JavaScript?
|
||||
enableJavascript = Калі ласка, уключыце JavaScript і паспрабуйце зноў.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } г. { $minutes } хв.
|
||||
@@ -49,8 +49,8 @@ passwordSetError = Гэты пароль немагчыма паставіць
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = প্রতিক্রিয়া
|
||||
importingFile = ইম্পোর্ট হচ্ছে...
|
||||
encryptingFile = ইনক্রিপট হচ্ছে...
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = আনলক করুন
|
||||
downloadButtonLabel = ডাউনলোড
|
||||
downloadFinish = ডাউনলোড সম্পন্ন
|
||||
fileSizeProgress = ({ $totalSize } এর { $partialSize })
|
||||
sendYourFilesLink = Firefox Send পরখ করে দেখুন
|
||||
sendYourFilesLink = Send পরখ করে দেখুন
|
||||
errorPageHeader = কোন সমস্যা হয়েছে!
|
||||
fileTooBig = ফাইলটি আপলোড করার জন্যে খুব বড়। এটি { $size } এর চেয়ে কম হওয়া উচিত।
|
||||
linkExpiredAlt = লিঙ্ক মেয়াদউত্তীর্ণ হয়েছে
|
||||
notSupportedHeader = আপনার ব্রাউজার সমর্থিত নয়।
|
||||
notSupportedLink = আমার ব্রাউজার কেন সমর্থিত নয়?
|
||||
notSupportedOutdatedDetail = দুর্ভাগ্যবশত Firefox এই সংস্করণটি ওয়েব প্রযুক্তিকে সমর্থন করে না যা Firefox Send কে সমর্থন করে। আপনাকে আপনার ব্রাউজারটি আপডেট করতে হবে।
|
||||
notSupportedOutdatedDetail = দুর্ভাগ্যবশত Firefox এই সংস্করণটি ওয়েব প্রযুক্তিকে সমর্থন করে না যা Send কে সমর্থন করে। আপনাকে আপনার ব্রাউজারটি আপডেট করতে হবে।
|
||||
updateFirefox = Firefox হালনাগাদ করুন
|
||||
deletePopupCancel = বাতিল
|
||||
deleteButtonHover = মুছে ফেলুন
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = আইনগত
|
||||
footerLinkPrivacy = গোপনীয়তা
|
||||
footerLinkCookies = কুকি
|
||||
passwordTryAgain = ভুল পাসওয়ার্ড। আবার চেষ্টা করুন।
|
||||
javascriptRequired = Firefox Send এর জাভাস্ক্রিপ্ট প্রয়োজন।
|
||||
whyJavascript = কেন Firefox Send এর জাভাস্ক্রিপ্ট প্রয়োজন?
|
||||
javascriptRequired = Send এর জাভাস্ক্রিপ্ট প্রয়োজন।
|
||||
whyJavascript = কেন Send এর জাভাস্ক্রিপ্ট প্রয়োজন?
|
||||
enableJavascript = জাভাস্ক্রিপ্ট সক্রিয় করুন এবং আবার চেষ্টা করুন।
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }ঘ { $minutes }মি
|
||||
@@ -48,8 +48,8 @@ passwordSetError = এই পাসওয়ার্ড সেট করা য
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = প্রেরণ
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Oc'h enporzhiañ …
|
||||
encryptingFile = Oc'h enrinegañ..
|
||||
decryptingFile = Oc'h ezrinegañ...
|
||||
@@ -25,13 +25,13 @@ unlockButtonLabel = Dibrennañ
|
||||
downloadButtonLabel = Pellgargañ
|
||||
downloadFinish = Pellgargadur echu
|
||||
fileSizeProgress = ({ $partialSize } war { $totalSize })
|
||||
sendYourFilesLink = Esaeit Firefox Send
|
||||
sendYourFilesLink = Esaeit Send
|
||||
errorPageHeader = Degouezhet ez eus bet ur fazi!
|
||||
fileTooBig = Re vras eo ar restr-mañ evit e pellgas. Rankout a ra bezañ nebeutoc'h eget { $size }
|
||||
linkExpiredAlt = Ere diamzeret
|
||||
notSupportedHeader = N'eo ket skoret ho merdeer.
|
||||
notSupportedLink = Perak n'eo ket skoret ma merdeer?
|
||||
notSupportedOutdatedDetail = Siwazh n'eo ket skoret ar c'halvezerezhioù implijet evit Firefox Send gant an handelv-mañ eus Firefox. Ret e vo deoc'h hizivaat ho merdeer.
|
||||
notSupportedOutdatedDetail = Siwazh n'eo ket skoret ar c'halvezerezhioù implijet evit Send gant an handelv-mañ eus Firefox. Ret e vo deoc'h hizivaat ho merdeer.
|
||||
updateFirefox = Hizivaat Firefox
|
||||
deletePopupCancel = Nullañ
|
||||
deleteButtonHover = Dilemel
|
||||
@@ -39,8 +39,8 @@ footerLinkLegal = Lezennel
|
||||
footerLinkPrivacy = Buhez prevez
|
||||
footerLinkCookies = Toupinoù
|
||||
passwordTryAgain = Ger-tremen direizh. Klaskit en-dro.
|
||||
javascriptRequired = Firefox Send a azgoulenn Javascript
|
||||
whyJavascript = Perak e azgoulenn Firefox Send Javascript?
|
||||
javascriptRequired = Send a azgoulenn Javascript
|
||||
whyJavascript = Perak e azgoulenn Send Javascript?
|
||||
enableJavascript = Gweredekait Javascript ha klaskit en-dro.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }e { $minutes }m
|
||||
@@ -53,8 +53,8 @@ passwordSetError = N'haller ket despizañ ar ger-tremen
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteSubtitle = web eksperiment
|
||||
siteFeedback = Povratne informacije
|
||||
uploadPageHeader = Privatno, šifrovano dijeljenje datoteka
|
||||
@@ -57,16 +57,16 @@ unlockInputLabel = Unesite lozinku
|
||||
unlockInputPlaceholder = Lozinka
|
||||
unlockButtonLabel = Otključaj
|
||||
downloadFileTitle = Preuzmi šifrovanu datoteku
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
downloadMessage = Vaš prijatelj vam je poslao datoteku preko usluge Firefox Send koja vam omogućava da dijelite datoteke preko sigurne, privatne i šifrovane veze koja samostalno ističe da vaše stvari ne ostanu zauvijek na internetu.
|
||||
# Send is a brand name and should not be localized.
|
||||
downloadMessage = Vaš prijatelj vam je poslao datoteku preko usluge Send koja vam omogućava da dijelite datoteke preko sigurne, privatne i šifrovane veze koja samostalno ističe da vaše stvari ne ostanu zauvijek na internetu.
|
||||
# Text and title used on the download link/button (indicates an action).
|
||||
downloadButtonLabel = Preuzmi
|
||||
downloadNotification = Vaše preuzimanje je završeno.
|
||||
downloadFinish = Preuzimanje završeno
|
||||
# This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)".
|
||||
fileSizeProgress = ({ $partialSize } od { $totalSize })
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
sendYourFilesLink = Probajte Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
sendYourFilesLink = Probajte Send
|
||||
downloadingPageProgress = Preuzimanje { $filename } ({ $size })
|
||||
downloadingPageMessage = Ostavite ovaj tab otvorenim dok ne dobavimo vašu datoteku i dok je ne dešifrujemo.
|
||||
errorAltText = Greška pri otpremanju
|
||||
@@ -77,10 +77,10 @@ fileTooBig = Ta datoteka je prevelika za otpremanje. Treba biti manja od { $size
|
||||
linkExpiredAlt = Veza istekla
|
||||
expiredPageHeader = Veza je istekla ili nikad nije postojala!
|
||||
notSupportedHeader = Vaš pretraživač nije podržan.
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
notSupportedDetail = Ovaj pretraživač nažalost ne podržava web tehnologiju koja omogućava Firefox Send. Trebate probati drugi pretraživač. Preporučujemo Firefox!
|
||||
# Send is a brand name and should not be localized.
|
||||
notSupportedDetail = Ovaj pretraživač nažalost ne podržava web tehnologiju koja omogućava Send. Trebate probati drugi pretraživač. Preporučujemo Firefox!
|
||||
notSupportedLink = Zašto moj pretraživač nije podržan?
|
||||
notSupportedOutdatedDetail = Nažalost ova verzija Firefoxa ne podržava web tehnologiju koja omogućava Firefox Send. Morate ažurirati vaš pretraživač.
|
||||
notSupportedOutdatedDetail = Nažalost ova verzija Firefoxa ne podržava web tehnologiju koja omogućava Send. Morate ažurirati vaš pretraživač.
|
||||
updateFirefox = Ažuriraj Firefox
|
||||
downloadFirefoxButtonSub = Besplatno preuzimanje
|
||||
uploadedFile = Datoteka
|
||||
@@ -90,8 +90,8 @@ expiryFileList = Ističe za
|
||||
deleteFileList = Izbriši
|
||||
nevermindButton = Zanemari
|
||||
legalHeader = Uslovi i privatnost
|
||||
legalNoticeTestPilot = Firefox Send je trenutno Test Pilot eksperiment i podržan je <a>uslovima korištenja</a> i <a>obavještenjem o privatnosti</a>. Možete saznati više o ovom eksperimentu i o njegovom sakupljanju podataka <a>ovdje</a>.
|
||||
legalNoticeMozilla = Korištenje Firefox Send web stranice podlaže Mozillinom <a>obavještenju o privatnosti na web stranicama</a> i <a>uslovima korištenja web stranica</a>.
|
||||
legalNoticeTestPilot = Send je trenutno Test Pilot eksperiment i podržan je <a>uslovima korištenja</a> i <a>obavještenjem o privatnosti</a>. Možete saznati više o ovom eksperimentu i o njegovom sakupljanju podataka <a>ovdje</a>.
|
||||
legalNoticeMozilla = Korištenje Send web stranice podlaže Mozillinom <a>obavještenju o privatnosti na web stranicama</a> i <a>uslovima korištenja web stranica</a>.
|
||||
deletePopupText = Izbrisati ovu datoteku?
|
||||
deletePopupYes = Da
|
||||
deletePopupCancel = Otkaži
|
||||
@@ -108,8 +108,8 @@ addPasswordButton = Dodaj lozinku
|
||||
changePasswordButton = Promijeni
|
||||
passwordTryAgain = Netačna lozinka. Pokušajte ponovo.
|
||||
reportIPInfringement = Prijavite IP prekršaj
|
||||
javascriptRequired = Firefox Send zahtjeva JavaScript
|
||||
whyJavascript = Zašto Firefox Send zahtjeva JavaScript?
|
||||
javascriptRequired = Send zahtjeva JavaScript
|
||||
whyJavascript = Zašto Send zahtjeva JavaScript?
|
||||
enableJavascript = Molimo omogućite JavaScript i pokušajte ponovo.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = S'està important…
|
||||
encryptingFile = S'està xifrant…
|
||||
decryptingFile = S'està desxifrant…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloca
|
||||
downloadButtonLabel = Baixa
|
||||
downloadFinish = Ha acabat la baixada
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Proveu el Firefox Send
|
||||
sendYourFilesLink = Proveu el Send
|
||||
errorPageHeader = Hi ha hagut un problema
|
||||
fileTooBig = Aquest fitxer és massa gros per pujar-lo. Ha de tenir menys de { $size }.
|
||||
linkExpiredAlt = L'enllaç ha caducat
|
||||
notSupportedHeader = El vostre navegador no és compatible.
|
||||
notSupportedLink = Per què el meu navegador no és compatible?
|
||||
notSupportedOutdatedDetail = Aquesta versió del Firefox no admet la tecnologia web amb què funciona el Firefox Send. Haureu d'actualitzar el navegador.
|
||||
notSupportedOutdatedDetail = Aquesta versió del Firefox no admet la tecnologia web amb què funciona el Send. Haureu d'actualitzar el navegador.
|
||||
updateFirefox = Actualitza el Firefox
|
||||
deletePopupCancel = Cancel·la
|
||||
deleteButtonHover = Suprimeix
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Avís legal
|
||||
footerLinkPrivacy = Privadesa
|
||||
footerLinkCookies = Galetes
|
||||
passwordTryAgain = La contrasenya és incorrecta. Torneu-ho a provar.
|
||||
javascriptRequired = El Firefox Send necessita JavaScript
|
||||
whyJavascript = Per què el Firefox Send necessita JavaScript?
|
||||
javascriptRequired = El Send necessita JavaScript
|
||||
whyJavascript = Per què el Send necessita JavaScript?
|
||||
enableJavascript = Activeu el JavaScript i torneu-ho a provar.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } h { $minutes } min
|
||||
@@ -47,9 +47,9 @@ passwordSetError = No s'ha pogut definir la contrasenya
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
-send-short-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
introTitle = Compartició de fitxers senzilla i privada
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Rutzijol
|
||||
importingFile = Tajin nijik…
|
||||
encryptingFile = Tajin newäx rusik'ixik…
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = Titzij chik
|
||||
downloadButtonLabel = Tiqasäx
|
||||
downloadFinish = Xtz'aqät qasanïk
|
||||
fileSizeProgress = ({ $partialSize } richin { $totalSize })
|
||||
sendYourFilesLink = Titojtob'ëx Firefox Send
|
||||
sendYourFilesLink = Titojtob'ëx Send
|
||||
errorPageHeader = ¡K'o ri man ütz ta xub'än!
|
||||
fileTooBig = Yalan nïm re yakb'äl re' richin nijotob'äx. K'o ta chi man nik'o ta chi re ri { $size }.
|
||||
linkExpiredAlt = Xk'is ruq'ijul ri ximonel
|
||||
notSupportedHeader = Man koch'el ta ri awokik'amaya'l.
|
||||
notSupportedLink = ¿Achike ruma man nikoch' taq ri wokik'amaya'l?
|
||||
notSupportedOutdatedDetail = K'ayew ruma re ruwäch Firefox re' man nuköch' ta ri ajk'amaya'l na'ob'äl nrajo' ri Firefox Send. Rajowaxik nak'ëx ri awokik'amaya'l.
|
||||
notSupportedOutdatedDetail = K'ayew ruma re ruwäch Firefox re' man nuköch' ta ri ajk'amaya'l na'ob'äl nrajo' ri Send. Rajowaxik nak'ëx ri awokik'amaya'l.
|
||||
updateFirefox = Tik'ex ri Firefox
|
||||
deletePopupCancel = Tiq'at
|
||||
deleteButtonHover = Tiyuj
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = Taqanel tzijol
|
||||
footerLinkPrivacy = Ichinanem
|
||||
footerLinkCookies = Taq kaxlanwey
|
||||
passwordTryAgain = Itzel ri ewan tzij. Tatojtob'ej chik.
|
||||
javascriptRequired = K'atzinel JavaScript chi re ri Firefox Send
|
||||
whyJavascript = ¿Achike ruma toq ri Firefox Send nrajo' JavaScript?
|
||||
javascriptRequired = K'atzinel JavaScript chi re ri Send
|
||||
whyJavascript = ¿Achike ruma toq ri Send nrajo' JavaScript?
|
||||
enableJavascript = Titz'ij JavaScript richin nitojtob'ëx chik.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }r { $minutes }ch
|
||||
@@ -48,8 +48,8 @@ passwordSetError = Man tikirel ta ninuk' re ewan tzij re'
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Titaq
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = ڕەخنەوپێشنیار
|
||||
importingFile = هاوردەکردن...
|
||||
encryptingFile = بەهێماکردن...
|
||||
@@ -26,7 +26,7 @@ fileTooBig = ئەم پەڕگەیە زۆر گەورەیە بۆ بارکردن. پ
|
||||
linkExpiredAlt = بەستەر بەسەرچووە
|
||||
notSupportedHeader = وێبگەڕەکەت پشتگیری ناکرێت
|
||||
notSupportedLink = بۆ وێبگەڕەکەم پشتگیری ناکرێت؟
|
||||
notSupportedOutdatedDetail = بەداخەوە ئەم وەشانەی Firefox پشتگیری ئەو جۆرە تەکنەلۆژییە ناکات کە پێویستە بۆ Firefox Send. پێویستە وێبگەڕەکەت نوێبکەیتەوە.
|
||||
notSupportedOutdatedDetail = بەداخەوە ئەم وەشانەی Firefox پشتگیری ئەو جۆرە تەکنەلۆژییە ناکات کە پێویستە بۆ Send. پێویستە وێبگەڕەکەت نوێبکەیتەوە.
|
||||
updateFirefox = فاەرفۆکس نوێبکەرەوە
|
||||
deletePopupCancel = پاشگەزبوونەوە
|
||||
deleteButtonHover = سڕینەوە
|
||||
@@ -48,8 +48,8 @@ passwordSetError = ناتوانرێت وشەی تێپەڕ دابنرێت
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Probíhá import…
|
||||
encryptingFile = Probíhá šifrování…
|
||||
decryptingFile = Probíhá dešifrování…
|
||||
@@ -21,13 +21,13 @@ unlockButtonLabel = Odemknout
|
||||
downloadButtonLabel = Stáhnout
|
||||
downloadFinish = Stahování dokončeno
|
||||
fileSizeProgress = ({ $partialSize } z { $totalSize })
|
||||
sendYourFilesLink = Vyzkoušet Firefox Send
|
||||
sendYourFilesLink = Vyzkoušet Send
|
||||
errorPageHeader = Nastala chyba!
|
||||
fileTooBig = Tento soubor je příliš veliký. Velikost nahrávaných souborů by neměla překročit { $size }.
|
||||
linkExpiredAlt = Platnost odkazu vypršela
|
||||
notSupportedHeader = Váš prohlížeč není podporován.
|
||||
notSupportedLink = Proč není můj prohlížeč podporovaný?
|
||||
notSupportedOutdatedDetail = Tato verze Firefoxu bohužel nepodporuje webovou technologii, která pohání Firefox Send. Musíte aktualizovat svůj prohlížeč.
|
||||
notSupportedOutdatedDetail = Tato verze Firefoxu bohužel nepodporuje webovou technologii, která pohání Send. Musíte aktualizovat svůj prohlížeč.
|
||||
updateFirefox = Aktualizovat Firefox
|
||||
deletePopupCancel = Zrušit
|
||||
deleteButtonHover = Smazat
|
||||
@@ -35,8 +35,8 @@ footerLinkLegal = Právní informace
|
||||
footerLinkPrivacy = Soukromí
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Špatné heslo. Zkuste to znovu.
|
||||
javascriptRequired = Firefox Send vyžaduje povolený JavaScript
|
||||
whyJavascript = Proč Firefox Send vyžaduje povolený JavaScript?
|
||||
javascriptRequired = Send vyžaduje povolený JavaScript
|
||||
whyJavascript = Proč Send vyžaduje povolený JavaScript?
|
||||
enableJavascript = Povolte JavaScript a zkuste to znovu.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } h { $minutes } m
|
||||
@@ -49,13 +49,13 @@ passwordSetError = Toto heslo nemohlo být nastaveno
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand =
|
||||
{ $case ->
|
||||
*[nom] Firefox Send
|
||||
*[nom] Send
|
||||
[gen] Firefoxu Send
|
||||
[dat] Firefoxu Send
|
||||
[acc] Firefox Send
|
||||
[acc] Send
|
||||
[voc] Firefoxe Send
|
||||
[loc] Firefoxu Send
|
||||
[ins] Firefoxem Send
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Mewnforio…
|
||||
encryptingFile = Wrthi'n amgryptio…
|
||||
decryptingFile = Wrthi'n dadgryptio…
|
||||
@@ -27,13 +27,13 @@ unlockButtonLabel = Datgloi
|
||||
downloadButtonLabel = Llwytho i Lawr
|
||||
downloadFinish = Llwytho wedi Gorffen
|
||||
fileSizeProgress = ({ $partialSize } o { $totalSize })
|
||||
sendYourFilesLink = Rhowch gynnig ar Firefox Send
|
||||
sendYourFilesLink = Rhowch gynnig ar Send
|
||||
errorPageHeader = Aeth rhywbeth o'i le!
|
||||
fileTooBig = Mae'r ffeil yn rhy fawr i'w llwytho. Dylai fod yn llai na { $size }.
|
||||
linkExpiredAlt = Mae'r ddolen wedi dod i ben
|
||||
notSupportedHeader = Nid yw eich porwr yn cael ei gynnal.
|
||||
notSupportedLink = Pam nad yw fy mhorwr yn cael ei gynnal?
|
||||
notSupportedOutdatedDetail = Yn anffodus, nid yw'r fersiwn yma o Firefox yn cynnal y technoleg gwe sy'n gyrru Firefox Send. Bydd angen i chi ddiweddaru eich porwr.
|
||||
notSupportedOutdatedDetail = Yn anffodus, nid yw'r fersiwn yma o Firefox yn cynnal y technoleg gwe sy'n gyrru Send. Bydd angen i chi ddiweddaru eich porwr.
|
||||
updateFirefox = Diweddaru Firefox
|
||||
deletePopupCancel = Diddymu
|
||||
deleteButtonHover = Dileu
|
||||
@@ -41,8 +41,8 @@ footerLinkLegal = Cyfreithiol
|
||||
footerLinkPrivacy = Preifatrwydd
|
||||
footerLinkCookies = Cwcis
|
||||
passwordTryAgain = Cyfrinair anghywir. Ceisiwch eto.
|
||||
javascriptRequired = Mae Firefox Send angen JavaScript
|
||||
whyJavascript = Pam fod Firefox Send angen JavaScript?
|
||||
javascriptRequired = Mae Send angen JavaScript
|
||||
whyJavascript = Pam fod Send angen JavaScript?
|
||||
enableJavascript = Galluogwch JavaScript a cheisio eto.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }a { $minutes }m
|
||||
@@ -55,8 +55,8 @@ passwordSetError = Nid oedd modd gosod y cyfrinair hwn
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Anfon
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importerer…
|
||||
encryptingFile = Krypterer…
|
||||
decryptingFile = Dekrypterer…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Lås op
|
||||
downloadButtonLabel = Hent
|
||||
downloadFinish = Hentning fuldført
|
||||
fileSizeProgress = ({ $partialSize } af { $totalSize })
|
||||
sendYourFilesLink = Prøv Firefox Send
|
||||
sendYourFilesLink = Prøv Send
|
||||
errorPageHeader = Der gik noget galt!
|
||||
fileTooBig = Den fil er for stor at uploade. Den skal være mindre end { $size }.
|
||||
linkExpiredAlt = Link er udløbet
|
||||
notSupportedHeader = Din browser understøttes ikke.
|
||||
notSupportedLink = Hvorfor understøttes min browser ikke?
|
||||
notSupportedOutdatedDetail = Desværre understøtter denne version af Firefox ikke den webteknologi, som driver Firefox Send. Du skal opdatere din browser.
|
||||
notSupportedOutdatedDetail = Desværre understøtter denne version af Firefox ikke den webteknologi, som driver Send. Du skal opdatere din browser.
|
||||
updateFirefox = Opdater Firefox
|
||||
deletePopupCancel = Annuller
|
||||
deleteButtonHover = Slet
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Juridisk
|
||||
footerLinkPrivacy = Privatliv
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Forkert adgangskode. Prøv igen.
|
||||
javascriptRequired = Firefox Send kræver JavaScript
|
||||
whyJavascript = Hvorfor kræver Firefox Send JavaScript?
|
||||
javascriptRequired = Send kræver JavaScript
|
||||
whyJavascript = Hvorfor kræver Send JavaScript?
|
||||
enableJavascript = Aktiver JavaScript og prøv igen.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } t { $minutes } m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Adgangskoden kunne ikke sættes
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Wird importiert…
|
||||
encryptingFile = Wird verschlüsselt…
|
||||
decryptingFile = Wird entschlüsselt…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Entsperren
|
||||
downloadButtonLabel = Herunterladen
|
||||
downloadFinish = Download abgeschlossen
|
||||
fileSizeProgress = ({ $partialSize } von { $totalSize })
|
||||
sendYourFilesLink = Firefox Send ausprobieren
|
||||
sendYourFilesLink = Send ausprobieren
|
||||
errorPageHeader = Ein Fehler ist aufgetreten!
|
||||
fileTooBig = Die Datei ist zu groß zum Hochladen. Sie sollte maximal { $size } groß sein.
|
||||
linkExpiredAlt = Link abgelaufen
|
||||
notSupportedHeader = Dein Browser wird nicht unterstützt.
|
||||
notSupportedLink = Warum wird mein Browser nicht unterstützt?
|
||||
notSupportedOutdatedDetail = Leider unterstützt diese Firefox-Version die Web-Technologie nicht, auf der Firefox Send basiert. Du musst deinen Browser aktualisieren.
|
||||
notSupportedOutdatedDetail = Leider unterstützt diese Firefox-Version die Web-Technologie nicht, auf der Send basiert. Du musst deinen Browser aktualisieren.
|
||||
updateFirefox = Firefox aktualisieren
|
||||
deletePopupCancel = Abbrechen
|
||||
deleteButtonHover = Löschen
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Rechtliches
|
||||
footerLinkPrivacy = Datenschutz
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Falsches Passwort. Versuche es nochmal.
|
||||
javascriptRequired = Firefox Send benötigt JavaScript
|
||||
whyJavascript = Warum benötigt Firefox Send JavaScript?
|
||||
javascriptRequired = Send benötigt JavaScript
|
||||
whyJavascript = Warum benötigt Send JavaScript?
|
||||
enableJavascript = Bitte aktiviere JavaScript und versuche es erneut.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Dieses Passwort konnte nicht eingerichtet werden
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importěrujo se...
|
||||
encryptingFile = Koděrujo se...
|
||||
decryptingFile = Dešifrěrujo se...
|
||||
@@ -23,13 +23,13 @@ unlockButtonLabel = Wótwóriś
|
||||
downloadButtonLabel = Ześěgnuś
|
||||
downloadFinish = Ześěgnjenje dokóńcone
|
||||
fileSizeProgress = ({ $partialSize } z { $totalSize })
|
||||
sendYourFilesLink = Firefox Send wopytaś
|
||||
sendYourFilesLink = Send wopytaś
|
||||
errorPageHeader = Něco njejo se raźiło!
|
||||
fileTooBig = Toś ta dataja jo pśewjelika za nagraśe. Měła mjeńša ako { $size } byś.
|
||||
linkExpiredAlt = Wótkaz spadnjony
|
||||
notSupportedHeader = Waš wobglědowak se njepódpěra.
|
||||
notSupportedLink = Cogodla se mój wobglědowak njepódpěra?
|
||||
notSupportedOutdatedDetail = Bóžko toś ta wersija Firefox webtechnologiju njepódpěra, na kótarejž Firefox Send bazěrujo. Musyśo swój wobglědowak aktualizěrowaś.
|
||||
notSupportedOutdatedDetail = Bóžko toś ta wersija Firefox webtechnologiju njepódpěra, na kótarejž Send bazěrujo. Musyśo swój wobglědowak aktualizěrowaś.
|
||||
updateFirefox = Firefox aktualizěrowaś
|
||||
deletePopupCancel = Pśetergnuś
|
||||
deleteButtonHover = Wulašowaś
|
||||
@@ -37,8 +37,8 @@ footerLinkLegal = Pšawniske
|
||||
footerLinkPrivacy = Priwatnosć
|
||||
footerLinkCookies = Cookieje
|
||||
passwordTryAgain = Wopacne gronidło. Wopytajśo hyšći raz.
|
||||
javascriptRequired = Firefox Send JavaScript trjeba
|
||||
whyJavascript = Cogodla Firefox Send JavaScript trjeba?
|
||||
javascriptRequired = Send JavaScript trjeba
|
||||
whyJavascript = Cogodla Send JavaScript trjeba?
|
||||
enableJavascript = Pšosym zmóžniśo JavaScript a wopytajśo hyšći raz.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } góź. { $minutes } min.
|
||||
@@ -51,8 +51,8 @@ passwordSetError = Toś to gronidło njedajo se nastajiś
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Εισαγωγή…
|
||||
encryptingFile = Κρυπτογράφηση…
|
||||
decryptingFile = Αποκρυπτογράφηση…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Ξεκλείδωμα
|
||||
downloadButtonLabel = Λήψη
|
||||
downloadFinish = Η λήψη ολοκληρώθηκε
|
||||
fileSizeProgress = ({ $partialSize } από { $totalSize })
|
||||
sendYourFilesLink = Δοκιμάστε το Firefox Send
|
||||
sendYourFilesLink = Δοκιμάστε το Send
|
||||
errorPageHeader = Κάτι πήγε στραβά!
|
||||
fileTooBig = Αυτό το αρχείο είναι πολύ μεγάλο για μεταφόρτωση. Πρέπει να είναι μικρότερο από { $size }.
|
||||
linkExpiredAlt = Ο σύνδεσμος έληξε
|
||||
notSupportedHeader = Το πρόγραμμα περιήγησής σας δεν υποστηρίζεται.
|
||||
notSupportedLink = Γιατί δεν υποστηρίζεται το πρόγραμμα περιήγησής μου;
|
||||
notSupportedOutdatedDetail = Δυστυχώς, αυτή η έκδοση του Firefox δεν υποστηρίζει την τεχνολογία ιστού στην οποία βασίζεται το Firefox Send. Πρέπει να ενημερώσετε το πρόγραμμα περιήγησής σας.
|
||||
notSupportedOutdatedDetail = Δυστυχώς, αυτή η έκδοση του Firefox δεν υποστηρίζει την τεχνολογία ιστού στην οποία βασίζεται το Send. Πρέπει να ενημερώσετε το πρόγραμμα περιήγησής σας.
|
||||
updateFirefox = Ενημέρωση Firefox
|
||||
deletePopupCancel = Ακύρωση
|
||||
deleteButtonHover = Διαγραφή
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Νομικά
|
||||
footerLinkPrivacy = Απόρρητο
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Λάθος κωδικός πρόσβασης. Δοκιμάστε ξανά.
|
||||
javascriptRequired = Το Firefox Send απαιτεί JavaScript
|
||||
whyJavascript = Γιατί το Firefox Send απαιτεί JavaScript;
|
||||
javascriptRequired = Το Send απαιτεί JavaScript
|
||||
whyJavascript = Γιατί το Send απαιτεί JavaScript;
|
||||
enableJavascript = Παρακαλώ ενεργοποιήστε το JavaScript και δοκιμάστε ξανά.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }ώ { $minutes }λ
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Δεν ήταν δυνατός ο ορισμός αυτού
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importing…
|
||||
encryptingFile = Encrypting…
|
||||
decryptingFile = Decrypting…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Unlock
|
||||
downloadButtonLabel = Download
|
||||
downloadFinish = Download Complete
|
||||
fileSizeProgress = ({ $partialSize } of { $totalSize })
|
||||
sendYourFilesLink = Try Firefox Send
|
||||
sendYourFilesLink = Try Send
|
||||
errorPageHeader = Something went wrong!
|
||||
fileTooBig = That file is too big to upload. It should be less than { $size }.
|
||||
linkExpiredAlt = Link expired
|
||||
notSupportedHeader = Your browser is not supported.
|
||||
notSupportedLink = Why is my browser not supported?
|
||||
notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Firefox Send. You’ll need to update your browser.
|
||||
notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. You’ll need to update your browser.
|
||||
updateFirefox = Update Firefox
|
||||
deletePopupCancel = Cancel
|
||||
deleteButtonHover = Delete
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Incorrect password. Try again.
|
||||
javascriptRequired = Firefox Send requires JavaScript
|
||||
whyJavascript = Why does Firefox Send require JavaScript?
|
||||
javascriptRequired = Send requires JavaScript
|
||||
whyJavascript = Why does Send require JavaScript?
|
||||
enableJavascript = Please enable JavaScript and try again.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = This password could not be set
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importing…
|
||||
encryptingFile = Encrypting…
|
||||
decryptingFile = Decrypting…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Unlock
|
||||
downloadButtonLabel = Download
|
||||
downloadFinish = Download Complete
|
||||
fileSizeProgress = ({ $partialSize } of { $totalSize })
|
||||
sendYourFilesLink = Try Firefox Send
|
||||
sendYourFilesLink = Try Send
|
||||
errorPageHeader = Something went wrong!
|
||||
fileTooBig = That file is too big to upload. It should be less than { $size }.
|
||||
linkExpiredAlt = Link expired
|
||||
notSupportedHeader = Your browser is not supported.
|
||||
notSupportedLink = Why is my browser not supported?
|
||||
notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Firefox Send. You’ll need to update your browser.
|
||||
notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. You’ll need to update your browser.
|
||||
updateFirefox = Update Firefox
|
||||
deletePopupCancel = Cancel
|
||||
deleteButtonHover = Delete
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Incorrect password. Try again.
|
||||
javascriptRequired = Firefox Send requires JavaScript
|
||||
whyJavascript = Why does Firefox Send require JavaScript?
|
||||
javascriptRequired = Send requires JavaScript
|
||||
whyJavascript = Why does Send require JavaScript?
|
||||
enableJavascript = Please enable JavaScript and try again.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = This password could not be set
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importing…
|
||||
encryptingFile = Encrypting…
|
||||
decryptingFile = Decrypting…
|
||||
@@ -17,13 +17,13 @@ unlockButtonLabel = Unlock
|
||||
downloadButtonLabel = Download
|
||||
downloadFinish = Download complete
|
||||
fileSizeProgress = ({ $partialSize } of { $totalSize })
|
||||
sendYourFilesLink = Try Firefox Send
|
||||
sendYourFilesLink = Try Send
|
||||
errorPageHeader = Something went wrong!
|
||||
fileTooBig = That file is too big to upload. It should be less than { $size }
|
||||
linkExpiredAlt = Link expired
|
||||
notSupportedHeader = Your browser is not supported.
|
||||
notSupportedLink = Why is my browser not supported?
|
||||
notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Firefox Send. You’ll need to update your browser.
|
||||
notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. You’ll need to update your browser.
|
||||
updateFirefox = Update Firefox
|
||||
deletePopupCancel = Cancel
|
||||
deleteButtonHover = Delete
|
||||
@@ -31,8 +31,8 @@ footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Incorrect password. Try again.
|
||||
javascriptRequired = Firefox Send requires JavaScript
|
||||
whyJavascript = Why does Firefox Send require JavaScript?
|
||||
javascriptRequired = Send requires JavaScript
|
||||
whyJavascript = Why does Send require JavaScript?
|
||||
enableJavascript = Please enable JavaScript and try again.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -45,8 +45,8 @@ passwordSetError = This password could not be set
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importando…
|
||||
encryptingFile = Cifrando…
|
||||
decryptingFile = Descifrando…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear
|
||||
downloadButtonLabel = Descargar
|
||||
downloadFinish = Descarga completa
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Probá Firefox Send
|
||||
sendYourFilesLink = Probá Send
|
||||
errorPageHeader = ¡Algo falló!
|
||||
fileTooBig = El archivo es demasiado grande para subir. Debería tener menos de { $size }.
|
||||
linkExpiredAlt = Enlace explirado
|
||||
notSupportedHeader = El navegador no está soportado.
|
||||
notSupportedLink = ¿Por qué mi navegador no está soportado?
|
||||
notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox no soporta la tecnología web que necesita Firefox Send. Necesitás actualizar el navegador.
|
||||
notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox no soporta la tecnología web que necesita Send. Necesitás actualizar el navegador.
|
||||
updateFirefox = Actualizar Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Borrar
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Legales
|
||||
footerLinkPrivacy = Privacidad
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contraseña incorrecta. Intentá nuevamente.
|
||||
javascriptRequired = Firefox Send requiere JavaScript
|
||||
whyJavascript = ¿Por qué Firefox Send requiere Java Script?
|
||||
javascriptRequired = Send requiere JavaScript
|
||||
whyJavascript = ¿Por qué Send requiere Java Script?
|
||||
enableJavascript = Por favor habilite JavaScript y pruebe de nuevo.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = h { $hours } m { $minutes }
|
||||
@@ -47,8 +47,8 @@ passwordSetError = No se pudo establecer la contraseña
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importando…
|
||||
encryptingFile = Cifrando…
|
||||
decryptingFile = Descifrando…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear
|
||||
downloadButtonLabel = Descargar
|
||||
downloadFinish = Descarga completa
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Probar Firefox Send
|
||||
sendYourFilesLink = Probar Send
|
||||
errorPageHeader = ¡Algo se fue a las pailas!
|
||||
fileTooBig = Ese archivo es muy grande para ser subido. Debiera tener un tamaño menor a { $size }.
|
||||
linkExpiredAlt = Enlace expirado
|
||||
notSupportedHeader = Tu navegador no está soportado.
|
||||
notSupportedLink = ¿Por qué mi navegador no es soportado?
|
||||
notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta la tecnología web que potencia a Firefox Send. Deberás actualizar tu navegador.
|
||||
notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta la tecnología web que potencia a Send. Deberás actualizar tu navegador.
|
||||
updateFirefox = Actualizar Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Eliminar
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacidad
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contraseña incorrecta. Vuelve a intentarlo.
|
||||
javascriptRequired = Firefox Send requiere JavaScript.
|
||||
whyJavascript = ¿Por qué Firefox Send requiere JavaScript?
|
||||
javascriptRequired = Send requiere JavaScript.
|
||||
whyJavascript = ¿Por qué Send requiere JavaScript?
|
||||
enableJavascript = Por favor, activa JavaScript y vuelve a intentarlo.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Esta contraseña no pudo ser establecida
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importando...
|
||||
encryptingFile = Cifrando...
|
||||
decryptingFile = Descifrando...
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear
|
||||
downloadButtonLabel = Descargar
|
||||
downloadFinish = Descarga completa
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Prueba Firefox Send
|
||||
sendYourFilesLink = Prueba Send
|
||||
errorPageHeader = ¡Se ha producido un error!
|
||||
fileTooBig = Ese archivo es muy grande. Debería ocupar menos de { $size }.
|
||||
linkExpiredAlt = Enlace caducado
|
||||
notSupportedHeader = Tu navegador no es compatible.
|
||||
notSupportedLink = ¿Por qué mi navegador no es compatible?
|
||||
notSupportedOutdatedDetail = Lamentablemente, esta versión de Firefox no admite la tecnología web que impulsa Firefox Send. Tendrás que actualizar tu navegador.
|
||||
notSupportedOutdatedDetail = Lamentablemente, esta versión de Firefox no admite la tecnología web que impulsa Send. Tendrás que actualizar tu navegador.
|
||||
updateFirefox = Actualizar Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Eliminar
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacidad
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contraseña incorrecta. Inténtalo de nuevo.
|
||||
javascriptRequired = Firefox Send requiere JavaScript
|
||||
whyJavascript = ¿Por qué Firefox Send requiere JavaScript?
|
||||
javascriptRequired = Send requiere JavaScript
|
||||
whyJavascript = ¿Por qué Send requiere JavaScript?
|
||||
enableJavascript = Por favor, activa JavaScript y vuelve a intentarlo.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = No se ha podido establecer la contraseña
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Enviar
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Comentario
|
||||
importingFile = Importando...
|
||||
encryptingFile = Encriptando…
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = Desbloquear
|
||||
downloadButtonLabel = Descargar
|
||||
downloadFinish = Descarga completa
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Prueba Firefox Send
|
||||
sendYourFilesLink = Prueba Send
|
||||
errorPageHeader = ¡Algo salió mal!
|
||||
fileTooBig = Ese archivo es muy grande. Debería ocupar menos de { $size }.
|
||||
linkExpiredAlt = Enlace caducado
|
||||
notSupportedHeader = Tu navegador no está soportado.
|
||||
notSupportedLink = ¿Por qué mi navegador no tiene soporte?
|
||||
notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta la tecnología web que potencia a Firefox Send. Deberás actualizar tu navegador.
|
||||
notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta la tecnología web que potencia a Send. Deberás actualizar tu navegador.
|
||||
updateFirefox = Actualizar Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Eliminar
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacidad
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contraseña incorrecta. Intenta de nuevo.
|
||||
javascriptRequired = Firefox Send requiere JavaScript
|
||||
whyJavascript = ¿Por qué Firefox Send requiere JavaScript?
|
||||
javascriptRequired = Send requiere JavaScript
|
||||
whyJavascript = ¿Por qué Send requiere JavaScript?
|
||||
enableJavascript = Por favor, habilita JavaScript e intenta de nuevo.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -48,8 +48,8 @@ passwordSetError = No se ha podido establecer la contraseña
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Enviar
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Tagasiside
|
||||
importingFile = Importimine...
|
||||
encryptingFile = Krüptimine…
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = Ava
|
||||
downloadButtonLabel = Laadi alla
|
||||
downloadFinish = Allalaadimine lõpetati
|
||||
fileSizeProgress = ({ $partialSize }/{ $totalSize })
|
||||
sendYourFilesLink = Proovi Firefox Send'i
|
||||
sendYourFilesLink = Proovi Send'i
|
||||
errorPageHeader = Midagi läks valesti!
|
||||
fileTooBig = Fail on üleslaadimiseks liiga suur. See peaks olema väiksem kui { $size }.
|
||||
linkExpiredAlt = Link on aegunud
|
||||
notSupportedHeader = Sinu brauser pole toetatud.
|
||||
notSupportedLink = Miks mu brauser toetatud pole?
|
||||
notSupportedOutdatedDetail = Kahjuks ei toeta see Firefoxi versioon veebitehnoloogiaid, mis teevad Firefox Sendi toimimise võimalikuks. Sa pead oma brauserit uuendama.
|
||||
notSupportedOutdatedDetail = Kahjuks ei toeta see Firefoxi versioon veebitehnoloogiaid, mis teevad Sendi toimimise võimalikuks. Sa pead oma brauserit uuendama.
|
||||
updateFirefox = Uuenda Firefox
|
||||
deletePopupCancel = Loobu
|
||||
deleteButtonHover = Kustuta
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = Õiguslik teave
|
||||
footerLinkPrivacy = Privaatsusest
|
||||
footerLinkCookies = Küpsistest
|
||||
passwordTryAgain = Vale parool. Palun proovi uuesti.
|
||||
javascriptRequired = Firefox Send'i kasutamiseks tuleb JavaScript lubada
|
||||
whyJavascript = Miks Firefox Send JavaScripti vajab?
|
||||
javascriptRequired = Send'i kasutamiseks tuleb JavaScript lubada
|
||||
whyJavascript = Miks Send JavaScripti vajab?
|
||||
enableJavascript = Palun luba JavaScript ja proovi uuesti.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }t { $minutes }m
|
||||
@@ -48,8 +48,8 @@ passwordSetError = Parooli muutmine ebaõnnestus
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Iritzia
|
||||
importingFile = Inportatzen…
|
||||
encryptingFile = Zifratzen...
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = Desblokeatu
|
||||
downloadButtonLabel = Deskargatu
|
||||
downloadFinish = Deskarga burututa
|
||||
fileSizeProgress = ({ $totalSize } / { $partialSize })
|
||||
sendYourFilesLink = Probatu Firefox Send
|
||||
sendYourFilesLink = Probatu Send
|
||||
errorPageHeader = Zerbait gaizki joan da!
|
||||
fileTooBig = Fitxategia handiegia da kargatzeko. { $size } baino txikiagoa izan behar du.
|
||||
linkExpiredAlt = Lotura iraungi da
|
||||
notSupportedHeader = Zure nabigatzailea ez da onartzen.
|
||||
notSupportedLink = Zergatik ez da nire nabigatzailea onartzen?
|
||||
notSupportedOutdatedDetail = Zoritxarrez Firefox bertsio honek ez du Firefox Send-ek behar duen web teknologia onartzen. Zure nabigatzailea eguneratu behar duzu.
|
||||
notSupportedOutdatedDetail = Zoritxarrez Firefox bertsio honek ez du Send-ek behar duen web teknologia onartzen. Zure nabigatzailea eguneratu behar duzu.
|
||||
updateFirefox = Eguneratu Firefox
|
||||
deletePopupCancel = Utzi
|
||||
deleteButtonHover = Ezabatu
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = Lege-oharra
|
||||
footerLinkPrivacy = Pribatutasuna
|
||||
footerLinkCookies = Cookieak
|
||||
passwordTryAgain = Pasahitz okerra. Saiatu berriro.
|
||||
javascriptRequired = JavaScript beharrezkoa da Firefox Send erabiltzeko.
|
||||
whyJavascript = Zergatik behar du Firefox Send-ek JavasScript?
|
||||
javascriptRequired = JavaScript beharrezkoa da Send erabiltzeko.
|
||||
whyJavascript = Zergatik behar du Send-ek JavasScript?
|
||||
enableJavascript = Gaitu JavaScript eta saiatu berriro.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -48,8 +48,8 @@ passwordSetError = Pasahitz hau ezin da ezarri
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = بازخورد
|
||||
importingFile = در حال وارد کردن…
|
||||
encryptingFile = در حال رمزنگاری…
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = باز کردن
|
||||
downloadButtonLabel = بارگیری
|
||||
downloadFinish = بارگیری کامل شد
|
||||
fileSizeProgress = ({ $partialSize } از { $totalSize })
|
||||
sendYourFilesLink = Firefox Send را امتحان کنید
|
||||
sendYourFilesLink = Send را امتحان کنید
|
||||
errorPageHeader = خطایی رخ داد!
|
||||
fileTooBig = این پرونده بسیار حجیم است. حجم آن میبایستی کم تر { $size } باشد.
|
||||
linkExpiredAlt = پیوند منقضی شده است
|
||||
notSupportedHeader = مرورگر شما پشتیبانی نمیشود.
|
||||
notSupportedLink = چرا از مرورگر من پشتیبانی نمیشود؟
|
||||
notSupportedOutdatedDetail = متاسفانه این نسخه از فایرفاکس این تکنولوژی وب که به Firefox Send قدرت میبخشد را پشتیبانی نمیکند. شما نیاز دارید تا مرورگر خود را بروز کنید.
|
||||
notSupportedOutdatedDetail = متاسفانه این نسخه از فایرفاکس این تکنولوژی وب که به Send قدرت میبخشد را پشتیبانی نمیکند. شما نیاز دارید تا مرورگر خود را بروز کنید.
|
||||
updateFirefox = بروزرسانی فایرفاکس
|
||||
deletePopupCancel = انصراف
|
||||
deleteButtonHover = حذف
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = ملاحظات حقوقی
|
||||
footerLinkPrivacy = حریمخصوصی
|
||||
footerLinkCookies = کوکیها
|
||||
passwordTryAgain = کلمه عبور اشتباه است. مجدد تلاش کنید.
|
||||
javascriptRequired = Firefox Send نیازمند جاوااسکریپت است
|
||||
whyJavascript = چرا Firefox Send جاوااسکریپت لازم داد؟
|
||||
javascriptRequired = Send نیازمند جاوااسکریپت است
|
||||
whyJavascript = چرا Send جاوااسکریپت لازم داد؟
|
||||
enableJavascript = لطفا جاوااسکریپت را فعال کنید و مجددا تلاش کنید.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }ساعت { $minutes }دقیقه
|
||||
@@ -48,8 +48,8 @@ passwordSetError = امکان ثبت این گذواژه نیست
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = ارسال
|
||||
-firefox = فایرفاکس
|
||||
-mozilla = موزیلا
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Tuodaan…
|
||||
encryptingFile = Salataan...
|
||||
decryptingFile = Puretaan salausta...
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Avaa
|
||||
downloadButtonLabel = Lataa
|
||||
downloadFinish = Lataus valmis
|
||||
fileSizeProgress = { $partialSize } / { $totalSize }
|
||||
sendYourFilesLink = Kokeile Firefox Send -palvelua
|
||||
sendYourFilesLink = Kokeile Send -palvelua
|
||||
errorPageHeader = Jokin meni pieleen!
|
||||
fileTooBig = Tämä tiedosto on liian suuri ladattavaksi. Sen pitäisi olla pienempi kuin { $size }.
|
||||
linkExpiredAlt = Linkki on vanhentunut
|
||||
notSupportedHeader = Selaintasi ei tueta.
|
||||
notSupportedLink = Miksi selaintani ei tueta?
|
||||
notSupportedOutdatedDetail = Valitettavasti tämä Firefoxin versio ei tue Firefox Sendiä käyttävää web-tekniikkaa. Sinun on päivitettävä selaimesi.
|
||||
notSupportedOutdatedDetail = Valitettavasti tämä Firefoxin versio ei tue Sendiä käyttävää web-tekniikkaa. Sinun on päivitettävä selaimesi.
|
||||
updateFirefox = Päivitä Firefox
|
||||
deletePopupCancel = Peruuta
|
||||
deleteButtonHover = Poista
|
||||
@@ -34,7 +34,7 @@ footerLinkPrivacy = Tietosuoja
|
||||
footerLinkCookies = Evästeet
|
||||
passwordTryAgain = Väärä salasana. Yritä uudelleen.
|
||||
javascriptRequired = Firefox-Send vaatii JavaScriptin
|
||||
whyJavascript = Miksi Firefox Send vaatii JavaScriptin?
|
||||
whyJavascript = Miksi Send vaatii JavaScriptin?
|
||||
enableJavascript = Ota JavaScript käyttöön ja yritä uudelleen.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } t { $minutes } min
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Tätä salasanaa ei voitu asettaa
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importation…
|
||||
encryptingFile = Chiffrement…
|
||||
decryptingFile = Déchiffrement…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Déverrouiller
|
||||
downloadButtonLabel = Télécharger
|
||||
downloadFinish = Téléchargement terminé
|
||||
fileSizeProgress = ({ $partialSize } sur { $totalSize })
|
||||
sendYourFilesLink = Essayer Firefox Send
|
||||
sendYourFilesLink = Essayer Send
|
||||
errorPageHeader = Une erreur s’est produite.
|
||||
fileTooBig = Ce fichier est trop volumineux pour être envoyé. Sa taille doit être inférieure à { $size }.
|
||||
linkExpiredAlt = Le lien a expiré
|
||||
notSupportedHeader = Votre navigateur n’est pas pris en charge.
|
||||
notSupportedLink = Pourquoi mon navigateur n’est-il pas pris en charge ?
|
||||
notSupportedOutdatedDetail = Malheureusement, cette version de Firefox ne prend pas en charge les technologies web utilisées par Firefox Send. Vous devez mettre à jour votre navigateur.
|
||||
notSupportedOutdatedDetail = Malheureusement, cette version de Firefox ne prend pas en charge les technologies web utilisées par Send. Vous devez mettre à jour votre navigateur.
|
||||
updateFirefox = Mettre à jour Firefox
|
||||
deletePopupCancel = Annuler
|
||||
deleteButtonHover = Supprimer
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Mentions légales
|
||||
footerLinkPrivacy = Confidentialité
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Mot de passe incorrect. Veuillez réessayer.
|
||||
javascriptRequired = Firefox Send nécessite JavaScript
|
||||
whyJavascript = Pourquoi Firefox Send nécessite-t-il JavaScript ?
|
||||
javascriptRequired = Send nécessite JavaScript
|
||||
whyJavascript = Pourquoi Send nécessite-t-il JavaScript ?
|
||||
enableJavascript = Veuillez activer JavaScript puis réessayer.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } h { $minutes } min
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Ce mot de passe n’a pas pu être défini
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Ymportearje…
|
||||
encryptingFile = Fersiferje…
|
||||
decryptingFile = Untsiferje…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Deblokkearje
|
||||
downloadButtonLabel = Downloade
|
||||
downloadFinish = Download foltôge
|
||||
fileSizeProgress = ({ $partialSize } fan { $totalSize })
|
||||
sendYourFilesLink = Firefox Send probearje
|
||||
sendYourFilesLink = Send probearje
|
||||
errorPageHeader = Der is wat misgien!
|
||||
fileTooBig = It bestân is te grut om op te laden. It moat lytser wêze as { $size }.
|
||||
linkExpiredAlt = Keppeling ferrûn
|
||||
notSupportedHeader = Jo browser wurdt net stipe.
|
||||
notSupportedLink = Wêrom wurdt myn browser net stipe?
|
||||
notSupportedOutdatedDetail = Spitigernôch stipet dizze ferzje fan Firefox de webtechnology dy't Firefox Send mooflik makket net. Jo moatte jo browser fernije.
|
||||
notSupportedOutdatedDetail = Spitigernôch stipet dizze ferzje fan Firefox de webtechnology dy't Send mooflik makket net. Jo moatte jo browser fernije.
|
||||
updateFirefox = Firefox fernije
|
||||
deletePopupCancel = Annulearje
|
||||
deleteButtonHover = Fuortsmite
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Juridysk
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Net krekt wachtwurd. Probearje it opnij.
|
||||
javascriptRequired = Firefox Send fereasket JavaScript.
|
||||
whyJavascript = Werom hat Firefox Send JavaScript nedich?
|
||||
javascriptRequired = Send fereasket JavaScript.
|
||||
whyJavascript = Werom hat Send JavaScript nedich?
|
||||
enableJavascript = Skeakelje JavaScript yn en probearje nochris.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }o { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Dit wachtwurd koe net ynsteld wurde
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Ojegueruhína…
|
||||
encryptingFile = Mo’ãmby…
|
||||
decryptingFile = Ñemo’ã’o…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Mbojera
|
||||
downloadButtonLabel = Mboguejy
|
||||
downloadFinish = Oguejypáma
|
||||
fileSizeProgress = ({ $partialSize } rehe { $totalSize })
|
||||
sendYourFilesLink = Eipuru Firefox Send
|
||||
sendYourFilesLink = Eipuru Send
|
||||
errorPageHeader = ¡Oiko jejavy!
|
||||
fileTooBig = Marandurenda tuichaiterei ehupi hag̃ua. Michĩveva’erã { $size } gui.
|
||||
linkExpiredAlt = Juajuha ndoikóiva
|
||||
notSupportedHeader = Ne kundaha ndorekói pytyvõ.
|
||||
notSupportedLink = ¿Mba’ére che kundahára ndorekói ñepytyvõ?
|
||||
notSupportedOutdatedDetail = Ko Firefox rembiapo ndaipu’akái ñanduti rembipurupyahu oikotevẽva Firefox Send. Embohekopyahúke ne kundahára.
|
||||
notSupportedOutdatedDetail = Ko Firefox rembiapo ndaipu’akái ñanduti rembipurupyahu oikotevẽva Send. Embohekopyahúke ne kundahára.
|
||||
updateFirefox = Firefox mbohekopyahu
|
||||
deletePopupCancel = Heja
|
||||
deleteButtonHover = Mboguete
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Añetegua
|
||||
footerLinkPrivacy = Ñemigua
|
||||
footerLinkCookies = Kookie
|
||||
passwordTryAgain = Ñe’ẽñemi ndoikóiva. Eha’ãjey.
|
||||
javascriptRequired = Firefox Send oikotevẽ JavaScript
|
||||
whyJavascript = ¿Mba’ére Firefox Send oikotevẽ JavaScript?
|
||||
javascriptRequired = Send oikotevẽ JavaScript
|
||||
whyJavascript = ¿Mba’ére Send oikotevẽ JavaScript?
|
||||
enableJavascript = Ikatúpa embojuruja JavaScript ha eha’ãjey uperire.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } h { $minutes } m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Ndaikatúi oikóvo ko ñe’ẽñemi
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Firefox Molawo
|
||||
siteSubtitle = web yimontalo
|
||||
siteFeedback = Potunu
|
||||
@@ -42,7 +42,7 @@ downloadNotification = U pilopohulimu ma yilapato.
|
||||
downloadFinish = Mopohuli Yilapato
|
||||
# This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)".
|
||||
fileSizeProgress = ({ $partialSize } meyalo { $totalSize })
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
# Send is a brand name and should not be localized.
|
||||
sendYourFilesLink = Yimontali Firefox Molawo
|
||||
downloadingPageProgress = Modetohu { $filename } ({ $size })
|
||||
downloadFirefoxButtonSub = Pereyi Mopohuli
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = מתבצע ייבוא…
|
||||
encryptingFile = מתבצעת הצפנה...
|
||||
decryptingFile = מתבצע פענוח...
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = שחרור נעילה
|
||||
downloadButtonLabel = הורדה
|
||||
downloadFinish = ההורדה הושלמה
|
||||
fileSizeProgress = ({ $partialSize } מתוך { $totalSize })
|
||||
sendYourFilesLink = נסו את Firefox Send
|
||||
sendYourFilesLink = נסו את Send
|
||||
errorPageHeader = משהו השתבש!
|
||||
fileTooBig = הקובץ הזה גדול מידי להעלאה. עליו להיות קטן מ־{ $size }.
|
||||
linkExpiredAlt = הקישור פג
|
||||
notSupportedHeader = הדפדפן שלך לא נתמך.
|
||||
notSupportedLink = למה אין תמיכה בדפדפן שלי?
|
||||
notSupportedOutdatedDetail = לצערנו גרסת Firefox זו לא תומכת בטכנולוגית הרשת שמפעילה את Firefox Send. יש לעדכן את הגרסה של הדפדפן שלך.
|
||||
notSupportedOutdatedDetail = לצערנו גרסת Firefox זו לא תומכת בטכנולוגית הרשת שמפעילה את Send. יש לעדכן את הגרסה של הדפדפן שלך.
|
||||
updateFirefox = עדכון Firefox
|
||||
deletePopupCancel = ביטול
|
||||
deleteButtonHover = מחיקה
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = מידע משפטי
|
||||
footerLinkPrivacy = פרטיות
|
||||
footerLinkCookies = קובצי עוגיות
|
||||
passwordTryAgain = סיסמה שגויה. נא לנסות שוב.
|
||||
javascriptRequired = ל־Firefox Send דרוש JavaScript
|
||||
whyJavascript = למה ל־Firefox Send דרוש JavaScript?
|
||||
javascriptRequired = ל־Send דרוש JavaScript
|
||||
whyJavascript = למה ל־Send דרוש JavaScript?
|
||||
enableJavascript = נא להפעיל JavaScript ולנסות שוב.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } שע׳ { $minutes } דק׳
|
||||
@@ -48,8 +48,8 @@ passwordSetError = לא ניתן להגדיר את הססמה הזאת
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Uvoz…
|
||||
encryptingFile = Šifriranje …
|
||||
decryptingFile = Dešifriranje …
|
||||
@@ -21,13 +21,13 @@ unlockButtonLabel = Otključaj
|
||||
downloadButtonLabel = Preuzmi
|
||||
downloadFinish = Preuzimanje je završeno.
|
||||
fileSizeProgress = ({ $partialSize } od { $totalSize })
|
||||
sendYourFilesLink = Isprobaj Firefox Send
|
||||
sendYourFilesLink = Isprobaj Send
|
||||
errorPageHeader = Dogodila se neka greška!
|
||||
fileTooBig = Datoteka je prevelika za prijenos. Mora biti manja od { $size }.
|
||||
linkExpiredAlt = Poveznica je istekla
|
||||
notSupportedHeader = Tvoj preglednik nije podržan.
|
||||
notSupportedLink = Zašto moj preglednik nije podržan?
|
||||
notSupportedOutdatedDetail = Nažalost, ovo izdanje Firefoxa ne podržava web tehnologiju koja omogućava Firefox Send. Morat ćeš ažurirati preglednik.
|
||||
notSupportedOutdatedDetail = Nažalost, ovo izdanje Firefoxa ne podržava web tehnologiju koja omogućava Send. Morat ćeš ažurirati preglednik.
|
||||
updateFirefox = Ažuriraj Firefox
|
||||
deletePopupCancel = Odustani
|
||||
deleteButtonHover = Obriši
|
||||
@@ -35,8 +35,8 @@ footerLinkLegal = Pravni podaci
|
||||
footerLinkPrivacy = Privatnost
|
||||
footerLinkCookies = Kolačići
|
||||
passwordTryAgain = Netočna lozinka. Pokušaj ponovo.
|
||||
javascriptRequired = Za Firefox Send potreban je JavaScript
|
||||
whyJavascript = Zašto je za Firefox Send potreban JavaScript?
|
||||
javascriptRequired = Za Send potreban je JavaScript
|
||||
whyJavascript = Zašto je za Send potreban JavaScript?
|
||||
enableJavascript = Aktiviraj JavaScript i pokušaj ponovo.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }s { $minutes }m
|
||||
@@ -49,8 +49,8 @@ passwordSetError = Lozinku nije moguće postaviti
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importuje so...
|
||||
encryptingFile = Zaklučuje so...
|
||||
decryptingFile = Dešifruje so...
|
||||
@@ -23,13 +23,13 @@ unlockButtonLabel = Wotewrěć
|
||||
downloadButtonLabel = Sćahnyć
|
||||
downloadFinish = Sćehnjenje dokónčene
|
||||
fileSizeProgress = ({ $partialSize } z { $totalSize })
|
||||
sendYourFilesLink = Firefox Send wupruwować
|
||||
sendYourFilesLink = Send wupruwować
|
||||
errorPageHeader = Něšto je so nimokuliło!
|
||||
fileTooBig = Tuta dataja je přewulka za nahraće. Měła mjeńša hač { $size } być.
|
||||
linkExpiredAlt = Wotkaz je spadnjeny
|
||||
notSupportedHeader = Waš wobhladowak so njepodpěruje.
|
||||
notSupportedLink = Čehodla so mój wobhladowak njepodpěruje?
|
||||
notSupportedOutdatedDetail = Bohužel tuta wersija Firefox webtechnologiju njepodpěruje, na kotrejž Firefox Send bazuje. Dyrbiće swój wobhladowak aktualizować.
|
||||
notSupportedOutdatedDetail = Bohužel tuta wersija Firefox webtechnologiju njepodpěruje, na kotrejž Send bazuje. Dyrbiće swój wobhladowak aktualizować.
|
||||
updateFirefox = Firefox aktualizować
|
||||
deletePopupCancel = Přetorhnyć
|
||||
deleteButtonHover = Zhašeć
|
||||
@@ -37,8 +37,8 @@ footerLinkLegal = Prawniske
|
||||
footerLinkPrivacy = Priwatnosć
|
||||
footerLinkCookies = Placki
|
||||
passwordTryAgain = Wopačne hesło. Prošu spytajće hišće raz.
|
||||
javascriptRequired = Firefox Send JavaScript trjeba
|
||||
whyJavascript = Čehodla Firefox Send JavaScript trjeba?
|
||||
javascriptRequired = Send JavaScript trjeba
|
||||
whyJavascript = Čehodla Send JavaScript trjeba?
|
||||
enableJavascript = Prošu zmóžńće JavaScript a spytajće hišće raz.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } hodź. { $minutes } mjeń.
|
||||
@@ -51,8 +51,8 @@ passwordSetError = Tute hesło njeda so nastajić
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importálás…
|
||||
encryptingFile = Titkosítás…
|
||||
decryptingFile = Visszafejtés…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Feloldás
|
||||
downloadButtonLabel = Letöltés
|
||||
downloadFinish = A letöltés befejeződött
|
||||
fileSizeProgress = ({ $partialSize } / { $totalSize })
|
||||
sendYourFilesLink = Próbálja ki a Firefox Sendet
|
||||
sendYourFilesLink = Próbálja ki a Sendet
|
||||
errorPageHeader = Hiba történt!
|
||||
fileTooBig = Ez a fájl túl nagy a feltöltéshez. Kevesebb mint { $size } kell legyen.
|
||||
linkExpiredAlt = A hivatkozás lejárt
|
||||
notSupportedHeader = A böngésző nem támogatott.
|
||||
notSupportedLink = Miért nem támogatott a böngészőm?
|
||||
notSupportedOutdatedDetail = Sajnos a Firefox ezen verziója nem támogatja a Firefox Send alapját képező technológiát. Frissítenie kell a böngészőjét.
|
||||
notSupportedOutdatedDetail = Sajnos a Firefox ezen verziója nem támogatja a Send alapját képező technológiát. Frissítenie kell a böngészőjét.
|
||||
updateFirefox = Firefox frissítése
|
||||
deletePopupCancel = Mégse
|
||||
deleteButtonHover = Törlés
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Jogi információk
|
||||
footerLinkPrivacy = Adatvédelem
|
||||
footerLinkCookies = Sütik
|
||||
passwordTryAgain = Helytelen jelszó. Próbálja meg újra.
|
||||
javascriptRequired = A Firefox Sendhez JavaScript szükséges
|
||||
whyJavascript = Miért van szükség JavaScriptre a Firefox Sendhez?
|
||||
javascriptRequired = A Sendhez JavaScript szükséges
|
||||
whyJavascript = Miért van szükség JavaScriptre a Sendhez?
|
||||
enableJavascript = Kérjük engedélyezze a JavaScriptet, majd próbálkozzon újra.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }ó { $minutes }p
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Ez a jelszó nem állítható be
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Ka olna' max jant'oj yab u t'ojnal alwa'
|
||||
importingFile = k'wajat i chiyál...
|
||||
encryptingFile = K'wajat i tsinat dheyál...
|
||||
@@ -18,13 +18,13 @@ unlockButtonLabel = Ka japiy
|
||||
downloadButtonLabel = Ka pa'ba'
|
||||
downloadFinish = Tala' pa'iyits
|
||||
fileSizeProgress = { $partialSize } xi ti { $totalSize }
|
||||
sendYourFilesLink = Ka eyendha' Firefox Send
|
||||
sendYourFilesLink = Ka eyendha' Send
|
||||
errorPageHeader = ¡Yab kalej alwa'!
|
||||
fileTooBig = Tekedh pulik axi a le' ka kadh'ba', kwa'al kin alemna' { $size }
|
||||
linkExpiredAlt = Yabats u awil ki ela'
|
||||
notSupportedHeader = Yab u awil ka japiyat k'al axi NAVEGADOR
|
||||
notSupportedLink = ¿Jale' ti u NAVEGADOR yab in japiyal?
|
||||
notSupportedOutdatedDetail = Yab u awil ka eyendha' Firefox Send kom an NAVEGADOR Firefox biyalits. Ka Pa'ba' axi it.
|
||||
notSupportedOutdatedDetail = Yab u awil ka eyendha' Send kom an NAVEGADOR Firefox biyalits. Ka Pa'ba' axi it.
|
||||
updateFirefox = Ka itmedha' Firefox
|
||||
deletePopupCancel = Ka kuba'
|
||||
deleteButtonHover = Ka pakuw
|
||||
@@ -32,8 +32,8 @@ footerLinkLegal = Axi walkadh ka t'ajan
|
||||
footerLinkPrivacy = Tsinataláb
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Yab ja' an tsinat japixtaláb. Ka exa' junil.
|
||||
javascriptRequired = Firefox Send in yejenchal JavaScript
|
||||
whyJavascript = ¿Jale' Firefox Send in yejenchal JavaScript?
|
||||
javascriptRequired = Send in yejenchal JavaScript
|
||||
whyJavascript = ¿Jale' Send in yejenchal JavaScript?
|
||||
enableJavascript = Ka lek'wtsiy JavaScript ani ka exa' junil.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -46,8 +46,8 @@ passwordSetError = Axi tsinat japixtaláb yab u awil ka eyendha'
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Արձագանք
|
||||
importingFile = Ներմուծում...
|
||||
encryptingFile = Գաղտնագրում…
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = Ապակողպել
|
||||
downloadButtonLabel = Ներբեռնել
|
||||
downloadFinish = Ներբեռնումն ավարտված է
|
||||
fileSizeProgress = ({ $partialSize }-ը { $totalSize })-ից
|
||||
sendYourFilesLink = Փորձել Firefox Send-ը
|
||||
sendYourFilesLink = Փորձել Send-ը
|
||||
errorPageHeader = Ինչ-որ բան այն չէ
|
||||
fileTooBig = Այդ ֆայլը չափազանց մեծ է վերբեռնելու համար: Այն պետք է լինի ավելի քիչ, քան { $size }-ը
|
||||
linkExpiredAlt = Հղումն ավարտված է
|
||||
notSupportedHeader = Ձեր զննարկիչը չի աջակցվում:
|
||||
notSupportedLink = Ինչու իմ զննարկիչը չի աջակցվում:
|
||||
notSupportedOutdatedDetail = Դժբախտաբար, Firefox- ի այս տարբերակը չի աջակցում այն վեբ տեխնոլոգիան, որը պետք է Firefox Send-ի համար: Դուք պետք է թարմացնեք ձեր զննարկիչը:
|
||||
notSupportedOutdatedDetail = Դժբախտաբար, Firefox- ի այս տարբերակը չի աջակցում այն վեբ տեխնոլոգիան, որը պետք է Send-ի համար: Դուք պետք է թարմացնեք ձեր զննարկիչը:
|
||||
updateFirefox = Թարմացնել Firefox-ը
|
||||
deletePopupCancel = Չեղարկել
|
||||
deleteButtonHover = Ջնջել
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = Իրավական
|
||||
footerLinkPrivacy = Գաղտնիություն
|
||||
footerLinkCookies = Cookie-ներ
|
||||
passwordTryAgain = Սխալ գաղտնաբառ. Կրկին փորձեք:
|
||||
javascriptRequired = Firefox Send-ը պահանջում է JavaScript
|
||||
whyJavascript = Ինչո՞ւ է Firefox Send-ը պահանջում JavaScript.
|
||||
javascriptRequired = Send-ը պահանջում է JavaScript
|
||||
whyJavascript = Ինչո՞ւ է Send-ը պահանջում JavaScript.
|
||||
enableJavascript = Խնդրում ենք միացնել JavaScript-ը և կրկին փորձել:
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }ժ { $minutes }ր
|
||||
@@ -48,8 +48,8 @@ passwordSetError = Այս գաղտնաբառը հնարավոր չէ սահմա
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Ուղարկել
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importation…
|
||||
encryptingFile = Cryptation...
|
||||
decryptingFile = Decryptation…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Disblocar
|
||||
downloadButtonLabel = Discargar
|
||||
downloadFinish = Discargamento completate
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Proba Firefox Send
|
||||
sendYourFilesLink = Proba Send
|
||||
errorPageHeader = Un error occurreva!
|
||||
fileTooBig = Iste file es troppo grande pro incargar. Illo debe esser inferior a { $size }.
|
||||
linkExpiredAlt = Ligamine expirate
|
||||
notSupportedHeader = Tu navigator non es supportate
|
||||
notSupportedLink = Proque non es mi navigator supportate?
|
||||
notSupportedOutdatedDetail = Infelicemente iste version de Firefox non supporta le nove technologia web que actiona Firefox Send. Tu debe actualisar tu navigator.
|
||||
notSupportedOutdatedDetail = Infelicemente iste version de Firefox non supporta le nove technologia web que actiona Send. Tu debe actualisar tu navigator.
|
||||
updateFirefox = Actualisar Firefox
|
||||
deletePopupCancel = Cancellar
|
||||
deleteButtonHover = Deler
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Confidentialitate
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contrasigno incorrecte. Retenta.
|
||||
javascriptRequired = Firefox Send require JavaScript
|
||||
whyJavascript = Proque Firefox Send require JavaScript?
|
||||
javascriptRequired = Send require JavaScript
|
||||
whyJavascript = Proque Send require JavaScript?
|
||||
enableJavascript = Por favor activa JavaScript e tenta novemente.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Iste contrasigno non ha potite esser establite
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Mengimpor…
|
||||
encryptingFile = Mengenkripsi...
|
||||
decryptingFile = Mendekripsi...
|
||||
@@ -17,13 +17,13 @@ unlockButtonLabel = Buka
|
||||
downloadButtonLabel = Unduh
|
||||
downloadFinish = Unduhan Selesai
|
||||
fileSizeProgress = ({ $partialSize } dari { $totalSize })
|
||||
sendYourFilesLink = Coba Firefox Send
|
||||
sendYourFilesLink = Coba Send
|
||||
errorPageHeader = Terjadi kesalahan!
|
||||
fileTooBig = Berkas terlalu besar untuk diunggah. Harus kurang dari { $size }.
|
||||
linkExpiredAlt = Tautan kedaluwarsa
|
||||
notSupportedHeader = Peramban Anda tidak mendukung.
|
||||
notSupportedLink = Mengapa peramban saya tidak didukung?
|
||||
notSupportedOutdatedDetail = Sayangnya Firefox versi ini tidak mendukung teknologi web yang menggerakkan Firefox Send. Anda perlu memperbarui peramban Anda.
|
||||
notSupportedOutdatedDetail = Sayangnya Firefox versi ini tidak mendukung teknologi web yang menggerakkan Send. Anda perlu memperbarui peramban Anda.
|
||||
updateFirefox = Perbarui Firefox
|
||||
deletePopupCancel = Batal
|
||||
deleteButtonHover = Hapus
|
||||
@@ -31,8 +31,8 @@ footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privasi
|
||||
footerLinkCookies = Kuki
|
||||
passwordTryAgain = Sandi salah. Silakan coba lagi.
|
||||
javascriptRequired = Firefox Send membutuhkan JavaScript.
|
||||
whyJavascript = Mengapa Firefox Send membutuhkan JavaScript?
|
||||
javascriptRequired = Send membutuhkan JavaScript.
|
||||
whyJavascript = Mengapa Send membutuhkan JavaScript?
|
||||
enableJavascript = Silakan aktifkan JavaScript dan coba lagi.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }j { $minutes }m
|
||||
@@ -45,8 +45,8 @@ passwordSetError = Tidak bisa menyetel sandi ini
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Firefox Zipu
|
||||
importingFile = Mbubata…
|
||||
encryptingFile = ezoro ezo...
|
||||
@@ -34,7 +34,7 @@ footerLinkPrivacy = nzuzo
|
||||
footerLinkCookies = Kuki ga
|
||||
passwordTryAgain = okwuntughe ezighi ezi.Nwaa ọzọ
|
||||
javascriptRequired = Firefox Zipu chọrọ
|
||||
whyJavascript = Kedu ihe kpatara Firefox Send jiri chọ JavaScript?
|
||||
whyJavascript = Kedu ihe kpatara Send jiri chọ JavaScript?
|
||||
enableJavascript = Biko họrọ JavaScript ma nwaa ọzọ
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Enweghị ike ịtọ paswọọdụ a
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Zipu, Ziga
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importazione in corso…
|
||||
encryptingFile = Crittazione in corso…
|
||||
decryptingFile = Decrittazione in corso…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Sblocca
|
||||
downloadButtonLabel = Scarica
|
||||
downloadFinish = Download completato
|
||||
fileSizeProgress = ({ $partialSize } di { $totalSize })
|
||||
sendYourFilesLink = Prova Firefox Send
|
||||
sendYourFilesLink = Prova Send
|
||||
errorPageHeader = Si è verificato un errore.
|
||||
fileTooBig = Le dimensioni di questo file sono eccessive. Dovrebbe essere inferiore a { $size }.
|
||||
linkExpiredAlt = Link scaduto
|
||||
notSupportedHeader = Il browser in uso non è supportato.
|
||||
notSupportedLink = Perché questo browser non risulta supportato?
|
||||
notSupportedOutdatedDetail = Purtroppo questa versione di Firefox non supporta le tecnologie web alla base di Firefox Send. È necessario aggiornare il browser.
|
||||
notSupportedOutdatedDetail = Purtroppo questa versione di Firefox non supporta le tecnologie web alla base di Send. È necessario aggiornare il browser.
|
||||
updateFirefox = Aggiorna Firefox
|
||||
deletePopupCancel = Annulla
|
||||
deleteButtonHover = Elimina
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Note legali
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookie
|
||||
passwordTryAgain = Password errata, riprovare.
|
||||
javascriptRequired = Firefox Send richiede JavaScript
|
||||
whyJavascript = Perché Firefox Send richiede JavaScript?
|
||||
javascriptRequired = Send richiede JavaScript
|
||||
whyJavascript = Perché Send richiede JavaScript?
|
||||
enableJavascript = Attiva JavaScript e riprova.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Impossibile impostare la password
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Aq'a yol sti'
|
||||
importingFile = Eq'otzan
|
||||
encryptingFile = La muj isik'lele
|
||||
@@ -20,7 +20,7 @@ unlockButtonLabel = Eesa ikach'ub'al
|
||||
downloadButtonLabel = Eq'o ku'tzan
|
||||
downloadFinish = Eq'o ku'tzan kaajayil
|
||||
fileSizeProgress = ({ $partialSize }tetz{ $totalSize })
|
||||
sendYourFilesLink = B'anb'e ve't u Firefox Send
|
||||
sendYourFilesLink = B'anb'e ve't u Send
|
||||
errorPageHeader = At ma'l kam valexh kat eli!
|
||||
notSupportedHeader = U chukb'al aq'one' ye' ni toleb'e'.
|
||||
notSupportedLink = Kam q'ii uve' ye' kuxh ni toleb' u chukb'al vaq'one'?
|
||||
@@ -36,8 +36,8 @@ expiresMinutes = { $minutes }m
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Aq'b'en
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = インポート中...
|
||||
encryptingFile = 暗号化中...
|
||||
decryptingFile = 復号化中...
|
||||
@@ -17,13 +17,13 @@ unlockButtonLabel = ロック解除
|
||||
downloadButtonLabel = ダウンロード
|
||||
downloadFinish = ダウンロード完了
|
||||
fileSizeProgress = ({ $partialSize } / { $totalSize })
|
||||
sendYourFilesLink = Firefox Send を試す
|
||||
sendYourFilesLink = Send を試す
|
||||
errorPageHeader = 何か問題が発生しました。
|
||||
fileTooBig = このファイルは大きすぎるためアップロードできません。上限は { $size } です。
|
||||
linkExpiredAlt = リンク期限切れ
|
||||
notSupportedHeader = お使いのブラウザーには対応していません。
|
||||
notSupportedLink = なぜ私のブラウザーには対応していないのでしょうか?
|
||||
notSupportedOutdatedDetail = 残念ながらお使いのバージョンの Firefox は Firefox Send が活用しているウェブ技術に対応していません。ブラウザーを更新する必要があります。
|
||||
notSupportedOutdatedDetail = 残念ながらお使いのバージョンの Firefox は Send が活用しているウェブ技術に対応していません。ブラウザーを更新する必要があります。
|
||||
updateFirefox = Firefox を更新
|
||||
deletePopupCancel = キャンセル
|
||||
deleteButtonHover = 削除
|
||||
@@ -31,8 +31,8 @@ footerLinkLegal = 法的情報
|
||||
footerLinkPrivacy = プライバシー
|
||||
footerLinkCookies = Cookie
|
||||
passwordTryAgain = パスワードが正しくありません。再度入力してください。
|
||||
javascriptRequired = Firefox Send を使うには JavaScript が必要です
|
||||
whyJavascript = Firefox Send が JavaScript を必要とする理由
|
||||
javascriptRequired = Send を使うには JavaScript が必要です
|
||||
whyJavascript = Send が JavaScript を必要とする理由
|
||||
enableJavascript = JavaScript を有効にして再度試してください。
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } 時間 { $minutes } 分
|
||||
@@ -45,8 +45,8 @@ passwordSetError = このパスワードは設定できませんでした
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = გადმოტანა...
|
||||
encryptingFile = დაშიფვრა...
|
||||
decryptingFile = გაშიფვრა...
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = გახსნა
|
||||
downloadButtonLabel = ჩამოტვირთვა
|
||||
downloadFinish = ჩამოტვირთვა დასრულდა
|
||||
fileSizeProgress = ({ $partialSize } { $totalSize }-იდან)
|
||||
sendYourFilesLink = გამოცადეთ Firefox Send
|
||||
sendYourFilesLink = გამოცადეთ Send
|
||||
errorPageHeader = რაღაც ხარვეზია!
|
||||
fileTooBig = ფაილი ზედმეტად დიდია. უნდა იყოს { $size } ზომაზე ნაკლები.
|
||||
linkExpiredAlt = ბმული ვადაგასულია
|
||||
notSupportedHeader = თქვენი ბრაუზერი არაა მხარდაჭერილი.
|
||||
notSupportedLink = რატომ არაა ჩემი ბრაუზერი მხარდაჭერილი?
|
||||
notSupportedOutdatedDetail = სამწუხაროდ, Firefox-ის ამ ვერსიას არ გააჩნია ის ტექნოლოგია, რომელიც აუცილებელია Firefox Send-ის მუშაობისთვის. გესაჭიროებათ, ბრაუზერის განახლება.
|
||||
notSupportedOutdatedDetail = სამწუხაროდ, Firefox-ის ამ ვერსიას არ გააჩნია ის ტექნოლოგია, რომელიც აუცილებელია Send-ის მუშაობისთვის. გესაჭიროებათ, ბრაუზერის განახლება.
|
||||
updateFirefox = Firefox-ის განახლება
|
||||
deletePopupCancel = გაუქმება
|
||||
deleteButtonHover = წაშლა
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = სამართლებრივი საკითხე
|
||||
footerLinkPrivacy = პირადულობა
|
||||
footerLinkCookies = ფუნთუშები
|
||||
passwordTryAgain = პაროლი არასწორია. სცადეთ ხელახლა.
|
||||
javascriptRequired = Firefox Send საჭიროებს JavaScript-ს
|
||||
whyJavascript = რატომ საჭიროებს Firefox Send JavaScript-ს?
|
||||
javascriptRequired = Send საჭიროებს JavaScript-ს
|
||||
whyJavascript = რატომ საჭიროებს Send JavaScript-ს?
|
||||
enableJavascript = გთხოვთ ჩართოთ JavaScript და სცადოთ ხელახლა.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }სთ { $minutes }წთ
|
||||
@@ -47,8 +47,8 @@ passwordSetError = ამ პაროლის დაყენება ვე
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Akter...
|
||||
encryptingFile = Awgelhen...
|
||||
decryptingFile = Azmek...
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Serreḥ
|
||||
downloadButtonLabel = Sider
|
||||
downloadFinish = Asider yemmed
|
||||
fileSizeProgress = ({ $partialSize } seg { $totalSize })
|
||||
sendYourFilesLink = Ɛreḍ Firefox Send
|
||||
sendYourFilesLink = Ɛreḍ Send
|
||||
errorPageHeader = Yella wayen yeḍran!
|
||||
fileTooBig = Afaylu-agi meqqer aṭas. Yessefk ad yili daw n { $size }.
|
||||
linkExpiredAlt = Aseɣwen yemmut
|
||||
notSupportedHeader = Iminig-ik ur ittusefrak ara
|
||||
notSupportedLink = Ayγer iminig inu ur yettwasefrek ara?
|
||||
notSupportedOutdatedDetail = Ad nesḥissef imilqem-agi n Firefox Firefox ur isefrak ara titiknulujiyin web yettwaseqdacen di Firefox Send. Yessefk ad tleqmeḍ iminig-ik.
|
||||
notSupportedOutdatedDetail = Ad nesḥissef imilqem-agi n Firefox Firefox ur isefrak ara titiknulujiyin web yettwaseqdacen di Send. Yessefk ad tleqmeḍ iminig-ik.
|
||||
updateFirefox = Leqqem Firefox
|
||||
deletePopupCancel = Sefsex
|
||||
deleteButtonHover = Kkes
|
||||
@@ -33,7 +33,7 @@ footerLinkLegal = Usḍif
|
||||
footerLinkPrivacy = Tabaḍnit
|
||||
footerLinkCookies = Inagan n tuqqna
|
||||
passwordTryAgain = Yir awal uffir. Ɛreḍ tikelt nniḍen.
|
||||
javascriptRequired = Firefox Send yesra JavaScript
|
||||
javascriptRequired = Send yesra JavaScript
|
||||
whyJavascript = Ayɣer firefox Send yesra JavaScript?
|
||||
enableJavascript = Ma ulac aɣilif rmed JavaScript sakin ɛreḍ tikkelt nniḍen.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Awal-agi uffir ur izmir ara ad ittwabaded
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = 가져오는 중…
|
||||
encryptingFile = 암호화 중…
|
||||
decryptingFile = 복호화 중…
|
||||
@@ -11,13 +11,13 @@ unlockButtonLabel = 잠금 해제
|
||||
downloadButtonLabel = 다운로드
|
||||
downloadFinish = 다운로드 완료
|
||||
fileSizeProgress = ({ $partialSize } / { $totalSize })
|
||||
sendYourFilesLink = Firefox Send 써보기
|
||||
sendYourFilesLink = Send 써보기
|
||||
errorPageHeader = 오류가 발생했습니다!
|
||||
fileTooBig = 파일의 크기가 너무 큽니다. { $size } 보다 작아야 합니다.
|
||||
linkExpiredAlt = 링크가 만료됨
|
||||
notSupportedHeader = 이 브라우저는 지원되지 않습니다.
|
||||
notSupportedLink = 왜 이 브라우저는 지원이 되지 않나요?
|
||||
notSupportedOutdatedDetail = 안타깝게도 사용중인 Firefox 버전에서는 Firefox Send에 사용되는 웹 기술을 지원하지 않습니다. 브라우저 업데이트가 필요합니다.
|
||||
notSupportedOutdatedDetail = 안타깝게도 사용중인 Firefox 버전에서는 Send에 사용되는 웹 기술을 지원하지 않습니다. 브라우저 업데이트가 필요합니다.
|
||||
updateFirefox = Firefox 업데이트
|
||||
deletePopupCancel = 아니오
|
||||
deleteButtonHover = 삭제
|
||||
@@ -25,8 +25,8 @@ footerLinkLegal = 법적 정보
|
||||
footerLinkPrivacy = 개인정보 보호
|
||||
footerLinkCookies = 쿠키
|
||||
passwordTryAgain = 비밀번호가 맞지 않습니다. 다시 시도해 주세요.
|
||||
javascriptRequired = Firefox Send는 JavaScript를 필요로 합니다
|
||||
whyJavascript = 왜 Firefox Send에 JavaScript가 필요하죠?
|
||||
javascriptRequired = Send는 JavaScript를 필요로 합니다
|
||||
whyJavascript = 왜 Send에 JavaScript가 필요하죠?
|
||||
enableJavascript = JavaScript를 활성화하고 다시 시도해 주세요.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }시간 { $minutes }분
|
||||
@@ -39,8 +39,8 @@ passwordSetError = 이 비밀번호를 설정할 수 없었습니다
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importuojama…
|
||||
encryptingFile = Šifruojama…
|
||||
decryptingFile = Iššifruojama…
|
||||
@@ -21,13 +21,13 @@ unlockButtonLabel = Atrakinti
|
||||
downloadButtonLabel = Parsisiųsti
|
||||
downloadFinish = Parsiuntimas baigtas
|
||||
fileSizeProgress = ({ $partialSize } iš { $totalSize })
|
||||
sendYourFilesLink = Išbandyti „Firefox Send“
|
||||
sendYourFilesLink = Išbandyti „Send“
|
||||
errorPageHeader = Nutiko kažkas negero!
|
||||
fileTooBig = Pasirinktas failas yra per didelis, kad jį būtų galima įkelti. Failo dydis neturėtų viršyti { $size }
|
||||
linkExpiredAlt = Saitas nebegalioja
|
||||
notSupportedHeader = Jūsų naršyklė nepalaikoma.
|
||||
notSupportedLink = Kodėl mano naršyklė nepalaikoma?
|
||||
notSupportedOutdatedDetail = Deja, šioje „Firefox“ naršyklės laidoje nepalaikoma „Firefox Send“ veikti reikalinga technologija. Jeigu norite naudotis šia paslauga, turėsite atnaujinti savo naršyklę.
|
||||
notSupportedOutdatedDetail = Deja, šioje „Firefox“ naršyklės laidoje nepalaikoma „Send“ veikti reikalinga technologija. Jeigu norite naudotis šia paslauga, turėsite atnaujinti savo naršyklę.
|
||||
updateFirefox = Atnaujinti „Firefox“
|
||||
deletePopupCancel = Atsisakyti
|
||||
deleteButtonHover = Šalinti
|
||||
@@ -35,8 +35,8 @@ footerLinkLegal = Teisinė informacija
|
||||
footerLinkPrivacy = Privatumas
|
||||
footerLinkCookies = Slapukai
|
||||
passwordTryAgain = Slaptažodis netinka. Bandykite dar kartą.
|
||||
javascriptRequired = „Firefox Send“ veikimui būtina įgalinti „JavaScript“ palaikymą
|
||||
whyJavascript = Kodėl „Firefox Send“ neveikia išjungus „JavaScript“?
|
||||
javascriptRequired = „Send“ veikimui būtina įgalinti „JavaScript“ palaikymą
|
||||
whyJavascript = Kodėl „Send“ neveikia išjungus „JavaScript“?
|
||||
enableJavascript = Įgalinkit „JavaScript“ ir bandykite dar kartą.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } val. { $minutes } min.
|
||||
@@ -49,8 +49,8 @@ passwordSetError = Slaptažodžio nustatyti nepavyko
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla =
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Tu'un jianininu
|
||||
importingFile = Nasia´a…
|
||||
encryptingFile = Encriptando...
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Nkasɨ
|
||||
downloadButtonLabel = Xinuu
|
||||
downloadFinish = Nnɨ´ɨ xinuu
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Ni´i Firefox Send
|
||||
sendYourFilesLink = Ni´i Send
|
||||
errorPageHeader = ¡Iyo iin ntu nkene va´a!
|
||||
fileTooBig = Archivo ya´a ka´nu. Nejia chunku´va { $size }
|
||||
linkExpiredAlt = Nnɨ´ɨ enlace
|
||||
notSupportedHeader = Ntu íyo tiñu nuu ka̱a̱ nánuku ya´a.
|
||||
notSupportedLink = ¿Navi ntu satiñu nuu ka̱a̱ nánuku ya´a?
|
||||
notSupportedOutdatedDetail = Tuni Firefox ya´a ntu satiñu vii jii Firefox Send. Nejika xinunu a jíía ka̱a̱ nánuku.
|
||||
notSupportedOutdatedDetail = Tuni Firefox ya´a ntu satiñu vii jii Send. Nejika xinunu a jíía ka̱a̱ nánuku.
|
||||
updateFirefox = Naxi´ñá Firefox
|
||||
deletePopupCancel = Nkuvi-ka
|
||||
deleteButtonHover = Xita
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Tu´un nichi
|
||||
footerLinkPrivacy = Tu´un xitu a kumiji noo´o
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contraseña ntu vatu. Nachu´un tuku.
|
||||
javascriptRequired = Firefox Send ni´i JavaScript
|
||||
whyJavascript = ¿Navi Firefox Send ni´i JavaScript?
|
||||
javascriptRequired = Send ni´i JavaScript
|
||||
whyJavascript = ¿Navi Send ni´i JavaScript?
|
||||
enableJavascript = Kua´a jia´a JavaScript jee nachu´un tuku.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Ntu nkuvi sá´á contraseña
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Ndakiin…
|
||||
encryptingFile = Ndasami tu'un…
|
||||
decryptingFile = Nchiko tu'un…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Kuna
|
||||
downloadButtonLabel = Snuù
|
||||
downloadFinish = Ntsinu snui
|
||||
fileSizeProgress = ({ $partialSize } ña { $totalSize })
|
||||
sendYourFilesLink = Kuachu'un Firefox Send
|
||||
sendYourFilesLink = Kuachu'un Send
|
||||
errorPageHeader = ¡Yee ña va'a!
|
||||
fileTooBig = Kanu tutu yo. Tsini ñu'u koi tana { $size }.
|
||||
linkExpiredAlt = Ntoo enlace
|
||||
notSupportedHeader = Kue ku kuni página.
|
||||
notSupportedLink = ¿Chanu kue ku kuncheuña?
|
||||
notSupportedOutdatedDetail = Firefox kue ku kuni página web takua kuachu'un Firefox Send. tsiniñu'u ndu tsa'a navegador.
|
||||
notSupportedOutdatedDetail = Firefox kue ku kuni página web takua kuachu'un Send. tsiniñu'u ndu tsa'a navegador.
|
||||
updateFirefox = Ndu tsa'a Firefox
|
||||
deletePopupCancel = Kunchatu
|
||||
deleteButtonHover = Stoò
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Aviso legal
|
||||
footerLinkPrivacy = Ña meu
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Kue vaa ni chau sivi siki. Chai tuku.
|
||||
javascriptRequired = Firefox Send tsiniñui JavaScript
|
||||
whyJavascript = ¿Chanu Firefox Send tsiniñui JavaScript?
|
||||
javascriptRequired = Send tsiniñui JavaScript
|
||||
whyJavascript = ¿Chanu Send tsiniñui JavaScript?
|
||||
enableJavascript = Saá ña mani katsi JavaScript chá kitsa tuku.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Ma ku ntanii tu'un see
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
# Send is a brand name and should not be localized.
|
||||
title = ഫയർഫോക്സ് സെൻഡ്
|
||||
siteFeedback = പ്രതികരണം
|
||||
importingFile = ഇറക്കുമതി ചെയ്യുന്നു...
|
||||
@@ -48,7 +48,7 @@ passwordSetError = ഈ രഹസ്യവാക്ക് ക്രമീകര
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = ഫയർഫോക്സ് സെൻഡ്
|
||||
-send-short-brand = സെൻഡ്
|
||||
-firefox = ഫയർഫോക്സ്
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteSubtitle = experimen web
|
||||
siteFeedback = Maklum balas
|
||||
uploadPageHeader = Peribadi, Perkongsian Fail Dienkrip
|
||||
@@ -53,16 +53,16 @@ unlockInputLabel = Masukkan Kata Laluan
|
||||
unlockInputPlaceholder = Kata laluan
|
||||
unlockButtonLabel = Buka
|
||||
downloadFileTitle = Muat turun Fail Enkripsi
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
downloadMessage = Rakan anda menghantar satu fail kepada anda menggunakan Firefox Send, satu perkhidmatan yang membolehkan anda berkongsi fail dengan pautan yang selamat, peribadi dan dienkrip, yang secara automatik akan luput bagi memastikan fail anda tidak terus berada dalam talian selama-lamanya.
|
||||
# Send is a brand name and should not be localized.
|
||||
downloadMessage = Rakan anda menghantar satu fail kepada anda menggunakan Send, satu perkhidmatan yang membolehkan anda berkongsi fail dengan pautan yang selamat, peribadi dan dienkrip, yang secara automatik akan luput bagi memastikan fail anda tidak terus berada dalam talian selama-lamanya.
|
||||
# Text and title used on the download link/button (indicates an action).
|
||||
downloadButtonLabel = Muat turun
|
||||
downloadNotification = Muat turun anda sudah siap.
|
||||
downloadFinish = Muat turun Selesai
|
||||
# This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)".
|
||||
fileSizeProgress = ({ $partialSize } daripada { $totalSize })
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
sendYourFilesLink = Cuba Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
sendYourFilesLink = Cuba Send
|
||||
downloadingPageProgress = Memuat turun { $filename } ({ $size })
|
||||
downloadingPageMessage = Sila biarkan tab ini terbuka semasa kami mengambil fail anda dan menghuraikannya.
|
||||
errorAltText = Ralat memuat naik
|
||||
@@ -73,10 +73,10 @@ fileTooBig = Fail terlalu besar untuk dimuat naik. Perlu kurang daripada { $size
|
||||
linkExpiredAlt = Pautan sudah luput
|
||||
expiredPageHeader = Pautan ini sudah luput atau pun tidak pernah wujud!
|
||||
notSupportedHeader = Pelayar anda tidak disokong.
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
notSupportedDetail = Malangnya, pelayar ini tidak menyokong teknologi web yang melaksanakan Firefox Send. Anda perlu cuba pelayar lain. Kami syorkan Firefox!
|
||||
# Send is a brand name and should not be localized.
|
||||
notSupportedDetail = Malangnya, pelayar ini tidak menyokong teknologi web yang melaksanakan Send. Anda perlu cuba pelayar lain. Kami syorkan Firefox!
|
||||
notSupportedLink = Kenapa pelayar saya tidak disokong?
|
||||
notSupportedOutdatedDetail = Malangnya versi Firefox ini tidak menyokong teknologi web yang menguasakan Firefox Send. Anda perlu mengemaskini pelayar anda.
|
||||
notSupportedOutdatedDetail = Malangnya versi Firefox ini tidak menyokong teknologi web yang menguasakan Send. Anda perlu mengemaskini pelayar anda.
|
||||
updateFirefox = Kemaskini Firefox
|
||||
downloadFirefoxButtonSub = Muat turun Percuma
|
||||
uploadedFile = Fail
|
||||
@@ -86,8 +86,8 @@ expiryFileList = Luput Pada
|
||||
deleteFileList = Buang
|
||||
nevermindButton = Tak apalah
|
||||
legalHeader = Terma & Privasi
|
||||
legalNoticeTestPilot = Firefox Send adalah eksperimen Ujian Perintis, dan tertakluk kepada <a>Terma Perkhidmatan</a> dan <a>Notis Privasi</a> Ujian Perintis. Anda boleh ketahui selanjutnya perihal eksperimen ini dan pengumpulan data <a>di sini</a>.
|
||||
legalNoticeMozilla = Penggunaan laman web Firefox Send juga tertakluk kepada <a>Notis Privasi Laman web</a> dan <a>Terma Penggunaan Laman web</a> Mozilla.
|
||||
legalNoticeTestPilot = Send adalah eksperimen Ujian Perintis, dan tertakluk kepada <a>Terma Perkhidmatan</a> dan <a>Notis Privasi</a> Ujian Perintis. Anda boleh ketahui selanjutnya perihal eksperimen ini dan pengumpulan data <a>di sini</a>.
|
||||
legalNoticeMozilla = Penggunaan laman web Send juga tertakluk kepada <a>Notis Privasi Laman web</a> dan <a>Terma Penggunaan Laman web</a> Mozilla.
|
||||
deletePopupText = Buang fail ini?
|
||||
deletePopupYes = Ya
|
||||
deletePopupCancel = Batal
|
||||
@@ -104,8 +104,8 @@ addPasswordButton = Tambah Kata laluan
|
||||
changePasswordButton = Tukar
|
||||
passwordTryAgain = Kata laluan tidak betul. Cuba lagi.
|
||||
reportIPInfringement = Lapor Pencerobohan IP
|
||||
javascriptRequired = Firefox Send perlukan JavaScript
|
||||
whyJavascript = Kenapa Firefox Send perlukan JavaScript?
|
||||
javascriptRequired = Send perlukan JavaScript
|
||||
whyJavascript = Kenapa Send perlukan JavaScript?
|
||||
enableJavascript = Sila dayakan JavaScript dan cuba lagi.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importerer…
|
||||
encryptingFile = Krypterer...
|
||||
decryptingFile = Dekrypterer...
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Lås opp
|
||||
downloadButtonLabel = Last ned
|
||||
downloadFinish = Nedlastingen er fullført.
|
||||
fileSizeProgress = ({ $partialSize } av { $totalSize })
|
||||
sendYourFilesLink = Prøv Firefox Send
|
||||
sendYourFilesLink = Prøv Send
|
||||
errorPageHeader = Det oppstod en feil.
|
||||
fileTooBig = Filen er for stor til å laste opp. Det må være mindre enn { $size }.
|
||||
linkExpiredAlt = Lenke utløpt
|
||||
notSupportedHeader = Din nettleser er ikke støttet.
|
||||
notSupportedLink = Hvorfor er ikke nettleseren min støttet?
|
||||
notSupportedOutdatedDetail = Dessverre støtter ikke denne versjonen av Firefox netteknologien som driver Firefox Send. Du trenger å oppdatere nettleseren din.
|
||||
notSupportedOutdatedDetail = Dessverre støtter ikke denne versjonen av Firefox netteknologien som driver Send. Du trenger å oppdatere nettleseren din.
|
||||
updateFirefox = Oppdater Firefox
|
||||
deletePopupCancel = Avbryt
|
||||
deleteButtonHover = Slett
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Juridisk informasjon
|
||||
footerLinkPrivacy = Personvern
|
||||
footerLinkCookies = Infokapsler
|
||||
passwordTryAgain = Feil passord. Prøv igjen.
|
||||
javascriptRequired = Firefox Send krever JavaScript.
|
||||
whyJavascript = Hvorfor krever Firefox Send JavaScript?
|
||||
javascriptRequired = Send krever JavaScript.
|
||||
whyJavascript = Hvorfor krever Send JavaScript?
|
||||
enableJavascript = Slå på JavaScript og prøv igjen.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }t { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Dette passordet kunne ikke settes
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importeren…
|
||||
encryptingFile = Versleutelen…
|
||||
decryptingFile = Ontsleutelen…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Ontgrendelen
|
||||
downloadButtonLabel = Downloaden
|
||||
downloadFinish = Downloaden voltooid
|
||||
fileSizeProgress = ({ $partialSize } van { $totalSize })
|
||||
sendYourFilesLink = Firefox Send proberen
|
||||
sendYourFilesLink = Send proberen
|
||||
errorPageHeader = Er is iets misgegaan!
|
||||
fileTooBig = Dat bestand is te groot om te worden geüpload. Het moet kleiner zijn dan { $size }.
|
||||
linkExpiredAlt = Koppeling verlopen
|
||||
notSupportedHeader = Uw browser wordt niet ondersteund.
|
||||
notSupportedLink = Waarom wordt mijn browser niet ondersteund?
|
||||
notSupportedOutdatedDetail = Helaas ondersteunt deze versie van Firefox de webtechnologie die Firefox Send gebruikt niet. U dient uw browser bij te werken.
|
||||
notSupportedOutdatedDetail = Helaas ondersteunt deze versie van Firefox de webtechnologie die Send gebruikt niet. U dient uw browser bij te werken.
|
||||
updateFirefox = Firefox bijwerken
|
||||
deletePopupCancel = Annuleren
|
||||
deleteButtonHover = Verwijderen
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Juridisch
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Onjuist wachtwoord. Probeer het opnieuw.
|
||||
javascriptRequired = Firefox Send vereist JavaScript
|
||||
whyJavascript = Waarom vereist Firefox Send JavaScript?
|
||||
javascriptRequired = Send vereist JavaScript
|
||||
whyJavascript = Waarom vereist Send JavaScript?
|
||||
enableJavascript = Schakel JavaScript in en probeer het opnieuw.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }u { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Dit wachtwoord kon niet worden ingesteld
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importerer…
|
||||
encryptingFile = Krypterer…
|
||||
decryptingFile = Dekrypterer...
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Lås opp
|
||||
downloadButtonLabel = Last ned
|
||||
downloadFinish = Nedlastinga er fullført.
|
||||
fileSizeProgress = ({ $partialSize } av { $totalSize })
|
||||
sendYourFilesLink = Prøv Firefox Send
|
||||
sendYourFilesLink = Prøv Send
|
||||
errorPageHeader = Noko gjekk gale!
|
||||
fileTooBig = Fila er for stor, og kan ikkje lastast opp. Ho må vere mindre enn { $size }.
|
||||
linkExpiredAlt = Lenka har gått ut
|
||||
notSupportedHeader = Nettlesaren din er ikkje støtta.
|
||||
notSupportedLink = Kvifor er ikkje nettlesaren min støtta?
|
||||
notSupportedOutdatedDetail = Dessverre støttar ikkje denne versjonen av Firefox nett-teknologien som driv Firefox Send. Du må å oppdatere nettlesaren din.
|
||||
notSupportedOutdatedDetail = Dessverre støttar ikkje denne versjonen av Firefox nett-teknologien som driv Send. Du må å oppdatere nettlesaren din.
|
||||
updateFirefox = Oppdater Firefox
|
||||
deletePopupCancel = Avbryt
|
||||
deleteButtonHover = Slett
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Juridisk informasjon
|
||||
footerLinkPrivacy = Personvern
|
||||
footerLinkCookies = Infokapslar
|
||||
passwordTryAgain = Feil passord. Prøv på nytt.
|
||||
javascriptRequired = Firefox Send krev JavaScript.
|
||||
whyJavascript = Kvifor krev Firefox Send JavaScript?
|
||||
javascriptRequired = Send krev JavaScript.
|
||||
whyJavascript = Kvifor krev Send JavaScript?
|
||||
enableJavascript = Slå på JavaScript og prøv igjen.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }t { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Dette passordet kunne ikkje stillast inn
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importacion…
|
||||
encryptingFile = Chiframent…
|
||||
decryptingFile = Deschiframent…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Desverrolhar
|
||||
downloadButtonLabel = Telecargar
|
||||
downloadFinish = Telecargament acabat
|
||||
fileSizeProgress = ({ $partialSize } sus { $totalSize })
|
||||
sendYourFilesLink = Ensajar Firefox Send
|
||||
sendYourFilesLink = Ensajar Send
|
||||
errorPageHeader = I a quicòm que truca.
|
||||
fileTooBig = Aqueste fichièr es tròp gròs per l’enviar. Sa talha deu èsser inferiora a { $size }.
|
||||
linkExpiredAlt = Lo ligam a expirat
|
||||
notSupportedHeader = Vòstre navegador es pas compatible.
|
||||
notSupportedLink = Perqué mon navegador es pas compatible ?
|
||||
notSupportedOutdatedDetail = Aquesta version de Firefox es pas compatibla amb la tecnologia web amb la quala fonciona Firefox Send. Vos cal metre a jorn lo navegador.
|
||||
notSupportedOutdatedDetail = Aquesta version de Firefox es pas compatibla amb la tecnologia web amb la quala fonciona Send. Vos cal metre a jorn lo navegador.
|
||||
updateFirefox = Metre a jorn Firefox
|
||||
deletePopupCancel = Anullar
|
||||
deleteButtonHover = Suprimir
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Mencions legalas
|
||||
footerLinkPrivacy = Vida privada
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Senhal incorrècte. Tornatz ensajar.
|
||||
javascriptRequired = Firefox Send requesís JavaScript
|
||||
whyJavascript = Perque Firefox Send requesís JavaScript ?
|
||||
javascriptRequired = Send requesís JavaScript
|
||||
whyJavascript = Perque Send requesís JavaScript ?
|
||||
enableJavascript = Volgatz activar lo JavaScript e ensajatz tornamai.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } h { $minutes } min
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Aqueste senhal a pas pogut èsser definit
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = ...ਦਰਾਮਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ
|
||||
encryptingFile = ...ਇੰਕ੍ਰਿਪਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ
|
||||
decryptingFile = ...ਡਿਕ੍ਰਿਪਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = ਅਣ-ਲਾਕ ਕਰੋ
|
||||
downloadButtonLabel = ਡਾਊਨਲੋਡ ਕਰੋ
|
||||
downloadFinish = ਡਾਊਨਲੋਡ ਪੂਰਾ ਹੋਇਆ
|
||||
fileSizeProgress = ({ $totalSize } ਵਿੱਚੋਂ { $partialSize })
|
||||
sendYourFilesLink = Firefox Send ਵਰਤੋ
|
||||
sendYourFilesLink = Send ਵਰਤੋ
|
||||
errorPageHeader = ਕੁਝ ਗਲਤ ਵਾਪਰਿਆ!
|
||||
fileTooBig = ਇਹ ਫਾਇਲ ਅੱਪਲੋਡ ਕਰਨ ਲਈ ਬਹੁਤ ਵੱਡੀ ਹੈ। ਇਸ { $size } ਤੋਂ ਘੱਟ ਚਾਹੀਦੀ ਹੈ
|
||||
linkExpiredAlt = ਲਿੰਕ ਦੀ ਮਿਆਦ ਪੁੱਗੀ
|
||||
notSupportedHeader = ਤੁਹਾਡਾ ਬਰਾਊਜ਼ਰ ਸਹਾਇਕ ਨਹੀਂ ਹੈ।
|
||||
notSupportedLink = ਮੇਰਾ ਬਰਾਊਜ਼ਰ ਸਹਾਇਕ ਕਿਉ ਨਹੀਂ ਹੈ?
|
||||
notSupportedOutdatedDetail = ਅਫ਼ਸੋਸ ਹੈ ਕਿ ਫਾਇਰਫਾਕਸ ਦਾ ਇਹ ਵਰਜ਼ਨ ਵੈੱਬ ਤਕਨਾਲੋਜੀ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ, ਜੋ ਕਿ Firefox Send ਨੂੰ ਬਣਾਉਂਦੀਆਂ ਹਨ। ਤੁਹਾਨੂੰ ਆਪਣੇ ਬਰਾਊਜ਼ਰ ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ।
|
||||
notSupportedOutdatedDetail = ਅਫ਼ਸੋਸ ਹੈ ਕਿ ਫਾਇਰਫਾਕਸ ਦਾ ਇਹ ਵਰਜ਼ਨ ਵੈੱਬ ਤਕਨਾਲੋਜੀ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ, ਜੋ ਕਿ Send ਨੂੰ ਬਣਾਉਂਦੀਆਂ ਹਨ। ਤੁਹਾਨੂੰ ਆਪਣੇ ਬਰਾਊਜ਼ਰ ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ।
|
||||
updateFirefox = ਫਾਇਰਫਾਕਸ ਅੱਪਡੇਟ ਕਰੋ
|
||||
deletePopupCancel = ਰੱਦ ਕਰੋ
|
||||
deleteButtonHover = ਹਟਾਓ
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = ਕਨੂੰਨ
|
||||
footerLinkPrivacy = ਪਰਦੇਦਾਰੀ
|
||||
footerLinkCookies = ਕੂਕੀਜ਼
|
||||
passwordTryAgain = ਗਲਤ ਪਾਸਵਰਡ ਹੈ। ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।
|
||||
javascriptRequired = Firefox Send ਲਈ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਚਾਹੀਦੀ ਹੈ
|
||||
whyJavascript = Firefox Send ਨੂੰ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਦੀ ਲੋੜ ਕਿਓ ਹੈ?
|
||||
javascriptRequired = Send ਲਈ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਚਾਹੀਦੀ ਹੈ
|
||||
whyJavascript = Send ਨੂੰ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਦੀ ਲੋੜ ਕਿਓ ਹੈ?
|
||||
enableJavascript = ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਸਮਰੱਥ ਕਰੋ ਤੇ ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }ਘੰ { $minutes }ਮਿੰ
|
||||
@@ -47,8 +47,8 @@ passwordSetError = ਇਹ ਪਾਸਵਰਡ ਸੈੱਟ ਨਹੀਂ ਕੀਤ
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = ਭੇਜੋ
|
||||
-firefox = ਫਾਇਰਫਾਕਸ
|
||||
-mozilla = ਮੋਜ਼ੀਲਾ
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importowanie…
|
||||
encryptingFile = Szyfrowanie…
|
||||
decryptingFile = Odszyfrowywanie…
|
||||
@@ -21,13 +21,13 @@ unlockButtonLabel = Odblokuj
|
||||
downloadButtonLabel = Pobierz
|
||||
downloadFinish = Ukończono pobieranie
|
||||
fileSizeProgress = ({ $partialSize } z { $totalSize })
|
||||
sendYourFilesLink = Wypróbuj Firefox Send
|
||||
sendYourFilesLink = Wypróbuj Send
|
||||
errorPageHeader = Coś się nie udało.
|
||||
fileTooBig = Ten plik jest za duży, aby go wysłać. Musi być mniejszy niż { $size }
|
||||
linkExpiredAlt = Odnośnik wygasł
|
||||
notSupportedHeader = Używana przeglądarka nie jest obsługiwana.
|
||||
notSupportedLink = Dlaczego ta przeglądarka nie jest obsługiwana?
|
||||
notSupportedOutdatedDetail = Ta wersja Firefoksa nie obsługuje technologii internetowej, która napędza Firefox Send. Należy uaktualnić przeglądarkę.
|
||||
notSupportedOutdatedDetail = Ta wersja Firefoksa nie obsługuje technologii internetowej, która napędza Send. Należy uaktualnić przeglądarkę.
|
||||
updateFirefox = Uaktualnij Firefoksa
|
||||
deletePopupCancel = Anuluj
|
||||
deleteButtonHover = Usuń
|
||||
@@ -35,8 +35,8 @@ footerLinkLegal = Kwestie prawne
|
||||
footerLinkPrivacy = Prywatność
|
||||
footerLinkCookies = Ciasteczka
|
||||
passwordTryAgain = Niepoprawne hasło. Spróbuj ponownie.
|
||||
javascriptRequired = Firefox Send wymaga języka JavaScript
|
||||
whyJavascript = Dlaczego Firefox Send wymaga języka JavaScript?
|
||||
javascriptRequired = Send wymaga języka JavaScript
|
||||
whyJavascript = Dlaczego Send wymaga języka JavaScript?
|
||||
enableJavascript = Włącz obsługę języka JavaScript i spróbuj ponownie.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } godz. { $minutes } min
|
||||
@@ -49,8 +49,8 @@ passwordSetError = Nie można ustawić tego hasła
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Shitechnawati
|
||||
importingFile = Mukalaktia nemi…
|
||||
encryptingFile = Tikichtakawiat tinemit…
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = Shiktapua
|
||||
downloadButtonLabel = Shiktemulti
|
||||
downloadFinish = Senkiska mutemultij
|
||||
fileSizeProgress = ({ $partialSize } ipal { $totalSize })
|
||||
sendYourFilesLink = Shikejeku Firefox Send
|
||||
sendYourFilesLink = Shikejeku Send
|
||||
errorPageHeader = IJtakawtuk!
|
||||
fileTooBig = Ini tajkwilul sujsul etek pal tiktejkultia. Ma nemi san { $size }.
|
||||
linkExpiredAlt = Ne ilpika pulijtuk
|
||||
notSupportedHeader = Te tikishmatit ne mutachialuni.
|
||||
notSupportedLink = Taika te ankishmatit nutachialuni?
|
||||
notSupportedOutdatedDetail = Ini tamakalis ipal Firefox tesu kimati ne tzawaltekitilis ne kiyulitia Firefox Send. Nemi pal tikyankwilia ne mutachialuni.
|
||||
notSupportedOutdatedDetail = Ini tamakalis ipal Firefox tesu kimati ne tzawaltekitilis ne kiyulitia Send. Nemi pal tikyankwilia ne mutachialuni.
|
||||
updateFirefox = Shikyankwili Firefox
|
||||
deletePopupCancel = Shikilwi tesu
|
||||
deleteButtonHover = Shikpulu
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = Ipanpa ne tajtuli
|
||||
footerLinkPrivacy = Teichtakayu
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Ne ichtakatajkwilul tesu yek. Shikejeku uksenpa.
|
||||
javascriptRequired = Firefox Send muneki JavaScript
|
||||
whyJavascript = Taika Firefox Send muneki JavaScript?
|
||||
javascriptRequired = Send muneki JavaScript
|
||||
whyJavascript = Taika Send muneki JavaScript?
|
||||
enableJavascript = Shichiwa ma JavaScript tekiti wan shikejeku uksenpa.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -48,8 +48,8 @@ passwordSetError = Te tiweliket tiktaliat ini ichtakataketzalis
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Shiktitani
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importando…
|
||||
encryptingFile = Criptografando…
|
||||
decryptingFile = Descriptografando…
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear
|
||||
downloadButtonLabel = Baixar
|
||||
downloadFinish = Download concluído
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Experimente o Firefox Send
|
||||
sendYourFilesLink = Experimente o Send
|
||||
errorPageHeader = Oops, ocorreu um erro!
|
||||
fileTooBig = Esse arquivo ou grupo de arquivos é grande demais para ser enviado. Deve ser menor que { $size }.
|
||||
linkExpiredAlt = Link expirado
|
||||
notSupportedHeader = Seu navegador não é suportado.
|
||||
notSupportedLink = Por que meu navegador não é suportado?
|
||||
notSupportedOutdatedDetail = Infelizmente essa versão do Firefox não suporta a tecnologia web que faz o Firefox Send funcionar. Você precisa atualizar o seu navegador.
|
||||
notSupportedOutdatedDetail = Infelizmente essa versão do Firefox não suporta a tecnologia web que faz o Send funcionar. Você precisa atualizar o seu navegador.
|
||||
updateFirefox = Atualizar o Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Remover da lista
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Jurídico
|
||||
footerLinkPrivacy = Privacidade
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Senha incorreta. Tente novamente.
|
||||
javascriptRequired = O Firefox Send requer JavaScript
|
||||
whyJavascript = Por que o Firefox Send precisa do JavaScript?
|
||||
javascriptRequired = O Send requer JavaScript
|
||||
whyJavascript = Por que o Send precisa do JavaScript?
|
||||
enableJavascript = Ative o JavaScript e tente novamente.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }min
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Essa senha não pôde ser definida
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = A importar...
|
||||
encryptingFile = A encriptar...
|
||||
decryptingFile = A desencriptar...
|
||||
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear
|
||||
downloadButtonLabel = Transferir
|
||||
downloadFinish = Transferência concluída
|
||||
fileSizeProgress = ({ $partialSize } de { $totalSize })
|
||||
sendYourFilesLink = Experimentar o Firefox Send
|
||||
sendYourFilesLink = Experimentar o Send
|
||||
errorPageHeader = Algo correu mal.
|
||||
fileTooBig = Esse ficheiro é muito grande para carregar. Deve ser menor do que { $size }.
|
||||
linkExpiredAlt = Ligação expirada
|
||||
notSupportedHeader = O seu navegador não é suportado.
|
||||
notSupportedLink = Porque é que o meu navegador não é suportado?
|
||||
notSupportedOutdatedDetail = Infelizmente esta versão do Firefox não suporta a tecnologia web que faz o Firefox Send funcionar. Precisa de atualizar o seu navegador.
|
||||
notSupportedOutdatedDetail = Infelizmente esta versão do Firefox não suporta a tecnologia web que faz o Send funcionar. Precisa de atualizar o seu navegador.
|
||||
updateFirefox = Atualizar o Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Apagar
|
||||
@@ -33,8 +33,8 @@ footerLinkLegal = Informação legal
|
||||
footerLinkPrivacy = Privacidade
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Palavra-passe incorreta. Tente novamente.
|
||||
javascriptRequired = O Firefox Send requer JavaScript
|
||||
whyJavascript = Porque é que o Firefox Send requer JavaScript?
|
||||
javascriptRequired = O Send requer JavaScript
|
||||
whyJavascript = Porque é que o Send requer JavaScript?
|
||||
enableJavascript = Por favor ative o JavaScript e tente novamente.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -47,8 +47,8 @@ passwordSetError = Esta palavra-passe não pôde ser definida
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
siteFeedback = Utzijoxik
|
||||
importingFile = Ujek'ik…
|
||||
encryptingFile = Uwiqik…
|
||||
@@ -20,13 +20,13 @@ unlockButtonLabel = Utzoqopixik
|
||||
downloadButtonLabel = Uqasaxik
|
||||
downloadFinish = Tz'aqat uqasaxik
|
||||
fileSizeProgress = ({ $partialSize } rech { $totalSize })
|
||||
sendYourFilesLink = Chak'amb'ejaj Firefox Send
|
||||
sendYourFilesLink = Chak'amb'ejaj Send
|
||||
errorPageHeader = K'o man utz ta xub'ano
|
||||
fileTooBig = Le kemk'olib'al sib'alaj nim chech upaqab'isaxik. Rajawaxik nitz' chi uwach{ $size }
|
||||
linkExpiredAlt = Xq'ax uq'ijol kemwiqb'al
|
||||
notSupportedHeader = Man toq'am ta le anik'onel
|
||||
notSupportedLink = ¿Jasche man toq'am ta le nunik'onel?
|
||||
notSupportedOutdatedDetail = Chakuyu' we okib'al rech Firefox man kutoq'aj ta le k'ak'eta'm rech web' le kuya' uchuq'ab' Firefox Send. Rajawaxik kak'ak'arisaj le anik'onel.
|
||||
notSupportedOutdatedDetail = Chakuyu' we okib'al rech Firefox man kutoq'aj ta le k'ak'eta'm rech web' le kuya' uchuq'ab' Send. Rajawaxik kak'ak'arisaj le anik'onel.
|
||||
updateFirefox = Chak'ak'arisaj Firefox
|
||||
deletePopupCancel = Uq'atexik
|
||||
deleteButtonHover = Uchupik
|
||||
@@ -34,8 +34,8 @@ footerLinkLegal = Nim wuj
|
||||
footerLinkPrivacy = Echeb'alil
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Man utz ta le retokib'al. Chab'ana' chi jumul.
|
||||
javascriptRequired = Le Firefox Send kajawataj JavaScript chech
|
||||
whyJavascript = ¿jasche kajawataj JavaScript chech Firefox Send?
|
||||
javascriptRequired = Le Send kajawataj JavaScript chech
|
||||
whyJavascript = ¿jasche kajawataj JavaScript chech Send?
|
||||
enableJavascript = Chatzija' JavaScript k'ate k'u ri' chab'ana' chi jumul.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -48,8 +48,8 @@ passwordSetError = Man kkowimb'ex ta ujeqeb'axik le retokib'al
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Utaqik
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Se importă…
|
||||
encryptingFile = Se criptează…
|
||||
decryptingFile = Se decriptează…
|
||||
@@ -21,13 +21,13 @@ unlockButtonLabel = Deblochează
|
||||
downloadButtonLabel = Descarcă
|
||||
downloadFinish = Descărcare încheiată
|
||||
fileSizeProgress = ({ $partialSize } din { $totalSize })
|
||||
sendYourFilesLink = Încearcă Firefox Send
|
||||
sendYourFilesLink = Încearcă Send
|
||||
errorPageHeader = Ceva nu a funcționat!
|
||||
fileTooBig = Acest fișier este prea mare. Ar trebuie să fie sub { $size }.
|
||||
linkExpiredAlt = Link expirat
|
||||
notSupportedHeader = Browserul tău nu este suportat.
|
||||
notSupportedLink = De ce browserul meu nu este suportat?
|
||||
notSupportedOutdatedDetail = Din păcate, această versiune de Firefox nu suportă tehnologiile web din spatele Firefox Send. Va trebui să actualizezi browserul.
|
||||
notSupportedOutdatedDetail = Din păcate, această versiune de Firefox nu suportă tehnologiile web din spatele Send. Va trebui să actualizezi browserul.
|
||||
updateFirefox = Actualizează Firefox
|
||||
deletePopupCancel = Renunță
|
||||
deleteButtonHover = Șterge
|
||||
@@ -35,8 +35,8 @@ footerLinkLegal = Mențiuni legale
|
||||
footerLinkPrivacy = Confidențialitate
|
||||
footerLinkCookies = Cookie-uri
|
||||
passwordTryAgain = Parolă incorectă. Încearcă din nou.
|
||||
javascriptRequired = Firefox Send necesită JavaScript
|
||||
whyJavascript = De ce Firefox Send necesită JavaScript?
|
||||
javascriptRequired = Send necesită JavaScript
|
||||
whyJavascript = De ce Send necesită JavaScript?
|
||||
enableJavascript = Te rugăm să reactivezi JavaScript și să încerci din nou.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -49,8 +49,8 @@ passwordSetError = Această parolă nu a putut fi setată
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Импортирование...
|
||||
encryptingFile = Шифрование...
|
||||
decryptingFile = Расшифровка...
|
||||
@@ -21,13 +21,13 @@ unlockButtonLabel = Разблокировать
|
||||
downloadButtonLabel = Загрузить
|
||||
downloadFinish = Загрузка завершена
|
||||
fileSizeProgress = ({ $partialSize } из { $totalSize })
|
||||
sendYourFilesLink = Попробовать Firefox Send
|
||||
sendYourFilesLink = Попробовать Send
|
||||
errorPageHeader = Что-то пошло не так!
|
||||
fileTooBig = Файл слишком большой. Он должен быть меньше { $size }.
|
||||
linkExpiredAlt = Истёк срок действия ссылки
|
||||
notSupportedHeader = Ваш браузер не поддерживается.
|
||||
notSupportedLink = Почему мой браузер не поддерживается?
|
||||
notSupportedOutdatedDetail = К сожалению, эта версия Firefox не поддерживает веб-технологию, благодаря которой работает Firefox Send. Ваш нужно обновить свой браузер.
|
||||
notSupportedOutdatedDetail = К сожалению, эта версия Firefox не поддерживает веб-технологию, благодаря которой работает Send. Ваш нужно обновить свой браузер.
|
||||
updateFirefox = Обновить Firefox
|
||||
deletePopupCancel = Отмена
|
||||
deleteButtonHover = Удалить
|
||||
@@ -35,8 +35,8 @@ footerLinkLegal = Права
|
||||
footerLinkPrivacy = Приватность
|
||||
footerLinkCookies = Куки
|
||||
passwordTryAgain = Неверный пароль. Попробуйте снова.
|
||||
javascriptRequired = Для Firefox Send необходим JavaScript
|
||||
whyJavascript = Почему Firefox Send требуется JavaScript?
|
||||
javascriptRequired = Для Send необходим JavaScript
|
||||
whyJavascript = Почему Send требуется JavaScript?
|
||||
enableJavascript = Пожалуйста, включите JavaScript и попробуйте снова.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } ч. { $minutes } мин.
|
||||
@@ -49,8 +49,8 @@ passwordSetError = Этот пароль не может быть установ
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Importuje sa…
|
||||
encryptingFile = Šifruje sa…
|
||||
decryptingFile = Dešifruje sa…
|
||||
@@ -21,13 +21,13 @@ unlockButtonLabel = Odomknúť
|
||||
downloadButtonLabel = Prevziať
|
||||
downloadFinish = Preberanie bolo dokončené
|
||||
fileSizeProgress = ({ $partialSize } z { $totalSize })
|
||||
sendYourFilesLink = Vyskúšajte Firefox Send
|
||||
sendYourFilesLink = Vyskúšajte Send
|
||||
errorPageHeader = Vyskytol sa problém.
|
||||
fileTooBig = Súbor je príliš veľký. Mal by byť menší než { $size }.
|
||||
linkExpiredAlt = Platnosť odkazu vypršala
|
||||
notSupportedHeader = Váš prehliadač nie je podporovaný.
|
||||
notSupportedLink = Prečo nie je môj prehliadač podporovaný?
|
||||
notSupportedOutdatedDetail = Žiaľ, táto verzia Firefoxu nepodporuje webovú technológiu, ktorá poháňa Firefox Send. Budete musieť aktualizovať svoj prehliadač.
|
||||
notSupportedOutdatedDetail = Žiaľ, táto verzia Firefoxu nepodporuje webovú technológiu, ktorá poháňa Send. Budete musieť aktualizovať svoj prehliadač.
|
||||
updateFirefox = Aktualizovať Firefox
|
||||
deletePopupCancel = Zrušiť
|
||||
deleteButtonHover = Odstrániť
|
||||
@@ -35,8 +35,8 @@ footerLinkLegal = Právne informácie
|
||||
footerLinkPrivacy = Súkromie
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Nesprávne heslo. Skúste to znova.
|
||||
javascriptRequired = Firefox Send vyžaduje JavaScript
|
||||
whyJavascript = Prečo Firefox Send vyžaduje JavaScript?
|
||||
javascriptRequired = Send vyžaduje JavaScript
|
||||
whyJavascript = Prečo Send vyžaduje JavaScript?
|
||||
enableJavascript = Prosím, povoľte JavaScript a skúste to znova.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours } hod. { $minutes } min.
|
||||
@@ -49,8 +49,8 @@ passwordSetError = Heslo nešlo nastaviť
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox = Firefox
|
||||
-mozilla = Mozilla
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Firefox Send is a brand name and should not be localized.
|
||||
title = Firefox Send
|
||||
# Send is a brand name and should not be localized.
|
||||
title = Send
|
||||
importingFile = Uvažanje …
|
||||
encryptingFile = Šifriranje ...
|
||||
decryptingFile = Dešifriranje ...
|
||||
@@ -23,13 +23,13 @@ unlockButtonLabel = Odkleni
|
||||
downloadButtonLabel = Prenesi
|
||||
downloadFinish = Prenos končan
|
||||
fileSizeProgress = ({ $partialSize } od { $totalSize })
|
||||
sendYourFilesLink = Preskusite Firefox Send
|
||||
sendYourFilesLink = Preskusite Send
|
||||
errorPageHeader = Prišlo je do težave!
|
||||
fileTooBig = Ta datoteka je prevelika za nalaganje. Največja možna velikost je { $size }.
|
||||
linkExpiredAlt = Povezava je potekla
|
||||
notSupportedHeader = Vaš brskalnik ni podprt.
|
||||
notSupportedLink = Zakaj moj brskalnik ni podprt?
|
||||
notSupportedOutdatedDetail = Ta brskalnik žal ne podpira tehnologije, na kateri temelji Firefox Send. Svoj brskalnik boste morali posodobiti.
|
||||
notSupportedOutdatedDetail = Ta brskalnik žal ne podpira tehnologije, na kateri temelji Send. Svoj brskalnik boste morali posodobiti.
|
||||
updateFirefox = Posodobi Firefox
|
||||
deletePopupCancel = Prekliči
|
||||
deleteButtonHover = Izbriši
|
||||
@@ -37,8 +37,8 @@ footerLinkLegal = Pravno obvestilo
|
||||
footerLinkPrivacy = Zasebnost
|
||||
footerLinkCookies = Piškotki
|
||||
passwordTryAgain = Napačno geslo. Poskusite znova.
|
||||
javascriptRequired = Firefox Send zahteva JavaScript
|
||||
whyJavascript = Zakaj Firefox Send zahteva JavaScript?
|
||||
javascriptRequired = Send zahteva JavaScript
|
||||
whyJavascript = Zakaj Send zahteva JavaScript?
|
||||
enableJavascript = Omogočite JavaScript in poskusite znova.
|
||||
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
|
||||
expiresHoursMinutes = { $hours }h { $minutes }m
|
||||
@@ -51,8 +51,8 @@ passwordSetError = Gesla ni mogoče nastaviti
|
||||
|
||||
## Send version 2 strings
|
||||
|
||||
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Firefox Send
|
||||
# Send, Send, Firefox, Mozilla are proper names and should not be localized
|
||||
-send-brand = Send
|
||||
-send-short-brand = Send
|
||||
-firefox =
|
||||
{ $sklon ->
|
||||
|
||||