Merge branch 'remove-mozilla-branding' into 'master'

Remove Mozilla branding

See merge request timvisee/send!2
This commit is contained in:
Tim Visée 2020-10-15 17:00:32 +00:00
commit 0dd4f8d2cc
107 changed files with 579 additions and 792 deletions

View File

@ -1,7 +1,7 @@
## ##
# Firefox Send - Mozilla # Send
# #
# License https://github.com/mozilla/send/blob/master/LICENSE # License https://gitlab.com/timvisee/send/blob/master/LICENSE
## ##

View File

@ -1,6 +1,7 @@
# [![Firefox Send](./assets/icon.svg)](https://send.firefox.com/) Firefox Send # [![Send](./assets/icon.svg)](https://gitlab.com/timvisee/send/) Send
[![CircleCI](https://img.shields.io/circleci/project/github/mozilla/send.svg)](https://circleci.com/gh/mozilla/send) Based on Mozilla's [Firefox Send](https://github.com/mozilla/send),
with branding removed.
**Docs:** [FAQ](docs/faq.md), [Encryption](docs/encryption.md), [Build](docs/build.md), [Docker](docs/docker.md), [Metrics](docs/metrics.md), [More](docs/) **Docs:** [FAQ](docs/faq.md), [Encryption](docs/encryption.md), [Build](docs/build.md), [Docker](docs/docker.md), [Metrics](docs/metrics.md), [More](docs/)
@ -70,7 +71,7 @@ The server is configured with environment variables. See [server/config.js](serv
## Localization ## Localization
Firefox Send localization is managed via [Pontoon](https://pontoon.mozilla.org/projects/test-pilot-firefox-send/), not direct pull requests to the repository. If you want to fix a typo, add a new language, or simply know more about localization, please get in touch with the [existing localization team](https://pontoon.mozilla.org/teams/) for your language or Mozillas [l10n-drivers](https://wiki.mozilla.org/L10n:Mozilla_Team#Mozilla_Corporation) for guidance. Send localization is managed via [Pontoon](https://pontoon.mozilla.org/projects/test-pilot-firefox-send/), not direct pull requests to the repository. If you want to fix a typo, add a new language, or simply know more about localization, please get in touch with the [existing localization team](https://pontoon.mozilla.org/teams/) for your language or Mozillas [l10n-drivers](https://wiki.mozilla.org/L10n:Mozilla_Team#Mozilla_Corporation) for guidance.
see also [docs/localization.md](docs/localization.md) see also [docs/localization.md](docs/localization.md)

View File

@ -36,7 +36,7 @@ export default function(state, emitter) {
document.addEventListener('blur', () => (updateTitle = true)); document.addEventListener('blur', () => (updateTitle = true));
document.addEventListener('focus', () => { document.addEventListener('focus', () => {
updateTitle = false; updateTitle = false;
emitter.emit('DOMTitleChange', 'Firefox Send'); emitter.emit('DOMTitleChange', 'Send');
}); });
checkFiles(); checkFiles();
}); });

View File

@ -187,19 +187,6 @@ footer li:hover {
@apply bg-white; @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 { #password-msg::after {
content: '\200b'; content: '\200b';
} }
@ -338,11 +325,6 @@ select {
@apply bg-grey-90; @apply bg-grey-90;
} }
.mozilla-logo {
background-color: white;
border: 1px solid white;
}
@screen md { @screen md {
.main > section { .main > section {
@apply border; @apply border;

View File

@ -267,7 +267,7 @@ module.exports = function(state, emit, archive) {
try { try {
await navigator.share({ await navigator.share({
title: state.translate('-send-brand'), title: state.translate('-send-brand'),
text: `Download "${archive.name}" with Firefox Send: simple, safe file sharing`, text: `Download "${archive.name}" with Send: simple, safe file sharing`,
//state.translate('shareMessage', { name }), //state.translate('shareMessage', { name }),
url: archive.url url: archive.url
}); });

View File

@ -1,29 +1,15 @@
const html = require('choo/html'); const html = require('choo/html');
const Promo = require('./promo');
const Header = require('./header'); const Header = require('./header');
const Footer = require('./footer'); 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) { module.exports = function body(main) {
return function(state, emit) { return function(state, emit) {
const b = html` const b = html`
<body <body
class="flex flex-col items-center font-sans md:h-screen md:bg-grey-10 dark:bg-black" 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()} ${state.cache(Header, 'header').render()} ${main(state, emit)}
${main(state, emit)} ${state.cache(Footer, 'footer').render()} ${state.cache(Footer, 'footer').render()}
</body> </body>
`; `;
if (state.layout) { if (state.layout) {

View File

@ -1,7 +1,5 @@
const html = require('choo/html'); const html = require('choo/html');
const Component = require('choo/component'); const Component = require('choo/component');
const version = require('../../package.json').version;
const { browserName } = require('../utils');
class Footer extends Component { class Footer extends Component {
constructor(name, state) { constructor(name, state) {
@ -15,44 +13,19 @@ class Footer extends Component {
createElement() { createElement() {
const translate = this.state.translate; const translate = this.state.translate;
const browser = browserName();
const feedbackUrl = `https://qsurvey.mozilla.com/s3/Firefox-Send-Product-Feedback?ver=${version}&browser=${browser}`;
return html` return html`
<footer <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" 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/"> <div></div>
Mozilla
</a>
<ul <ul
class="flex flex-col md:flex-row items-start md:items-center md:justify-end" 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"> <li class="m-2">
<a href="/legal"> ${translate('footerLinkPrivacy')} </a> <a href="/legal"> ${translate('footerLinkPrivacy')} </a>
</li> </li>
<li class="m-2"> <li class="m-2">
<a href="https://www.mozilla.org/privacy/websites/#cookies"> <a href="https://gitlab.com/timvisee/send">Source</a>
${translate('footerLinkCookies')}
</a>
</li>
<li class="m-2">
<a href="https://github.com/mozilla/send">GitHub </a>
</li>
<li class="m-2">
<a
href="${feedbackUrl}"
rel="noreferrer noopener"
class="feedback-link"
alt="Feedback"
target="_blank"
>
${translate('siteFeedback')}
</a>
</li> </li>
</ul> </ul>
</footer> </footer>

View File

@ -24,7 +24,7 @@ module.exports = function(state, emit) {
> >
<span <span
>describes how we handle that information. Below are the top >describes how we handle that information. Below are the top
things you should know about Firefox Send. You can also view the things you should know about Send. You can also view the
code</span code</span
> >
<a <a

View File

@ -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;

View File

@ -17,8 +17,8 @@ module.exports = function() {
Tell us what you think. Tell us what you think.
</h1> </h1>
<p class="font-normal leading-normal text-grey-80 px-4"> <p class="font-normal leading-normal text-grey-80 px-4">
Love Firefox Send? Take a quick survey to let us know how we can make Love Send? Take a quick survey to let us know how we can make it
it better. better.
</p> </p>
<a <a
class="btn rounded-lg w-full flex-shrink-0 focus:outline my-5" class="btn rounded-lg w-full flex-shrink-0 focus:outline my-5"

View File

@ -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

View File

@ -1,6 +1,61 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<symbol id="logo" viewBox="66 0 340 64"> <svg
<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"/> xmlns:dc="http://purl.org/dc/elements/1.1/"
</symbol> xmlns:cc="http://creativecommons.org/ns#"
<use xlink:href="#logo"/> xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
</svg> xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg7"
sodipodi:docname="wordmark.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata13">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs11" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1874"
inkscape:window-height="1016"
id="namedview9"
showgrid="false"
inkscape:zoom="3.337544"
inkscape:cx="82.487885"
inkscape:cy="47.814478"
inkscape:window-x="1966"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg7" />
<symbol
id="logo"
viewBox="66 0 340 64">
<path
d="m 105.17,33.27 c -1.04895,-0.638175 -2.18377,-1.123082 -3.37,-1.44 -1.25,-0.34 -2.46,-0.63 -3.63,-0.88 l -3.08,-0.7 C 94.22073,30.069182 93.37751,29.78027 92.58,29.39 91.90449,29.074134 91.31719,28.596738 90.87,28 c -0.43741,-0.644047 -0.65489,-1.412243 -0.62,-2.19 -0.0406,-1.405196 0.53693,-2.75754 1.58,-3.7 1.06,-1 2.73,-1.44 5,-1.44 1.76437,-0.07198 3.51559,0.332147 5.07,1.17 1.35935,0.80694 2.51833,1.911219 3.39,3.23 l 2.79,-2.18 c -1.26761,-1.5933 -2.84201,-2.916072 -4.63,-3.89 -2.04373,-1.017745 -4.30804,-1.512526 -6.59,-1.44 -1.40785,-0.02195 -2.80876,0.201387 -4.14,0.66 -1.16063,0.399115 -2.24085,1.001871 -3.19,1.78 -0.8713,0.712445 -1.5718,1.611145 -2.05,2.63 -0.4819,1.011666 -0.72807,2.119452 -0.72,3.24 -0.05,1.231532 0.24064,2.452997 0.84,3.53 0.55827,0.895068 1.31002,1.653654 2.2,2.22 0.94422,0.612326 1.97599,1.077636 3.06,1.38 1.13,0.32 2.29,0.6 3.47,0.84 l 3.26,0.74 c 0.96945,0.22193 1.90929,0.557589 2.8,1 0.77256,0.367753 1.45522,0.900225 2,1.56 0.51019,0.701297 0.77072,1.553301 0.74,2.42 0.0438,1.566414 -0.62122,3.069031 -1.81,4.09 -1.52512,1.147855 -3.41702,1.699065 -5.32,1.55 -4.03416,0.15747 -7.83041,-1.90763 -9.89,-5.38 l -3,2.34 c 1.3876,1.880136 3.1735,3.430427 5.23,4.54 2.3855,1.197767 5.03194,1.782045 7.7,1.7 1.49114,0.02151 2.97422,-0.222285 4.38,-0.72 1.21788,-0.44929 2.33816,-1.128248 3.3,-2 0.88604,-0.797749 1.60053,-1.767412 2.1,-2.85 0.48895,-1.06318 0.74142,-2.219779 0.74,-3.39 0.0397,-1.336553 -0.30755,-2.656119 -1,-3.8 -0.62101,-0.95962 -1.44763,-1.769154 -2.42,-2.37 z m 27.51,-4.72 c -1.0207,-1.016684 -2.23916,-1.813109 -3.58,-2.34 -1.42831,-0.567565 -2.95311,-0.852828 -4.49,-0.84 -1.58532,-0.01887 -3.15769,0.287432 -4.62,0.9 -1.3691,0.572827 -2.61257,1.408599 -3.66,2.46 -2.1451,2.217513 -3.33989,5.184759 -3.33,8.27 -0.0138,1.54162 0.26439,3.071916 0.82,4.51 0.5255,1.363982 1.32922,2.603618 2.36,3.64 1.06096,1.043663 2.31862,1.866239 3.7,2.42 1.53222,0.610739 3.17082,0.909903 4.82,0.88 2.13421,0.08534 4.25095,-0.416179 6.12,-1.45 1.69947,-1.049265 3.13073,-2.480527 4.18,-4.18 l -2.88,-1.69 c -1.41279,2.768876 -4.32635,4.443291 -7.43,4.27 -1.09666,0.02103 -2.18793,-0.158593 -3.22,-0.53 -0.93382,-0.341463 -1.79784,-0.849713 -2.55,-1.5 -0.72694,-0.645531 -1.33013,-1.418157 -1.78,-2.28 -0.47812,-0.903522 -0.77374,-1.892313 -0.87,-2.91 h 19.59 v -1.52 c 0.0166,-1.555338 -0.27566,-3.098506 -0.86,-4.54 -0.54053,-1.333176 -1.33916,-2.54641 -2.35,-3.57 z m -16.28,6.67 c 0.18109,-0.958759 0.51895,-1.881119 1,-2.73 0.47186,-0.820757 1.07675,-1.557447 1.79,-2.18 0.72195,-0.61779 1.5482,-1.102022 2.44,-1.43 0.95944,-0.356614 1.97651,-0.532906 3,-0.52 4.04346,-0.224227 7.5255,2.82256 7.84,6.86 z M 158.82,28 c -0.83726,-0.883328 -1.8626,-1.566885 -3,-2 -1.25447,-0.462049 -2.58329,-0.689169 -3.92,-0.67 -1.60057,-0.03131 -3.18086,0.362037 -4.58,1.14 -1.28188,0.720594 -2.36173,1.752297 -3.14,3 v -3.65 h -3.29 V 48 h 3.37 V 35.67 c -0.0102,-1.001391 0.16968,-1.995625 0.53,-2.93 0.3373,-0.856524 0.84023,-1.638106 1.48,-2.3 0.62704,-0.649648 1.38331,-1.160636 2.22,-1.5 0.87089,-0.363534 1.8063,-0.547214 2.75,-0.54 1.87023,-0.128793 3.70135,0.578019 5,1.93 1.22147,1.441484 1.85048,3.292756 1.76,5.18 V 48 h 3.41 V 35.34 c 0.0211,-1.424123 -0.20214,-2.84132 -0.66,-4.19 -0.40985,-1.176324 -1.06809,-2.250653 -1.93,-3.15 z m 27,-12.42 v 14.1 c -0.43264,-0.685249 -0.96517,-1.302051 -1.58,-1.83 -0.60967,-0.53196 -1.28117,-0.98858 -2,-1.36 -0.73088,-0.369676 -1.5029,-0.651634 -2.3,-0.84 -0.78611,-0.187908 -1.59174,-0.281898 -2.4,-0.28 -1.50724,-0.0078 -3.00162,0.277523 -4.4,0.84 -1.34071,0.551089 -2.56038,1.35967 -3.59,2.38 -1.03697,1.047216 -1.85907,2.287165 -2.42,3.65 -1.17023,2.996466 -1.17023,6.323534 0,9.32 0.55964,1.361695 1.37424,2.603955 2.4,3.66 1.02081,1.031107 2.2428,1.841226 3.59,2.38 1.40561,0.561607 2.90636,0.846817 4.42,0.84 0.80981,-0.0026 1.6161,-0.106786 2.4,-0.31 0.79636,-0.199929 1.56783,-0.488392 2.3,-0.86 0.72123,-0.371416 1.39312,-0.831661 2,-1.37 0.61025,-0.540083 1.14205,-1.162767 1.58,-1.85 v 4 h 3.33 V 15.59 Z m -0.37,24.58 c -1.76276,4.229524 -6.6195,6.23041 -10.85,4.47 v 0 c -0.97862,-0.401365 -1.86378,-1.000551 -2.6,-1.76 -0.7522,-0.76312 -1.34086,-1.671634 -1.73,-2.67 -0.41974,-1.066531 -0.63023,-2.203893 -0.62,-3.35 -0.0103,-1.129892 0.20027,-2.250911 0.62,-3.3 0.39328,-0.993283 0.98151,-1.897738 1.73,-2.66 0.74207,-0.76001 1.62521,-1.368023 2.6,-1.79 2.07874,-0.890012 4.43126,-0.890012 6.51,0 0.98149,0.434716 1.87338,1.048526 2.63,1.81 0.74927,0.763509 1.33458,1.672102 1.72,2.67 0.41464,1.036611 0.62516,2.14355 0.62,3.26 -1.3e-4,1.141508 -0.22084,2.272237 -0.65,3.33 z"
id="path2"
inkscape:connector-curvature="0"
style="fill:currentColor"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
</symbol>
<use
xlink:href="#logo"
id="use5" />
</svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@ -20,7 +20,7 @@ class AndroidIndexPlugin {
const page = html` const page = html`
<html lang="en-US"> <html lang="en-US">
<head> <head>
<title>Firefox Send</title> <title>Send</title>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta <meta
name="viewport" name="viewport"

View File

@ -7,7 +7,7 @@
Adapted from [this spreadsheet](https://airtable.com/shrkcBPOLkvNFOrpp) Adapted from [this spreadsheet](https://airtable.com/shrkcBPOLkvNFOrpp)
- [ ] It should look and feel of an Android App - [ ] It should look and feel of an Android App
- [ ] It should look and feel like the Firefox Send Web Client - [ ] It should look and feel like the Send Web Client
### Main Screen ### Main Screen
- [ ] It should clearly Indicate the name of the product - [ ] It should clearly Indicate the name of the product
@ -59,7 +59,7 @@ Adapted from [this spreadsheet](https://airtable.com/shrkcBPOLkvNFOrpp)
- [ ] It should allow users to opt into notifications when their link is downloaded - [ ] It should allow users to opt into notifications when their link is downloaded
## Annotations on Mobile Spec ## Annotations on Mobile Spec
This document tracks differences between the UX spec for Firefox Send and the intended MVP. This document tracks differences between the UX spec for Send and the intended MVP.
[Spec Link](https://mozilla.invisionapp.com/share/GNN6KKOQ5XS) [Spec Link](https://mozilla.invisionapp.com/share/GNN6KKOQ5XS)

View File

@ -1,5 +1,5 @@
## Requirements ## Requirements
This document describes how to do a full deployment of Firefox Send on your own Linux server. You will need: This document describes how to do a full deployment of Send on your own Linux server. You will need:
* A working (and ideally somewhat recent) installation of NodeJS and NPM * A working (and ideally somewhat recent) installation of NodeJS and NPM
* GIT * GIT
@ -12,14 +12,14 @@ For Debian/Ubuntu systems this probably just means something like this:
## Building ## Building
* We assume an already configured virtual-host on your webserver with an existing empty htdocs folder * We assume an already configured virtual-host on your webserver with an existing empty htdocs folder
* First, remove that htdocs folder - we will replace it with Firefox Send's version now * First, remove that htdocs folder - we will replace it with Send's version now
* git clone https://github.com/mozilla/send.git htdocs * git clone https://github.com/mozilla/send.git htdocs
* Make now sure you are NOT root but rather the user your webserver is serving files under (e.g. "su www-data" or whoever the owner of your htdocs folder is) * Make now sure you are NOT root but rather the user your webserver is serving files under (e.g. "su www-data" or whoever the owner of your htdocs folder is)
* npm install * npm install
* npm run build * npm run build
## Running ## Running
To have a permanently running version of Firefox Send as a background process: To have a permanently running version of Send as a background process:
* Create a file "run.sh" with: * Create a file "run.sh" with:
``` ```
@ -29,11 +29,11 @@ nohup su www-data -c "npm run prod" 2>/dev/null &
* chmod +x run.sh * chmod +x run.sh
* ./run.sh * ./run.sh
Now the Firefox Send backend should be running on port 1443. You can check with: Now the Send backend should be running on port 1443. You can check with:
* telnet localhost 1443 * telnet localhost 1443
## Reverse Proxy ## Reverse Proxy
Of course, we don't want to expose the service on port 1443. Instead we want our normal webserver to forward all requests to Firefox send ("Reverse proxy"). Of course, we don't want to expose the service on port 1443. Instead we want our normal webserver to forward all requests to Send ("Reverse proxy").
# Apache webserver # Apache webserver

View File

@ -1,4 +1,4 @@
## How big of a file can I transfer with Firefox Send? ## How big of a file can I transfer with Send?
There is a 2.5GB file size limit built in to Send(1GB for non-signed in users), however, in practice you may There is a 2.5GB file size limit built in to Send(1GB for non-signed in users), however, in practice you may
be unable to send files that large. Send encrypts and decrypts the files in be unable to send files that large. Send encrypts and decrypts the files in
@ -17,9 +17,9 @@ Many browsers support this standard and should work fine, but some have not
implemented it yet (mobile browsers lag behind on this, in implemented it yet (mobile browsers lag behind on this, in
particular). particular).
## Why does Firefox Send require JavaScript? ## Why does Send require JavaScript?
Firefox Send uses JavaScript to: Send uses JavaScript to:
- Encrypt and decrypt files locally on the client instead of the server. - Encrypt and decrypt files locally on the client instead of the server.
- Render the user interface. - Render the user interface.

View File

@ -2,7 +2,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en-US"> <html lang="en-US">
<head> <head>
<title>Firefox Send</title> <title>Send</title>
<link href="index.css" rel="stylesheet"> <link href="index.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head> </head>
@ -14,4 +14,4 @@
<script src="ios.js"></script> <script src="ios.js"></script>
</body> </body>
</html> </html>

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Comentarios siteFeedback = Comentarios
importingFile = Se ye importando… importingFile = Se ye importando…
encryptingFile = Se ye cifrando… encryptingFile = Se ye cifrando…
@ -20,13 +19,13 @@ unlockButtonLabel = Desblocar
downloadButtonLabel = Descargar downloadButtonLabel = Descargar
downloadFinish = Descarga completa downloadFinish = Descarga completa
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Preba Firefox Send sendYourFilesLink = Preba Send
errorPageHeader = I ha habiu bell problema! errorPageHeader = I ha habiu bell problema!
fileTooBig = Ixe fichero ye masiau gran pa cargar-lo. Ha de tener menos de { $size } fileTooBig = Ixe fichero ye masiau gran pa cargar-lo. Ha de tener menos de { $size }
linkExpiredAlt = Lo vinclo ye caducau linkExpiredAlt = Lo vinclo ye caducau
notSupportedHeader = Lo suyo navegador no ye compatible notSupportedHeader = Lo suyo navegador no ye compatible
notSupportedLink = Per qué no ye compatible lo mío navegador? 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 updateFirefox = Esviellar Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Borrar deleteButtonHover = Borrar
@ -34,8 +33,8 @@ footerLinkLegal = Aviso legal
footerLinkPrivacy = Privacidat footerLinkPrivacy = Privacidat
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = La contrasenya ye incorrecta. Torne-lo a intentar. passwordTryAgain = La contrasenya ye incorrecta. Torne-lo a intentar.
javascriptRequired = Firefox Send necesita JavaScript javascriptRequired = Send necesita JavaScript
whyJavascript = Per qué Firefox Send necesita JavaScript? whyJavascript = Per qué Send necesita JavaScript?
enableJavascript = Activa JavaScript y torna-lo a intentar. 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" # 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 expiresHoursMinutes = { $hours } h { $minutes } min
@ -48,8 +47,7 @@ passwordSetError = No s'ha puesto definir la clau
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,4 +1,3 @@
# Firefox Send is a brand name and should not be localized.
title = فَيَرفُكس سِنْد title = فَيَرفُكس سِنْد
siteFeedback = الانطباعات siteFeedback = الانطباعات
importingFile = يستورد… importingFile = يستورد…
@ -56,8 +55,7 @@ passwordSetError = يجب ألا تُضبط كلمة السر هذه
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Comentarios siteFeedback = Comentarios
importingFile = Importando... importingFile = Importando...
encryptingFile = Cifrando... encryptingFile = Cifrando...
@ -20,13 +19,13 @@ unlockButtonLabel = Desbloquiar
downloadButtonLabel = Baxar downloadButtonLabel = Baxar
downloadFinish = Completóse la descarga downloadFinish = Completóse la descarga
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Probar Firefox Send sendYourFilesLink = Probar Send
errorPageHeader = ¡Asocedió daqué malo! errorPageHeader = ¡Asocedió daqué malo!
fileTooBig = Esti ficheru ye mui grande como pa xubilu. Debería tener menos de { $size }. fileTooBig = Esti ficheru ye mui grande como pa xubilu. Debería tener menos de { $size }.
linkExpiredAlt = Caducó l'enllaz linkExpiredAlt = Caducó l'enllaz
notSupportedHeader = El to restolador nun ta sofitáu. notSupportedHeader = El to restolador nun ta sofitáu.
notSupportedLink = ¿Por qué'l mio 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 updateFirefox = Anovar Firefox
deletePopupCancel = Encaboxar deletePopupCancel = Encaboxar
deleteButtonHover = Desaniciar deleteButtonHover = Desaniciar
@ -34,8 +33,8 @@ footerLinkLegal = Llegal
footerLinkPrivacy = Privacidá footerLinkPrivacy = Privacidá
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = La contraseña ye incorreuta. Volvi tentalo. passwordTryAgain = La contraseña ye incorreuta. Volvi tentalo.
javascriptRequired = Firefox Send rique JavaScript javascriptRequired = Send rique JavaScript
whyJavascript = ¿Por qué Firefox Send rique JavaScript? whyJavascript = ¿Por qué Send rique JavaScript?
enableJavascript = Activa JavaScript y volvi tentalo, por favor. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Nun pudo afitase esta contraseña
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Geri dönüş siteFeedback = Geri dönüş
importingFile = İdxal edilir… importingFile = İdxal edilir…
encryptingFile = Şifrələnir... encryptingFile = Şifrələnir...
@ -20,13 +19,13 @@ unlockButtonLabel = Aç
downloadButtonLabel = Endir downloadButtonLabel = Endir
downloadFinish = Endirmə Tamamlandı downloadFinish = Endirmə Tamamlandı
fileSizeProgress = ({ $partialSize } / { $totalSize }) fileSizeProgress = ({ $partialSize } / { $totalSize })
sendYourFilesLink = Firefox Send Yoxla sendYourFilesLink = Send Yoxla
errorPageHeader = Nəsə səhv getdi! 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. 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 linkExpiredAlt = Keçidin vaxtı çıxıb
notSupportedHeader = Səyyahınız dəstəklənmir. notSupportedHeader = Səyyahınız dəstəklənmir.
notSupportedLink = Səyyahım niyə 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ə updateFirefox = Firefox-u Yenilə
deletePopupCancel = Ləğv et deletePopupCancel = Ləğv et
deleteButtonHover = Sil deleteButtonHover = Sil
@ -34,8 +33,8 @@ footerLinkLegal = Hüquqi
footerLinkPrivacy = Məxfilik footerLinkPrivacy = Məxfilik
footerLinkCookies = Çərəzlər footerLinkCookies = Çərəzlər
passwordTryAgain = Səhv parol. Təkrar yoxlayın. passwordTryAgain = Səhv parol. Təkrar yoxlayın.
javascriptRequired = Firefox Send üçün JavaScript lazımdır javascriptRequired = Send üçün JavaScript lazımdır
whyJavascript = Firefox Send niyə JavaScript tələb edir? whyJavascript = Send niyə JavaScript tələb edir?
enableJavascript = Lütfən JavaScript-i aktiv edib təkrar yoxlayın. 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" # 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 expiresHoursMinutes = { $hours } saat { $minutes } dəq
@ -48,8 +47,7 @@ passwordSetError = Parol qurula bilmədi
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Nikan uelis tikijkuilos tein tiknemilijtos siteFeedback = Nikan uelis tikijkuilos tein tiknemilijtos
importingFile = Mokalakijtok… importingFile = Mokalakijtok…
encryptingFile = Motatijtok… encryptingFile = Motatijtok…
@ -18,13 +17,13 @@ unlockButtonLabel = Xikajchiua tein amo kikaua maj tekiti
downloadButtonLabel = Xiktemoui downloadButtonLabel = Xiktemoui
downloadFinish = Nochi motemouij ya downloadFinish = Nochi motemouij ya
fileSizeProgress = ({ $partialSize } itech { $totalSize }) fileSizeProgress = ({ $partialSize } itech { $totalSize })
sendYourFilesLink = Xikejeko Firefox Send sendYourFilesLink = Xikejeko Send
errorPageHeader = ¡Tensa amo kuali kisak! errorPageHeader = ¡Tensa amo kuali kisak!
fileTooBig = Nejin tajkuilol semi ueyi. Moneki amo panos { $size } fileTooBig = Nejin tajkuilol semi ueyi. Moneki amo panos { $size }
linkExpiredAlt = Nejin tein tikpatskilij amo tekititok ya linkExpiredAlt = Nejin tein tikpatskilij amo tekititok ya
notSupportedHeader = Monavegador amo kualtia. notSupportedHeader = Monavegador amo kualtia.
notSupportedLink = ¿Keyej nonavegador 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 updateFirefox = Maj Firefox moyankuili
deletePopupCancel = Maj motsakuili uan amo tami tein kichiujtok deletePopupCancel = Maj motsakuili uan amo tami tein kichiujtok
deleteButtonHover = Maj majchiua deleteButtonHover = Maj majchiua
@ -32,8 +31,8 @@ footerLinkLegal = Keniuj motekitiltis
footerLinkPrivacy = Keniuj tikyekpiaj tein tikseliaj footerLinkPrivacy = Keniuj tikyekpiaj tein tikseliaj
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Amo yektik ichtakatajtol. Oksepa xikijkuilo. passwordTryAgain = Amo yektik ichtakatajtol. Oksepa xikijkuilo.
javascriptRequired = Firefox Send kineki maj moajsi JavaScript javascriptRequired = Send kineki maj moajsi JavaScript
whyJavascript = ¿Keyej Firefox Send kineki maj moajsi JavaScript? whyJavascript = ¿Keyej Send kineki maj moajsi JavaScript?
enableJavascript = Se kualtakayot, xikaua maj peua tekiti JavaScript uan oksepa xikejeko. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -46,8 +45,7 @@ passwordSetError = Nejin ichtakatajtol amo uel kiixtaliani
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Xiktitani -send-short-brand = Xiktitani
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Водгук siteFeedback = Водгук
importingFile = Імпартаванне... importingFile = Імпартаванне...
encryptingFile = Зашыфроўка... encryptingFile = Зашыфроўка...
@ -22,13 +21,13 @@ unlockButtonLabel = Разблакаваць
downloadButtonLabel = Сцягнуць downloadButtonLabel = Сцягнуць
downloadFinish = Сцягванне скончана downloadFinish = Сцягванне скончана
fileSizeProgress = ({ $partialSize } з { $totalSize }) fileSizeProgress = ({ $partialSize } з { $totalSize })
sendYourFilesLink = Паспрабуйце Firefox Send sendYourFilesLink = Паспрабуйце Send
errorPageHeader = Нешта пайшло не так! errorPageHeader = Нешта пайшло не так!
fileTooBig = Гэты файл надта вялікі. Ён мусіць быць меншым за { $size } fileTooBig = Гэты файл надта вялікі. Ён мусіць быць меншым за { $size }
linkExpiredAlt = Тэрмін дзеяння спасылкі сышоў linkExpiredAlt = Тэрмін дзеяння спасылкі сышоў
notSupportedHeader = Ваш браўзер не падтрымліваецца. notSupportedHeader = Ваш браўзер не падтрымліваецца.
notSupportedLink = Чаму мой браўзер не падтрымліваецца? notSupportedLink = Чаму мой браўзер не падтрымліваецца?
notSupportedOutdatedDetail = На жаль, гэтая версія Firefox не падтрымлівае вэб-тэхналогію, што забяспечвае працу Firefox Send. Вам трэба абнавіць свой браўзер. notSupportedOutdatedDetail = На жаль, гэтая версія Firefox не падтрымлівае вэб-тэхналогію, што забяспечвае працу Send. Вам трэба абнавіць свой браўзер.
updateFirefox = Абнавіць Firefox updateFirefox = Абнавіць Firefox
deletePopupCancel = Скасаваць deletePopupCancel = Скасаваць
deleteButtonHover = Выдаліць deleteButtonHover = Выдаліць
@ -36,8 +35,8 @@ footerLinkLegal = Прававыя звесткі
footerLinkPrivacy = Прыватнасць footerLinkPrivacy = Прыватнасць
footerLinkCookies = Кукі footerLinkCookies = Кукі
passwordTryAgain = Некарэктны пароль. Паспрабуйце зноў. passwordTryAgain = Некарэктны пароль. Паспрабуйце зноў.
javascriptRequired = Для Firefox Send неабходны JavaScript javascriptRequired = Для Send неабходны JavaScript
whyJavascript = Чаму для Firefox Send неабходны JavaScript? whyJavascript = Чаму для Send неабходны JavaScript?
enableJavascript = Калі ласка, уключыце JavaScript і паспрабуйце зноў. enableJavascript = Калі ласка, уключыце JavaScript і паспрабуйце зноў.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } г. { $minutes } хв. expiresHoursMinutes = { $hours } г. { $minutes } хв.
@ -50,8 +49,7 @@ passwordSetError = Гэты пароль немагчыма паставіць
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = প্রতিক্রিয়া siteFeedback = প্রতিক্রিয়া
importingFile = ইম্পোর্ট হচ্ছে... importingFile = ইম্পোর্ট হচ্ছে...
encryptingFile = ইনক্রিপট হচ্ছে... encryptingFile = ইনক্রিপট হচ্ছে...
@ -20,13 +19,13 @@ unlockButtonLabel = আনলক করুন
downloadButtonLabel = ডাউনলোড downloadButtonLabel = ডাউনলোড
downloadFinish = ডাউনলোড সম্পন্ন downloadFinish = ডাউনলোড সম্পন্ন
fileSizeProgress = ({ $totalSize } এর { $partialSize }) fileSizeProgress = ({ $totalSize } এর { $partialSize })
sendYourFilesLink = Firefox Send পরখ করে দেখুন sendYourFilesLink = Send পরখ করে দেখুন
errorPageHeader = কোন সমস্যা হয়েছে! errorPageHeader = কোন সমস্যা হয়েছে!
fileTooBig = ফাইলটি আপলোড করার জন্যে খুব বড়। এটি { $size } এর চেয়ে কম হওয়া উচিত। fileTooBig = ফাইলটি আপলোড করার জন্যে খুব বড়। এটি { $size } এর চেয়ে কম হওয়া উচিত।
linkExpiredAlt = লিঙ্ক মেয়াদউত্তীর্ণ হয়েছে linkExpiredAlt = লিঙ্ক মেয়াদউত্তীর্ণ হয়েছে
notSupportedHeader = আপনার ব্রাউজার সমর্থিত নয়। notSupportedHeader = আপনার ব্রাউজার সমর্থিত নয়।
notSupportedLink = আমার ব্রাউজার কেন সমর্থিত নয়? notSupportedLink = আমার ব্রাউজার কেন সমর্থিত নয়?
notSupportedOutdatedDetail = দুর্ভাগ্যবশত Firefox এই সংস্করণটি ওয়েব প্রযুক্তিকে সমর্থন করে না যা Firefox Send কে সমর্থন করে। আপনাকে আপনার ব্রাউজারটি আপডেট করতে হবে। notSupportedOutdatedDetail = দুর্ভাগ্যবশত Firefox এই সংস্করণটি ওয়েব প্রযুক্তিকে সমর্থন করে না যা Send কে সমর্থন করে। আপনাকে আপনার ব্রাউজারটি আপডেট করতে হবে।
updateFirefox = Firefox হালনাগাদ করুন updateFirefox = Firefox হালনাগাদ করুন
deletePopupCancel = বাতিল deletePopupCancel = বাতিল
deleteButtonHover = মুছে ফেলুন deleteButtonHover = মুছে ফেলুন
@ -34,8 +33,8 @@ footerLinkLegal = আইনগত
footerLinkPrivacy = গোপনীয়তা footerLinkPrivacy = গোপনীয়তা
footerLinkCookies = কুকি footerLinkCookies = কুকি
passwordTryAgain = ভুল পাসওয়ার্ড। আবার চেষ্টা করুন। passwordTryAgain = ভুল পাসওয়ার্ড। আবার চেষ্টা করুন।
javascriptRequired = Firefox Send এর জাভাস্ক্রিপ্ট প্রয়োজন। javascriptRequired = Send এর জাভাস্ক্রিপ্ট প্রয়োজন।
whyJavascript = কেন Firefox Send এর জাভাস্ক্রিপ্ট প্রয়োজন? whyJavascript = কেন Send এর জাভাস্ক্রিপ্ট প্রয়োজন?
enableJavascript = জাভাস্ক্রিপ্ট সক্রিয় করুন এবং আবার চেষ্টা করুন। enableJavascript = জাভাস্ক্রিপ্ট সক্রিয় করুন এবং আবার চেষ্টা করুন।
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }ঘ { $minutes }মি expiresHoursMinutes = { $hours }ঘ { $minutes }মি
@ -48,8 +47,7 @@ passwordSetError = এই পাসওয়ার্ড সেট করা য
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = প্রেরণ -send-short-brand = প্রেরণ
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Roit hoc'h ali siteFeedback = Roit hoc'h ali
importingFile = Oc'h enporzhiañ … importingFile = Oc'h enporzhiañ …
encryptingFile = Oc'h enrinegañ.. encryptingFile = Oc'h enrinegañ..
@ -26,13 +25,13 @@ unlockButtonLabel = Dibrennañ
downloadButtonLabel = Pellgargañ downloadButtonLabel = Pellgargañ
downloadFinish = Pellgargadur echu downloadFinish = Pellgargadur echu
fileSizeProgress = ({ $partialSize } war { $totalSize }) fileSizeProgress = ({ $partialSize } war { $totalSize })
sendYourFilesLink = Esaeit Firefox Send sendYourFilesLink = Esaeit Send
errorPageHeader = Degouezhet ez eus bet ur fazi! 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 } fileTooBig = Re vras eo ar restr-mañ evit e pellgas. Rankout a ra bezañ nebeutoc'h eget { $size }
linkExpiredAlt = Ere diamzeret linkExpiredAlt = Ere diamzeret
notSupportedHeader = N'eo ket skoret ho merdeer. notSupportedHeader = N'eo ket skoret ho merdeer.
notSupportedLink = Perak n'eo ket skoret ma 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 updateFirefox = Hizivaat Firefox
deletePopupCancel = Nullañ deletePopupCancel = Nullañ
deleteButtonHover = Dilemel deleteButtonHover = Dilemel
@ -40,8 +39,8 @@ footerLinkLegal = Lezennel
footerLinkPrivacy = Buhez prevez footerLinkPrivacy = Buhez prevez
footerLinkCookies = Toupinoù footerLinkCookies = Toupinoù
passwordTryAgain = Ger-tremen direizh. Klaskit en-dro. passwordTryAgain = Ger-tremen direizh. Klaskit en-dro.
javascriptRequired = Firefox Send a azgoulenn Javascript javascriptRequired = Send a azgoulenn Javascript
whyJavascript = Perak e azgoulenn Firefox Send Javascript? whyJavascript = Perak e azgoulenn Send Javascript?
enableJavascript = Gweredekait Javascript ha klaskit en-dro. 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" # 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 expiresHoursMinutes = { $hours }e { $minutes }m
@ -54,8 +53,7 @@ passwordSetError = N'haller ket despizañ ar ger-tremen
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteSubtitle = web eksperiment siteSubtitle = web eksperiment
siteFeedback = Povratne informacije siteFeedback = Povratne informacije
uploadPageHeader = Privatno, šifrovano dijeljenje datoteka uploadPageHeader = Privatno, šifrovano dijeljenje datoteka
@ -57,16 +56,14 @@ unlockInputLabel = Unesite lozinku
unlockInputPlaceholder = Lozinka unlockInputPlaceholder = Lozinka
unlockButtonLabel = Otključaj unlockButtonLabel = Otključaj
downloadFileTitle = Preuzmi šifrovanu datoteku downloadFileTitle = Preuzmi šifrovanu datoteku
# Firefox 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.
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.
# Text and title used on the download link/button (indicates an action). # Text and title used on the download link/button (indicates an action).
downloadButtonLabel = Preuzmi downloadButtonLabel = Preuzmi
downloadNotification = Vaše preuzimanje je završeno. downloadNotification = Vaše preuzimanje je završeno.
downloadFinish = Preuzimanje završeno downloadFinish = Preuzimanje završeno
# This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)". # This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)".
fileSizeProgress = ({ $partialSize } od { $totalSize }) fileSizeProgress = ({ $partialSize } od { $totalSize })
# Firefox Send is a brand name and should not be localized. sendYourFilesLink = Probajte Send
sendYourFilesLink = Probajte Firefox Send
downloadingPageProgress = Preuzimanje { $filename } ({ $size }) downloadingPageProgress = Preuzimanje { $filename } ({ $size })
downloadingPageMessage = Ostavite ovaj tab otvorenim dok ne dobavimo vašu datoteku i dok je ne dešifrujemo. downloadingPageMessage = Ostavite ovaj tab otvorenim dok ne dobavimo vašu datoteku i dok je ne dešifrujemo.
errorAltText = Greška pri otpremanju errorAltText = Greška pri otpremanju
@ -77,10 +74,9 @@ fileTooBig = Ta datoteka je prevelika za otpremanje. Treba biti manja od { $size
linkExpiredAlt = Veza istekla linkExpiredAlt = Veza istekla
expiredPageHeader = Veza je istekla ili nikad nije postojala! expiredPageHeader = Veza je istekla ili nikad nije postojala!
notSupportedHeader = Vaš pretraživač nije podržan. 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 Send. Trebate probati drugi pretraživač. Preporučujemo Firefox!
notSupportedDetail = Ovaj pretraživač nažalost ne podržava web tehnologiju koja omogućava Firefox Send. Trebate probati drugi pretraživač. Preporučujemo Firefox!
notSupportedLink = Zašto moj pretraživač nije podržan? 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 updateFirefox = Ažuriraj Firefox
downloadFirefoxButtonSub = Besplatno preuzimanje downloadFirefoxButtonSub = Besplatno preuzimanje
uploadedFile = Datoteka uploadedFile = Datoteka
@ -90,8 +86,8 @@ expiryFileList = Ističe za
deleteFileList = Izbriši deleteFileList = Izbriši
nevermindButton = Zanemari nevermindButton = Zanemari
legalHeader = Uslovi i privatnost 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>. 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 Firefox Send web stranice podlaže Mozillinom <a>obavještenju o privatnosti na web stranicama</a> i <a>uslovima korištenja web stranica</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? deletePopupText = Izbrisati ovu datoteku?
deletePopupYes = Da deletePopupYes = Da
deletePopupCancel = Otkaži deletePopupCancel = Otkaži
@ -108,8 +104,8 @@ addPasswordButton = Dodaj lozinku
changePasswordButton = Promijeni changePasswordButton = Promijeni
passwordTryAgain = Netačna lozinka. Pokušajte ponovo. passwordTryAgain = Netačna lozinka. Pokušajte ponovo.
reportIPInfringement = Prijavite IP prekršaj reportIPInfringement = Prijavite IP prekršaj
javascriptRequired = Firefox Send zahtjeva JavaScript javascriptRequired = Send zahtjeva JavaScript
whyJavascript = Zašto Firefox Send zahtjeva JavaScript? whyJavascript = Zašto Send zahtjeva JavaScript?
enableJavascript = Molimo omogućite JavaScript i pokušajte ponovo. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Comentaris siteFeedback = Comentaris
importingFile = S'està important… importingFile = S'està important…
encryptingFile = S'està xifrant… encryptingFile = S'està xifrant…
@ -20,13 +19,13 @@ unlockButtonLabel = Desbloca
downloadButtonLabel = Baixa downloadButtonLabel = Baixa
downloadFinish = Ha acabat la baixada downloadFinish = Ha acabat la baixada
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Proveu el Firefox Send sendYourFilesLink = Proveu el Send
errorPageHeader = Hi ha hagut un problema errorPageHeader = Hi ha hagut un problema
fileTooBig = Aquest fitxer és massa gros per pujar-lo. Ha de tenir menys de { $size }. fileTooBig = Aquest fitxer és massa gros per pujar-lo. Ha de tenir menys de { $size }.
linkExpiredAlt = L'enllaç ha caducat linkExpiredAlt = L'enllaç ha caducat
notSupportedHeader = El vostre navegador no és compatible. notSupportedHeader = El vostre navegador no és compatible.
notSupportedLink = Per què el meu 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 updateFirefox = Actualitza el Firefox
deletePopupCancel = Cancel·la deletePopupCancel = Cancel·la
deleteButtonHover = Suprimeix deleteButtonHover = Suprimeix
@ -34,8 +33,8 @@ footerLinkLegal = Avís legal
footerLinkPrivacy = Privadesa footerLinkPrivacy = Privadesa
footerLinkCookies = Galetes footerLinkCookies = Galetes
passwordTryAgain = La contrasenya és incorrecta. Torneu-ho a provar. passwordTryAgain = La contrasenya és incorrecta. Torneu-ho a provar.
javascriptRequired = El Firefox Send necessita JavaScript javascriptRequired = El Send necessita JavaScript
whyJavascript = Per què el Firefox Send necessita JavaScript? whyJavascript = Per què el Send necessita JavaScript?
enableJavascript = Activeu el JavaScript i torneu-ho a provar. 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" # 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 expiresHoursMinutes = { $hours } h { $minutes } min
@ -48,9 +47,8 @@ passwordSetError = No s'ha pogut definir la contrasenya
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send -send-short-brand = Send
-send-short-brand = Firefox Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
introTitle = Compartició de fitxers senzilla i privada introTitle = Compartició de fitxers senzilla i privada

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Rutzijol siteFeedback = Rutzijol
importingFile = Tajin nijik… importingFile = Tajin nijik…
encryptingFile = Tajin newäx rusik'ixik… encryptingFile = Tajin newäx rusik'ixik…
@ -20,13 +19,13 @@ unlockButtonLabel = Titzij chik
downloadButtonLabel = Tiqasäx downloadButtonLabel = Tiqasäx
downloadFinish = Xtz'aqät qasanïk downloadFinish = Xtz'aqät qasanïk
fileSizeProgress = ({ $partialSize } richin { $totalSize }) fileSizeProgress = ({ $partialSize } richin { $totalSize })
sendYourFilesLink = Titojtob'ëx Firefox Send sendYourFilesLink = Titojtob'ëx Send
errorPageHeader = ¡K'o ri man ütz ta xub'än! 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 }. 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 linkExpiredAlt = Xk'is ruq'ijul ri ximonel
notSupportedHeader = Man koch'el ta ri awokik'amaya'l. notSupportedHeader = Man koch'el ta ri awokik'amaya'l.
notSupportedLink = ¿Achike ruma man nikoch' taq ri wokik'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 updateFirefox = Tik'ex ri Firefox
deletePopupCancel = Tiq'at deletePopupCancel = Tiq'at
deleteButtonHover = Tiyuj deleteButtonHover = Tiyuj
@ -34,8 +33,8 @@ footerLinkLegal = Taqanel tzijol
footerLinkPrivacy = Ichinanem footerLinkPrivacy = Ichinanem
footerLinkCookies = Taq kaxlanwey footerLinkCookies = Taq kaxlanwey
passwordTryAgain = Itzel ri ewan tzij. Tatojtob'ej chik. passwordTryAgain = Itzel ri ewan tzij. Tatojtob'ej chik.
javascriptRequired = K'atzinel JavaScript chi re ri Firefox Send javascriptRequired = K'atzinel JavaScript chi re ri Send
whyJavascript = ¿Achike ruma toq ri Firefox Send nrajo' JavaScript? whyJavascript = ¿Achike ruma toq ri Send nrajo' JavaScript?
enableJavascript = Titz'ij JavaScript richin nitojtob'ëx chik. 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" # 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 expiresHoursMinutes = { $hours }r { $minutes }ch
@ -48,8 +47,7 @@ passwordSetError = Man tikirel ta ninuk' re ewan tzij re'
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Titaq -send-short-brand = Titaq
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = ڕەخنەوپێشنیار siteFeedback = ڕەخنەوپێشنیار
importingFile = هاوردەکردن... importingFile = هاوردەکردن...
encryptingFile = بەهێماکردن... encryptingFile = بەهێماکردن...
@ -26,7 +25,7 @@ fileTooBig = ئەم پەڕگەیە زۆر گەورەیە بۆ بارکردن. پ
linkExpiredAlt = بەستەر بەسەرچووە linkExpiredAlt = بەستەر بەسەرچووە
notSupportedHeader = وێبگەڕەکەت پشتگیری ناکرێت notSupportedHeader = وێبگەڕەکەت پشتگیری ناکرێت
notSupportedLink = بۆ وێبگەڕەکەم پشتگیری ناکرێت؟ notSupportedLink = بۆ وێبگەڕەکەم پشتگیری ناکرێت؟
notSupportedOutdatedDetail = بەداخەوە ئەم وەشانەی Firefox پشتگیری ئەو جۆرە تەکنەلۆژییە ناکات کە پێویستە بۆ Firefox Send. پێویستە وێبگەڕەکەت نوێبکەیتەوە. notSupportedOutdatedDetail = بەداخەوە ئەم وەشانەی Firefox پشتگیری ئەو جۆرە تەکنەلۆژییە ناکات کە پێویستە بۆ Send. پێویستە وێبگەڕەکەت نوێبکەیتەوە.
updateFirefox = فاەرفۆکس نوێبکەرەوە updateFirefox = فاەرفۆکس نوێبکەرەوە
deletePopupCancel = پاشگەزبوونەوە deletePopupCancel = پاشگەزبوونەوە
deleteButtonHover = سڕینەوە deleteButtonHover = سڕینەوە
@ -48,8 +47,7 @@ passwordSetError = ناتوانرێت وشەی تێپەڕ دابنرێت
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Zpětná vazba siteFeedback = Zpětná vazba
importingFile = Probíhá import… importingFile = Probíhá import…
encryptingFile = Probíhá šifrování… encryptingFile = Probíhá šifrování…
@ -22,13 +21,13 @@ unlockButtonLabel = Odemknout
downloadButtonLabel = Stáhnout downloadButtonLabel = Stáhnout
downloadFinish = Stahování dokončeno downloadFinish = Stahování dokončeno
fileSizeProgress = ({ $partialSize } z { $totalSize }) fileSizeProgress = ({ $partialSize } z { $totalSize })
sendYourFilesLink = Vyzkoušet Firefox Send sendYourFilesLink = Vyzkoušet Send
errorPageHeader = Nastala chyba! errorPageHeader = Nastala chyba!
fileTooBig = Tento soubor je příliš veliký. Velikost nahrávaných souborů by neměla překročit { $size }. fileTooBig = Tento soubor je příliš veliký. Velikost nahrávaných souborů by neměla překročit { $size }.
linkExpiredAlt = Platnost odkazu vypršela linkExpiredAlt = Platnost odkazu vypršela
notSupportedHeader = Váš prohlížeč není podporován. notSupportedHeader = Váš prohlížeč není podporován.
notSupportedLink = Proč není můj prohlížeč podporovaný? 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 updateFirefox = Aktualizovat Firefox
deletePopupCancel = Zrušit deletePopupCancel = Zrušit
deleteButtonHover = Smazat deleteButtonHover = Smazat
@ -36,8 +35,8 @@ footerLinkLegal = Právní informace
footerLinkPrivacy = Soukromí footerLinkPrivacy = Soukromí
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Špatné heslo. Zkuste to znovu. passwordTryAgain = Špatné heslo. Zkuste to znovu.
javascriptRequired = Firefox Send vyžaduje povolený JavaScript javascriptRequired = Send vyžaduje povolený JavaScript
whyJavascript = Proč Firefox Send vyžaduje povolený JavaScript? whyJavascript = Proč Send vyžaduje povolený JavaScript?
enableJavascript = Povolte JavaScript a zkuste to znovu. 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" # 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 expiresHoursMinutes = { $hours } h { $minutes } m
@ -50,16 +49,15 @@ passwordSetError = Toto heslo nemohlo být nastaveno
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
-send-brand = -send-brand =
{ $case -> { $case ->
*[nom] Firefox Send *[nom] Send
[gen] Firefoxu Send [gen] Send
[dat] Firefoxu Send [dat] Send
[acc] Firefox Send [acc] Send
[voc] Firefoxe Send [voc] Send
[loc] Firefoxu Send [loc] Send
[ins] Firefoxem Send [ins] Send
} }
-send-short-brand = -send-short-brand =
{ $case -> { $case ->

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Adborth siteFeedback = Adborth
importingFile = Mewnforio… importingFile = Mewnforio…
encryptingFile = Wrthi'n amgryptio… encryptingFile = Wrthi'n amgryptio…
@ -28,13 +27,13 @@ unlockButtonLabel = Datgloi
downloadButtonLabel = Llwytho i Lawr downloadButtonLabel = Llwytho i Lawr
downloadFinish = Llwytho wedi Gorffen downloadFinish = Llwytho wedi Gorffen
fileSizeProgress = ({ $partialSize } o { $totalSize }) fileSizeProgress = ({ $partialSize } o { $totalSize })
sendYourFilesLink = Rhowch gynnig ar Firefox Send sendYourFilesLink = Rhowch gynnig ar Send
errorPageHeader = Aeth rhywbeth o'i le! errorPageHeader = Aeth rhywbeth o'i le!
fileTooBig = Mae'r ffeil yn rhy fawr i'w llwytho. Dylai fod yn llai na { $size }. fileTooBig = Mae'r ffeil yn rhy fawr i'w llwytho. Dylai fod yn llai na { $size }.
linkExpiredAlt = Mae'r ddolen wedi dod i ben linkExpiredAlt = Mae'r ddolen wedi dod i ben
notSupportedHeader = Nid yw eich porwr yn cael ei gynnal. notSupportedHeader = Nid yw eich porwr yn cael ei gynnal.
notSupportedLink = Pam nad yw fy mhorwr 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 updateFirefox = Diweddaru Firefox
deletePopupCancel = Diddymu deletePopupCancel = Diddymu
deleteButtonHover = Dileu deleteButtonHover = Dileu
@ -42,8 +41,8 @@ footerLinkLegal = Cyfreithiol
footerLinkPrivacy = Preifatrwydd footerLinkPrivacy = Preifatrwydd
footerLinkCookies = Cwcis footerLinkCookies = Cwcis
passwordTryAgain = Cyfrinair anghywir. Ceisiwch eto. passwordTryAgain = Cyfrinair anghywir. Ceisiwch eto.
javascriptRequired = Mae Firefox Send angen JavaScript javascriptRequired = Mae Send angen JavaScript
whyJavascript = Pam fod Firefox Send angen JavaScript? whyJavascript = Pam fod Send angen JavaScript?
enableJavascript = Galluogwch JavaScript a cheisio eto. 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" # 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 expiresHoursMinutes = { $hours }a { $minutes }m
@ -56,8 +55,7 @@ passwordSetError = Nid oedd modd gosod y cyfrinair hwn
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Anfon -send-short-brand = Anfon
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Feedback siteFeedback = Feedback
importingFile = Importerer… importingFile = Importerer…
encryptingFile = Krypterer… encryptingFile = Krypterer…
@ -20,13 +19,13 @@ unlockButtonLabel = Lås op
downloadButtonLabel = Hent downloadButtonLabel = Hent
downloadFinish = Hentning fuldført downloadFinish = Hentning fuldført
fileSizeProgress = ({ $partialSize } af { $totalSize }) fileSizeProgress = ({ $partialSize } af { $totalSize })
sendYourFilesLink = Prøv Firefox Send sendYourFilesLink = Prøv Send
errorPageHeader = Der gik noget galt! errorPageHeader = Der gik noget galt!
fileTooBig = Den fil er for stor at uploade. Den skal være mindre end { $size }. fileTooBig = Den fil er for stor at uploade. Den skal være mindre end { $size }.
linkExpiredAlt = Link er udløbet linkExpiredAlt = Link er udløbet
notSupportedHeader = Din browser understøttes ikke. notSupportedHeader = Din browser understøttes ikke.
notSupportedLink = Hvorfor understøttes min browser 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 updateFirefox = Opdater Firefox
deletePopupCancel = Annuller deletePopupCancel = Annuller
deleteButtonHover = Slet deleteButtonHover = Slet
@ -34,8 +33,8 @@ footerLinkLegal = Juridisk
footerLinkPrivacy = Privatliv footerLinkPrivacy = Privatliv
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Forkert adgangskode. Prøv igen. passwordTryAgain = Forkert adgangskode. Prøv igen.
javascriptRequired = Firefox Send kræver JavaScript javascriptRequired = Send kræver JavaScript
whyJavascript = Hvorfor kræver Firefox Send JavaScript? whyJavascript = Hvorfor kræver Send JavaScript?
enableJavascript = Aktiver JavaScript og prøv igen. 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" # 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 expiresHoursMinutes = { $hours } t { $minutes } m
@ -48,8 +47,7 @@ passwordSetError = Adgangskoden kunne ikke sættes
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Feedback siteFeedback = Feedback
importingFile = Wird importiert… importingFile = Wird importiert…
encryptingFile = Wird verschlüsselt… encryptingFile = Wird verschlüsselt…
@ -20,13 +19,13 @@ unlockButtonLabel = Entsperren
downloadButtonLabel = Herunterladen downloadButtonLabel = Herunterladen
downloadFinish = Download abgeschlossen downloadFinish = Download abgeschlossen
fileSizeProgress = ({ $partialSize } von { $totalSize }) fileSizeProgress = ({ $partialSize } von { $totalSize })
sendYourFilesLink = Firefox Send ausprobieren sendYourFilesLink = Send ausprobieren
errorPageHeader = Ein Fehler ist aufgetreten! errorPageHeader = Ein Fehler ist aufgetreten!
fileTooBig = Die Datei ist zu groß zum Hochladen. Sie sollte maximal { $size } groß sein. fileTooBig = Die Datei ist zu groß zum Hochladen. Sie sollte maximal { $size } groß sein.
linkExpiredAlt = Link abgelaufen linkExpiredAlt = Link abgelaufen
notSupportedHeader = Dein Browser wird nicht unterstützt. notSupportedHeader = Dein Browser wird nicht unterstützt.
notSupportedLink = Warum wird mein Browser 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 updateFirefox = Firefox aktualisieren
deletePopupCancel = Abbrechen deletePopupCancel = Abbrechen
deleteButtonHover = Löschen deleteButtonHover = Löschen
@ -34,8 +33,8 @@ footerLinkLegal = Rechtliches
footerLinkPrivacy = Datenschutz footerLinkPrivacy = Datenschutz
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Falsches Passwort. Versuche es nochmal. passwordTryAgain = Falsches Passwort. Versuche es nochmal.
javascriptRequired = Firefox Send benötigt JavaScript javascriptRequired = Send benötigt JavaScript
whyJavascript = Warum benötigt Firefox Send JavaScript? whyJavascript = Warum benötigt Send JavaScript?
enableJavascript = Bitte aktiviere JavaScript und versuche es erneut. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Dieses Passwort konnte nicht eingerichtet werden
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Komentar siteFeedback = Komentar
importingFile = Importěrujo se... importingFile = Importěrujo se...
encryptingFile = Koděrujo se... encryptingFile = Koděrujo se...
@ -24,13 +23,13 @@ unlockButtonLabel = Wótwóriś
downloadButtonLabel = Ześěgnuś downloadButtonLabel = Ześěgnuś
downloadFinish = Ześěgnjenje dokóńcone downloadFinish = Ześěgnjenje dokóńcone
fileSizeProgress = ({ $partialSize } z { $totalSize }) fileSizeProgress = ({ $partialSize } z { $totalSize })
sendYourFilesLink = Firefox Send wopytaś sendYourFilesLink = Send wopytaś
errorPageHeader = Něco njejo se raźiło! 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ś. fileTooBig = Toś ta dataja jo pśewjelika za nagraśe. Měła mjeńša ako { $size } byś.
linkExpiredAlt = Wótkaz spadnjony linkExpiredAlt = Wótkaz spadnjony
notSupportedHeader = Waš wobglědowak se njepódpěra. notSupportedHeader = Waš wobglědowak se njepódpěra.
notSupportedLink = Cogodla se mój wobglědowak 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ś updateFirefox = Firefox aktualizěrowaś
deletePopupCancel = Pśetergnuś deletePopupCancel = Pśetergnuś
deleteButtonHover = Wulašowaś deleteButtonHover = Wulašowaś
@ -38,8 +37,8 @@ footerLinkLegal = Pšawniske
footerLinkPrivacy = Priwatnosć footerLinkPrivacy = Priwatnosć
footerLinkCookies = Cookieje footerLinkCookies = Cookieje
passwordTryAgain = Wopacne gronidło. Wopytajśo hyšći raz. passwordTryAgain = Wopacne gronidło. Wopytajśo hyšći raz.
javascriptRequired = Firefox Send JavaScript trjeba javascriptRequired = Send JavaScript trjeba
whyJavascript = Cogodla Firefox Send JavaScript trjeba? whyJavascript = Cogodla Send JavaScript trjeba?
enableJavascript = Pšosym zmóžniśo JavaScript a wopytajśo hyšći raz. 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" # 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. expiresHoursMinutes = { $hours } góź. { $minutes } min.
@ -52,8 +51,7 @@ passwordSetError = Toś to gronidło njedajo se nastajiś
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Σχόλια siteFeedback = Σχόλια
importingFile = Εισαγωγή… importingFile = Εισαγωγή…
encryptingFile = Κρυπτογράφηση… encryptingFile = Κρυπτογράφηση…
@ -20,13 +19,13 @@ unlockButtonLabel = Ξεκλείδωμα
downloadButtonLabel = Λήψη downloadButtonLabel = Λήψη
downloadFinish = Η λήψη ολοκληρώθηκε downloadFinish = Η λήψη ολοκληρώθηκε
fileSizeProgress = ({ $partialSize } από { $totalSize }) fileSizeProgress = ({ $partialSize } από { $totalSize })
sendYourFilesLink = Δοκιμάστε το Firefox Send sendYourFilesLink = Δοκιμάστε το Send
errorPageHeader = Κάτι πήγε στραβά! errorPageHeader = Κάτι πήγε στραβά!
fileTooBig = Αυτό το αρχείο είναι πολύ μεγάλο για μεταφόρτωση. Πρέπει να είναι μικρότερο από { $size }. fileTooBig = Αυτό το αρχείο είναι πολύ μεγάλο για μεταφόρτωση. Πρέπει να είναι μικρότερο από { $size }.
linkExpiredAlt = Ο σύνδεσμος έληξε linkExpiredAlt = Ο σύνδεσμος έληξε
notSupportedHeader = Το πρόγραμμα περιήγησής σας δεν υποστηρίζεται. notSupportedHeader = Το πρόγραμμα περιήγησής σας δεν υποστηρίζεται.
notSupportedLink = Γιατί δεν υποστηρίζεται το πρόγραμμα περιήγησής μου; notSupportedLink = Γιατί δεν υποστηρίζεται το πρόγραμμα περιήγησής μου;
notSupportedOutdatedDetail = Δυστυχώς, αυτή η έκδοση του Firefox δεν υποστηρίζει την τεχνολογία ιστού στην οποία βασίζεται το Firefox Send. Πρέπει να ενημερώσετε το πρόγραμμα περιήγησής σας. notSupportedOutdatedDetail = Δυστυχώς, αυτή η έκδοση του Firefox δεν υποστηρίζει την τεχνολογία ιστού στην οποία βασίζεται το Send. Πρέπει να ενημερώσετε το πρόγραμμα περιήγησής σας.
updateFirefox = Ενημέρωση Firefox updateFirefox = Ενημέρωση Firefox
deletePopupCancel = Ακύρωση deletePopupCancel = Ακύρωση
deleteButtonHover = Διαγραφή deleteButtonHover = Διαγραφή
@ -34,8 +33,8 @@ footerLinkLegal = Νομικά
footerLinkPrivacy = Απόρρητο footerLinkPrivacy = Απόρρητο
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Λάθος κωδικός πρόσβασης. Δοκιμάστε ξανά. passwordTryAgain = Λάθος κωδικός πρόσβασης. Δοκιμάστε ξανά.
javascriptRequired = Το Firefox Send απαιτεί JavaScript javascriptRequired = Το Send απαιτεί JavaScript
whyJavascript = Γιατί το Firefox Send απαιτεί JavaScript; whyJavascript = Γιατί το Send απαιτεί JavaScript;
enableJavascript = Παρακαλώ ενεργοποιήστε το JavaScript και δοκιμάστε ξανά. enableJavascript = Παρακαλώ ενεργοποιήστε το JavaScript και δοκιμάστε ξανά.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }ώ { $minutes }λ expiresHoursMinutes = { $hours }ώ { $minutes }λ
@ -48,8 +47,7 @@ passwordSetError = Δεν ήταν δυνατός ο ορισμός αυτού
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Feedback siteFeedback = Feedback
importingFile = Importing… importingFile = Importing…
encryptingFile = Encrypting… encryptingFile = Encrypting…
@ -20,13 +19,13 @@ unlockButtonLabel = Unlock
downloadButtonLabel = Download downloadButtonLabel = Download
downloadFinish = Download Complete downloadFinish = Download Complete
fileSizeProgress = ({ $partialSize } of { $totalSize }) fileSizeProgress = ({ $partialSize } of { $totalSize })
sendYourFilesLink = Try Firefox Send sendYourFilesLink = Try Send
errorPageHeader = Something went wrong! errorPageHeader = Something went wrong!
fileTooBig = That file is too big to upload. It should be less than { $size }. fileTooBig = That file is too big to upload. It should be less than { $size }.
linkExpiredAlt = Link expired linkExpiredAlt = Link expired
notSupportedHeader = Your browser is not supported. notSupportedHeader = Your browser is not supported.
notSupportedLink = Why is my browser 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. Youll need to update your browser. notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. Youll need to update your browser.
updateFirefox = Update Firefox updateFirefox = Update Firefox
deletePopupCancel = Cancel deletePopupCancel = Cancel
deleteButtonHover = Delete deleteButtonHover = Delete
@ -34,8 +33,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Incorrect password. Try again. passwordTryAgain = Incorrect password. Try again.
javascriptRequired = Firefox Send requires JavaScript javascriptRequired = Send requires JavaScript
whyJavascript = Why does Firefox Send require JavaScript? whyJavascript = Why does Send require JavaScript?
enableJavascript = Please enable JavaScript and try again. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = This password could not be set
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Feedback siteFeedback = Feedback
importingFile = Importing… importingFile = Importing…
encryptingFile = Encrypting… encryptingFile = Encrypting…
@ -20,13 +19,13 @@ unlockButtonLabel = Unlock
downloadButtonLabel = Download downloadButtonLabel = Download
downloadFinish = Download Complete downloadFinish = Download Complete
fileSizeProgress = ({ $partialSize } of { $totalSize }) fileSizeProgress = ({ $partialSize } of { $totalSize })
sendYourFilesLink = Try Firefox Send sendYourFilesLink = Try Send
errorPageHeader = Something went wrong! errorPageHeader = Something went wrong!
fileTooBig = That file is too big to upload. It should be less than { $size }. fileTooBig = That file is too big to upload. It should be less than { $size }.
linkExpiredAlt = Link expired linkExpiredAlt = Link expired
notSupportedHeader = Your browser is not supported. notSupportedHeader = Your browser is not supported.
notSupportedLink = Why is my browser 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. Youll need to update your browser. notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. Youll need to update your browser.
updateFirefox = Update Firefox updateFirefox = Update Firefox
deletePopupCancel = Cancel deletePopupCancel = Cancel
deleteButtonHover = Delete deleteButtonHover = Delete
@ -34,8 +33,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Incorrect password. Try again. passwordTryAgain = Incorrect password. Try again.
javascriptRequired = Firefox Send requires JavaScript javascriptRequired = Send requires JavaScript
whyJavascript = Why does Firefox Send require JavaScript? whyJavascript = Why does Send require JavaScript?
enableJavascript = Please enable JavaScript and try again. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = This password could not be set
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Feedback siteFeedback = Feedback
importingFile = Importing… importingFile = Importing…
encryptingFile = Encrypting… encryptingFile = Encrypting…
@ -18,13 +17,13 @@ unlockButtonLabel = Unlock
downloadButtonLabel = Download downloadButtonLabel = Download
downloadFinish = Download complete downloadFinish = Download complete
fileSizeProgress = ({ $partialSize } of { $totalSize }) fileSizeProgress = ({ $partialSize } of { $totalSize })
sendYourFilesLink = Try Firefox Send sendYourFilesLink = Try Send
errorPageHeader = Something went wrong! errorPageHeader = Something went wrong!
fileTooBig = That file is too big to upload. It should be less than { $size } fileTooBig = That file is too big to upload. It should be less than { $size }
linkExpiredAlt = Link expired linkExpiredAlt = Link expired
notSupportedHeader = Your browser is not supported. notSupportedHeader = Your browser is not supported.
notSupportedLink = Why is my browser 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. Youll need to update your browser. notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. Youll need to update your browser.
updateFirefox = Update Firefox updateFirefox = Update Firefox
deletePopupCancel = Cancel deletePopupCancel = Cancel
deleteButtonHover = Delete deleteButtonHover = Delete
@ -32,8 +31,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Incorrect password. Try again. passwordTryAgain = Incorrect password. Try again.
javascriptRequired = Firefox Send requires JavaScript javascriptRequired = Send requires JavaScript
whyJavascript = Why does Firefox Send require JavaScript? whyJavascript = Why does Send require JavaScript?
enableJavascript = Please enable JavaScript and try again. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -46,8 +45,7 @@ passwordSetError = This password could not be set
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@ -143,5 +141,4 @@ shareLinkDescription = Share the link to your file:
shareLinkButton = Share link shareLinkButton = Share link
# $name is the name of the file # $name is the name of the file
shareMessage = Download “{ $name }” with { -send-brand }: simple, safe file sharing shareMessage = Download “{ $name }” with { -send-brand }: simple, safe file sharing
trailheadPromo = There is a way to protect your privacy. Join Firefox.
learnMore = Learn more. learnMore = Learn more.

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Opinión siteFeedback = Opinión
importingFile = Importando… importingFile = Importando…
encryptingFile = Cifrando… encryptingFile = Cifrando…
@ -20,13 +19,13 @@ unlockButtonLabel = Desbloquear
downloadButtonLabel = Descargar downloadButtonLabel = Descargar
downloadFinish = Descarga completa downloadFinish = Descarga completa
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Probá Firefox Send sendYourFilesLink = Probá Send
errorPageHeader = ¡Algo falló! errorPageHeader = ¡Algo falló!
fileTooBig = El archivo es demasiado grande para subir. Debería tener menos de { $size }. fileTooBig = El archivo es demasiado grande para subir. Debería tener menos de { $size }.
linkExpiredAlt = Enlace explirado linkExpiredAlt = Enlace explirado
notSupportedHeader = El navegador no está soportado. notSupportedHeader = El navegador no está soportado.
notSupportedLink = ¿Por qué mi 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 updateFirefox = Actualizar Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Borrar deleteButtonHover = Borrar
@ -34,8 +33,8 @@ footerLinkLegal = Legales
footerLinkPrivacy = Privacidad footerLinkPrivacy = Privacidad
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Contraseña incorrecta. Intentá nuevamente. passwordTryAgain = Contraseña incorrecta. Intentá nuevamente.
javascriptRequired = Firefox Send requiere JavaScript javascriptRequired = Send requiere JavaScript
whyJavascript = ¿Por qué Firefox Send requiere Java Script? whyJavascript = ¿Por qué Send requiere Java Script?
enableJavascript = Por favor habilite JavaScript y pruebe de nuevo. 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" # 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 } expiresHoursMinutes = h { $hours } m { $minutes }
@ -48,8 +47,7 @@ passwordSetError = No se pudo establecer la contraseña
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Comentarios siteFeedback = Comentarios
importingFile = Importando… importingFile = Importando…
encryptingFile = Cifrando… encryptingFile = Cifrando…
@ -20,13 +19,13 @@ unlockButtonLabel = Desbloquear
downloadButtonLabel = Descargar downloadButtonLabel = Descargar
downloadFinish = Descarga completa downloadFinish = Descarga completa
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Probar Firefox Send sendYourFilesLink = Probar Send
errorPageHeader = ¡Algo se fue a las pailas! errorPageHeader = ¡Algo se fue a las pailas!
fileTooBig = Ese archivo es muy grande para ser subido. Debiera tener un tamaño menor a { $size }. fileTooBig = Ese archivo es muy grande para ser subido. Debiera tener un tamaño menor a { $size }.
linkExpiredAlt = Enlace expirado linkExpiredAlt = Enlace expirado
notSupportedHeader = Tu navegador no está soportado. notSupportedHeader = Tu navegador no está soportado.
notSupportedLink = ¿Por qué mi navegador no es 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 updateFirefox = Actualizar Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Eliminar deleteButtonHover = Eliminar
@ -34,8 +33,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacidad footerLinkPrivacy = Privacidad
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Contraseña incorrecta. Vuelve a intentarlo. passwordTryAgain = Contraseña incorrecta. Vuelve a intentarlo.
javascriptRequired = Firefox Send requiere JavaScript. javascriptRequired = Send requiere JavaScript.
whyJavascript = ¿Por qué Firefox Send requiere JavaScript? whyJavascript = ¿Por qué Send requiere JavaScript?
enableJavascript = Por favor, activa JavaScript y vuelve a intentarlo. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Esta contraseña no pudo ser establecida
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Comentario siteFeedback = Comentario
importingFile = Importando... importingFile = Importando...
encryptingFile = Encriptando... encryptingFile = Encriptando...
@ -20,13 +19,13 @@ unlockButtonLabel = Desbloquear
downloadButtonLabel = Descargar downloadButtonLabel = Descargar
downloadFinish = Descarga completa downloadFinish = Descarga completa
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Prueba Firefox Send sendYourFilesLink = Prueba Send
errorPageHeader = ¡Se produjo un error! errorPageHeader = ¡Se produjo un error!
fileTooBig = Ese archivo es muy grande. Debería ocupar menos de { $size }. fileTooBig = Ese archivo es muy grande. Debería ocupar menos de { $size }.
linkExpiredAlt = Enlace caducado linkExpiredAlt = Enlace caducado
notSupportedHeader = Tu navegador no está admitido. notSupportedHeader = Tu navegador no está admitido.
notSupportedLink = ¿Por qué no se admite mi navegador? notSupportedLink = ¿Por qué no se admite mi navegador?
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 updateFirefox = Actualizar Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Eliminar deleteButtonHover = Eliminar
@ -34,8 +33,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacidad footerLinkPrivacy = Privacidad
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Contraseña incorrecta. Inténtelo de nuevo. passwordTryAgain = Contraseña incorrecta. Inténtelo de nuevo.
javascriptRequired = Firefox Send requiere JavaScript javascriptRequired = Send requiere JavaScript
whyJavascript = ¿Por qué Firefox Send requiere JavaScript? whyJavascript = ¿Por qué Send requiere JavaScript?
enableJavascript = Por favor, activa JavaScript y vuelve a intentarlo. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = No se ha podido establecer la contraseña
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Enviar -send-short-brand = Enviar
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Comentario siteFeedback = Comentario
importingFile = Importando... importingFile = Importando...
encryptingFile = Encriptando… encryptingFile = Encriptando…
@ -20,13 +19,13 @@ unlockButtonLabel = Desbloquear
downloadButtonLabel = Descargar downloadButtonLabel = Descargar
downloadFinish = Descarga completa downloadFinish = Descarga completa
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Prueba Firefox Send sendYourFilesLink = Prueba Send
errorPageHeader = ¡Algo salió mal! errorPageHeader = ¡Algo salió mal!
fileTooBig = Ese archivo es muy grande. Debería ocupar menos de { $size }. fileTooBig = Ese archivo es muy grande. Debería ocupar menos de { $size }.
linkExpiredAlt = Enlace caducado linkExpiredAlt = Enlace caducado
notSupportedHeader = Tu navegador no está soportado. notSupportedHeader = Tu navegador no está soportado.
notSupportedLink = ¿Por qué mi navegador no tiene soporte? 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 updateFirefox = Actualizar Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Eliminar deleteButtonHover = Eliminar
@ -34,8 +33,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacidad footerLinkPrivacy = Privacidad
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Contraseña incorrecta. Intenta de nuevo. passwordTryAgain = Contraseña incorrecta. Intenta de nuevo.
javascriptRequired = Firefox Send requiere JavaScript javascriptRequired = Send requiere JavaScript
whyJavascript = ¿Por qué Firefox Send requiere JavaScript? whyJavascript = ¿Por qué Send requiere JavaScript?
enableJavascript = Por favor, habilita JavaScript e intenta de nuevo. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = No se ha podido establecer la contraseña
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Enviar -send-short-brand = Enviar
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Tagasiside siteFeedback = Tagasiside
importingFile = Importimine... importingFile = Importimine...
encryptingFile = Krüptimine… encryptingFile = Krüptimine…
@ -20,13 +19,13 @@ unlockButtonLabel = Ava
downloadButtonLabel = Laadi alla downloadButtonLabel = Laadi alla
downloadFinish = Allalaadimine lõpetati downloadFinish = Allalaadimine lõpetati
fileSizeProgress = ({ $partialSize }/{ $totalSize }) fileSizeProgress = ({ $partialSize }/{ $totalSize })
sendYourFilesLink = Proovi Firefox Send'i sendYourFilesLink = Proovi Send'i
errorPageHeader = Midagi läks valesti! errorPageHeader = Midagi läks valesti!
fileTooBig = Fail on üleslaadimiseks liiga suur. See peaks olema väiksem kui { $size }. fileTooBig = Fail on üleslaadimiseks liiga suur. See peaks olema väiksem kui { $size }.
linkExpiredAlt = Link on aegunud linkExpiredAlt = Link on aegunud
notSupportedHeader = Sinu brauser pole toetatud. notSupportedHeader = Sinu brauser pole toetatud.
notSupportedLink = Miks mu brauser toetatud pole? 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 updateFirefox = Uuenda Firefox
deletePopupCancel = Loobu deletePopupCancel = Loobu
deleteButtonHover = Kustuta deleteButtonHover = Kustuta
@ -34,8 +33,8 @@ footerLinkLegal = Õiguslik teave
footerLinkPrivacy = Privaatsusest footerLinkPrivacy = Privaatsusest
footerLinkCookies = Küpsistest footerLinkCookies = Küpsistest
passwordTryAgain = Vale parool. Palun proovi uuesti. passwordTryAgain = Vale parool. Palun proovi uuesti.
javascriptRequired = Firefox Send'i kasutamiseks tuleb JavaScript lubada javascriptRequired = Send'i kasutamiseks tuleb JavaScript lubada
whyJavascript = Miks Firefox Send JavaScripti vajab? whyJavascript = Miks Send JavaScripti vajab?
enableJavascript = Palun luba JavaScript ja proovi uuesti. 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" # 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 expiresHoursMinutes = { $hours }t { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Parooli muutmine ebaõnnestus
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Iritzia siteFeedback = Iritzia
importingFile = Inportatzen… importingFile = Inportatzen…
encryptingFile = Zifratzen... encryptingFile = Zifratzen...
@ -20,13 +19,13 @@ unlockButtonLabel = Desblokeatu
downloadButtonLabel = Deskargatu downloadButtonLabel = Deskargatu
downloadFinish = Deskarga burututa downloadFinish = Deskarga burututa
fileSizeProgress = ({ $totalSize } / { $partialSize }) fileSizeProgress = ({ $totalSize } / { $partialSize })
sendYourFilesLink = Probatu Firefox Send sendYourFilesLink = Probatu Send
errorPageHeader = Zerbait gaizki joan da! errorPageHeader = Zerbait gaizki joan da!
fileTooBig = Fitxategia handiegia da kargatzeko. { $size } baino txikiagoa izan behar du. fileTooBig = Fitxategia handiegia da kargatzeko. { $size } baino txikiagoa izan behar du.
linkExpiredAlt = Lotura iraungi da linkExpiredAlt = Lotura iraungi da
notSupportedHeader = Zure nabigatzailea ez da onartzen. notSupportedHeader = Zure nabigatzailea ez da onartzen.
notSupportedLink = Zergatik ez da nire nabigatzailea 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 updateFirefox = Eguneratu Firefox
deletePopupCancel = Utzi deletePopupCancel = Utzi
deleteButtonHover = Ezabatu deleteButtonHover = Ezabatu
@ -34,8 +33,8 @@ footerLinkLegal = Lege-oharra
footerLinkPrivacy = Pribatutasuna footerLinkPrivacy = Pribatutasuna
footerLinkCookies = Cookieak footerLinkCookies = Cookieak
passwordTryAgain = Pasahitz okerra. Saiatu berriro. passwordTryAgain = Pasahitz okerra. Saiatu berriro.
javascriptRequired = JavaScript beharrezkoa da Firefox Send erabiltzeko. javascriptRequired = JavaScript beharrezkoa da Send erabiltzeko.
whyJavascript = Zergatik behar du Firefox Send-ek JavasScript? whyJavascript = Zergatik behar du Send-ek JavasScript?
enableJavascript = Gaitu JavaScript eta saiatu berriro. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Pasahitz hau ezin da ezarri
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = بازخورد siteFeedback = بازخورد
importingFile = در حال وارد کردن… importingFile = در حال وارد کردن…
encryptingFile = در حال رمزنگاری… encryptingFile = در حال رمزنگاری…
@ -20,13 +19,13 @@ unlockButtonLabel = باز کردن
downloadButtonLabel = بارگیری downloadButtonLabel = بارگیری
downloadFinish = بارگیری کامل شد downloadFinish = بارگیری کامل شد
fileSizeProgress = ({ $partialSize } از { $totalSize }) fileSizeProgress = ({ $partialSize } از { $totalSize })
sendYourFilesLink = Firefox Send را امتحان کنید sendYourFilesLink = Send را امتحان کنید
errorPageHeader = خطایی رخ داد! errorPageHeader = خطایی رخ داد!
fileTooBig = این پرونده بسیار حجیم است. حجم آن می‌بایستی کم تر { $size } باشد. fileTooBig = این پرونده بسیار حجیم است. حجم آن می‌بایستی کم تر { $size } باشد.
linkExpiredAlt = پیوند منقضی شده است linkExpiredAlt = پیوند منقضی شده است
notSupportedHeader = مرورگر شما پشتیبانی نمی‌شود. notSupportedHeader = مرورگر شما پشتیبانی نمی‌شود.
notSupportedLink = چرا از مرورگر من پشتیبانی نمی‌شود؟ notSupportedLink = چرا از مرورگر من پشتیبانی نمی‌شود؟
notSupportedOutdatedDetail = متاسفانه این نسخه از فایرفاکس این تکنولوژی وب که به Firefox Send قدرت می‌بخشد را پشتیبانی نمی‌کند. شما نیاز دارید تا مرورگر خود را بروز کنید. notSupportedOutdatedDetail = متاسفانه این نسخه از فایرفاکس این تکنولوژی وب که به Send قدرت می‌بخشد را پشتیبانی نمی‌کند. شما نیاز دارید تا مرورگر خود را بروز کنید.
updateFirefox = بروزرسانی فایرفاکس updateFirefox = بروزرسانی فایرفاکس
deletePopupCancel = انصراف deletePopupCancel = انصراف
deleteButtonHover = حذف deleteButtonHover = حذف
@ -34,8 +33,8 @@ footerLinkLegal = ملاحظات حقوقی
footerLinkPrivacy = حریم‌خصوصی footerLinkPrivacy = حریم‌خصوصی
footerLinkCookies = کوکی‌ها footerLinkCookies = کوکی‌ها
passwordTryAgain = کلمه عبور اشتباه است. مجدد تلاش کنید. passwordTryAgain = کلمه عبور اشتباه است. مجدد تلاش کنید.
javascriptRequired = Firefox Send نیازمند جاوااسکریپت است javascriptRequired = Send نیازمند جاوااسکریپت است
whyJavascript = چرا Firefox Send جاوااسکریپت لازم داد؟ whyJavascript = چرا Send جاوااسکریپت لازم داد؟
enableJavascript = لطفا جاوااسکریپت را فعال کنید و مجددا تلاش کنید. enableJavascript = لطفا جاوااسکریپت را فعال کنید و مجددا تلاش کنید.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }ساعت { $minutes }دقیقه expiresHoursMinutes = { $hours }ساعت { $minutes }دقیقه
@ -48,8 +47,7 @@ passwordSetError = امکان ثبت این گذواژه نیست
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = ارسال -send-short-brand = ارسال
-firefox = فایرفاکس -firefox = فایرفاکس
-mozilla = موزیلا -mozilla = موزیلا

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Palaute siteFeedback = Palaute
importingFile = Tuodaan… importingFile = Tuodaan…
encryptingFile = Salataan... encryptingFile = Salataan...
@ -20,13 +19,13 @@ unlockButtonLabel = Avaa
downloadButtonLabel = Lataa downloadButtonLabel = Lataa
downloadFinish = Lataus valmis downloadFinish = Lataus valmis
fileSizeProgress = { $partialSize } / { $totalSize } fileSizeProgress = { $partialSize } / { $totalSize }
sendYourFilesLink = Kokeile Firefox Send -palvelua sendYourFilesLink = Kokeile Send -palvelua
errorPageHeader = Jokin meni pieleen! errorPageHeader = Jokin meni pieleen!
fileTooBig = Tämä tiedosto on liian suuri ladattavaksi. Sen pitäisi olla pienempi kuin { $size }. fileTooBig = Tämä tiedosto on liian suuri ladattavaksi. Sen pitäisi olla pienempi kuin { $size }.
linkExpiredAlt = Linkki on vanhentunut linkExpiredAlt = Linkki on vanhentunut
notSupportedHeader = Selaintasi ei tueta. notSupportedHeader = Selaintasi ei tueta.
notSupportedLink = Miksi selaintani 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 updateFirefox = Päivitä Firefox
deletePopupCancel = Peruuta deletePopupCancel = Peruuta
deleteButtonHover = Poista deleteButtonHover = Poista
@ -35,7 +34,7 @@ footerLinkPrivacy = Tietosuoja
footerLinkCookies = Evästeet footerLinkCookies = Evästeet
passwordTryAgain = Väärä salasana. Yritä uudelleen. passwordTryAgain = Väärä salasana. Yritä uudelleen.
javascriptRequired = Firefox-Send vaatii JavaScriptin 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. 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" # 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 expiresHoursMinutes = { $hours } t { $minutes } min
@ -48,8 +47,7 @@ passwordSetError = Tätä salasanaa ei voitu asettaa
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Votre avis siteFeedback = Votre avis
importingFile = Importation… importingFile = Importation…
encryptingFile = Chiffrement… encryptingFile = Chiffrement…
@ -20,13 +19,13 @@ unlockButtonLabel = Déverrouiller
downloadButtonLabel = Télécharger downloadButtonLabel = Télécharger
downloadFinish = Téléchargement terminé downloadFinish = Téléchargement terminé
fileSizeProgress = ({ $partialSize } sur { $totalSize }) fileSizeProgress = ({ $partialSize } sur { $totalSize })
sendYourFilesLink = Essayer Firefox Send sendYourFilesLink = Essayer Send
errorPageHeader = Une erreur sest produite. errorPageHeader = Une erreur sest produite.
fileTooBig = Ce fichier est trop volumineux pour être envoyé. Sa taille doit être inférieure à { $size }. fileTooBig = Ce fichier est trop volumineux pour être envoyé. Sa taille doit être inférieure à { $size }.
linkExpiredAlt = Le lien a expiré linkExpiredAlt = Le lien a expiré
notSupportedHeader = Votre navigateur nest pas pris en charge. notSupportedHeader = Votre navigateur nest pas pris en charge.
notSupportedLink = Pourquoi mon navigateur nest-il pas pris en charge ? notSupportedLink = Pourquoi mon navigateur nest-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 updateFirefox = Mettre à jour Firefox
deletePopupCancel = Annuler deletePopupCancel = Annuler
deleteButtonHover = Supprimer deleteButtonHover = Supprimer
@ -34,8 +33,8 @@ footerLinkLegal = Mentions légales
footerLinkPrivacy = Confidentialité footerLinkPrivacy = Confidentialité
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Mot de passe incorrect. Veuillez réessayer. passwordTryAgain = Mot de passe incorrect. Veuillez réessayer.
javascriptRequired = Firefox Send nécessite JavaScript javascriptRequired = Send nécessite JavaScript
whyJavascript = Pourquoi Firefox Send nécessite-t-il JavaScript ? whyJavascript = Pourquoi Send nécessite-t-il JavaScript ?
enableJavascript = Veuillez activer JavaScript puis réessayer. 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" # 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 expiresHoursMinutes = { $hours } h { $minutes } min
@ -48,8 +47,7 @@ passwordSetError = Ce mot de passe na pas pu être défini
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Kommentaar siteFeedback = Kommentaar
importingFile = Ymportearje… importingFile = Ymportearje…
encryptingFile = Fersiferje… encryptingFile = Fersiferje…
@ -20,13 +19,13 @@ unlockButtonLabel = Deblokkearje
downloadButtonLabel = Downloade downloadButtonLabel = Downloade
downloadFinish = Download foltôge downloadFinish = Download foltôge
fileSizeProgress = ({ $partialSize } fan { $totalSize }) fileSizeProgress = ({ $partialSize } fan { $totalSize })
sendYourFilesLink = Firefox Send probearje sendYourFilesLink = Send probearje
errorPageHeader = Der is wat misgien! errorPageHeader = Der is wat misgien!
fileTooBig = It bestân is te grut om op te laden. It moat lytser wêze as { $size }. fileTooBig = It bestân is te grut om op te laden. It moat lytser wêze as { $size }.
linkExpiredAlt = Keppeling ferrûn linkExpiredAlt = Keppeling ferrûn
notSupportedHeader = Jo browser wurdt net stipe. notSupportedHeader = Jo browser wurdt net stipe.
notSupportedLink = Wêrom wurdt myn browser 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 updateFirefox = Firefox fernije
deletePopupCancel = Annulearje deletePopupCancel = Annulearje
deleteButtonHover = Fuortsmite deleteButtonHover = Fuortsmite
@ -34,8 +33,8 @@ footerLinkLegal = Juridysk
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Net krekt wachtwurd. Probearje it opnij. passwordTryAgain = Net krekt wachtwurd. Probearje it opnij.
javascriptRequired = Firefox Send fereasket JavaScript. javascriptRequired = Send fereasket JavaScript.
whyJavascript = Werom hat Firefox Send JavaScript nedich? whyJavascript = Werom hat Send JavaScript nedich?
enableJavascript = Skeakelje JavaScript yn en probearje nochris. 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" # 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 expiresHoursMinutes = { $hours }o { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Dit wachtwurd koe net ynsteld wurde
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Jeejey siteFeedback = Jeejey
importingFile = Ojegueruhína… importingFile = Ojegueruhína…
encryptingFile = Moãmby… encryptingFile = Moãmby…
@ -20,13 +19,13 @@ unlockButtonLabel = Mbojera
downloadButtonLabel = Mboguejy downloadButtonLabel = Mboguejy
downloadFinish = Oguejypáma downloadFinish = Oguejypáma
fileSizeProgress = ({ $partialSize } rehe { $totalSize }) fileSizeProgress = ({ $partialSize } rehe { $totalSize })
sendYourFilesLink = Eipuru Firefox Send sendYourFilesLink = Eipuru Send
errorPageHeader = ¡Oiko jejavy! errorPageHeader = ¡Oiko jejavy!
fileTooBig = Marandurenda tuichaiterei ehupi hag̃ua. Michĩvevaerã { $size } gui. fileTooBig = Marandurenda tuichaiterei ehupi hag̃ua. Michĩvevaerã { $size } gui.
linkExpiredAlt = Juajuha ndoikóiva linkExpiredAlt = Juajuha ndoikóiva
notSupportedHeader = Ne kundaha ndorekói pytyvõ. notSupportedHeader = Ne kundaha ndorekói pytyvõ.
notSupportedLink = ¿Mbaére che kundahára ndorekói ñepytyvõ? notSupportedLink = ¿Mbaére che kundahára ndorekói ñepytyvõ?
notSupportedOutdatedDetail = Ko Firefox rembiapo ndaipuakái ñanduti rembipurupyahu oikotevẽva Firefox Send. Embohekopyahúke ne kundahára. notSupportedOutdatedDetail = Ko Firefox rembiapo ndaipuakái ñanduti rembipurupyahu oikotevẽva Send. Embohekopyahúke ne kundahára.
updateFirefox = Firefox mbohekopyahu updateFirefox = Firefox mbohekopyahu
deletePopupCancel = Heja deletePopupCancel = Heja
deleteButtonHover = Mboguete deleteButtonHover = Mboguete
@ -34,8 +33,8 @@ footerLinkLegal = Añetegua
footerLinkPrivacy = Ñemigua footerLinkPrivacy = Ñemigua
footerLinkCookies = Kookie footerLinkCookies = Kookie
passwordTryAgain = Ñeẽñemi ndoikóiva. Ehaãjey. passwordTryAgain = Ñeẽñemi ndoikóiva. Ehaãjey.
javascriptRequired = Firefox Send oikotevẽ JavaScript javascriptRequired = Send oikotevẽ JavaScript
whyJavascript = ¿Mbaére Firefox Send oikotevẽ JavaScript? whyJavascript = ¿Mbaére Send oikotevẽ JavaScript?
enableJavascript = Ikatúpa embojuruja JavaScript ha ehaãjey uperire. 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" # 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 expiresHoursMinutes = { $hours } h { $minutes } m
@ -48,8 +47,7 @@ passwordSetError = Ndaikatúi oikóvo ko ñeẽñemi
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Molawo
title = Firefox Molawo
siteSubtitle = web yimontalo siteSubtitle = web yimontalo
siteFeedback = Potunu siteFeedback = Potunu
uploadPageLearnMore = Pobalajariya po'olo uploadPageLearnMore = Pobalajariya po'olo
@ -42,8 +41,7 @@ downloadNotification = U pilopohulimu ma yilapato.
downloadFinish = Mopohuli Yilapato downloadFinish = Mopohuli Yilapato
# This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)". # This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)".
fileSizeProgress = ({ $partialSize } meyalo { $totalSize }) fileSizeProgress = ({ $partialSize } meyalo { $totalSize })
# Firefox Send is a brand name and should not be localized. sendYourFilesLink = Yimontali Molawo
sendYourFilesLink = Yimontali Firefox Molawo
downloadingPageProgress = Modetohu { $filename } ({ $size }) downloadingPageProgress = Modetohu { $filename } ({ $size })
downloadFirefoxButtonSub = Pereyi Mopohuli downloadFirefoxButtonSub = Pereyi Mopohuli
uploadedFile = Berkas uploadedFile = Berkas

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = משוב siteFeedback = משוב
importingFile = מתבצע ייבוא… importingFile = מתבצע ייבוא…
encryptingFile = מתבצעת הצפנה... encryptingFile = מתבצעת הצפנה...
@ -21,13 +20,13 @@ unlockButtonLabel = שחרור נעילה
downloadButtonLabel = הורדה downloadButtonLabel = הורדה
downloadFinish = ההורדה הושלמה downloadFinish = ההורדה הושלמה
fileSizeProgress = ({ $partialSize } מתוך { $totalSize }) fileSizeProgress = ({ $partialSize } מתוך { $totalSize })
sendYourFilesLink = נסו את Firefox Send sendYourFilesLink = נסו את Send
errorPageHeader = משהו השתבש! errorPageHeader = משהו השתבש!
fileTooBig = הקובץ הזה גדול מידי להעלאה. עליו להיות קטן מ־{ $size }. fileTooBig = הקובץ הזה גדול מידי להעלאה. עליו להיות קטן מ־{ $size }.
linkExpiredAlt = הקישור פג linkExpiredAlt = הקישור פג
notSupportedHeader = הדפדפן שלך לא נתמך. notSupportedHeader = הדפדפן שלך לא נתמך.
notSupportedLink = למה אין תמיכה בדפדפן שלי? notSupportedLink = למה אין תמיכה בדפדפן שלי?
notSupportedOutdatedDetail = לצערנו גרסת Firefox זו לא תומכת בטכנולוגית הרשת שמפעילה את Firefox Send. יש לעדכן את הגרסה של הדפדפן שלך. notSupportedOutdatedDetail = לצערנו גרסת Firefox זו לא תומכת בטכנולוגית הרשת שמפעילה את Send. יש לעדכן את הגרסה של הדפדפן שלך.
updateFirefox = עדכון Firefox updateFirefox = עדכון Firefox
deletePopupCancel = ביטול deletePopupCancel = ביטול
deleteButtonHover = מחיקה deleteButtonHover = מחיקה
@ -35,8 +34,8 @@ footerLinkLegal = מידע משפטי
footerLinkPrivacy = פרטיות footerLinkPrivacy = פרטיות
footerLinkCookies = קובצי עוגיות footerLinkCookies = קובצי עוגיות
passwordTryAgain = סיסמה שגויה. נא לנסות שוב. passwordTryAgain = סיסמה שגויה. נא לנסות שוב.
javascriptRequired = ל־Firefox Send דרוש JavaScript javascriptRequired = ל־Send דרוש JavaScript
whyJavascript = למה ל־Firefox Send דרוש JavaScript? whyJavascript = למה ל־Send דרוש JavaScript?
enableJavascript = נא להפעיל JavaScript ולנסות שוב. enableJavascript = נא להפעיל JavaScript ולנסות שוב.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } שע׳ { $minutes } דק׳ expiresHoursMinutes = { $hours } שע׳ { $minutes } דק׳
@ -49,8 +48,7 @@ passwordSetError = לא ניתן להגדיר את הססמה הזאת
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Povratne informacije siteFeedback = Povratne informacije
importingFile = Uvoz… importingFile = Uvoz…
encryptingFile = Šifriranje … encryptingFile = Šifriranje …
@ -22,13 +21,13 @@ unlockButtonLabel = Otključaj
downloadButtonLabel = Preuzmi downloadButtonLabel = Preuzmi
downloadFinish = Preuzimanje je završeno. downloadFinish = Preuzimanje je završeno.
fileSizeProgress = ({ $partialSize } od { $totalSize }) fileSizeProgress = ({ $partialSize } od { $totalSize })
sendYourFilesLink = Isprobaj Firefox Send sendYourFilesLink = Isprobaj Send
errorPageHeader = Dogodila se neka greška! errorPageHeader = Dogodila se neka greška!
fileTooBig = Datoteka je prevelika za prijenos. Mora biti manja od { $size }. fileTooBig = Datoteka je prevelika za prijenos. Mora biti manja od { $size }.
linkExpiredAlt = Poveznica je istekla linkExpiredAlt = Poveznica je istekla
notSupportedHeader = Tvoj preglednik nije podržan. notSupportedHeader = Tvoj preglednik nije podržan.
notSupportedLink = Zašto moj 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 updateFirefox = Ažuriraj Firefox
deletePopupCancel = Odustani deletePopupCancel = Odustani
deleteButtonHover = Obriši deleteButtonHover = Obriši
@ -36,8 +35,8 @@ footerLinkLegal = Pravni podaci
footerLinkPrivacy = Privatnost footerLinkPrivacy = Privatnost
footerLinkCookies = Kolačići footerLinkCookies = Kolačići
passwordTryAgain = Netočna lozinka. Pokušaj ponovo. passwordTryAgain = Netočna lozinka. Pokušaj ponovo.
javascriptRequired = Za Firefox Send potreban je JavaScript javascriptRequired = Za Send potreban je JavaScript
whyJavascript = Zašto je za Firefox Send potreban JavaScript? whyJavascript = Zašto je za Send potreban JavaScript?
enableJavascript = Aktiviraj JavaScript i pokušaj ponovo. 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" # 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 expiresHoursMinutes = { $hours }s { $minutes }m
@ -50,8 +49,7 @@ passwordSetError = Lozinku nije moguće postaviti
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Komentar siteFeedback = Komentar
importingFile = Importuje so... importingFile = Importuje so...
encryptingFile = Zaklučuje so... encryptingFile = Zaklučuje so...
@ -24,13 +23,13 @@ unlockButtonLabel = Wotewrěć
downloadButtonLabel = Sćahnyć downloadButtonLabel = Sćahnyć
downloadFinish = Sćehnjenje dokónčene downloadFinish = Sćehnjenje dokónčene
fileSizeProgress = ({ $partialSize } z { $totalSize }) fileSizeProgress = ({ $partialSize } z { $totalSize })
sendYourFilesLink = Firefox Send wupruwować sendYourFilesLink = Send wupruwować
errorPageHeader = Něšto je so nimokuliło! errorPageHeader = Něšto je so nimokuliło!
fileTooBig = Tuta dataja je přewulka za nahraće. Měła mjeńša hač { $size } być. fileTooBig = Tuta dataja je přewulka za nahraće. Měła mjeńša hač { $size } być.
linkExpiredAlt = Wotkaz je spadnjeny linkExpiredAlt = Wotkaz je spadnjeny
notSupportedHeader = Waš wobhladowak so njepodpěruje. notSupportedHeader = Waš wobhladowak so njepodpěruje.
notSupportedLink = Čehodla so mój wobhladowak 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ć updateFirefox = Firefox aktualizować
deletePopupCancel = Přetorhnyć deletePopupCancel = Přetorhnyć
deleteButtonHover = Zhašeć deleteButtonHover = Zhašeć
@ -38,8 +37,8 @@ footerLinkLegal = Prawniske
footerLinkPrivacy = Priwatnosć footerLinkPrivacy = Priwatnosć
footerLinkCookies = Placki footerLinkCookies = Placki
passwordTryAgain = Wopačne hesło. Prošu spytajće hišće raz. passwordTryAgain = Wopačne hesło. Prošu spytajće hišće raz.
javascriptRequired = Firefox Send JavaScript trjeba javascriptRequired = Send JavaScript trjeba
whyJavascript = Čehodla Firefox Send JavaScript trjeba? whyJavascript = Čehodla Send JavaScript trjeba?
enableJavascript = Prošu zmóžńće JavaScript a spytajće hišće raz. 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" # 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ń. expiresHoursMinutes = { $hours } hodź. { $minutes } mjeń.
@ -52,8 +51,7 @@ passwordSetError = Tute hesło njeda so nastajić
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Visszajelzés siteFeedback = Visszajelzés
importingFile = Importálás… importingFile = Importálás…
encryptingFile = Titkosítás… encryptingFile = Titkosítás…
@ -20,13 +19,13 @@ unlockButtonLabel = Feloldás
downloadButtonLabel = Letöltés downloadButtonLabel = Letöltés
downloadFinish = A letöltés befejeződött downloadFinish = A letöltés befejeződött
fileSizeProgress = ({ $partialSize } / { $totalSize }) fileSizeProgress = ({ $partialSize } / { $totalSize })
sendYourFilesLink = Próbálja ki a Firefox Sendet sendYourFilesLink = Próbálja ki a Sendet
errorPageHeader = Hiba történt! errorPageHeader = Hiba történt!
fileTooBig = Ez a fájl túl nagy a feltöltéshez. Kevesebb mint { $size } kell legyen. fileTooBig = Ez a fájl túl nagy a feltöltéshez. Kevesebb mint { $size } kell legyen.
linkExpiredAlt = A hivatkozás lejárt linkExpiredAlt = A hivatkozás lejárt
notSupportedHeader = A böngésző nem támogatott. notSupportedHeader = A böngésző nem támogatott.
notSupportedLink = Miért nem támogatott a böngészőm? 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 updateFirefox = Firefox frissítése
deletePopupCancel = Mégse deletePopupCancel = Mégse
deleteButtonHover = Törlés deleteButtonHover = Törlés
@ -34,8 +33,8 @@ footerLinkLegal = Jogi információk
footerLinkPrivacy = Adatvédelem footerLinkPrivacy = Adatvédelem
footerLinkCookies = Sütik footerLinkCookies = Sütik
passwordTryAgain = Helytelen jelszó. Próbálja meg újra. passwordTryAgain = Helytelen jelszó. Próbálja meg újra.
javascriptRequired = A Firefox Sendhez JavaScript szükséges javascriptRequired = A Sendhez JavaScript szükséges
whyJavascript = Miért van szükség JavaScriptre a Firefox Sendhez? whyJavascript = Miért van szükség JavaScriptre a Sendhez?
enableJavascript = Kérjük engedélyezze a JavaScriptet, majd próbálkozzon újra. 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" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }ó { $minutes }p expiresHoursMinutes = { $hours }ó { $minutes }p
@ -48,8 +47,7 @@ passwordSetError = Ez a jelszó nem állítható be
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Ka olna' max jant'oj yab u t'ojnal alwa' siteFeedback = Ka olna' max jant'oj yab u t'ojnal alwa'
importingFile = k'wajat i chiyál... importingFile = k'wajat i chiyál...
encryptingFile = K'wajat i tsinat dheyál... encryptingFile = K'wajat i tsinat dheyál...
@ -18,13 +17,13 @@ unlockButtonLabel = Ka japiy
downloadButtonLabel = Ka pa'ba' downloadButtonLabel = Ka pa'ba'
downloadFinish = Tala' pa'iyits downloadFinish = Tala' pa'iyits
fileSizeProgress = { $partialSize } xi ti { $totalSize } fileSizeProgress = { $partialSize } xi ti { $totalSize }
sendYourFilesLink = Ka eyendha' Firefox Send sendYourFilesLink = Ka eyendha' Send
errorPageHeader = ¡Yab kalej alwa'! errorPageHeader = ¡Yab kalej alwa'!
fileTooBig = Tekedh pulik axi a le' ka kadh'ba', kwa'al kin alemna' { $size } fileTooBig = Tekedh pulik axi a le' ka kadh'ba', kwa'al kin alemna' { $size }
linkExpiredAlt = Yabats u awil ki ela' linkExpiredAlt = Yabats u awil ki ela'
notSupportedHeader = Yab u awil ka japiyat k'al axi NAVEGADOR notSupportedHeader = Yab u awil ka japiyat k'al axi NAVEGADOR
notSupportedLink = ¿Jale' ti u NAVEGADOR yab in japiyal? 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 updateFirefox = Ka itmedha' Firefox
deletePopupCancel = Ka kuba' deletePopupCancel = Ka kuba'
deleteButtonHover = Ka pakuw deleteButtonHover = Ka pakuw
@ -32,8 +31,8 @@ footerLinkLegal = Axi walkadh ka t'ajan
footerLinkPrivacy = Tsinataláb footerLinkPrivacy = Tsinataláb
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Yab ja' an tsinat japixtaláb. Ka exa' junil. passwordTryAgain = Yab ja' an tsinat japixtaláb. Ka exa' junil.
javascriptRequired = Firefox Send in yejenchal JavaScript javascriptRequired = Send in yejenchal JavaScript
whyJavascript = ¿Jale' Firefox Send in yejenchal JavaScript? whyJavascript = ¿Jale' Send in yejenchal JavaScript?
enableJavascript = Ka lek'wtsiy JavaScript ani ka exa' junil. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -46,8 +45,7 @@ passwordSetError = Axi tsinat japixtaláb yab u awil ka eyendha'
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@ -94,7 +92,7 @@ trySendDescription = Ka eyendha' { -send-brand } abal ka abna' a t'ojlabil, yab
tooManyFiles = tooManyFiles =
{ $count -> { $count ->
*[other] *[other]
Expidh u awil ka k'adhba' 1 i t'ojláb Expidh u awil ka k'adhba' 1 i t'ojláb
Expidh u awil ka k'adhba' { $count } i t'ojláb. Expidh u awil ka k'adhba' { $count } i t'ojláb.
} }
# count will always be > 10 # count will always be > 10

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Արձագանք siteFeedback = Արձագանք
importingFile = Ներմուծում... importingFile = Ներմուծում...
encryptingFile = Գաղտնագրում… encryptingFile = Գաղտնագրում…
@ -20,13 +19,13 @@ unlockButtonLabel = Ապակողպել
downloadButtonLabel = Ներբեռնել downloadButtonLabel = Ներբեռնել
downloadFinish = Ներբեռնումն ավարտված է downloadFinish = Ներբեռնումն ավարտված է
fileSizeProgress = ({ $partialSize }-ը { $totalSize })-ից fileSizeProgress = ({ $partialSize }-ը { $totalSize })-ից
sendYourFilesLink = Փորձել Firefox Send-ը sendYourFilesLink = Փորձել Send-ը
errorPageHeader = Ինչ-որ բան այն չէ errorPageHeader = Ինչ-որ բան այն չէ
fileTooBig = Այդ ֆայլը չափազանց մեծ է վերբեռնելու համար: Այն պետք է լինի ավելի քիչ, քան { $size }-ը fileTooBig = Այդ ֆայլը չափազանց մեծ է վերբեռնելու համար: Այն պետք է լինի ավելի քիչ, քան { $size }-ը
linkExpiredAlt = Հղումն ավարտված է linkExpiredAlt = Հղումն ավարտված է
notSupportedHeader = Ձեր զննարկիչը չի աջակցվում: notSupportedHeader = Ձեր զննարկիչը չի աջակցվում:
notSupportedLink = Ինչու իմ զննարկիչը չի աջակցվում: notSupportedLink = Ինչու իմ զննարկիչը չի աջակցվում:
notSupportedOutdatedDetail = Դժբախտաբար, Firefox- ի այս տարբերակը չի աջակցում այն վեբ տեխնոլոգիան, որը պետք է Firefox Send-ի համար: Դուք պետք է թարմացնեք ձեր զննարկիչը: notSupportedOutdatedDetail = Դժբախտաբար, Firefox- ի այս տարբերակը չի աջակցում այն վեբ տեխնոլոգիան, որը պետք է Send-ի համար: Դուք պետք է թարմացնեք ձեր զննարկիչը:
updateFirefox = Թարմացնել Firefox-ը updateFirefox = Թարմացնել Firefox-ը
deletePopupCancel = Չեղարկել deletePopupCancel = Չեղարկել
deleteButtonHover = Ջնջել deleteButtonHover = Ջնջել
@ -34,8 +33,8 @@ footerLinkLegal = Իրավական
footerLinkPrivacy = Գաղտնիություն footerLinkPrivacy = Գաղտնիություն
footerLinkCookies = Cookie-ներ footerLinkCookies = Cookie-ներ
passwordTryAgain = Սխալ գաղտնաբառ. Կրկին փորձեք: passwordTryAgain = Սխալ գաղտնաբառ. Կրկին փորձեք:
javascriptRequired = Firefox Send-ը պահանջում է JavaScript javascriptRequired = Send-ը պահանջում է JavaScript
whyJavascript = Ինչո՞ւ է Firefox Send-ը պահանջում JavaScript. whyJavascript = Ինչո՞ւ է Send-ը պահանջում JavaScript.
enableJavascript = Խնդրում ենք միացնել JavaScript-ը և կրկին փորձել: enableJavascript = Խնդրում ենք միացնել JavaScript-ը և կրկին փորձել:
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }ժ { $minutes }ր expiresHoursMinutes = { $hours }ժ { $minutes }ր
@ -48,8 +47,7 @@ passwordSetError = Այս գաղտնաբառը հնարավոր չէ սահմա
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Ուղարկել -send-short-brand = Ուղարկել
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Reaction siteFeedback = Reaction
importingFile = Importation… importingFile = Importation…
encryptingFile = Cryptation... encryptingFile = Cryptation...
@ -20,13 +19,13 @@ unlockButtonLabel = Disblocar
downloadButtonLabel = Discargar downloadButtonLabel = Discargar
downloadFinish = Discargamento completate downloadFinish = Discargamento completate
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Proba Firefox Send sendYourFilesLink = Proba Send
errorPageHeader = Un error occurreva! errorPageHeader = Un error occurreva!
fileTooBig = Iste file es troppo grande pro incargar. Illo debe esser inferior a { $size }. fileTooBig = Iste file es troppo grande pro incargar. Illo debe esser inferior a { $size }.
linkExpiredAlt = Ligamine expirate linkExpiredAlt = Ligamine expirate
notSupportedHeader = Tu navigator non es supportate notSupportedHeader = Tu navigator non es supportate
notSupportedLink = Proque non es mi navigator 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 updateFirefox = Actualisar Firefox
deletePopupCancel = Cancellar deletePopupCancel = Cancellar
deleteButtonHover = Deler deleteButtonHover = Deler
@ -34,8 +33,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Confidentialitate footerLinkPrivacy = Confidentialitate
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Contrasigno incorrecte. Retenta. passwordTryAgain = Contrasigno incorrecte. Retenta.
javascriptRequired = Firefox Send require JavaScript javascriptRequired = Send require JavaScript
whyJavascript = Proque Firefox Send require JavaScript? whyJavascript = Proque Send require JavaScript?
enableJavascript = Por favor activa JavaScript e tenta novemente. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Iste contrasigno non ha potite esser establite
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Saran siteFeedback = Saran
importingFile = Mengimpor… importingFile = Mengimpor…
encryptingFile = Mengenkripsi... encryptingFile = Mengenkripsi...
@ -18,13 +17,13 @@ unlockButtonLabel = Buka
downloadButtonLabel = Unduh downloadButtonLabel = Unduh
downloadFinish = Unduhan Selesai downloadFinish = Unduhan Selesai
fileSizeProgress = ({ $partialSize } dari { $totalSize }) fileSizeProgress = ({ $partialSize } dari { $totalSize })
sendYourFilesLink = Coba Firefox Send sendYourFilesLink = Coba Send
errorPageHeader = Terjadi kesalahan! errorPageHeader = Terjadi kesalahan!
fileTooBig = Berkas terlalu besar untuk diunggah. Harus kurang dari { $size }. fileTooBig = Berkas terlalu besar untuk diunggah. Harus kurang dari { $size }.
linkExpiredAlt = Tautan kedaluwarsa linkExpiredAlt = Tautan kedaluwarsa
notSupportedHeader = Peramban Anda tidak mendukung. notSupportedHeader = Peramban Anda tidak mendukung.
notSupportedLink = Mengapa peramban saya tidak didukung? 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 updateFirefox = Perbarui Firefox
deletePopupCancel = Batal deletePopupCancel = Batal
deleteButtonHover = Hapus deleteButtonHover = Hapus
@ -32,8 +31,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privasi footerLinkPrivacy = Privasi
footerLinkCookies = Kuki footerLinkCookies = Kuki
passwordTryAgain = Sandi salah. Silakan coba lagi. passwordTryAgain = Sandi salah. Silakan coba lagi.
javascriptRequired = Firefox Send membutuhkan JavaScript. javascriptRequired = Send membutuhkan JavaScript.
whyJavascript = Mengapa Firefox Send membutuhkan JavaScript? whyJavascript = Mengapa Send membutuhkan JavaScript?
enableJavascript = Silakan aktifkan JavaScript dan coba lagi. 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" # 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 expiresHoursMinutes = { $hours }j { $minutes }m
@ -46,8 +45,7 @@ passwordSetError = Tidak bisa menyetel sandi ini
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. # Send is a brand name and should not be localized.
title = Firefox Zipu title = Zipu
siteFeedback = Nzaghachi siteFeedback = Nzaghachi
importingFile = Mbubata… importingFile = Mbubata…
encryptingFile = ezoro ezo... encryptingFile = ezoro ezo...
@ -20,17 +20,17 @@ unlockButtonLabel = imeghe
downloadButtonLabel = budata downloadButtonLabel = budata
downloadFinish = Mbudata zuru ezu downloadFinish = Mbudata zuru ezu
fileSizeProgress = ({ $partialSize } nke { $totalSize }) fileSizeProgress = ({ $partialSize } nke { $totalSize })
sendYourFilesLink = Firefox Zipu sendYourFilesLink = Zipu
errorPageHeader = Onwere ihe na-adighi mma errorPageHeader = Onwere ihe na-adighi mma
fileTooBig = Failu a ebuka ibulite. Ọ kwẹsịghi ịkalị { $size } fileTooBig = Failu a ebuka ibulite. Ọ kwẹsịghi ịkalị { $size }
linkExpiredAlt = Njiko jedebe linkExpiredAlt = Njiko jedebe
notSupportedHeader = Adighi akwado ihe nchogharị gị notSupportedHeader = Adighi akwado ihe nchogharị gị
notSupportedLink = Gịnị kpatara na akwadoghị ihe nchọgharị m? notSupportedLink = Gịnị kpatara na akwadoghị ihe nchọgharị m?
notSupportedOutdatedDetail = Ọ dị nwute na ụdị Firefox a anaghị akwado teknụzụ weebụ na-eji Firefox Zipụ. Ikwesiri imelite ihe nchọgharị gị. notSupportedOutdatedDetail = Ọ dị nwute na ụdị Firefox a anaghị akwado teknụzụ weebụ na-eji Zipụ. Ikwesiri imelite ihe nchọgharị gị.
updateFirefox = Melite Firefox updateFirefox = Melite Firefox
deletePopupCancel = Kagbuo deletePopupCancel = Kagbuo
deleteButtonHover = Hichapụ deleteButtonHover = Hichapụ
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ọ 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -43,8 +43,7 @@ passwordSetError = Enweghị ike ịtọ paswọọdụ a
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Zipu, Ziga -send-short-brand = Zipu, Ziga
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Feedback siteFeedback = Feedback
importingFile = Importazione in corso… importingFile = Importazione in corso…
encryptingFile = Crittazione in corso… encryptingFile = Crittazione in corso…
@ -20,13 +19,13 @@ unlockButtonLabel = Sblocca
downloadButtonLabel = Scarica downloadButtonLabel = Scarica
downloadFinish = Download completato downloadFinish = Download completato
fileSizeProgress = ({ $partialSize } di { $totalSize }) fileSizeProgress = ({ $partialSize } di { $totalSize })
sendYourFilesLink = Prova Firefox Send sendYourFilesLink = Prova Send
errorPageHeader = Si è verificato un errore. errorPageHeader = Si è verificato un errore.
fileTooBig = Le dimensioni di questo file sono eccessive. Dovrebbe essere inferiore a { $size }. fileTooBig = Le dimensioni di questo file sono eccessive. Dovrebbe essere inferiore a { $size }.
linkExpiredAlt = Link scaduto linkExpiredAlt = Link scaduto
notSupportedHeader = Il browser in uso non è supportato. notSupportedHeader = Il browser in uso non è supportato.
notSupportedLink = Perché questo browser non risulta 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 updateFirefox = Aggiorna Firefox
deletePopupCancel = Annulla deletePopupCancel = Annulla
deleteButtonHover = Elimina deleteButtonHover = Elimina
@ -34,8 +33,8 @@ footerLinkLegal = Note legali
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookie footerLinkCookies = Cookie
passwordTryAgain = Password errata, riprovare. passwordTryAgain = Password errata, riprovare.
javascriptRequired = Firefox Send richiede JavaScript javascriptRequired = Send richiede JavaScript
whyJavascript = Perché Firefox Send richiede JavaScript? whyJavascript = Perché Send richiede JavaScript?
enableJavascript = Attiva JavaScript e riprova. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Impossibile impostare la password
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Aq'a yol sti' siteFeedback = Aq'a yol sti'
importingFile = Eq'otzan importingFile = Eq'otzan
encryptingFile = La muj isik'lele encryptingFile = La muj isik'lele
@ -20,7 +19,7 @@ unlockButtonLabel = Eesa ikach'ub'al
downloadButtonLabel = Eq'o ku'tzan downloadButtonLabel = Eq'o ku'tzan
downloadFinish = Eq'o ku'tzan kaajayil downloadFinish = Eq'o ku'tzan kaajayil
fileSizeProgress = ({ $partialSize }tetz{ $totalSize }) 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! errorPageHeader = At ma'l kam valexh kat eli!
notSupportedHeader = U chukb'al aq'one' ye' ni toleb'e'. notSupportedHeader = U chukb'al aq'one' ye' ni toleb'e'.
notSupportedLink = Kam q'ii uve' ye' kuxh ni toleb' u chukb'al vaq'one'? notSupportedLink = Kam q'ii uve' ye' kuxh ni toleb' u chukb'al vaq'one'?
@ -36,8 +35,7 @@ expiresMinutes = { $minutes }m
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Aq'b'en -send-short-brand = Aq'b'en
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = フィードバック siteFeedback = フィードバック
importingFile = インポート中... importingFile = インポート中...
encryptingFile = 暗号化中... encryptingFile = 暗号化中...
@ -18,13 +17,13 @@ unlockButtonLabel = ロック解除
downloadButtonLabel = ダウンロード downloadButtonLabel = ダウンロード
downloadFinish = ダウンロード完了 downloadFinish = ダウンロード完了
fileSizeProgress = ({ $partialSize } / { $totalSize }) fileSizeProgress = ({ $partialSize } / { $totalSize })
sendYourFilesLink = Firefox Send を試す sendYourFilesLink = Send を試す
errorPageHeader = 何か問題が発生しました。 errorPageHeader = 何か問題が発生しました。
fileTooBig = このファイルは大きすぎるためアップロードできません。上限は { $size } です。 fileTooBig = このファイルは大きすぎるためアップロードできません。上限は { $size } です。
linkExpiredAlt = リンク期限切れ linkExpiredAlt = リンク期限切れ
notSupportedHeader = お使いのブラウザーには対応していません。 notSupportedHeader = お使いのブラウザーには対応していません。
notSupportedLink = なぜ私のブラウザーには対応していないのでしょうか? notSupportedLink = なぜ私のブラウザーには対応していないのでしょうか?
notSupportedOutdatedDetail = 残念ながらお使いのバージョンの Firefox は Firefox Send が活用しているウェブ技術に対応していません。ブラウザーを更新する必要があります。 notSupportedOutdatedDetail = 残念ながらお使いのバージョンの Firefox は Send が活用しているウェブ技術に対応していません。ブラウザーを更新する必要があります。
updateFirefox = Firefox を更新 updateFirefox = Firefox を更新
deletePopupCancel = キャンセル deletePopupCancel = キャンセル
deleteButtonHover = 削除 deleteButtonHover = 削除
@ -32,8 +31,8 @@ footerLinkLegal = 法的情報
footerLinkPrivacy = プライバシー footerLinkPrivacy = プライバシー
footerLinkCookies = Cookie footerLinkCookies = Cookie
passwordTryAgain = パスワードが正しくありません。再度入力してください。 passwordTryAgain = パスワードが正しくありません。再度入力してください。
javascriptRequired = Firefox Send を使うには JavaScript が必要です javascriptRequired = Send を使うには JavaScript が必要です
whyJavascript = Firefox Send が JavaScript を必要とする理由 whyJavascript = Send が JavaScript を必要とする理由
enableJavascript = JavaScript を有効にして再度試してください。 enableJavascript = JavaScript を有効にして再度試してください。
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } 時間 { $minutes } 分 expiresHoursMinutes = { $hours } 時間 { $minutes } 分
@ -46,8 +45,7 @@ passwordSetError = このパスワードは設定できませんでした
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = გამოხმაურება siteFeedback = გამოხმაურება
importingFile = გადმოტანა... importingFile = გადმოტანა...
encryptingFile = დაშიფვრა... encryptingFile = დაშიფვრა...
@ -20,13 +19,13 @@ unlockButtonLabel = გახსნა
downloadButtonLabel = ჩამოტვირთვა downloadButtonLabel = ჩამოტვირთვა
downloadFinish = ჩამოტვირთვა დასრულდა downloadFinish = ჩამოტვირთვა დასრულდა
fileSizeProgress = ({ $partialSize } { $totalSize }-იდან) fileSizeProgress = ({ $partialSize } { $totalSize }-იდან)
sendYourFilesLink = გამოცადეთ Firefox Send sendYourFilesLink = გამოცადეთ Send
errorPageHeader = რაღაც ხარვეზია! errorPageHeader = რაღაც ხარვეზია!
fileTooBig = ფაილი ზედმეტად დიდია. უნდა იყოს { $size } ზომაზე ნაკლები. fileTooBig = ფაილი ზედმეტად დიდია. უნდა იყოს { $size } ზომაზე ნაკლები.
linkExpiredAlt = ბმული ვადაგასულია linkExpiredAlt = ბმული ვადაგასულია
notSupportedHeader = თქვენი ბრაუზერი არაა მხარდაჭერილი. notSupportedHeader = თქვენი ბრაუზერი არაა მხარდაჭერილი.
notSupportedLink = რატომ არაა ჩემი ბრაუზერი მხარდაჭერილი? notSupportedLink = რატომ არაა ჩემი ბრაუზერი მხარდაჭერილი?
notSupportedOutdatedDetail = სამწუხაროდ, Firefox-ის ამ ვერსიას არ გააჩნია ის ტექნოლოგია, რომელიც აუცილებელია Firefox Send-ის მუშაობისთვის. გესაჭიროებათ, ბრაუზერის განახლება. notSupportedOutdatedDetail = სამწუხაროდ, Firefox-ის ამ ვერსიას არ გააჩნია ის ტექნოლოგია, რომელიც აუცილებელია Send-ის მუშაობისთვის. გესაჭიროებათ, ბრაუზერის განახლება.
updateFirefox = Firefox-ის განახლება updateFirefox = Firefox-ის განახლება
deletePopupCancel = გაუქმება deletePopupCancel = გაუქმება
deleteButtonHover = წაშლა deleteButtonHover = წაშლა
@ -34,8 +33,8 @@ footerLinkLegal = სამართლებრივი საკითხე
footerLinkPrivacy = პირადულობა footerLinkPrivacy = პირადულობა
footerLinkCookies = ფუნთუშები footerLinkCookies = ფუნთუშები
passwordTryAgain = პაროლი არასწორია. სცადეთ ხელახლა. passwordTryAgain = პაროლი არასწორია. სცადეთ ხელახლა.
javascriptRequired = Firefox Send საჭიროებს JavaScript-ს javascriptRequired = Send საჭიროებს JavaScript-ს
whyJavascript = რატომ საჭიროებს Firefox Send JavaScript-ს? whyJavascript = რატომ საჭიროებს Send JavaScript-ს?
enableJavascript = გთხოვთ ჩართოთ JavaScript და სცადოთ ხელახლა. enableJavascript = გთხოვთ ჩართოთ JavaScript და სცადოთ ხელახლა.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }სთ { $minutes }წთ expiresHoursMinutes = { $hours }სთ { $minutes }წთ
@ -48,8 +47,7 @@ passwordSetError = ამ პაროლის დაყენება ვე
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Tikti siteFeedback = Tikti
importingFile = Akter... importingFile = Akter...
encryptingFile = Awgelhen... encryptingFile = Awgelhen...
@ -20,13 +19,13 @@ unlockButtonLabel = Serreḥ
downloadButtonLabel = Sider downloadButtonLabel = Sider
downloadFinish = Asider yemmed downloadFinish = Asider yemmed
fileSizeProgress = ({ $partialSize } seg { $totalSize }) fileSizeProgress = ({ $partialSize } seg { $totalSize })
sendYourFilesLink = Ɛreḍ Firefox Send sendYourFilesLink = Ɛreḍ Send
errorPageHeader = Yella wayen yeḍran! errorPageHeader = Yella wayen yeḍran!
fileTooBig = Afaylu-agi meqqer aṭas. Yessefk ad yili daw n { $size }. fileTooBig = Afaylu-agi meqqer aṭas. Yessefk ad yili daw n { $size }.
linkExpiredAlt = Aseɣwen yemmut linkExpiredAlt = Aseɣwen yemmut
notSupportedHeader = Iminig-ik ur ittusefrak ara notSupportedHeader = Iminig-ik ur ittusefrak ara
notSupportedLink = Ayγer iminig inu ur yettwasefrek 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 updateFirefox = Leqqem Firefox
deletePopupCancel = Sefsex deletePopupCancel = Sefsex
deleteButtonHover = Kkes deleteButtonHover = Kkes
@ -34,8 +33,8 @@ footerLinkLegal = Usḍif
footerLinkPrivacy = Tabaḍnit footerLinkPrivacy = Tabaḍnit
footerLinkCookies = Inagan n tuqqna footerLinkCookies = Inagan n tuqqna
passwordTryAgain = Yir awal uffir. Ɛreḍ tikelt nniḍen. passwordTryAgain = Yir awal uffir. Ɛreḍ tikelt nniḍen.
javascriptRequired = Firefox Send yesra JavaScript javascriptRequired = Send yesra JavaScript
whyJavascript = Ayɣer firefox Send yesra JavaScript? whyJavascript = Ayɣer Send yesra JavaScript?
enableJavascript = Ma ulac aɣilif rmed JavaScript sakin ɛreḍ tikkelt nniḍen. 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" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }Isragen { $minutes }Tisdatin expiresHoursMinutes = { $hours }Isragen { $minutes }Tisdatin
@ -48,8 +47,7 @@ passwordSetError = Awal-agi uffir ur izmir ara ad ittwabaded
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. # Send is a brand name and should not be localized.
title = Firefox Send title = Send
siteFeedback = 사용자 의견 siteFeedback = 사용자 의견
importingFile = 가져오는 중… importingFile = 가져오는 중…
encryptingFile = 암호화 중… encryptingFile = 암호화 중…
@ -12,13 +12,13 @@ unlockButtonLabel = 잠금 해제
downloadButtonLabel = 다운로드 downloadButtonLabel = 다운로드
downloadFinish = 다운로드 완료 downloadFinish = 다운로드 완료
fileSizeProgress = ({ $partialSize } / { $totalSize }) fileSizeProgress = ({ $partialSize } / { $totalSize })
sendYourFilesLink = Firefox Send 써보기 sendYourFilesLink = Send 써보기
errorPageHeader = 오류가 발생했습니다! errorPageHeader = 오류가 발생했습니다!
fileTooBig = 파일의 크기가 너무 큽니다. { $size } 보다 작아야 합니다. fileTooBig = 파일의 크기가 너무 큽니다. { $size } 보다 작아야 합니다.
linkExpiredAlt = 링크가 만료됨 linkExpiredAlt = 링크가 만료됨
notSupportedHeader = 이 브라우저는 지원되지 않습니다. notSupportedHeader = 이 브라우저는 지원되지 않습니다.
notSupportedLink = 왜 이 브라우저는 지원이 되지 않나요? notSupportedLink = 왜 이 브라우저는 지원이 되지 않나요?
notSupportedOutdatedDetail = 안타깝게도 사용중인 Firefox 버전에서는 Firefox Send에 사용되는 웹 기술을 지원하지 않습니다. 브라우저 업데이트가 필요합니다. notSupportedOutdatedDetail = 안타깝게도 사용중인 Firefox 버전에서는 Send에 사용되는 웹 기술을 지원하지 않습니다. 브라우저 업데이트가 필요합니다.
updateFirefox = Firefox 업데이트 updateFirefox = Firefox 업데이트
deletePopupCancel = 아니오 deletePopupCancel = 아니오
deleteButtonHover = 삭제 deleteButtonHover = 삭제
@ -26,8 +26,8 @@ footerLinkLegal = 법적 정보
footerLinkPrivacy = 개인정보 보호 footerLinkPrivacy = 개인정보 보호
footerLinkCookies = 쿠키 footerLinkCookies = 쿠키
passwordTryAgain = 비밀번호가 맞지 않습니다. 다시 시도해 주세요. passwordTryAgain = 비밀번호가 맞지 않습니다. 다시 시도해 주세요.
javascriptRequired = Firefox Send는 JavaScript를 필요로 합니다 javascriptRequired = Send는 JavaScript를 필요로 합니다
whyJavascript = 왜 Firefox Send에 JavaScript가 필요하죠? whyJavascript = 왜 Send에 JavaScript가 필요하죠?
enableJavascript = JavaScript를 활성화하고 다시 시도해 주세요. enableJavascript = JavaScript를 활성화하고 다시 시도해 주세요.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }시간 { $minutes }분 expiresHoursMinutes = { $hours }시간 { $minutes }분
@ -40,8 +40,7 @@ passwordSetError = 이 비밀번호를 설정할 수 없었습니다
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Pateikti atsiliepimą siteFeedback = Pateikti atsiliepimą
importingFile = Importuojama… importingFile = Importuojama…
encryptingFile = Šifruojama… encryptingFile = Šifruojama…
@ -22,13 +21,13 @@ unlockButtonLabel = Atrakinti
downloadButtonLabel = Parsisiųsti downloadButtonLabel = Parsisiųsti
downloadFinish = Parsiuntimas baigtas downloadFinish = Parsiuntimas baigtas
fileSizeProgress = ({ $partialSize } iš { $totalSize }) fileSizeProgress = ({ $partialSize } iš { $totalSize })
sendYourFilesLink = Išbandyti „Firefox Send“ sendYourFilesLink = Išbandyti „Send“
errorPageHeader = Nutiko kažkas negero! errorPageHeader = Nutiko kažkas negero!
fileTooBig = Pasirinktas failas yra per didelis, kad jį būtų galima įkelti. Failo dydis neturėtų viršyti { $size } fileTooBig = Pasirinktas failas yra per didelis, kad jį būtų galima įkelti. Failo dydis neturėtų viršyti { $size }
linkExpiredAlt = Saitas nebegalioja linkExpiredAlt = Saitas nebegalioja
notSupportedHeader = Jūsų naršyklė nepalaikoma. notSupportedHeader = Jūsų naršyklė nepalaikoma.
notSupportedLink = Kodėl mano 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“ updateFirefox = Atnaujinti „Firefox“
deletePopupCancel = Atsisakyti deletePopupCancel = Atsisakyti
deleteButtonHover = Šalinti deleteButtonHover = Šalinti
@ -36,8 +35,8 @@ footerLinkLegal = Teisinė informacija
footerLinkPrivacy = Privatumas footerLinkPrivacy = Privatumas
footerLinkCookies = Slapukai footerLinkCookies = Slapukai
passwordTryAgain = Slaptažodis netinka. Bandykite dar kartą. passwordTryAgain = Slaptažodis netinka. Bandykite dar kartą.
javascriptRequired = „Firefox Send“ veikimui būtina įgalinti „JavaScript“ palaikymą javascriptRequired = „Send“ veikimui būtina įgalinti „JavaScript“ palaikymą
whyJavascript = Kodėl „Firefox Send“ neveikia išjungus „JavaScript“? whyJavascript = Kodėl „Send“ neveikia išjungus „JavaScript“?
enableJavascript = Įgalinkit „JavaScript“ ir bandykite dar kartą. 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" # 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. expiresHoursMinutes = { $hours } val. { $minutes } min.
@ -50,8 +49,7 @@ passwordSetError = Slaptažodžio nustatyti nepavyko
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = -mozilla =

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Tu'un jianininu siteFeedback = Tu'un jianininu
importingFile = Nasia´a… importingFile = Nasia´a…
encryptingFile = Encriptando... encryptingFile = Encriptando...
@ -19,13 +18,13 @@ unlockButtonLabel = Nkasɨ
downloadButtonLabel = Xinuu downloadButtonLabel = Xinuu
downloadFinish = Nnɨ´ɨ xinuu downloadFinish = Nnɨ´ɨ xinuu
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Ni´i Firefox Send sendYourFilesLink = Ni´i Send
errorPageHeader = ¡Iyo iin ntu nkene va´a! errorPageHeader = ¡Iyo iin ntu nkene va´a!
fileTooBig = Archivo ya´a ka´nu. Nejia chunku´va { $size } fileTooBig = Archivo ya´a ka´nu. Nejia chunku´va { $size }
linkExpiredAlt = Nnɨ´ɨ enlace linkExpiredAlt = Nnɨ´ɨ enlace
notSupportedHeader = Ntu íyo tiñu nuu ka̱a̱ nánuku ya´a. notSupportedHeader = Ntu íyo tiñu nuu ka̱a̱ nánuku ya´a.
notSupportedLink = ¿Navi ntu satiñ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 updateFirefox = Naxi´ñá Firefox
deletePopupCancel = Nkuvi-ka deletePopupCancel = Nkuvi-ka
deleteButtonHover = Xita deleteButtonHover = Xita
@ -33,8 +32,8 @@ footerLinkLegal = Tu´un nichi
footerLinkPrivacy = Tu´un xitu a kumiji noo´o footerLinkPrivacy = Tu´un xitu a kumiji noo´o
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Contraseña ntu vatu. Nachu´un tuku. passwordTryAgain = Contraseña ntu vatu. Nachu´un tuku.
javascriptRequired = Firefox Send ni´i JavaScript javascriptRequired = Send ni´i JavaScript
whyJavascript = ¿Navi Firefox Send ni´i JavaScript? whyJavascript = ¿Navi Send ni´i JavaScript?
enableJavascript = Kua´a jia´a JavaScript jee nachu´un tuku. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -47,8 +46,7 @@ passwordSetError = Ntu nkuvi sá´á contraseña
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Tu'un meu siteFeedback = Tu'un meu
importingFile = Ndakiin… importingFile = Ndakiin…
encryptingFile = Ndasami tu'un… encryptingFile = Ndasami tu'un…
@ -20,13 +19,13 @@ unlockButtonLabel = Kuna
downloadButtonLabel = Snuù downloadButtonLabel = Snuù
downloadFinish = Ntsinu snui downloadFinish = Ntsinu snui
fileSizeProgress = ({ $partialSize } ña { $totalSize }) fileSizeProgress = ({ $partialSize } ña { $totalSize })
sendYourFilesLink = Kuachu'un Firefox Send sendYourFilesLink = Kuachu'un Send
errorPageHeader = ¡Yee ña va'a! errorPageHeader = ¡Yee ña va'a!
fileTooBig = Kanu tutu yo. Tsini ñu'u koi tana { $size }. fileTooBig = Kanu tutu yo. Tsini ñu'u koi tana { $size }.
linkExpiredAlt = Ntoo enlace linkExpiredAlt = Ntoo enlace
notSupportedHeader = Kue ku kuni página. notSupportedHeader = Kue ku kuni página.
notSupportedLink = ¿Chanu kue ku kuncheuña? 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 updateFirefox = Ndu tsa'a Firefox
deletePopupCancel = Kunchatu deletePopupCancel = Kunchatu
deleteButtonHover = Stoò deleteButtonHover = Stoò
@ -34,8 +33,8 @@ footerLinkLegal = Aviso legal
footerLinkPrivacy = Ña meu footerLinkPrivacy = Ña meu
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Kue vaa ni chau sivi siki. Chai tuku. passwordTryAgain = Kue vaa ni chau sivi siki. Chai tuku.
javascriptRequired = Firefox Send tsiniñui JavaScript javascriptRequired = Send tsiniñui JavaScript
whyJavascript = ¿Chanu Firefox Send tsiniñui JavaScript? whyJavascript = ¿Chanu Send tsiniñui JavaScript?
enableJavascript = Saá ña mani katsi JavaScript chá kitsa tuku. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Ma ku ntanii tu'un see
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,4 +1,3 @@
# Firefox Send is a brand name and should not be localized.
title = ഫയർഫോക്സ് സെൻഡ് title = ഫയർഫോക്സ് സെൻഡ്
siteFeedback = പ്രതികരണം siteFeedback = പ്രതികരണം
importingFile = ഇറക്കുമതി ചെയ്യുന്നു... importingFile = ഇറക്കുമതി ചെയ്യുന്നു...
@ -48,7 +47,6 @@ passwordSetError = ഈ രഹസ്യവാക്ക് ക്രമീകര
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
-send-brand = ഫയർഫോക്സ് സെൻഡ് -send-brand = ഫയർഫോക്സ് സെൻഡ്
-send-short-brand = സെൻഡ് -send-short-brand = സെൻഡ്
-firefox = ഫയർഫോക്സ് -firefox = ഫയർഫോക്സ്

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteSubtitle = experimen web siteSubtitle = experimen web
siteFeedback = Maklum balas siteFeedback = Maklum balas
uploadPageHeader = Peribadi, Perkongsian Fail Dienkrip uploadPageHeader = Peribadi, Perkongsian Fail Dienkrip
@ -53,16 +52,14 @@ unlockInputLabel = Masukkan Kata Laluan
unlockInputPlaceholder = Kata laluan unlockInputPlaceholder = Kata laluan
unlockButtonLabel = Buka unlockButtonLabel = Buka
downloadFileTitle = Muat turun Fail Enkripsi 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 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.
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.
# Text and title used on the download link/button (indicates an action). # Text and title used on the download link/button (indicates an action).
downloadButtonLabel = Muat turun downloadButtonLabel = Muat turun
downloadNotification = Muat turun anda sudah siap. downloadNotification = Muat turun anda sudah siap.
downloadFinish = Muat turun Selesai downloadFinish = Muat turun Selesai
# This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)". # This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)".
fileSizeProgress = ({ $partialSize } daripada { $totalSize }) fileSizeProgress = ({ $partialSize } daripada { $totalSize })
# Firefox Send is a brand name and should not be localized. sendYourFilesLink = Cuba Send
sendYourFilesLink = Cuba Firefox Send
downloadingPageProgress = Memuat turun { $filename } ({ $size }) downloadingPageProgress = Memuat turun { $filename } ({ $size })
downloadingPageMessage = Sila biarkan tab ini terbuka semasa kami mengambil fail anda dan menghuraikannya. downloadingPageMessage = Sila biarkan tab ini terbuka semasa kami mengambil fail anda dan menghuraikannya.
errorAltText = Ralat memuat naik errorAltText = Ralat memuat naik
@ -73,10 +70,9 @@ fileTooBig = Fail terlalu besar untuk dimuat naik. Perlu kurang daripada { $size
linkExpiredAlt = Pautan sudah luput linkExpiredAlt = Pautan sudah luput
expiredPageHeader = Pautan ini sudah luput atau pun tidak pernah wujud! expiredPageHeader = Pautan ini sudah luput atau pun tidak pernah wujud!
notSupportedHeader = Pelayar anda tidak disokong. 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 Send. Anda perlu cuba pelayar lain. Kami syorkan Firefox!
notSupportedDetail = Malangnya, pelayar ini tidak menyokong teknologi web yang melaksanakan Firefox Send. Anda perlu cuba pelayar lain. Kami syorkan Firefox!
notSupportedLink = Kenapa pelayar saya tidak disokong? 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 updateFirefox = Kemaskini Firefox
downloadFirefoxButtonSub = Muat turun Percuma downloadFirefoxButtonSub = Muat turun Percuma
uploadedFile = Fail uploadedFile = Fail
@ -86,8 +82,8 @@ expiryFileList = Luput Pada
deleteFileList = Buang deleteFileList = Buang
nevermindButton = Tak apalah nevermindButton = Tak apalah
legalHeader = Terma & Privasi 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>. 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 Firefox Send juga tertakluk kepada <a>Notis Privasi Laman web</a> dan <a>Terma Penggunaan Laman web</a> Mozilla. 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? deletePopupText = Buang fail ini?
deletePopupYes = Ya deletePopupYes = Ya
deletePopupCancel = Batal deletePopupCancel = Batal
@ -104,8 +100,8 @@ addPasswordButton = Tambah Kata laluan
changePasswordButton = Tukar changePasswordButton = Tukar
passwordTryAgain = Kata laluan tidak betul. Cuba lagi. passwordTryAgain = Kata laluan tidak betul. Cuba lagi.
reportIPInfringement = Lapor Pencerobohan IP reportIPInfringement = Lapor Pencerobohan IP
javascriptRequired = Firefox Send perlukan JavaScript javascriptRequired = Send perlukan JavaScript
whyJavascript = Kenapa Firefox Send perlukan JavaScript? whyJavascript = Kenapa Send perlukan JavaScript?
enableJavascript = Sila dayakan JavaScript dan cuba lagi. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Tilbakemelding siteFeedback = Tilbakemelding
importingFile = Importerer… importingFile = Importerer…
encryptingFile = Krypterer... encryptingFile = Krypterer...
@ -20,13 +19,13 @@ unlockButtonLabel = Lås opp
downloadButtonLabel = Last ned downloadButtonLabel = Last ned
downloadFinish = Nedlastingen er fullført. downloadFinish = Nedlastingen er fullført.
fileSizeProgress = ({ $partialSize } av { $totalSize }) fileSizeProgress = ({ $partialSize } av { $totalSize })
sendYourFilesLink = Prøv Firefox Send sendYourFilesLink = Prøv Send
errorPageHeader = Det oppstod en feil. errorPageHeader = Det oppstod en feil.
fileTooBig = Filen er for stor til å laste opp. Det må være mindre enn { $size }. fileTooBig = Filen er for stor til å laste opp. Det må være mindre enn { $size }.
linkExpiredAlt = Lenke utløpt linkExpiredAlt = Lenke utløpt
notSupportedHeader = Din nettleser er ikke støttet. notSupportedHeader = Din nettleser er ikke støttet.
notSupportedLink = Hvorfor er ikke nettleseren min 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 updateFirefox = Oppdater Firefox
deletePopupCancel = Avbryt deletePopupCancel = Avbryt
deleteButtonHover = Slett deleteButtonHover = Slett
@ -34,8 +33,8 @@ footerLinkLegal = Juridisk informasjon
footerLinkPrivacy = Personvern footerLinkPrivacy = Personvern
footerLinkCookies = Infokapsler footerLinkCookies = Infokapsler
passwordTryAgain = Feil passord. Prøv igjen. passwordTryAgain = Feil passord. Prøv igjen.
javascriptRequired = Firefox Send krever JavaScript. javascriptRequired = Send krever JavaScript.
whyJavascript = Hvorfor krever Firefox Send JavaScript? whyJavascript = Hvorfor krever Send JavaScript?
enableJavascript = Slå på JavaScript og prøv igjen. 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" # 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 expiresHoursMinutes = { $hours }t { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Dette passordet kunne ikke settes
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Feedback siteFeedback = Feedback
importingFile = Importeren… importingFile = Importeren…
encryptingFile = Versleutelen… encryptingFile = Versleutelen…
@ -20,13 +19,13 @@ unlockButtonLabel = Ontgrendelen
downloadButtonLabel = Downloaden downloadButtonLabel = Downloaden
downloadFinish = Downloaden voltooid downloadFinish = Downloaden voltooid
fileSizeProgress = ({ $partialSize } van { $totalSize }) fileSizeProgress = ({ $partialSize } van { $totalSize })
sendYourFilesLink = Firefox Send proberen sendYourFilesLink = Send proberen
errorPageHeader = Er is iets misgegaan! errorPageHeader = Er is iets misgegaan!
fileTooBig = Dat bestand is te groot om te worden geüpload. Het moet kleiner zijn dan { $size }. fileTooBig = Dat bestand is te groot om te worden geüpload. Het moet kleiner zijn dan { $size }.
linkExpiredAlt = Koppeling verlopen linkExpiredAlt = Koppeling verlopen
notSupportedHeader = Uw browser wordt niet ondersteund. notSupportedHeader = Uw browser wordt niet ondersteund.
notSupportedLink = Waarom wordt mijn browser 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 updateFirefox = Firefox bijwerken
deletePopupCancel = Annuleren deletePopupCancel = Annuleren
deleteButtonHover = Verwijderen deleteButtonHover = Verwijderen
@ -34,8 +33,8 @@ footerLinkLegal = Juridisch
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Onjuist wachtwoord. Probeer het opnieuw. passwordTryAgain = Onjuist wachtwoord. Probeer het opnieuw.
javascriptRequired = Firefox Send vereist JavaScript javascriptRequired = Send vereist JavaScript
whyJavascript = Waarom vereist Firefox Send JavaScript? whyJavascript = Waarom vereist Send JavaScript?
enableJavascript = Schakel JavaScript in en probeer het opnieuw. 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" # 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 expiresHoursMinutes = { $hours }u { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Dit wachtwoord kon niet worden ingesteld
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Tilbakemelding siteFeedback = Tilbakemelding
importingFile = Importerer… importingFile = Importerer…
encryptingFile = Krypterer… encryptingFile = Krypterer…
@ -20,13 +19,13 @@ unlockButtonLabel = Lås opp
downloadButtonLabel = Last ned downloadButtonLabel = Last ned
downloadFinish = Nedlastinga er fullført. downloadFinish = Nedlastinga er fullført.
fileSizeProgress = ({ $partialSize } av { $totalSize }) fileSizeProgress = ({ $partialSize } av { $totalSize })
sendYourFilesLink = Prøv Firefox Send sendYourFilesLink = Prøv Send
errorPageHeader = Noko gjekk gale! errorPageHeader = Noko gjekk gale!
fileTooBig = Fila er for stor, og kan ikkje lastast opp. Ho må vere mindre enn { $size }. fileTooBig = Fila er for stor, og kan ikkje lastast opp. Ho må vere mindre enn { $size }.
linkExpiredAlt = Lenka har gått ut linkExpiredAlt = Lenka har gått ut
notSupportedHeader = Nettlesaren din er ikkje støtta. notSupportedHeader = Nettlesaren din er ikkje støtta.
notSupportedLink = Kvifor er ikkje nettlesaren min 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 updateFirefox = Oppdater Firefox
deletePopupCancel = Avbryt deletePopupCancel = Avbryt
deleteButtonHover = Slett deleteButtonHover = Slett
@ -34,8 +33,8 @@ footerLinkLegal = Juridisk informasjon
footerLinkPrivacy = Personvern footerLinkPrivacy = Personvern
footerLinkCookies = Infokapslar footerLinkCookies = Infokapslar
passwordTryAgain = Feil passord. Prøv på nytt. passwordTryAgain = Feil passord. Prøv på nytt.
javascriptRequired = Firefox Send krev JavaScript. javascriptRequired = Send krev JavaScript.
whyJavascript = Kvifor krev Firefox Send JavaScript? whyJavascript = Kvifor krev Send JavaScript?
enableJavascript = Slå på JavaScript og prøv igjen. 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" # 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 expiresHoursMinutes = { $hours }t { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Dette passordet kunne ikkje stillast inn
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Comentaris siteFeedback = Comentaris
importingFile = Importacion… importingFile = Importacion…
encryptingFile = Chiframent… encryptingFile = Chiframent…
@ -20,13 +19,13 @@ unlockButtonLabel = Desverrolhar
downloadButtonLabel = Telecargar downloadButtonLabel = Telecargar
downloadFinish = Telecargament acabat downloadFinish = Telecargament acabat
fileSizeProgress = ({ $partialSize } sus { $totalSize }) fileSizeProgress = ({ $partialSize } sus { $totalSize })
sendYourFilesLink = Ensajar Firefox Send sendYourFilesLink = Ensajar Send
errorPageHeader = I a quicòm que truca. errorPageHeader = I a quicòm que truca.
fileTooBig = Aqueste fichièr es tròp gròs per lenviar. Sa talha deu èsser inferiora a { $size }. fileTooBig = Aqueste fichièr es tròp gròs per lenviar. Sa talha deu èsser inferiora a { $size }.
linkExpiredAlt = Lo ligam a expirat linkExpiredAlt = Lo ligam a expirat
notSupportedHeader = Vòstre navegador es pas compatible. notSupportedHeader = Vòstre navegador es pas compatible.
notSupportedLink = Perqué mon 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 updateFirefox = Metre a jorn Firefox
deletePopupCancel = Anullar deletePopupCancel = Anullar
deleteButtonHover = Suprimir deleteButtonHover = Suprimir
@ -34,8 +33,8 @@ footerLinkLegal = Mencions legalas
footerLinkPrivacy = Vida privada footerLinkPrivacy = Vida privada
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Senhal incorrècte. Tornatz ensajar. passwordTryAgain = Senhal incorrècte. Tornatz ensajar.
javascriptRequired = Firefox Send requesís JavaScript javascriptRequired = Send requesís JavaScript
whyJavascript = Perque Firefox Send requesís JavaScript ? whyJavascript = Perque Send requesís JavaScript ?
enableJavascript = Volgatz activar lo JavaScript e ensajatz tornamai. 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" # 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 expiresHoursMinutes = { $hours } h { $minutes } min
@ -48,8 +47,7 @@ passwordSetError = Aqueste senhal a pas pogut èsser definit
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = ਸੁਝਾਅ siteFeedback = ਸੁਝਾਅ
importingFile = ...ਦਰਾਮਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ importingFile = ...ਦਰਾਮਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ
encryptingFile = ...ਇੰਕ੍ਰਿਪਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ encryptingFile = ...ਇੰਕ੍ਰਿਪਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ
@ -20,13 +19,13 @@ unlockButtonLabel = ਅਣ-ਲਾਕ ਕਰੋ
downloadButtonLabel = ਡਾਊਨਲੋਡ ਕਰੋ downloadButtonLabel = ਡਾਊਨਲੋਡ ਕਰੋ
downloadFinish = ਡਾਊਨਲੋਡ ਪੂਰਾ ਹੋਇਆ downloadFinish = ਡਾਊਨਲੋਡ ਪੂਰਾ ਹੋਇਆ
fileSizeProgress = ({ $totalSize } ਵਿੱਚੋਂ { $partialSize }) fileSizeProgress = ({ $totalSize } ਵਿੱਚੋਂ { $partialSize })
sendYourFilesLink = Firefox Send ਵਰਤੋ sendYourFilesLink = Send ਵਰਤੋ
errorPageHeader = ਕੁਝ ਗਲਤ ਵਾਪਰਿਆ! errorPageHeader = ਕੁਝ ਗਲਤ ਵਾਪਰਿਆ!
fileTooBig = ਇਹ ਫਾਇਲ ਅੱਪਲੋਡ ਕਰਨ ਲਈ ਬਹੁਤ ਵੱਡੀ ਹੈ। ਇਸ { $size } ਤੋਂ ਘੱਟ ਚਾਹੀਦੀ ਹੈ fileTooBig = ਇਹ ਫਾਇਲ ਅੱਪਲੋਡ ਕਰਨ ਲਈ ਬਹੁਤ ਵੱਡੀ ਹੈ। ਇਸ { $size } ਤੋਂ ਘੱਟ ਚਾਹੀਦੀ ਹੈ
linkExpiredAlt = ਲਿੰਕ ਦੀ ਮਿਆਦ ਪੁੱਗੀ linkExpiredAlt = ਲਿੰਕ ਦੀ ਮਿਆਦ ਪੁੱਗੀ
notSupportedHeader = ਤੁਹਾਡਾ ਬਰਾਊਜ਼ਰ ਸਹਾਇਕ ਨਹੀਂ ਹੈ। notSupportedHeader = ਤੁਹਾਡਾ ਬਰਾਊਜ਼ਰ ਸਹਾਇਕ ਨਹੀਂ ਹੈ।
notSupportedLink = ਮੇਰਾ ਬਰਾਊਜ਼ਰ ਸਹਾਇਕ ਕਿਉ ਨਹੀਂ ਹੈ? notSupportedLink = ਮੇਰਾ ਬਰਾਊਜ਼ਰ ਸਹਾਇਕ ਕਿਉ ਨਹੀਂ ਹੈ?
notSupportedOutdatedDetail = ਅਫ਼ਸੋਸ ਹੈ ਕਿ ਫਾਇਰਫਾਕਸ ਦਾ ਇਹ ਵਰਜ਼ਨ ਵੈੱਬ ਤਕਨਾਲੋਜੀ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ, ਜੋ ਕਿ Firefox Send ਨੂੰ ਬਣਾਉਂਦੀਆਂ ਹਨ। ਤੁਹਾਨੂੰ ਆਪਣੇ ਬਰਾਊਜ਼ਰ ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ। notSupportedOutdatedDetail = ਅਫ਼ਸੋਸ ਹੈ ਕਿ ਫਾਇਰਫਾਕਸ ਦਾ ਇਹ ਵਰਜ਼ਨ ਵੈੱਬ ਤਕਨਾਲੋਜੀ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ, ਜੋ ਕਿ Send ਨੂੰ ਬਣਾਉਂਦੀਆਂ ਹਨ। ਤੁਹਾਨੂੰ ਆਪਣੇ ਬਰਾਊਜ਼ਰ ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ।
updateFirefox = ਫਾਇਰਫਾਕਸ ਅੱਪਡੇਟ ਕਰੋ updateFirefox = ਫਾਇਰਫਾਕਸ ਅੱਪਡੇਟ ਕਰੋ
deletePopupCancel = ਰੱਦ ਕਰੋ deletePopupCancel = ਰੱਦ ਕਰੋ
deleteButtonHover = ਹਟਾਓ deleteButtonHover = ਹਟਾਓ
@ -34,8 +33,8 @@ footerLinkLegal = ਕਨੂੰਨ
footerLinkPrivacy = ਪਰਦੇਦਾਰੀ footerLinkPrivacy = ਪਰਦੇਦਾਰੀ
footerLinkCookies = ਕੂਕੀਜ਼ footerLinkCookies = ਕੂਕੀਜ਼
passwordTryAgain = ਗਲਤ ਪਾਸਵਰਡ ਹੈ। ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ। passwordTryAgain = ਗਲਤ ਪਾਸਵਰਡ ਹੈ। ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।
javascriptRequired = Firefox Send ਲਈ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਚਾਹੀਦੀ ਹੈ javascriptRequired = Send ਲਈ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਚਾਹੀਦੀ ਹੈ
whyJavascript = Firefox Send ਨੂੰ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਦੀ ਲੋੜ ਕਿਓ ਹੈ? whyJavascript = Send ਨੂੰ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਦੀ ਲੋੜ ਕਿਓ ਹੈ?
enableJavascript = ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਸਮਰੱਥ ਕਰੋ ਤੇ ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ। enableJavascript = ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਸਮਰੱਥ ਕਰੋ ਤੇ ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }ਘੰ { $minutes }ਮਿੰ expiresHoursMinutes = { $hours }ਘੰ { $minutes }ਮਿੰ
@ -48,8 +47,7 @@ passwordSetError = ਇਹ ਪਾਸਵਰਡ ਸੈੱਟ ਨਹੀਂ ਕੀਤ
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = ਭੇਜੋ -send-short-brand = ਭੇਜੋ
-firefox = ਫਾਇਰਫਾਕਸ -firefox = ਫਾਇਰਫਾਕਸ
-mozilla = ਮੋਜ਼ੀਲਾ -mozilla = ਮੋਜ਼ੀਲਾ

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Wyślij opinię siteFeedback = Wyślij opinię
importingFile = Importowanie… importingFile = Importowanie…
encryptingFile = Szyfrowanie… encryptingFile = Szyfrowanie…
@ -22,13 +21,13 @@ unlockButtonLabel = Odblokuj
downloadButtonLabel = Pobierz downloadButtonLabel = Pobierz
downloadFinish = Ukończono pobieranie downloadFinish = Ukończono pobieranie
fileSizeProgress = ({ $partialSize } z { $totalSize }) fileSizeProgress = ({ $partialSize } z { $totalSize })
sendYourFilesLink = Wypróbuj Firefox Send sendYourFilesLink = Wypróbuj Send
errorPageHeader = Coś się nie udało. errorPageHeader = Coś się nie udało.
fileTooBig = Ten plik jest za duży, aby go wysłać. Musi być mniejszy niż { $size } fileTooBig = Ten plik jest za duży, aby go wysłać. Musi być mniejszy niż { $size }
linkExpiredAlt = Odnośnik wygasł linkExpiredAlt = Odnośnik wygasł
notSupportedHeader = Używana przeglądarka nie jest obsługiwana. notSupportedHeader = Używana przeglądarka nie jest obsługiwana.
notSupportedLink = Dlaczego ta 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 updateFirefox = Uaktualnij Firefoksa
deletePopupCancel = Anuluj deletePopupCancel = Anuluj
deleteButtonHover = Usuń deleteButtonHover = Usuń
@ -36,8 +35,8 @@ footerLinkLegal = Kwestie prawne
footerLinkPrivacy = Prywatność footerLinkPrivacy = Prywatność
footerLinkCookies = Ciasteczka footerLinkCookies = Ciasteczka
passwordTryAgain = Niepoprawne hasło. Spróbuj ponownie. passwordTryAgain = Niepoprawne hasło. Spróbuj ponownie.
javascriptRequired = Firefox Send wymaga języka JavaScript javascriptRequired = Send wymaga języka JavaScript
whyJavascript = Dlaczego Firefox Send wymaga języka JavaScript? whyJavascript = Dlaczego Send wymaga języka JavaScript?
enableJavascript = Włącz obsługę języka JavaScript i spróbuj ponownie. 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" # 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 expiresHoursMinutes = { $hours } godz. { $minutes } min
@ -50,8 +49,7 @@ passwordSetError = Nie można ustawić tego hasła
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Shitechnawati siteFeedback = Shitechnawati
importingFile = Mukalaktia nemi… importingFile = Mukalaktia nemi…
encryptingFile = Tikichtakawiat tinemit… encryptingFile = Tikichtakawiat tinemit…
@ -20,13 +19,13 @@ unlockButtonLabel = Shiktapua
downloadButtonLabel = Shiktemulti downloadButtonLabel = Shiktemulti
downloadFinish = Senkiska mutemultij downloadFinish = Senkiska mutemultij
fileSizeProgress = ({ $partialSize } ipal { $totalSize }) fileSizeProgress = ({ $partialSize } ipal { $totalSize })
sendYourFilesLink = Shikejeku Firefox Send sendYourFilesLink = Shikejeku Send
errorPageHeader = IJtakawtuk! errorPageHeader = IJtakawtuk!
fileTooBig = Ini tajkwilul sujsul etek pal tiktejkultia. Ma nemi san { $size }. fileTooBig = Ini tajkwilul sujsul etek pal tiktejkultia. Ma nemi san { $size }.
linkExpiredAlt = Ne ilpika pulijtuk linkExpiredAlt = Ne ilpika pulijtuk
notSupportedHeader = Te tikishmatit ne mutachialuni. notSupportedHeader = Te tikishmatit ne mutachialuni.
notSupportedLink = Taika te ankishmatit nutachialuni? 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 updateFirefox = Shikyankwili Firefox
deletePopupCancel = Shikilwi tesu deletePopupCancel = Shikilwi tesu
deleteButtonHover = Shikpulu deleteButtonHover = Shikpulu
@ -34,8 +33,8 @@ footerLinkLegal = Ipanpa ne tajtuli
footerLinkPrivacy = Teichtakayu footerLinkPrivacy = Teichtakayu
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Ne ichtakatajkwilul tesu yek. Shikejeku uksenpa. passwordTryAgain = Ne ichtakatajkwilul tesu yek. Shikejeku uksenpa.
javascriptRequired = Firefox Send muneki JavaScript javascriptRequired = Send muneki JavaScript
whyJavascript = Taika Firefox Send muneki JavaScript? whyJavascript = Taika Send muneki JavaScript?
enableJavascript = Shichiwa ma JavaScript tekiti wan shikejeku uksenpa. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Te tiweliket tiktaliat ini ichtakataketzalis
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Shiktitani -send-short-brand = Shiktitani
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Opinião siteFeedback = Opinião
importingFile = Importando… importingFile = Importando…
encryptingFile = Criptografando… encryptingFile = Criptografando…
@ -20,13 +19,13 @@ unlockButtonLabel = Desbloquear
downloadButtonLabel = Baixar downloadButtonLabel = Baixar
downloadFinish = Download concluído downloadFinish = Download concluído
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Experimente o Firefox Send sendYourFilesLink = Experimente o Send
errorPageHeader = Oops, ocorreu um erro! errorPageHeader = Oops, ocorreu um erro!
fileTooBig = Esse arquivo ou grupo de arquivos é grande demais para ser enviado. Deve ser menor que { $size }. fileTooBig = Esse arquivo ou grupo de arquivos é grande demais para ser enviado. Deve ser menor que { $size }.
linkExpiredAlt = Link expirado linkExpiredAlt = Link expirado
notSupportedHeader = Seu navegador não é suportado. notSupportedHeader = Seu navegador não é suportado.
notSupportedLink = Por que meu 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 updateFirefox = Atualizar o Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Remover da lista deleteButtonHover = Remover da lista
@ -34,8 +33,8 @@ footerLinkLegal = Jurídico
footerLinkPrivacy = Privacidade footerLinkPrivacy = Privacidade
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Senha incorreta. Tente novamente. passwordTryAgain = Senha incorreta. Tente novamente.
javascriptRequired = O Firefox Send requer JavaScript javascriptRequired = O Send requer JavaScript
whyJavascript = Por que o Firefox Send precisa do JavaScript? whyJavascript = Por que o Send precisa do JavaScript?
enableJavascript = Ative o JavaScript e tente novamente. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }min
@ -48,8 +47,7 @@ passwordSetError = Essa senha não pôde ser definida
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Feedback siteFeedback = Feedback
importingFile = A importar... importingFile = A importar...
encryptingFile = A encriptar... encryptingFile = A encriptar...
@ -20,13 +19,13 @@ unlockButtonLabel = Desbloquear
downloadButtonLabel = Transferir downloadButtonLabel = Transferir
downloadFinish = Transferência concluída downloadFinish = Transferência concluída
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Experimentar o Firefox Send sendYourFilesLink = Experimentar o Send
errorPageHeader = Algo correu mal. errorPageHeader = Algo correu mal.
fileTooBig = Esse ficheiro é muito grande para carregar. Deve ser menor do que { $size }. fileTooBig = Esse ficheiro é muito grande para carregar. Deve ser menor do que { $size }.
linkExpiredAlt = Ligação expirada linkExpiredAlt = Ligação expirada
notSupportedHeader = O seu navegador não é suportado. notSupportedHeader = O seu navegador não é suportado.
notSupportedLink = Porque é que o meu 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 updateFirefox = Atualizar o Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Apagar deleteButtonHover = Apagar
@ -34,8 +33,8 @@ footerLinkLegal = Informação legal
footerLinkPrivacy = Privacidade footerLinkPrivacy = Privacidade
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Palavra-passe incorreta. Tente novamente. passwordTryAgain = Palavra-passe incorreta. Tente novamente.
javascriptRequired = O Firefox Send requer JavaScript javascriptRequired = O Send requer JavaScript
whyJavascript = Porque é que o Firefox Send requer JavaScript? whyJavascript = Porque é que o Send requer JavaScript?
enableJavascript = Por favor ative o JavaScript e tente novamente. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Esta palavra-passe não pôde ser definida
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Utzijoxik siteFeedback = Utzijoxik
importingFile = Ujek'ik… importingFile = Ujek'ik…
encryptingFile = Uwiqik… encryptingFile = Uwiqik…
@ -20,13 +19,13 @@ unlockButtonLabel = Utzoqopixik
downloadButtonLabel = Uqasaxik downloadButtonLabel = Uqasaxik
downloadFinish = Tz'aqat uqasaxik downloadFinish = Tz'aqat uqasaxik
fileSizeProgress = ({ $partialSize } rech { $totalSize }) fileSizeProgress = ({ $partialSize } rech { $totalSize })
sendYourFilesLink = Chak'amb'ejaj Firefox Send sendYourFilesLink = Chak'amb'ejaj Send
errorPageHeader = K'o man utz ta xub'ano errorPageHeader = K'o man utz ta xub'ano
fileTooBig = Le kemk'olib'al sib'alaj nim chech upaqab'isaxik. Rajawaxik nitz' chi uwach{ $size } fileTooBig = Le kemk'olib'al sib'alaj nim chech upaqab'isaxik. Rajawaxik nitz' chi uwach{ $size }
linkExpiredAlt = Xq'ax uq'ijol kemwiqb'al linkExpiredAlt = Xq'ax uq'ijol kemwiqb'al
notSupportedHeader = Man toq'am ta le anik'onel notSupportedHeader = Man toq'am ta le anik'onel
notSupportedLink = ¿Jasche man toq'am ta le nunik'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 updateFirefox = Chak'ak'arisaj Firefox
deletePopupCancel = Uq'atexik deletePopupCancel = Uq'atexik
deleteButtonHover = Uchupik deleteButtonHover = Uchupik
@ -34,8 +33,8 @@ footerLinkLegal = Nim wuj
footerLinkPrivacy = Echeb'alil footerLinkPrivacy = Echeb'alil
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Man utz ta le retokib'al. Chab'ana' chi jumul. passwordTryAgain = Man utz ta le retokib'al. Chab'ana' chi jumul.
javascriptRequired = Le Firefox Send kajawataj JavaScript chech javascriptRequired = Le Send kajawataj JavaScript chech
whyJavascript = ¿jasche kajawataj JavaScript chech Firefox Send? whyJavascript = ¿jasche kajawataj JavaScript chech Send?
enableJavascript = Chatzija' JavaScript k'ate k'u ri' chab'ana' chi jumul. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Man kkowimb'ex ta ujeqeb'axik le retokib'al
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Utaqik -send-short-brand = Utaqik
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Feedback siteFeedback = Feedback
importingFile = Se importă… importingFile = Se importă…
encryptingFile = Se criptează… encryptingFile = Se criptează…
@ -22,13 +21,13 @@ unlockButtonLabel = Deblochează
downloadButtonLabel = Descarcă downloadButtonLabel = Descarcă
downloadFinish = Descărcare încheiată downloadFinish = Descărcare încheiată
fileSizeProgress = ({ $partialSize } din { $totalSize }) fileSizeProgress = ({ $partialSize } din { $totalSize })
sendYourFilesLink = Încearcă Firefox Send sendYourFilesLink = Încearcă Send
errorPageHeader = Ceva nu a funcționat! errorPageHeader = Ceva nu a funcționat!
fileTooBig = Acest fișier este prea mare. Ar trebuie să fie sub { $size }. fileTooBig = Acest fișier este prea mare. Ar trebuie să fie sub { $size }.
linkExpiredAlt = Link expirat linkExpiredAlt = Link expirat
notSupportedHeader = Browserul tău nu este suportat. notSupportedHeader = Browserul tău nu este suportat.
notSupportedLink = De ce browserul meu 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 updateFirefox = Actualizează Firefox
deletePopupCancel = Renunță deletePopupCancel = Renunță
deleteButtonHover = Șterge deleteButtonHover = Șterge
@ -36,8 +35,8 @@ footerLinkLegal = Mențiuni legale
footerLinkPrivacy = Confidențialitate footerLinkPrivacy = Confidențialitate
footerLinkCookies = Cookie-uri footerLinkCookies = Cookie-uri
passwordTryAgain = Parolă incorectă. Încearcă din nou. passwordTryAgain = Parolă incorectă. Încearcă din nou.
javascriptRequired = Firefox Send necesită JavaScript javascriptRequired = Send necesită JavaScript
whyJavascript = De ce Firefox Send necesită JavaScript? whyJavascript = De ce Send necesită JavaScript?
enableJavascript = Te rugăm să reactivezi JavaScript și să încerci din nou. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -50,8 +49,7 @@ passwordSetError = Această parolă nu a putut fi setată
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Отзывы siteFeedback = Отзывы
importingFile = Импортирование... importingFile = Импортирование...
encryptingFile = Шифрование... encryptingFile = Шифрование...
@ -22,13 +21,13 @@ unlockButtonLabel = Разблокировать
downloadButtonLabel = Загрузить downloadButtonLabel = Загрузить
downloadFinish = Загрузка завершена downloadFinish = Загрузка завершена
fileSizeProgress = ({ $partialSize } из { $totalSize }) fileSizeProgress = ({ $partialSize } из { $totalSize })
sendYourFilesLink = Попробовать Firefox Send sendYourFilesLink = Попробовать Send
errorPageHeader = Что-то пошло не так! errorPageHeader = Что-то пошло не так!
fileTooBig = Файл слишком большой. Он должен быть меньше { $size }. fileTooBig = Файл слишком большой. Он должен быть меньше { $size }.
linkExpiredAlt = Истёк срок действия ссылки linkExpiredAlt = Истёк срок действия ссылки
notSupportedHeader = Ваш браузер не поддерживается. notSupportedHeader = Ваш браузер не поддерживается.
notSupportedLink = Почему мой браузер не поддерживается? notSupportedLink = Почему мой браузер не поддерживается?
notSupportedOutdatedDetail = К сожалению, эта версия Firefox не поддерживает веб-технологию, благодаря которой работает Firefox Send. Ваш нужно обновить свой браузер. notSupportedOutdatedDetail = К сожалению, эта версия Firefox не поддерживает веб-технологию, благодаря которой работает Send. Ваш нужно обновить свой браузер.
updateFirefox = Обновить Firefox updateFirefox = Обновить Firefox
deletePopupCancel = Отмена deletePopupCancel = Отмена
deleteButtonHover = Удалить deleteButtonHover = Удалить
@ -36,8 +35,8 @@ footerLinkLegal = Права
footerLinkPrivacy = Приватность footerLinkPrivacy = Приватность
footerLinkCookies = Куки footerLinkCookies = Куки
passwordTryAgain = Неверный пароль. Попробуйте снова. passwordTryAgain = Неверный пароль. Попробуйте снова.
javascriptRequired = Для Firefox Send необходим JavaScript javascriptRequired = Для Send необходим JavaScript
whyJavascript = Почему Firefox Send требуется JavaScript? whyJavascript = Почему Send требуется JavaScript?
enableJavascript = Пожалуйста, включите JavaScript и попробуйте снова. enableJavascript = Пожалуйста, включите JavaScript и попробуйте снова.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } ч. { $minutes } мин. expiresHoursMinutes = { $hours } ч. { $minutes } мин.
@ -50,8 +49,7 @@ passwordSetError = Этот пароль не может быть установ
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Spätná väzba siteFeedback = Spätná väzba
importingFile = Importuje sa… importingFile = Importuje sa…
encryptingFile = Šifruje sa… encryptingFile = Šifruje sa…
@ -22,13 +21,13 @@ unlockButtonLabel = Odomknúť
downloadButtonLabel = Prevziať downloadButtonLabel = Prevziať
downloadFinish = Preberanie bolo dokončené downloadFinish = Preberanie bolo dokončené
fileSizeProgress = ({ $partialSize } z { $totalSize }) fileSizeProgress = ({ $partialSize } z { $totalSize })
sendYourFilesLink = Vyskúšajte Firefox Send sendYourFilesLink = Vyskúšajte Send
errorPageHeader = Vyskytol sa problém. errorPageHeader = Vyskytol sa problém.
fileTooBig = Súbor je príliš veľký. Mal by byť menší než { $size }. fileTooBig = Súbor je príliš veľký. Mal by byť menší než { $size }.
linkExpiredAlt = Platnosť odkazu vypršala linkExpiredAlt = Platnosť odkazu vypršala
notSupportedHeader = Váš prehliadač nie je podporovaný. notSupportedHeader = Váš prehliadač nie je podporovaný.
notSupportedLink = Prečo nie je môj prehliadač 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 updateFirefox = Aktualizovať Firefox
deletePopupCancel = Zrušiť deletePopupCancel = Zrušiť
deleteButtonHover = Odstrániť deleteButtonHover = Odstrániť
@ -36,8 +35,8 @@ footerLinkLegal = Právne informácie
footerLinkPrivacy = Súkromie footerLinkPrivacy = Súkromie
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Nesprávne heslo. Skúste to znova. passwordTryAgain = Nesprávne heslo. Skúste to znova.
javascriptRequired = Firefox Send vyžaduje JavaScript javascriptRequired = Send vyžaduje JavaScript
whyJavascript = Prečo Firefox Send vyžaduje JavaScript? whyJavascript = Prečo Send vyžaduje JavaScript?
enableJavascript = Prosím, povoľte JavaScript a skúste to znova. 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" # 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. expiresHoursMinutes = { $hours } hod. { $minutes } min.
@ -50,8 +49,7 @@ passwordSetError = Heslo nešlo nastaviť
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Povratne informacije siteFeedback = Povratne informacije
importingFile = Uvažanje … importingFile = Uvažanje …
encryptingFile = Šifriranje ... encryptingFile = Šifriranje ...
@ -24,13 +23,13 @@ unlockButtonLabel = Odkleni
downloadButtonLabel = Prenesi downloadButtonLabel = Prenesi
downloadFinish = Prenos končan downloadFinish = Prenos končan
fileSizeProgress = ({ $partialSize } od { $totalSize }) fileSizeProgress = ({ $partialSize } od { $totalSize })
sendYourFilesLink = Preskusite Firefox Send sendYourFilesLink = Preskusite Send
errorPageHeader = Prišlo je do težave! errorPageHeader = Prišlo je do težave!
fileTooBig = Ta datoteka je prevelika za nalaganje. Največja možna velikost je { $size }. fileTooBig = Ta datoteka je prevelika za nalaganje. Največja možna velikost je { $size }.
linkExpiredAlt = Povezava je potekla linkExpiredAlt = Povezava je potekla
notSupportedHeader = Vaš brskalnik ni podprt. notSupportedHeader = Vaš brskalnik ni podprt.
notSupportedLink = Zakaj moj 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 updateFirefox = Posodobi Firefox
deletePopupCancel = Prekliči deletePopupCancel = Prekliči
deleteButtonHover = Izbriši deleteButtonHover = Izbriši
@ -38,8 +37,8 @@ footerLinkLegal = Pravno obvestilo
footerLinkPrivacy = Zasebnost footerLinkPrivacy = Zasebnost
footerLinkCookies = Piškotki footerLinkCookies = Piškotki
passwordTryAgain = Napačno geslo. Poskusite znova. passwordTryAgain = Napačno geslo. Poskusite znova.
javascriptRequired = Firefox Send zahteva JavaScript javascriptRequired = Send zahteva JavaScript
whyJavascript = Zakaj Firefox Send zahteva JavaScript? whyJavascript = Zakaj Send zahteva JavaScript?
enableJavascript = Omogočite JavaScript in poskusite znova. 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" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -52,8 +51,7 @@ passwordSetError = Gesla ni mogoče nastaviti
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = -firefox =
{ $sklon -> { $sklon ->

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Zvirikutaurwa siteFeedback = Zvirikutaurwa
importingFile = Kutora faira importingFile = Kutora faira
encryptingFile = Kuinikiriputa encryptingFile = Kuinikiriputa

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Përshtypje siteFeedback = Përshtypje
importingFile = Po importohet… importingFile = Po importohet…
encryptingFile = Po fshehtëzohet… encryptingFile = Po fshehtëzohet…
@ -20,13 +19,13 @@ unlockButtonLabel = Zhbllokoje
downloadButtonLabel = Shkarkoje downloadButtonLabel = Shkarkoje
downloadFinish = Shkarkim i Plotësuar downloadFinish = Shkarkim i Plotësuar
fileSizeProgress = ({ $partialSize } nga { $totalSize }) gjithsej fileSizeProgress = ({ $partialSize } nga { $totalSize }) gjithsej
sendYourFilesLink = Provoni Firefox Send sendYourFilesLink = Provoni Send
errorPageHeader = Diç shkoi ters! errorPageHeader = Diç shkoi ters!
fileTooBig = Kjo kartelë është shumë e madhe për ngarkim. Do të duhej të ishte më pak se { $size }. fileTooBig = Kjo kartelë është shumë e madhe për ngarkim. Do të duhej të ishte më pak se { $size }.
linkExpiredAlt = Lidhja skadoi linkExpiredAlt = Lidhja skadoi
notSupportedHeader = Shfletuesi juaj nuk mbulohet. notSupportedHeader = Shfletuesi juaj nuk mbulohet.
notSupportedLink = Pse nuk mbulohet ky shfletues? notSupportedLink = Pse nuk mbulohet ky shfletues?
notSupportedOutdatedDetail = Mjerisht, ky version i Firefox-it nuk e mbulon teknologjinë web mbi të cilën bazohet Firefox Send. Do tju duhet të përditësoni shfletuesin tuaj. notSupportedOutdatedDetail = Mjerisht, ky version i Firefox-it nuk e mbulon teknologjinë web mbi të cilën bazohet Send. Do tju duhet të përditësoni shfletuesin tuaj.
updateFirefox = Përditësojeni Firefox-in updateFirefox = Përditësojeni Firefox-in
deletePopupCancel = Anuloje deletePopupCancel = Anuloje
deleteButtonHover = Fshije deleteButtonHover = Fshije
@ -34,8 +33,8 @@ footerLinkLegal = Ligjore
footerLinkPrivacy = Privatësi footerLinkPrivacy = Privatësi
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Fjalëkalim i pasaktë. Riprovoni. passwordTryAgain = Fjalëkalim i pasaktë. Riprovoni.
javascriptRequired = Firefox Send lyp JavaScript javascriptRequired = Send lyp JavaScript
whyJavascript = Çi duhet Firefox Send-it JavaScript-i? whyJavascript = Çi duhet Send-it JavaScript-i?
enableJavascript = Ju lutemi, aktivizoni JavaScript-in dhe riprovoni. enableJavascript = Ju lutemi, aktivizoni JavaScript-in dhe riprovoni.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Ky fjalëkalim su caktua dot
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Повратне информације siteFeedback = Повратне информације
importingFile = Увозим… importingFile = Увозим…
encryptingFile = Шифрујем… encryptingFile = Шифрујем…
@ -22,13 +21,13 @@ unlockButtonLabel = Откључај
downloadButtonLabel = Преузми downloadButtonLabel = Преузми
downloadFinish = Преузимање је завршено. downloadFinish = Преузимање је завршено.
fileSizeProgress = ({ $partialSize } од { $totalSize }) fileSizeProgress = ({ $partialSize } од { $totalSize })
sendYourFilesLink = Испробајте Firefox Send sendYourFilesLink = Испробајте Send
errorPageHeader = Нешто је пошло наопако! errorPageHeader = Нешто је пошло наопако!
fileTooBig = Та датотека је превелика за отпремање. Треба да буде мања од { $size }. fileTooBig = Та датотека је превелика за отпремање. Треба да буде мања од { $size }.
linkExpiredAlt = Веза је истекла linkExpiredAlt = Веза је истекла
notSupportedHeader = Ваш прегледач није подржан. notSupportedHeader = Ваш прегледач није подржан.
notSupportedLink = Зашто мој прегледач није подржан? notSupportedLink = Зашто мој прегледач није подржан?
notSupportedOutdatedDetail = Нажалост, ово издање Firefox-a не подржава веб технологију која омогућава Firefox Send. Мораћете да ажурирате ваш прегледач. notSupportedOutdatedDetail = Нажалост, ово издање Firefox-a не подржава веб технологију која омогућава Send. Мораћете да ажурирате ваш прегледач.
updateFirefox = Ажурирај Firefox updateFirefox = Ажурирај Firefox
deletePopupCancel = Откажи deletePopupCancel = Откажи
deleteButtonHover = Обриши deleteButtonHover = Обриши
@ -36,8 +35,8 @@ footerLinkLegal = Правни подаци
footerLinkPrivacy = Приватност footerLinkPrivacy = Приватност
footerLinkCookies = Колачићи footerLinkCookies = Колачићи
passwordTryAgain = Нетачна лозинка. Пробајте поново. passwordTryAgain = Нетачна лозинка. Пробајте поново.
javascriptRequired = За Firefox Send је потребан JavaScript javascriptRequired = За Send је потребан JavaScript
whyJavascript = Зашто је потребан JavaScript за Firefox Send? whyJavascript = Зашто је потребан JavaScript за Send?
enableJavascript = Омогућите JavaScript и пробајте поново. enableJavascript = Омогућите JavaScript и пробајте поново.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }ч { $minutes }м expiresHoursMinutes = { $hours }ч { $minutes }м
@ -50,8 +49,7 @@ passwordSetError = Не можемо поставити ову лозинку
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Pangdeudeul siteFeedback = Pangdeudeul
importingFile = Ngimpor... importingFile = Ngimpor...
encryptingFile = Ngénkripsi... encryptingFile = Ngénkripsi...
@ -18,13 +17,13 @@ unlockButtonLabel = Laan konci
downloadButtonLabel = Undeur downloadButtonLabel = Undeur
downloadFinish = Undeuran anggeus downloadFinish = Undeuran anggeus
fileSizeProgress = ({ $partialSize } ti { $totalSize }) fileSizeProgress = ({ $partialSize } ti { $totalSize })
sendYourFilesLink = Pecakan Firefox Send sendYourFilesLink = Pecakan Send
errorPageHeader = Aya nu salah! errorPageHeader = Aya nu salah!
fileTooBig = Koropak unjalkeuneun badag teuing. Kudu kurang ti { $size }. fileTooBig = Koropak unjalkeuneun badag teuing. Kudu kurang ti { $size }.
linkExpiredAlt = Tutumbu kadaluwarsa linkExpiredAlt = Tutumbu kadaluwarsa
notSupportedHeader = Panyungsi anjeun teu dirojong notSupportedHeader = Panyungsi anjeun teu dirojong
notSupportedLink = Naha panyungsi kuring teu dirojong? notSupportedLink = Naha panyungsi kuring teu dirojong?
notSupportedOutdatedDetail = Hanjakal Firefox vérsi ieu teu ngarojong téhnologi wéb nu ngagerakkeun Firefox Send. Anjeun perlu ngapdét panyungsi anjeun. notSupportedOutdatedDetail = Hanjakal Firefox vérsi ieu teu ngarojong téhnologi wéb nu ngagerakkeun Send. Anjeun perlu ngapdét panyungsi anjeun.
updateFirefox = Apdét Firefox updateFirefox = Apdét Firefox
deletePopupCancel = Bolay deletePopupCancel = Bolay
deleteButtonHover = Pupus deleteButtonHover = Pupus
@ -32,8 +31,8 @@ footerLinkLegal = Légal
footerLinkPrivacy = Privasi footerLinkPrivacy = Privasi
footerLinkCookies = Réréméh footerLinkCookies = Réréméh
passwordTryAgain = Kecap sandi salah. Pecakan deui. passwordTryAgain = Kecap sandi salah. Pecakan deui.
javascriptRequired = Firefox Send merlukeun JavaScript javascriptRequired = Send merlukeun JavaScript
whyJavascript = Naha Firefox Send merlukeun JavaScript? whyJavascript = Naha Send merlukeun JavaScript?
enableJavascript = Prak hurungkeun JavaScript sarta pecakan deui. enableJavascript = Prak hurungkeun JavaScript sarta pecakan deui.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # 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 expiresHoursMinutes = { $hours }j { $minutes }m
@ -46,8 +45,7 @@ passwordSetError = Ieu kecap sandi teu bisa disét
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Återkoppling siteFeedback = Återkoppling
importingFile = Importerar… importingFile = Importerar…
encryptingFile = Krypterar… encryptingFile = Krypterar…
@ -20,13 +19,13 @@ unlockButtonLabel = Lås upp
downloadButtonLabel = Ladda ner downloadButtonLabel = Ladda ner
downloadFinish = Nedladdning klar downloadFinish = Nedladdning klar
fileSizeProgress = ({ $partialSize } av { $totalSize }) fileSizeProgress = ({ $partialSize } av { $totalSize })
sendYourFilesLink = Testa Firefox Send sendYourFilesLink = Testa Send
errorPageHeader = Något gick fel! errorPageHeader = Något gick fel!
fileTooBig = Den filen är för stor för att ladda upp. Det ska vara mindre än { $size }. fileTooBig = Den filen är för stor för att ladda upp. Det ska vara mindre än { $size }.
linkExpiredAlt = Länk upphörd linkExpiredAlt = Länk upphörd
notSupportedHeader = Din webbläsare stöds inte. notSupportedHeader = Din webbläsare stöds inte.
notSupportedLink = Varför stöds inte min webbläsare? notSupportedLink = Varför stöds inte min webbläsare?
notSupportedOutdatedDetail = Tyvärr stödjer den här versionen av Firefox inte webbtekniken som driver Firefox Send. Du måste uppdatera din webbläsare. notSupportedOutdatedDetail = Tyvärr stödjer den här versionen av Firefox inte webbtekniken som driver Send. Du måste uppdatera din webbläsare.
updateFirefox = Uppdatera Firefox updateFirefox = Uppdatera Firefox
deletePopupCancel = Avbryt deletePopupCancel = Avbryt
deleteButtonHover = Ta bort deleteButtonHover = Ta bort
@ -34,8 +33,8 @@ footerLinkLegal = Juridisk information
footerLinkPrivacy = Sekretess footerLinkPrivacy = Sekretess
footerLinkCookies = Kakor footerLinkCookies = Kakor
passwordTryAgain = Felaktigt lösenord. Försök igen. passwordTryAgain = Felaktigt lösenord. Försök igen.
javascriptRequired = Firefox Send kräver JavaScript javascriptRequired = Send kräver JavaScript
whyJavascript = Varför kräver Firefox Send JavaScript? whyJavascript = Varför kräver Send JavaScript?
enableJavascript = Aktivera JavaScript och försök igen. enableJavascript = Aktivera JavaScript och försök igen.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # 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 expiresHoursMinutes = { $hours }t { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Det här lösenordet kunde inte ställas in
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = అభిప్రాయం siteFeedback = అభిప్రాయం
importingFile = దిగుమతవుతోంది... importingFile = దిగుమతవుతోంది...
encryptingFile = గుప్తీకరిస్తోంది... encryptingFile = గుప్తీకరిస్తోంది...
@ -20,7 +19,7 @@ unlockButtonLabel = తాళం తీయి
downloadButtonLabel = దిగుమతి downloadButtonLabel = దిగుమతి
downloadFinish = దిగుమతి పూర్తయింది downloadFinish = దిగుమతి పూర్తయింది
fileSizeProgress = { $totalSize }) యొక్క ({ $partialSize } fileSizeProgress = { $totalSize }) యొక్క ({ $partialSize }
sendYourFilesLink = Firefox sendను ప్రయత్నించండి sendYourFilesLink = sendను ప్రయత్నించండి
errorPageHeader = ఏదో తప్పిదం జరిగింది! errorPageHeader = ఏదో తప్పిదం జరిగింది!
fileTooBig = ఆ ఫైలు ఎక్కించడానికి చాలా పెద్దగా ఉంది. ఫైళ్ళు { $size } కంటే తక్కువ పరిమాణంలో ఉండాలి. fileTooBig = ఆ ఫైలు ఎక్కించడానికి చాలా పెద్దగా ఉంది. ఫైళ్ళు { $size } కంటే తక్కువ పరిమాణంలో ఉండాలి.
linkExpiredAlt = లంకె గడువు ముగిసింది linkExpiredAlt = లంకె గడువు ముగిసింది
@ -34,8 +33,8 @@ footerLinkLegal = చట్టపరమైన
footerLinkPrivacy = గోప్యత footerLinkPrivacy = గోప్యత
footerLinkCookies = కుకీలు footerLinkCookies = కుకీలు
passwordTryAgain = సరికాని సంకేతపదం. మళ్ళీ ప్రయత్నించండి. passwordTryAgain = సరికాని సంకేతపదం. మళ్ళీ ప్రయత్నించండి.
javascriptRequired = Firefox Sendకి జావాస్క్రిప్టు కావాలి javascriptRequired = Sendకి జావాస్క్రిప్టు కావాలి
whyJavascript = Firefox Sendకి జావాస్క్రిప్టు ఎందుకు కావాలి? whyJavascript = Sendకి జావాస్క్రిప్టు ఎందుకు కావాలి?
enableJavascript = జావాస్క్రిప్టు చేతనంచేసి మళ్ళీ ప్రయత్నించండి. enableJavascript = జావాస్క్రిప్టు చేతనంచేసి మళ్ళీ ప్రయత్నించండి.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }గం { $minutes }ని expiresHoursMinutes = { $hours }గం { $minutes }ని
@ -48,8 +47,7 @@ passwordSetError = ఈ సంకేతపదం పెట్టలేకపో
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = పంపించు -send-short-brand = పంపించు
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = ข้อคิดเห็น siteFeedback = ข้อคิดเห็น
importingFile = กำลังนำเข้า… importingFile = กำลังนำเข้า…
encryptingFile = กำลังเข้ารหัส… encryptingFile = กำลังเข้ารหัส…
@ -18,13 +17,13 @@ unlockButtonLabel = ปลดล็อก
downloadButtonLabel = ดาวน์โหลด downloadButtonLabel = ดาวน์โหลด
downloadFinish = การดาวน์โหลดเสร็จสมบูรณ์ downloadFinish = การดาวน์โหลดเสร็จสมบูรณ์
fileSizeProgress = ({ $partialSize } จาก { $totalSize }) fileSizeProgress = ({ $partialSize } จาก { $totalSize })
sendYourFilesLink = ลองใช้ Firefox Send sendYourFilesLink = ลองใช้ Send
errorPageHeader = มีบางอย่างผิดพลาด! errorPageHeader = มีบางอย่างผิดพลาด!
fileTooBig = ไฟล์นั้นใหญ่เกินกว่าจะอัปโหลดได้ ไฟล์ที่จะอัปโหลดควรมีขนาดน้อยกว่า { $size } fileTooBig = ไฟล์นั้นใหญ่เกินกว่าจะอัปโหลดได้ ไฟล์ที่จะอัปโหลดควรมีขนาดน้อยกว่า { $size }
linkExpiredAlt = ลิงก์หมดอายุแล้ว linkExpiredAlt = ลิงก์หมดอายุแล้ว
notSupportedHeader = ไม่รองรับเบราว์เซอร์ของคุณ notSupportedHeader = ไม่รองรับเบราว์เซอร์ของคุณ
notSupportedLink = ทำไมจึงไม่รองรับเบราว์เซอร์ของฉัน? notSupportedLink = ทำไมจึงไม่รองรับเบราว์เซอร์ของฉัน?
notSupportedOutdatedDetail = น่าเสียดายที่ Firefox รุ่นนี้ไม่สนับสนุนเทคโนโลยีเว็บที่ขับเคลื่อน Firefox Send คุณจะต้องอัปเดตเบราว์เซอร์ของคุณ notSupportedOutdatedDetail = น่าเสียดายที่ Firefox รุ่นนี้ไม่สนับสนุนเทคโนโลยีเว็บที่ขับเคลื่อน Send คุณจะต้องอัปเดตเบราว์เซอร์ของคุณ
updateFirefox = อัปเดต Firefox updateFirefox = อัปเดต Firefox
deletePopupCancel = ยกเลิก deletePopupCancel = ยกเลิก
deleteButtonHover = ลบ deleteButtonHover = ลบ
@ -32,8 +31,8 @@ footerLinkLegal = ข้อกฎหมาย
footerLinkPrivacy = ความเป็นส่วนตัว footerLinkPrivacy = ความเป็นส่วนตัว
footerLinkCookies = คุกกี้ footerLinkCookies = คุกกี้
passwordTryAgain = รหัสผ่านไม่ถูกต้อง ลองอีกครั้ง passwordTryAgain = รหัสผ่านไม่ถูกต้อง ลองอีกครั้ง
javascriptRequired = Firefox Send จำเป็นต้องใช้ JavaScript javascriptRequired = Send จำเป็นต้องใช้ JavaScript
whyJavascript = ทำไม Firefox Send จึงจำเป็นต้องใช้ JavaScript? whyJavascript = ทำไม Send จึงจำเป็นต้องใช้ JavaScript?
enableJavascript = โปรดเปิดใช้งาน JavaScript แล้วลองอีกครั้ง enableJavascript = โปรดเปิดใช้งาน JavaScript แล้วลองอีกครั้ง
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } ชม. { $minutes } นาที expiresHoursMinutes = { $hours } ชม. { $minutes } นาที
@ -46,8 +45,7 @@ passwordSetError = ไม่สามารถตั้งรหัสผ่า
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Feedback siteFeedback = Feedback
importingFile = Importing… importingFile = Importing…
encryptingFile = Encrypting… encryptingFile = Encrypting…
@ -21,7 +20,7 @@ fileTooBig = Ang file na iyon ay masyadong malaki upang mag-upload. Dapat itong
linkExpiredAlt = Nag-expire na ang link linkExpiredAlt = Nag-expire na ang link
notSupportedHeader = Ang iyong browser ay hindi suportado. notSupportedHeader = Ang iyong browser ay hindi suportado.
notSupportedLink = Bakit hindi suportado ang aking browser? notSupportedLink = Bakit hindi suportado ang aking browser?
notSupportedOutdatedDetail = Sa kasamaang palad ang bersyon na ito ng Firefox ay hindi sumusuporta sa teknolohiya ng web na nagpapagana ng Firefox Send. Kailangan mong i-update ang iyong browser. notSupportedOutdatedDetail = Sa kasamaang palad ang bersyon na ito ng Firefox ay hindi sumusuporta sa teknolohiya ng web na nagpapagana ng Send. Kailangan mong i-update ang iyong browser.
updateFirefox = I-update ang Firefox updateFirefox = I-update ang Firefox
deletePopupCancel = Kanselahin deletePopupCancel = Kanselahin
deleteButtonHover = I-delete deleteButtonHover = I-delete
@ -29,8 +28,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Mga cookie footerLinkCookies = Mga cookie
passwordTryAgain = Maling password. Subukan muli. passwordTryAgain = Maling password. Subukan muli.
javascriptRequired = Nangangailangan ang Firefox Send ng JavaScript javascriptRequired = Nangangailangan ang Send ng JavaScript
whyJavascript = Bakit ang Firefox Send ay nangangailangan ng JavaScript? whyJavascript = Bakit ang Send ay nangangailangan ng JavaScript?
enableJavascript = Mangyaring paganahin ang JavaScript at subukan muli. enableJavascript = Mangyaring paganahin ang JavaScript at subukan muli.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -43,8 +42,7 @@ passwordSetError = Hindi maitakda ang password na ito
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox send
-send-short-brand = I-send -send-short-brand = I-send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Görüş bildir siteFeedback = Görüş bildir
importingFile = İçe aktarılıyor… importingFile = İçe aktarılıyor…
encryptingFile = Şifreleniyor… encryptingFile = Şifreleniyor…
@ -16,13 +15,13 @@ unlockButtonLabel = Kilidi aç
downloadButtonLabel = İndir downloadButtonLabel = İndir
downloadFinish = İndirme tamamlandı downloadFinish = İndirme tamamlandı
fileSizeProgress = ({ $partialSize } / { $totalSize }) fileSizeProgress = ({ $partialSize } / { $totalSize })
sendYourFilesLink = Firefox Sendi deneyin sendYourFilesLink = Sendi deneyin
errorPageHeader = Bir şeyler ters gitti! errorPageHeader = Bir şeyler ters gitti!
fileTooBig = Dosyanız çok büyük. En fazla { $size } boyutunda olmalı. fileTooBig = Dosyanız çok büyük. En fazla { $size } boyutunda olmalı.
linkExpiredAlt = Bağlantı zaman aşımına uğramış linkExpiredAlt = Bağlantı zaman aşımına uğramış
notSupportedHeader = Tarayıcınız desteklenmiyor. notSupportedHeader = Tarayıcınız desteklenmiyor.
notSupportedLink = Tarayıcım neden desteklenmiyor? notSupportedLink = Tarayıcım neden desteklenmiyor?
notSupportedOutdatedDetail = Kullandığınız Firefox sürümü Firefox Send için gereken web teknolojilerini desteklemiyor. Tarayıcınızı güncellemeniz gerekiyor. notSupportedOutdatedDetail = Kullandığınız Firefox sürümü Send için gereken web teknolojilerini desteklemiyor. Tarayıcınızı güncellemeniz gerekiyor.
updateFirefox = Firefoxu güncelle updateFirefox = Firefoxu güncelle
deletePopupCancel = Vazgeç deletePopupCancel = Vazgeç
deleteButtonHover = Sil deleteButtonHover = Sil
@ -30,8 +29,8 @@ footerLinkLegal = Yasal Bilgiler
footerLinkPrivacy = Gizlilik footerLinkPrivacy = Gizlilik
footerLinkCookies = Çerezler footerLinkCookies = Çerezler
passwordTryAgain = Yanlış parola. Yeniden deneyin. passwordTryAgain = Yanlış parola. Yeniden deneyin.
javascriptRequired = Firefox Send için JavaScript gerekir javascriptRequired = Send için JavaScript gerekir
whyJavascript = Firefox Send neden JavaScript kullanıyor? whyJavascript = Send neden JavaScript kullanıyor?
enableJavascript = Lütfen JavaScript'i etkinleştirip yeniden deneyin. enableJavascript = Lütfen JavaScript'i etkinleştirip yeniden deneyin.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } sa { $minutes } dk expiresHoursMinutes = { $hours } sa { $minutes } dk
@ -44,8 +43,7 @@ passwordSetError = Parola ayarlanamadı
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Nuguan' tàj doj siteFeedback = Nuguan' tàj doj
importingFile = Hìaj a'nïn huan'ānj… importingFile = Hìaj a'nïn huan'ānj…
encryptingFile = Nagi'iaj hùij… encryptingFile = Nagi'iaj hùij…
@ -20,13 +19,13 @@ unlockButtonLabel = Na'nïn riñanj
downloadButtonLabel = Nadunïnj downloadButtonLabel = Nadunïnj
downloadFinish = Ngà nahui nanïnj downloadFinish = Ngà nahui nanïnj
fileSizeProgress = ({ $partialSize } guendâ { $totalSize }) fileSizeProgress = ({ $partialSize } guendâ { $totalSize })
sendYourFilesLink = Garahuè dàj 'iaj sun Firefox Send sendYourFilesLink = Garahuè dàj 'iaj sun Send
errorPageHeader = Huā sa gahui a'nan'! errorPageHeader = Huā sa gahui a'nan'!
fileTooBig = Ûta yachìj hua archibô dan. Da'ui gā li doj ga da' { $size } fileTooBig = Ûta yachìj hua archibô dan. Da'ui gā li doj ga da' { $size }
linkExpiredAlt = Nitāj si ni'ñānj lînk gà' linkExpiredAlt = Nitāj si ni'ñānj lînk gà'
notSupportedHeader = Nitāj si huā hue'ê riña sa nana'uî't. notSupportedHeader = Nitāj si huā hue'ê riña sa nana'uî't.
notSupportedLink = Nù huin saj nitāj si huā hue'ê riña sa nana'uí? notSupportedLink = Nù huin saj nitāj si huā hue'ê riña sa nana'uí?
notSupportedOutdatedDetail = Nu unùkuaj Firefox nan gi'iaj sunj ngà sa 'iaj sun ngà Firefox Send. Da'uît nāgi'iaj nakàt riña sa nana'uî't han. notSupportedOutdatedDetail = Nu unùkuaj Firefox nan gi'iaj sunj ngà sa 'iaj sun ngà Send. Da'uît nāgi'iaj nakàt riña sa nana'uî't han.
updateFirefox = Nagi'iaj nakà Firefox updateFirefox = Nagi'iaj nakà Firefox
deletePopupCancel = Duyichin' deletePopupCancel = Duyichin'
deleteButtonHover = Dure' deleteButtonHover = Dure'
@ -34,8 +33,8 @@ footerLinkLegal = Nuguan' a'nï'ïn
footerLinkPrivacy = Sa hùii footerLinkPrivacy = Sa hùii
footerLinkCookies = Nej kôki footerLinkCookies = Nej kôki
passwordTryAgain = Sê da'nga' huì dan huin. Ginù huin ñû. passwordTryAgain = Sê da'nga' huì dan huin. Ginù huin ñû.
javascriptRequired = Ni'ñānj Firefox Send JavaScript javascriptRequired = Ni'ñānj Send JavaScript
whyJavascript = Nù huin saj ni'ñānj Firefox Send JavaScript rà'aj? whyJavascript = Nù huin saj ni'ñānj Send JavaScript rà'aj?
enableJavascript = Gi'iaj sunūj u ga'nïn gi'iaj sun JavaScript nī yakāj da'nga' ñû. enableJavascript = Gi'iaj sunūj u ga'nïn gi'iaj sun JavaScript nī yakāj da'nga' ñû.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # 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 expiresHoursMinutes = { $hours }h { $minutes }m
@ -48,8 +47,7 @@ passwordSetError = Na'ue gārayinaj da'nga huìi
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Відгуки siteFeedback = Відгуки
importingFile = Імпортуємо... importingFile = Імпортуємо...
encryptingFile = Шифруємо... encryptingFile = Шифруємо...
@ -22,13 +21,13 @@ unlockButtonLabel = Розблокувати
downloadButtonLabel = Завантажити downloadButtonLabel = Завантажити
downloadFinish = Завантаження завершено downloadFinish = Завантаження завершено
fileSizeProgress = ({ $partialSize } з { $totalSize }) fileSizeProgress = ({ $partialSize } з { $totalSize })
sendYourFilesLink = Спробуйте Firefox Send sendYourFilesLink = Спробуйте Send
errorPageHeader = Щось пішло не так! errorPageHeader = Щось пішло не так!
fileTooBig = Цей файл завеликий для вивантаження. Він має бути меншим за { $size }. fileTooBig = Цей файл завеликий для вивантаження. Він має бути меншим за { $size }.
linkExpiredAlt = Час дії посилання минув linkExpiredAlt = Час дії посилання минув
notSupportedHeader = Ваш браузер не підтримується. notSupportedHeader = Ваш браузер не підтримується.
notSupportedLink = Чому мій браузер не підтримується? notSupportedLink = Чому мій браузер не підтримується?
notSupportedOutdatedDetail = На жаль, ця версія Firefox не підтримує веб-технологію, завдяки якій працює Firefox Send. Вам потрібно оновити свій браузер. notSupportedOutdatedDetail = На жаль, ця версія Firefox не підтримує веб-технологію, завдяки якій працює Send. Вам потрібно оновити свій браузер.
updateFirefox = Оновити Firefox updateFirefox = Оновити Firefox
deletePopupCancel = Скасувати deletePopupCancel = Скасувати
deleteButtonHover = Видалити deleteButtonHover = Видалити
@ -36,8 +35,8 @@ footerLinkLegal = Права
footerLinkPrivacy = Приватність footerLinkPrivacy = Приватність
footerLinkCookies = Куки footerLinkCookies = Куки
passwordTryAgain = Невірний пароль. Спробуйте знову. passwordTryAgain = Невірний пароль. Спробуйте знову.
javascriptRequired = Firefox Send потребує JavaScript javascriptRequired = Send потребує JavaScript
whyJavascript = Чому для Firefox Send потрібен JavaScript? whyJavascript = Чому для Send потрібен JavaScript?
enableJavascript = Будь ласка, увімкніть JavaScript та спробуйте знову. enableJavascript = Будь ласка, увімкніть JavaScript та спробуйте знову.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } год. { $minutes } хв. expiresHoursMinutes = { $hours } год. { $minutes } хв.
@ -50,8 +49,7 @@ passwordSetError = Неможливо встановити цей пароль
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Phản hồi siteFeedback = Phản hồi
importingFile = Đang nhập... importingFile = Đang nhập...
encryptingFile = Đang mã hóa... encryptingFile = Đang mã hóa...
@ -18,13 +17,13 @@ unlockButtonLabel = Mở khóa
downloadButtonLabel = Tải xuống downloadButtonLabel = Tải xuống
downloadFinish = Tải xuống hoàn tất downloadFinish = Tải xuống hoàn tất
fileSizeProgress = ({ $partialSize } trong { $totalSize }) fileSizeProgress = ({ $partialSize } trong { $totalSize })
sendYourFilesLink = Dùng thử Firefox Send sendYourFilesLink = Dùng thử Send
errorPageHeader = Có gì đó không ổn! errorPageHeader = Có gì đó không ổn!
fileTooBig = Tập tin này quá lớn để tải lên. Kích thước tập tin phải nhỏ hơn { $size }. fileTooBig = Tập tin này quá lớn để tải lên. Kích thước tập tin phải nhỏ hơn { $size }.
linkExpiredAlt = Liên kết đã hết hạn linkExpiredAlt = Liên kết đã hết hạn
notSupportedHeader = Trình duyệt của bạn không được hỗ trợ. notSupportedHeader = Trình duyệt của bạn không được hỗ trợ.
notSupportedLink = Tại sao trình duyệt của tôi không được hỗ trợ? notSupportedLink = Tại sao trình duyệt của tôi không được hỗ trợ?
notSupportedOutdatedDetail = Thật không may là phiên bản Firefox này không hỗ trợ công nghệ được sử dụng trong Firefox Send. Bạn cần cập nhật trình duyệt của bạn. notSupportedOutdatedDetail = Thật không may là phiên bản Firefox này không hỗ trợ công nghệ được sử dụng trong Send. Bạn cần cập nhật trình duyệt của bạn.
updateFirefox = Cập nhật Firefox updateFirefox = Cập nhật Firefox
deletePopupCancel = Hủy bỏ deletePopupCancel = Hủy bỏ
deleteButtonHover = Xóa deleteButtonHover = Xóa
@ -32,8 +31,8 @@ footerLinkLegal = Pháp lý
footerLinkPrivacy = Quyền riêng tư footerLinkPrivacy = Quyền riêng tư
footerLinkCookies = Cookie footerLinkCookies = Cookie
passwordTryAgain = Sai mật khẩu. Vui lòng thử lại. passwordTryAgain = Sai mật khẩu. Vui lòng thử lại.
javascriptRequired = Firefox Send cần JavaScript javascriptRequired = Send cần JavaScript
whyJavascript = Tại sao Firefox Send cần JavaScript? whyJavascript = Tại sao Send cần JavaScript?
enableJavascript = Vui lòng kích hoạt JavaScript và thử lại. enableJavascript = Vui lòng kích hoạt JavaScript và thử lại.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } giờ { $minutes } phút expiresHoursMinutes = { $hours } giờ { $minutes } phút
@ -46,8 +45,7 @@ passwordSetError = Không thể đặt mật khẩu này
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send je oruko ile-ise kan, kò sì ye ki a so di ibile.
title = Firefox Send je oruko ile-ise kan, kò sì ye ki a so di ibile.
siteFeedback = abo siteFeedback = abo
importingFile = akowọle… importingFile = akowọle…
encryptingFile = Fifi ọrọ ṣiṣẹ… encryptingFile = Fifi ọrọ ṣiṣẹ…
@ -15,17 +14,17 @@ downloadFinish =
Ìsíwá parí Ìsíwá parí
Ìgbasílẹ̀ parí Ìgbasílẹ̀ parí
sendYourFilesLink = sendYourFilesLink =
Gbìyànjúu Firefox Send Gbìyànjúu Send
Gbìyànjú lo Firefox Send Gbìyànjú lo Send
Dán Firefox Send wò Dán Send wò
errorPageHeader = Nnkan o lo daadaa! errorPageHeader = Nnkan o lo daadaa!
fileTooBig = fileTooBig =
Fáìlì yìí tóbijù láti gbà sókè. Ó ní láti kéré sí { $size } Fáìlì yìí tóbijù láti gbà sókè. Ó ní láti kéré sí { $size }
Fáìlì yìí tóbijù láti gbà sókè. Ó ní láti kéré ju { $size } lọ Fáìlì yìí tóbijù láti gbà sókè. Ó ní láti kéré ju { $size } lọ
linkExpiredAlt = linkExpiredAlt =
Ojú-òpó ti kásẹ̀ Ojú-òpó ti kásẹ̀
Ojú-òpó ti pajújé Ojú-òpó ti pajújé
Ọ̀nà-òpó ti kásẹ̀ Ọ̀nà-òpó ti kásẹ̀
Ọ̀nà-òpó ti pajújé Ọ̀nà-òpó ti pajújé
notSupportedHeader = notSupportedHeader =
Èrọ-ìfarakọ́ra rẹ ò ní ìbátan Èrọ-ìfarakọ́ra rẹ ò ní ìbátan
@ -35,7 +34,7 @@ notSupportedLink =
Kí ló ṣe tí ẹ̀rọ-aṣàwárí mi ò ní ìbátan? Kí ló ṣe tí ẹ̀rọ-aṣàwárí mi ò ní ìbátan?
Kí nìdí tí ẹ̀rọ-ìfarakọ́ra mi ò ní ìbátan? Kí nìdí tí ẹ̀rọ-ìfarakọ́ra mi ò ní ìbátan?
Kí nìdí tí ẹ̀rọ-aṣàwárí mi ò ní ìbátan? Kí nìdí tí ẹ̀rọ-aṣàwárí mi ò ní ìbátan?
notSupportedOutdatedDetail = Ó ṣe, wípé ẹ̀dà Firefox yí ò ní àtìlẹyìn ẹ̀rọ-alátagbà tí ó ń mú Firefox Send ṣiṣẹ́. O ní láti ṣe àgbéga èdà ẹ̀rọ-aṣàwárí rẹ kó bágbàmu. notSupportedOutdatedDetail = Ó ṣe, wípé ẹ̀dà Firefox yí ò ní àtìlẹyìn ẹ̀rọ-alátagbà tí ó ń mú Send ṣiṣẹ́. O ní láti ṣe àgbéga èdà ẹ̀rọ-aṣàwárí rẹ kó bágbàmu.
updateFirefox = Mú Firefox bágbàmu updateFirefox = Mú Firefox bágbàmu
deletePopupCancel = deletePopupCancel =
Nù kúrò Nù kúrò
@ -55,7 +54,7 @@ footerLinkCookies =
passwordTryAgain = passwordTryAgain =
Ọ̀rọ̀-aṣínà kò tọ́. Gbìyànjú síi Ọ̀rọ̀-aṣínà kò tọ́. Gbìyànjú síi
Ọ̀rọ̀-aṣíde kò tọ́. Gbìyànjú síi Ọ̀rọ̀-aṣíde kò tọ́. Gbìyànjú síi
javascriptRequired = Firefox Send nílòo JavaScript javascriptRequired = Send nílòo JavaScript
whyJavascript = whyJavascript =
Kí nìdí tí Firefox fi nílòo JavaScript? Kí nìdí tí Firefox fi nílòo JavaScript?
Kí nìdí tí Firefox ṣe nílòo JavaScript? Kí nìdí tí Firefox ṣe nílòo JavaScript?
@ -77,8 +76,7 @@ passwordSetError =
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = -send-short-brand =
Fi ránṣẹ́ Fi ránṣẹ́
Firánṣẹ́ Firánṣẹ́

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
# A short representation of a countdown timer containing the number of minutes remaining as digits, example "56m" # A short representation of a countdown timer containing the number of minutes remaining as digits, example "56m"
expiresMinutes = { $minutes }m expiresMinutes = { $minutes }m

View File

@ -1,4 +1,3 @@
# Firefox Send is a brand name and should not be localized.
title = ⴼⴰⵢⵔⴼⵓⴽⵙ ⵙⵉⵏⴷ title = ⴼⴰⵢⵔⴼⵓⴽⵙ ⵙⵉⵏⴷ
siteFeedback = ⵜⴰⵙⴷⵎⵉⵔⵜ siteFeedback = ⵜⴰⵙⴷⵎⵉⵔⵜ
importingFile = ⴰⵙⴽⵛⵎ... importingFile = ⴰⵙⴽⵛⵎ...
@ -48,7 +47,6 @@ passwordSetError = ⵓⵔ ⵜⵣⵎⵉⵔ ⵜⴳⵓⵔⵉ ⴰ ⵓⵣⵔⴰ
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
-send-brand = ⴼⴰⵢⵔⴼⵓⴽⵙ ⵙⵉⵏⴷ -send-brand = ⴼⴰⵢⵔⴼⵓⴽⵙ ⵙⵉⵏⴷ
-send-short-brand = ⵙⵉⵏⴷ -send-short-brand = ⵙⵉⵏⴷ
-firefox = ⴼⴰⵢⵔⴼⵓⴽⵙ -firefox = ⴼⴰⵢⵔⴼⵓⴽⵙ

View File

@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = 反馈 siteFeedback = 反馈
importingFile = 正在导入… importingFile = 正在导入…
encryptingFile = 正在加密… encryptingFile = 正在加密…
@ -18,13 +17,13 @@ unlockButtonLabel = 解锁
downloadButtonLabel = 下载 downloadButtonLabel = 下载
downloadFinish = 下载完成 downloadFinish = 下载完成
fileSizeProgress = ({ $partialSize } / { $totalSize }) fileSizeProgress = ({ $partialSize } / { $totalSize })
sendYourFilesLink = 试试 Firefox Send sendYourFilesLink = 试试 Send
errorPageHeader = 我们遇到错误。 errorPageHeader = 我们遇到错误。
fileTooBig = 此文件太大。文件大小上限为 { $size }。 fileTooBig = 此文件太大。文件大小上限为 { $size }。
linkExpiredAlt = 链接已过期 linkExpiredAlt = 链接已过期
notSupportedHeader = 不支持您的浏览器。 notSupportedHeader = 不支持您的浏览器。
notSupportedLink = 为什么不支持我的浏览器? notSupportedLink = 为什么不支持我的浏览器?
notSupportedOutdatedDetail = 很可惜,此版本的 Firefox 不支持 Firefox Send 所使用的 Web 技术。您需要更新浏览器才能使用它。 notSupportedOutdatedDetail = 很可惜,此版本的 Firefox 不支持 Send 所使用的 Web 技术。您需要更新浏览器才能使用它。
updateFirefox = 更新 Firefox updateFirefox = 更新 Firefox
deletePopupCancel = 取消 deletePopupCancel = 取消
deleteButtonHover = 删除 deleteButtonHover = 删除
@ -32,8 +31,8 @@ footerLinkLegal = 法律
footerLinkPrivacy = 隐私 footerLinkPrivacy = 隐私
footerLinkCookies = Cookie footerLinkCookies = Cookie
passwordTryAgain = 密码不正确。请重试。 passwordTryAgain = 密码不正确。请重试。
javascriptRequired = Firefox Send 需要 JavaScript javascriptRequired = Send 需要 JavaScript
whyJavascript = 为什么 Firefox Send 需要 JavaScript whyJavascript = 为什么 Send 需要 JavaScript
enableJavascript = 请启用 JavaScript 并重试。 enableJavascript = 请启用 JavaScript 并重试。
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } 小时 { $minutes } 分钟 expiresHoursMinutes = { $hours } 小时 { $minutes } 分钟
@ -46,8 +45,7 @@ passwordSetError = 未能设置此密码
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

Some files were not shown because too many files have changed in this diff Show More