diff --git a/README.md b/README.md index 68f72103..8a5362bf 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,15 @@ -# [![Firefox Send](./assets/icon.svg)](https://send.firefox.com/) Firefox Send +# Firefox Send [![CircleCI](https://img.shields.io/circleci/project/github/mozilla/send.svg)](https://circleci.com/gh/mozilla/send) +## NOTICE - May 2021 + +Mozilla discontinued the Firefox Send service in September 2021. For more information about this, please see the [Mozilla Blog](https://blog.mozilla.org/blog/2020/09/17/update-on-firefox-send-and-firefox-notes/). + +Please note that the [Mozilla Public License 2.0](https://www.mozilla.org/en-US/MPL/2.0/) does not "grant any rights in the trademarks, service marks, or logos of any Contributor." You may fork and modify the source code for Firefox Send pursuant to the Mozilla Public License, but you may not create a version of the service that uses Mozilla trademarks or logos. + +This repository is archived. In May 2021, Mozilla removed Mozilla trademarks from some of the files in this repository so that developers using this code are less likely to inadvertently infringe Mozilla's trademarks and confuse users. You are welcome to copy and modify this code under its open source license, but please ensure that all use complies with [Mozilla's trademark policy](https://www.mozilla.org/en-US/foundation/trademarks/policy/). In other words, if you create a new version of Firefox Send you must remove all "Mozilla" and "Firefox" branding to ensure that users are not confused about who is providing the service. + **Docs:** [FAQ](docs/faq.md), [Encryption](docs/encryption.md), [Build](docs/build.md), [Docker](docs/docker.md), [Metrics](docs/metrics.md), [More](docs/) --- diff --git a/app/controller.js b/app/controller.js index 969f9561..6b7240db 100644 --- a/app/controller.js +++ b/app/controller.js @@ -6,8 +6,6 @@ import { bytes, locale } from './utils'; import okDialog from './ui/okDialog'; import copyDialog from './ui/copyDialog'; import shareDialog from './ui/shareDialog'; -import signupDialog from './ui/signupDialog'; -import surveyDialog from './ui/surveyDialog'; export default function(state, emitter) { let lastRender = 0; @@ -36,7 +34,7 @@ export default function(state, emitter) { document.addEventListener('blur', () => (updateTitle = true)); document.addEventListener('focus', () => { updateTitle = false; - emitter.emit('DOMTitleChange', 'Firefox Send'); + emitter.emit('DOMTitleChange', 'Send'); }); checkFiles(); }); @@ -110,19 +108,6 @@ export default function(state, emitter) { render(); }); - emitter.on('signup-cta', source => { - const query = state.query; - state.user.startAuthFlow(source, { - campaign: query.utm_campaign, - content: query.utm_content, - medium: query.utm_medium, - source: query.utm_source, - term: query.utm_term - }); - state.modal = signupDialog(source); - render(); - }); - emitter.on('authenticate', async (code, oauthState) => { try { await state.user.finishLogin(code, oauthState); @@ -309,7 +294,7 @@ export default function(state, emitter) { !state.user.surveyed ) { state.user.surveyed = true; - state.modal = surveyDialog(); + // state.modal = surveyDialog(); } else { state.modal = null; } diff --git a/app/main.css b/app/main.css index 58cce00f..4b7a47d7 100644 --- a/app/main.css +++ b/app/main.css @@ -31,10 +31,6 @@ a:focus { } body { - background-image: url('../assets/bg.svg'); - background-position: center; - background-repeat: no-repeat; - background-size: cover; overflow-x: hidden; } @@ -182,19 +178,6 @@ footer li:hover { @apply bg-white; } -.mozilla-logo { - background-image: url('../assets/mozilla-logo.svg'); - background-repeat: no-repeat; - background-size: 100px, 48px; - overflow: hidden; - text-indent: 120%; - white-space: nowrap; - display: inline-block; - height: 32px; - width: 100px; - flex-shrink: 0; -} - #password-msg::after { content: '\200b'; } @@ -337,11 +320,6 @@ select { @apply bg-grey-90; } - .mozilla-logo { - background-color: white; - border: 1px solid white; - } - @screen md { .main > section { @apply border; diff --git a/app/routes.js b/app/routes.js index 75eb9e0f..d79f42bb 100644 --- a/app/routes.js +++ b/app/routes.js @@ -7,7 +7,6 @@ module.exports = function(app = choo({ hash: true })) { app.route('/download/:id', body(download)); app.route('/download/:id/:key', body(download)); app.route('/unsupported/:reason', body(require('./ui/unsupported'))); - app.route('/legal', body(require('./ui/legal'))); app.route('/error', body(require('./ui/error'))); app.route('/blank', body(require('./ui/blank'))); app.route('/oauth', function(state, emit) { diff --git a/app/ui/body.js b/app/ui/body.js index c7b271de..b717a9b1 100644 --- a/app/ui/body.js +++ b/app/ui/body.js @@ -1,29 +1,15 @@ const html = require('choo/html'); -const Promo = require('./promo'); const Header = require('./header'); const Footer = require('./footer'); -function banner(state) { - if (state.layout) { - return; // server side - } - const show = - !state.capabilities.standalone && - !state.route.startsWith('/unsupported/') && - state.locale === 'en-US'; - if (show) { - return state.cache(Promo, 'promo').render(); - } -} - module.exports = function body(main) { return function(state, emit) { const b = html` - ${banner(state, emit)} ${state.cache(Header, 'header').render()} - ${main(state, emit)} ${state.cache(Footer, 'footer').render()} + ${state.cache(Header, 'header').render()} ${main(state, emit)} + ${state.cache(Footer, 'footer').render()} `; if (state.layout) { diff --git a/app/ui/footer.js b/app/ui/footer.js index e90a74f7..37b59ff3 100644 --- a/app/ui/footer.js +++ b/app/ui/footer.js @@ -12,35 +12,10 @@ class Footer extends Component { } createElement() { - const translate = this.state.translate; return html` + > `; } } diff --git a/app/ui/legal.js b/app/ui/legal.js deleted file mode 100644 index 1f4aad6e..00000000 --- a/app/ui/legal.js +++ /dev/null @@ -1,109 +0,0 @@ -const html = require('choo/html'); -const modal = require('./modal'); - -module.exports = function(state, emit) { - state.modal = null; - return html` -
- ${state.modal && modal(state, emit)} -
-

- ${state.translate('legalTitle')} -

-

${state.translate('legalDateStamp')}

-
-

- When Mozilla receives information from you, our - Mozilla Privacy Policy - describes how we handle that information. Below are the top - things you should know about Firefox Send. You can also view the - code - here. -

-
    -
  • - Content: Mozilla receives an encrypted copy of the file you - upload but we cannot access the content or name of your encrypted - file. By default, files are stored for a maximum of either 24 - hours or 7 days. If you choose a download cap, the file can be - deleted from our server sooner. -
  • -
  • - Data on your device: So that you can check status or delete - files, basic information about your uploaded files is stored on - your local device. This includes our identifier for the file, the - filename, and the file’s unique download URL. This is cleared if - you delete your uploaded file or upon visiting Send after the file - expires. Note, however, that the URL will persist in your browsing - history (and with whomever you shared it) until manually deleted. -
  • -
  • - Personal data: The following is necessary to provide the - service: -
      -
    • - IP addresses: We receive IP addresses of downloaders - and uploaders as part of our standard server logs. These are - retained for 90 days, and for that period, may be connected to - activity of a file’s download URL. Although we develop our - services in ways that minimize identification, you should know - that it may be possible to correlate the IP address of a Send - user to the IP address of other Mozilla services with - accounts; and if there is a match, this could identify the - account email address. -
    • -
    • - Firefox Account: This is required for authentication - only if you wish to upload larger file sizes. Your Firefox - Account record will retain aggregate data on your usage of - Send: for example, if you created a Firefox Account in - connection with Send, number of files sent and approximate - file sizes, and how many times you’ve used the service. -
    • -
    -
  • -
  • - Non-personal data: We receive the following to improve our - service and performance: -
      -
    • - Interaction data: This includes information such as - number of people sending and receiving files, number of files - uploaded and approximate file sizes, percentage of file - downloaders who become uploaders, how people engage with the - website (time spent, clicks, referrer information, site exit - path, use of passwords). -
    • -
    • - Technical data: This includes information such as - operating system, browser, language preference, country, - timestamps, duration for file transfer, reasons for errors, - reasons for file expiration. -
    • -
    -
  • -
  • - Third Party Services: We use Google Cloud Platform. -
  • -
-
-
-
- `; -}; diff --git a/app/ui/promo.js b/app/ui/promo.js deleted file mode 100644 index e514c241..00000000 --- a/app/ui/promo.js +++ /dev/null @@ -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` - -
- Firefox - - ${`Like Firefox Send? You'll love our new full-device VPN. `} - ${`Get it today`} - -
-
- `; - } -} - -module.exports = Promo; diff --git a/app/ui/report.js b/app/ui/report.js index 1c2ae3d7..2fce5d48 100644 --- a/app/ui/report.js +++ b/app/ui/report.js @@ -1,5 +1,4 @@ const html = require('choo/html'); -const raw = require('choo/html/raw'); const assets = require('../../common/assets'); const REPORTABLES = ['Malware', 'Pii', 'Abuse']; @@ -16,13 +15,6 @@ module.exports = function(state, emit) {

${state.translate('reportUnknownDescription')}

-

- ${raw( - replaceLinks(state.translate('reportReasonCopyright'), [ - 'https://www.mozilla.org/about/legal/report-infringement/' - ]) - )} -

`; @@ -88,13 +80,6 @@ module.exports = function(state, emit) { ` )} -
  • - ${raw( - replaceLinks(state.translate('reportReasonCopyright'), [ - 'https://www.mozilla.org/about/legal/report-infringement/' - ]) - )} -
  • ([^<]+)<\/a>/g, - (m, v) => `${v}` - ); - return `

    ${s}

    `; - } }; diff --git a/app/ui/signupDialog.js b/app/ui/signupDialog.js deleted file mode 100644 index 01be324f..00000000 --- a/app/ui/signupDialog.js +++ /dev/null @@ -1,92 +0,0 @@ -const html = require('choo/html'); -const assets = require('../../common/assets'); -const { bytes } = require('../utils'); -const { canceledSignup, submittedSignup } = require('../metrics'); - -module.exports = function(trigger) { - return function(state, emit, close) { - const DAYS = Math.floor(state.LIMITS.MAX_EXPIRE_SECONDS / 86400); - let submitting = false; - return html` - - -
    -

    - ${state.translate('accountBenefitTitle')} -

    - -
    -
    -
    - - -
    - ${state.user.loginRequired - ? '' - : html` - - `} -
    -
    - `; - - function emailish(str) { - if (!str) { - return false; - } - // just check if it's the right shape - const a = str.split('@'); - return a.length === 2 && a.every(s => s.length > 0); - } - - function cancel(event) { - canceledSignup({ trigger }); - close(event); - } - - function submitEmail(event) { - event.preventDefault(); - if (submitting) { - return; - } - submitting = true; - - const el = document.getElementById('email-input'); - const email = el.value; - submittedSignup({ trigger }); - emit('login', emailish(email) ? email : null); - } - }; -}; diff --git a/app/ui/surveyDialog.js b/app/ui/surveyDialog.js deleted file mode 100644 index ee06a257..00000000 --- a/app/ui/surveyDialog.js +++ /dev/null @@ -1,42 +0,0 @@ -const html = require('choo/html'); -const version = require('../../package.json').version; -const { browserName } = require('../utils'); - -module.exports = function() { - return function(state, emit, close) { - const surveyUrl = `${ - state.PREFS.surveyUrl - }?ver=${version}&browser=${browserName()}&anon=${ - state.user.loggedIn - }&active_count=${state.storage.files.length}`; - return html` - -

    - Tell us what you think. -

    -

    - Love Firefox Send? Take a quick survey to let us know how we can make - it better. -

    - - Give feedback - - -
    - `; - }; -}; diff --git a/assets/android-chrome-192x192.png b/assets/android-chrome-192x192.png index 99b0a9f8..36aed9fc 100644 Binary files a/assets/android-chrome-192x192.png and b/assets/android-chrome-192x192.png differ diff --git a/assets/android-chrome-512x512.png b/assets/android-chrome-512x512.png index 69f67822..20caf078 100644 Binary files a/assets/android-chrome-512x512.png and b/assets/android-chrome-512x512.png differ diff --git a/assets/apple-touch-icon.png b/assets/apple-touch-icon.png index ca0c34fc..e147cb57 100644 Binary files a/assets/apple-touch-icon.png and b/assets/apple-touch-icon.png differ diff --git a/assets/bg.svg b/assets/bg.svg deleted file mode 100644 index 02457110..00000000 --- a/assets/bg.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - 71CDA8D6-6870-4A28-B45F-707A97F95302 - Created with sketchtool. - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/completed.svg b/assets/completed.svg index 75a4e6bf..2c8e8b35 100644 --- a/assets/completed.svg +++ b/assets/completed.svg @@ -1,94 +1,3 @@ - - CC310D7B-7EC7-4AEF-90E5-10044C2FA0F1 - Created with sketchtool. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/error.svg b/assets/error.svg index 27ea8b96..e5bfdefe 100644 --- a/assets/error.svg +++ b/assets/error.svg @@ -1,92 +1,3 @@ - - 5A8EEB55-E89B-49C5-8493-6FC78CEDF580 - Created with sketchtool. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/favicon-16x16.png b/assets/favicon-16x16.png index a08e2326..2b8e84d7 100644 Binary files a/assets/favicon-16x16.png and b/assets/favicon-16x16.png differ diff --git a/assets/favicon-32x32.png b/assets/favicon-32x32.png index d6352560..e57a145e 100644 Binary files a/assets/favicon-32x32.png and b/assets/favicon-32x32.png differ diff --git a/assets/icon.svg b/assets/icon.svg index af0f45e1..d3eef44c 100644 --- a/assets/icon.svg +++ b/assets/icon.svg @@ -1,41 +1,2 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/intro.svg b/assets/intro.svg index 3935f827..c2b46d1c 100644 --- a/assets/intro.svg +++ b/assets/intro.svg @@ -1,151 +1,4 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/master-logo.svg b/assets/master-logo.svg index ec8e6f8f..cdaeba19 100644 --- a/assets/master-logo.svg +++ b/assets/master-logo.svg @@ -1,99 +1,2 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/mozilla-logo.svg b/assets/mozilla-logo.svg deleted file mode 100644 index 3ea2e868..00000000 --- a/assets/mozilla-logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/assets/notFound.svg b/assets/notFound.svg index 85428771..9ce3b9c0 100644 --- a/assets/notFound.svg +++ b/assets/notFound.svg @@ -1,97 +1,3 @@ - - 27A08916-26BA-4E40-BE07-5F49802F2EFC - Created with sketchtool. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/safari-pinned-tab.svg b/assets/safari-pinned-tab.svg index adc6c676..dd02a166 100644 --- a/assets/safari-pinned-tab.svg +++ b/assets/safari-pinned-tab.svg @@ -4,31 +4,4 @@ - -Created by potrace 1.11, written by Peter Selinger 2001-2013 - - - - diff --git a/assets/send-fb.jpg b/assets/send-fb.jpg deleted file mode 100644 index 1a9ee311..00000000 Binary files a/assets/send-fb.jpg and /dev/null differ diff --git a/assets/send-twitter.jpg b/assets/send-twitter.jpg deleted file mode 100644 index 5db1c48d..00000000 Binary files a/assets/send-twitter.jpg and /dev/null differ diff --git a/assets/wordmark.svg b/assets/wordmark.svg index 4f4b3689..5b8d5cf2 100644 --- a/assets/wordmark.svg +++ b/assets/wordmark.svg @@ -1,6 +1,2 @@ - - \ No newline at end of file diff --git a/build/android_index_plugin.js b/build/android_index_plugin.js index a3462095..7f37d608 100644 --- a/build/android_index_plugin.js +++ b/build/android_index_plugin.js @@ -20,7 +20,7 @@ class AndroidIndexPlugin { const page = html` - Firefox Send + Send - Firefox Send + Send diff --git a/package-lock.json b/package-lock.json index 4556bf64..a454255b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5846,6 +5846,11 @@ "randomfill": "^1.0.3" } }, + "crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + }, "css-blank-pseudo": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", @@ -8987,6 +8992,45 @@ "google-auth-library": "^6.0.0", "pumpify": "^2.0.0", "stream-events": "^1.0.4" + }, + "dependencies": { + "configstore": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", + "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", + "requires": { + "dot-prop": "^5.2.0", + "graceful-fs": "^4.1.2", + "make-dir": "^3.0.0", + "unique-string": "^2.0.0", + "write-file-atomic": "^3.0.0", + "xdg-basedir": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + } } }, "gensync": { @@ -9210,8 +9254,7 @@ "graceful-fs": { "version": "4.2.4", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", - "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", - "dev": true + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" }, "growl": { "version": "1.10.5", @@ -10066,8 +10109,7 @@ "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" }, "indent-string": { "version": "4.0.0", @@ -16232,8 +16274,7 @@ "signal-exit": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", - "dev": true + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" }, "simple-swizzle": { "version": "0.2.2", @@ -17970,6 +18011,14 @@ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "requires": { + "is-typedarray": "^1.0.0" + } + }, "ua-parser-js": { "version": "0.7.21", "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.21.tgz", @@ -18110,6 +18159,14 @@ "imurmurhash": "^0.1.4" } }, + "unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "requires": { + "crypto-random-string": "^2.0.0" + } + }, "unist-util-find-all-after": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-1.0.5.tgz", diff --git a/public/browserconfig.xml b/public/browserconfig.xml deleted file mode 100644 index b3930d0f..00000000 --- a/public/browserconfig.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - #da532c - - - diff --git a/public/favicon.ico b/public/favicon.ico index 65da6b67..0e38c438 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/locales/an/send.ftl b/public/locales/an/send.ftl index 769e565d..30101d25 100644 --- a/public/locales/an/send.ftl +++ b/public/locales/an/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Se ye importando… encryptingFile = Se ye cifrando… decryptingFile = Se ye descifrando… @@ -19,13 +19,13 @@ unlockButtonLabel = Desblocar downloadButtonLabel = Descargar downloadFinish = Descarga completa fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Preba Firefox Send +sendYourFilesLink = Preba Send errorPageHeader = I ha habiu bell problema! fileTooBig = Ixe fichero ye masiau gran pa cargar-lo. Ha de tener menos de { $size } linkExpiredAlt = Lo vinclo ye caducau notSupportedHeader = Lo suyo navegador no ye compatible notSupportedLink = Per qué no ye compatible lo mío navegador? -notSupportedOutdatedDetail = Esta versión de Firefox no admite la tecnolochía web con que funciona lo Firefox Send. Habrás d'esviellar lo navegador. +notSupportedOutdatedDetail = Esta versión de Firefox no admite la tecnolochía web con que funciona lo Send. Habrás d'esviellar lo navegador. updateFirefox = Esviellar Firefox deletePopupCancel = Cancelar deleteButtonHover = Borrar @@ -33,8 +33,8 @@ footerLinkLegal = Aviso legal footerLinkPrivacy = Privacidat footerLinkCookies = Cookies passwordTryAgain = La contrasenya ye incorrecta. Torne-lo a intentar. -javascriptRequired = Firefox Send necesita JavaScript -whyJavascript = Per qué Firefox Send necesita JavaScript? +javascriptRequired = Send necesita JavaScript +whyJavascript = Per qué Send necesita JavaScript? enableJavascript = Activa JavaScript y torna-lo a intentar. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } h { $minutes } min @@ -47,8 +47,8 @@ passwordSetError = No s'ha puesto definir la clau ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ar/send.ftl b/public/locales/ar/send.ftl index 6d71a925..f5838f36 100644 --- a/public/locales/ar/send.ftl +++ b/public/locales/ar/send.ftl @@ -1,4 +1,4 @@ -# Firefox Send is a brand name and should not be localized. +# Send is a brand name and should not be localized. title = فَيَرفُكس سِنْد siteFeedback = الانطباعات importingFile = يستورد… @@ -56,8 +56,8 @@ passwordSetError = يجب ألا تُضبط كلمة السر هذه ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ast/send.ftl b/public/locales/ast/send.ftl index f4342209..2fe75389 100644 --- a/public/locales/ast/send.ftl +++ b/public/locales/ast/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importando... encryptingFile = Cifrando... decryptingFile = Descifrando... @@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquiar downloadButtonLabel = Baxar downloadFinish = Completóse la descarga fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Probar Firefox Send +sendYourFilesLink = Probar Send errorPageHeader = ¡Asocedió daqué malo! fileTooBig = Esti ficheru ye mui grande como pa xubilu. Debería tener menos de { $size }. linkExpiredAlt = Caducó l'enllaz notSupportedHeader = El to restolador nun ta sofitáu. notSupportedLink = ¿Por qué'l mio restolador nun ta sofitáu? -notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox nun sofita la teunoloxía web qu'usa Firefox Send. Vas precisar anovar el restolador. +notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox nun sofita la teunoloxía web qu'usa Send. Vas precisar anovar el restolador. updateFirefox = Anovar Firefox deletePopupCancel = Encaboxar deleteButtonHover = Desaniciar @@ -33,8 +33,8 @@ footerLinkLegal = Llegal footerLinkPrivacy = Privacidá footerLinkCookies = Cookies passwordTryAgain = La contraseña ye incorreuta. Volvi tentalo. -javascriptRequired = Firefox Send rique JavaScript -whyJavascript = ¿Por qué Firefox Send rique JavaScript? +javascriptRequired = Send rique JavaScript +whyJavascript = ¿Por qué Send rique JavaScript? enableJavascript = Activa JavaScript y volvi tentalo, por favor. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Nun pudo afitase esta contraseña ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/az/send.ftl b/public/locales/az/send.ftl index f8134beb..c88eb6e7 100644 --- a/public/locales/az/send.ftl +++ b/public/locales/az/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Geri dönüş importingFile = İdxal edilir… encryptingFile = Şifrələnir... @@ -20,13 +20,13 @@ unlockButtonLabel = Aç downloadButtonLabel = Endir downloadFinish = Endirmə Tamamlandı fileSizeProgress = ({ $partialSize } / { $totalSize }) -sendYourFilesLink = Firefox Send Yoxla +sendYourFilesLink = Send Yoxla errorPageHeader = Nəsə səhv getdi! fileTooBig = Fayl yükləmək üçün çox böyükdür. Fayl { $size }-dan az olmalıdır. linkExpiredAlt = Keçidin vaxtı çıxıb notSupportedHeader = Səyyahınız dəstəklənmir. notSupportedLink = Səyyahım niyə dəstəklənmir? -notSupportedOutdatedDetail = Heyf ki, Firefox səyyahının bu versiyası Firefox Send-ə güc verən web texnologiyalarını dəstəkləmir. Səyyahınızı yeniləməlisiniz. +notSupportedOutdatedDetail = Heyf ki, Firefox səyyahının bu versiyası Send-ə güc verən web texnologiyalarını dəstəkləmir. Səyyahınızı yeniləməlisiniz. updateFirefox = Firefox-u Yenilə deletePopupCancel = Ləğv et deleteButtonHover = Sil @@ -34,8 +34,8 @@ footerLinkLegal = Hüquqi footerLinkPrivacy = Məxfilik footerLinkCookies = Çərəzlər passwordTryAgain = Səhv parol. Təkrar yoxlayın. -javascriptRequired = Firefox Send üçün JavaScript lazımdır -whyJavascript = Firefox Send niyə JavaScript tələb edir? +javascriptRequired = Send üçün JavaScript lazımdır +whyJavascript = Send niyə JavaScript tələb edir? enableJavascript = Lütfən JavaScript-i aktiv edib təkrar yoxlayın. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } saat { $minutes } dəq @@ -48,8 +48,8 @@ passwordSetError = Parol qurula bilmədi ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/azz/send.ftl b/public/locales/azz/send.ftl index d86be53c..eed956eb 100644 --- a/public/locales/azz/send.ftl +++ b/public/locales/azz/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Nikan uelis tikijkuilos tein tiknemilijtos importingFile = Mokalakijtok… encryptingFile = Motatijtok… @@ -18,13 +18,13 @@ unlockButtonLabel = Xikajchiua tein amo kikaua maj tekiti downloadButtonLabel = Xiktemoui downloadFinish = Nochi motemouij ya fileSizeProgress = ({ $partialSize } itech { $totalSize }) -sendYourFilesLink = Xikejeko Firefox Send +sendYourFilesLink = Xikejeko Send errorPageHeader = ¡Tensa amo kuali kisak! fileTooBig = Nejin tajkuilol semi ueyi. Moneki amo panos { $size } linkExpiredAlt = Nejin tein tikpatskilij amo tekititok ya notSupportedHeader = Monavegador amo kualtia. notSupportedLink = ¿Keyej nonavegador amo kualtia? -notSupportedOutdatedDetail = Tetayokoltij, Firefox tein tikuitok amo kiselia tepostekitilis tecnología web tein ika tekiti Firefox Send. Moneki tikyankuilis monavegador. +notSupportedOutdatedDetail = Tetayokoltij, Firefox tein tikuitok amo kiselia tepostekitilis tecnología web tein ika tekiti Send. Moneki tikyankuilis monavegador. updateFirefox = Maj Firefox moyankuili deletePopupCancel = Maj motsakuili uan amo tami tein kichiujtok deleteButtonHover = Maj majchiua @@ -32,8 +32,8 @@ footerLinkLegal = Keniuj motekitiltis footerLinkPrivacy = Keniuj tikyekpiaj tein tikseliaj footerLinkCookies = Cookies passwordTryAgain = Amo yektik ichtakatajtol. Oksepa xikijkuilo. -javascriptRequired = Firefox Send kineki maj moajsi JavaScript -whyJavascript = ¿Keyej Firefox Send kineki maj moajsi JavaScript? +javascriptRequired = Send kineki maj moajsi JavaScript +whyJavascript = ¿Keyej Send kineki maj moajsi JavaScript? enableJavascript = Se kualtakayot, xikaua maj peua tekiti JavaScript uan oksepa xikejeko. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -46,8 +46,8 @@ passwordSetError = Nejin ichtakatajtol amo uel kiixtaliani ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Xiktitani -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/be/send.ftl b/public/locales/be/send.ftl index 9a5a233a..95d1a657 100644 --- a/public/locales/be/send.ftl +++ b/public/locales/be/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Імпартаванне... encryptingFile = Зашыфроўка... decryptingFile = Расшыфроўка... @@ -21,13 +21,13 @@ unlockButtonLabel = Разблакаваць downloadButtonLabel = Сцягнуць downloadFinish = Сцягванне скончана fileSizeProgress = ({ $partialSize } з { $totalSize }) -sendYourFilesLink = Паспрабуйце Firefox Send +sendYourFilesLink = Паспрабуйце Send errorPageHeader = Нешта пайшло не так! fileTooBig = Гэты файл надта вялікі. Ён мусіць быць меншым за { $size } linkExpiredAlt = Тэрмін дзеяння спасылкі сышоў notSupportedHeader = Ваш браўзер не падтрымліваецца. notSupportedLink = Чаму мой браўзер не падтрымліваецца? -notSupportedOutdatedDetail = На жаль, гэтая версія Firefox не падтрымлівае вэб-тэхналогію, што забяспечвае працу Firefox Send. Вам трэба абнавіць свой браўзер. +notSupportedOutdatedDetail = На жаль, гэтая версія Firefox не падтрымлівае вэб-тэхналогію, што забяспечвае працу Send. Вам трэба абнавіць свой браўзер. updateFirefox = Абнавіць Firefox deletePopupCancel = Скасаваць deleteButtonHover = Выдаліць @@ -35,8 +35,8 @@ footerLinkLegal = Прававыя звесткі footerLinkPrivacy = Прыватнасць footerLinkCookies = Кукі passwordTryAgain = Некарэктны пароль. Паспрабуйце зноў. -javascriptRequired = Для Firefox Send неабходны JavaScript -whyJavascript = Чаму для Firefox Send неабходны JavaScript? +javascriptRequired = Для Send неабходны JavaScript +whyJavascript = Чаму для Send неабходны JavaScript? enableJavascript = Калі ласка, уключыце JavaScript і паспрабуйце зноў. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } г. { $minutes } хв. @@ -49,8 +49,8 @@ passwordSetError = Гэты пароль немагчыма паставіць ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/bn/send.ftl b/public/locales/bn/send.ftl index 33de3c7a..35c30c08 100644 --- a/public/locales/bn/send.ftl +++ b/public/locales/bn/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = প্রতিক্রিয়া importingFile = ইম্পোর্ট হচ্ছে... encryptingFile = ইনক্রিপট হচ্ছে... @@ -20,13 +20,13 @@ unlockButtonLabel = আনলক করুন downloadButtonLabel = ডাউনলোড downloadFinish = ডাউনলোড সম্পন্ন fileSizeProgress = ({ $totalSize } এর { $partialSize }) -sendYourFilesLink = Firefox Send পরখ করে দেখুন +sendYourFilesLink = Send পরখ করে দেখুন errorPageHeader = কোন সমস্যা হয়েছে! fileTooBig = ফাইলটি আপলোড করার জন্যে খুব বড়। এটি { $size } এর চেয়ে কম হওয়া উচিত। linkExpiredAlt = লিঙ্ক মেয়াদউত্তীর্ণ হয়েছে notSupportedHeader = আপনার ব্রাউজার সমর্থিত নয়। notSupportedLink = আমার ব্রাউজার কেন সমর্থিত নয়? -notSupportedOutdatedDetail = দুর্ভাগ্যবশত Firefox এই সংস্করণটি ওয়েব প্রযুক্তিকে সমর্থন করে না যা Firefox Send কে সমর্থন করে। আপনাকে আপনার ব্রাউজারটি আপডেট করতে হবে। +notSupportedOutdatedDetail = দুর্ভাগ্যবশত Firefox এই সংস্করণটি ওয়েব প্রযুক্তিকে সমর্থন করে না যা Send কে সমর্থন করে। আপনাকে আপনার ব্রাউজারটি আপডেট করতে হবে। updateFirefox = Firefox হালনাগাদ করুন deletePopupCancel = বাতিল deleteButtonHover = মুছে ফেলুন @@ -34,8 +34,8 @@ footerLinkLegal = আইনগত footerLinkPrivacy = গোপনীয়তা footerLinkCookies = কুকি passwordTryAgain = ভুল পাসওয়ার্ড। আবার চেষ্টা করুন। -javascriptRequired = Firefox Send এর জাভাস্ক্রিপ্ট প্রয়োজন। -whyJavascript = কেন Firefox Send এর জাভাস্ক্রিপ্ট প্রয়োজন? +javascriptRequired = Send এর জাভাস্ক্রিপ্ট প্রয়োজন। +whyJavascript = কেন Send এর জাভাস্ক্রিপ্ট প্রয়োজন? enableJavascript = জাভাস্ক্রিপ্ট সক্রিয় করুন এবং আবার চেষ্টা করুন। # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }ঘ { $minutes }মি @@ -48,8 +48,8 @@ passwordSetError = এই পাসওয়ার্ড সেট করা য ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = প্রেরণ -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/br/send.ftl b/public/locales/br/send.ftl index b904a8ba..a2524ad2 100644 --- a/public/locales/br/send.ftl +++ b/public/locales/br/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Oc'h enporzhiañ … encryptingFile = Oc'h enrinegañ.. decryptingFile = Oc'h ezrinegañ... @@ -25,13 +25,13 @@ unlockButtonLabel = Dibrennañ downloadButtonLabel = Pellgargañ downloadFinish = Pellgargadur echu fileSizeProgress = ({ $partialSize } war { $totalSize }) -sendYourFilesLink = Esaeit Firefox Send +sendYourFilesLink = Esaeit Send errorPageHeader = Degouezhet ez eus bet ur fazi! fileTooBig = Re vras eo ar restr-mañ evit e pellgas. Rankout a ra bezañ nebeutoc'h eget { $size } linkExpiredAlt = Ere diamzeret notSupportedHeader = N'eo ket skoret ho merdeer. notSupportedLink = Perak n'eo ket skoret ma merdeer? -notSupportedOutdatedDetail = Siwazh n'eo ket skoret ar c'halvezerezhioù implijet evit Firefox Send gant an handelv-mañ eus Firefox. Ret e vo deoc'h hizivaat ho merdeer. +notSupportedOutdatedDetail = Siwazh n'eo ket skoret ar c'halvezerezhioù implijet evit Send gant an handelv-mañ eus Firefox. Ret e vo deoc'h hizivaat ho merdeer. updateFirefox = Hizivaat Firefox deletePopupCancel = Nullañ deleteButtonHover = Dilemel @@ -39,8 +39,8 @@ footerLinkLegal = Lezennel footerLinkPrivacy = Buhez prevez footerLinkCookies = Toupinoù passwordTryAgain = Ger-tremen direizh. Klaskit en-dro. -javascriptRequired = Firefox Send a azgoulenn Javascript -whyJavascript = Perak e azgoulenn Firefox Send Javascript? +javascriptRequired = Send a azgoulenn Javascript +whyJavascript = Perak e azgoulenn Send Javascript? enableJavascript = Gweredekait Javascript ha klaskit en-dro. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }e { $minutes }m @@ -53,8 +53,8 @@ passwordSetError = N'haller ket despizañ ar ger-tremen ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/bs/send.ftl b/public/locales/bs/send.ftl index f6c9557e..fe091864 100644 --- a/public/locales/bs/send.ftl +++ b/public/locales/bs/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteSubtitle = web eksperiment siteFeedback = Povratne informacije uploadPageHeader = Privatno, šifrovano dijeljenje datoteka @@ -57,16 +57,16 @@ unlockInputLabel = Unesite lozinku unlockInputPlaceholder = Lozinka unlockButtonLabel = Otključaj downloadFileTitle = Preuzmi šifrovanu datoteku -# Firefox Send is a brand name and should not be localized. -downloadMessage = Vaš prijatelj vam je poslao datoteku preko usluge Firefox Send koja vam omogućava da dijelite datoteke preko sigurne, privatne i šifrovane veze koja samostalno ističe da vaše stvari ne ostanu zauvijek na internetu. +# Send is a brand name and should not be localized. +downloadMessage = Vaš prijatelj vam je poslao datoteku preko usluge Send koja vam omogućava da dijelite datoteke preko sigurne, privatne i šifrovane veze koja samostalno ističe da vaše stvari ne ostanu zauvijek na internetu. # Text and title used on the download link/button (indicates an action). downloadButtonLabel = Preuzmi downloadNotification = Vaše preuzimanje je završeno. downloadFinish = Preuzimanje završeno # This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)". fileSizeProgress = ({ $partialSize } od { $totalSize }) -# Firefox Send is a brand name and should not be localized. -sendYourFilesLink = Probajte Firefox Send +# Send is a brand name and should not be localized. +sendYourFilesLink = Probajte Send downloadingPageProgress = Preuzimanje { $filename } ({ $size }) downloadingPageMessage = Ostavite ovaj tab otvorenim dok ne dobavimo vašu datoteku i dok je ne dešifrujemo. errorAltText = Greška pri otpremanju @@ -77,10 +77,10 @@ fileTooBig = Ta datoteka je prevelika za otpremanje. Treba biti manja od { $size linkExpiredAlt = Veza istekla expiredPageHeader = Veza je istekla ili nikad nije postojala! notSupportedHeader = Vaš pretraživač nije podržan. -# Firefox Send is a brand name and should not be localized. -notSupportedDetail = Ovaj pretraživač nažalost ne podržava web tehnologiju koja omogućava Firefox Send. Trebate probati drugi pretraživač. Preporučujemo Firefox! +# Send is a brand name and should not be localized. +notSupportedDetail = Ovaj pretraživač nažalost ne podržava web tehnologiju koja omogućava Send. Trebate probati drugi pretraživač. Preporučujemo Firefox! notSupportedLink = Zašto moj pretraživač nije podržan? -notSupportedOutdatedDetail = Nažalost ova verzija Firefoxa ne podržava web tehnologiju koja omogućava Firefox Send. Morate ažurirati vaš pretraživač. +notSupportedOutdatedDetail = Nažalost ova verzija Firefoxa ne podržava web tehnologiju koja omogućava Send. Morate ažurirati vaš pretraživač. updateFirefox = Ažuriraj Firefox downloadFirefoxButtonSub = Besplatno preuzimanje uploadedFile = Datoteka @@ -90,8 +90,8 @@ expiryFileList = Ističe za deleteFileList = Izbriši nevermindButton = Zanemari legalHeader = Uslovi i privatnost -legalNoticeTestPilot = Firefox Send je trenutno Test Pilot eksperiment i podržan je uslovima korištenja i obavještenjem o privatnosti. Možete saznati više o ovom eksperimentu i o njegovom sakupljanju podataka ovdje. -legalNoticeMozilla = Korištenje Firefox Send web stranice podlaže Mozillinom obavještenju o privatnosti na web stranicama i uslovima korištenja web stranica. +legalNoticeTestPilot = Send je trenutno Test Pilot eksperiment i podržan je uslovima korištenja i obavještenjem o privatnosti. Možete saznati više o ovom eksperimentu i o njegovom sakupljanju podataka ovdje. +legalNoticeMozilla = Korištenje Send web stranice podlaže Mozillinom obavještenju o privatnosti na web stranicama i uslovima korištenja web stranica. deletePopupText = Izbrisati ovu datoteku? deletePopupYes = Da deletePopupCancel = Otkaži @@ -108,8 +108,8 @@ addPasswordButton = Dodaj lozinku changePasswordButton = Promijeni passwordTryAgain = Netačna lozinka. Pokušajte ponovo. reportIPInfringement = Prijavite IP prekršaj -javascriptRequired = Firefox Send zahtjeva JavaScript -whyJavascript = Zašto Firefox Send zahtjeva JavaScript? +javascriptRequired = Send zahtjeva JavaScript +whyJavascript = Zašto Send zahtjeva JavaScript? enableJavascript = Molimo omogućite JavaScript i pokušajte ponovo. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m diff --git a/public/locales/ca/send.ftl b/public/locales/ca/send.ftl index 1bf4bc04..099e59a8 100644 --- a/public/locales/ca/send.ftl +++ b/public/locales/ca/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = S'està important… encryptingFile = S'està xifrant… decryptingFile = S'està desxifrant… @@ -19,13 +19,13 @@ unlockButtonLabel = Desbloca downloadButtonLabel = Baixa downloadFinish = Ha acabat la baixada fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Proveu el Firefox Send +sendYourFilesLink = Proveu el Send errorPageHeader = Hi ha hagut un problema fileTooBig = Aquest fitxer és massa gros per pujar-lo. Ha de tenir menys de { $size }. linkExpiredAlt = L'enllaç ha caducat notSupportedHeader = El vostre navegador no és compatible. notSupportedLink = Per què el meu navegador no és compatible? -notSupportedOutdatedDetail = Aquesta versió del Firefox no admet la tecnologia web amb què funciona el Firefox Send. Haureu d'actualitzar el navegador. +notSupportedOutdatedDetail = Aquesta versió del Firefox no admet la tecnologia web amb què funciona el Send. Haureu d'actualitzar el navegador. updateFirefox = Actualitza el Firefox deletePopupCancel = Cancel·la deleteButtonHover = Suprimeix @@ -33,8 +33,8 @@ footerLinkLegal = Avís legal footerLinkPrivacy = Privadesa footerLinkCookies = Galetes passwordTryAgain = La contrasenya és incorrecta. Torneu-ho a provar. -javascriptRequired = El Firefox Send necessita JavaScript -whyJavascript = Per què el Firefox Send necessita JavaScript? +javascriptRequired = El Send necessita JavaScript +whyJavascript = Per què el Send necessita JavaScript? enableJavascript = Activeu el JavaScript i torneu-ho a provar. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } h { $minutes } min @@ -47,9 +47,9 @@ passwordSetError = No s'ha pogut definir la contrasenya ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send --send-short-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send +-send-short-brand = Send -firefox = Firefox -mozilla = Mozilla introTitle = Compartició de fitxers senzilla i privada diff --git a/public/locales/cak/send.ftl b/public/locales/cak/send.ftl index 275521c6..0d9fd647 100644 --- a/public/locales/cak/send.ftl +++ b/public/locales/cak/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Rutzijol importingFile = Tajin nijik… encryptingFile = Tajin newäx rusik'ixik… @@ -20,13 +20,13 @@ unlockButtonLabel = Titzij chik downloadButtonLabel = Tiqasäx downloadFinish = Xtz'aqät qasanïk fileSizeProgress = ({ $partialSize } richin { $totalSize }) -sendYourFilesLink = Titojtob'ëx Firefox Send +sendYourFilesLink = Titojtob'ëx Send errorPageHeader = ¡K'o ri man ütz ta xub'än! fileTooBig = Yalan nïm re yakb'äl re' richin nijotob'äx. K'o ta chi man nik'o ta chi re ri { $size }. linkExpiredAlt = Xk'is ruq'ijul ri ximonel notSupportedHeader = Man koch'el ta ri awokik'amaya'l. notSupportedLink = ¿Achike ruma man nikoch' taq ri wokik'amaya'l? -notSupportedOutdatedDetail = K'ayew ruma re ruwäch Firefox re' man nuköch' ta ri ajk'amaya'l na'ob'äl nrajo' ri Firefox Send. Rajowaxik nak'ëx ri awokik'amaya'l. +notSupportedOutdatedDetail = K'ayew ruma re ruwäch Firefox re' man nuköch' ta ri ajk'amaya'l na'ob'äl nrajo' ri Send. Rajowaxik nak'ëx ri awokik'amaya'l. updateFirefox = Tik'ex ri Firefox deletePopupCancel = Tiq'at deleteButtonHover = Tiyuj @@ -34,8 +34,8 @@ footerLinkLegal = Taqanel tzijol footerLinkPrivacy = Ichinanem footerLinkCookies = Taq kaxlanwey passwordTryAgain = Itzel ri ewan tzij. Tatojtob'ej chik. -javascriptRequired = K'atzinel JavaScript chi re ri Firefox Send -whyJavascript = ¿Achike ruma toq ri Firefox Send nrajo' JavaScript? +javascriptRequired = K'atzinel JavaScript chi re ri Send +whyJavascript = ¿Achike ruma toq ri Send nrajo' JavaScript? enableJavascript = Titz'ij JavaScript richin nitojtob'ëx chik. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }r { $minutes }ch @@ -48,8 +48,8 @@ passwordSetError = Man tikirel ta ninuk' re ewan tzij re' ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Titaq -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ckb/send.ftl b/public/locales/ckb/send.ftl index 08ae125e..433bc104 100644 --- a/public/locales/ckb/send.ftl +++ b/public/locales/ckb/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = ڕەخنەوپێشنیار importingFile = هاوردەکردن... encryptingFile = بەهێماکردن... @@ -26,7 +26,7 @@ fileTooBig = ئەم پەڕگەیە زۆر گەورەیە بۆ بارکردن. پ linkExpiredAlt = بەستەر بەسەرچووە notSupportedHeader = وێبگەڕەکەت پشتگیری ناکرێت notSupportedLink = بۆ وێبگەڕەکەم پشتگیری ناکرێت؟ -notSupportedOutdatedDetail = بەداخەوە ئەم وەشانەی Firefox پشتگیری ئەو جۆرە تەکنەلۆژییە ناکات کە پێویستە بۆ Firefox Send. پێویستە وێبگەڕەکەت نوێبکەیتەوە. +notSupportedOutdatedDetail = بەداخەوە ئەم وەشانەی Firefox پشتگیری ئەو جۆرە تەکنەلۆژییە ناکات کە پێویستە بۆ Send. پێویستە وێبگەڕەکەت نوێبکەیتەوە. updateFirefox = فاەرفۆکس نوێبکەرەوە deletePopupCancel = پاشگەزبوونەوە deleteButtonHover = سڕینەوە @@ -48,8 +48,8 @@ passwordSetError = ناتوانرێت وشەی تێپەڕ دابنرێت ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/cs/send.ftl b/public/locales/cs/send.ftl index a4b3a98e..3e26148c 100644 --- a/public/locales/cs/send.ftl +++ b/public/locales/cs/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Probíhá import… encryptingFile = Probíhá šifrování… decryptingFile = Probíhá dešifrování… @@ -21,13 +21,13 @@ unlockButtonLabel = Odemknout downloadButtonLabel = Stáhnout downloadFinish = Stahování dokončeno fileSizeProgress = ({ $partialSize } z { $totalSize }) -sendYourFilesLink = Vyzkoušet Firefox Send +sendYourFilesLink = Vyzkoušet Send errorPageHeader = Nastala chyba! fileTooBig = Tento soubor je příliš veliký. Velikost nahrávaných souborů by neměla překročit { $size }. linkExpiredAlt = Platnost odkazu vypršela notSupportedHeader = Váš prohlížeč není podporován. notSupportedLink = Proč není můj prohlížeč podporovaný? -notSupportedOutdatedDetail = Tato verze Firefoxu bohužel nepodporuje webovou technologii, která pohání Firefox Send. Musíte aktualizovat svůj prohlížeč. +notSupportedOutdatedDetail = Tato verze Firefoxu bohužel nepodporuje webovou technologii, která pohání Send. Musíte aktualizovat svůj prohlížeč. updateFirefox = Aktualizovat Firefox deletePopupCancel = Zrušit deleteButtonHover = Smazat @@ -35,8 +35,8 @@ footerLinkLegal = Právní informace footerLinkPrivacy = Soukromí footerLinkCookies = Cookies passwordTryAgain = Špatné heslo. Zkuste to znovu. -javascriptRequired = Firefox Send vyžaduje povolený JavaScript -whyJavascript = Proč Firefox Send vyžaduje povolený JavaScript? +javascriptRequired = Send vyžaduje povolený JavaScript +whyJavascript = Proč Send vyžaduje povolený JavaScript? enableJavascript = Povolte JavaScript a zkuste to znovu. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } h { $minutes } m @@ -49,13 +49,13 @@ passwordSetError = Toto heslo nemohlo být nastaveno ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized +# Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = { $case -> - *[nom] Firefox Send + *[nom] Send [gen] Firefoxu Send [dat] Firefoxu Send - [acc] Firefox Send + [acc] Send [voc] Firefoxe Send [loc] Firefoxu Send [ins] Firefoxem Send diff --git a/public/locales/cy/send.ftl b/public/locales/cy/send.ftl index 00234d8f..6be545d2 100644 --- a/public/locales/cy/send.ftl +++ b/public/locales/cy/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Mewnforio… encryptingFile = Wrthi'n amgryptio… decryptingFile = Wrthi'n dadgryptio… @@ -27,13 +27,13 @@ unlockButtonLabel = Datgloi downloadButtonLabel = Llwytho i Lawr downloadFinish = Llwytho wedi Gorffen fileSizeProgress = ({ $partialSize } o { $totalSize }) -sendYourFilesLink = Rhowch gynnig ar Firefox Send +sendYourFilesLink = Rhowch gynnig ar Send errorPageHeader = Aeth rhywbeth o'i le! fileTooBig = Mae'r ffeil yn rhy fawr i'w llwytho. Dylai fod yn llai na { $size }. linkExpiredAlt = Mae'r ddolen wedi dod i ben notSupportedHeader = Nid yw eich porwr yn cael ei gynnal. notSupportedLink = Pam nad yw fy mhorwr yn cael ei gynnal? -notSupportedOutdatedDetail = Yn anffodus, nid yw'r fersiwn yma o Firefox yn cynnal y technoleg gwe sy'n gyrru Firefox Send. Bydd angen i chi ddiweddaru eich porwr. +notSupportedOutdatedDetail = Yn anffodus, nid yw'r fersiwn yma o Firefox yn cynnal y technoleg gwe sy'n gyrru Send. Bydd angen i chi ddiweddaru eich porwr. updateFirefox = Diweddaru Firefox deletePopupCancel = Diddymu deleteButtonHover = Dileu @@ -41,8 +41,8 @@ footerLinkLegal = Cyfreithiol footerLinkPrivacy = Preifatrwydd footerLinkCookies = Cwcis passwordTryAgain = Cyfrinair anghywir. Ceisiwch eto. -javascriptRequired = Mae Firefox Send angen JavaScript -whyJavascript = Pam fod Firefox Send angen JavaScript? +javascriptRequired = Mae Send angen JavaScript +whyJavascript = Pam fod Send angen JavaScript? enableJavascript = Galluogwch JavaScript a cheisio eto. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }a { $minutes }m @@ -55,8 +55,8 @@ passwordSetError = Nid oedd modd gosod y cyfrinair hwn ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Anfon -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/da/send.ftl b/public/locales/da/send.ftl index d72e0a54..8b9c4cd5 100644 --- a/public/locales/da/send.ftl +++ b/public/locales/da/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importerer… encryptingFile = Krypterer… decryptingFile = Dekrypterer… @@ -19,13 +19,13 @@ unlockButtonLabel = Lås op downloadButtonLabel = Hent downloadFinish = Hentning fuldført fileSizeProgress = ({ $partialSize } af { $totalSize }) -sendYourFilesLink = Prøv Firefox Send +sendYourFilesLink = Prøv Send errorPageHeader = Der gik noget galt! fileTooBig = Den fil er for stor at uploade. Den skal være mindre end { $size }. linkExpiredAlt = Link er udløbet notSupportedHeader = Din browser understøttes ikke. notSupportedLink = Hvorfor understøttes min browser ikke? -notSupportedOutdatedDetail = Desværre understøtter denne version af Firefox ikke den webteknologi, som driver Firefox Send. Du skal opdatere din browser. +notSupportedOutdatedDetail = Desværre understøtter denne version af Firefox ikke den webteknologi, som driver Send. Du skal opdatere din browser. updateFirefox = Opdater Firefox deletePopupCancel = Annuller deleteButtonHover = Slet @@ -33,8 +33,8 @@ footerLinkLegal = Juridisk footerLinkPrivacy = Privatliv footerLinkCookies = Cookies passwordTryAgain = Forkert adgangskode. Prøv igen. -javascriptRequired = Firefox Send kræver JavaScript -whyJavascript = Hvorfor kræver Firefox Send JavaScript? +javascriptRequired = Send kræver JavaScript +whyJavascript = Hvorfor kræver Send JavaScript? enableJavascript = Aktiver JavaScript og prøv igen. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } t { $minutes } m @@ -47,8 +47,8 @@ passwordSetError = Adgangskoden kunne ikke sættes ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/de/send.ftl b/public/locales/de/send.ftl index 4b999f7c..0e550a6f 100644 --- a/public/locales/de/send.ftl +++ b/public/locales/de/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Wird importiert… encryptingFile = Wird verschlüsselt… decryptingFile = Wird entschlüsselt… @@ -19,13 +19,13 @@ unlockButtonLabel = Entsperren downloadButtonLabel = Herunterladen downloadFinish = Download abgeschlossen fileSizeProgress = ({ $partialSize } von { $totalSize }) -sendYourFilesLink = Firefox Send ausprobieren +sendYourFilesLink = Send ausprobieren errorPageHeader = Ein Fehler ist aufgetreten! fileTooBig = Die Datei ist zu groß zum Hochladen. Sie sollte maximal { $size } groß sein. linkExpiredAlt = Link abgelaufen notSupportedHeader = Dein Browser wird nicht unterstützt. notSupportedLink = Warum wird mein Browser nicht unterstützt? -notSupportedOutdatedDetail = Leider unterstützt diese Firefox-Version die Web-Technologie nicht, auf der Firefox Send basiert. Du musst deinen Browser aktualisieren. +notSupportedOutdatedDetail = Leider unterstützt diese Firefox-Version die Web-Technologie nicht, auf der Send basiert. Du musst deinen Browser aktualisieren. updateFirefox = Firefox aktualisieren deletePopupCancel = Abbrechen deleteButtonHover = Löschen @@ -33,8 +33,8 @@ footerLinkLegal = Rechtliches footerLinkPrivacy = Datenschutz footerLinkCookies = Cookies passwordTryAgain = Falsches Passwort. Versuche es nochmal. -javascriptRequired = Firefox Send benötigt JavaScript -whyJavascript = Warum benötigt Firefox Send JavaScript? +javascriptRequired = Send benötigt JavaScript +whyJavascript = Warum benötigt Send JavaScript? enableJavascript = Bitte aktiviere JavaScript und versuche es erneut. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Dieses Passwort konnte nicht eingerichtet werden ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/dsb/send.ftl b/public/locales/dsb/send.ftl index 2fbaaf97..e5d77c2d 100644 --- a/public/locales/dsb/send.ftl +++ b/public/locales/dsb/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importěrujo se... encryptingFile = Koděrujo se... decryptingFile = Dešifrěrujo se... @@ -23,13 +23,13 @@ unlockButtonLabel = Wótwóriś downloadButtonLabel = Ześěgnuś downloadFinish = Ześěgnjenje dokóńcone fileSizeProgress = ({ $partialSize } z { $totalSize }) -sendYourFilesLink = Firefox Send wopytaś +sendYourFilesLink = Send wopytaś errorPageHeader = Něco njejo se raźiło! fileTooBig = Toś ta dataja jo pśewjelika za nagraśe. Měła mjeńša ako { $size } byś. linkExpiredAlt = Wótkaz spadnjony notSupportedHeader = Waš wobglědowak se njepódpěra. notSupportedLink = Cogodla se mój wobglědowak njepódpěra? -notSupportedOutdatedDetail = Bóžko toś ta wersija Firefox webtechnologiju njepódpěra, na kótarejž Firefox Send bazěrujo. Musyśo swój wobglědowak aktualizěrowaś. +notSupportedOutdatedDetail = Bóžko toś ta wersija Firefox webtechnologiju njepódpěra, na kótarejž Send bazěrujo. Musyśo swój wobglědowak aktualizěrowaś. updateFirefox = Firefox aktualizěrowaś deletePopupCancel = Pśetergnuś deleteButtonHover = Wulašowaś @@ -37,8 +37,8 @@ footerLinkLegal = Pšawniske footerLinkPrivacy = Priwatnosć footerLinkCookies = Cookieje passwordTryAgain = Wopacne gronidło. Wopytajśo hyšći raz. -javascriptRequired = Firefox Send JavaScript trjeba -whyJavascript = Cogodla Firefox Send JavaScript trjeba? +javascriptRequired = Send JavaScript trjeba +whyJavascript = Cogodla Send JavaScript trjeba? enableJavascript = Pšosym zmóžniśo JavaScript a wopytajśo hyšći raz. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } góź. { $minutes } min. @@ -51,8 +51,8 @@ passwordSetError = Toś to gronidło njedajo se nastajiś ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/el/send.ftl b/public/locales/el/send.ftl index b4028f01..700f500d 100644 --- a/public/locales/el/send.ftl +++ b/public/locales/el/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Εισαγωγή… encryptingFile = Κρυπτογράφηση… decryptingFile = Αποκρυπτογράφηση… @@ -19,13 +19,13 @@ unlockButtonLabel = Ξεκλείδωμα downloadButtonLabel = Λήψη downloadFinish = Η λήψη ολοκληρώθηκε fileSizeProgress = ({ $partialSize } από { $totalSize }) -sendYourFilesLink = Δοκιμάστε το Firefox Send +sendYourFilesLink = Δοκιμάστε το Send errorPageHeader = Κάτι πήγε στραβά! fileTooBig = Αυτό το αρχείο είναι πολύ μεγάλο για μεταφόρτωση. Πρέπει να είναι μικρότερο από { $size }. linkExpiredAlt = Ο σύνδεσμος έληξε notSupportedHeader = Το πρόγραμμα περιήγησής σας δεν υποστηρίζεται. notSupportedLink = Γιατί δεν υποστηρίζεται το πρόγραμμα περιήγησής μου; -notSupportedOutdatedDetail = Δυστυχώς, αυτή η έκδοση του Firefox δεν υποστηρίζει την τεχνολογία ιστού στην οποία βασίζεται το Firefox Send. Πρέπει να ενημερώσετε το πρόγραμμα περιήγησής σας. +notSupportedOutdatedDetail = Δυστυχώς, αυτή η έκδοση του Firefox δεν υποστηρίζει την τεχνολογία ιστού στην οποία βασίζεται το Send. Πρέπει να ενημερώσετε το πρόγραμμα περιήγησής σας. updateFirefox = Ενημέρωση Firefox deletePopupCancel = Ακύρωση deleteButtonHover = Διαγραφή @@ -33,8 +33,8 @@ footerLinkLegal = Νομικά footerLinkPrivacy = Απόρρητο footerLinkCookies = Cookies passwordTryAgain = Λάθος κωδικός πρόσβασης. Δοκιμάστε ξανά. -javascriptRequired = Το Firefox Send απαιτεί JavaScript -whyJavascript = Γιατί το Firefox Send απαιτεί JavaScript; +javascriptRequired = Το Send απαιτεί JavaScript +whyJavascript = Γιατί το Send απαιτεί JavaScript; enableJavascript = Παρακαλώ ενεργοποιήστε το JavaScript και δοκιμάστε ξανά. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }ώ { $minutes }λ @@ -47,8 +47,8 @@ passwordSetError = Δεν ήταν δυνατός ο ορισμός αυτού ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/en-CA/send.ftl b/public/locales/en-CA/send.ftl index 27e04d2b..a8bac8c4 100644 --- a/public/locales/en-CA/send.ftl +++ b/public/locales/en-CA/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importing… encryptingFile = Encrypting… decryptingFile = Decrypting… @@ -19,13 +19,13 @@ unlockButtonLabel = Unlock downloadButtonLabel = Download downloadFinish = Download Complete fileSizeProgress = ({ $partialSize } of { $totalSize }) -sendYourFilesLink = Try Firefox Send +sendYourFilesLink = Try Send errorPageHeader = Something went wrong! fileTooBig = That file is too big to upload. It should be less than { $size }. linkExpiredAlt = Link expired notSupportedHeader = Your browser is not supported. notSupportedLink = Why is my browser not supported? -notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Firefox Send. You’ll need to update your browser. +notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. You’ll need to update your browser. updateFirefox = Update Firefox deletePopupCancel = Cancel deleteButtonHover = Delete @@ -33,8 +33,8 @@ footerLinkLegal = Legal footerLinkPrivacy = Privacy footerLinkCookies = Cookies passwordTryAgain = Incorrect password. Try again. -javascriptRequired = Firefox Send requires JavaScript -whyJavascript = Why does Firefox Send require JavaScript? +javascriptRequired = Send requires JavaScript +whyJavascript = Why does Send require JavaScript? enableJavascript = Please enable JavaScript and try again. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = This password could not be set ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/en-GB/send.ftl b/public/locales/en-GB/send.ftl index de9fffe3..5f9f2576 100644 --- a/public/locales/en-GB/send.ftl +++ b/public/locales/en-GB/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importing… encryptingFile = Encrypting… decryptingFile = Decrypting… @@ -19,13 +19,13 @@ unlockButtonLabel = Unlock downloadButtonLabel = Download downloadFinish = Download Complete fileSizeProgress = ({ $partialSize } of { $totalSize }) -sendYourFilesLink = Try Firefox Send +sendYourFilesLink = Try Send errorPageHeader = Something went wrong! fileTooBig = That file is too big to upload. It should be less than { $size }. linkExpiredAlt = Link expired notSupportedHeader = Your browser is not supported. notSupportedLink = Why is my browser not supported? -notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Firefox Send. You’ll need to update your browser. +notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. You’ll need to update your browser. updateFirefox = Update Firefox deletePopupCancel = Cancel deleteButtonHover = Delete @@ -33,8 +33,8 @@ footerLinkLegal = Legal footerLinkPrivacy = Privacy footerLinkCookies = Cookies passwordTryAgain = Incorrect password. Try again. -javascriptRequired = Firefox Send requires JavaScript -whyJavascript = Why does Firefox Send require JavaScript? +javascriptRequired = Send requires JavaScript +whyJavascript = Why does Send require JavaScript? enableJavascript = Please enable JavaScript and try again. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = This password could not be set ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/en-US/send.ftl b/public/locales/en-US/send.ftl index 02e1c97f..3893ad16 100644 --- a/public/locales/en-US/send.ftl +++ b/public/locales/en-US/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importing… encryptingFile = Encrypting… decryptingFile = Decrypting… @@ -17,13 +17,13 @@ unlockButtonLabel = Unlock downloadButtonLabel = Download downloadFinish = Download complete fileSizeProgress = ({ $partialSize } of { $totalSize }) -sendYourFilesLink = Try Firefox Send +sendYourFilesLink = Try Send errorPageHeader = Something went wrong! fileTooBig = That file is too big to upload. It should be less than { $size } linkExpiredAlt = Link expired notSupportedHeader = Your browser is not supported. notSupportedLink = Why is my browser not supported? -notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Firefox Send. You’ll need to update your browser. +notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. You’ll need to update your browser. updateFirefox = Update Firefox deletePopupCancel = Cancel deleteButtonHover = Delete @@ -31,8 +31,8 @@ footerLinkLegal = Legal footerLinkPrivacy = Privacy footerLinkCookies = Cookies passwordTryAgain = Incorrect password. Try again. -javascriptRequired = Firefox Send requires JavaScript -whyJavascript = Why does Firefox Send require JavaScript? +javascriptRequired = Send requires JavaScript +whyJavascript = Why does Send require JavaScript? enableJavascript = Please enable JavaScript and try again. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -45,8 +45,8 @@ passwordSetError = This password could not be set ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/es-AR/send.ftl b/public/locales/es-AR/send.ftl index 727851cf..7e4365f4 100644 --- a/public/locales/es-AR/send.ftl +++ b/public/locales/es-AR/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importando… encryptingFile = Cifrando… decryptingFile = Descifrando… @@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear downloadButtonLabel = Descargar downloadFinish = Descarga completa fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Probá Firefox Send +sendYourFilesLink = Probá Send errorPageHeader = ¡Algo falló! fileTooBig = El archivo es demasiado grande para subir. Debería tener menos de { $size }. linkExpiredAlt = Enlace explirado notSupportedHeader = El navegador no está soportado. notSupportedLink = ¿Por qué mi navegador no está soportado? -notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox no soporta la tecnología web que necesita Firefox Send. Necesitás actualizar el navegador. +notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox no soporta la tecnología web que necesita Send. Necesitás actualizar el navegador. updateFirefox = Actualizar Firefox deletePopupCancel = Cancelar deleteButtonHover = Borrar @@ -33,8 +33,8 @@ footerLinkLegal = Legales footerLinkPrivacy = Privacidad footerLinkCookies = Cookies passwordTryAgain = Contraseña incorrecta. Intentá nuevamente. -javascriptRequired = Firefox Send requiere JavaScript -whyJavascript = ¿Por qué Firefox Send requiere Java Script? +javascriptRequired = Send requiere JavaScript +whyJavascript = ¿Por qué Send requiere Java Script? enableJavascript = Por favor habilite JavaScript y pruebe de nuevo. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = h { $hours } m { $minutes } @@ -47,8 +47,8 @@ passwordSetError = No se pudo establecer la contraseña ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/es-CL/send.ftl b/public/locales/es-CL/send.ftl index 32323d8a..49f89f86 100644 --- a/public/locales/es-CL/send.ftl +++ b/public/locales/es-CL/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importando… encryptingFile = Cifrando… decryptingFile = Descifrando… @@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear downloadButtonLabel = Descargar downloadFinish = Descarga completa fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Probar Firefox Send +sendYourFilesLink = Probar Send errorPageHeader = ¡Algo se fue a las pailas! fileTooBig = Ese archivo es muy grande para ser subido. Debiera tener un tamaño menor a { $size }. linkExpiredAlt = Enlace expirado notSupportedHeader = Tu navegador no está soportado. notSupportedLink = ¿Por qué mi navegador no es soportado? -notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta la tecnología web que potencia a Firefox Send. Deberás actualizar tu navegador. +notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta la tecnología web que potencia a Send. Deberás actualizar tu navegador. updateFirefox = Actualizar Firefox deletePopupCancel = Cancelar deleteButtonHover = Eliminar @@ -33,8 +33,8 @@ footerLinkLegal = Legal footerLinkPrivacy = Privacidad footerLinkCookies = Cookies passwordTryAgain = Contraseña incorrecta. Vuelve a intentarlo. -javascriptRequired = Firefox Send requiere JavaScript. -whyJavascript = ¿Por qué Firefox Send requiere JavaScript? +javascriptRequired = Send requiere JavaScript. +whyJavascript = ¿Por qué Send requiere JavaScript? enableJavascript = Por favor, activa JavaScript y vuelve a intentarlo. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Esta contraseña no pudo ser establecida ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/es-ES/send.ftl b/public/locales/es-ES/send.ftl index a8c826f1..1e399f26 100644 --- a/public/locales/es-ES/send.ftl +++ b/public/locales/es-ES/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importando... encryptingFile = Cifrando... decryptingFile = Descifrando... @@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear downloadButtonLabel = Descargar downloadFinish = Descarga completa fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Prueba Firefox Send +sendYourFilesLink = Prueba Send errorPageHeader = ¡Se ha producido un error! fileTooBig = Ese archivo es muy grande. Debería ocupar menos de { $size }. linkExpiredAlt = Enlace caducado notSupportedHeader = Tu navegador no es compatible. notSupportedLink = ¿Por qué mi navegador no es compatible? -notSupportedOutdatedDetail = Lamentablemente, esta versión de Firefox no admite la tecnología web que impulsa Firefox Send. Tendrás que actualizar tu navegador. +notSupportedOutdatedDetail = Lamentablemente, esta versión de Firefox no admite la tecnología web que impulsa Send. Tendrás que actualizar tu navegador. updateFirefox = Actualizar Firefox deletePopupCancel = Cancelar deleteButtonHover = Eliminar @@ -33,8 +33,8 @@ footerLinkLegal = Legal footerLinkPrivacy = Privacidad footerLinkCookies = Cookies passwordTryAgain = Contraseña incorrecta. Inténtalo de nuevo. -javascriptRequired = Firefox Send requiere JavaScript -whyJavascript = ¿Por qué Firefox Send requiere JavaScript? +javascriptRequired = Send requiere JavaScript +whyJavascript = ¿Por qué Send requiere JavaScript? enableJavascript = Por favor, activa JavaScript y vuelve a intentarlo. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = No se ha podido establecer la contraseña ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Enviar -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/es-MX/send.ftl b/public/locales/es-MX/send.ftl index bf86b5f9..81b40e40 100644 --- a/public/locales/es-MX/send.ftl +++ b/public/locales/es-MX/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Comentario importingFile = Importando... encryptingFile = Encriptando… @@ -20,13 +20,13 @@ unlockButtonLabel = Desbloquear downloadButtonLabel = Descargar downloadFinish = Descarga completa fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Prueba Firefox Send +sendYourFilesLink = Prueba Send errorPageHeader = ¡Algo salió mal! fileTooBig = Ese archivo es muy grande. Debería ocupar menos de { $size }. linkExpiredAlt = Enlace caducado notSupportedHeader = Tu navegador no está soportado. notSupportedLink = ¿Por qué mi navegador no tiene soporte? -notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta la tecnología web que potencia a Firefox Send. Deberás actualizar tu navegador. +notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta la tecnología web que potencia a Send. Deberás actualizar tu navegador. updateFirefox = Actualizar Firefox deletePopupCancel = Cancelar deleteButtonHover = Eliminar @@ -34,8 +34,8 @@ footerLinkLegal = Legal footerLinkPrivacy = Privacidad footerLinkCookies = Cookies passwordTryAgain = Contraseña incorrecta. Intenta de nuevo. -javascriptRequired = Firefox Send requiere JavaScript -whyJavascript = ¿Por qué Firefox Send requiere JavaScript? +javascriptRequired = Send requiere JavaScript +whyJavascript = ¿Por qué Send requiere JavaScript? enableJavascript = Por favor, habilita JavaScript e intenta de nuevo. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -48,8 +48,8 @@ passwordSetError = No se ha podido establecer la contraseña ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Enviar -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/et/send.ftl b/public/locales/et/send.ftl index 0e0a910c..a7a11c5d 100644 --- a/public/locales/et/send.ftl +++ b/public/locales/et/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Tagasiside importingFile = Importimine... encryptingFile = Krüptimine… @@ -20,13 +20,13 @@ unlockButtonLabel = Ava downloadButtonLabel = Laadi alla downloadFinish = Allalaadimine lõpetati fileSizeProgress = ({ $partialSize }/{ $totalSize }) -sendYourFilesLink = Proovi Firefox Send'i +sendYourFilesLink = Proovi Send'i errorPageHeader = Midagi läks valesti! fileTooBig = Fail on üleslaadimiseks liiga suur. See peaks olema väiksem kui { $size }. linkExpiredAlt = Link on aegunud notSupportedHeader = Sinu brauser pole toetatud. notSupportedLink = Miks mu brauser toetatud pole? -notSupportedOutdatedDetail = Kahjuks ei toeta see Firefoxi versioon veebitehnoloogiaid, mis teevad Firefox Sendi toimimise võimalikuks. Sa pead oma brauserit uuendama. +notSupportedOutdatedDetail = Kahjuks ei toeta see Firefoxi versioon veebitehnoloogiaid, mis teevad Sendi toimimise võimalikuks. Sa pead oma brauserit uuendama. updateFirefox = Uuenda Firefox deletePopupCancel = Loobu deleteButtonHover = Kustuta @@ -34,8 +34,8 @@ footerLinkLegal = Õiguslik teave footerLinkPrivacy = Privaatsusest footerLinkCookies = Küpsistest passwordTryAgain = Vale parool. Palun proovi uuesti. -javascriptRequired = Firefox Send'i kasutamiseks tuleb JavaScript lubada -whyJavascript = Miks Firefox Send JavaScripti vajab? +javascriptRequired = Send'i kasutamiseks tuleb JavaScript lubada +whyJavascript = Miks Send JavaScripti vajab? enableJavascript = Palun luba JavaScript ja proovi uuesti. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }t { $minutes }m @@ -48,8 +48,8 @@ passwordSetError = Parooli muutmine ebaõnnestus ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/eu/send.ftl b/public/locales/eu/send.ftl index 89177afe..c8028cdb 100644 --- a/public/locales/eu/send.ftl +++ b/public/locales/eu/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Iritzia importingFile = Inportatzen… encryptingFile = Zifratzen... @@ -20,13 +20,13 @@ unlockButtonLabel = Desblokeatu downloadButtonLabel = Deskargatu downloadFinish = Deskarga burututa fileSizeProgress = ({ $totalSize } / { $partialSize }) -sendYourFilesLink = Probatu Firefox Send +sendYourFilesLink = Probatu Send errorPageHeader = Zerbait gaizki joan da! fileTooBig = Fitxategia handiegia da kargatzeko. { $size } baino txikiagoa izan behar du. linkExpiredAlt = Lotura iraungi da notSupportedHeader = Zure nabigatzailea ez da onartzen. notSupportedLink = Zergatik ez da nire nabigatzailea onartzen? -notSupportedOutdatedDetail = Zoritxarrez Firefox bertsio honek ez du Firefox Send-ek behar duen web teknologia onartzen. Zure nabigatzailea eguneratu behar duzu. +notSupportedOutdatedDetail = Zoritxarrez Firefox bertsio honek ez du Send-ek behar duen web teknologia onartzen. Zure nabigatzailea eguneratu behar duzu. updateFirefox = Eguneratu Firefox deletePopupCancel = Utzi deleteButtonHover = Ezabatu @@ -34,8 +34,8 @@ footerLinkLegal = Lege-oharra footerLinkPrivacy = Pribatutasuna footerLinkCookies = Cookieak passwordTryAgain = Pasahitz okerra. Saiatu berriro. -javascriptRequired = JavaScript beharrezkoa da Firefox Send erabiltzeko. -whyJavascript = Zergatik behar du Firefox Send-ek JavasScript? +javascriptRequired = JavaScript beharrezkoa da Send erabiltzeko. +whyJavascript = Zergatik behar du Send-ek JavasScript? enableJavascript = Gaitu JavaScript eta saiatu berriro. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -48,8 +48,8 @@ passwordSetError = Pasahitz hau ezin da ezarri ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/fa/send.ftl b/public/locales/fa/send.ftl index 1302af8c..7a983c05 100644 --- a/public/locales/fa/send.ftl +++ b/public/locales/fa/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = بازخورد importingFile = در حال وارد کردن… encryptingFile = در حال رمزنگاری… @@ -20,13 +20,13 @@ unlockButtonLabel = باز کردن downloadButtonLabel = بارگیری downloadFinish = بارگیری کامل شد fileSizeProgress = ({ $partialSize } از { $totalSize }) -sendYourFilesLink = Firefox Send را امتحان کنید +sendYourFilesLink = Send را امتحان کنید errorPageHeader = خطایی رخ داد! fileTooBig = این پرونده بسیار حجیم است. حجم آن می‌بایستی کم تر { $size } باشد. linkExpiredAlt = پیوند منقضی شده است notSupportedHeader = مرورگر شما پشتیبانی نمی‌شود. notSupportedLink = چرا از مرورگر من پشتیبانی نمی‌شود؟ -notSupportedOutdatedDetail = متاسفانه این نسخه از فایرفاکس این تکنولوژی وب که به Firefox Send قدرت می‌بخشد را پشتیبانی نمی‌کند. شما نیاز دارید تا مرورگر خود را بروز کنید. +notSupportedOutdatedDetail = متاسفانه این نسخه از فایرفاکس این تکنولوژی وب که به Send قدرت می‌بخشد را پشتیبانی نمی‌کند. شما نیاز دارید تا مرورگر خود را بروز کنید. updateFirefox = بروزرسانی فایرفاکس deletePopupCancel = انصراف deleteButtonHover = حذف @@ -34,8 +34,8 @@ footerLinkLegal = ملاحظات حقوقی footerLinkPrivacy = حریم‌خصوصی footerLinkCookies = کوکی‌ها passwordTryAgain = کلمه عبور اشتباه است. مجدد تلاش کنید. -javascriptRequired = Firefox Send نیازمند جاوااسکریپت است -whyJavascript = چرا Firefox Send جاوااسکریپت لازم داد؟ +javascriptRequired = Send نیازمند جاوااسکریپت است +whyJavascript = چرا Send جاوااسکریپت لازم داد؟ enableJavascript = لطفا جاوااسکریپت را فعال کنید و مجددا تلاش کنید. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }ساعت { $minutes }دقیقه @@ -48,8 +48,8 @@ passwordSetError = امکان ثبت این گذواژه نیست ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = ارسال -firefox = فایرفاکس -mozilla = موزیلا diff --git a/public/locales/fi/send.ftl b/public/locales/fi/send.ftl index a55c3b0f..702c57f0 100644 --- a/public/locales/fi/send.ftl +++ b/public/locales/fi/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Tuodaan… encryptingFile = Salataan... decryptingFile = Puretaan salausta... @@ -19,13 +19,13 @@ unlockButtonLabel = Avaa downloadButtonLabel = Lataa downloadFinish = Lataus valmis fileSizeProgress = { $partialSize } / { $totalSize } -sendYourFilesLink = Kokeile Firefox Send -palvelua +sendYourFilesLink = Kokeile Send -palvelua errorPageHeader = Jokin meni pieleen! fileTooBig = Tämä tiedosto on liian suuri ladattavaksi. Sen pitäisi olla pienempi kuin { $size }. linkExpiredAlt = Linkki on vanhentunut notSupportedHeader = Selaintasi ei tueta. notSupportedLink = Miksi selaintani ei tueta? -notSupportedOutdatedDetail = Valitettavasti tämä Firefoxin versio ei tue Firefox Sendiä käyttävää web-tekniikkaa. Sinun on päivitettävä selaimesi. +notSupportedOutdatedDetail = Valitettavasti tämä Firefoxin versio ei tue Sendiä käyttävää web-tekniikkaa. Sinun on päivitettävä selaimesi. updateFirefox = Päivitä Firefox deletePopupCancel = Peruuta deleteButtonHover = Poista @@ -34,7 +34,7 @@ footerLinkPrivacy = Tietosuoja footerLinkCookies = Evästeet passwordTryAgain = Väärä salasana. Yritä uudelleen. javascriptRequired = Firefox-Send vaatii JavaScriptin -whyJavascript = Miksi Firefox Send vaatii JavaScriptin? +whyJavascript = Miksi Send vaatii JavaScriptin? enableJavascript = Ota JavaScript käyttöön ja yritä uudelleen. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } t { $minutes } min @@ -47,8 +47,8 @@ passwordSetError = Tätä salasanaa ei voitu asettaa ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/fr/send.ftl b/public/locales/fr/send.ftl index 78ae2a14..e82f2756 100644 --- a/public/locales/fr/send.ftl +++ b/public/locales/fr/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importation… encryptingFile = Chiffrement… decryptingFile = Déchiffrement… @@ -19,13 +19,13 @@ unlockButtonLabel = Déverrouiller downloadButtonLabel = Télécharger downloadFinish = Téléchargement terminé fileSizeProgress = ({ $partialSize } sur { $totalSize }) -sendYourFilesLink = Essayer Firefox Send +sendYourFilesLink = Essayer Send errorPageHeader = Une erreur s’est produite. fileTooBig = Ce fichier est trop volumineux pour être envoyé. Sa taille doit être inférieure à { $size }. linkExpiredAlt = Le lien a expiré notSupportedHeader = Votre navigateur n’est pas pris en charge. notSupportedLink = Pourquoi mon navigateur n’est-il pas pris en charge ? -notSupportedOutdatedDetail = Malheureusement, cette version de Firefox ne prend pas en charge les technologies web utilisées par Firefox Send. Vous devez mettre à jour votre navigateur. +notSupportedOutdatedDetail = Malheureusement, cette version de Firefox ne prend pas en charge les technologies web utilisées par Send. Vous devez mettre à jour votre navigateur. updateFirefox = Mettre à jour Firefox deletePopupCancel = Annuler deleteButtonHover = Supprimer @@ -33,8 +33,8 @@ footerLinkLegal = Mentions légales footerLinkPrivacy = Confidentialité footerLinkCookies = Cookies passwordTryAgain = Mot de passe incorrect. Veuillez réessayer. -javascriptRequired = Firefox Send nécessite JavaScript -whyJavascript = Pourquoi Firefox Send nécessite-t-il JavaScript ? +javascriptRequired = Send nécessite JavaScript +whyJavascript = Pourquoi Send nécessite-t-il JavaScript ? enableJavascript = Veuillez activer JavaScript puis réessayer. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } h { $minutes } min @@ -47,8 +47,8 @@ passwordSetError = Ce mot de passe n’a pas pu être défini ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/fy-NL/send.ftl b/public/locales/fy-NL/send.ftl index 6b767954..855ebe76 100644 --- a/public/locales/fy-NL/send.ftl +++ b/public/locales/fy-NL/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Ymportearje… encryptingFile = Fersiferje… decryptingFile = Untsiferje… @@ -19,13 +19,13 @@ unlockButtonLabel = Deblokkearje downloadButtonLabel = Downloade downloadFinish = Download foltôge fileSizeProgress = ({ $partialSize } fan { $totalSize }) -sendYourFilesLink = Firefox Send probearje +sendYourFilesLink = Send probearje errorPageHeader = Der is wat misgien! fileTooBig = It bestân is te grut om op te laden. It moat lytser wêze as { $size }. linkExpiredAlt = Keppeling ferrûn notSupportedHeader = Jo browser wurdt net stipe. notSupportedLink = Wêrom wurdt myn browser net stipe? -notSupportedOutdatedDetail = Spitigernôch stipet dizze ferzje fan Firefox de webtechnology dy't Firefox Send mooflik makket net. Jo moatte jo browser fernije. +notSupportedOutdatedDetail = Spitigernôch stipet dizze ferzje fan Firefox de webtechnology dy't Send mooflik makket net. Jo moatte jo browser fernije. updateFirefox = Firefox fernije deletePopupCancel = Annulearje deleteButtonHover = Fuortsmite @@ -33,8 +33,8 @@ footerLinkLegal = Juridysk footerLinkPrivacy = Privacy footerLinkCookies = Cookies passwordTryAgain = Net krekt wachtwurd. Probearje it opnij. -javascriptRequired = Firefox Send fereasket JavaScript. -whyJavascript = Werom hat Firefox Send JavaScript nedich? +javascriptRequired = Send fereasket JavaScript. +whyJavascript = Werom hat Send JavaScript nedich? enableJavascript = Skeakelje JavaScript yn en probearje nochris. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }o { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Dit wachtwurd koe net ynsteld wurde ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/gn/send.ftl b/public/locales/gn/send.ftl index 44fa1f56..162a069b 100644 --- a/public/locales/gn/send.ftl +++ b/public/locales/gn/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Ojegueruhína… encryptingFile = Mo’ãmby… decryptingFile = Ñemo’ã’o… @@ -19,13 +19,13 @@ unlockButtonLabel = Mbojera downloadButtonLabel = Mboguejy downloadFinish = Oguejypáma fileSizeProgress = ({ $partialSize } rehe { $totalSize }) -sendYourFilesLink = Eipuru Firefox Send +sendYourFilesLink = Eipuru Send errorPageHeader = ¡Oiko jejavy! fileTooBig = Marandurenda tuichaiterei ehupi hag̃ua. Michĩveva’erã { $size } gui. linkExpiredAlt = Juajuha ndoikóiva notSupportedHeader = Ne kundaha ndorekói pytyvõ. notSupportedLink = ¿Mba’ére che kundahára ndorekói ñepytyvõ? -notSupportedOutdatedDetail = Ko Firefox rembiapo ndaipu’akái ñanduti rembipurupyahu oikotevẽva Firefox Send. Embohekopyahúke ne kundahára. +notSupportedOutdatedDetail = Ko Firefox rembiapo ndaipu’akái ñanduti rembipurupyahu oikotevẽva Send. Embohekopyahúke ne kundahára. updateFirefox = Firefox mbohekopyahu deletePopupCancel = Heja deleteButtonHover = Mboguete @@ -33,8 +33,8 @@ footerLinkLegal = Añetegua footerLinkPrivacy = Ñemigua footerLinkCookies = Kookie passwordTryAgain = Ñe’ẽñemi ndoikóiva. Eha’ãjey. -javascriptRequired = Firefox Send oikotevẽ JavaScript -whyJavascript = ¿Mba’ére Firefox Send oikotevẽ JavaScript? +javascriptRequired = Send oikotevẽ JavaScript +whyJavascript = ¿Mba’ére Send oikotevẽ JavaScript? enableJavascript = Ikatúpa embojuruja JavaScript ha eha’ãjey uperire. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } h { $minutes } m @@ -47,8 +47,8 @@ passwordSetError = Ndaikatúi oikóvo ko ñe’ẽñemi ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/gor/send.ftl b/public/locales/gor/send.ftl index 0dfe1c3c..f0c55744 100644 --- a/public/locales/gor/send.ftl +++ b/public/locales/gor/send.ftl @@ -1,4 +1,4 @@ -# Firefox Send is a brand name and should not be localized. +# Send is a brand name and should not be localized. title = Firefox Molawo siteSubtitle = web yimontalo siteFeedback = Potunu @@ -42,7 +42,7 @@ downloadNotification = U pilopohulimu ma yilapato. downloadFinish = Mopohuli Yilapato # This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)". fileSizeProgress = ({ $partialSize } meyalo { $totalSize }) -# Firefox Send is a brand name and should not be localized. +# Send is a brand name and should not be localized. sendYourFilesLink = Yimontali Firefox Molawo downloadingPageProgress = Modetohu { $filename } ({ $size }) downloadFirefoxButtonSub = Pereyi Mopohuli diff --git a/public/locales/he/send.ftl b/public/locales/he/send.ftl index 9ac18902..29e93a3e 100644 --- a/public/locales/he/send.ftl +++ b/public/locales/he/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = מתבצע ייבוא… encryptingFile = מתבצעת הצפנה... decryptingFile = מתבצע פענוח... @@ -20,13 +20,13 @@ unlockButtonLabel = שחרור נעילה downloadButtonLabel = הורדה downloadFinish = ההורדה הושלמה fileSizeProgress = ({ $partialSize } מתוך { $totalSize }) -sendYourFilesLink = נסו את Firefox Send +sendYourFilesLink = נסו את Send errorPageHeader = משהו השתבש! fileTooBig = הקובץ הזה גדול מידי להעלאה. עליו להיות קטן מ־{ $size }. linkExpiredAlt = הקישור פג notSupportedHeader = הדפדפן שלך לא נתמך. notSupportedLink = למה אין תמיכה בדפדפן שלי? -notSupportedOutdatedDetail = לצערנו גרסת Firefox זו לא תומכת בטכנולוגית הרשת שמפעילה את Firefox Send. יש לעדכן את הגרסה של הדפדפן שלך. +notSupportedOutdatedDetail = לצערנו גרסת Firefox זו לא תומכת בטכנולוגית הרשת שמפעילה את Send. יש לעדכן את הגרסה של הדפדפן שלך. updateFirefox = עדכון Firefox deletePopupCancel = ביטול deleteButtonHover = מחיקה @@ -34,8 +34,8 @@ footerLinkLegal = מידע משפטי footerLinkPrivacy = פרטיות footerLinkCookies = קובצי עוגיות passwordTryAgain = סיסמה שגויה. נא לנסות שוב. -javascriptRequired = ל־Firefox Send דרוש JavaScript -whyJavascript = למה ל־Firefox Send דרוש JavaScript? +javascriptRequired = ל־Send דרוש JavaScript +whyJavascript = למה ל־Send דרוש JavaScript? enableJavascript = נא להפעיל JavaScript ולנסות שוב. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } שע׳ { $minutes } דק׳ @@ -48,8 +48,8 @@ passwordSetError = לא ניתן להגדיר את הססמה הזאת ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/hr/send.ftl b/public/locales/hr/send.ftl index c8f9ae48..97211a65 100644 --- a/public/locales/hr/send.ftl +++ b/public/locales/hr/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Uvoz… encryptingFile = Šifriranje … decryptingFile = Dešifriranje … @@ -21,13 +21,13 @@ unlockButtonLabel = Otključaj downloadButtonLabel = Preuzmi downloadFinish = Preuzimanje je završeno. fileSizeProgress = ({ $partialSize } od { $totalSize }) -sendYourFilesLink = Isprobaj Firefox Send +sendYourFilesLink = Isprobaj Send errorPageHeader = Dogodila se neka greška! fileTooBig = Datoteka je prevelika za prijenos. Mora biti manja od { $size }. linkExpiredAlt = Poveznica je istekla notSupportedHeader = Tvoj preglednik nije podržan. notSupportedLink = Zašto moj preglednik nije podržan? -notSupportedOutdatedDetail = Nažalost, ovo izdanje Firefoxa ne podržava web tehnologiju koja omogućava Firefox Send. Morat ćeš ažurirati preglednik. +notSupportedOutdatedDetail = Nažalost, ovo izdanje Firefoxa ne podržava web tehnologiju koja omogućava Send. Morat ćeš ažurirati preglednik. updateFirefox = Ažuriraj Firefox deletePopupCancel = Odustani deleteButtonHover = Obriši @@ -35,8 +35,8 @@ footerLinkLegal = Pravni podaci footerLinkPrivacy = Privatnost footerLinkCookies = Kolačići passwordTryAgain = Netočna lozinka. Pokušaj ponovo. -javascriptRequired = Za Firefox Send potreban je JavaScript -whyJavascript = Zašto je za Firefox Send potreban JavaScript? +javascriptRequired = Za Send potreban je JavaScript +whyJavascript = Zašto je za Send potreban JavaScript? enableJavascript = Aktiviraj JavaScript i pokušaj ponovo. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }s { $minutes }m @@ -49,8 +49,8 @@ passwordSetError = Lozinku nije moguće postaviti ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/hsb/send.ftl b/public/locales/hsb/send.ftl index d38504a4..f63b60e3 100644 --- a/public/locales/hsb/send.ftl +++ b/public/locales/hsb/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importuje so... encryptingFile = Zaklučuje so... decryptingFile = Dešifruje so... @@ -23,13 +23,13 @@ unlockButtonLabel = Wotewrěć downloadButtonLabel = Sćahnyć downloadFinish = Sćehnjenje dokónčene fileSizeProgress = ({ $partialSize } z { $totalSize }) -sendYourFilesLink = Firefox Send wupruwować +sendYourFilesLink = Send wupruwować errorPageHeader = Něšto je so nimokuliło! fileTooBig = Tuta dataja je přewulka za nahraće. Měła mjeńša hač { $size } być. linkExpiredAlt = Wotkaz je spadnjeny notSupportedHeader = Waš wobhladowak so njepodpěruje. notSupportedLink = Čehodla so mój wobhladowak njepodpěruje? -notSupportedOutdatedDetail = Bohužel tuta wersija Firefox webtechnologiju njepodpěruje, na kotrejž Firefox Send bazuje. Dyrbiće swój wobhladowak aktualizować. +notSupportedOutdatedDetail = Bohužel tuta wersija Firefox webtechnologiju njepodpěruje, na kotrejž Send bazuje. Dyrbiće swój wobhladowak aktualizować. updateFirefox = Firefox aktualizować deletePopupCancel = Přetorhnyć deleteButtonHover = Zhašeć @@ -37,8 +37,8 @@ footerLinkLegal = Prawniske footerLinkPrivacy = Priwatnosć footerLinkCookies = Placki passwordTryAgain = Wopačne hesło. Prošu spytajće hišće raz. -javascriptRequired = Firefox Send JavaScript trjeba -whyJavascript = Čehodla Firefox Send JavaScript trjeba? +javascriptRequired = Send JavaScript trjeba +whyJavascript = Čehodla Send JavaScript trjeba? enableJavascript = Prošu zmóžńće JavaScript a spytajće hišće raz. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } hodź. { $minutes } mjeń. @@ -51,8 +51,8 @@ passwordSetError = Tute hesło njeda so nastajić ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/hu/send.ftl b/public/locales/hu/send.ftl index a18e54a7..02886890 100644 --- a/public/locales/hu/send.ftl +++ b/public/locales/hu/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importálás… encryptingFile = Titkosítás… decryptingFile = Visszafejtés… @@ -19,13 +19,13 @@ unlockButtonLabel = Feloldás downloadButtonLabel = Letöltés downloadFinish = A letöltés befejeződött fileSizeProgress = ({ $partialSize } / { $totalSize }) -sendYourFilesLink = Próbálja ki a Firefox Sendet +sendYourFilesLink = Próbálja ki a Sendet errorPageHeader = Hiba történt! fileTooBig = Ez a fájl túl nagy a feltöltéshez. Kevesebb mint { $size } kell legyen. linkExpiredAlt = A hivatkozás lejárt notSupportedHeader = A böngésző nem támogatott. notSupportedLink = Miért nem támogatott a böngészőm? -notSupportedOutdatedDetail = Sajnos a Firefox ezen verziója nem támogatja a Firefox Send alapját képező technológiát. Frissítenie kell a böngészőjét. +notSupportedOutdatedDetail = Sajnos a Firefox ezen verziója nem támogatja a Send alapját képező technológiát. Frissítenie kell a böngészőjét. updateFirefox = Firefox frissítése deletePopupCancel = Mégse deleteButtonHover = Törlés @@ -33,8 +33,8 @@ footerLinkLegal = Jogi információk footerLinkPrivacy = Adatvédelem footerLinkCookies = Sütik passwordTryAgain = Helytelen jelszó. Próbálja meg újra. -javascriptRequired = A Firefox Sendhez JavaScript szükséges -whyJavascript = Miért van szükség JavaScriptre a Firefox Sendhez? +javascriptRequired = A Sendhez JavaScript szükséges +whyJavascript = Miért van szükség JavaScriptre a Sendhez? enableJavascript = Kérjük engedélyezze a JavaScriptet, majd próbálkozzon újra. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }ó { $minutes }p @@ -47,8 +47,8 @@ passwordSetError = Ez a jelszó nem állítható be ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/hus/send.ftl b/public/locales/hus/send.ftl index 4a1db66e..619dc05d 100644 --- a/public/locales/hus/send.ftl +++ b/public/locales/hus/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Ka olna' max jant'oj yab u t'ojnal alwa' importingFile = k'wajat i chiyál... encryptingFile = K'wajat i tsinat dheyál... @@ -18,13 +18,13 @@ unlockButtonLabel = Ka japiy downloadButtonLabel = Ka pa'ba' downloadFinish = Tala' pa'iyits fileSizeProgress = { $partialSize } xi ti { $totalSize } -sendYourFilesLink = Ka eyendha' Firefox Send +sendYourFilesLink = Ka eyendha' Send errorPageHeader = ¡Yab kalej alwa'! fileTooBig = Tekedh pulik axi a le' ka kadh'ba', kwa'al kin alemna' { $size } linkExpiredAlt = Yabats u awil ki ela' notSupportedHeader = Yab u awil ka japiyat k'al axi NAVEGADOR notSupportedLink = ¿Jale' ti u NAVEGADOR yab in japiyal? -notSupportedOutdatedDetail = Yab u awil ka eyendha' Firefox Send kom an NAVEGADOR Firefox biyalits. Ka Pa'ba' axi it. +notSupportedOutdatedDetail = Yab u awil ka eyendha' Send kom an NAVEGADOR Firefox biyalits. Ka Pa'ba' axi it. updateFirefox = Ka itmedha' Firefox deletePopupCancel = Ka kuba' deleteButtonHover = Ka pakuw @@ -32,8 +32,8 @@ footerLinkLegal = Axi walkadh ka t'ajan footerLinkPrivacy = Tsinataláb footerLinkCookies = Cookies passwordTryAgain = Yab ja' an tsinat japixtaláb. Ka exa' junil. -javascriptRequired = Firefox Send in yejenchal JavaScript -whyJavascript = ¿Jale' Firefox Send in yejenchal JavaScript? +javascriptRequired = Send in yejenchal JavaScript +whyJavascript = ¿Jale' Send in yejenchal JavaScript? enableJavascript = Ka lek'wtsiy JavaScript ani ka exa' junil. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -46,8 +46,8 @@ passwordSetError = Axi tsinat japixtaláb yab u awil ka eyendha' ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/hy-AM/send.ftl b/public/locales/hy-AM/send.ftl index 47ac5311..2a91dbfe 100644 --- a/public/locales/hy-AM/send.ftl +++ b/public/locales/hy-AM/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Արձագանք importingFile = Ներմուծում... encryptingFile = Գաղտնագրում… @@ -20,13 +20,13 @@ unlockButtonLabel = Ապակողպել downloadButtonLabel = Ներբեռնել downloadFinish = Ներբեռնումն ավարտված է fileSizeProgress = ({ $partialSize }-ը { $totalSize })-ից -sendYourFilesLink = Փորձել Firefox Send-ը +sendYourFilesLink = Փորձել Send-ը errorPageHeader = Ինչ-որ բան այն չէ fileTooBig = Այդ ֆայլը չափազանց մեծ է վերբեռնելու համար: Այն պետք է լինի ավելի քիչ, քան { $size }-ը linkExpiredAlt = Հղումն ավարտված է notSupportedHeader = Ձեր զննարկիչը չի աջակցվում: notSupportedLink = Ինչու իմ զննարկիչը չի աջակցվում: -notSupportedOutdatedDetail = Դժբախտաբար, Firefox- ի այս տարբերակը չի աջակցում այն վեբ տեխնոլոգիան, որը պետք է Firefox Send-ի համար: Դուք պետք է թարմացնեք ձեր զննարկիչը: +notSupportedOutdatedDetail = Դժբախտաբար, Firefox- ի այս տարբերակը չի աջակցում այն վեբ տեխնոլոգիան, որը պետք է Send-ի համար: Դուք պետք է թարմացնեք ձեր զննարկիչը: updateFirefox = Թարմացնել Firefox-ը deletePopupCancel = Չեղարկել deleteButtonHover = Ջնջել @@ -34,8 +34,8 @@ footerLinkLegal = Իրավական footerLinkPrivacy = Գաղտնիություն footerLinkCookies = Cookie-ներ passwordTryAgain = Սխալ գաղտնաբառ. Կրկին փորձեք: -javascriptRequired = Firefox Send-ը պահանջում է JavaScript -whyJavascript = Ինչո՞ւ է Firefox Send-ը պահանջում JavaScript. +javascriptRequired = Send-ը պահանջում է JavaScript +whyJavascript = Ինչո՞ւ է Send-ը պահանջում JavaScript. enableJavascript = Խնդրում ենք միացնել JavaScript-ը և կրկին փորձել: # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }ժ { $minutes }ր @@ -48,8 +48,8 @@ passwordSetError = Այս գաղտնաբառը հնարավոր չէ սահմա ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Ուղարկել -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ia/send.ftl b/public/locales/ia/send.ftl index b1f09819..d8ef63d8 100644 --- a/public/locales/ia/send.ftl +++ b/public/locales/ia/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importation… encryptingFile = Cryptation... decryptingFile = Decryptation… @@ -19,13 +19,13 @@ unlockButtonLabel = Disblocar downloadButtonLabel = Discargar downloadFinish = Discargamento completate fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Proba Firefox Send +sendYourFilesLink = Proba Send errorPageHeader = Un error occurreva! fileTooBig = Iste file es troppo grande pro incargar. Illo debe esser inferior a { $size }. linkExpiredAlt = Ligamine expirate notSupportedHeader = Tu navigator non es supportate notSupportedLink = Proque non es mi navigator supportate? -notSupportedOutdatedDetail = Infelicemente iste version de Firefox non supporta le nove technologia web que actiona Firefox Send. Tu debe actualisar tu navigator. +notSupportedOutdatedDetail = Infelicemente iste version de Firefox non supporta le nove technologia web que actiona Send. Tu debe actualisar tu navigator. updateFirefox = Actualisar Firefox deletePopupCancel = Cancellar deleteButtonHover = Deler @@ -33,8 +33,8 @@ footerLinkLegal = Legal footerLinkPrivacy = Confidentialitate footerLinkCookies = Cookies passwordTryAgain = Contrasigno incorrecte. Retenta. -javascriptRequired = Firefox Send require JavaScript -whyJavascript = Proque Firefox Send require JavaScript? +javascriptRequired = Send require JavaScript +whyJavascript = Proque Send require JavaScript? enableJavascript = Por favor activa JavaScript e tenta novemente. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Iste contrasigno non ha potite esser establite ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/id/send.ftl b/public/locales/id/send.ftl index 731ec752..740bc35f 100644 --- a/public/locales/id/send.ftl +++ b/public/locales/id/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Mengimpor… encryptingFile = Mengenkripsi... decryptingFile = Mendekripsi... @@ -17,13 +17,13 @@ unlockButtonLabel = Buka downloadButtonLabel = Unduh downloadFinish = Unduhan Selesai fileSizeProgress = ({ $partialSize } dari { $totalSize }) -sendYourFilesLink = Coba Firefox Send +sendYourFilesLink = Coba Send errorPageHeader = Terjadi kesalahan! fileTooBig = Berkas terlalu besar untuk diunggah. Harus kurang dari { $size }. linkExpiredAlt = Tautan kedaluwarsa notSupportedHeader = Peramban Anda tidak mendukung. notSupportedLink = Mengapa peramban saya tidak didukung? -notSupportedOutdatedDetail = Sayangnya Firefox versi ini tidak mendukung teknologi web yang menggerakkan Firefox Send. Anda perlu memperbarui peramban Anda. +notSupportedOutdatedDetail = Sayangnya Firefox versi ini tidak mendukung teknologi web yang menggerakkan Send. Anda perlu memperbarui peramban Anda. updateFirefox = Perbarui Firefox deletePopupCancel = Batal deleteButtonHover = Hapus @@ -31,8 +31,8 @@ footerLinkLegal = Legal footerLinkPrivacy = Privasi footerLinkCookies = Kuki passwordTryAgain = Sandi salah. Silakan coba lagi. -javascriptRequired = Firefox Send membutuhkan JavaScript. -whyJavascript = Mengapa Firefox Send membutuhkan JavaScript? +javascriptRequired = Send membutuhkan JavaScript. +whyJavascript = Mengapa Send membutuhkan JavaScript? enableJavascript = Silakan aktifkan JavaScript dan coba lagi. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }j { $minutes }m @@ -45,8 +45,8 @@ passwordSetError = Tidak bisa menyetel sandi ini ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ig/send.ftl b/public/locales/ig/send.ftl index 9b82aaf6..01ff1563 100644 --- a/public/locales/ig/send.ftl +++ b/public/locales/ig/send.ftl @@ -1,4 +1,4 @@ -# Firefox Send is a brand name and should not be localized. +# Send is a brand name and should not be localized. title = Firefox Zipu importingFile = Mbubata… encryptingFile = ezoro ezo... @@ -34,7 +34,7 @@ footerLinkPrivacy = nzuzo footerLinkCookies = Kuki ga passwordTryAgain = okwuntughe ezighi ezi.Nwaa ọzọ javascriptRequired = Firefox Zipu chọrọ -whyJavascript = Kedu ihe kpatara Firefox Send jiri chọ JavaScript? +whyJavascript = Kedu ihe kpatara Send jiri chọ JavaScript? enableJavascript = Biko họrọ JavaScript ma nwaa ọzọ # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Enweghị ike ịtọ paswọọdụ a ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Zipu, Ziga -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/it/send.ftl b/public/locales/it/send.ftl index bfb71b98..ac227c2d 100644 --- a/public/locales/it/send.ftl +++ b/public/locales/it/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importazione in corso… encryptingFile = Crittazione in corso… decryptingFile = Decrittazione in corso… @@ -19,13 +19,13 @@ unlockButtonLabel = Sblocca downloadButtonLabel = Scarica downloadFinish = Download completato fileSizeProgress = ({ $partialSize } di { $totalSize }) -sendYourFilesLink = Prova Firefox Send +sendYourFilesLink = Prova Send errorPageHeader = Si è verificato un errore. fileTooBig = Le dimensioni di questo file sono eccessive. Dovrebbe essere inferiore a { $size }. linkExpiredAlt = Link scaduto notSupportedHeader = Il browser in uso non è supportato. notSupportedLink = Perché questo browser non risulta supportato? -notSupportedOutdatedDetail = Purtroppo questa versione di Firefox non supporta le tecnologie web alla base di Firefox Send. È necessario aggiornare il browser. +notSupportedOutdatedDetail = Purtroppo questa versione di Firefox non supporta le tecnologie web alla base di Send. È necessario aggiornare il browser. updateFirefox = Aggiorna Firefox deletePopupCancel = Annulla deleteButtonHover = Elimina @@ -33,8 +33,8 @@ footerLinkLegal = Note legali footerLinkPrivacy = Privacy footerLinkCookies = Cookie passwordTryAgain = Password errata, riprovare. -javascriptRequired = Firefox Send richiede JavaScript -whyJavascript = Perché Firefox Send richiede JavaScript? +javascriptRequired = Send richiede JavaScript +whyJavascript = Perché Send richiede JavaScript? enableJavascript = Attiva JavaScript e riprova. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Impossibile impostare la password ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ixl/send.ftl b/public/locales/ixl/send.ftl index 85813e20..0c8b006f 100644 --- a/public/locales/ixl/send.ftl +++ b/public/locales/ixl/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Aq'a yol sti' importingFile = Eq'otzan encryptingFile = La muj isik'lele @@ -20,7 +20,7 @@ unlockButtonLabel = Eesa ikach'ub'al downloadButtonLabel = Eq'o ku'tzan downloadFinish = Eq'o ku'tzan kaajayil fileSizeProgress = ({ $partialSize }tetz{ $totalSize }) -sendYourFilesLink = B'anb'e ve't u Firefox Send +sendYourFilesLink = B'anb'e ve't u Send errorPageHeader = At ma'l kam valexh kat eli! notSupportedHeader = U chukb'al aq'one' ye' ni toleb'e'. notSupportedLink = Kam q'ii uve' ye' kuxh ni toleb' u chukb'al vaq'one'? @@ -36,8 +36,8 @@ expiresMinutes = { $minutes }m ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Aq'b'en -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ja/send.ftl b/public/locales/ja/send.ftl index 9e1cf734..bb61fb30 100644 --- a/public/locales/ja/send.ftl +++ b/public/locales/ja/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = インポート中... encryptingFile = 暗号化中... decryptingFile = 復号化中... @@ -17,13 +17,13 @@ unlockButtonLabel = ロック解除 downloadButtonLabel = ダウンロード downloadFinish = ダウンロード完了 fileSizeProgress = ({ $partialSize } / { $totalSize }) -sendYourFilesLink = Firefox Send を試す +sendYourFilesLink = Send を試す errorPageHeader = 何か問題が発生しました。 fileTooBig = このファイルは大きすぎるためアップロードできません。上限は { $size } です。 linkExpiredAlt = リンク期限切れ notSupportedHeader = お使いのブラウザーには対応していません。 notSupportedLink = なぜ私のブラウザーには対応していないのでしょうか? -notSupportedOutdatedDetail = 残念ながらお使いのバージョンの Firefox は Firefox Send が活用しているウェブ技術に対応していません。ブラウザーを更新する必要があります。 +notSupportedOutdatedDetail = 残念ながらお使いのバージョンの Firefox は Send が活用しているウェブ技術に対応していません。ブラウザーを更新する必要があります。 updateFirefox = Firefox を更新 deletePopupCancel = キャンセル deleteButtonHover = 削除 @@ -31,8 +31,8 @@ footerLinkLegal = 法的情報 footerLinkPrivacy = プライバシー footerLinkCookies = Cookie passwordTryAgain = パスワードが正しくありません。再度入力してください。 -javascriptRequired = Firefox Send を使うには JavaScript が必要です -whyJavascript = Firefox Send が JavaScript を必要とする理由 +javascriptRequired = Send を使うには JavaScript が必要です +whyJavascript = Send が JavaScript を必要とする理由 enableJavascript = JavaScript を有効にして再度試してください。 # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } 時間 { $minutes } 分 @@ -45,8 +45,8 @@ passwordSetError = このパスワードは設定できませんでした ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ka/send.ftl b/public/locales/ka/send.ftl index d2f4f7db..c8f422ea 100644 --- a/public/locales/ka/send.ftl +++ b/public/locales/ka/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = გადმოტანა... encryptingFile = დაშიფვრა... decryptingFile = გაშიფვრა... @@ -19,13 +19,13 @@ unlockButtonLabel = გახსნა downloadButtonLabel = ჩამოტვირთვა downloadFinish = ჩამოტვირთვა დასრულდა fileSizeProgress = ({ $partialSize } { $totalSize }-იდან) -sendYourFilesLink = გამოცადეთ Firefox Send +sendYourFilesLink = გამოცადეთ Send errorPageHeader = რაღაც ხარვეზია! fileTooBig = ფაილი ზედმეტად დიდია. უნდა იყოს { $size } ზომაზე ნაკლები. linkExpiredAlt = ბმული ვადაგასულია notSupportedHeader = თქვენი ბრაუზერი არაა მხარდაჭერილი. notSupportedLink = რატომ არაა ჩემი ბრაუზერი მხარდაჭერილი? -notSupportedOutdatedDetail = სამწუხაროდ, Firefox-ის ამ ვერსიას არ გააჩნია ის ტექნოლოგია, რომელიც აუცილებელია Firefox Send-ის მუშაობისთვის. გესაჭიროებათ, ბრაუზერის განახლება. +notSupportedOutdatedDetail = სამწუხაროდ, Firefox-ის ამ ვერსიას არ გააჩნია ის ტექნოლოგია, რომელიც აუცილებელია Send-ის მუშაობისთვის. გესაჭიროებათ, ბრაუზერის განახლება. updateFirefox = Firefox-ის განახლება deletePopupCancel = გაუქმება deleteButtonHover = წაშლა @@ -33,8 +33,8 @@ footerLinkLegal = სამართლებრივი საკითხე footerLinkPrivacy = პირადულობა footerLinkCookies = ფუნთუშები passwordTryAgain = პაროლი არასწორია. სცადეთ ხელახლა. -javascriptRequired = Firefox Send საჭიროებს JavaScript-ს -whyJavascript = რატომ საჭიროებს Firefox Send JavaScript-ს? +javascriptRequired = Send საჭიროებს JavaScript-ს +whyJavascript = რატომ საჭიროებს Send JavaScript-ს? enableJavascript = გთხოვთ ჩართოთ JavaScript და სცადოთ ხელახლა. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }სთ { $minutes }წთ @@ -47,8 +47,8 @@ passwordSetError = ამ პაროლის დაყენება ვე ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/kab/send.ftl b/public/locales/kab/send.ftl index 3799bbb0..dd9af986 100644 --- a/public/locales/kab/send.ftl +++ b/public/locales/kab/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Akter... encryptingFile = Awgelhen... decryptingFile = Azmek... @@ -19,13 +19,13 @@ unlockButtonLabel = Serreḥ downloadButtonLabel = Sider downloadFinish = Asider yemmed fileSizeProgress = ({ $partialSize } seg { $totalSize }) -sendYourFilesLink = Ɛreḍ Firefox Send +sendYourFilesLink = Ɛreḍ Send errorPageHeader = Yella wayen yeḍran! fileTooBig = Afaylu-agi meqqer aṭas. Yessefk ad yili daw n { $size }. linkExpiredAlt = Aseɣwen yemmut notSupportedHeader = Iminig-ik ur ittusefrak ara notSupportedLink = Ayγer iminig inu ur yettwasefrek ara? -notSupportedOutdatedDetail = Ad nesḥissef imilqem-agi n Firefox Firefox ur isefrak ara titiknulujiyin web yettwaseqdacen di Firefox Send. Yessefk ad tleqmeḍ iminig-ik. +notSupportedOutdatedDetail = Ad nesḥissef imilqem-agi n Firefox Firefox ur isefrak ara titiknulujiyin web yettwaseqdacen di Send. Yessefk ad tleqmeḍ iminig-ik. updateFirefox = Leqqem Firefox deletePopupCancel = Sefsex deleteButtonHover = Kkes @@ -33,7 +33,7 @@ footerLinkLegal = Usḍif footerLinkPrivacy = Tabaḍnit footerLinkCookies = Inagan n tuqqna passwordTryAgain = Yir awal uffir. Ɛreḍ tikelt nniḍen. -javascriptRequired = Firefox Send yesra JavaScript +javascriptRequired = Send yesra JavaScript whyJavascript = Ayɣer firefox Send yesra JavaScript? enableJavascript = Ma ulac aɣilif rmed JavaScript sakin ɛreḍ tikkelt nniḍen. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" @@ -47,8 +47,8 @@ passwordSetError = Awal-agi uffir ur izmir ara ad ittwabaded ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ko/send.ftl b/public/locales/ko/send.ftl index 6d12893d..20e9973f 100644 --- a/public/locales/ko/send.ftl +++ b/public/locales/ko/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = 가져오는 중… encryptingFile = 암호화 중… decryptingFile = 복호화 중… @@ -11,13 +11,13 @@ unlockButtonLabel = 잠금 해제 downloadButtonLabel = 다운로드 downloadFinish = 다운로드 완료 fileSizeProgress = ({ $partialSize } / { $totalSize }) -sendYourFilesLink = Firefox Send 써보기 +sendYourFilesLink = Send 써보기 errorPageHeader = 오류가 발생했습니다! fileTooBig = 파일의 크기가 너무 큽니다. { $size } 보다 작아야 합니다. linkExpiredAlt = 링크가 만료됨 notSupportedHeader = 이 브라우저는 지원되지 않습니다. notSupportedLink = 왜 이 브라우저는 지원이 되지 않나요? -notSupportedOutdatedDetail = 안타깝게도 사용중인 Firefox 버전에서는 Firefox Send에 사용되는 웹 기술을 지원하지 않습니다. 브라우저 업데이트가 필요합니다. +notSupportedOutdatedDetail = 안타깝게도 사용중인 Firefox 버전에서는 Send에 사용되는 웹 기술을 지원하지 않습니다. 브라우저 업데이트가 필요합니다. updateFirefox = Firefox 업데이트 deletePopupCancel = 아니오 deleteButtonHover = 삭제 @@ -25,8 +25,8 @@ footerLinkLegal = 법적 정보 footerLinkPrivacy = 개인정보 보호 footerLinkCookies = 쿠키 passwordTryAgain = 비밀번호가 맞지 않습니다. 다시 시도해 주세요. -javascriptRequired = Firefox Send는 JavaScript를 필요로 합니다 -whyJavascript = 왜 Firefox Send에 JavaScript가 필요하죠? +javascriptRequired = Send는 JavaScript를 필요로 합니다 +whyJavascript = 왜 Send에 JavaScript가 필요하죠? enableJavascript = JavaScript를 활성화하고 다시 시도해 주세요. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }시간 { $minutes }분 @@ -39,8 +39,8 @@ passwordSetError = 이 비밀번호를 설정할 수 없었습니다 ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/lt/send.ftl b/public/locales/lt/send.ftl index fbb08217..f30f107a 100644 --- a/public/locales/lt/send.ftl +++ b/public/locales/lt/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importuojama… encryptingFile = Šifruojama… decryptingFile = Iššifruojama… @@ -21,13 +21,13 @@ unlockButtonLabel = Atrakinti downloadButtonLabel = Parsisiųsti downloadFinish = Parsiuntimas baigtas fileSizeProgress = ({ $partialSize } iš { $totalSize }) -sendYourFilesLink = Išbandyti „Firefox Send“ +sendYourFilesLink = Išbandyti „Send“ errorPageHeader = Nutiko kažkas negero! fileTooBig = Pasirinktas failas yra per didelis, kad jį būtų galima įkelti. Failo dydis neturėtų viršyti { $size } linkExpiredAlt = Saitas nebegalioja notSupportedHeader = Jūsų naršyklė nepalaikoma. notSupportedLink = Kodėl mano naršyklė nepalaikoma? -notSupportedOutdatedDetail = Deja, šioje „Firefox“ naršyklės laidoje nepalaikoma „Firefox Send“ veikti reikalinga technologija. Jeigu norite naudotis šia paslauga, turėsite atnaujinti savo naršyklę. +notSupportedOutdatedDetail = Deja, šioje „Firefox“ naršyklės laidoje nepalaikoma „Send“ veikti reikalinga technologija. Jeigu norite naudotis šia paslauga, turėsite atnaujinti savo naršyklę. updateFirefox = Atnaujinti „Firefox“ deletePopupCancel = Atsisakyti deleteButtonHover = Šalinti @@ -35,8 +35,8 @@ footerLinkLegal = Teisinė informacija footerLinkPrivacy = Privatumas footerLinkCookies = Slapukai passwordTryAgain = Slaptažodis netinka. Bandykite dar kartą. -javascriptRequired = „Firefox Send“ veikimui būtina įgalinti „JavaScript“ palaikymą -whyJavascript = Kodėl „Firefox Send“ neveikia išjungus „JavaScript“? +javascriptRequired = „Send“ veikimui būtina įgalinti „JavaScript“ palaikymą +whyJavascript = Kodėl „Send“ neveikia išjungus „JavaScript“? enableJavascript = Įgalinkit „JavaScript“ ir bandykite dar kartą. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } val. { $minutes } min. @@ -49,8 +49,8 @@ passwordSetError = Slaptažodžio nustatyti nepavyko ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = diff --git a/public/locales/meh/send.ftl b/public/locales/meh/send.ftl index a07c6e83..cf1aea1c 100644 --- a/public/locales/meh/send.ftl +++ b/public/locales/meh/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Tu'un jianininu importingFile = Nasia´a… encryptingFile = Encriptando... @@ -19,13 +19,13 @@ unlockButtonLabel = Nkasɨ downloadButtonLabel = Xinuu downloadFinish = Nnɨ´ɨ xinuu fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Ni´i Firefox Send +sendYourFilesLink = Ni´i Send errorPageHeader = ¡Iyo iin ntu nkene va´a! fileTooBig = Archivo ya´a ka´nu. Nejia chunku´va { $size } linkExpiredAlt = Nnɨ´ɨ enlace notSupportedHeader = Ntu íyo tiñu nuu ka̱a̱ nánuku ya´a. notSupportedLink = ¿Navi ntu satiñu nuu ka̱a̱ nánuku ya´a? -notSupportedOutdatedDetail = Tuni Firefox ya´a ntu satiñu vii jii Firefox Send. Nejika xinunu a jíía ka̱a̱ nánuku. +notSupportedOutdatedDetail = Tuni Firefox ya´a ntu satiñu vii jii Send. Nejika xinunu a jíía ka̱a̱ nánuku. updateFirefox = Naxi´ñá Firefox deletePopupCancel = Nkuvi-ka deleteButtonHover = Xita @@ -33,8 +33,8 @@ footerLinkLegal = Tu´un nichi footerLinkPrivacy = Tu´un xitu a kumiji noo´o footerLinkCookies = Cookies passwordTryAgain = Contraseña ntu vatu. Nachu´un tuku. -javascriptRequired = Firefox Send ni´i JavaScript -whyJavascript = ¿Navi Firefox Send ni´i JavaScript? +javascriptRequired = Send ni´i JavaScript +whyJavascript = ¿Navi Send ni´i JavaScript? enableJavascript = Kua´a jia´a JavaScript jee nachu´un tuku. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Ntu nkuvi sá´á contraseña ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/mix/send.ftl b/public/locales/mix/send.ftl index da5603e9..24a18c09 100644 --- a/public/locales/mix/send.ftl +++ b/public/locales/mix/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Ndakiin… encryptingFile = Ndasami tu'un… decryptingFile = Nchiko tu'un… @@ -19,13 +19,13 @@ unlockButtonLabel = Kuna downloadButtonLabel = Snuù downloadFinish = Ntsinu snui fileSizeProgress = ({ $partialSize } ña { $totalSize }) -sendYourFilesLink = Kuachu'un Firefox Send +sendYourFilesLink = Kuachu'un Send errorPageHeader = ¡Yee ña va'a! fileTooBig = Kanu tutu yo. Tsini ñu'u koi tana { $size }. linkExpiredAlt = Ntoo enlace notSupportedHeader = Kue ku kuni página. notSupportedLink = ¿Chanu kue ku kuncheuña? -notSupportedOutdatedDetail = Firefox kue ku kuni página web takua kuachu'un Firefox Send. tsiniñu'u ndu tsa'a navegador. +notSupportedOutdatedDetail = Firefox kue ku kuni página web takua kuachu'un Send. tsiniñu'u ndu tsa'a navegador. updateFirefox = Ndu tsa'a Firefox deletePopupCancel = Kunchatu deleteButtonHover = Stoò @@ -33,8 +33,8 @@ footerLinkLegal = Aviso legal footerLinkPrivacy = Ña meu footerLinkCookies = Cookies passwordTryAgain = Kue vaa ni chau sivi siki. Chai tuku. -javascriptRequired = Firefox Send tsiniñui JavaScript -whyJavascript = ¿Chanu Firefox Send tsiniñui JavaScript? +javascriptRequired = Send tsiniñui JavaScript +whyJavascript = ¿Chanu Send tsiniñui JavaScript? enableJavascript = Saá ña mani katsi JavaScript chá kitsa tuku. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Ma ku ntanii tu'un see ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ml/send.ftl b/public/locales/ml/send.ftl index a97f9cea..b689abfa 100644 --- a/public/locales/ml/send.ftl +++ b/public/locales/ml/send.ftl @@ -1,4 +1,4 @@ -# Firefox Send is a brand name and should not be localized. +# Send is a brand name and should not be localized. title = ഫയർഫോക്സ് സെൻഡ് siteFeedback = പ്രതികരണം importingFile = ഇറക്കുമതി ചെയ്യുന്നു... @@ -48,7 +48,7 @@ passwordSetError = ഈ രഹസ്യവാക്ക് ക്രമീകര ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized +# Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = ഫയർഫോക്സ് സെൻഡ് -send-short-brand = സെൻഡ് -firefox = ഫയർഫോക്സ് diff --git a/public/locales/ms/send.ftl b/public/locales/ms/send.ftl index ba1d445a..1f2a8495 100644 --- a/public/locales/ms/send.ftl +++ b/public/locales/ms/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteSubtitle = experimen web siteFeedback = Maklum balas uploadPageHeader = Peribadi, Perkongsian Fail Dienkrip @@ -53,16 +53,16 @@ unlockInputLabel = Masukkan Kata Laluan unlockInputPlaceholder = Kata laluan unlockButtonLabel = Buka downloadFileTitle = Muat turun Fail Enkripsi -# Firefox Send is a brand name and should not be localized. -downloadMessage = Rakan anda menghantar satu fail kepada anda menggunakan Firefox Send, satu perkhidmatan yang membolehkan anda berkongsi fail dengan pautan yang selamat, peribadi dan dienkrip, yang secara automatik akan luput bagi memastikan fail anda tidak terus berada dalam talian selama-lamanya. +# Send is a brand name and should not be localized. +downloadMessage = Rakan anda menghantar satu fail kepada anda menggunakan Send, satu perkhidmatan yang membolehkan anda berkongsi fail dengan pautan yang selamat, peribadi dan dienkrip, yang secara automatik akan luput bagi memastikan fail anda tidak terus berada dalam talian selama-lamanya. # Text and title used on the download link/button (indicates an action). downloadButtonLabel = Muat turun downloadNotification = Muat turun anda sudah siap. downloadFinish = Muat turun Selesai # This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)". fileSizeProgress = ({ $partialSize } daripada { $totalSize }) -# Firefox Send is a brand name and should not be localized. -sendYourFilesLink = Cuba Firefox Send +# Send is a brand name and should not be localized. +sendYourFilesLink = Cuba Send downloadingPageProgress = Memuat turun { $filename } ({ $size }) downloadingPageMessage = Sila biarkan tab ini terbuka semasa kami mengambil fail anda dan menghuraikannya. errorAltText = Ralat memuat naik @@ -73,10 +73,10 @@ fileTooBig = Fail terlalu besar untuk dimuat naik. Perlu kurang daripada { $size linkExpiredAlt = Pautan sudah luput expiredPageHeader = Pautan ini sudah luput atau pun tidak pernah wujud! notSupportedHeader = Pelayar anda tidak disokong. -# Firefox Send is a brand name and should not be localized. -notSupportedDetail = Malangnya, pelayar ini tidak menyokong teknologi web yang melaksanakan Firefox Send. Anda perlu cuba pelayar lain. Kami syorkan Firefox! +# Send is a brand name and should not be localized. +notSupportedDetail = Malangnya, pelayar ini tidak menyokong teknologi web yang melaksanakan Send. Anda perlu cuba pelayar lain. Kami syorkan Firefox! notSupportedLink = Kenapa pelayar saya tidak disokong? -notSupportedOutdatedDetail = Malangnya versi Firefox ini tidak menyokong teknologi web yang menguasakan Firefox Send. Anda perlu mengemaskini pelayar anda. +notSupportedOutdatedDetail = Malangnya versi Firefox ini tidak menyokong teknologi web yang menguasakan Send. Anda perlu mengemaskini pelayar anda. updateFirefox = Kemaskini Firefox downloadFirefoxButtonSub = Muat turun Percuma uploadedFile = Fail @@ -86,8 +86,8 @@ expiryFileList = Luput Pada deleteFileList = Buang nevermindButton = Tak apalah legalHeader = Terma & Privasi -legalNoticeTestPilot = Firefox Send adalah eksperimen Ujian Perintis, dan tertakluk kepada Terma Perkhidmatan dan Notis Privasi Ujian Perintis. Anda boleh ketahui selanjutnya perihal eksperimen ini dan pengumpulan data di sini. -legalNoticeMozilla = Penggunaan laman web Firefox Send juga tertakluk kepada Notis Privasi Laman web dan Terma Penggunaan Laman web Mozilla. +legalNoticeTestPilot = Send adalah eksperimen Ujian Perintis, dan tertakluk kepada Terma Perkhidmatan dan Notis Privasi Ujian Perintis. Anda boleh ketahui selanjutnya perihal eksperimen ini dan pengumpulan data di sini. +legalNoticeMozilla = Penggunaan laman web Send juga tertakluk kepada Notis Privasi Laman web dan Terma Penggunaan Laman web Mozilla. deletePopupText = Buang fail ini? deletePopupYes = Ya deletePopupCancel = Batal @@ -104,8 +104,8 @@ addPasswordButton = Tambah Kata laluan changePasswordButton = Tukar passwordTryAgain = Kata laluan tidak betul. Cuba lagi. reportIPInfringement = Lapor Pencerobohan IP -javascriptRequired = Firefox Send perlukan JavaScript -whyJavascript = Kenapa Firefox Send perlukan JavaScript? +javascriptRequired = Send perlukan JavaScript +whyJavascript = Kenapa Send perlukan JavaScript? enableJavascript = Sila dayakan JavaScript dan cuba lagi. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m diff --git a/public/locales/nb-NO/send.ftl b/public/locales/nb-NO/send.ftl index 5b662d5d..6ad7da92 100644 --- a/public/locales/nb-NO/send.ftl +++ b/public/locales/nb-NO/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importerer… encryptingFile = Krypterer... decryptingFile = Dekrypterer... @@ -19,13 +19,13 @@ unlockButtonLabel = Lås opp downloadButtonLabel = Last ned downloadFinish = Nedlastingen er fullført. fileSizeProgress = ({ $partialSize } av { $totalSize }) -sendYourFilesLink = Prøv Firefox Send +sendYourFilesLink = Prøv Send errorPageHeader = Det oppstod en feil. fileTooBig = Filen er for stor til å laste opp. Det må være mindre enn { $size }. linkExpiredAlt = Lenke utløpt notSupportedHeader = Din nettleser er ikke støttet. notSupportedLink = Hvorfor er ikke nettleseren min støttet? -notSupportedOutdatedDetail = Dessverre støtter ikke denne versjonen av Firefox netteknologien som driver Firefox Send. Du trenger å oppdatere nettleseren din. +notSupportedOutdatedDetail = Dessverre støtter ikke denne versjonen av Firefox netteknologien som driver Send. Du trenger å oppdatere nettleseren din. updateFirefox = Oppdater Firefox deletePopupCancel = Avbryt deleteButtonHover = Slett @@ -33,8 +33,8 @@ footerLinkLegal = Juridisk informasjon footerLinkPrivacy = Personvern footerLinkCookies = Infokapsler passwordTryAgain = Feil passord. Prøv igjen. -javascriptRequired = Firefox Send krever JavaScript. -whyJavascript = Hvorfor krever Firefox Send JavaScript? +javascriptRequired = Send krever JavaScript. +whyJavascript = Hvorfor krever Send JavaScript? enableJavascript = Slå på JavaScript og prøv igjen. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }t { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Dette passordet kunne ikke settes ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/nl/send.ftl b/public/locales/nl/send.ftl index ef336c79..fe84afe9 100644 --- a/public/locales/nl/send.ftl +++ b/public/locales/nl/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importeren… encryptingFile = Versleutelen… decryptingFile = Ontsleutelen… @@ -19,13 +19,13 @@ unlockButtonLabel = Ontgrendelen downloadButtonLabel = Downloaden downloadFinish = Downloaden voltooid fileSizeProgress = ({ $partialSize } van { $totalSize }) -sendYourFilesLink = Firefox Send proberen +sendYourFilesLink = Send proberen errorPageHeader = Er is iets misgegaan! fileTooBig = Dat bestand is te groot om te worden geüpload. Het moet kleiner zijn dan { $size }. linkExpiredAlt = Koppeling verlopen notSupportedHeader = Uw browser wordt niet ondersteund. notSupportedLink = Waarom wordt mijn browser niet ondersteund? -notSupportedOutdatedDetail = Helaas ondersteunt deze versie van Firefox de webtechnologie die Firefox Send gebruikt niet. U dient uw browser bij te werken. +notSupportedOutdatedDetail = Helaas ondersteunt deze versie van Firefox de webtechnologie die Send gebruikt niet. U dient uw browser bij te werken. updateFirefox = Firefox bijwerken deletePopupCancel = Annuleren deleteButtonHover = Verwijderen @@ -33,8 +33,8 @@ footerLinkLegal = Juridisch footerLinkPrivacy = Privacy footerLinkCookies = Cookies passwordTryAgain = Onjuist wachtwoord. Probeer het opnieuw. -javascriptRequired = Firefox Send vereist JavaScript -whyJavascript = Waarom vereist Firefox Send JavaScript? +javascriptRequired = Send vereist JavaScript +whyJavascript = Waarom vereist Send JavaScript? enableJavascript = Schakel JavaScript in en probeer het opnieuw. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }u { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Dit wachtwoord kon niet worden ingesteld ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/nn-NO/send.ftl b/public/locales/nn-NO/send.ftl index 07407bea..97ae9f32 100644 --- a/public/locales/nn-NO/send.ftl +++ b/public/locales/nn-NO/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importerer… encryptingFile = Krypterer… decryptingFile = Dekrypterer... @@ -19,13 +19,13 @@ unlockButtonLabel = Lås opp downloadButtonLabel = Last ned downloadFinish = Nedlastinga er fullført. fileSizeProgress = ({ $partialSize } av { $totalSize }) -sendYourFilesLink = Prøv Firefox Send +sendYourFilesLink = Prøv Send errorPageHeader = Noko gjekk gale! fileTooBig = Fila er for stor, og kan ikkje lastast opp. Ho må vere mindre enn { $size }. linkExpiredAlt = Lenka har gått ut notSupportedHeader = Nettlesaren din er ikkje støtta. notSupportedLink = Kvifor er ikkje nettlesaren min støtta? -notSupportedOutdatedDetail = Dessverre støttar ikkje denne versjonen av Firefox nett-teknologien som driv Firefox Send. Du må å oppdatere nettlesaren din. +notSupportedOutdatedDetail = Dessverre støttar ikkje denne versjonen av Firefox nett-teknologien som driv Send. Du må å oppdatere nettlesaren din. updateFirefox = Oppdater Firefox deletePopupCancel = Avbryt deleteButtonHover = Slett @@ -33,8 +33,8 @@ footerLinkLegal = Juridisk informasjon footerLinkPrivacy = Personvern footerLinkCookies = Infokapslar passwordTryAgain = Feil passord. Prøv på nytt. -javascriptRequired = Firefox Send krev JavaScript. -whyJavascript = Kvifor krev Firefox Send JavaScript? +javascriptRequired = Send krev JavaScript. +whyJavascript = Kvifor krev Send JavaScript? enableJavascript = Slå på JavaScript og prøv igjen. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }t { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Dette passordet kunne ikkje stillast inn ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/oc/send.ftl b/public/locales/oc/send.ftl index 4206a2e4..a6e4f94e 100644 --- a/public/locales/oc/send.ftl +++ b/public/locales/oc/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importacion… encryptingFile = Chiframent… decryptingFile = Deschiframent… @@ -19,13 +19,13 @@ unlockButtonLabel = Desverrolhar downloadButtonLabel = Telecargar downloadFinish = Telecargament acabat fileSizeProgress = ({ $partialSize } sus { $totalSize }) -sendYourFilesLink = Ensajar Firefox Send +sendYourFilesLink = Ensajar Send errorPageHeader = I a quicòm que truca. fileTooBig = Aqueste fichièr es tròp gròs per l’enviar. Sa talha deu èsser inferiora a { $size }. linkExpiredAlt = Lo ligam a expirat notSupportedHeader = Vòstre navegador es pas compatible. notSupportedLink = Perqué mon navegador es pas compatible ? -notSupportedOutdatedDetail = Aquesta version de Firefox es pas compatibla amb la tecnologia web amb la quala fonciona Firefox Send. Vos cal metre a jorn lo navegador. +notSupportedOutdatedDetail = Aquesta version de Firefox es pas compatibla amb la tecnologia web amb la quala fonciona Send. Vos cal metre a jorn lo navegador. updateFirefox = Metre a jorn Firefox deletePopupCancel = Anullar deleteButtonHover = Suprimir @@ -33,8 +33,8 @@ footerLinkLegal = Mencions legalas footerLinkPrivacy = Vida privada footerLinkCookies = Cookies passwordTryAgain = Senhal incorrècte. Tornatz ensajar. -javascriptRequired = Firefox Send requesís JavaScript -whyJavascript = Perque Firefox Send requesís JavaScript ? +javascriptRequired = Send requesís JavaScript +whyJavascript = Perque Send requesís JavaScript ? enableJavascript = Volgatz activar lo JavaScript e ensajatz tornamai. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } h { $minutes } min @@ -47,8 +47,8 @@ passwordSetError = Aqueste senhal a pas pogut èsser definit ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/pa-IN/send.ftl b/public/locales/pa-IN/send.ftl index 53460b45..e7aac969 100644 --- a/public/locales/pa-IN/send.ftl +++ b/public/locales/pa-IN/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = ...ਦਰਾਮਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ encryptingFile = ...ਇੰਕ੍ਰਿਪਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ decryptingFile = ...ਡਿਕ੍ਰਿਪਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ @@ -19,13 +19,13 @@ unlockButtonLabel = ਅਣ-ਲਾਕ ਕਰੋ downloadButtonLabel = ਡਾਊਨਲੋਡ ਕਰੋ downloadFinish = ਡਾਊਨਲੋਡ ਪੂਰਾ ਹੋਇਆ fileSizeProgress = ({ $totalSize } ਵਿੱਚੋਂ { $partialSize }) -sendYourFilesLink = Firefox Send ਵਰਤੋ +sendYourFilesLink = Send ਵਰਤੋ errorPageHeader = ਕੁਝ ਗਲਤ ਵਾਪਰਿਆ! fileTooBig = ਇਹ ਫਾਇਲ ਅੱਪਲੋਡ ਕਰਨ ਲਈ ਬਹੁਤ ਵੱਡੀ ਹੈ। ਇਸ { $size } ਤੋਂ ਘੱਟ ਚਾਹੀਦੀ ਹੈ linkExpiredAlt = ਲਿੰਕ ਦੀ ਮਿਆਦ ਪੁੱਗੀ notSupportedHeader = ਤੁਹਾਡਾ ਬਰਾਊਜ਼ਰ ਸਹਾਇਕ ਨਹੀਂ ਹੈ। notSupportedLink = ਮੇਰਾ ਬਰਾਊਜ਼ਰ ਸਹਾਇਕ ਕਿਉ ਨਹੀਂ ਹੈ? -notSupportedOutdatedDetail = ਅਫ਼ਸੋਸ ਹੈ ਕਿ ਫਾਇਰਫਾਕਸ ਦਾ ਇਹ ਵਰਜ਼ਨ ਵੈੱਬ ਤਕਨਾਲੋਜੀ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ, ਜੋ ਕਿ Firefox Send ਨੂੰ ਬਣਾਉਂਦੀਆਂ ਹਨ। ਤੁਹਾਨੂੰ ਆਪਣੇ ਬਰਾਊਜ਼ਰ ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ। +notSupportedOutdatedDetail = ਅਫ਼ਸੋਸ ਹੈ ਕਿ ਫਾਇਰਫਾਕਸ ਦਾ ਇਹ ਵਰਜ਼ਨ ਵੈੱਬ ਤਕਨਾਲੋਜੀ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ, ਜੋ ਕਿ Send ਨੂੰ ਬਣਾਉਂਦੀਆਂ ਹਨ। ਤੁਹਾਨੂੰ ਆਪਣੇ ਬਰਾਊਜ਼ਰ ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ। updateFirefox = ਫਾਇਰਫਾਕਸ ਅੱਪਡੇਟ ਕਰੋ deletePopupCancel = ਰੱਦ ਕਰੋ deleteButtonHover = ਹਟਾਓ @@ -33,8 +33,8 @@ footerLinkLegal = ਕਨੂੰਨ footerLinkPrivacy = ਪਰਦੇਦਾਰੀ footerLinkCookies = ਕੂਕੀਜ਼ passwordTryAgain = ਗਲਤ ਪਾਸਵਰਡ ਹੈ। ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ। -javascriptRequired = Firefox Send ਲਈ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਚਾਹੀਦੀ ਹੈ -whyJavascript = Firefox Send ਨੂੰ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਦੀ ਲੋੜ ਕਿਓ ਹੈ? +javascriptRequired = Send ਲਈ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਚਾਹੀਦੀ ਹੈ +whyJavascript = Send ਨੂੰ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਦੀ ਲੋੜ ਕਿਓ ਹੈ? enableJavascript = ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਸਮਰੱਥ ਕਰੋ ਤੇ ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ। # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }ਘੰ { $minutes }ਮਿੰ @@ -47,8 +47,8 @@ passwordSetError = ਇਹ ਪਾਸਵਰਡ ਸੈੱਟ ਨਹੀਂ ਕੀਤ ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = ਭੇਜੋ -firefox = ਫਾਇਰਫਾਕਸ -mozilla = ਮੋਜ਼ੀਲਾ diff --git a/public/locales/pl/send.ftl b/public/locales/pl/send.ftl index fd63f534..690e7544 100644 --- a/public/locales/pl/send.ftl +++ b/public/locales/pl/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importowanie… encryptingFile = Szyfrowanie… decryptingFile = Odszyfrowywanie… @@ -21,13 +21,13 @@ unlockButtonLabel = Odblokuj downloadButtonLabel = Pobierz downloadFinish = Ukończono pobieranie fileSizeProgress = ({ $partialSize } z { $totalSize }) -sendYourFilesLink = Wypróbuj Firefox Send +sendYourFilesLink = Wypróbuj Send errorPageHeader = Coś się nie udało. fileTooBig = Ten plik jest za duży, aby go wysłać. Musi być mniejszy niż { $size } linkExpiredAlt = Odnośnik wygasł notSupportedHeader = Używana przeglądarka nie jest obsługiwana. notSupportedLink = Dlaczego ta przeglądarka nie jest obsługiwana? -notSupportedOutdatedDetail = Ta wersja Firefoksa nie obsługuje technologii internetowej, która napędza Firefox Send. Należy uaktualnić przeglądarkę. +notSupportedOutdatedDetail = Ta wersja Firefoksa nie obsługuje technologii internetowej, która napędza Send. Należy uaktualnić przeglądarkę. updateFirefox = Uaktualnij Firefoksa deletePopupCancel = Anuluj deleteButtonHover = Usuń @@ -35,8 +35,8 @@ footerLinkLegal = Kwestie prawne footerLinkPrivacy = Prywatność footerLinkCookies = Ciasteczka passwordTryAgain = Niepoprawne hasło. Spróbuj ponownie. -javascriptRequired = Firefox Send wymaga języka JavaScript -whyJavascript = Dlaczego Firefox Send wymaga języka JavaScript? +javascriptRequired = Send wymaga języka JavaScript +whyJavascript = Dlaczego Send wymaga języka JavaScript? enableJavascript = Włącz obsługę języka JavaScript i spróbuj ponownie. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } godz. { $minutes } min @@ -49,8 +49,8 @@ passwordSetError = Nie można ustawić tego hasła ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ppl/send.ftl b/public/locales/ppl/send.ftl index 7115cba8..8e858d23 100644 --- a/public/locales/ppl/send.ftl +++ b/public/locales/ppl/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Shitechnawati importingFile = Mukalaktia nemi… encryptingFile = Tikichtakawiat tinemit… @@ -20,13 +20,13 @@ unlockButtonLabel = Shiktapua downloadButtonLabel = Shiktemulti downloadFinish = Senkiska mutemultij fileSizeProgress = ({ $partialSize } ipal { $totalSize }) -sendYourFilesLink = Shikejeku Firefox Send +sendYourFilesLink = Shikejeku Send errorPageHeader = IJtakawtuk! fileTooBig = Ini tajkwilul sujsul etek pal tiktejkultia. Ma nemi san { $size }. linkExpiredAlt = Ne ilpika pulijtuk notSupportedHeader = Te tikishmatit ne mutachialuni. notSupportedLink = Taika te ankishmatit nutachialuni? -notSupportedOutdatedDetail = Ini tamakalis ipal Firefox tesu kimati ne tzawaltekitilis ne kiyulitia Firefox Send. Nemi pal tikyankwilia ne mutachialuni. +notSupportedOutdatedDetail = Ini tamakalis ipal Firefox tesu kimati ne tzawaltekitilis ne kiyulitia Send. Nemi pal tikyankwilia ne mutachialuni. updateFirefox = Shikyankwili Firefox deletePopupCancel = Shikilwi tesu deleteButtonHover = Shikpulu @@ -34,8 +34,8 @@ footerLinkLegal = Ipanpa ne tajtuli footerLinkPrivacy = Teichtakayu footerLinkCookies = Cookies passwordTryAgain = Ne ichtakatajkwilul tesu yek. Shikejeku uksenpa. -javascriptRequired = Firefox Send muneki JavaScript -whyJavascript = Taika Firefox Send muneki JavaScript? +javascriptRequired = Send muneki JavaScript +whyJavascript = Taika Send muneki JavaScript? enableJavascript = Shichiwa ma JavaScript tekiti wan shikejeku uksenpa. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -48,8 +48,8 @@ passwordSetError = Te tiweliket tiktaliat ini ichtakataketzalis ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Shiktitani -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/pt-BR/send.ftl b/public/locales/pt-BR/send.ftl index 3b9d3225..1892650c 100644 --- a/public/locales/pt-BR/send.ftl +++ b/public/locales/pt-BR/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importando… encryptingFile = Criptografando… decryptingFile = Descriptografando… @@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear downloadButtonLabel = Baixar downloadFinish = Download concluído fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Experimente o Firefox Send +sendYourFilesLink = Experimente o Send errorPageHeader = Oops, ocorreu um erro! fileTooBig = Esse arquivo ou grupo de arquivos é grande demais para ser enviado. Deve ser menor que { $size }. linkExpiredAlt = Link expirado notSupportedHeader = Seu navegador não é suportado. notSupportedLink = Por que meu navegador não é suportado? -notSupportedOutdatedDetail = Infelizmente essa versão do Firefox não suporta a tecnologia web que faz o Firefox Send funcionar. Você precisa atualizar o seu navegador. +notSupportedOutdatedDetail = Infelizmente essa versão do Firefox não suporta a tecnologia web que faz o Send funcionar. Você precisa atualizar o seu navegador. updateFirefox = Atualizar o Firefox deletePopupCancel = Cancelar deleteButtonHover = Remover da lista @@ -33,8 +33,8 @@ footerLinkLegal = Jurídico footerLinkPrivacy = Privacidade footerLinkCookies = Cookies passwordTryAgain = Senha incorreta. Tente novamente. -javascriptRequired = O Firefox Send requer JavaScript -whyJavascript = Por que o Firefox Send precisa do JavaScript? +javascriptRequired = O Send requer JavaScript +whyJavascript = Por que o Send precisa do JavaScript? enableJavascript = Ative o JavaScript e tente novamente. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }min @@ -47,8 +47,8 @@ passwordSetError = Essa senha não pôde ser definida ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/pt-PT/send.ftl b/public/locales/pt-PT/send.ftl index d34814b6..dc4f0840 100644 --- a/public/locales/pt-PT/send.ftl +++ b/public/locales/pt-PT/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = A importar... encryptingFile = A encriptar... decryptingFile = A desencriptar... @@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear downloadButtonLabel = Transferir downloadFinish = Transferência concluída fileSizeProgress = ({ $partialSize } de { $totalSize }) -sendYourFilesLink = Experimentar o Firefox Send +sendYourFilesLink = Experimentar o Send errorPageHeader = Algo correu mal. fileTooBig = Esse ficheiro é muito grande para carregar. Deve ser menor do que { $size }. linkExpiredAlt = Ligação expirada notSupportedHeader = O seu navegador não é suportado. notSupportedLink = Porque é que o meu navegador não é suportado? -notSupportedOutdatedDetail = Infelizmente esta versão do Firefox não suporta a tecnologia web que faz o Firefox Send funcionar. Precisa de atualizar o seu navegador. +notSupportedOutdatedDetail = Infelizmente esta versão do Firefox não suporta a tecnologia web que faz o Send funcionar. Precisa de atualizar o seu navegador. updateFirefox = Atualizar o Firefox deletePopupCancel = Cancelar deleteButtonHover = Apagar @@ -33,8 +33,8 @@ footerLinkLegal = Informação legal footerLinkPrivacy = Privacidade footerLinkCookies = Cookies passwordTryAgain = Palavra-passe incorreta. Tente novamente. -javascriptRequired = O Firefox Send requer JavaScript -whyJavascript = Porque é que o Firefox Send requer JavaScript? +javascriptRequired = O Send requer JavaScript +whyJavascript = Porque é que o Send requer JavaScript? enableJavascript = Por favor ative o JavaScript e tente novamente. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Esta palavra-passe não pôde ser definida ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/quc/send.ftl b/public/locales/quc/send.ftl index 0248346c..badafac0 100644 --- a/public/locales/quc/send.ftl +++ b/public/locales/quc/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Utzijoxik importingFile = Ujek'ik… encryptingFile = Uwiqik… @@ -20,13 +20,13 @@ unlockButtonLabel = Utzoqopixik downloadButtonLabel = Uqasaxik downloadFinish = Tz'aqat uqasaxik fileSizeProgress = ({ $partialSize } rech { $totalSize }) -sendYourFilesLink = Chak'amb'ejaj Firefox Send +sendYourFilesLink = Chak'amb'ejaj Send errorPageHeader = K'o man utz ta xub'ano fileTooBig = Le kemk'olib'al sib'alaj nim chech upaqab'isaxik. Rajawaxik nitz' chi uwach{ $size } linkExpiredAlt = Xq'ax uq'ijol kemwiqb'al notSupportedHeader = Man toq'am ta le anik'onel notSupportedLink = ¿Jasche man toq'am ta le nunik'onel? -notSupportedOutdatedDetail = Chakuyu' we okib'al rech Firefox man kutoq'aj ta le k'ak'eta'm rech web' le kuya' uchuq'ab' Firefox Send. Rajawaxik kak'ak'arisaj le anik'onel. +notSupportedOutdatedDetail = Chakuyu' we okib'al rech Firefox man kutoq'aj ta le k'ak'eta'm rech web' le kuya' uchuq'ab' Send. Rajawaxik kak'ak'arisaj le anik'onel. updateFirefox = Chak'ak'arisaj Firefox deletePopupCancel = Uq'atexik deleteButtonHover = Uchupik @@ -34,8 +34,8 @@ footerLinkLegal = Nim wuj footerLinkPrivacy = Echeb'alil footerLinkCookies = Cookies passwordTryAgain = Man utz ta le retokib'al. Chab'ana' chi jumul. -javascriptRequired = Le Firefox Send kajawataj JavaScript chech -whyJavascript = ¿jasche kajawataj JavaScript chech Firefox Send? +javascriptRequired = Le Send kajawataj JavaScript chech +whyJavascript = ¿jasche kajawataj JavaScript chech Send? enableJavascript = Chatzija' JavaScript k'ate k'u ri' chab'ana' chi jumul. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -48,8 +48,8 @@ passwordSetError = Man kkowimb'ex ta ujeqeb'axik le retokib'al ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Utaqik -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ro/send.ftl b/public/locales/ro/send.ftl index be578c81..5cfa4b85 100644 --- a/public/locales/ro/send.ftl +++ b/public/locales/ro/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Se importă… encryptingFile = Se criptează… decryptingFile = Se decriptează… @@ -21,13 +21,13 @@ unlockButtonLabel = Deblochează downloadButtonLabel = Descarcă downloadFinish = Descărcare încheiată fileSizeProgress = ({ $partialSize } din { $totalSize }) -sendYourFilesLink = Încearcă Firefox Send +sendYourFilesLink = Încearcă Send errorPageHeader = Ceva nu a funcționat! fileTooBig = Acest fișier este prea mare. Ar trebuie să fie sub { $size }. linkExpiredAlt = Link expirat notSupportedHeader = Browserul tău nu este suportat. notSupportedLink = De ce browserul meu nu este suportat? -notSupportedOutdatedDetail = Din păcate, această versiune de Firefox nu suportă tehnologiile web din spatele Firefox Send. Va trebui să actualizezi browserul. +notSupportedOutdatedDetail = Din păcate, această versiune de Firefox nu suportă tehnologiile web din spatele Send. Va trebui să actualizezi browserul. updateFirefox = Actualizează Firefox deletePopupCancel = Renunță deleteButtonHover = Șterge @@ -35,8 +35,8 @@ footerLinkLegal = Mențiuni legale footerLinkPrivacy = Confidențialitate footerLinkCookies = Cookie-uri passwordTryAgain = Parolă incorectă. Încearcă din nou. -javascriptRequired = Firefox Send necesită JavaScript -whyJavascript = De ce Firefox Send necesită JavaScript? +javascriptRequired = Send necesită JavaScript +whyJavascript = De ce Send necesită JavaScript? enableJavascript = Te rugăm să reactivezi JavaScript și să încerci din nou. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -49,8 +49,8 @@ passwordSetError = Această parolă nu a putut fi setată ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/ru/send.ftl b/public/locales/ru/send.ftl index eede0761..b60ecf79 100644 --- a/public/locales/ru/send.ftl +++ b/public/locales/ru/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Импортирование... encryptingFile = Шифрование... decryptingFile = Расшифровка... @@ -21,13 +21,13 @@ unlockButtonLabel = Разблокировать downloadButtonLabel = Загрузить downloadFinish = Загрузка завершена fileSizeProgress = ({ $partialSize } из { $totalSize }) -sendYourFilesLink = Попробовать Firefox Send +sendYourFilesLink = Попробовать Send errorPageHeader = Что-то пошло не так! fileTooBig = Файл слишком большой. Он должен быть меньше { $size }. linkExpiredAlt = Истёк срок действия ссылки notSupportedHeader = Ваш браузер не поддерживается. notSupportedLink = Почему мой браузер не поддерживается? -notSupportedOutdatedDetail = К сожалению, эта версия Firefox не поддерживает веб-технологию, благодаря которой работает Firefox Send. Ваш нужно обновить свой браузер. +notSupportedOutdatedDetail = К сожалению, эта версия Firefox не поддерживает веб-технологию, благодаря которой работает Send. Ваш нужно обновить свой браузер. updateFirefox = Обновить Firefox deletePopupCancel = Отмена deleteButtonHover = Удалить @@ -35,8 +35,8 @@ footerLinkLegal = Права footerLinkPrivacy = Приватность footerLinkCookies = Куки passwordTryAgain = Неверный пароль. Попробуйте снова. -javascriptRequired = Для Firefox Send необходим JavaScript -whyJavascript = Почему Firefox Send требуется JavaScript? +javascriptRequired = Для Send необходим JavaScript +whyJavascript = Почему Send требуется JavaScript? enableJavascript = Пожалуйста, включите JavaScript и попробуйте снова. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } ч. { $minutes } мин. @@ -49,8 +49,8 @@ passwordSetError = Этот пароль не может быть установ ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/sk/send.ftl b/public/locales/sk/send.ftl index 399378b8..4f43bc77 100644 --- a/public/locales/sk/send.ftl +++ b/public/locales/sk/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importuje sa… encryptingFile = Šifruje sa… decryptingFile = Dešifruje sa… @@ -21,13 +21,13 @@ unlockButtonLabel = Odomknúť downloadButtonLabel = Prevziať downloadFinish = Preberanie bolo dokončené fileSizeProgress = ({ $partialSize } z { $totalSize }) -sendYourFilesLink = Vyskúšajte Firefox Send +sendYourFilesLink = Vyskúšajte Send errorPageHeader = Vyskytol sa problém. fileTooBig = Súbor je príliš veľký. Mal by byť menší než { $size }. linkExpiredAlt = Platnosť odkazu vypršala notSupportedHeader = Váš prehliadač nie je podporovaný. notSupportedLink = Prečo nie je môj prehliadač podporovaný? -notSupportedOutdatedDetail = Žiaľ, táto verzia Firefoxu nepodporuje webovú technológiu, ktorá poháňa Firefox Send. Budete musieť aktualizovať svoj prehliadač. +notSupportedOutdatedDetail = Žiaľ, táto verzia Firefoxu nepodporuje webovú technológiu, ktorá poháňa Send. Budete musieť aktualizovať svoj prehliadač. updateFirefox = Aktualizovať Firefox deletePopupCancel = Zrušiť deleteButtonHover = Odstrániť @@ -35,8 +35,8 @@ footerLinkLegal = Právne informácie footerLinkPrivacy = Súkromie footerLinkCookies = Cookies passwordTryAgain = Nesprávne heslo. Skúste to znova. -javascriptRequired = Firefox Send vyžaduje JavaScript -whyJavascript = Prečo Firefox Send vyžaduje JavaScript? +javascriptRequired = Send vyžaduje JavaScript +whyJavascript = Prečo Send vyžaduje JavaScript? enableJavascript = Prosím, povoľte JavaScript a skúste to znova. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } hod. { $minutes } min. @@ -49,8 +49,8 @@ passwordSetError = Heslo nešlo nastaviť ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/sl/send.ftl b/public/locales/sl/send.ftl index 381281ca..9cf110fd 100644 --- a/public/locales/sl/send.ftl +++ b/public/locales/sl/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Uvažanje … encryptingFile = Šifriranje ... decryptingFile = Dešifriranje ... @@ -23,13 +23,13 @@ unlockButtonLabel = Odkleni downloadButtonLabel = Prenesi downloadFinish = Prenos končan fileSizeProgress = ({ $partialSize } od { $totalSize }) -sendYourFilesLink = Preskusite Firefox Send +sendYourFilesLink = Preskusite Send errorPageHeader = Prišlo je do težave! fileTooBig = Ta datoteka je prevelika za nalaganje. Največja možna velikost je { $size }. linkExpiredAlt = Povezava je potekla notSupportedHeader = Vaš brskalnik ni podprt. notSupportedLink = Zakaj moj brskalnik ni podprt? -notSupportedOutdatedDetail = Ta brskalnik žal ne podpira tehnologije, na kateri temelji Firefox Send. Svoj brskalnik boste morali posodobiti. +notSupportedOutdatedDetail = Ta brskalnik žal ne podpira tehnologije, na kateri temelji Send. Svoj brskalnik boste morali posodobiti. updateFirefox = Posodobi Firefox deletePopupCancel = Prekliči deleteButtonHover = Izbriši @@ -37,8 +37,8 @@ footerLinkLegal = Pravno obvestilo footerLinkPrivacy = Zasebnost footerLinkCookies = Piškotki passwordTryAgain = Napačno geslo. Poskusite znova. -javascriptRequired = Firefox Send zahteva JavaScript -whyJavascript = Zakaj Firefox Send zahteva JavaScript? +javascriptRequired = Send zahteva JavaScript +whyJavascript = Zakaj Send zahteva JavaScript? enableJavascript = Omogočite JavaScript in poskusite znova. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -51,8 +51,8 @@ passwordSetError = Gesla ni mogoče nastaviti ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = { $sklon -> diff --git a/public/locales/sn/send.ftl b/public/locales/sn/send.ftl index e6ea44df..340f6587 100644 --- a/public/locales/sn/send.ftl +++ b/public/locales/sn/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Zvirikutaurwa importingFile = Kutora faira encryptingFile = Kuinikiriputa diff --git a/public/locales/sq/send.ftl b/public/locales/sq/send.ftl index 97346ca9..27180351 100644 --- a/public/locales/sq/send.ftl +++ b/public/locales/sq/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Po importohet… encryptingFile = Po fshehtëzohet… decryptingFile = Po shfshehtëzohet… @@ -19,13 +19,13 @@ unlockButtonLabel = Zhbllokoje downloadButtonLabel = Shkarkoje downloadFinish = Shkarkim i Plotësuar fileSizeProgress = ({ $partialSize } nga { $totalSize }) gjithsej -sendYourFilesLink = Provoni Firefox Send +sendYourFilesLink = Provoni Send errorPageHeader = Diç shkoi ters! fileTooBig = Kjo kartelë është shumë e madhe për ngarkim. Do të duhej të ishte më pak se { $size }. linkExpiredAlt = Lidhja skadoi notSupportedHeader = Shfletuesi juaj nuk mbulohet. 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 t’ju 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 t’ju duhet të përditësoni shfletuesin tuaj. updateFirefox = Përditësojeni Firefox-in deletePopupCancel = Anuloje deleteButtonHover = Fshije @@ -33,8 +33,8 @@ footerLinkLegal = Ligjore footerLinkPrivacy = Privatësi footerLinkCookies = Cookies passwordTryAgain = Fjalëkalim i pasaktë. Riprovoni. -javascriptRequired = Firefox Send lyp JavaScript -whyJavascript = Ç’i duhet Firefox Send-it JavaScript-i? +javascriptRequired = Send lyp JavaScript +whyJavascript = Ç’i duhet Send-it JavaScript-i? 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" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Ky fjalëkalim s’u caktua dot ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/sr/send.ftl b/public/locales/sr/send.ftl index 8ab8e66a..85e15cfd 100644 --- a/public/locales/sr/send.ftl +++ b/public/locales/sr/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Увозим… encryptingFile = Шифрујем… decryptingFile = Дешифрујем… @@ -21,13 +21,13 @@ unlockButtonLabel = Откључај downloadButtonLabel = Преузми downloadFinish = Преузимање је завршено. fileSizeProgress = ({ $partialSize } од { $totalSize }) -sendYourFilesLink = Испробајте Firefox Send +sendYourFilesLink = Испробајте Send errorPageHeader = Нешто је пошло наопако! fileTooBig = Та датотека је превелика за отпремање. Треба да буде мања од { $size }. linkExpiredAlt = Веза је истекла notSupportedHeader = Ваш прегледач није подржан. notSupportedLink = Зашто мој прегледач није подржан? -notSupportedOutdatedDetail = Нажалост, ово издање Firefox-a не подржава веб технологију која омогућава Firefox Send. Мораћете да ажурирате ваш прегледач. +notSupportedOutdatedDetail = Нажалост, ово издање Firefox-a не подржава веб технологију која омогућава Send. Мораћете да ажурирате ваш прегледач. updateFirefox = Ажурирај Firefox deletePopupCancel = Откажи deleteButtonHover = Обриши @@ -35,8 +35,8 @@ footerLinkLegal = Правни подаци footerLinkPrivacy = Приватност footerLinkCookies = Колачићи passwordTryAgain = Нетачна лозинка. Пробајте поново. -javascriptRequired = За Firefox Send је потребан JavaScript -whyJavascript = Зашто је потребан JavaScript за Firefox Send? +javascriptRequired = За Send је потребан JavaScript +whyJavascript = Зашто је потребан JavaScript за Send? enableJavascript = Омогућите JavaScript и пробајте поново. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }ч { $minutes }м @@ -49,8 +49,8 @@ passwordSetError = Не можемо поставити ову лозинку ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/su/send.ftl b/public/locales/su/send.ftl index cd4ec9d3..1a5d431c 100644 --- a/public/locales/su/send.ftl +++ b/public/locales/su/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Ngimpor... encryptingFile = Ngénkripsi... decryptingFile = Ngadékripsi... @@ -17,13 +17,13 @@ unlockButtonLabel = Laan konci downloadButtonLabel = Undeur downloadFinish = Undeuran anggeus fileSizeProgress = ({ $partialSize } ti { $totalSize }) -sendYourFilesLink = Pecakan Firefox Send +sendYourFilesLink = Pecakan Send errorPageHeader = Aya nu salah! fileTooBig = Koropak unjalkeuneun badag teuing. Kudu kurang ti { $size }. linkExpiredAlt = Tutumbu kadaluwarsa notSupportedHeader = Panyungsi anjeun 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 deletePopupCancel = Bolay deleteButtonHover = Pupus @@ -31,8 +31,8 @@ footerLinkLegal = Légal footerLinkPrivacy = Privasi footerLinkCookies = Réréméh passwordTryAgain = Kecap sandi salah. Pecakan deui. -javascriptRequired = Firefox Send merlukeun JavaScript -whyJavascript = Naha Firefox Send merlukeun JavaScript? +javascriptRequired = Send merlukeun JavaScript +whyJavascript = Naha Send merlukeun JavaScript? 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" expiresHoursMinutes = { $hours }j { $minutes }m @@ -45,8 +45,8 @@ passwordSetError = Ieu kecap sandi teu bisa disét ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/sv-SE/send.ftl b/public/locales/sv-SE/send.ftl index 31fff555..8d5dc8c2 100644 --- a/public/locales/sv-SE/send.ftl +++ b/public/locales/sv-SE/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Importerar… encryptingFile = Krypterar… decryptingFile = Avkodar… @@ -19,13 +19,13 @@ unlockButtonLabel = Lås upp downloadButtonLabel = Ladda ner downloadFinish = Nedladdning klar fileSizeProgress = ({ $partialSize } av { $totalSize }) -sendYourFilesLink = Testa Firefox Send +sendYourFilesLink = Testa Send errorPageHeader = Något gick fel! fileTooBig = Den filen är för stor för att ladda upp. Det ska vara mindre än { $size }. linkExpiredAlt = Länk upphörd notSupportedHeader = Din webbläsare stöds inte. 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 deletePopupCancel = Avbryt deleteButtonHover = Ta bort @@ -33,8 +33,8 @@ footerLinkLegal = Juridisk information footerLinkPrivacy = Sekretess footerLinkCookies = Kakor passwordTryAgain = Felaktigt lösenord. Försök igen. -javascriptRequired = Firefox Send kräver JavaScript -whyJavascript = Varför kräver Firefox Send JavaScript? +javascriptRequired = Send kräver JavaScript +whyJavascript = Varför kräver Send JavaScript? 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" expiresHoursMinutes = { $hours }t { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Det här lösenordet kunde inte ställas in ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/te/send.ftl b/public/locales/te/send.ftl index 159ddbda..55dbca60 100644 --- a/public/locales/te/send.ftl +++ b/public/locales/te/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = దిగుమతవుతోంది... encryptingFile = గుప్తీకరిస్తోంది... decryptingFile = వ్యక్తపరుస్తోంది... @@ -33,8 +33,8 @@ footerLinkLegal = చట్టపరమైన footerLinkPrivacy = గోప్యత footerLinkCookies = కుకీలు passwordTryAgain = సరికాని సంకేతపదం. మళ్ళీ ప్రయత్నించండి. -javascriptRequired = Firefox Sendకి జావాస్క్రిప్టు కావాలి -whyJavascript = Firefox Sendకి జావాస్క్రిప్టు ఎందుకు కావాలి? +javascriptRequired = Sendకి జావాస్క్రిప్టు కావాలి +whyJavascript = Sendకి జావాస్క్రిప్టు ఎందుకు కావాలి? enableJavascript = జావాస్క్రిప్టు చేతనంచేసి మళ్ళీ ప్రయత్నించండి. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }గం { $minutes }ని @@ -47,8 +47,8 @@ passwordSetError = ఈ సంకేతపదం పెట్టలేకపో ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = పంపించు -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/th/send.ftl b/public/locales/th/send.ftl index dea86215..e8970fe3 100644 --- a/public/locales/th/send.ftl +++ b/public/locales/th/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = กำลังนำเข้า… encryptingFile = กำลังเข้ารหัส… decryptingFile = กำลังถอดรหัส… @@ -17,13 +17,13 @@ unlockButtonLabel = ปลดล็อก downloadButtonLabel = ดาวน์โหลด downloadFinish = การดาวน์โหลดเสร็จสมบูรณ์ fileSizeProgress = ({ $partialSize } จาก { $totalSize }) -sendYourFilesLink = ลองใช้ Firefox Send +sendYourFilesLink = ลองใช้ Send errorPageHeader = มีบางอย่างผิดพลาด! fileTooBig = ไฟล์นั้นใหญ่เกินกว่าจะอัปโหลดได้ ไฟล์ที่จะอัปโหลดควรมีขนาดน้อยกว่า { $size } linkExpiredAlt = ลิงก์หมดอายุแล้ว notSupportedHeader = ไม่รองรับเบราว์เซอร์ของคุณ notSupportedLink = ทำไมจึงไม่รองรับเบราว์เซอร์ของฉัน? -notSupportedOutdatedDetail = น่าเสียดายที่ Firefox รุ่นนี้ไม่สนับสนุนเทคโนโลยีเว็บที่ขับเคลื่อน Firefox Send คุณจะต้องอัปเดตเบราว์เซอร์ของคุณ +notSupportedOutdatedDetail = น่าเสียดายที่ Firefox รุ่นนี้ไม่สนับสนุนเทคโนโลยีเว็บที่ขับเคลื่อน Send คุณจะต้องอัปเดตเบราว์เซอร์ของคุณ updateFirefox = อัปเดต Firefox deletePopupCancel = ยกเลิก deleteButtonHover = ลบ @@ -31,8 +31,8 @@ footerLinkLegal = ข้อกฎหมาย footerLinkPrivacy = ความเป็นส่วนตัว footerLinkCookies = คุกกี้ passwordTryAgain = รหัสผ่านไม่ถูกต้อง ลองอีกครั้ง -javascriptRequired = Firefox Send จำเป็นต้องใช้ JavaScript -whyJavascript = ทำไม Firefox Send จึงจำเป็นต้องใช้ JavaScript? +javascriptRequired = Send จำเป็นต้องใช้ JavaScript +whyJavascript = ทำไม Send จึงจำเป็นต้องใช้ JavaScript? enableJavascript = โปรดเปิดใช้งาน JavaScript แล้วลองอีกครั้ง # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } ชม. { $minutes } นาที @@ -45,8 +45,8 @@ passwordSetError = ไม่สามารถตั้งรหัสผ่า ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/tl/send.ftl b/public/locales/tl/send.ftl index 6e5de3fe..c7b05fe5 100644 --- a/public/locales/tl/send.ftl +++ b/public/locales/tl/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send siteFeedback = Feedback importingFile = Importing… encryptingFile = Encrypting… @@ -21,7 +21,7 @@ fileTooBig = Ang file na iyon ay masyadong malaki upang mag-upload. Dapat itong linkExpiredAlt = Nag-expire na ang link notSupportedHeader = Ang iyong browser ay hindi suportado. 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 deletePopupCancel = Kanselahin deleteButtonHover = I-delete @@ -29,8 +29,8 @@ footerLinkLegal = Legal footerLinkPrivacy = Privacy footerLinkCookies = Mga cookie passwordTryAgain = Maling password. Subukan muli. -javascriptRequired = Nangangailangan ang Firefox Send ng JavaScript -whyJavascript = Bakit ang Firefox Send ay nangangailangan ng JavaScript? +javascriptRequired = Nangangailangan ang Send ng JavaScript +whyJavascript = Bakit ang Send ay nangangailangan ng JavaScript? 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" expiresHoursMinutes = { $hours }h { $minutes }m @@ -43,7 +43,7 @@ passwordSetError = Hindi maitakda ang password na ito ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized +# Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Firefox send -send-short-brand = I-send -firefox = Firefox diff --git a/public/locales/tr/send.ftl b/public/locales/tr/send.ftl index 9365e9a6..cecae5b8 100644 --- a/public/locales/tr/send.ftl +++ b/public/locales/tr/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = İçe aktarılıyor… encryptingFile = Şifreleniyor… decryptingFile = Şifre çözülüyor… @@ -15,13 +15,13 @@ unlockButtonLabel = Kilidi aç downloadButtonLabel = İndir downloadFinish = İndirme tamamlandı fileSizeProgress = ({ $partialSize } / { $totalSize }) -sendYourFilesLink = Firefox Send’i deneyin +sendYourFilesLink = Send’i deneyin errorPageHeader = Bir şeyler ters gitti! fileTooBig = Dosyanız çok büyük. En fazla { $size } boyutunda olmalı. linkExpiredAlt = Bağlantı zaman aşımına uğramış notSupportedHeader = Tarayıcınız 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 = Firefox’u güncelle deletePopupCancel = Vazgeç deleteButtonHover = Sil @@ -29,8 +29,8 @@ footerLinkLegal = Yasal Bilgiler footerLinkPrivacy = Gizlilik footerLinkCookies = Çerezler passwordTryAgain = Yanlış parola. Yeniden deneyin. -javascriptRequired = Firefox Send için JavaScript gerekir -whyJavascript = Firefox Send neden JavaScript kullanıyor? +javascriptRequired = Send için JavaScript gerekir +whyJavascript = Send neden JavaScript kullanıyor? 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" expiresHoursMinutes = { $hours } sa { $minutes } dk @@ -43,8 +43,8 @@ passwordSetError = Parola ayarlanamadı ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/trs/send.ftl b/public/locales/trs/send.ftl index 20161642..a6a84c85 100644 --- a/public/locales/trs/send.ftl +++ b/public/locales/trs/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Hìaj a'nïn huan'ānj… encryptingFile = Nagi'iaj hùij… decryptingFile = Hìaj nâ'nïn… @@ -19,13 +19,13 @@ unlockButtonLabel = Na'nïn riñanj downloadButtonLabel = Nadunïnj downloadFinish = Ngà nahui nanïnj 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'! fileTooBig = Ûta yachìj hua archibô dan. Da'ui gā li doj ga da' { $size } linkExpiredAlt = Nitāj si ni'ñānj lînk gà' 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í? -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 deletePopupCancel = Duyichin' deleteButtonHover = Dure' @@ -33,8 +33,8 @@ footerLinkLegal = Nuguan' a'nï'ïn footerLinkPrivacy = Sa hùii footerLinkCookies = Nej kôki passwordTryAgain = Sê da'nga' huì dan huin. Ginù huin ñû. -javascriptRequired = Ni'ñānj Firefox Send JavaScript -whyJavascript = Nù huin saj ni'ñānj Firefox Send JavaScript rà'aj? +javascriptRequired = Ni'ñānj Send JavaScript +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' ñû. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours }h { $minutes }m @@ -47,8 +47,8 @@ passwordSetError = Na'ue gārayinaj da'nga huìi ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/uk/send.ftl b/public/locales/uk/send.ftl index 54a5e128..8c661dd4 100644 --- a/public/locales/uk/send.ftl +++ b/public/locales/uk/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Імпортуємо... encryptingFile = Шифруємо... decryptingFile = Розшифровуємо... @@ -21,13 +21,13 @@ unlockButtonLabel = Розблокувати downloadButtonLabel = Завантажити downloadFinish = Завантаження завершено fileSizeProgress = ({ $partialSize } з { $totalSize }) -sendYourFilesLink = Спробуйте Firefox Send +sendYourFilesLink = Спробуйте Send errorPageHeader = Щось пішло не так! fileTooBig = Цей файл завеликий для вивантаження. Він має бути меншим за { $size }. linkExpiredAlt = Час дії посилання минув notSupportedHeader = Ваш браузер не підтримується. notSupportedLink = Чому мій браузер не підтримується? -notSupportedOutdatedDetail = На жаль, ця версія Firefox не підтримує веб-технологію, завдяки якій працює Firefox Send. Вам потрібно оновити свій браузер. +notSupportedOutdatedDetail = На жаль, ця версія Firefox не підтримує веб-технологію, завдяки якій працює Send. Вам потрібно оновити свій браузер. updateFirefox = Оновити Firefox deletePopupCancel = Скасувати deleteButtonHover = Видалити @@ -35,8 +35,8 @@ footerLinkLegal = Права footerLinkPrivacy = Приватність footerLinkCookies = Куки passwordTryAgain = Невірний пароль. Спробуйте знову. -javascriptRequired = Firefox Send потребує JavaScript -whyJavascript = Чому для Firefox Send потрібен JavaScript? +javascriptRequired = Send потребує JavaScript +whyJavascript = Чому для Send потрібен JavaScript? enableJavascript = Будь ласка, увімкніть JavaScript та спробуйте знову. # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } год. { $minutes } хв. @@ -49,8 +49,8 @@ passwordSetError = Неможливо встановити цей пароль ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/vi/send.ftl b/public/locales/vi/send.ftl index 1d9fb020..88ad9e2b 100644 --- a/public/locales/vi/send.ftl +++ b/public/locales/vi/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = Đang nhập... encryptingFile = Đang mã hóa... decryptingFile = Đang giải mã... @@ -17,13 +17,13 @@ unlockButtonLabel = Mở khóa downloadButtonLabel = Tải xuống downloadFinish = Tải xuống hoàn tất fileSizeProgress = ({ $partialSize } trong { $totalSize }) -sendYourFilesLink = Dùng thử Firefox Send +sendYourFilesLink = Dùng thử Send 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 }. linkExpiredAlt = Liên kết đã hết hạn 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ợ? -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 deletePopupCancel = Hủy bỏ deleteButtonHover = Xóa @@ -31,8 +31,8 @@ footerLinkLegal = Pháp lý footerLinkPrivacy = Quyền riêng tư footerLinkCookies = Cookie passwordTryAgain = Sai mật khẩu. Vui lòng thử lại. -javascriptRequired = Firefox Send cần JavaScript -whyJavascript = Tại sao Firefox Send cần JavaScript? +javascriptRequired = 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. # 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 @@ -45,8 +45,8 @@ passwordSetError = Không thể đặt mật khẩu này ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/yo/send.ftl b/public/locales/yo/send.ftl index a066d111..e9a538cb 100644 --- a/public/locales/yo/send.ftl +++ b/public/locales/yo/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send je oruko ile-ise kan, kò sì ye ki a so di ibile. +# 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. importingFile = akowọle… encryptingFile = Fifi ọrọ ṣiṣẹ… decryptingFile = Ti nkọ nkan… @@ -24,9 +24,9 @@ downloadFinish = Ìsíwá parí Ìgbasílẹ̀ parí sendYourFilesLink = - Gbìyànjúu Firefox Send - Gbìyànjú lo Firefox Send - Dán Firefox Send wò + Gbìyànjúu Send + Gbìyànjú lo Send + Dán Send wò errorPageHeader = Nnkan o lo daadaa! fileTooBig = Fáìlì yìí tóbijù láti gbà sókè. Ó ní láti kéré sí { $size } @@ -44,7 +44,7 @@ notSupportedLink = 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ọ-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 deletePopupCancel = Nù kúrò @@ -64,7 +64,7 @@ footerLinkCookies = passwordTryAgain = Ọ̀rọ̀-aṣínà 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 = Kí nìdí tí Firefox fi nílòo JavaScript? Kí nìdí tí Firefox ṣe nílòo JavaScript? @@ -86,8 +86,8 @@ passwordSetError = ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Fi ránṣẹ́ Firánṣẹ́ diff --git a/public/locales/yua/send.ftl b/public/locales/yua/send.ftl index be2e48dc..b714c299 100644 --- a/public/locales/yua/send.ftl +++ b/public/locales/yua/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send # A short representation of a countdown timer containing the number of minutes remaining as digits, example "56m" expiresMinutes = { $minutes }m diff --git a/public/locales/zgh/send.ftl b/public/locales/zgh/send.ftl index e6e37dea..270515e5 100644 --- a/public/locales/zgh/send.ftl +++ b/public/locales/zgh/send.ftl @@ -1,4 +1,4 @@ -# Firefox Send is a brand name and should not be localized. +# Send is a brand name and should not be localized. title = ⴼⴰⵢⵔⴼⵓⴽⵙ ⵙⵉⵏⴷ siteFeedback = ⵜⴰⵙⴷⵎⵉⵔⵜ importingFile = ⴰⵙⴽⵛⵎ... @@ -48,7 +48,7 @@ passwordSetError = ⵓⵔ ⵜⵣⵎⵉⵔ ⵜⴳⵓⵔⵉ ⴰ ⵏ ⵓⵣⵔⴰ ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized +# Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = ⴼⴰⵢⵔⴼⵓⴽⵙ ⵙⵉⵏⴷ -send-short-brand = ⵙⵉⵏⴷ -firefox = ⴼⴰⵢⵔⴼⵓⴽⵙ diff --git a/public/locales/zh-CN/send.ftl b/public/locales/zh-CN/send.ftl index dce0b236..0b990638 100644 --- a/public/locales/zh-CN/send.ftl +++ b/public/locales/zh-CN/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = 正在导入… encryptingFile = 正在加密… decryptingFile = 正在解密… @@ -17,13 +17,13 @@ unlockButtonLabel = 解锁 downloadButtonLabel = 下载 downloadFinish = 下载完成 fileSizeProgress = ({ $partialSize } / { $totalSize }) -sendYourFilesLink = 试试 Firefox Send +sendYourFilesLink = 试试 Send errorPageHeader = 我们遇到错误。 fileTooBig = 此文件太大。文件大小上限为 { $size }。 linkExpiredAlt = 链接已过期 notSupportedHeader = 不支持您的浏览器。 notSupportedLink = 为什么不支持我的浏览器? -notSupportedOutdatedDetail = 很可惜,此版本的 Firefox 不支持 Firefox Send 所使用的 Web 技术。您需要更新浏览器才能使用它。 +notSupportedOutdatedDetail = 很可惜,此版本的 Firefox 不支持 Send 所使用的 Web 技术。您需要更新浏览器才能使用它。 updateFirefox = 更新 Firefox deletePopupCancel = 取消 deleteButtonHover = 删除 @@ -31,8 +31,8 @@ footerLinkLegal = 法律 footerLinkPrivacy = 隐私 footerLinkCookies = Cookie passwordTryAgain = 密码不正确。请重试。 -javascriptRequired = Firefox Send 需要 JavaScript -whyJavascript = 为什么 Firefox Send 需要 JavaScript? +javascriptRequired = Send 需要 JavaScript +whyJavascript = 为什么 Send 需要 JavaScript? enableJavascript = 请启用 JavaScript 并重试。 # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } 小时 { $minutes } 分钟 @@ -45,8 +45,8 @@ passwordSetError = 未能设置此密码 ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/locales/zh-TW/send.ftl b/public/locales/zh-TW/send.ftl index 8ac60fe0..6c91012e 100644 --- a/public/locales/zh-TW/send.ftl +++ b/public/locales/zh-TW/send.ftl @@ -1,5 +1,5 @@ -# Firefox Send is a brand name and should not be localized. -title = Firefox Send +# Send is a brand name and should not be localized. +title = Send importingFile = 匯入中… encryptingFile = 加密中… decryptingFile = 解密中… @@ -17,13 +17,13 @@ unlockButtonLabel = 解鎖 downloadButtonLabel = 下載 downloadFinish = 下載完成 fileSizeProgress = ({ $partialSize },共 { $totalSize }) -sendYourFilesLink = 試用 Firefox Send +sendYourFilesLink = 試用 Send errorPageHeader = 有些東西不對勁! fileTooBig = 檔案太大無法上傳。檔案大小限制為 { $size }。 linkExpiredAlt = 鏈結已過期 notSupportedHeader = 不支援您的瀏覽器。 notSupportedLink = 為什麼我的瀏覽器不支援? -notSupportedOutdatedDetail = 很可惜,此版本的 Firefox 不支援 Firefox Send 所需的 Web 技術。請更新瀏覽器後再使用。 +notSupportedOutdatedDetail = 很可惜,此版本的 Firefox 不支援 Send 所需的 Web 技術。請更新瀏覽器後再使用。 updateFirefox = 更新 Firefox deletePopupCancel = 取消 deleteButtonHover = 刪除 @@ -31,8 +31,8 @@ footerLinkLegal = 法律資訊 footerLinkPrivacy = 隱私權 footerLinkCookies = Cookie passwordTryAgain = 密碼不正確,請再試一次。 -javascriptRequired = Firefox Send 需要開啟 JavaScript 功能 -whyJavascript = 為什麼 Firefox Send 需要 JavaScript 才能使用? +javascriptRequired = Send 需要開啟 JavaScript 功能 +whyJavascript = 為什麼 Send 需要 JavaScript 才能使用? enableJavascript = 請開啟 JavaScript 功能後再試一次。 # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" expiresHoursMinutes = { $hours } 時 { $minutes } 分 @@ -45,8 +45,8 @@ passwordSetError = 無法設定此密碼 ## Send version 2 strings -# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized --send-brand = Firefox Send +# Send, Send, Firefox, Mozilla are proper names and should not be localized +-send-brand = Send -send-short-brand = Send -firefox = Firefox -mozilla = Mozilla diff --git a/public/mstile-144x144.png b/public/mstile-144x144.png deleted file mode 100644 index 949cf8f7..00000000 Binary files a/public/mstile-144x144.png and /dev/null differ diff --git a/public/mstile-150x150.png b/public/mstile-150x150.png deleted file mode 100644 index 3b89dc2b..00000000 Binary files a/public/mstile-150x150.png and /dev/null differ diff --git a/public/mstile-310x150.png b/public/mstile-310x150.png deleted file mode 100644 index f637d097..00000000 Binary files a/public/mstile-310x150.png and /dev/null differ diff --git a/public/mstile-310x310.png b/public/mstile-310x310.png deleted file mode 100644 index 2e913dc5..00000000 Binary files a/public/mstile-310x310.png and /dev/null differ diff --git a/public/mstile-70x70.png b/public/mstile-70x70.png deleted file mode 100644 index 103aa34b..00000000 Binary files a/public/mstile-70x70.png and /dev/null differ diff --git a/server/bin/dev.js b/server/bin/dev.js index f5c7ce95..a2e0e522 100644 --- a/server/bin/dev.js +++ b/server/bin/dev.js @@ -32,7 +32,6 @@ module.exports = function(app, devServer) { if (process.env.ANDROID) { // map all html routes to the android index.html app.get('/', android); - app.get('/legal', android); app.get(`/share/:id${ID_REGEX}`, android); app.get('/completed', android); app.get('/preferences', android); diff --git a/server/config.js b/server/config.js index cf469ca3..48ffa501 100644 --- a/server/config.js +++ b/server/config.js @@ -157,7 +157,7 @@ const conf = convict({ }, fxa_required: { format: Boolean, - default: true, + default: false, env: 'FXA_REQUIRED' }, fxa_url: { diff --git a/server/layout.js b/server/layout.js index c28986af..8de99861 100644 --- a/server/layout.js +++ b/server/layout.js @@ -14,22 +14,6 @@ module.exports = function(state, body = '') { - - - - - - - - - - diff --git a/server/routes/index.js b/server/routes/index.js index bb22be02..5e17e0b8 100644 --- a/server/routes/index.js +++ b/server/routes/index.js @@ -114,7 +114,6 @@ module.exports = function(app) { }); app.get('/error', language, pages.blank); app.get('/oauth', language, pages.blank); - app.get('/legal', language, pages.legal); app.get('/login', language, pages.index); app.get('/report', language, pages.blank); app.get('/app.webmanifest', language, require('./webmanifest')); diff --git a/server/routes/pages.js b/server/routes/pages.js index 5b1ba58d..fda62da0 100644 --- a/server/routes/pages.js +++ b/server/routes/pages.js @@ -52,11 +52,6 @@ module.exports = { ); }, - legal: async function(req, res) { - const appState = await state(req); - res.send(stripEvents(routes().toString('/legal', appState))); - }, - notfound: async function(req, res) { const appState = await state(req); res diff --git a/test/integration/homepage-tests.js b/test/integration/homepage-tests.js index 22a3e9d4..8019cb72 100644 --- a/test/integration/homepage-tests.js +++ b/test/integration/homepage-tests.js @@ -6,7 +6,7 @@ describe('Firefox Send homepage', function() { this.retries(2); const homePage = new HomePage(); const baseUrl = browser.options['baseUrl']; - const footerLinks = ['mozilla', 'legal', 'legal', 'cookies', 'github']; + const footerLinks = ['mozilla', 'cookies', 'github']; beforeEach(function() { homePage.open();