Compare commits

..

28 Commits

Author SHA1 Message Date
timvisee
b15c017dcd Bump version to 3.1.1 2020-10-15 21:02:25 +02:00
timvisee
bfaac8f66d Update dependencies 2020-10-15 21:00:06 +02:00
timvisee
4ffc65274b Merge branch 'dependabot/npm_and_yarn/lodash-4.17.20' 2020-10-15 20:57:47 +02:00
timvisee
1d492cd0df Merge branch 'master' into dependabot/npm_and_yarn/lodash-4.17.20 2020-10-15 20:57:09 +02:00
timvisee
b4594c5280 Merge branch 'dependabot/npm_and_yarn/elliptic-6.5.3' 2020-10-15 20:54:44 +02:00
dependabot[bot]
aa47df79f9 Bump lodash from 4.17.15 to 4.17.20
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.20.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.20)

Signed-off-by: dependabot[bot] <support@github.com>
2020-10-15 18:51:55 +00:00
dependabot[bot]
7533ab1930 Bump elliptic from 6.5.2 to 6.5.3
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.2 to 6.5.3.
- [Release notes](https://github.com/indutny/elliptic/releases)
- [Commits](https://github.com/indutny/elliptic/compare/v6.5.2...v6.5.3)

Signed-off-by: dependabot[bot] <support@github.com>
2020-10-15 18:49:21 +00:00
timvisee
f10b2d5064 Bump version to 3.1.0 2020-10-15 20:06:52 +02:00
timvisee
7463aeccf5 Update package.json configuration with new fork details 2020-10-15 20:05:07 +02:00
timvisee
2d35cd33c9 Add Docker instructions to use new registry for production images 2020-10-15 20:03:15 +02:00
timvisee
beb194f3e0 Update Docker documentation to use our image registry 2020-10-15 20:00:36 +02:00
timvisee
175040acec Release Docker image for each version tag 2020-10-15 19:54:03 +02:00
timvisee
9e5da3270c Do not run before_script in Docker release job on GitLab CI 2020-10-15 19:24:44 +02:00
timvisee
c6cab13e6a Publish Docker image for each master commit on local registry 2020-10-15 19:16:49 +02:00
timvisee
dd9d6c1660 Do not cache node modules on GitLab CI 2020-10-15 19:01:37 +02:00
Tim Visée
0dd4f8d2cc Merge branch 'remove-mozilla-branding' into 'master'
Remove Mozilla branding

See merge request timvisee/send!2
2020-10-15 17:00:32 +00:00
timvisee
f035132b95 Add based on Mozilla's Firefox Send notice in README 2020-10-15 18:54:57 +02:00
timvisee
561ed3994e Remove Firefox branding from app name in documentation and other files 2020-10-15 18:52:41 +02:00
timvisee
e77d2b3722 Remove Firefox branding from app name in locale files 2020-10-15 18:49:59 +02:00
timvisee
45d5f41731 Remove Firefox branding from app name in front-end 2020-10-15 18:48:54 +02:00
timvisee
505eb8c585 Remove Firefox branding from wordmark logo 2020-10-15 18:26:07 +02:00
timvisee
ce04f162a4 Remove promo banner 2020-10-15 18:26:07 +02:00
timvisee
47cf99140a Update footer links, remove Mozilla links, update source URL 2020-10-15 18:26:06 +02:00
timvisee
c6fc1483f6 Remove Mozilla logo from footer 2020-10-15 18:25:52 +02:00
timvisee
2c8ea3ecc8 Enable node module caching on GitLab CI 2020-10-15 17:34:08 +02:00
Tim Visée
24172a4665 Merge branch 'gitlab-ci' into 'master'
Add GitLab CI configuration

See merge request timvisee/send!1
2020-10-15 15:31:39 +00:00
timvisee
daa5a3c5f1 Add GitLab CI configuration with single test job 2020-10-15 17:23:17 +02:00
timvisee
806ebbe160 Update dependencies 2020-10-15 16:42:39 +02:00
171 changed files with 3241 additions and 5006 deletions

71
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,71 @@
image: "node:12-slim"
stages:
- test
- artifact
- release
before_script:
# Install dependencies
- apt-get update
- apt-get install -y git python3 build-essential libxtst6
# Prepare Chrome for puppeteer
- apt-get install -y wget gnupg
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
- sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
- apt-get update
- apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 --no-install-recommends
test:
stage: test
script:
- npm ci
- npm run lint
- npm test
# Release Docker image artifact for easy testing
artifact-docker:
stage: artifact
image: docker:latest
services:
- docker:dind
only:
- master
before_script: []
script:
- export IMG_NAME=registry.gitlab.com/timvisee/send:master-$CI_COMMIT_SHA
# Login in to registry
- 'docker login registry.gitlab.com -u $DOCKER_USER -p $DOCKER_PASS'
# Build and push image, report image name
- docker build -t $IMG_NAME .
- docker push $IMG_NAME
- 'echo Docker image artifact published, available as:'
- 'echo " docker pull $IMG_NAME"'
# Release public Docker image
release-docker:
stage: release
image: docker:latest
services:
- docker:dind
only:
- /^v(\d+\.)*\d+$/
before_script: []
script:
- export IMG_NAME=registry.gitlab.com/timvisee/send:$CI_COMMIT_REF_NAME
- export IMG_NAME_LATEST=registry.gitlab.com/timvisee/send:latest
# Login in to registry
- 'docker login registry.gitlab.com -u $DOCKER_USER -p $DOCKER_PASS'
# Build and push image, report image name
- docker build -t $IMG_NAME .
- docker tag $IMG_NAME $IMG_NAME_LATEST
- docker push $IMG_NAME
- docker push $IMG_NAME_LATEST
- 'echo Docker image artifact published, available as:'
- 'echo " docker pull $IMG_NAME_LATEST"'
- 'echo " docker pull $IMG_NAME"'

View File

@@ -1,7 +1,7 @@
## ##
# Firefox Send - Mozilla # Send
# #
# License https://github.com/mozilla/send/blob/master/LICENSE # License https://gitlab.com/timvisee/send/blob/master/LICENSE
## ##
@@ -16,12 +16,13 @@ RUN set -x \
--home /app \ --home /app \
--uid 10001 \ --uid 10001 \
app app
RUN npm i -g npm
COPY --chown=app:app . /app COPY --chown=app:app . /app
USER app USER app
WORKDIR /app WORKDIR /app
RUN set -x \ RUN set -x \
# Build # Build
&& PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true npm ci \ && npm ci \
&& npm run build && npm run build

View File

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

View File

@@ -61,10 +61,7 @@ async function fetchWithAuth(url, params, keychain) {
const result = {}; const result = {};
params = params || {}; params = params || {};
const h = await keychain.authHeader(); const h = await keychain.authHeader();
params.headers = new Headers({ params.headers = new Headers({ Authorization: h });
Authorization: h,
'Content-Type': 'application/json'
});
const response = await fetch(url, params); const response = await fetch(url, params);
result.response = response; result.response = response;
result.ok = response.ok; result.ok = response.ok;
@@ -130,10 +127,10 @@ export async function metadata(id, keychain) {
return { return {
size: meta.size, size: meta.size,
ttl: data.ttl, ttl: data.ttl,
iv: meta.iv,
name: meta.name, name: meta.name,
type: meta.type, type: meta.type,
manifest: meta.manifest, manifest: meta.manifest
flagged: data.flagged
}; };
} }
throw new Error(result.response.status); throw new Error(result.response.status);
@@ -292,13 +289,20 @@ export function uploadWs(
//////////////////////// ////////////////////////
async function _downloadStream(id, dlToken, signal) { async function downloadS(id, keychain, signal) {
const auth = await keychain.authHeader();
const response = await fetch(getApiUrl(`/api/download/${id}`), { const response = await fetch(getApiUrl(`/api/download/${id}`), {
signal: signal, signal: signal,
method: 'GET', method: 'GET',
headers: { Authorization: `Bearer ${dlToken}` } headers: { Authorization: auth }
}); });
const authHeader = response.headers.get('WWW-Authenticate');
if (authHeader) {
keychain.nonce = parseNonce(authHeader);
}
if (response.status !== 200) { if (response.status !== 200) {
throw new Error(response.status); throw new Error(response.status);
} }
@@ -306,13 +310,13 @@ async function _downloadStream(id, dlToken, signal) {
return response.body; return response.body;
} }
async function tryDownloadStream(id, dlToken, signal, tries = 2) { async function tryDownloadStream(id, keychain, signal, tries = 2) {
try { try {
const result = await _downloadStream(id, dlToken, signal); const result = await downloadS(id, keychain, signal);
return result; return result;
} catch (e) { } catch (e) {
if (e.message === '401' && --tries > 0) { if (e.message === '401' && --tries > 0) {
return tryDownloadStream(id, dlToken, signal, tries); return tryDownloadStream(id, keychain, signal, tries);
} }
if (e.name === 'AbortError') { if (e.name === 'AbortError') {
throw new Error('0'); throw new Error('0');
@@ -321,20 +325,21 @@ async function tryDownloadStream(id, dlToken, signal, tries = 2) {
} }
} }
export function downloadStream(id, dlToken) { export function downloadStream(id, keychain) {
const controller = new AbortController(); const controller = new AbortController();
function cancel() { function cancel() {
controller.abort(); controller.abort();
} }
return { return {
cancel, cancel,
result: tryDownloadStream(id, dlToken, controller.signal) result: tryDownloadStream(id, keychain, controller.signal)
}; };
} }
////////////////// //////////////////
async function download(id, dlToken, onprogress, canceller) { async function download(id, keychain, onprogress, canceller) {
const auth = await keychain.authHeader();
const xhr = new XMLHttpRequest(); const xhr = new XMLHttpRequest();
canceller.oncancel = function() { canceller.oncancel = function() {
xhr.abort(); xhr.abort();
@@ -342,6 +347,10 @@ async function download(id, dlToken, onprogress, canceller) {
return new Promise(function(resolve, reject) { return new Promise(function(resolve, reject) {
xhr.addEventListener('loadend', function() { xhr.addEventListener('loadend', function() {
canceller.oncancel = function() {}; canceller.oncancel = function() {};
const authHeader = xhr.getResponseHeader('WWW-Authenticate');
if (authHeader) {
keychain.nonce = parseNonce(authHeader);
}
if (xhr.status !== 200) { if (xhr.status !== 200) {
return reject(new Error(xhr.status)); return reject(new Error(xhr.status));
} }
@@ -356,26 +365,26 @@ async function download(id, dlToken, onprogress, canceller) {
} }
}); });
xhr.open('get', getApiUrl(`/api/download/blob/${id}`)); xhr.open('get', getApiUrl(`/api/download/blob/${id}`));
xhr.setRequestHeader('Authorization', `Bearer ${dlToken}`); xhr.setRequestHeader('Authorization', auth);
xhr.responseType = 'blob'; xhr.responseType = 'blob';
xhr.send(); xhr.send();
onprogress(0); onprogress(0);
}); });
} }
async function tryDownload(id, dlToken, onprogress, canceller, tries = 2) { async function tryDownload(id, keychain, onprogress, canceller, tries = 2) {
try { try {
const result = await download(id, dlToken, onprogress, canceller); const result = await download(id, keychain, onprogress, canceller);
return result; return result;
} catch (e) { } catch (e) {
if (e.message === '401' && --tries > 0) { if (e.message === '401' && --tries > 0) {
return tryDownload(id, dlToken, onprogress, canceller, tries); return tryDownload(id, keychain, onprogress, canceller, tries);
} }
throw e; throw e;
} }
} }
export function downloadFile(id, dlToken, onprogress) { export function downloadFile(id, keychain, onprogress) {
const canceller = { const canceller = {
oncancel: function() {} // download() sets this oncancel: function() {} // download() sets this
}; };
@@ -384,7 +393,7 @@ export function downloadFile(id, dlToken, onprogress) {
} }
return { return {
cancel, cancel,
result: tryDownload(id, dlToken, onprogress, canceller) result: tryDownload(id, keychain, onprogress, canceller)
}; };
} }
@@ -429,44 +438,3 @@ export async function getConstants() {
throw new Error(response.status); throw new Error(response.status);
} }
export async function reportLink(id, keychain, reason) {
const result = await fetchWithAuthAndRetry(
getApiUrl(`/api/report/${id}`),
{
method: 'POST',
body: JSON.stringify({ reason })
},
keychain
);
if (result.ok) {
return;
}
throw new Error(result.response.status);
}
export async function getDownloadToken(id, keychain) {
const result = await fetchWithAuthAndRetry(
getApiUrl(`/api/download/token/${id}`),
{
method: 'GET'
},
keychain
);
if (result.ok) {
return (await result.response.json()).token;
}
throw new Error(result.response.status);
}
export async function downloadDone(id, dlToken) {
const headers = new Headers({ Authorization: `Bearer ${dlToken}` });
const response = await fetch(getApiUrl(`/api/download/done/${id}`), {
headers,
method: 'POST'
});
return response.ok;
}

View File

@@ -77,7 +77,6 @@ async function polyfillStreams() {
export default async function getCapabilities() { export default async function getCapabilities() {
const browser = browserName(); const browser = browserName();
const isMobile = /mobi|android/i.test(navigator.userAgent);
const serviceWorker = 'serviceWorker' in navigator && browser !== 'edge'; const serviceWorker = 'serviceWorker' in navigator && browser !== 'edge';
let crypto = await checkCrypto(); let crypto = await checkCrypto();
const nativeStreams = checkStreams(); const nativeStreams = checkStreams();
@@ -92,15 +91,14 @@ export default async function getCapabilities() {
account = false; account = false;
} }
const share = const share =
isMobile && typeof navigator.share === 'function' && locale().startsWith('en'); // en until strings merge
typeof navigator.share === 'function' &&
locale().startsWith('en'); // en until strings merge
const standalone = const standalone =
window.matchMedia('(display-mode: standalone)').matches || window.matchMedia('(display-mode: standalone)').matches ||
navigator.standalone; navigator.standalone;
const mobileFirefox = browser === 'firefox' && isMobile; const mobileFirefox =
browser === 'firefox' && /mobile/i.test(navigator.userAgent);
return { return {
account, account,

View File

@@ -36,7 +36,7 @@ export default function(state, emitter) {
document.addEventListener('blur', () => (updateTitle = true)); document.addEventListener('blur', () => (updateTitle = true));
document.addEventListener('focus', () => { document.addEventListener('focus', () => {
updateTitle = false; updateTitle = false;
emitter.emit('DOMTitleChange', 'Firefox Send'); emitter.emit('DOMTitleChange', 'Send');
}); });
checkFiles(); checkFiles();
}); });
@@ -49,8 +49,8 @@ export default function(state, emitter) {
state.user.login(email); state.user.login(email);
}); });
emitter.on('logout', async () => { emitter.on('logout', () => {
await state.user.logout(); state.user.logout();
metrics.loggedOut({ trigger: 'button' }); metrics.loggedOut({ trigger: 'button' });
emitter.emit('pushState', '/'); emitter.emit('pushState', '/');
}); });
@@ -178,12 +178,6 @@ export default function(state, emitter) {
//cancelled. do nothing //cancelled. do nothing
metrics.cancelledUpload(archive, err.duration); metrics.cancelledUpload(archive, err.duration);
render(); render();
} else if (err.message === '401') {
const refreshed = await state.user.refresh();
if (refreshed) {
return emitter.emit('upload');
}
emitter.emit('pushState', '/error');
} else { } else {
// eslint-disable-next-line no-console // eslint-disable-next-line no-console
console.error(err); console.error(err);
@@ -232,10 +226,9 @@ export default function(state, emitter) {
} catch (e) { } catch (e) {
if (e.message === '401' || e.message === '404') { if (e.message === '401' || e.message === '404') {
file.password = null; file.password = null;
file.dead = e.message === '404'; if (!file.requiresPassword) {
} else { return emitter.emit('pushState', '/404');
console.error(e); }
return emitter.emit('pushState', '/error');
} }
} }
@@ -251,8 +244,7 @@ export default function(state, emitter) {
const start = Date.now(); const start = Date.now();
try { try {
const dl = state.transfer.download({ const dl = state.transfer.download({
stream: state.capabilities.streamDownload, stream: state.capabilities.streamDownload
storage: state.storage
}); });
render(); render();
await dl; await dl;
@@ -271,9 +263,7 @@ export default function(state, emitter) {
} else { } else {
// eslint-disable-next-line no-console // eslint-disable-next-line no-console
state.transfer = null; state.transfer = null;
const location = ['404', '403'].includes(err.message) const location = err.message === '404' ? '/404' : '/error';
? '/404'
: '/error';
if (location === '/error') { if (location === '/error') {
state.sentry.withScope(scope => { state.sentry.withScope(scope => {
scope.setExtra('duration', err.duration); scope.setExtra('duration', err.duration);
@@ -316,21 +306,6 @@ export default function(state, emitter) {
render(); render();
}); });
emitter.on('report', async ({ reason }) => {
try {
const receiver = state.transfer || new FileReceiver(state.fileInfo);
await receiver.reportLink(reason);
render();
} catch (err) {
console.error(err);
if (err.message === '404') {
state.fileInfo = { reported: true };
return render();
}
emitter.emit('pushState', '/error');
}
});
setInterval(() => { setInterval(() => {
// poll for updates of the upload list // poll for updates of the upload list
if (!state.modal && state.route === '/') { if (!state.modal && state.route === '/') {

View File

@@ -1,266 +0,0 @@
const LOOKUP = Int32Array.from([
0x00000000,
0x77073096,
0xee0e612c,
0x990951ba,
0x076dc419,
0x706af48f,
0xe963a535,
0x9e6495a3,
0x0edb8832,
0x79dcb8a4,
0xe0d5e91e,
0x97d2d988,
0x09b64c2b,
0x7eb17cbd,
0xe7b82d07,
0x90bf1d91,
0x1db71064,
0x6ab020f2,
0xf3b97148,
0x84be41de,
0x1adad47d,
0x6ddde4eb,
0xf4d4b551,
0x83d385c7,
0x136c9856,
0x646ba8c0,
0xfd62f97a,
0x8a65c9ec,
0x14015c4f,
0x63066cd9,
0xfa0f3d63,
0x8d080df5,
0x3b6e20c8,
0x4c69105e,
0xd56041e4,
0xa2677172,
0x3c03e4d1,
0x4b04d447,
0xd20d85fd,
0xa50ab56b,
0x35b5a8fa,
0x42b2986c,
0xdbbbc9d6,
0xacbcf940,
0x32d86ce3,
0x45df5c75,
0xdcd60dcf,
0xabd13d59,
0x26d930ac,
0x51de003a,
0xc8d75180,
0xbfd06116,
0x21b4f4b5,
0x56b3c423,
0xcfba9599,
0xb8bda50f,
0x2802b89e,
0x5f058808,
0xc60cd9b2,
0xb10be924,
0x2f6f7c87,
0x58684c11,
0xc1611dab,
0xb6662d3d,
0x76dc4190,
0x01db7106,
0x98d220bc,
0xefd5102a,
0x71b18589,
0x06b6b51f,
0x9fbfe4a5,
0xe8b8d433,
0x7807c9a2,
0x0f00f934,
0x9609a88e,
0xe10e9818,
0x7f6a0dbb,
0x086d3d2d,
0x91646c97,
0xe6635c01,
0x6b6b51f4,
0x1c6c6162,
0x856530d8,
0xf262004e,
0x6c0695ed,
0x1b01a57b,
0x8208f4c1,
0xf50fc457,
0x65b0d9c6,
0x12b7e950,
0x8bbeb8ea,
0xfcb9887c,
0x62dd1ddf,
0x15da2d49,
0x8cd37cf3,
0xfbd44c65,
0x4db26158,
0x3ab551ce,
0xa3bc0074,
0xd4bb30e2,
0x4adfa541,
0x3dd895d7,
0xa4d1c46d,
0xd3d6f4fb,
0x4369e96a,
0x346ed9fc,
0xad678846,
0xda60b8d0,
0x44042d73,
0x33031de5,
0xaa0a4c5f,
0xdd0d7cc9,
0x5005713c,
0x270241aa,
0xbe0b1010,
0xc90c2086,
0x5768b525,
0x206f85b3,
0xb966d409,
0xce61e49f,
0x5edef90e,
0x29d9c998,
0xb0d09822,
0xc7d7a8b4,
0x59b33d17,
0x2eb40d81,
0xb7bd5c3b,
0xc0ba6cad,
0xedb88320,
0x9abfb3b6,
0x03b6e20c,
0x74b1d29a,
0xead54739,
0x9dd277af,
0x04db2615,
0x73dc1683,
0xe3630b12,
0x94643b84,
0x0d6d6a3e,
0x7a6a5aa8,
0xe40ecf0b,
0x9309ff9d,
0x0a00ae27,
0x7d079eb1,
0xf00f9344,
0x8708a3d2,
0x1e01f268,
0x6906c2fe,
0xf762575d,
0x806567cb,
0x196c3671,
0x6e6b06e7,
0xfed41b76,
0x89d32be0,
0x10da7a5a,
0x67dd4acc,
0xf9b9df6f,
0x8ebeeff9,
0x17b7be43,
0x60b08ed5,
0xd6d6a3e8,
0xa1d1937e,
0x38d8c2c4,
0x4fdff252,
0xd1bb67f1,
0xa6bc5767,
0x3fb506dd,
0x48b2364b,
0xd80d2bda,
0xaf0a1b4c,
0x36034af6,
0x41047a60,
0xdf60efc3,
0xa867df55,
0x316e8eef,
0x4669be79,
0xcb61b38c,
0xbc66831a,
0x256fd2a0,
0x5268e236,
0xcc0c7795,
0xbb0b4703,
0x220216b9,
0x5505262f,
0xc5ba3bbe,
0xb2bd0b28,
0x2bb45a92,
0x5cb36a04,
0xc2d7ffa7,
0xb5d0cf31,
0x2cd99e8b,
0x5bdeae1d,
0x9b64c2b0,
0xec63f226,
0x756aa39c,
0x026d930a,
0x9c0906a9,
0xeb0e363f,
0x72076785,
0x05005713,
0x95bf4a82,
0xe2b87a14,
0x7bb12bae,
0x0cb61b38,
0x92d28e9b,
0xe5d5be0d,
0x7cdcefb7,
0x0bdbdf21,
0x86d3d2d4,
0xf1d4e242,
0x68ddb3f8,
0x1fda836e,
0x81be16cd,
0xf6b9265b,
0x6fb077e1,
0x18b74777,
0x88085ae6,
0xff0f6a70,
0x66063bca,
0x11010b5c,
0x8f659eff,
0xf862ae69,
0x616bffd3,
0x166ccf45,
0xa00ae278,
0xd70dd2ee,
0x4e048354,
0x3903b3c2,
0xa7672661,
0xd06016f7,
0x4969474d,
0x3e6e77db,
0xaed16a4a,
0xd9d65adc,
0x40df0b66,
0x37d83bf0,
0xa9bcae53,
0xdebb9ec5,
0x47b2cf7f,
0x30b5ffe9,
0xbdbdf21c,
0xcabac28a,
0x53b39330,
0x24b4a3a6,
0xbad03605,
0xcdd70693,
0x54de5729,
0x23d967bf,
0xb3667a2e,
0xc4614ab8,
0x5d681b02,
0x2a6f2b94,
0xb40bbe37,
0xc30c8ea1,
0x5a05df1b,
0x2d02ef8d
]);
module.exports = function crc32(uint8Array, previous) {
let crc = previous === 0 ? 0 : ~~previous ^ -1;
for (let i = 0; i < uint8Array.byteLength; i++) {
crc = LOOKUP[(crc ^ uint8Array[i]) & 0xff] ^ (crc >>> 8);
}
return (crc ^ -1) >>> 0;
};

View File

@@ -1,5 +1,5 @@
import 'buffer';
import { transformStream } from './streams'; import { transformStream } from './streams';
import { concat } from './utils';
const NONCE_LENGTH = 12; const NONCE_LENGTH = 12;
const TAG_LENGTH = 16; const TAG_LENGTH = 16;
@@ -81,18 +81,19 @@ class ECETransformer {
) )
); );
return base.slice(0, NONCE_LENGTH); return Buffer.from(base.slice(0, NONCE_LENGTH));
} }
generateNonce(seq) { generateNonce(seq) {
if (seq > 0xffffffff) { if (seq > 0xffffffff) {
throw new Error('record sequence number exceeds limit'); throw new Error('record sequence number exceeds limit');
} }
const nonce = new DataView(this.nonceBase.slice()); const nonce = Buffer.from(this.nonceBase);
const m = nonce.getUint32(nonce.byteLength - 4); const m = nonce.readUIntBE(nonce.length - 4, 4);
const xor = (m ^ seq) >>> 0; //forces unsigned int xor const xor = (m ^ seq) >>> 0; //forces unsigned int xor
nonce.setUint32(nonce.byteLength - 4, xor); nonce.writeUIntBE(xor, nonce.length - 4, 4);
return new Uint8Array(nonce.buffer);
return nonce;
} }
pad(data, isLast) { pad(data, isLast) {
@@ -102,11 +103,14 @@ class ECETransformer {
} }
if (isLast) { if (isLast) {
return concat(data, Uint8Array.of(2)); const padding = Buffer.alloc(1);
padding.writeUInt8(2, 0);
return Buffer.concat([data, padding]);
} else { } else {
const padding = new Uint8Array(this.rs - len - TAG_LENGTH); const padding = Buffer.alloc(this.rs - len - TAG_LENGTH);
padding[0] = 1; padding.fill(0);
return concat(data, padding); padding.writeUInt8(1, 0);
return Buffer.concat([data, padding]);
} }
} }
@@ -129,9 +133,10 @@ class ECETransformer {
} }
createHeader() { createHeader() {
const nums = new DataView(new ArrayBuffer(5)); const nums = Buffer.alloc(5);
nums.setUint32(0, this.rs); nums.writeUIntBE(this.rs, 0, 4);
return concat(new Uint8Array(this.salt), new Uint8Array(nums.buffer)); nums.writeUIntBE(0, 4, 1);
return Buffer.concat([Buffer.from(this.salt), nums]);
} }
readHeader(buffer) { readHeader(buffer) {
@@ -139,10 +144,9 @@ class ECETransformer {
throw new Error('chunk too small for reading header'); throw new Error('chunk too small for reading header');
} }
const header = {}; const header = {};
const dv = new DataView(buffer.buffer); header.salt = buffer.buffer.slice(0, KEY_LENGTH);
header.salt = buffer.slice(0, KEY_LENGTH); header.rs = buffer.readUIntBE(KEY_LENGTH, 4);
header.rs = dv.getUint32(KEY_LENGTH); const idlen = buffer.readUInt8(KEY_LENGTH + 4);
const idlen = dv.getUint8(KEY_LENGTH + 4);
header.length = idlen + KEY_LENGTH + 5; header.length = idlen + KEY_LENGTH + 5;
return header; return header;
} }
@@ -154,7 +158,7 @@ class ECETransformer {
this.key, this.key,
this.pad(buffer, isLast) this.pad(buffer, isLast)
); );
return new Uint8Array(encrypted); return Buffer.from(encrypted);
} }
async decryptRecord(buffer, seq, isLast) { async decryptRecord(buffer, seq, isLast) {
@@ -169,7 +173,7 @@ class ECETransformer {
buffer buffer
); );
return this.unpad(new Uint8Array(data), isLast); return this.unpad(Buffer.from(data), isLast);
} }
async start(controller) { async start(controller) {
@@ -210,7 +214,7 @@ class ECETransformer {
await this.transformPrevChunk(false, controller); await this.transformPrevChunk(false, controller);
} }
this.firstchunk = false; this.firstchunk = false;
this.prevChunk = new Uint8Array(chunk.buffer); this.prevChunk = Buffer.from(chunk.buffer);
} }
async flush(controller) { async flush(controller) {

View File

@@ -1,14 +1,7 @@
import Nanobus from 'nanobus'; import Nanobus from 'nanobus';
import Keychain from './keychain'; import Keychain from './keychain';
import { delay, bytes, streamToArrayBuffer } from './utils'; import { delay, bytes, streamToArrayBuffer } from './utils';
import { import { downloadFile, metadata, getApiUrl } from './api';
downloadFile,
downloadDone,
metadata,
getApiUrl,
reportLink,
getDownloadToken
} from './api';
import { blobStream } from './streams'; import { blobStream } from './streams';
import Zip from './zip'; import Zip from './zip';
@@ -20,14 +13,9 @@ export default class FileReceiver extends Nanobus {
this.keychain.setPassword(fileInfo.password, fileInfo.url); this.keychain.setPassword(fileInfo.password, fileInfo.url);
} }
this.fileInfo = fileInfo; this.fileInfo = fileInfo;
this.dlToken = null;
this.reset(); this.reset();
} }
get id() {
return this.fileInfo.id;
}
get progressRatio() { get progressRatio() {
return this.progress[0] / this.progress[1]; return this.progress[0] / this.progress[1];
} }
@@ -59,16 +47,12 @@ export default class FileReceiver extends Nanobus {
const meta = await metadata(this.fileInfo.id, this.keychain); const meta = await metadata(this.fileInfo.id, this.keychain);
this.fileInfo.name = meta.name; this.fileInfo.name = meta.name;
this.fileInfo.type = meta.type; this.fileInfo.type = meta.type;
this.fileInfo.iv = meta.iv;
this.fileInfo.size = +meta.size; this.fileInfo.size = +meta.size;
this.fileInfo.manifest = meta.manifest; this.fileInfo.manifest = meta.manifest;
this.fileInfo.flagged = meta.flagged;
this.state = 'ready'; this.state = 'ready';
} }
async reportLink(reason) {
await reportLink(this.fileInfo.id, this.keychain, reason);
}
sendMessageToSw(msg) { sendMessageToSw(msg) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
const channel = new MessageChannel(); const channel = new MessageChannel();
@@ -91,7 +75,7 @@ export default class FileReceiver extends Nanobus {
this.state = 'downloading'; this.state = 'downloading';
this.downloadRequest = await downloadFile( this.downloadRequest = await downloadFile(
this.fileInfo.id, this.fileInfo.id,
this.dlToken, this.keychain,
p => { p => {
this.progress = [p, this.fileInfo.size]; this.progress = [p, this.fileInfo.size];
this.emit('progress'); this.emit('progress');
@@ -155,7 +139,6 @@ export default class FileReceiver extends Nanobus {
url: this.fileInfo.url, url: this.fileInfo.url,
size: this.fileInfo.size, size: this.fileInfo.size,
nonce: this.keychain.nonce, nonce: this.keychain.nonce,
dlToken: this.dlToken,
noSave noSave
}; };
await this.sendMessageToSw(info); await this.sendMessageToSw(info);
@@ -221,19 +204,11 @@ export default class FileReceiver extends Nanobus {
} }
} }
async download({ stream, storage, noSave }) { download(options) {
this.dlToken = storage.getDownloadToken(this.id); if (options.stream) {
if (!this.dlToken) { return this.downloadStream(options.noSave);
this.dlToken = await getDownloadToken(this.id, this.keychain);
storage.setDownloadToken(this.id, this.dlToken);
} }
if (stream) { return this.downloadBlob(options.noSave);
await this.downloadStream(noSave);
} else {
await this.downloadBlob(noSave);
}
await downloadDone(this.id, this.dlToken);
storage.setDownloadToken(this.id);
} }
} }

View File

@@ -1,5 +1,5 @@
/* global AUTH_CONFIG */ /* global AUTH_CONFIG */
import { arrayToB64, b64ToArray, concat } from './utils'; import { arrayToB64, b64ToArray } from './utils';
const encoder = new TextEncoder(); const encoder = new TextEncoder();
const decoder = new TextDecoder(); const decoder = new TextDecoder();
@@ -23,6 +23,13 @@ function getOtherInfo(enc) {
return result; return result;
} }
function concat(b1, b2) {
const result = new Uint8Array(b1.length + b2.length);
result.set(b1, 0);
result.set(b2, b1.length);
return result;
}
async function concatKdf(key, enc) { async function concatKdf(key, enc) {
if (key.length !== 32) { if (key.length !== 32) {
throw new Error('unsupported key length'); throw new Error('unsupported key length');

View File

@@ -55,12 +55,6 @@ body {
@apply bg-blue-70; @apply bg-blue-70;
} }
.btn:disabled {
@apply bg-grey-transparent;
cursor: not-allowed;
}
.checkbox { .checkbox {
@apply leading-normal; @apply leading-normal;
@apply select-none; @apply select-none;
@@ -144,6 +138,21 @@ footer li:hover {
text-decoration: underline; text-decoration: underline;
} }
.feedback-link {
background-color: #000;
background-image: url('../assets/feedback.svg');
background-position: 0.125rem 0.25rem;
background-repeat: no-repeat;
background-size: 1.125rem;
color: #fff;
display: block;
font-size: 0.75rem;
line-height: 0.75rem;
padding: 0.375rem 0.375rem 0.375rem 1.25rem;
text-indent: 0.125rem;
white-space: nowrap;
}
.link-blue { .link-blue {
@apply text-blue-60; @apply text-blue-60;
} }
@@ -166,10 +175,6 @@ footer li:hover {
height: unset; height: unset;
} }
.dl-bg {
filter: grayscale(1) opacity(0.15);
}
.main { .main {
display: flex; display: flex;
position: relative; position: relative;
@@ -182,19 +187,6 @@ footer li:hover {
@apply bg-white; @apply bg-white;
} }
.mozilla-logo {
background-image: url('../assets/mozilla-logo.svg');
background-repeat: no-repeat;
background-size: 100px, 48px;
overflow: hidden;
text-indent: 120%;
white-space: nowrap;
display: inline-block;
height: 32px;
width: 100px;
flex-shrink: 0;
}
#password-msg::after { #password-msg::after {
content: '\200b'; content: '\200b';
} }
@@ -291,7 +283,7 @@ select {
@apply m-auto; @apply m-auto;
@apply py-8; @apply py-8;
min-height: 42rem; min-height: 36rem;
max-height: 42rem; max-height: 42rem;
width: calc(100% - 3rem); width: calc(100% - 3rem);
} }
@@ -317,10 +309,6 @@ select {
@apply bg-blue-50; @apply bg-blue-50;
} }
.btn:disabled {
@apply bg-grey-80;
}
.link-blue { .link-blue {
@apply text-blue-40; @apply text-blue-40;
} }
@@ -337,11 +325,6 @@ select {
@apply bg-grey-90; @apply bg-grey-90;
} }
.mozilla-logo {
background-color: white;
border: 1px solid white;
}
@screen md { @screen md {
.main > section { .main > section {
@apply border; @apply border;
@@ -391,3 +374,48 @@ select {
.signin:hover:active { .signin:hover:active {
transform: scale(0.9375); transform: scale(0.9375);
} }
/* begin signin button color experiment */
.white-blue {
@apply border-blue-60;
@apply border-2;
@apply text-blue-60;
}
.white-blue:hover,
.white-blue:focus {
@apply bg-blue-60;
@apply text-white;
}
.blue {
@apply bg-blue-60;
@apply text-white;
}
.white-violet {
@apply border-violet;
@apply border-2;
@apply text-violet;
}
.white-violet:hover,
.white-violet:focus {
@apply bg-violet;
@apply text-white;
background-image: var(--violet-gradient);
}
.violet {
@apply bg-violet;
@apply text-white;
}
.violet:hover,
.violet:focus {
background-image: var(--violet-gradient);
}
/* end signin button color experiment */

View File

@@ -13,11 +13,7 @@ module.exports = function(app = choo({ hash: true })) {
app.route('/oauth', function(state, emit) { app.route('/oauth', function(state, emit) {
emit('authenticate', state.query.code, state.query.state); emit('authenticate', state.query.code, state.query.state);
}); });
app.route('/login', function(state, emit) { app.route('/login', body(require('./ui/home')));
emit('replaceState', '/');
setTimeout(() => emit('render'));
});
app.route('/report', body(require('./ui/report')));
app.route('*', body(require('./ui/notFound'))); app.route('*', body(require('./ui/notFound')));
return app; return app;
}; };

View File

@@ -9,7 +9,7 @@ import contentDisposition from 'content-disposition';
let noSave = false; let noSave = false;
const map = new Map(); const map = new Map();
const IMAGES = /.*\.(png|svg|jpg)$/; const IMAGES = /.*\.(png|svg|jpg)$/;
const VERSIONED_ASSET = /\.[A-Fa-f0-9]{8}\.(js|css|png|svg|jpg)(#\w+)?$/; const VERSIONED_ASSET = /\.[A-Fa-f0-9]{8}\.(js|css|png|svg|jpg)$/;
const DOWNLOAD_URL = /\/api\/download\/([A-Fa-f0-9]{4,})/; const DOWNLOAD_URL = /\/api\/download\/([A-Fa-f0-9]{4,})/;
const FONT = /\.woff2?$/; const FONT = /\.woff2?$/;
@@ -34,7 +34,7 @@ async function decryptStream(id) {
keychain.setPassword(file.password, file.url); keychain.setPassword(file.password, file.url);
} }
file.download = downloadStream(id, file.dlToken); file.download = downloadStream(id, keychain);
const body = await file.download.result; const body = await file.download.result;
@@ -146,7 +146,6 @@ self.onmessage = event => {
type: event.data.type, type: event.data.type,
manifest: event.data.manifest, manifest: event.data.manifest,
size: event.data.size, size: event.data.size,
dlToken: event.data.dlToken,
progress: 0 progress: 0
}; };
map.set(event.data.id, info); map.set(event.data.id, info);

View File

@@ -35,7 +35,6 @@ class Storage {
this.engine = new Mem(); this.engine = new Mem();
} }
this._files = this.loadFiles(); this._files = this.loadFiles();
this.pruneTokens();
} }
loadFiles() { loadFiles() {
@@ -181,48 +180,6 @@ class Storage {
downloadCount downloadCount
}; };
} }
setDownloadToken(id, token) {
let otherTokens = {};
try {
otherTokens = JSON.parse(this.get('dlTokens'));
} catch (e) {
//
}
if (token) {
const record = { token, ts: Date.now() };
this.set('dlTokens', JSON.stringify({ ...otherTokens, [id]: record }));
} else {
this.set('dlTokens', JSON.stringify({ ...otherTokens, [id]: undefined }));
}
}
getDownloadToken(id) {
try {
return JSON.parse(this.get('dlTokens'))[id].token;
} catch (e) {
return undefined;
}
}
pruneTokens() {
try {
const now = Date.now();
const tokens = JSON.parse(this.get('dlTokens'));
const keep = {};
for (const id of Object.keys(tokens)) {
const t = tokens[id];
if (t.ts > now - 7 * 86400 * 1000) {
keep[id] = t;
}
}
if (Object.keys(keep).length < Object.keys(tokens).length) {
this.set('dlTokens', JSON.stringify(keep));
}
} catch (e) {
console.error(e);
}
}
} }
export default new Storage(); export default new Storage();

View File

@@ -54,17 +54,12 @@ class Account extends Component {
createElement() { createElement() {
if (!this.enabled) { if (!this.enabled) {
return html` return html`
<send-account></send-account> <div></div>
`; `;
} }
const user = this.state.user; const user = this.state.user;
const translate = this.state.translate; const translate = this.state.translate;
this.setLocal(); this.setLocal();
if (user.loginRequired && !this.local.loggedIn) {
return html`
<send-account></send-account>
`;
}
if (!this.local.loggedIn) { if (!this.local.loggedIn) {
return html` return html`
<send-account> <send-account>

View File

@@ -30,12 +30,6 @@ function password(state) {
return html` return html`
<div class="mb-2 px-1"> <div class="mb-2 px-1">
<input
id="autocomplete-decoy"
class="hidden"
type="password"
value="lol"
/>
<div class="checkbox inline-block mr-3"> <div class="checkbox inline-block mr-3">
<input <input
id="add-password" id="add-password"
@@ -273,7 +267,7 @@ module.exports = function(state, emit, archive) {
try { try {
await navigator.share({ await navigator.share({
title: state.translate('-send-brand'), title: state.translate('-send-brand'),
text: `Download "${archive.name}" with Firefox Send: simple, safe file sharing`, text: `Download "${archive.name}" with Send: simple, safe file sharing`,
//state.translate('shareMessage', { name }), //state.translate('shareMessage', { name }),
url: archive.url url: archive.url
}); });
@@ -488,11 +482,6 @@ module.exports.empty = function(state, emit) {
> >
${state.translate('addFilesButton')} ${state.translate('addFilesButton')}
</label> </label>
<p
class="font-normal text-sm text-grey-50 dark:text-grey-40 my-6 mx-12 text-center max-w-sm leading-loose"
>
${state.translate('trustWarningMessage')}
</p>
${upsell} ${upsell}
</send-upload-area> </send-upload-area>
`; `;
@@ -528,27 +517,13 @@ module.exports.preview = function(state, emit) {
`; `;
return html` return html`
<send-archive <send-archive
class="flex flex-col max-h-full bg-white w-full dark:bg-grey-90" class="flex flex-col max-h-full bg-white p-4 w-full md:w-128 dark:bg-grey-90"
> >
<div class="border rounded py-3 px-4 dark:border-grey-70"> <div class="border rounded py-3 px-6 dark:border-grey-70">
${archiveInfo(archive)} ${details} ${archiveInfo(archive)} ${details}
</div> </div>
<div class="checkbox inline-block mt-6 mx-auto">
<input
id="trust-download"
type="checkbox"
autocomplete="off"
onchange="${toggleDownloadEnabled}"
/>
<label for="trust-download">
${state.translate('downloadTrustCheckbox', {
count: archive.manifest.files.length
})}
</label>
</div>
<button <button
id="download-btn" id="download-btn"
disabled
class="btn rounded-lg mt-4 w-full flex-shrink-0 focus:outline" class="btn rounded-lg mt-4 w-full flex-shrink-0 focus:outline"
title="${state.translate('downloadButtonLabel')}" title="${state.translate('downloadButtonLabel')}"
onclick=${download} onclick=${download}
@@ -558,13 +533,6 @@ module.exports.preview = function(state, emit) {
</send-archive> </send-archive>
`; `;
function toggleDownloadEnabled(event) {
event.stopPropagation();
const checked = event.target.checked;
const btn = document.getElementById('download-btn');
btn.disabled = !checked;
}
function download(event) { function download(event) {
event.preventDefault(); event.preventDefault();
event.target.disabled = true; event.target.disabled = true;

View File

@@ -1,29 +1,15 @@
const html = require('choo/html'); const html = require('choo/html');
const Promo = require('./promo');
const Header = require('./header'); const Header = require('./header');
const Footer = require('./footer'); const Footer = require('./footer');
function banner(state) {
if (state.layout) {
return; // server side
}
const show =
!state.capabilities.standalone &&
!state.route.startsWith('/unsupported/') &&
state.locale === 'en-US';
if (show) {
return state.cache(Promo, 'promo').render();
}
}
module.exports = function body(main) { module.exports = function body(main) {
return function(state, emit) { return function(state, emit) {
const b = html` const b = html`
<body <body
class="flex flex-col items-center font-sans md:h-screen md:bg-grey-10 dark:bg-black" class="flex flex-col items-center font-sans md:h-screen md:bg-grey-10 dark:bg-black"
> >
${banner(state, emit)} ${state.cache(Header, 'header').render()} ${state.cache(Header, 'header').render()} ${main(state, emit)}
${main(state, emit)} ${state.cache(Footer, 'footer').render()} ${state.cache(Footer, 'footer').render()}
</body> </body>
`; `;
if (state.layout) { if (state.layout) {

View File

@@ -10,9 +10,11 @@ module.exports = function(name, url) {
<h1 class="text-3xl font-bold my-4"> <h1 class="text-3xl font-bold my-4">
${state.translate('notifyUploadEncryptDone')} ${state.translate('notifyUploadEncryptDone')}
</h1> </h1>
<p class="font-normal leading-normal text-grey-80 dark:text-grey-40"> <p
class="font-normal leading-normal text-grey-80 word-break-all dark:text-grey-40"
>
${state.translate('copyLinkDescription')} <br /> ${state.translate('copyLinkDescription')} <br />
<span class="word-break-all">${name}</span> ${name}
</p> </p>
<input <input
type="text" type="text"

View File

@@ -1,6 +1,5 @@
/* global downloadMetadata */ /* global downloadMetadata */
const html = require('choo/html'); const html = require('choo/html');
const assets = require('../../common/assets');
const archiveTile = require('./archiveTile'); const archiveTile = require('./archiveTile');
const modal = require('./modal'); const modal = require('./modal');
const noStreams = require('./noStreams'); const noStreams = require('./noStreams');
@@ -32,51 +31,22 @@ function downloading(state, emit) {
} }
function preview(state, emit) { function preview(state, emit) {
if (state.fileInfo.flagged) {
return html`
<div
class="flex flex-col w-full max-w-md h-full mx-auto items-center justify-center"
>
<h1 class="text-xl font-bold">${state.translate('downloadFlagged')}</h1>
</div>
`;
}
if (!state.capabilities.streamDownload && state.fileInfo.size > BIG_SIZE) { if (!state.capabilities.streamDownload && state.fileInfo.size > BIG_SIZE) {
return noStreams(state, emit); return noStreams(state, emit);
} }
return html` return html`
<div class="w-full md:flex md:flex-row items-stretch md:flex-1"> <div
<div class="flex flex-col w-full max-w-md h-full mx-auto items-center justify-center"
class="px-2 w-full md:px-0 flex-half md:flex md:flex-col mt-12 md:pr-8 pb-4" >
<h1 class="text-3xl font-bold mb-4">
${state.translate('downloadTitle')}
</h1>
<p
class="w-full text-grey-80 text-center leading-normal dark:text-grey-40"
> >
<h1 class="text-3xl font-bold mb-4 text-center md:text-left"> ${state.translate('downloadDescription')}
${state.translate('downloadTitle')} </p>
</h1> ${archiveTile.preview(state, emit)}
<p
class="text-grey-80 leading-normal dark:text-grey-40 mb-4 text-center md:text-left"
>
${state.translate('downloadDescription')}
</p>
<p
class="text-grey-80 leading-normal dark:text-grey-40 font-semibold text-center md:mb-8 md:text-left"
>
${state.translate('downloadConfirmDescription')}
</p>
<img
class="hidden md:block dl-bg w-full"
src="${assets.get('intro.svg')}"
/>
</div>
<div
class="w-full flex-half flex-half md:flex md:flex-col md:justify-center"
>
${archiveTile.preview(state, emit)}
<a href="/report" class="link-blue mt-4 text-center block"
>${state.translate('reportFile', {
count: state.fileInfo.manifest.files.length
})}</a
>
</div>
</div> </div>
`; `;
} }
@@ -85,17 +55,9 @@ module.exports = function(state, emit) {
let content = ''; let content = '';
if (!state.fileInfo) { if (!state.fileInfo) {
state.fileInfo = createFileInfo(state); state.fileInfo = createFileInfo(state);
if (downloadMetadata.status === 404) { if (!state.fileInfo.nonce) {
return notFound(state); return notFound(state);
} }
if (!state.fileInfo.nonce) {
// coming from something like the browser back button
return location.reload();
}
}
if (state.fileInfo.dead) {
return notFound(state);
} }
if (!state.transfer && !state.fileInfo.requiresPassword) { if (!state.transfer && !state.fileInfo.requiresPassword) {
@@ -121,7 +83,7 @@ module.exports = function(state, emit) {
<main class="main"> <main class="main">
${state.modal && modal(state, emit)} ${state.modal && modal(state, emit)}
<section <section
class="relative overflow-hidden h-full w-full p-6 md:p-8 md:rounded-xl md:shadow-big md:flex md:flex-col" class="relative h-full w-full p-6 md:p-8 md:rounded-xl md:shadow-big"
> >
${content} ${content}
</section> </section>

View File

@@ -2,7 +2,6 @@ const html = require('choo/html');
const assets = require('../../common/assets'); const assets = require('../../common/assets');
module.exports = function(state) { module.exports = function(state) {
const btnText = state.user.loggedIn ? 'okButton' : 'sendYourFilesLink';
return html` return html`
<div <div
id="download-complete" id="download-complete"
@@ -11,23 +10,15 @@ module.exports = function(state) {
<h1 class="text-center text-3xl font-bold my-2"> <h1 class="text-center text-3xl font-bold my-2">
${state.translate('downloadFinish')} ${state.translate('downloadFinish')}
</h1> </h1>
<img src="${assets.get('completed.svg')}" class="my-8 h-48" /> <img src="${assets.get('completed.svg')}" class="my-12 h-48" />
<p <p class="text-grey-80 leading-normal dark:text-grey-40">
class="text-grey-80 leading-normal dark:text-grey-40 ${state.user
.loggedIn
? 'hidden'
: ''}"
>
${state.translate('trySendDescription')} ${state.translate('trySendDescription')}
</p> </p>
<p class="my-5"> <p class="my-5">
<a href="/" class="btn rounded-lg flex items-center mt-4" role="button" <a href="/" class="btn rounded-lg flex items-center mt-4" role="button"
>${state.translate(btnText)}</a >${state.translate('sendYourFilesLink')}</a
> >
</p> </p>
<p class="">
<a href="/report" class="link-blue">${state.translate('reportFile')}</a>
</p>
</div> </div>
`; `;
}; };

View File

@@ -1,58 +0,0 @@
const html = require('choo/html');
module.exports = function() {
return function(state, emit, close) {
const archive = state.fileInfo;
return html`
<send-download-dialog
class="flex flex-col w-full max-w-sm h-full mx-auto items-center justify-center"
>
<h1 class="text-3xl font-bold mb-4">
${state.translate('downloadConfirmTitle')}
</h1>
<p
class="w-full text-grey-80 text-center leading-normal dark:text-grey-40 mb-8"
>
${state.translate('downloadConfirmDescription')}
</p>
<div class="checkbox inline-block mr-3 mb-8">
<input
id="trust-download"
type="checkbox"
autocomplete="off"
onchange="${toggleDownloadEnabled}"
/>
<label for="trust-download">
${state.translate('downloadTrustCheckbox')}
</label>
</div>
<button
id="download-btn"
disabled
class="btn rounded-lg w-full flex-shrink-0"
onclick="${download}"
title="${state.translate('downloadButtonLabel')}"
>
${state.translate('downloadButtonLabel')}
</button>
<a href="/report" class="link-blue mt-8"
>${state.translate('reportFile')}</a
>
</send-download-dialog>
`;
function toggleDownloadEnabled(event) {
event.stopPropagation();
const checked = event.target.checked;
const btn = document.getElementById('download-btn');
btn.disabled = !checked;
}
function download(event) {
event.preventDefault();
close();
event.target.disabled = true;
emit('download', archive);
}
};
};

View File

@@ -21,12 +21,6 @@ module.exports = function(state, emit) {
onsubmit="${checkPassword}" onsubmit="${checkPassword}"
data-no-csrf data-no-csrf
> >
<input
id="autocomplete-decoy"
class="hidden"
type="password"
value="lol"
/>
<input <input
id="password-input" id="password-input"
class="w-full border-l border-t border-b rounded-l-lg rounded-r-none ${invalid class="w-full border-l border-t border-b rounded-l-lg rounded-r-none ${invalid
@@ -69,13 +63,8 @@ module.exports = function(state, emit) {
const input = document.getElementById('password-input'); const input = document.getElementById('password-input');
const btn = document.getElementById('password-btn'); const btn = document.getElementById('password-btn');
label.classList.add('invisible'); label.classList.add('invisible');
input.classList.remove('border-red', 'dark:border-red-40'); input.classList.remove('border-red');
btn.classList.remove( btn.classList.remove('bg-red', 'hover:bg-red', 'focus:bg-red');
'bg-red',
'hover:bg-red',
'focus:bg-red',
'dark:bg-red-40'
);
} }
function checkPassword(event) { function checkPassword(event) {

View File

@@ -3,7 +3,6 @@ const assets = require('../../common/assets');
const modal = require('./modal'); const modal = require('./modal');
module.exports = function(state, emit) { module.exports = function(state, emit) {
const btnText = state.user.loggedIn ? 'okButton' : 'sendYourFilesLink';
return html` return html`
<main class="main"> <main class="main">
${state.modal && modal(state, emit)} ${state.modal && modal(state, emit)}
@@ -14,17 +13,12 @@ module.exports = function(state, emit) {
${state.translate('errorPageHeader')} ${state.translate('errorPageHeader')}
</h1> </h1>
<img class="my-12 h-48" src="${assets.get('error.svg')}" /> <img class="my-12 h-48" src="${assets.get('error.svg')}" />
<p <p class="max-w-md text-center text-grey-80 leading-normal">
class="max-w-md text-center text-grey-80 leading-normal dark:text-grey-40 ${state
.user.loggedIn
? 'hidden'
: ''}"
>
${state.translate('trySendDescription')} ${state.translate('trySendDescription')}
</p> </p>
<p class="my-5"> <p class="my-5">
<a href="/" class="btn rounded-lg flex items-center" role="button" <a href="/" class="btn rounded-lg flex items-center" role="button"
>${state.translate(btnText)}</a >${state.translate('sendYourFilesLink')}</a
> >
</p> </p>
</section> </section>

View File

@@ -17,27 +17,15 @@ class Footer extends Component {
<footer <footer
class="flex flex-col md:flex-row items-start w-full flex-none self-start p-6 md:p-8 font-medium text-xs text-grey-60 dark:text-grey-40 md:items-center justify-between" class="flex flex-col md:flex-row items-start w-full flex-none self-start p-6 md:p-8 font-medium text-xs text-grey-60 dark:text-grey-40 md:items-center justify-between"
> >
<a class="mozilla-logo m-2" href="https://www.mozilla.org/"> <div></div>
Mozilla
</a>
<ul <ul
class="flex flex-col md:flex-row items-start md:items-center md:justify-end" class="flex flex-col md:flex-row items-start md:items-center md:justify-end"
> >
<li class="m-2">
<a href="https://www.mozilla.org/about/legal/terms/services/#send">
${translate('footerLinkLegal')}
</a>
</li>
<li class="m-2"> <li class="m-2">
<a href="/legal"> ${translate('footerLinkPrivacy')} </a> <a href="/legal"> ${translate('footerLinkPrivacy')} </a>
</li> </li>
<li class="m-2"> <li class="m-2">
<a href="https://www.mozilla.org/privacy/websites/#cookies"> <a href="https://gitlab.com/timvisee/send">Source</a>
${translate('footerLinkCookies')}
</a>
</li>
<li class="m-2">
<a href="https://github.com/mozilla/send">GitHub </a>
</li> </li>
</ul> </ul>
</footer> </footer>

View File

@@ -33,7 +33,7 @@ class Header extends Component {
alt="${this.state.translate('title')}" alt="${this.state.translate('title')}"
src="${assets.get('icon.svg')}" src="${assets.get('icon.svg')}"
/> />
<svg viewBox="66 0 340 64" class="w-48 md:w-64"> <svg class="w-48 md:w-64">
<use xlink:href="${assets.get('wordmark.svg')}#logo" /> <use xlink:href="${assets.get('wordmark.svg')}#logo" />
</svg> </svg>
</a> </a>

View File

@@ -5,9 +5,6 @@ const modal = require('./modal');
const intro = require('./intro'); const intro = require('./intro');
module.exports = function(state, emit) { module.exports = function(state, emit) {
if (state.user.loginRequired && !state.user.loggedIn) {
emit('signup-cta', 'required');
}
const archives = state.storage.files const archives = state.storage.files
.filter(archive => !archive.expired) .filter(archive => !archive.expired)
.map(archive => archiveTile(state, emit, archive)); .map(archive => archiveTile(state, emit, archive));

View File

@@ -2,7 +2,6 @@ const html = require('choo/html');
const modal = require('./modal'); const modal = require('./modal');
module.exports = function(state, emit) { module.exports = function(state, emit) {
state.modal = null;
return html` return html`
<main class="main"> <main class="main">
${state.modal && modal(state, emit)} ${state.modal && modal(state, emit)}
@@ -25,7 +24,7 @@ module.exports = function(state, emit) {
> >
<span <span
>describes how we handle that information. Below are the top >describes how we handle that information. Below are the top
things you should know about Firefox Send. You can also view the things you should know about Send. You can also view the
code</span code</span
> >
<a <a

View File

@@ -6,7 +6,7 @@ module.exports = function(state, emit) {
class="absolute inset-0 flex items-center justify-center overflow-hidden z-40 bg-white md:rounded-xl md:my-8 dark:bg-grey-90" class="absolute inset-0 flex items-center justify-center overflow-hidden z-40 bg-white md:rounded-xl md:my-8 dark:bg-grey-90"
> >
<div <div
class="h-full w-full max-h-screen absolute top-0 flex justify-center md:items-center" class="h-full w-full max-h-screen absolute top-0 flex items-center justify-center"
> >
<div class="w-full"> <div class="w-full">
${state.modal(state, emit, close)} ${state.modal(state, emit, close)}

View File

@@ -19,9 +19,9 @@ module.exports = function(state, emit) {
<form class="md:w-128" onsubmit=${submit}> <form class="md:w-128" onsubmit=${submit}>
<fieldset class="border rounded p-4 my-4" onchange=${optionChanged}> <fieldset class="border rounded p-4 my-4" onchange=${optionChanged}>
<div class="flex items-center mb-2"> <div class="flex items-center mb-2">
<svg class="h-8 w-6 mr-3 flex-shrink-0 text-white dark:text-grey-90"> <img class="mr-3 flex-shrink-0" src="${assets.get(
<use xlink:href="${assets.get('blue_file.svg')}#icon"/> 'blue_file.svg'
</svg> )}"/>
<p class="flex-grow"> <p class="flex-grow">
<h1 class="text-base font-medium word-break-all">${ <h1 class="text-base font-medium word-break-all">${
archive.name archive.name
@@ -55,11 +55,6 @@ module.exports = function(state, emit) {
value="${state.translate('copyLinkButton')}" value="${state.translate('copyLinkButton')}"
title="${state.translate('copyLinkButton')}" title="${state.translate('copyLinkButton')}"
type="submit" /> type="submit" />
<p
class="text-grey-80 leading-normal dark:text-grey-40 font-semibold text-center md:my-8 md:text-left"
>
${state.translate('downloadConfirmDescription')}
</p>
</form> </form>
</div> </div>
`; `;
@@ -69,7 +64,6 @@ module.exports = function(state, emit) {
const choice = event.target.value; const choice = event.target.value;
const button = event.currentTarget.nextElementSibling; const button = event.currentTarget.nextElementSibling;
let title = button.title; let title = button.title;
console.error(choice, title);
switch (choice) { switch (choice) {
case 'copy': case 'copy':
title = state.translate('copyLinkButton'); title = state.translate('copyLinkButton');

View File

@@ -3,7 +3,6 @@ const assets = require('../../common/assets');
const modal = require('./modal'); const modal = require('./modal');
module.exports = function(state, emit) { module.exports = function(state, emit) {
const btnText = state.user.loggedIn ? 'okButton' : 'sendYourFilesLink';
return html` return html`
<main class="main"> <main class="main">
${state.modal && modal(state, emit)} ${state.modal && modal(state, emit)}
@@ -14,22 +13,12 @@ module.exports = function(state, emit) {
${state.translate('expiredTitle')} ${state.translate('expiredTitle')}
</h1> </h1>
<img src="${assets.get('notFound.svg')}" class="my-12" /> <img src="${assets.get('notFound.svg')}" class="my-12" />
<p <p class="max-w-md text-center text-grey-80 leading-normal">
class="max-w-md text-center text-grey-80 leading-normal dark:text-grey-40 ${state
.user.loggedIn
? 'hidden'
: ''}"
>
${state.translate('trySendDescription')} ${state.translate('trySendDescription')}
</p> </p>
<p class="my-5"> <p class="my-5">
<a href="/" class="btn rounded-lg flex items-center" role="button" <a href="/" class="btn rounded-lg flex items-center" role="button"
>${state.translate(btnText)}</a >${state.translate('sendYourFilesLink')}</a
>
</p>
<p class="">
<a href="/report" class="link-blue"
>${state.translate('reportFile')}</a
> >
</p> </p>
</section> </section>

View File

@@ -1,40 +0,0 @@
const html = require('choo/html');
const Component = require('choo/component');
const assets = require('../../common/assets');
class Promo extends Component {
constructor(name, state) {
super(name);
this.state = state;
}
update() {
return false;
}
createElement() {
return html`
<send-promo
class="w-full flex-row items-center content-center justify-center bg-white text-grey-80 px-4 py-3 flex border-b border-grey-banner leading-normal dark:bg-grey-90 dark:text-grey-20 dark:border-grey-80"
>
<div class="flex items-center mx-auto">
<img
src="${assets.get('master-logo.svg')}"
class="w-6 h-6"
alt="Firefox"
/>
<span class="ml-2 sm:ml-4 text-xs sm:text-base">
${`Like Firefox Send? You'll love our new full-device VPN. `}
<a
class="underline link-blue"
href="https://vpn.mozilla.org/?utm_source=send.firefox.com&utm_medium=referral&utm_content=Try+Firefox+Private+Network&utm_campaign=top-bar"
>${`Get it today`}</a
>
</span>
</div>
</send-promo>
`;
}
}
module.exports = Promo;

View File

@@ -1,139 +0,0 @@
const html = require('choo/html');
const raw = require('choo/html/raw');
const assets = require('../../common/assets');
const REPORTABLES = ['Malware', 'Pii', 'Abuse'];
module.exports = function(state, emit) {
let submitting = false;
const file = state.fileInfo;
if (!file) {
return html`
<main class="main">
<section
class="flex flex-col items-center justify-center h-full w-full p-6 md:p-8 overflow-hidden md:rounded-xl md:shadow-big"
>
<p class="text-xl text-center mb-4 leading-normal">
${state.translate('reportUnknownDescription')}
</p>
<p class="text-center">
${raw(
replaceLinks(state.translate('reportReasonCopyright'), [
'https://www.mozilla.org/about/legal/report-infringement/'
])
)}
</p>
</section>
</main>
`;
}
if (file.reported) {
return html`
<main class="main">
<section
class="flex flex-col items-center justify-center h-full w-full p-6 md:p-8 overflow-hidden md:rounded-xl md:shadow-big"
>
<h1 class="text-center text-3xl font-bold my-2">
${state.translate('reportedTitle')}
</h1>
<p class="max-w-md text-center leading-normal">
${state.translate('reportedDescription')}
</p>
<img src="${assets.get('notFound.svg')}" class="my-12" />
<p class="my-5">
<a href="/" class="btn rounded-lg flex items-center" role="button"
>${state.translate('okButton')}</a
>
</p>
</section>
</main>
`;
}
return html`
<main class="main">
<section
class="relative h-full w-full p-6 md:p-8 md:rounded-xl md:shadow-big"
>
<div
class="flex flex-col w-full max-w-sm h-full mx-auto items-center justify-center"
>
<h1 class="text-2xl font-bold mb-4">
${state.translate('reportFile')}
</h1>
<p class="mb-4 leading-normal font-semibold">
${state.translate('reportDescription')}
</p>
<form onsubmit="${report}" data-no-csrf>
<fieldset onchange="${optionChanged}">
<ul
class="list-none p-4 mb-6 rounded-sm bg-grey-10 dark:bg-black"
>
${REPORTABLES.map(
reportable =>
html`
<li class="mb-2 leading-normal">
<label
for="${reportable.toLowerCase()}"
class="flex items-center"
>
<input
type="radio"
name="reason"
id="${reportable.toLowerCase()}"
value="${reportable.toLowerCase()}"
class="mr-2 my-2 w-4 h-4 flex-none"
/>
${state.translate(`reportReason${reportable}`)}
</label>
</li>
`
)}
<li class="mt-4 mb-2 leading-normal">
${raw(
replaceLinks(state.translate('reportReasonCopyright'), [
'https://www.mozilla.org/about/legal/report-infringement/'
])
)}
</li>
</ul>
</fieldset>
<input
type="submit"
disabled
class="btn rounded-lg w-full flex-shrink-0 focus:outline"
title="${state.translate('reportButton')}"
value="${state.translate('reportButton')}"
/>
</form>
</div>
</section>
</main>
`;
function optionChanged(event) {
event.stopPropagation();
const button = event.currentTarget.nextElementSibling;
button.disabled = false;
}
function report(event) {
event.stopPropagation();
event.preventDefault();
if (submitting) {
return;
}
submitting = true;
state.fileInfo.reported = true;
const form = event.target;
emit('report', { reason: form.reason.value });
}
function replaceLinks(str, urls) {
let i = 0;
const s = str.replace(
/<a>([^<]+)<\/a>/g,
(m, v) => `<a class="text-blue" href="${urls[i++]}">${v}</a>`
);
return `<p>${s}</p>`;
}
};

View File

@@ -9,9 +9,11 @@ module.exports = function(name, url) {
<h1 class="text-3xl font-bold my-4"> <h1 class="text-3xl font-bold my-4">
${state.translate('notifyUploadEncryptDone')} ${state.translate('notifyUploadEncryptDone')}
</h1> </h1>
<p class="font-normal leading-normal text-grey-80 dark:text-grey-40"> <p
class="font-normal leading-normal text-grey-80 word-break-all dark:text-grey-40"
>
${state.translate('shareLinkDescription')}<br /> ${state.translate('shareLinkDescription')}<br />
<span class="word-break-all">${name}</span> ${name}
</p> </p>
<input <input
type="text" type="text"

View File

@@ -1,19 +1,22 @@
const html = require('choo/html'); const html = require('choo/html');
const assets = require('../../common/assets'); const assets = require('../../common/assets');
const { bytes } = require('../utils'); const { bytes, platform } = require('../utils');
const { canceledSignup, submittedSignup } = require('../metrics'); const { canceledSignup, submittedSignup } = require('../metrics');
module.exports = function(trigger) { module.exports = function(trigger) {
return function(state, emit, close) { return function(state, emit, close) {
const DAYS = Math.floor(state.LIMITS.MAX_EXPIRE_SECONDS / 86400); const DAYS = Math.floor(state.LIMITS.MAX_EXPIRE_SECONDS / 86400);
const hidden = platform() === 'android' ? 'hidden' : '';
let submitting = false; let submitting = false;
return html` return html`
<send-signup-dialog <send-signup-dialog
class="flex flex-col justify-center my-16 md:my-0 px-8 md:px-24 w-full h-full" class="flex flex-col lg:flex-row justify-center px-8 md:px-24 w-full h-full"
> >
<img src="${assets.get('master-logo.svg')}" class="h-16 mt-1 mb-4" /> <img src="${assets.get('master-logo.svg')}" class="h-16 mt-1 mb-4" />
<section class="flex flex-col flex-shrink-0 self-center"> <section
<h1 class="text-3xl font-bold text-center"> class="flex flex-col flex-shrink-0 self-center lg:mx-6 lg:max-w-xs"
>
<h1 class="text-3xl font-bold text-center lg:text-left">
${state.translate('accountBenefitTitle')} ${state.translate('accountBenefitTitle')}
</h1> </h1>
<ul <ul
@@ -29,14 +32,17 @@ module.exports = function(trigger) {
${state.translate('accountBenefitTimeLimit', { count: DAYS })} ${state.translate('accountBenefitTimeLimit', { count: DAYS })}
</li> </li>
<li>${state.translate('accountBenefitSync')}</li> <li>${state.translate('accountBenefitSync')}</li>
<li>${state.translate('accountBenefitMoz')}</li>
</ul> </ul>
</section> </section>
<section class="flex flex-col flex-grow m-4 md:self-center md:w-128"> <section
class="flex flex-col flex-grow m-4 md:self-center md:w-128 lg:max-w-xs"
>
<form onsubmit=${submitEmail} data-no-csrf> <form onsubmit=${submitEmail} data-no-csrf>
<input <input
id="email-input" id="email-input"
type="email" type="email"
class="hidden border rounded-lg w-full px-2 py-1 h-12 mb-3 text-lg text-grey-70 leading-loose dark:bg-grey-80 dark:text-white" class="${hidden} border rounded-lg w-full px-2 py-1 h-12 mb-3 text-lg text-grey-70 leading-loose dark:bg-grey-80 dark:text-white"
placeholder=${state.translate('emailPlaceholder')} placeholder=${state.translate('emailPlaceholder')}
/> />
<input <input
@@ -47,17 +53,13 @@ module.exports = function(trigger) {
type="submit" type="submit"
/> />
</form> </form>
${state.user.loginRequired <button
? '' class="my-3 link-blue font-medium"
: html` title="${state.translate('deletePopupCancel')}"
<button onclick=${cancel}
class="my-3 link-blue font-medium" >
title="${state.translate('deletePopupCancel')}" ${state.translate('deletePopupCancel')}
onclick=${cancel} </button>
>
${state.translate('deletePopupCancel')}
</button>
`}
</section> </section>
</send-signup-dialog> </send-signup-dialog>
`; `;

View File

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

View File

@@ -76,10 +76,6 @@ export default class User {
return this.info.access_token; return this.info.access_token;
} }
get refreshToken() {
return this.info.refresh_token;
}
get maxSize() { get maxSize() {
return this.loggedIn return this.loggedIn
? this.limits.MAX_FILE_SIZE ? this.limits.MAX_FILE_SIZE
@@ -98,10 +94,6 @@ export default class User {
: this.limits.ANON.MAX_DOWNLOADS; : this.limits.ANON.MAX_DOWNLOADS;
} }
get loginRequired() {
return this.authConfig && this.authConfig.fxa_required;
}
async metricId() { async metricId() {
return this.loggedIn ? hashId(this.info.uid) : undefined; return this.loggedIn ? hashId(this.info.uid) : undefined;
} }
@@ -143,7 +135,6 @@ export default class User {
const code_challenge = await preparePkce(this.storage); const code_challenge = await preparePkce(this.storage);
const options = { const options = {
action: 'email', action: 'email',
access_type: 'offline',
client_id: this.authConfig.client_id, client_id: this.authConfig.client_id,
code_challenge, code_challenge,
code_challenge_method: 'S256', code_challenge_method: 'S256',
@@ -201,69 +192,12 @@ export default class User {
}); });
const userInfo = await infoResponse.json(); const userInfo = await infoResponse.json();
userInfo.access_token = auth.access_token; userInfo.access_token = auth.access_token;
userInfo.refresh_token = auth.refresh_token;
userInfo.fileListKey = await getFileListKey(this.storage, auth.keys_jwe); userInfo.fileListKey = await getFileListKey(this.storage, auth.keys_jwe);
this.info = userInfo; this.info = userInfo;
this.storage.remove('pkceVerifier'); this.storage.remove('pkceVerifier');
} }
async refresh() { logout() {
if (!this.refreshToken) {
return false;
}
try {
const tokenResponse = await fetch(this.authConfig.token_endpoint, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
client_id: this.authConfig.client_id,
grant_type: 'refresh_token',
refresh_token: this.refreshToken
})
});
if (tokenResponse.ok) {
const auth = await tokenResponse.json();
const info = { ...this.info, access_token: auth.access_token };
this.info = info;
return true;
}
} catch (e) {
console.error(e);
}
await this.logout();
return false;
}
async logout() {
try {
if (this.refreshToken) {
await fetch(this.authConfig.revocation_endpoint, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
refresh_token: this.refreshToken
})
});
}
if (this.bearerToken) {
await fetch(this.authConfig.revocation_endpoint, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
token: this.bearerToken
})
});
}
} catch (e) {
console.error(e);
// oh well, we tried
}
this.storage.clearLocalFiles(); this.storage.clearLocalFiles();
this.info = {}; this.info = {};
} }
@@ -277,14 +211,6 @@ export default class User {
const key = b64ToArray(this.info.fileListKey); const key = b64ToArray(this.info.fileListKey);
const sha = await crypto.subtle.digest('SHA-256', key); const sha = await crypto.subtle.digest('SHA-256', key);
const kid = arrayToB64(new Uint8Array(sha)).substring(0, 16); const kid = arrayToB64(new Uint8Array(sha)).substring(0, 16);
const retry = async () => {
const refreshed = await this.refresh();
if (refreshed) {
return await this.syncFileList();
} else {
return { incoming: true };
}
};
try { try {
const encrypted = await getFileList(this.bearerToken, kid); const encrypted = await getFileList(this.bearerToken, kid);
const decrypted = await streamToArrayBuffer( const decrypted = await streamToArrayBuffer(
@@ -293,7 +219,8 @@ export default class User {
list = JSON.parse(textDecoder.decode(decrypted)); list = JSON.parse(textDecoder.decode(decrypted));
} catch (e) { } catch (e) {
if (e.message === '401') { if (e.message === '401') {
return retry(e); this.logout();
return { incoming: true };
} }
} }
changes = await this.storage.merge(list); changes = await this.storage.merge(list);
@@ -309,9 +236,7 @@ export default class User {
); );
await setFileList(this.bearerToken, kid, encrypted); await setFileList(this.bearerToken, kid, encrypted);
} catch (e) { } catch (e) {
if (e.message === '401') { //
return retry(e);
}
} }
return changes; return changes;
} }

View File

@@ -142,16 +142,12 @@ function openLinksInNewTab(links, should = true) {
function browserName() { function browserName() {
try { try {
// order of these matters
if (/firefox/i.test(navigator.userAgent)) { if (/firefox/i.test(navigator.userAgent)) {
return 'firefox'; return 'firefox';
} }
if (/edge/i.test(navigator.userAgent)) { if (/edge/i.test(navigator.userAgent)) {
return 'edge'; return 'edge';
} }
if (/edg/i.test(navigator.userAgent)) {
return 'edgium';
}
if (/trident/i.test(navigator.userAgent)) { if (/trident/i.test(navigator.userAgent)) {
return 'ie'; return 'ie';
} }
@@ -276,15 +272,7 @@ function setTranslate(t) {
translate = t; translate = t;
} }
function concat(b1, b2) {
const result = new Uint8Array(b1.length + b2.length);
result.set(b1, 0);
result.set(b2, b1.length);
return result;
}
module.exports = { module.exports = {
concat,
locale, locale,
fadeOut, fadeOut,
delay, delay,

View File

@@ -1,4 +1,4 @@
import crc32 from './crc32'; import crc32 from 'crc/crc32';
const encoder = new TextEncoder(); const encoder = new TextEncoder();

View File

@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 578.55 185.54"><path d="M503.5 117.21c0 4.92 2.37 8.82 9 8.82 7.8 0 16.11-5.6 16.61-18.31a80.86 80.86 0 0 0-11-1c-7.83-.01-14.61 2.19-14.61 10.49z"/><path d="M0 0v185.54h578.55V0zm163.78 139.93h-32V96.87c0-13.22-4.41-18.31-13.05-18.31-10.51 0-14.75 7.46-14.75 18.14v26.64h10.12v16.61h-32V96.87c0-13.22-4.4-18.31-13.05-18.31-10.51 0-14.75 7.46-14.75 18.14v26.64h14.54v16.61H22.22v-16.61h10.17V80.09h-11V63.48h32.87V75c4.58-8.13 12.55-13.05 23.22-13.05 11 0 21.19 5.26 24.92 16.45 4.24-10.17 12.88-16.45 24.92-16.45 13.73 0 26.28 8.31 26.28 26.45v34.94h10.17zm48.65 1.69c-23.56 0-39.84-14.41-39.84-38.82 0-22.38 13.56-40.86 41-40.86s40.86 18.48 40.86 39.84c.02 24.42-17.61 39.85-42.02 39.85zm121.72-1.69h-66.8l-2.2-11.53 42-48.32h-23.9l-3.39 11.87-15.77-1.69 2.71-26.79H334L335.69 75l-42.4 48.34H318l3.56-11.87 17.29 1.69zm41.36 0h-22.89v-27.46h22.89zm0-49h-22.89V63.48h22.89zm12 49L420.6 23.34h21.53l-33.06 116.59zm44.42 0L465 23.34h21.53l-33.04 116.59zm113.92 1.69c-10.17 0-15.76-5.94-16.78-15.26-4.41 7.8-12.21 15.26-24.58 15.26-11 0-23.56-5.94-23.56-21.87 0-18.82 18.14-23.22 35.6-23.22a100.23 100.23 0 0 1 12.55.68v-2.54c0-7.8-.17-17.12-12.55-17.12-4.58 0-8.14.34-11.7 2.2L502 90.6l-17.46-1.87 3.39-19.83c13.39-5.43 20.17-7 32.72-7 16.45 0 30.35 8.48 30.35 25.94v33.23c0 4.41 1.69 5.94 5.26 5.94a11.5 11.5 0 0 0 3.22-.51l.17 11.53a29.57 29.57 0 0 1-13.77 3.6z"/><path d="M213.27 78.73c-11.19 0-18.14 8.3-18.14 22.72 0 13.22 6.1 23.39 18 23.39 11.36 0 18.82-9.15 18.82-23.73-.03-15.43-8.33-22.38-18.68-22.38z"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -1,6 +1,61 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<symbol id="logo"> <svg
<path d="M84,48h5.83V35.87H103.3V30.45H89.83V23.51H103.3V18H84Zm23.57,0h5.79V25.81h-5.79Zm2.88-32.12a3.46,3.46,0,0,0-2.59,1,3.62,3.62,0,0,0-1,2.65,3.57,3.57,0,0,0,1,2.59,3.52,3.52,0,0,0,2.61,1,3.46,3.46,0,0,0,3.65-3.26c0-.12,0-.23,0-.35a3.71,3.71,0,0,0-1-2.65,3.5,3.5,0,0,0-2.67-1Zm19.14,9.53a7.22,7.22,0,0,0-3.72.93,5.82,5.82,0,0,0-2.4,2.89V25.81h-5.59V48h5.63V36.29a5.27,5.27,0,0,1,1.31-4,4.94,4.94,0,0,1,3.49-1.21,6.33,6.33,0,0,1,1.73.23,4,4,0,0,1,1.23.55l2-5.59a7.51,7.51,0,0,0-1.66-.61,8.11,8.11,0,0,0-2-.26Zm23.94,3.19a11.15,11.15,0,0,0-3.61-2.37,12.08,12.08,0,0,0-4.6-.86,11.62,11.62,0,0,0-8.3,3.37,11.17,11.17,0,0,0-2.44,3.67,11.59,11.59,0,0,0-.89,4.54,12.24,12.24,0,0,0,.83,4.52,10.52,10.52,0,0,0,2.36,3.66,10.93,10.93,0,0,0,3.71,2.44,12.75,12.75,0,0,0,4.85.88,12.15,12.15,0,0,0,6.12-1.39,13.25,13.25,0,0,0,4.11-3.74L151,40.6a6.23,6.23,0,0,1-2.18,2.15,6.36,6.36,0,0,1-3.33.8,6.7,6.7,0,0,1-4.13-1.25,6,6,0,0,1-2.23-3.43h17.62V36.74a11.71,11.71,0,0,0-.87-4.56,10.5,10.5,0,0,0-2.35-3.59Zm-14.21,5.85a6.38,6.38,0,0,1,2.26-3.12,6.11,6.11,0,0,1,3.74-1.15,6.26,6.26,0,0,1,3.73,1.08,5.56,5.56,0,0,1,2.1,3.19ZM167,16.08a6.05,6.05,0,0,0-2.91,1.54,6.15,6.15,0,0,0-1.56,2.89,18.1,18.1,0,0,0-.48,4.52v.78H158.4v5.1h3.65V48h5.63V30.91H173v-5.1h-5.3V24.75a13.34,13.34,0,0,1,.12-2,2,2,0,0,1,.6-1.19,2.45,2.45,0,0,1,1.33-.57,15.25,15.25,0,0,1,2.34-.15H173V15.63h-1.48A19.06,19.06,0,0,0,167,16.08Zm27.4,12.65a12,12,0,0,0-16.72,0,10.87,10.87,0,0,0-2.46,3.67,11.61,11.61,0,0,0-.89,4.5,11.46,11.46,0,0,0,7.07,10.64,11.73,11.73,0,0,0,4.64.9,12,12,0,0,0,4.66-.9,11.26,11.26,0,0,0,3.72-2.49,11.83,11.83,0,0,0,2.46-3.67,11.31,11.31,0,0,0,.9-4.48A11.43,11.43,0,0,0,194.4,28.73ZM191.7,39.3a5.88,5.88,0,0,1-1.29,2,6.53,6.53,0,0,1-1.93,1.31,6,6,0,0,1-4.76,0,6.34,6.34,0,0,1-1.93-1.31,6.06,6.06,0,0,1-1.3-2,6.48,6.48,0,0,1,0-4.86,5.76,5.76,0,0,1,1.3-2,6.08,6.08,0,0,1,1.93-1.32,6,6,0,0,1,4.76,0,6.37,6.37,0,0,1,1.93,1.32,5.73,5.73,0,0,1,1.29,2A6.39,6.39,0,0,1,191.7,39.3Zm29.47-13.49h-6.65l-4.68,6.57-4.64-6.57h-6.74l7.84,10.8L198,48h6.82l5-6.94L214.89,48h6.86l-8.46-11.34Zm34,7.46a12.88,12.88,0,0,0-3.37-1.44c-1.25-.34-2.46-.63-3.63-.88l-3.08-.7a10.64,10.64,0,0,1-2.51-.86A4.54,4.54,0,0,1,240.87,28a3.61,3.61,0,0,1-.62-2.19,4.8,4.8,0,0,1,1.58-3.7c1.06-1,2.73-1.44,5-1.44a9.84,9.84,0,0,1,5.07,1.17,10.47,10.47,0,0,1,3.39,3.23l2.79-2.18A15.22,15.22,0,0,0,253.45,19a13.8,13.8,0,0,0-6.59-1.44,12.13,12.13,0,0,0-4.14.66A10.33,10.33,0,0,0,239.53,20a7.53,7.53,0,0,0-2.05,2.63,7.41,7.41,0,0,0-.72,3.24,6.7,6.7,0,0,0,.84,3.53,7.06,7.06,0,0,0,2.2,2.22A11.11,11.11,0,0,0,242.86,33c1.13.32,2.29.6,3.47.84l3.26.74a12.63,12.63,0,0,1,2.8,1,5.86,5.86,0,0,1,2,1.56,3.88,3.88,0,0,1,.74,2.42,5.2,5.2,0,0,1-1.81,4.09A7.83,7.83,0,0,1,248,45.2a11,11,0,0,1-9.89-5.38l-3,2.34a15.86,15.86,0,0,0,5.23,4.54,16.06,16.06,0,0,0,7.7,1.7,12.58,12.58,0,0,0,4.38-.72,10.14,10.14,0,0,0,3.3-2,8.79,8.79,0,0,0,2.1-2.85,8.09,8.09,0,0,0,.74-3.39,6.94,6.94,0,0,0-1-3.8,7.71,7.71,0,0,0-2.42-2.37Zm27.51-4.72a10.53,10.53,0,0,0-3.58-2.34,11.89,11.89,0,0,0-4.49-.84,11.6,11.6,0,0,0-4.62.9,11.35,11.35,0,0,0-3.66,2.46A11.84,11.84,0,0,0,263,37a12.21,12.21,0,0,0,.82,4.51,10.53,10.53,0,0,0,2.36,3.64,11.24,11.24,0,0,0,3.7,2.42,12.41,12.41,0,0,0,4.82.88A11.68,11.68,0,0,0,280.82,47,12.84,12.84,0,0,0,285,42.82l-2.88-1.69a7.85,7.85,0,0,1-7.43,4.27,9,9,0,0,1-3.22-.53,8.21,8.21,0,0,1-2.55-1.5,8,8,0,0,1-1.78-2.28,7.79,7.79,0,0,1-.87-2.91h19.59V36.66a11.75,11.75,0,0,0-.86-4.54,10.92,10.92,0,0,0-2.35-3.57ZM266.4,35.22a8.88,8.88,0,0,1,1-2.73,8.55,8.55,0,0,1,1.79-2.18,8,8,0,0,1,2.44-1.43,8.31,8.31,0,0,1,3-.52,7.45,7.45,0,0,1,7.84,6.86ZM308.82,28a8.11,8.11,0,0,0-3-2,10.89,10.89,0,0,0-3.92-.67,9.06,9.06,0,0,0-4.58,1.14,8.76,8.76,0,0,0-3.14,3V25.82h-3.29V48h3.37V35.67a7.92,7.92,0,0,1,.53-2.93,7,7,0,0,1,1.48-2.3,6.46,6.46,0,0,1,2.22-1.5,7,7,0,0,1,2.75-.54,6.33,6.33,0,0,1,5,1.93A7.46,7.46,0,0,1,308,35.51V48h3.41V35.34a12.46,12.46,0,0,0-.66-4.19A8.68,8.68,0,0,0,308.82,28Zm27-12.42v14.1a8.14,8.14,0,0,0-1.58-1.83,10.08,10.08,0,0,0-2-1.36,10.39,10.39,0,0,0-2.3-.84,10.22,10.22,0,0,0-2.4-.28,11.63,11.63,0,0,0-4.4.84,11.09,11.09,0,0,0-3.59,2.38,11.3,11.3,0,0,0-2.42,3.65,12.81,12.81,0,0,0,0,9.32,11.56,11.56,0,0,0,2.4,3.66,10.58,10.58,0,0,0,3.59,2.38,11.77,11.77,0,0,0,4.42.84,9.69,9.69,0,0,0,2.4-.31,11,11,0,0,0,2.3-.86,9.72,9.72,0,0,0,2-1.37,8.75,8.75,0,0,0,1.58-1.85v4h3.33V15.59Zm-.37,24.58a8.3,8.3,0,0,1-10.85,4.47h0a7.68,7.68,0,0,1-2.6-1.76,7.88,7.88,0,0,1-1.73-2.67,8.93,8.93,0,0,1-.62-3.35,8.67,8.67,0,0,1,.62-3.3A8,8,0,0,1,322,30.89a8.17,8.17,0,0,1,2.6-1.79,8.27,8.27,0,0,1,6.51,0,8.64,8.64,0,0,1,2.63,1.81,7.85,7.85,0,0,1,1.72,2.67,8.67,8.67,0,0,1,.62,3.26,8.86,8.86,0,0,1-.65,3.33Z" fill="currentColor"/> xmlns:dc="http://purl.org/dc/elements/1.1/"
</symbol> xmlns:cc="http://creativecommons.org/ns#"
<use xlink:href="#logo"/> xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
</svg> xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg7"
sodipodi:docname="wordmark.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata13">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs11" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1874"
inkscape:window-height="1016"
id="namedview9"
showgrid="false"
inkscape:zoom="3.337544"
inkscape:cx="82.487885"
inkscape:cy="47.814478"
inkscape:window-x="1966"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:current-layer="svg7" />
<symbol
id="logo"
viewBox="66 0 340 64">
<path
d="m 105.17,33.27 c -1.04895,-0.638175 -2.18377,-1.123082 -3.37,-1.44 -1.25,-0.34 -2.46,-0.63 -3.63,-0.88 l -3.08,-0.7 C 94.22073,30.069182 93.37751,29.78027 92.58,29.39 91.90449,29.074134 91.31719,28.596738 90.87,28 c -0.43741,-0.644047 -0.65489,-1.412243 -0.62,-2.19 -0.0406,-1.405196 0.53693,-2.75754 1.58,-3.7 1.06,-1 2.73,-1.44 5,-1.44 1.76437,-0.07198 3.51559,0.332147 5.07,1.17 1.35935,0.80694 2.51833,1.911219 3.39,3.23 l 2.79,-2.18 c -1.26761,-1.5933 -2.84201,-2.916072 -4.63,-3.89 -2.04373,-1.017745 -4.30804,-1.512526 -6.59,-1.44 -1.40785,-0.02195 -2.80876,0.201387 -4.14,0.66 -1.16063,0.399115 -2.24085,1.001871 -3.19,1.78 -0.8713,0.712445 -1.5718,1.611145 -2.05,2.63 -0.4819,1.011666 -0.72807,2.119452 -0.72,3.24 -0.05,1.231532 0.24064,2.452997 0.84,3.53 0.55827,0.895068 1.31002,1.653654 2.2,2.22 0.94422,0.612326 1.97599,1.077636 3.06,1.38 1.13,0.32 2.29,0.6 3.47,0.84 l 3.26,0.74 c 0.96945,0.22193 1.90929,0.557589 2.8,1 0.77256,0.367753 1.45522,0.900225 2,1.56 0.51019,0.701297 0.77072,1.553301 0.74,2.42 0.0438,1.566414 -0.62122,3.069031 -1.81,4.09 -1.52512,1.147855 -3.41702,1.699065 -5.32,1.55 -4.03416,0.15747 -7.83041,-1.90763 -9.89,-5.38 l -3,2.34 c 1.3876,1.880136 3.1735,3.430427 5.23,4.54 2.3855,1.197767 5.03194,1.782045 7.7,1.7 1.49114,0.02151 2.97422,-0.222285 4.38,-0.72 1.21788,-0.44929 2.33816,-1.128248 3.3,-2 0.88604,-0.797749 1.60053,-1.767412 2.1,-2.85 0.48895,-1.06318 0.74142,-2.219779 0.74,-3.39 0.0397,-1.336553 -0.30755,-2.656119 -1,-3.8 -0.62101,-0.95962 -1.44763,-1.769154 -2.42,-2.37 z m 27.51,-4.72 c -1.0207,-1.016684 -2.23916,-1.813109 -3.58,-2.34 -1.42831,-0.567565 -2.95311,-0.852828 -4.49,-0.84 -1.58532,-0.01887 -3.15769,0.287432 -4.62,0.9 -1.3691,0.572827 -2.61257,1.408599 -3.66,2.46 -2.1451,2.217513 -3.33989,5.184759 -3.33,8.27 -0.0138,1.54162 0.26439,3.071916 0.82,4.51 0.5255,1.363982 1.32922,2.603618 2.36,3.64 1.06096,1.043663 2.31862,1.866239 3.7,2.42 1.53222,0.610739 3.17082,0.909903 4.82,0.88 2.13421,0.08534 4.25095,-0.416179 6.12,-1.45 1.69947,-1.049265 3.13073,-2.480527 4.18,-4.18 l -2.88,-1.69 c -1.41279,2.768876 -4.32635,4.443291 -7.43,4.27 -1.09666,0.02103 -2.18793,-0.158593 -3.22,-0.53 -0.93382,-0.341463 -1.79784,-0.849713 -2.55,-1.5 -0.72694,-0.645531 -1.33013,-1.418157 -1.78,-2.28 -0.47812,-0.903522 -0.77374,-1.892313 -0.87,-2.91 h 19.59 v -1.52 c 0.0166,-1.555338 -0.27566,-3.098506 -0.86,-4.54 -0.54053,-1.333176 -1.33916,-2.54641 -2.35,-3.57 z m -16.28,6.67 c 0.18109,-0.958759 0.51895,-1.881119 1,-2.73 0.47186,-0.820757 1.07675,-1.557447 1.79,-2.18 0.72195,-0.61779 1.5482,-1.102022 2.44,-1.43 0.95944,-0.356614 1.97651,-0.532906 3,-0.52 4.04346,-0.224227 7.5255,2.82256 7.84,6.86 z M 158.82,28 c -0.83726,-0.883328 -1.8626,-1.566885 -3,-2 -1.25447,-0.462049 -2.58329,-0.689169 -3.92,-0.67 -1.60057,-0.03131 -3.18086,0.362037 -4.58,1.14 -1.28188,0.720594 -2.36173,1.752297 -3.14,3 v -3.65 h -3.29 V 48 h 3.37 V 35.67 c -0.0102,-1.001391 0.16968,-1.995625 0.53,-2.93 0.3373,-0.856524 0.84023,-1.638106 1.48,-2.3 0.62704,-0.649648 1.38331,-1.160636 2.22,-1.5 0.87089,-0.363534 1.8063,-0.547214 2.75,-0.54 1.87023,-0.128793 3.70135,0.578019 5,1.93 1.22147,1.441484 1.85048,3.292756 1.76,5.18 V 48 h 3.41 V 35.34 c 0.0211,-1.424123 -0.20214,-2.84132 -0.66,-4.19 -0.40985,-1.176324 -1.06809,-2.250653 -1.93,-3.15 z m 27,-12.42 v 14.1 c -0.43264,-0.685249 -0.96517,-1.302051 -1.58,-1.83 -0.60967,-0.53196 -1.28117,-0.98858 -2,-1.36 -0.73088,-0.369676 -1.5029,-0.651634 -2.3,-0.84 -0.78611,-0.187908 -1.59174,-0.281898 -2.4,-0.28 -1.50724,-0.0078 -3.00162,0.277523 -4.4,0.84 -1.34071,0.551089 -2.56038,1.35967 -3.59,2.38 -1.03697,1.047216 -1.85907,2.287165 -2.42,3.65 -1.17023,2.996466 -1.17023,6.323534 0,9.32 0.55964,1.361695 1.37424,2.603955 2.4,3.66 1.02081,1.031107 2.2428,1.841226 3.59,2.38 1.40561,0.561607 2.90636,0.846817 4.42,0.84 0.80981,-0.0026 1.6161,-0.106786 2.4,-0.31 0.79636,-0.199929 1.56783,-0.488392 2.3,-0.86 0.72123,-0.371416 1.39312,-0.831661 2,-1.37 0.61025,-0.540083 1.14205,-1.162767 1.58,-1.85 v 4 h 3.33 V 15.59 Z m -0.37,24.58 c -1.76276,4.229524 -6.6195,6.23041 -10.85,4.47 v 0 c -0.97862,-0.401365 -1.86378,-1.000551 -2.6,-1.76 -0.7522,-0.76312 -1.34086,-1.671634 -1.73,-2.67 -0.41974,-1.066531 -0.63023,-2.203893 -0.62,-3.35 -0.0103,-1.129892 0.20027,-2.250911 0.62,-3.3 0.39328,-0.993283 0.98151,-1.897738 1.73,-2.66 0.74207,-0.76001 1.62521,-1.368023 2.6,-1.79 2.07874,-0.890012 4.43126,-0.890012 6.51,0 0.98149,0.434716 1.87338,1.048526 2.63,1.81 0.74927,0.763509 1.33458,1.672102 1.72,2.67 0.41464,1.036611 0.62516,2.14355 0.62,3.26 -1.3e-4,1.141508 -0.22084,2.272237 -0.65,3.33 z"
id="path2"
inkscape:connector-curvature="0"
style="fill:currentColor"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
</symbol>
<use
xlink:href="#logo"
id="use5" />
</svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@@ -2,5 +2,4 @@ last 2 chrome versions
last 2 firefox versions last 2 firefox versions
last 2 safari versions last 2 safari versions
last 2 edge versions last 2 edge versions
edge 18
firefox esr firefox esr

View File

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

View File

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

View File

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

View File

@@ -1,6 +1,12 @@
## Setup ## Setup
Run `docker build -t send:latest .` to create an image or `docker-compose up` to run a full testable stack. *We don't recommend using docker-compose for production.* Use `registry.gitlab.com/timvisee/send:latest` from [`timvisee/send`'s registry](https://gitlab.com/timvisee/send/container_registry) for the latest Docker image.
```bash
docker pull registry.gitlab.com/timvisee/send:latest
```
Or run `docker build -t send:latest .` to create an image locally or `docker-compose up` to run a full testable stack. *We don't recommend using docker-compose for production.*
## Environment variables: ## Environment variables:
@@ -24,5 +30,5 @@ $ docker run --net=host -e 'NODE_ENV=production' \
-e 'SENTRY_CLIENT=https://51e23d7263e348a7a3b90a5357c61cb2@sentry.prod.mozaws.net/168' \ -e 'SENTRY_CLIENT=https://51e23d7263e348a7a3b90a5357c61cb2@sentry.prod.mozaws.net/168' \
-e 'SENTRY_DSN=https://51e23d7263e348a7a3b90a5357c61cb2:65e23d7263e348a7a3b90a5357c61c44@sentry.prod.mozaws.net/168' \ -e 'SENTRY_DSN=https://51e23d7263e348a7a3b90a5357c61cb2:65e23d7263e348a7a3b90a5357c61c44@sentry.prod.mozaws.net/168' \
-e 'BASE_URL=https://send.firefox.com' \ -e 'BASE_URL=https://send.firefox.com' \
mozilla/send:latest registry.gitlab.com/timvisee/send:latest
``` ```

View File

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

View File

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

3084
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,10 +1,13 @@
{ {
"name": "firefox-send", "name": "send",
"description": "File Sharing Experiment", "description": "File Sharing Experiment",
"version": "3.0.22", "version": "3.1.1",
"author": "Mozilla (https://mozilla.org)", "author": "Mozilla (https://mozilla.org)",
"repository": "mozilla/send", "contributors": [
"homepage": "https://github.com/mozilla/send/", "Tim Visee <3a4fb3964f@sinenomine.email> (https://timvisee.com)"
],
"repository": "gitlab:timvisee/send",
"homepage": "https://gitlab.com/timvisee/send/",
"license": "MPL-2.0", "license": "MPL-2.0",
"private": true, "private": true,
"scripts": { "scripts": {
@@ -23,11 +26,11 @@
"release": "npm-run-all contributors changelog", "release": "npm-run-all contributors changelog",
"test": "npm-run-all test:*", "test": "npm-run-all test:*",
"test:backend": "nyc --reporter=lcovonly mocha --reporter=min test/backend", "test:backend": "nyc --reporter=lcovonly mocha --reporter=min test/backend",
"test:frontend": "cross-env NODE_ENV=development FXA_REQUIRED=false node test/frontend/runner.js", "test:frontend": "cross-env NODE_ENV=development node test/frontend/runner.js",
"test:report": "nyc report --reporter=html", "test:report": "nyc report --reporter=html",
"test-integration": "cross-env NODE_ENV=development wdio test/wdio.docker.conf.js", "test-integration": "cross-env NODE_ENV=development wdio test/wdio.docker.conf.js",
"circleci-test-integration": "echo 'webdriverio tests need to be updated to node 12'", "circleci-test-integration": "echo 'webdriverio tests need to be updated to node 12'",
"start": "npm run clean && cross-env NODE_ENV=development L10N_DEV=true FXA_CLIENT_ID=fced6b5e3f4c66b9 BASE_URL=http://localhost:1337 webpack-dev-server --port=1337 --mode=development", "start": "npm run clean && cross-env NODE_ENV=development L10N_DEV=true FXA_CLIENT_ID=fced6b5e3f4c66b9 BASE_URL=http://localhost:8080 webpack-dev-server --mode=development",
"android": "cross-env ANDROID=1 npm start", "android": "cross-env ANDROID=1 npm start",
"prod": "node server/bin/prod.js" "prod": "node server/bin/prod.js"
}, },
@@ -61,32 +64,33 @@
"node": "^12.16.3" "node": "^12.16.3"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.10.5", "@babel/core": "^7.12.0",
"@babel/plugin-proposal-class-properties": "^7.10.4", "@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.10.4", "@babel/preset-env": "^7.12.0",
"@dannycoates/webcrypto-liner": "^0.1.37", "@dannycoates/webcrypto-liner": "^0.1.37",
"@fullhuman/postcss-purgecss": "^1.3.0", "@fullhuman/postcss-purgecss": "^1.3.0",
"@mattiasbuelens/web-streams-polyfill": "0.2.1", "@mattiasbuelens/web-streams-polyfill": "0.2.1",
"@sentry/browser": "^5.20.1", "@sentry/browser": "^5.26.0",
"asmcrypto.js": "^0.22.0", "asmcrypto.js": "^0.22.0",
"babel-loader": "^8.0.6", "babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0", "babel-plugin-istanbul": "^5.2.0",
"base64-js": "^1.3.1", "base64-js": "^1.3.1",
"content-disposition": "^0.5.3", "content-disposition": "^0.5.3",
"copy-webpack-plugin": "^5.0.5", "copy-webpack-plugin": "^5.1.2",
"core-js": "^3.4.0", "core-js": "^3.4.0",
"crc": "^3.8.0",
"cross-env": "^6.0.3", "cross-env": "^6.0.3",
"css-loader": "^3.2.0", "css-loader": "^3.6.0",
"css-mqpacker": "^7.0.0", "css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10", "cssnano": "^4.1.10",
"eslint": "^6.6.0", "eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0", "eslint-config-prettier": "^6.12.0",
"eslint-plugin-mocha": "^6.2.1", "eslint-plugin-mocha": "^6.2.1",
"eslint-plugin-node": "^10.0.0", "eslint-plugin-node": "^10.0.0",
"eslint-plugin-security": "^1.4.0", "eslint-plugin-security": "^1.4.0",
"expose-loader": "^0.7.5", "expose-loader": "^0.7.5",
"extract-loader": "^3.1.0", "extract-loader": "^3.2.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0", "extract-text-webpack-plugin": "^4.0.0-beta.0",
"fast-text-encoding": "^1.0.3", "fast-text-encoding": "^1.0.3",
"file-loader": "^4.2.0", "file-loader": "^4.2.0",
@@ -94,7 +98,7 @@
"html-loader": "^0.5.5", "html-loader": "^0.5.5",
"http_ece": "^1.1.0", "http_ece": "^1.1.0",
"husky": "^3.0.9", "husky": "^3.0.9",
"intl-pluralrules": "^1.1.1", "intl-pluralrules": "^1.2.2",
"lint-staged": "^9.4.2", "lint-staged": "^9.4.2",
"mocha": "^6.2.2", "mocha": "^6.2.2",
"morgan": "^1.9.1", "morgan": "^1.9.1",
@@ -119,7 +123,7 @@
"stylelint-no-unsupported-browser-features": "^3.0.2", "stylelint-no-unsupported-browser-features": "^3.0.2",
"svgo": "^1.3.2", "svgo": "^1.3.2",
"svgo-loader": "^2.2.1", "svgo-loader": "^2.2.1",
"tailwindcss": "^1.1.3", "tailwindcss": "^1.9.2",
"val-loader": "^1.1.1", "val-loader": "^1.1.1",
"webpack": "4.38.0", "webpack": "4.38.0",
"webpack-cli": "^3.3.12", "webpack-cli": "^3.3.12",
@@ -132,23 +136,23 @@
"@dannycoates/express-ws": "^5.0.3", "@dannycoates/express-ws": "^5.0.3",
"@fluent/bundle": "^0.13.0", "@fluent/bundle": "^0.13.0",
"@fluent/langneg": "^0.3.0", "@fluent/langneg": "^0.3.0",
"@google-cloud/storage": "^5.1.2", "@google-cloud/storage": "^4.1.1",
"@peculiar/webcrypto": "^1.1.1", "@sentry/node": "^5.26.0",
"@sentry/node": "^5.20.1", "aws-sdk": "^2.772.0",
"aws-sdk": "^2.568.0",
"body-parser": "^1.19.0", "body-parser": "^1.19.0",
"choo": "^7.0.0", "choo": "^7.0.0",
"cldr-core": "^35.1.0", "cldr-core": "^35.1.0",
"configstore": "github:dannycoates/configstore#master", "configstore": "github:dannycoates/configstore#master",
"convict": "^5.2.0", "convict": "^5.2.0",
"express": "^4.17.1", "express": "^4.17.1",
"fxa-geodb": "^1.0.4",
"helmet": "^3.23.3", "helmet": "^3.23.3",
"mkdirp": "^0.5.1", "mkdirp": "^0.5.1",
"mozlog": "^2.2.0", "mozlog": "^2.2.0",
"node-fetch": "^2.6.0", "node-fetch": "^2.6.1",
"redis": "^3.0.2", "redis": "^2.8.0",
"selenium-standalone": "^6.15.6", "selenium-standalone": "^6.20.1",
"ua-parser-js": "^0.7.21" "ua-parser-js": "^0.7.22"
}, },
"availableLanguages": [ "availableLanguages": [
"en-US", "en-US",

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Comentarios
importingFile = Se ye importando… importingFile = Se ye importando…
encryptingFile = Se ye cifrando… encryptingFile = Se ye cifrando…
decryptingFile = Se ye descifrando… decryptingFile = Se ye descifrando…
@@ -19,13 +19,13 @@ unlockButtonLabel = Desblocar
downloadButtonLabel = Descargar downloadButtonLabel = Descargar
downloadFinish = Descarga completa downloadFinish = Descarga completa
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Preba Firefox Send sendYourFilesLink = Preba Send
errorPageHeader = I ha habiu bell problema! errorPageHeader = I ha habiu bell problema!
fileTooBig = Ixe fichero ye masiau gran pa cargar-lo. Ha de tener menos de { $size } fileTooBig = Ixe fichero ye masiau gran pa cargar-lo. Ha de tener menos de { $size }
linkExpiredAlt = Lo vinclo ye caducau linkExpiredAlt = Lo vinclo ye caducau
notSupportedHeader = Lo suyo navegador no ye compatible notSupportedHeader = Lo suyo navegador no ye compatible
notSupportedLink = Per qué no ye compatible lo mío navegador? notSupportedLink = Per qué no ye compatible lo mío navegador?
notSupportedOutdatedDetail = Esta versión de Firefox no admite la tecnolochía web con que funciona lo Firefox Send. Habrás d'esviellar lo navegador. notSupportedOutdatedDetail = Esta versión de Firefox no admite la tecnolochía web con que funciona lo Send. Habrás d'esviellar lo navegador.
updateFirefox = Esviellar Firefox updateFirefox = Esviellar Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Borrar deleteButtonHover = Borrar
@@ -33,8 +33,8 @@ footerLinkLegal = Aviso legal
footerLinkPrivacy = Privacidat footerLinkPrivacy = Privacidat
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = La contrasenya ye incorrecta. Torne-lo a intentar. passwordTryAgain = La contrasenya ye incorrecta. Torne-lo a intentar.
javascriptRequired = Firefox Send necesita JavaScript javascriptRequired = Send necesita JavaScript
whyJavascript = Per qué Firefox Send necesita JavaScript? whyJavascript = Per qué Send necesita JavaScript?
enableJavascript = Activa JavaScript y torna-lo a intentar. enableJavascript = Activa JavaScript y torna-lo a intentar.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } h { $minutes } min expiresHoursMinutes = { $hours } h { $minutes } min
@@ -47,8 +47,7 @@ passwordSetError = No s'ha puesto definir la clau
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Versió 1.0, con data d'o 12 de marzo de 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } d { $hours } h { $minutes } min expiresDaysHoursMinutes = { $days } d { $hours } h { $minutes } min
addFilesButton = Triar los fichers a cargar addFilesButton = Triar los fichers a cargar
trustWarningMessage = Asegura-te de que confías en o destinatario quan compartas datos confidencials.
uploadButton = Cargar uploadButton = Cargar
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Arrociega y suelta los fichers dragAndDropFiles = Arrociega y suelta los fichers
@@ -153,33 +151,3 @@ shareLinkButton = Compartir lo vinclo
shareMessage = Baixa-te «{ $name }» con { -send-brand }: compartición de fiches simpla y segura shareMessage = Baixa-te «{ $name }» con { -send-brand }: compartición de fiches simpla y segura
trailheadPromo = I hai una manera de protecher la tuya privacidat. Une-te a Firefox. trailheadPromo = I hai una manera de protecher la tuya privacidat. Une-te a Firefox.
learnMore = Mas información learnMore = Mas información
downloadFlagged = Este vinclo s'ha desactivau per violar las condiciones d'uso.
downloadConfirmTitle = Una coseta mas
downloadConfirmDescription = Asegura-te de que confías en a persona que t'ha ninviau este fichero, perque no podemos verificar que no danyará lo tuyo dispositivo.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Confío en a persona que ha ninviau este fichero
*[other] Confío en a persona que ha ninviau estes fichers
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Sinyalar este fichero como sospeitoso
*[other] Sinyalar estes fichers como sospeitoso
}
reportDescription = Aduya-nos a comprender qué ha pasau. Quál creyes que ye lo problema con estes fichers?
reportUnknownDescription = Vest ta la URL d'o vinclo que quiers sinyalar y fe clic en « { reportFile } ».
reportButton = Informar
reportReasonMalware = Estes fichers contienen malware u fan parte d'un ataque de phishing.
reportReasonPii = Estes fichers contienen información personal identificable sobre yo.
reportReasonAbuse = Estes fichers contienen conteniu ilegal u abusivo.
reportReasonCopyright = Pa informar sobre una violación de dreitos d'autor u de marca, sigue lo procedimiento descrito en <a>esta pachina</a>.
reportedTitle = Fichers sinyalaus
reportedDescription = Gracias. Hemos recibiu lo tuyo informe sobre estes fichers.

View File

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

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Comentarios
importingFile = Importando... importingFile = Importando...
encryptingFile = Cifrando... encryptingFile = Cifrando...
decryptingFile = Descifrando... decryptingFile = Descifrando...
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquiar
downloadButtonLabel = Baxar downloadButtonLabel = Baxar
downloadFinish = Completóse la descarga downloadFinish = Completóse la descarga
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Probar Firefox Send sendYourFilesLink = Probar Send
errorPageHeader = ¡Asocedió daqué malo! errorPageHeader = ¡Asocedió daqué malo!
fileTooBig = Esti ficheru ye mui grande como pa xubilu. Debería tener menos de { $size }. fileTooBig = Esti ficheru ye mui grande como pa xubilu. Debería tener menos de { $size }.
linkExpiredAlt = Caducó l'enllaz linkExpiredAlt = Caducó l'enllaz
notSupportedHeader = El to restolador nun ta sofitáu. notSupportedHeader = El to restolador nun ta sofitáu.
notSupportedLink = ¿Por qué'l mio restolador nun ta sofitáu? notSupportedLink = ¿Por qué'l mio restolador nun ta sofitáu?
notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox nun sofita la teunoloxía web qu'usa Firefox Send. Vas precisar anovar el restolador. notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox nun sofita la teunoloxía web qu'usa Send. Vas precisar anovar el restolador.
updateFirefox = Anovar Firefox updateFirefox = Anovar Firefox
deletePopupCancel = Encaboxar deletePopupCancel = Encaboxar
deleteButtonHover = Desaniciar deleteButtonHover = Desaniciar
@@ -33,8 +33,8 @@ footerLinkLegal = Llegal
footerLinkPrivacy = Privacidá footerLinkPrivacy = Privacidá
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = La contraseña ye incorreuta. Volvi tentalo. passwordTryAgain = La contraseña ye incorreuta. Volvi tentalo.
javascriptRequired = Firefox Send rique JavaScript javascriptRequired = Send rique JavaScript
whyJavascript = ¿Por qué Firefox Send rique JavaScript? whyJavascript = ¿Por qué Send rique JavaScript?
enableJavascript = Activa JavaScript y volvi tentalo, por favor. enableJavascript = Activa JavaScript y volvi tentalo, por favor.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -47,8 +47,7 @@ passwordSetError = Nun pudo afitase esta contraseña
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -98,24 +97,23 @@ trySendDescription = Prueba { -send-brand } pa una compartición de ficheros cen
# count will always be > 10 # count will always be > 10
tooManyFiles = tooManyFiles =
{ $count -> { $count ->
[one] Namás pue xubise 1 ficheru al empar. [one] Namái pue xubise 1 ficheru al empar.
*[other] Namás puen xubise { $count } ficheros al empar. *[other] Namái puen xubise { $count } ficheros al empar.
} }
# count will always be > 10 # count will always be > 10
tooManyArchives = tooManyArchives =
{ $count -> { $count ->
[one] Namás se permite 1 archivu [one] Namái se permite 1 archivu
*[other] Namás se permiten { $count } archivos *[other] Namái se permiten { $count } archivos
} }
expiredTitle = Esti enllaz caducó. expiredTitle = Esti enllaz caducó.
notSupportedDescription = { -send-brand } nun va funcionar con esti restolador. { -send-short-brand } funciona meyor cola última versión de { -firefox } y l'actual de la mayoría de restoladores. notSupportedDescription = { -send-brand } nun va funcionar con esti restolador. { -send-short-brand } funciona meyor cola versión última de { -firefox } y cola versión actual de la mayoría de restoladores.
downloadFirefox = Baxar { -firefox } downloadFirefox = Baxar { -firefox }
legalTitle = Avisu de privacidá de { -send-short-brand } legalTitle = Avisu de privacidá de { -send-short-brand }
legalDateStamp = Versión 1.0, con data del 12 de marzu de 2019 legalDateStamp = Versión 1.0, con data del 12 de marzu de 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Esbillar los ficheros a unviar addFilesButton = Esbillar los ficheros a unviar
trustWarningMessage = Asegúrate de que t'enfotes nel destinatariu al compartir datos sensibles.
uploadButton = Xubir uploadButton = Xubir
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Arrastra y suelta ficheros dragAndDropFiles = Arrastra y suelta ficheros
@@ -133,8 +131,8 @@ accountBenefitLargeFiles = Comparti ficheros d'hasta { $size }
accountBenefitDownloadCount = Comparti ficheros con más xente accountBenefitDownloadCount = Comparti ficheros con más xente
accountBenefitTimeLimit = accountBenefitTimeLimit =
{ $count -> { $count ->
[one] Caltién activos los enllaces demientres 1 día [one] Caltén activos los enllaces demientres 1 día
*[other] Caltién activos los enllaces demientres { $count } díes *[other] Caltén activos los enllaces demientres { $count } díes
} }
accountBenefitSync = Xestiona los ficheros compartíos dende cualesquier preséu accountBenefitSync = Xestiona los ficheros compartíos dende cualesquier preséu
accountBenefitMoz = Deprendi más tocante a otros servicios de { -mozilla } accountBenefitMoz = Deprendi más tocante a otros servicios de { -mozilla }
@@ -144,9 +142,3 @@ downloadingTitle = Baxando
noStreamsWarning = Esti restolador quiciabes nun seya a descifrar un ficheru d'esti tamañu. noStreamsWarning = Esti restolador quiciabes nun seya a descifrar un ficheru d'esti tamañu.
trailheadPromo = Hai un mou de protexer la to privacidá. Xúnite a Firefox. trailheadPromo = Hai un mou de protexer la to privacidá. Xúnite a Firefox.
learnMore = Deprender más. learnMore = Deprender más.
downloadFlagged = Esti enllaz desactivóse por violar los términos del serviciu.
downloadConfirmTitle = Una cosa más
reportReasonMalware = Estos ficheros contienen malware o son parte d'un ataque de phishing
reportReasonPii = Estos ficheros contienen información que m'identifica.
reportReasonAbuse = Estos ficheros contienen conteníu illegal o abusivu.
reportedDescription = Gracies. Recibiemos l'informe tocante a estos ficheros.

View File

@@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteFeedback = Geri dönüş siteFeedback = Geri dönüş
importingFile = İdxal edilir… importingFile = İdxal edilir…
encryptingFile = Şifrələnir... encryptingFile = Şifrələnir...
@@ -20,13 +19,13 @@ unlockButtonLabel = Aç
downloadButtonLabel = Endir downloadButtonLabel = Endir
downloadFinish = Endirmə Tamamlandı downloadFinish = Endirmə Tamamlandı
fileSizeProgress = ({ $partialSize } / { $totalSize }) fileSizeProgress = ({ $partialSize } / { $totalSize })
sendYourFilesLink = Firefox Send Yoxla sendYourFilesLink = Send Yoxla
errorPageHeader = Nəsə səhv getdi! errorPageHeader = Nəsə səhv getdi!
fileTooBig = Fayl yükləmək üçün çox böyükdür. Fayl { $size }-dan az olmalıdır. fileTooBig = Fayl yükləmək üçün çox böyükdür. Fayl { $size }-dan az olmalıdır.
linkExpiredAlt = Keçidin vaxtı çıxıb linkExpiredAlt = Keçidin vaxtı çıxıb
notSupportedHeader = Səyyahınız dəstəklənmir. notSupportedHeader = Səyyahınız dəstəklənmir.
notSupportedLink = Səyyahım niyə dəstəklənmir? notSupportedLink = Səyyahım niyə dəstəklənmir?
notSupportedOutdatedDetail = Heyf ki, Firefox səyyahının bu versiyası Firefox Send-ə güc verən web texnologiyalarını dəstəkləmir. Səyyahınızı yeniləməlisiniz. notSupportedOutdatedDetail = Heyf ki, Firefox səyyahının bu versiyası Send-ə güc verən web texnologiyalarını dəstəkləmir. Səyyahınızı yeniləməlisiniz.
updateFirefox = Firefox-u Yenilə updateFirefox = Firefox-u Yenilə
deletePopupCancel = Ləğv et deletePopupCancel = Ləğv et
deleteButtonHover = Sil deleteButtonHover = Sil
@@ -34,8 +33,8 @@ footerLinkLegal = Hüquqi
footerLinkPrivacy = Məxfilik footerLinkPrivacy = Məxfilik
footerLinkCookies = Çərəzlər footerLinkCookies = Çərəzlər
passwordTryAgain = Səhv parol. Təkrar yoxlayın. passwordTryAgain = Səhv parol. Təkrar yoxlayın.
javascriptRequired = Firefox Send üçün JavaScript lazımdır javascriptRequired = Send üçün JavaScript lazımdır
whyJavascript = Firefox Send niyə JavaScript tələb edir? whyJavascript = Send niyə JavaScript tələb edir?
enableJavascript = Lütfən JavaScript-i aktiv edib təkrar yoxlayın. enableJavascript = Lütfən JavaScript-i aktiv edib təkrar yoxlayın.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } saat { $minutes } dəq expiresHoursMinutes = { $hours } saat { $minutes } dəq
@@ -48,8 +47,7 @@ passwordSetError = Parol qurula bilmədi
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla

View File

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

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Водгук
importingFile = Імпартаванне... importingFile = Імпартаванне...
encryptingFile = Зашыфроўка... encryptingFile = Зашыфроўка...
decryptingFile = Расшыфроўка... decryptingFile = Расшыфроўка...
@@ -21,13 +21,13 @@ unlockButtonLabel = Разблакаваць
downloadButtonLabel = Сцягнуць downloadButtonLabel = Сцягнуць
downloadFinish = Сцягванне скончана downloadFinish = Сцягванне скончана
fileSizeProgress = ({ $partialSize } з { $totalSize }) fileSizeProgress = ({ $partialSize } з { $totalSize })
sendYourFilesLink = Паспрабуйце Firefox Send sendYourFilesLink = Паспрабуйце Send
errorPageHeader = Нешта пайшло не так! errorPageHeader = Нешта пайшло не так!
fileTooBig = Гэты файл надта вялікі. Ён мусіць быць меншым за { $size } fileTooBig = Гэты файл надта вялікі. Ён мусіць быць меншым за { $size }
linkExpiredAlt = Тэрмін дзеяння спасылкі сышоў linkExpiredAlt = Тэрмін дзеяння спасылкі сышоў
notSupportedHeader = Ваш браўзер не падтрымліваецца. notSupportedHeader = Ваш браўзер не падтрымліваецца.
notSupportedLink = Чаму мой браўзер не падтрымліваецца? notSupportedLink = Чаму мой браўзер не падтрымліваецца?
notSupportedOutdatedDetail = На жаль, гэтая версія Firefox не падтрымлівае вэб-тэхналогію, што забяспечвае працу Firefox Send. Вам трэба абнавіць свой браўзер. notSupportedOutdatedDetail = На жаль, гэтая версія Firefox не падтрымлівае вэб-тэхналогію, што забяспечвае працу Send. Вам трэба абнавіць свой браўзер.
updateFirefox = Абнавіць Firefox updateFirefox = Абнавіць Firefox
deletePopupCancel = Скасаваць deletePopupCancel = Скасаваць
deleteButtonHover = Выдаліць deleteButtonHover = Выдаліць
@@ -35,8 +35,8 @@ footerLinkLegal = Прававыя звесткі
footerLinkPrivacy = Прыватнасць footerLinkPrivacy = Прыватнасць
footerLinkCookies = Кукі footerLinkCookies = Кукі
passwordTryAgain = Некарэктны пароль. Паспрабуйце зноў. passwordTryAgain = Некарэктны пароль. Паспрабуйце зноў.
javascriptRequired = Для Firefox Send неабходны JavaScript javascriptRequired = Для Send неабходны JavaScript
whyJavascript = Чаму для Firefox Send неабходны JavaScript? whyJavascript = Чаму для Send неабходны JavaScript?
enableJavascript = Калі ласка, уключыце JavaScript і паспрабуйце зноў. enableJavascript = Калі ласка, уключыце JavaScript і паспрабуйце зноў.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } г. { $minutes } хв. expiresHoursMinutes = { $hours } г. { $minutes } хв.
@@ -49,8 +49,7 @@ passwordSetError = Гэты пароль немагчыма паставіць
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -123,7 +122,6 @@ legalDateStamp = Версія 1.0 ад 12 сакавіка 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } д. { $hours } г. { $minutes } хв. expiresDaysHoursMinutes = { $days } д. { $hours } г. { $minutes } хв.
addFilesButton = Выберыце файлы для загрузкі addFilesButton = Выберыце файлы для загрузкі
trustWarningMessage = Пераканайцеся, што давяраеце атрымальніку, калі дзеліцеся канфідэнцыяльнымі звесткамі.
uploadButton = Загрузіць uploadButton = Загрузіць
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Перацягніце файлы сюды dragAndDropFiles = Перацягніце файлы сюды
@@ -162,35 +160,3 @@ shareLinkButton = Падзяліцца спасылкай
shareMessage = Сцягніце «{ $name }» з { -send-brand }: простага і бяспечнага файлаабменніка shareMessage = Сцягніце «{ $name }» з { -send-brand }: простага і бяспечнага файлаабменніка
trailheadPromo = Ёсць спосаб абараніць вашу прыватнасць. Далучайцеся да Firefox. trailheadPromo = Ёсць спосаб абараніць вашу прыватнасць. Далучайцеся да Firefox.
learnMore = Падрабязней. learnMore = Падрабязней.
downloadFlagged = Гэта спасылка адключана за парушэнне ўмоў прадастаўлення паслуг.
downloadConfirmTitle = Яшчэ адна рэч
downloadConfirmDescription = Пераканайцеся, што давяраеце адпраўніку гэтага файла, бо мы не можам пераканацца, што ён не нашкодзіць Вашай прыладзе.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Я давяраю адпраўніку гэтага файла
[few] Я давяраю адпраўніку гэтых файлаў
*[many] Я давяраю адпраўніку гэтых файлаў
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Паведаміць, што гэты файл падазроныя
[few] Паведаміць, што гэтыя файлы падазроныя
*[many] Паведаміць, што гэтыя файлы падазроныя
}
reportDescription = Дапамажыце нам зразумець, што адбываецца. Як вы лічыце, што не так з гэтымі файламі?
reportUnknownDescription = Калі ласка, перайдзіце да адрасу спасылкі, пра якую хочаце паведаміць, і націсніце “{ reportFile }”.
reportButton = Паведаміць
reportReasonMalware = Гэтыя файлы ўтрымліваюць шкоднасныя праграмы альбо з'яўляюцца часткай фішынг-атакі.
reportReasonPii = Гэтыя файлы ўтрымліваюць асабістую інфармацыю пра мяне.
reportReasonAbuse = Гэтыя файлы ўтрымліваюць незаконнае альбо абразлівае змесціва.
reportReasonCopyright = Каб паведаміць аб парушэнні аўтарскіх правоў або гандлёвых марак, скарыстайцеся алгарытмам, апісаным на <a>гэтай старонцы</a>.
reportedTitle = Пра файлы паведамлена
reportedDescription = Дзякуй. Мы атрымалі Вашу заяву наконт гэтых файлаў.

View File

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

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Roit hoc'h ali
importingFile = Oc'h enporzhiañ … importingFile = Oc'h enporzhiañ …
encryptingFile = Oc'h enrinegañ.. encryptingFile = Oc'h enrinegañ..
decryptingFile = Oc'h ezrinegañ... decryptingFile = Oc'h ezrinegañ...
@@ -25,13 +25,13 @@ unlockButtonLabel = Dibrennañ
downloadButtonLabel = Pellgargañ downloadButtonLabel = Pellgargañ
downloadFinish = Pellgargadur echu downloadFinish = Pellgargadur echu
fileSizeProgress = ({ $partialSize } war { $totalSize }) fileSizeProgress = ({ $partialSize } war { $totalSize })
sendYourFilesLink = Esaeit Firefox Send sendYourFilesLink = Esaeit Send
errorPageHeader = Degouezhet ez eus bet ur fazi! errorPageHeader = Degouezhet ez eus bet ur fazi!
fileTooBig = Re vras eo ar restr-mañ evit e pellgas. Rankout a ra bezañ nebeutoc'h eget { $size } fileTooBig = Re vras eo ar restr-mañ evit e pellgas. Rankout a ra bezañ nebeutoc'h eget { $size }
linkExpiredAlt = Ere diamzeret linkExpiredAlt = Ere diamzeret
notSupportedHeader = N'eo ket skoret ho merdeer. notSupportedHeader = N'eo ket skoret ho merdeer.
notSupportedLink = Perak n'eo ket skoret ma merdeer? notSupportedLink = Perak n'eo ket skoret ma merdeer?
notSupportedOutdatedDetail = Siwazh n'eo ket skoret ar c'halvezerezhioù implijet evit Firefox Send gant an handelv-mañ eus Firefox. Ret e vo deoc'h hizivaat ho merdeer. notSupportedOutdatedDetail = Siwazh n'eo ket skoret ar c'halvezerezhioù implijet evit Send gant an handelv-mañ eus Firefox. Ret e vo deoc'h hizivaat ho merdeer.
updateFirefox = Hizivaat Firefox updateFirefox = Hizivaat Firefox
deletePopupCancel = Nullañ deletePopupCancel = Nullañ
deleteButtonHover = Dilemel deleteButtonHover = Dilemel
@@ -39,8 +39,8 @@ footerLinkLegal = Lezennel
footerLinkPrivacy = Buhez prevez footerLinkPrivacy = Buhez prevez
footerLinkCookies = Toupinoù footerLinkCookies = Toupinoù
passwordTryAgain = Ger-tremen direizh. Klaskit en-dro. passwordTryAgain = Ger-tremen direizh. Klaskit en-dro.
javascriptRequired = Firefox Send a azgoulenn Javascript javascriptRequired = Send a azgoulenn Javascript
whyJavascript = Perak e azgoulenn Firefox Send Javascript? whyJavascript = Perak e azgoulenn Send Javascript?
enableJavascript = Gweredekait Javascript ha klaskit en-dro. enableJavascript = Gweredekait Javascript ha klaskit en-dro.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }e { $minutes }m expiresHoursMinutes = { $hours }e { $minutes }m
@@ -53,8 +53,7 @@ passwordSetError = N'haller ket despizañ ar ger-tremen
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -139,7 +138,6 @@ legalDateStamp = Handelv 1.0, d'an 12 a viz Meurzh 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }e { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }e { $minutes }m
addFilesButton = Diuzit ur restr da bellgas addFilesButton = Diuzit ur restr da bellgas
trustWarningMessage = Bezit sur ho peus fiziañs en ho tegemerer pa rannit roadennoù kizidik.
uploadButton = Pellgas uploadButton = Pellgas
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Riklit ha laoskit restroù dragAndDropFiles = Riklit ha laoskit restroù
@@ -180,6 +178,3 @@ shareLinkButton = Rannañ an ere
shareMessage = Pellgargañ "{ $name }" gant { -send-brand }: rannañ restroù en un doare eeun ha prevez shareMessage = Pellgargañ "{ $name }" gant { -send-brand }: rannañ restroù en un doare eeun ha prevez
trailheadPromo = Un doare a zo da wareziñ ho puhez prevez. Tremenit da Firefox. trailheadPromo = Un doare a zo da wareziñ ho puhez prevez. Tremenit da Firefox.
learnMore = Gouzout hiroc'h. learnMore = Gouzout hiroc'h.
downloadFlagged = Diweredekaet eo bet an ere-se dre ma ne zouje ket ouzh an divizoù arver.
downloadConfirmTitle = Un draig ouzhpenn
downloadConfirmDescription = Bezit sur ho peus fiziañs en deus en deus kaset ar restr-mañ dre ma n'haller ket gwiriañ ne freuzo ket ho trevnad.

View File

@@ -1,5 +1,4 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send
siteSubtitle = web eksperiment siteSubtitle = web eksperiment
siteFeedback = Povratne informacije siteFeedback = Povratne informacije
uploadPageHeader = Privatno, šifrovano dijeljenje datoteka uploadPageHeader = Privatno, šifrovano dijeljenje datoteka
@@ -57,16 +56,14 @@ unlockInputLabel = Unesite lozinku
unlockInputPlaceholder = Lozinka unlockInputPlaceholder = Lozinka
unlockButtonLabel = Otključaj unlockButtonLabel = Otključaj
downloadFileTitle = Preuzmi šifrovanu datoteku downloadFileTitle = Preuzmi šifrovanu datoteku
# Firefox Send is a brand name and should not be localized. downloadMessage = Vaš prijatelj vam je poslao datoteku preko usluge Send koja vam omogućava da dijelite datoteke preko sigurne, privatne i šifrovane veze koja samostalno ističe da vaše stvari ne ostanu zauvijek na internetu.
downloadMessage = Vaš prijatelj vam je poslao datoteku preko usluge Firefox Send koja vam omogućava da dijelite datoteke preko sigurne, privatne i šifrovane veze koja samostalno ističe da vaše stvari ne ostanu zauvijek na internetu.
# Text and title used on the download link/button (indicates an action). # Text and title used on the download link/button (indicates an action).
downloadButtonLabel = Preuzmi downloadButtonLabel = Preuzmi
downloadNotification = Vaše preuzimanje je završeno. downloadNotification = Vaše preuzimanje je završeno.
downloadFinish = Preuzimanje završeno downloadFinish = Preuzimanje završeno
# This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)". # This message is displayed when uploading or downloading a file, e.g. "(1,3 MB of 10 MB)".
fileSizeProgress = ({ $partialSize } od { $totalSize }) fileSizeProgress = ({ $partialSize } od { $totalSize })
# Firefox Send is a brand name and should not be localized. sendYourFilesLink = Probajte Send
sendYourFilesLink = Probajte Firefox Send
downloadingPageProgress = Preuzimanje { $filename } ({ $size }) downloadingPageProgress = Preuzimanje { $filename } ({ $size })
downloadingPageMessage = Ostavite ovaj tab otvorenim dok ne dobavimo vašu datoteku i dok je ne dešifrujemo. downloadingPageMessage = Ostavite ovaj tab otvorenim dok ne dobavimo vašu datoteku i dok je ne dešifrujemo.
errorAltText = Greška pri otpremanju errorAltText = Greška pri otpremanju
@@ -77,10 +74,9 @@ fileTooBig = Ta datoteka je prevelika za otpremanje. Treba biti manja od { $size
linkExpiredAlt = Veza istekla linkExpiredAlt = Veza istekla
expiredPageHeader = Veza je istekla ili nikad nije postojala! expiredPageHeader = Veza je istekla ili nikad nije postojala!
notSupportedHeader = Vaš pretraživač nije podržan. notSupportedHeader = Vaš pretraživač nije podržan.
# Firefox Send is a brand name and should not be localized. notSupportedDetail = Ovaj pretraživač nažalost ne podržava web tehnologiju koja omogućava Send. Trebate probati drugi pretraživač. Preporučujemo Firefox!
notSupportedDetail = Ovaj pretraživač nažalost ne podržava web tehnologiju koja omogućava Firefox Send. Trebate probati drugi pretraživač. Preporučujemo Firefox!
notSupportedLink = Zašto moj pretraživač nije podržan? notSupportedLink = Zašto moj pretraživač nije podržan?
notSupportedOutdatedDetail = Nažalost ova verzija Firefoxa ne podržava web tehnologiju koja omogućava Firefox Send. Morate ažurirati vaš pretraživač. notSupportedOutdatedDetail = Nažalost ova verzija Firefoxa ne podržava web tehnologiju koja omogućava Send. Morate ažurirati vaš pretraživač.
updateFirefox = Ažuriraj Firefox updateFirefox = Ažuriraj Firefox
downloadFirefoxButtonSub = Besplatno preuzimanje downloadFirefoxButtonSub = Besplatno preuzimanje
uploadedFile = Datoteka uploadedFile = Datoteka
@@ -90,8 +86,8 @@ expiryFileList = Ističe za
deleteFileList = Izbriši deleteFileList = Izbriši
nevermindButton = Zanemari nevermindButton = Zanemari
legalHeader = Uslovi i privatnost legalHeader = Uslovi i privatnost
legalNoticeTestPilot = Firefox Send je trenutno Test Pilot eksperiment i podržan je <a>uslovima korištenja</a> i <a>obavještenjem o privatnosti</a>. Možete saznati više o ovom eksperimentu i o njegovom sakupljanju podataka <a>ovdje</a>. legalNoticeTestPilot = Send je trenutno Test Pilot eksperiment i podržan je <a>uslovima korištenja</a> i <a>obavještenjem o privatnosti</a>. Možete saznati više o ovom eksperimentu i o njegovom sakupljanju podataka <a>ovdje</a>.
legalNoticeMozilla = Korištenje Firefox Send web stranice podlaže Mozillinom <a>obavještenju o privatnosti na web stranicama</a> i <a>uslovima korištenja web stranica</a>. legalNoticeMozilla = Korištenje Send web stranice podlaže Mozillinom <a>obavještenju o privatnosti na web stranicama</a> i <a>uslovima korištenja web stranica</a>.
deletePopupText = Izbrisati ovu datoteku? deletePopupText = Izbrisati ovu datoteku?
deletePopupYes = Da deletePopupYes = Da
deletePopupCancel = Otkaži deletePopupCancel = Otkaži
@@ -108,8 +104,8 @@ addPasswordButton = Dodaj lozinku
changePasswordButton = Promijeni changePasswordButton = Promijeni
passwordTryAgain = Netačna lozinka. Pokušajte ponovo. passwordTryAgain = Netačna lozinka. Pokušajte ponovo.
reportIPInfringement = Prijavite IP prekršaj reportIPInfringement = Prijavite IP prekršaj
javascriptRequired = Firefox Send zahtjeva JavaScript javascriptRequired = Send zahtjeva JavaScript
whyJavascript = Zašto Firefox Send zahtjeva JavaScript? whyJavascript = Zašto Send zahtjeva JavaScript?
enableJavascript = Molimo omogućite JavaScript i pokušajte ponovo. enableJavascript = Molimo omogućite JavaScript i pokušajte ponovo.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Comentaris
importingFile = S'està important… importingFile = S'està important…
encryptingFile = S'està xifrant… encryptingFile = S'està xifrant…
decryptingFile = S'està desxifrant… decryptingFile = S'està desxifrant…
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloca
downloadButtonLabel = Baixa downloadButtonLabel = Baixa
downloadFinish = Ha acabat la baixada downloadFinish = Ha acabat la baixada
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Proveu el Firefox Send sendYourFilesLink = Proveu el Send
errorPageHeader = Hi ha hagut un problema errorPageHeader = Hi ha hagut un problema
fileTooBig = Aquest fitxer és massa gros per pujar-lo. Ha de tenir menys de { $size }. fileTooBig = Aquest fitxer és massa gros per pujar-lo. Ha de tenir menys de { $size }.
linkExpiredAlt = L'enllaç ha caducat linkExpiredAlt = L'enllaç ha caducat
notSupportedHeader = El vostre navegador no és compatible. notSupportedHeader = El vostre navegador no és compatible.
notSupportedLink = Per què el meu navegador no és compatible? notSupportedLink = Per què el meu navegador no és compatible?
notSupportedOutdatedDetail = Aquesta versió del Firefox no admet la tecnologia web amb què funciona el Firefox Send. Haureu d'actualitzar el navegador. notSupportedOutdatedDetail = Aquesta versió del Firefox no admet la tecnologia web amb què funciona el Send. Haureu d'actualitzar el navegador.
updateFirefox = Actualitza el Firefox updateFirefox = Actualitza el Firefox
deletePopupCancel = Cancel·la deletePopupCancel = Cancel·la
deleteButtonHover = Suprimeix deleteButtonHover = Suprimeix
@@ -33,8 +33,8 @@ footerLinkLegal = Avís legal
footerLinkPrivacy = Privadesa footerLinkPrivacy = Privadesa
footerLinkCookies = Galetes footerLinkCookies = Galetes
passwordTryAgain = La contrasenya és incorrecta. Torneu-ho a provar. passwordTryAgain = La contrasenya és incorrecta. Torneu-ho a provar.
javascriptRequired = El Firefox Send necessita JavaScript javascriptRequired = El Send necessita JavaScript
whyJavascript = Per què el Firefox Send necessita JavaScript? whyJavascript = Per què el Send necessita JavaScript?
enableJavascript = Activeu el JavaScript i torneu-ho a provar. enableJavascript = Activeu el JavaScript i torneu-ho a provar.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } h { $minutes } min expiresHoursMinutes = { $hours } h { $minutes } min
@@ -47,9 +47,8 @@ passwordSetError = No s'ha pogut definir la contrasenya
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send -send-short-brand = Send
-send-short-brand = Firefox Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
introTitle = Compartició de fitxers senzilla i privada introTitle = Compartició de fitxers senzilla i privada
@@ -115,7 +114,6 @@ legalDateStamp = Versió 1.0, amb data del 12 de març de 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } d { $hours } h { $minutes } min expiresDaysHoursMinutes = { $days } d { $hours } h { $minutes } min
addFilesButton = Seleccioneu els fitxers que voleu pujar addFilesButton = Seleccioneu els fitxers que voleu pujar
trustWarningMessage = Assegureu-vos que confieu en el destinatari quan compartiu dades confidencials.
uploadButton = Puja uploadButton = Puja
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Arrossegueu i deixeu anar els fitxers dragAndDropFiles = Arrossegueu i deixeu anar els fitxers
@@ -153,33 +151,3 @@ shareLinkButton = Comparteix l'enllaç
shareMessage = Baixeu «{ $name }» amb el { -send-brand }: compartició de fitxers senzilla i segura shareMessage = Baixeu «{ $name }» amb el { -send-brand }: compartició de fitxers senzilla i segura
trailheadPromo = Hi ha una manera de protegir la vostra privadesa. Uniu-vos al Firefox. trailheadPromo = Hi ha una manera de protegir la vostra privadesa. Uniu-vos al Firefox.
learnMore = Més informació. learnMore = Més informació.
downloadFlagged = Aquest enllaç s'ha desactivat per infringir les condicions del servei.
downloadConfirmTitle = Una cosa més
downloadConfirmDescription = Assegureu-vos que confieu en la persona que us ha enviat aquest fitxer, perquè nosaltres no podem verificar que no malmeti el vostre dispositiu.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Confio en la persona que ha enviat aquest fitxer
*[other] Confio en la persona que ha enviat aquests fitxers
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Informa que aquest fitxer és sospitós
*[other] Informa que aquests fitxers són sospitos
}
reportDescription = Ajudeu-nos a entendre què passa. Quin problema creieu que tenen aquests fitxers?
reportUnknownDescription = Aneu a l'URL de l'enllaç sobre el qual voleu informar i feu clic a «{ reportFile }».
reportButton = Informa
reportReasonMalware = Aquests fitxers contenen programari maliciós o formen part d'un atac de pesca electrònica.
reportReasonPii = Aquests fitxers contenen informació d'identificació personal meva.
reportReasonAbuse = Aquests fitxers inclouen contingut il·legal o abusiu.
reportReasonCopyright = Per informar sobre una infracció de drets dautor o de marca comercial, utilitzeu el procés descrit en <a>aquesta pàgina</a>.
reportedTitle = S'ha informat d'aquests fitxers
reportedDescription = Gràcies. Hem rebut el vostre informe sobre aquests fitxers.

View File

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

View File

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

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Zpětná vazba
importingFile = Probíhá import… importingFile = Probíhá import…
encryptingFile = Probíhá šifrování… encryptingFile = Probíhá šifrování…
decryptingFile = Probíhá dešifrování… decryptingFile = Probíhá dešifrování…
@@ -21,13 +21,13 @@ unlockButtonLabel = Odemknout
downloadButtonLabel = Stáhnout downloadButtonLabel = Stáhnout
downloadFinish = Stahování dokončeno downloadFinish = Stahování dokončeno
fileSizeProgress = ({ $partialSize } z { $totalSize }) fileSizeProgress = ({ $partialSize } z { $totalSize })
sendYourFilesLink = Vyzkoušet Firefox Send sendYourFilesLink = Vyzkoušet Send
errorPageHeader = Nastala chyba! errorPageHeader = Nastala chyba!
fileTooBig = Tento soubor je příliš veliký. Velikost nahrávaných souborů by neměla překročit { $size }. fileTooBig = Tento soubor je příliš veliký. Velikost nahrávaných souborů by neměla překročit { $size }.
linkExpiredAlt = Platnost odkazu vypršela linkExpiredAlt = Platnost odkazu vypršela
notSupportedHeader = Váš prohlížeč není podporován. notSupportedHeader = Váš prohlížeč není podporován.
notSupportedLink = Proč není můj prohlížeč podporovaný? notSupportedLink = Proč není můj prohlížeč podporovaný?
notSupportedOutdatedDetail = Tato verze Firefoxu bohužel nepodporuje webovou technologii, která pohání Firefox Send. Musíte aktualizovat svůj prohlížeč. notSupportedOutdatedDetail = Tato verze Firefoxu bohužel nepodporuje webovou technologii, která pohání Send. Musíte aktualizovat svůj prohlížeč.
updateFirefox = Aktualizovat Firefox updateFirefox = Aktualizovat Firefox
deletePopupCancel = Zrušit deletePopupCancel = Zrušit
deleteButtonHover = Smazat deleteButtonHover = Smazat
@@ -35,8 +35,8 @@ footerLinkLegal = Právní informace
footerLinkPrivacy = Soukromí footerLinkPrivacy = Soukromí
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Špatné heslo. Zkuste to znovu. passwordTryAgain = Špatné heslo. Zkuste to znovu.
javascriptRequired = Firefox Send vyžaduje povolený JavaScript javascriptRequired = Send vyžaduje povolený JavaScript
whyJavascript = Proč Firefox Send vyžaduje povolený JavaScript? whyJavascript = Proč Send vyžaduje povolený JavaScript?
enableJavascript = Povolte JavaScript a zkuste to znovu. enableJavascript = Povolte JavaScript a zkuste to znovu.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } h { $minutes } m expiresHoursMinutes = { $hours } h { $minutes } m
@@ -49,16 +49,15 @@ passwordSetError = Toto heslo nemohlo být nastaveno
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized
-send-brand = -send-brand =
{ $case -> { $case ->
*[nom] Firefox Send *[nom] Send
[gen] Firefoxu Send [gen] Send
[dat] Firefoxu Send [dat] Send
[acc] Firefox Send [acc] Send
[voc] Firefoxe Send [voc] Send
[loc] Firefoxu Send [loc] Send
[ins] Firefoxem Send [ins] Send
} }
-send-short-brand = -send-short-brand =
{ $case -> { $case ->
@@ -159,7 +158,6 @@ legalDateStamp = Verze 1.0, 12. března 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Vyberte soubory k nahrání addFilesButton = Vyberte soubory k nahrání
trustWarningMessage = Ujistěte se, že adresátovi důvěřujete pro sdílení vašich důvěrných dat.
uploadButton = Nahrát uploadButton = Nahrát
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Přetažením myší nebo kliknutím sem dragAndDropFiles = Přetažením myší nebo kliknutím sem
@@ -198,35 +196,3 @@ shareLinkButton = Sdílet odkaz
shareMessage = Stáhněte si soubor „{ $name }“ s { -send-brand(case: "ins") } - jednoduché a bezpečné sdílení souborů shareMessage = Stáhněte si soubor „{ $name }“ s { -send-brand(case: "ins") } - jednoduché a bezpečné sdílení souborů
trailheadPromo = Existuje způsob, jak ochránit své soukromí. Používejte Firefox. trailheadPromo = Existuje způsob, jak ochránit své soukromí. Používejte Firefox.
learnMore = Zjistit více. learnMore = Zjistit více.
downloadFlagged = Tento odkaz byl pro porušení podmínek používání služby deaktivován.
downloadConfirmTitle = Ještě jedna věc
downloadConfirmDescription = Ujistěte se, že opravdu důvěřujete odesílateli tohoto souboru, protože nemůžeme potvrdit bezpečnost jeho otevření na vašem zařízení.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Odesílateli tohoto souboru důvěřuji
[few] Odesílateli těchto souborů důvěřuji
*[other] Odesílateli těchto souborů důvěřuji
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Nahlásit tento soubor jako podezřelý
[few] Nahlásit tyto soubory jako podezřelé
*[other] Nahlásit tyto soubory jako podezřelé
}
reportDescription = Pomozte nám. Co si myslíte, že je s těmito soubory špatně?
reportUnknownDescription = Otevřete odkaz, který chcete nahlásit, a klepněte na „{ reportFile }“.
reportButton = Nahlásit
reportReasonMalware = Tyto soubory obsahují malware nebo jsou součástí phishingového útoku.
reportReasonPii = Tyto soubory obsahují mé osobní údaje.
reportReasonAbuse = Tyto soubory obsahují nelegální nebo urážlivý obsah.
reportReasonCopyright = Chcete-li nahlásit porušení autorských práv nebo ochranných známek, použijte postup popsaný na <a>této stránce</a>.
reportedTitle = Soubory byly nahlášeny
reportedDescription = Děkujeme vám za zaslané hlášení ohledně těchto souborů.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Adborth
importingFile = Mewnforio… importingFile = Mewnforio…
encryptingFile = Wrthi'n amgryptio… encryptingFile = Wrthi'n amgryptio…
decryptingFile = Wrthi'n dadgryptio… decryptingFile = Wrthi'n dadgryptio…
@@ -27,13 +27,13 @@ unlockButtonLabel = Datgloi
downloadButtonLabel = Llwytho i Lawr downloadButtonLabel = Llwytho i Lawr
downloadFinish = Llwytho wedi Gorffen downloadFinish = Llwytho wedi Gorffen
fileSizeProgress = ({ $partialSize } o { $totalSize }) fileSizeProgress = ({ $partialSize } o { $totalSize })
sendYourFilesLink = Rhowch gynnig ar Firefox Send sendYourFilesLink = Rhowch gynnig ar Send
errorPageHeader = Aeth rhywbeth o'i le! errorPageHeader = Aeth rhywbeth o'i le!
fileTooBig = Mae'r ffeil yn rhy fawr i'w llwytho. Dylai fod yn llai na { $size }. fileTooBig = Mae'r ffeil yn rhy fawr i'w llwytho. Dylai fod yn llai na { $size }.
linkExpiredAlt = Mae'r ddolen wedi dod i ben linkExpiredAlt = Mae'r ddolen wedi dod i ben
notSupportedHeader = Nid yw eich porwr yn cael ei gynnal. notSupportedHeader = Nid yw eich porwr yn cael ei gynnal.
notSupportedLink = Pam nad yw fy mhorwr yn cael ei gynnal? notSupportedLink = Pam nad yw fy mhorwr yn cael ei gynnal?
notSupportedOutdatedDetail = Yn anffodus, nid yw'r fersiwn yma o Firefox yn cynnal y technoleg gwe sy'n gyrru Firefox Send. Bydd angen i chi ddiweddaru eich porwr. notSupportedOutdatedDetail = Yn anffodus, nid yw'r fersiwn yma o Firefox yn cynnal y technoleg gwe sy'n gyrru Send. Bydd angen i chi ddiweddaru eich porwr.
updateFirefox = Diweddaru Firefox updateFirefox = Diweddaru Firefox
deletePopupCancel = Diddymu deletePopupCancel = Diddymu
deleteButtonHover = Dileu deleteButtonHover = Dileu
@@ -41,8 +41,8 @@ footerLinkLegal = Cyfreithiol
footerLinkPrivacy = Preifatrwydd footerLinkPrivacy = Preifatrwydd
footerLinkCookies = Cwcis footerLinkCookies = Cwcis
passwordTryAgain = Cyfrinair anghywir. Ceisiwch eto. passwordTryAgain = Cyfrinair anghywir. Ceisiwch eto.
javascriptRequired = Mae Firefox Send angen JavaScript javascriptRequired = Mae Send angen JavaScript
whyJavascript = Pam fod Firefox Send angen JavaScript? whyJavascript = Pam fod Send angen JavaScript?
enableJavascript = Galluogwch JavaScript a cheisio eto. enableJavascript = Galluogwch JavaScript a cheisio eto.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }a { $minutes }m expiresHoursMinutes = { $hours }a { $minutes }m
@@ -55,8 +55,7 @@ passwordSetError = Nid oedd modd gosod y cyfrinair hwn
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Anfon -send-short-brand = Anfon
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -147,7 +146,6 @@ legalDateStamp = Fersiwn 1.0, dyddiedig Mawrth 12, 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } d { $hours } a { $minutes } m expiresDaysHoursMinutes = { $days } d { $hours } a { $minutes } m
addFilesButton = Dewis ffeiliau i'w llwytho i fyny addFilesButton = Dewis ffeiliau i'w llwytho i fyny
trustWarningMessage = Gwnewch yn siŵr eich bod yn ymddiried yn eich derbynnydd pan yn rhannu data sensitif.
uploadButton = Llwytho i fyny uploadButton = Llwytho i fyny
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Llusgo a gollwng ffeiliau dragAndDropFiles = Llusgo a gollwng ffeiliau
@@ -189,41 +187,3 @@ shareLinkButton = Rhannu'r ddolen
shareMessage = Llwytho i lawr “{ $name }” gyda { -send-brand }: rhannu ffeiliau syml a diogel shareMessage = Llwytho i lawr “{ $name }” gyda { -send-brand }: rhannu ffeiliau syml a diogel
trailheadPromo = Mae ffordd o ddiogelu eich preifatrwydd. Ymunwch â Firefox. trailheadPromo = Mae ffordd o ddiogelu eich preifatrwydd. Ymunwch â Firefox.
learnMore = Dysgu rhagor. learnMore = Dysgu rhagor.
downloadFlagged = Mae'r ddolen wedi'i analluogi am fynd yn groes i'r telerau gwasanaeth.
downloadConfirmTitle = Un peth arall
downloadConfirmDescription = Gwnewch yn siŵr eich bod yn ymddiried yn y person a anfonodd y ffeil hon atoch oherwydd nid ydym yn gallu gwirio na fydd yn niweidio'ch dyfais.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[zero] Rwy'n ymddiried yn y person anfonodd yr { $count } ffeil yma
[one] Rwy'n ymddiried yn y person anfonodd yr { $count } ffeil yma
[two] Rwy'n ymddiried yn y person anfonodd yr { $count } ffeil yma
[few] Rwy'n ymddiried yn y person anfonodd yr { $count } ffeil yma
[many] Rwy'n ymddiried yn y person anfonodd yr { $count } ffeil yma
*[other] Rwy'n ymddiried yn y person anfonodd yr { $count } ffeil yma
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[zero] Adrodd y { $count } ffeil yma fel rhai amheus
[one] Adrodd y { $count } ffeil yma fel un amheus
[two] Adrodd y { $count } ffeil yma fel rhai amheus
[few] Adrodd y { $count } ffeil yma fel rhai amheus
[many] Adrodd y { $count } ffeil yma fel rhai amheus
*[other] Adrodd y { $count } ffeil yma fel rhai amheus
}
reportDescription = Helpwch ni i ddeall beth sy'n digwydd. Beth ydych chi'n meddwl sydd o'i le gyda'r ffeiliau hyn?
reportUnknownDescription = Ewch i url y ddolen rydych am adrodd amdani a chlicio “{ reportFile }”.
reportButton = Adrodd
reportReasonMalware = Mae'r ffeiliau hyn yn cynnwys meddalwedd maleisus neu'n rhan o ymosodiad gwe-rwydo.
reportReasonPii = Mae'r ffeiliau hyn yn cynnwys gwybodaeth bersonol adnabyddadwy amdanaf i.
reportReasonAbuse = Mae'r ffeiliau hyn yn cynnwys deunydd anghyfreithlon neu ymosodol.
reportReasonCopyright = I adrodd ar dorri hawlfraint neu nod masnach, defnyddiwch y broses sy'n cael ei ddisgrifio yn y <a>dudalen hon</a>.
reportedTitle = Ffeiliau Adroddwyd Amdanynt
reportedDescription = Diolch. Rydym wedi derbyn eich adroddiad ar y ffeiliau hyn.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Feedback
importingFile = Importerer… importingFile = Importerer…
encryptingFile = Krypterer… encryptingFile = Krypterer…
decryptingFile = Dekrypterer… decryptingFile = Dekrypterer…
@@ -19,13 +19,13 @@ unlockButtonLabel = Lås op
downloadButtonLabel = Hent downloadButtonLabel = Hent
downloadFinish = Hentning fuldført downloadFinish = Hentning fuldført
fileSizeProgress = ({ $partialSize } af { $totalSize }) fileSizeProgress = ({ $partialSize } af { $totalSize })
sendYourFilesLink = Prøv Firefox Send sendYourFilesLink = Prøv Send
errorPageHeader = Der gik noget galt! errorPageHeader = Der gik noget galt!
fileTooBig = Den fil er for stor at uploade. Den skal være mindre end { $size }. fileTooBig = Den fil er for stor at uploade. Den skal være mindre end { $size }.
linkExpiredAlt = Link er udløbet linkExpiredAlt = Link er udløbet
notSupportedHeader = Din browser understøttes ikke. notSupportedHeader = Din browser understøttes ikke.
notSupportedLink = Hvorfor understøttes min browser ikke? notSupportedLink = Hvorfor understøttes min browser ikke?
notSupportedOutdatedDetail = Desværre understøtter denne version af Firefox ikke den webteknologi, som driver Firefox Send. Du skal opdatere din browser. notSupportedOutdatedDetail = Desværre understøtter denne version af Firefox ikke den webteknologi, som driver Send. Du skal opdatere din browser.
updateFirefox = Opdater Firefox updateFirefox = Opdater Firefox
deletePopupCancel = Annuller deletePopupCancel = Annuller
deleteButtonHover = Slet deleteButtonHover = Slet
@@ -33,8 +33,8 @@ footerLinkLegal = Juridisk
footerLinkPrivacy = Privatliv footerLinkPrivacy = Privatliv
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Forkert adgangskode. Prøv igen. passwordTryAgain = Forkert adgangskode. Prøv igen.
javascriptRequired = Firefox Send kræver JavaScript javascriptRequired = Send kræver JavaScript
whyJavascript = Hvorfor kræver Firefox Send JavaScript? whyJavascript = Hvorfor kræver Send JavaScript?
enableJavascript = Aktiver JavaScript og prøv igen. enableJavascript = Aktiver JavaScript og prøv igen.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } t { $minutes } m expiresHoursMinutes = { $hours } t { $minutes } m
@@ -47,8 +47,7 @@ passwordSetError = Adgangskoden kunne ikke sættes
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Version 1.0, udsendt d. 12. marts 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } d. { $hours } t. { $minutes } m. expiresDaysHoursMinutes = { $days } d. { $hours } t. { $minutes } m.
addFilesButton = Vælg filer, der skal uploades addFilesButton = Vælg filer, der skal uploades
trustWarningMessage = Vær sikker på, at du stoler på modtageren, når du deler følsomme data.
uploadButton = Upload uploadButton = Upload
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Træk og slip filer dragAndDropFiles = Træk og slip filer
@@ -153,33 +151,3 @@ shareLinkButton = Del link
shareMessage = Hent { $name } med { -send-brand } - simpel og sikker fildeling shareMessage = Hent { $name } med { -send-brand } - simpel og sikker fildeling
trailheadPromo = Beskyt dine digitale rettigheder. Slut dig til Firefox. trailheadPromo = Beskyt dine digitale rettigheder. Slut dig til Firefox.
learnMore = Læs mere. learnMore = Læs mere.
downloadFlagged = Dette link er blevet deaktiveret for overtrædelse af tjenestevilkårene.
downloadConfirmTitle = En ting til
downloadConfirmDescription = Vær sikker på, at du stoler på afsenderen af denne fil, da vi ikke kan garantere, at den ikke vil skade din enhed.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Jeg stoler på personen, som sendte denne fil
*[other] Jeg stoler på personen, som sendte disse filer
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Rapportér denne fil som mistænkelig
*[other] Rapportér disse filer som mistænkelige
}
reportDescription = Hjælp os med at forstå, hvad der foregår. Hvad er der i vejen med disse filer?
reportUnknownDescription = Gå til adressen på det link, du vil rapportere, og klik på “{ reportFile }”.
reportButton = Rapportér
reportReasonMalware = Disse filer indeholder malware eller er en del af et phishing-angreb.
reportReasonPii = Disse filer indeholder oplysninger om mig, der er personligt identificerbare.
reportReasonAbuse = Disse filer indeholder ulovligt eller voldeligt indhold.
reportReasonCopyright = Hvis du vil rapportere overtrædelse af ophavsrettigheder eller varemærker, skal du bruge processen, som er beskrevet på <a>denne side</a>.
reportedTitle = Rapporterede filer
reportedDescription = Tak. Vi har modtaget din rapport om disse filer.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Feedback
importingFile = Wird importiert… importingFile = Wird importiert…
encryptingFile = Wird verschlüsselt… encryptingFile = Wird verschlüsselt…
decryptingFile = Wird entschlüsselt… decryptingFile = Wird entschlüsselt…
@@ -19,13 +19,13 @@ unlockButtonLabel = Entsperren
downloadButtonLabel = Herunterladen downloadButtonLabel = Herunterladen
downloadFinish = Download abgeschlossen downloadFinish = Download abgeschlossen
fileSizeProgress = ({ $partialSize } von { $totalSize }) fileSizeProgress = ({ $partialSize } von { $totalSize })
sendYourFilesLink = Firefox Send ausprobieren sendYourFilesLink = Send ausprobieren
errorPageHeader = Ein Fehler ist aufgetreten! errorPageHeader = Ein Fehler ist aufgetreten!
fileTooBig = Die Datei ist zu groß zum Hochladen. Sie sollte maximal { $size } groß sein. fileTooBig = Die Datei ist zu groß zum Hochladen. Sie sollte maximal { $size } groß sein.
linkExpiredAlt = Link abgelaufen linkExpiredAlt = Link abgelaufen
notSupportedHeader = Dein Browser wird nicht unterstützt. notSupportedHeader = Dein Browser wird nicht unterstützt.
notSupportedLink = Warum wird mein Browser nicht unterstützt? notSupportedLink = Warum wird mein Browser nicht unterstützt?
notSupportedOutdatedDetail = Leider unterstützt diese Firefox-Version die Web-Technologie nicht, auf der Firefox Send basiert. Du musst deinen Browser aktualisieren. notSupportedOutdatedDetail = Leider unterstützt diese Firefox-Version die Web-Technologie nicht, auf der Send basiert. Du musst deinen Browser aktualisieren.
updateFirefox = Firefox aktualisieren updateFirefox = Firefox aktualisieren
deletePopupCancel = Abbrechen deletePopupCancel = Abbrechen
deleteButtonHover = Löschen deleteButtonHover = Löschen
@@ -33,8 +33,8 @@ footerLinkLegal = Rechtliches
footerLinkPrivacy = Datenschutz footerLinkPrivacy = Datenschutz
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Falsches Passwort. Versuche es nochmal. passwordTryAgain = Falsches Passwort. Versuche es nochmal.
javascriptRequired = Firefox Send benötigt JavaScript javascriptRequired = Send benötigt JavaScript
whyJavascript = Warum benötigt Firefox Send JavaScript? whyJavascript = Warum benötigt Send JavaScript?
enableJavascript = Bitte aktiviere JavaScript und versuche es erneut. enableJavascript = Bitte aktiviere JavaScript und versuche es erneut.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -47,8 +47,7 @@ passwordSetError = Dieses Passwort konnte nicht eingerichtet werden
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Version 1.0, Stand 12. März 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Dateien zum Hochladen auswählen addFilesButton = Dateien zum Hochladen auswählen
trustWarningMessage = Sie sollten dem Empfänger vertrauen, wenn Sie vertrauliche Daten weitergeben.
uploadButton = Hochladen uploadButton = Hochladen
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Dateien per Drag & Drop einfügen dragAndDropFiles = Dateien per Drag & Drop einfügen
@@ -153,33 +151,3 @@ shareLinkButton = Link teilen
shareMessage = Laden Sie „{ $name }“ mit { -send-brand } herunter: einfaches, sicheres Teilen von Dateien shareMessage = Laden Sie „{ $name }“ mit { -send-brand } herunter: einfaches, sicheres Teilen von Dateien
trailheadPromo = Es gibt einen Weg, deine Privatsphäre zu schützen. Komm zu Firefox. trailheadPromo = Es gibt einen Weg, deine Privatsphäre zu schützen. Komm zu Firefox.
learnMore = Mehr erfahren. learnMore = Mehr erfahren.
downloadFlagged = Dieser Link wurde wegen Verstoßes gegen die Nutzungsbedingungen deaktiviert.
downloadConfirmTitle = Eine Sache noch
downloadConfirmDescription = Sie sollten dem Absender dieser Datei vertrauen, da wir nicht überprüfen können, ob Ihr Gerät dadurch beschädigt wird.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Ich vertraue der Person, die diese Datei gesendet hat
*[other] Ich vertraue der Person, die diese Dateien gesendet hat
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Diese Datei als verdächtig melden
*[other] Diese Dateien als verdächtig melden
}
reportDescription = Helfen Sie uns mit weiteren Informationen. Wo liegt das Problem bei diesen Dateien?
reportUnknownDescription = Bitte besuchen Sie die Adresse des Links, den Sie melden möchten, und klicken Sie auf „{ reportFile }“.
reportButton = Melden
reportReasonMalware = Diese Dateien enthalten Malware oder sind Teil eines Phishing-Angriffs.
reportReasonPii = Diese Dateien enthalten personenbezogene Daten über mich.
reportReasonAbuse = Diese Dateien enthalten illegale oder missbräuchliche Inhalte.
reportReasonCopyright = Um Urheber- oder Markenrechtsverletzungen zu melden, nutzen Sie bitte das auf <a>dieser Seite</a> beschriebene Verfahren.
reportedTitle = Dateien gemeldet
reportedDescription = Vielen Dank. Wir haben Ihren Bericht über diese Dateien erhalten.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Komentar
importingFile = Importěrujo se... importingFile = Importěrujo se...
encryptingFile = Koděrujo se... encryptingFile = Koděrujo se...
decryptingFile = Dešifrěrujo se... decryptingFile = Dešifrěrujo se...
@@ -23,13 +23,13 @@ unlockButtonLabel = Wótwóriś
downloadButtonLabel = Ześěgnuś downloadButtonLabel = Ześěgnuś
downloadFinish = Ześěgnjenje dokóńcone downloadFinish = Ześěgnjenje dokóńcone
fileSizeProgress = ({ $partialSize } z { $totalSize }) fileSizeProgress = ({ $partialSize } z { $totalSize })
sendYourFilesLink = Firefox Send wopytaś sendYourFilesLink = Send wopytaś
errorPageHeader = Něco njejo se raźiło! errorPageHeader = Něco njejo se raźiło!
fileTooBig = Toś ta dataja jo pśewjelika za nagraśe. Měła mjeńša ako { $size } byś. fileTooBig = Toś ta dataja jo pśewjelika za nagraśe. Měła mjeńša ako { $size } byś.
linkExpiredAlt = Wótkaz spadnjony linkExpiredAlt = Wótkaz spadnjony
notSupportedHeader = Waš wobglědowak se njepódpěra. notSupportedHeader = Waš wobglědowak se njepódpěra.
notSupportedLink = Cogodla se mój wobglědowak njepódpěra? notSupportedLink = Cogodla se mój wobglědowak njepódpěra?
notSupportedOutdatedDetail = Bóžko toś ta wersija Firefox webtechnologiju njepódpěra, na kótarejž Firefox Send bazěrujo. Musyśo swój wobglědowak aktualizěrowaś. notSupportedOutdatedDetail = Bóžko toś ta wersija Firefox webtechnologiju njepódpěra, na kótarejž Send bazěrujo. Musyśo swój wobglědowak aktualizěrowaś.
updateFirefox = Firefox aktualizěrowaś updateFirefox = Firefox aktualizěrowaś
deletePopupCancel = Pśetergnuś deletePopupCancel = Pśetergnuś
deleteButtonHover = Wulašowaś deleteButtonHover = Wulašowaś
@@ -37,8 +37,8 @@ footerLinkLegal = Pšawniske
footerLinkPrivacy = Priwatnosć footerLinkPrivacy = Priwatnosć
footerLinkCookies = Cookieje footerLinkCookies = Cookieje
passwordTryAgain = Wopacne gronidło. Wopytajśo hyšći raz. passwordTryAgain = Wopacne gronidło. Wopytajśo hyšći raz.
javascriptRequired = Firefox Send JavaScript trjeba javascriptRequired = Send JavaScript trjeba
whyJavascript = Cogodla Firefox Send JavaScript trjeba? whyJavascript = Cogodla Send JavaScript trjeba?
enableJavascript = Pšosym zmóžniśo JavaScript a wopytajśo hyšći raz. enableJavascript = Pšosym zmóžniśo JavaScript a wopytajśo hyšći raz.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } góź. { $minutes } min. expiresHoursMinutes = { $hours } góź. { $minutes } min.
@@ -51,8 +51,7 @@ passwordSetError = Toś to gronidło njedajo se nastajiś
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -131,7 +130,6 @@ legalDateStamp = Wersija 1.0 wót 12. měrca 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }ź { $hours }g { $minutes }m expiresDaysHoursMinutes = { $days }ź { $hours }g { $minutes }m
addFilesButton = Dataje za nagrawanje wubraś addFilesButton = Dataje za nagrawanje wubraś
trustWarningMessage = Wy měł dostawarjeju dowěriś, gaž sensibelne daty źěliśo.
uploadButton = Nagraś uploadButton = Nagraś
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Śěgniśo a wótpołožćo dataje dragAndDropFiles = Śěgniśo a wótpołožćo dataje
@@ -171,37 +169,3 @@ shareLinkButton = Wótkaz źěliś
shareMessage = Ześěgniśo „{ $name }“ z { -send-brand }: jadnore, wěste źělenje datajow shareMessage = Ześěgniśo „{ $name }“ z { -send-brand }: jadnore, wěste źělenje datajow
trailheadPromo = Jo móžnosć, wašu priwatnosć šćitaś. Pśiźćo k Firefox. trailheadPromo = Jo móžnosć, wašu priwatnosć šćitaś. Pśiźćo k Firefox.
learnMore = Dalšne informacije. learnMore = Dalšne informacije.
downloadFlagged = Toś ten wótkaz jo se znjemóžnił pśestupjenja wužywańskich wuměnjenjow dla.
downloadConfirmTitle = Jadna wěc hyšći
downloadConfirmDescription = Wy měł wótpósłarjeju toś teje dataje dowěriś, dokulaž njamóžomy pśeglědaś, lěc to waš rěd kazy.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Dowěrim wósobje, kótaraž jo pósłała toś tu dataju
[two] Dowěrim wósobje, kótaraž jo pósłała toś tej dataji
[few] Dowěrim wósobje, kótaraž jo pósłała toś te dataje
*[other] Dowěrim wósobje, kótaraž jo pósłała toś te dataje
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Toś tu dataju ako suspektnu k wěsći daś
[two] Toś tej dataji ako suspektnej k wěsći daś
[few] Toś te dataje ako suspektne k wěsći daś
*[other] Toś te dataje ako suspektne k wěsći daś
}
reportDescription = Pomagajśo nam rozumić, co se stawa. Co pó wašom měnjenju njejo w pórědku z toś tymi datajami?
reportUnknownDescription = Źiśo pšosym k URL wótkaza, kótaryž cośo k wěsći daś a klikniśo na „{ reportFile }“.
reportButton = K wěsći daś
reportReasonMalware = Toś te dataje škódnu softwaru wopśimuju abo su źěl napada kšadnjenja datow.
reportReasonPii = Toś te dataje wósobinske informacije wó mnje, kótarež mógu mě identificěrowaś.
reportReasonAbuse = Toś te dataje njedowólone abo ranjece wopśimjeśe wopśimuju.
reportReasonCopyright = Aby pśestupjenje awtorskego pšawa abo pšawa wikowwych markow k wěsći dał, wužywajśo póstupowanje, kótarež se na <a>toś tom boku</a> wopisujo.
reportedTitle = Dataje k wěsći dane
reportedDescription = Wjeliki źěk. Smy dostali wašu rozpšawu wó toś tych datajach.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Σχόλια
importingFile = Εισαγωγή… importingFile = Εισαγωγή…
encryptingFile = Κρυπτογράφηση… encryptingFile = Κρυπτογράφηση…
decryptingFile = Αποκρυπτογράφηση… decryptingFile = Αποκρυπτογράφηση…
@@ -19,13 +19,13 @@ unlockButtonLabel = Ξεκλείδωμα
downloadButtonLabel = Λήψη downloadButtonLabel = Λήψη
downloadFinish = Η λήψη ολοκληρώθηκε downloadFinish = Η λήψη ολοκληρώθηκε
fileSizeProgress = ({ $partialSize } από { $totalSize }) fileSizeProgress = ({ $partialSize } από { $totalSize })
sendYourFilesLink = Δοκιμάστε το Firefox Send sendYourFilesLink = Δοκιμάστε το Send
errorPageHeader = Κάτι πήγε στραβά! errorPageHeader = Κάτι πήγε στραβά!
fileTooBig = Αυτό το αρχείο είναι πολύ μεγάλο για μεταφόρτωση. Πρέπει να είναι μικρότερο από { $size }. fileTooBig = Αυτό το αρχείο είναι πολύ μεγάλο για μεταφόρτωση. Πρέπει να είναι μικρότερο από { $size }.
linkExpiredAlt = Ο σύνδεσμος έληξε linkExpiredAlt = Ο σύνδεσμος έληξε
notSupportedHeader = Το πρόγραμμα περιήγησής σας δεν υποστηρίζεται. notSupportedHeader = Το πρόγραμμα περιήγησής σας δεν υποστηρίζεται.
notSupportedLink = Γιατί δεν υποστηρίζεται το πρόγραμμα περιήγησής μου; notSupportedLink = Γιατί δεν υποστηρίζεται το πρόγραμμα περιήγησής μου;
notSupportedOutdatedDetail = Δυστυχώς, αυτή η έκδοση του Firefox δεν υποστηρίζει την τεχνολογία ιστού στην οποία βασίζεται το Firefox Send. Πρέπει να ενημερώσετε το πρόγραμμα περιήγησής σας. notSupportedOutdatedDetail = Δυστυχώς, αυτή η έκδοση του Firefox δεν υποστηρίζει την τεχνολογία ιστού στην οποία βασίζεται το Send. Πρέπει να ενημερώσετε το πρόγραμμα περιήγησής σας.
updateFirefox = Ενημέρωση Firefox updateFirefox = Ενημέρωση Firefox
deletePopupCancel = Ακύρωση deletePopupCancel = Ακύρωση
deleteButtonHover = Διαγραφή deleteButtonHover = Διαγραφή
@@ -33,8 +33,8 @@ footerLinkLegal = Νομικά
footerLinkPrivacy = Απόρρητο footerLinkPrivacy = Απόρρητο
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Λάθος κωδικός πρόσβασης. Δοκιμάστε ξανά. passwordTryAgain = Λάθος κωδικός πρόσβασης. Δοκιμάστε ξανά.
javascriptRequired = Το Firefox Send απαιτεί JavaScript javascriptRequired = Το Send απαιτεί JavaScript
whyJavascript = Γιατί το Firefox Send απαιτεί JavaScript; whyJavascript = Γιατί το Send απαιτεί JavaScript;
enableJavascript = Παρακαλώ ενεργοποιήστε το JavaScript και δοκιμάστε ξανά. enableJavascript = Παρακαλώ ενεργοποιήστε το JavaScript και δοκιμάστε ξανά.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }ώ { $minutes }λ expiresHoursMinutes = { $hours }ώ { $minutes }λ
@@ -47,8 +47,7 @@ passwordSetError = Δεν ήταν δυνατός ο ορισμός αυτού
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Έκδοση 1.0, από 12 Μαρτίου 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }η { $hours }ώ { $minutes }λ expiresDaysHoursMinutes = { $days }η { $hours }ώ { $minutes }λ
addFilesButton = Επιλέξτε αρχεία για μεταφόρτωση addFilesButton = Επιλέξτε αρχεία για μεταφόρτωση
trustWarningMessage = Βεβαιωθείτε ότι ο παραλήπτης είναι έμπιστος πριν μοιραστείτε ευαίσθητα δεδομένα.
uploadButton = Μεταφόρτωση uploadButton = Μεταφόρτωση
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Σύρετε και εναποθέστε αρχεία dragAndDropFiles = Σύρετε και εναποθέστε αρχεία
@@ -140,7 +138,7 @@ accountBenefitSync = Διαχειριστείτε τα διαμοιρασμέν
accountBenefitMoz = Μάθετε για τις άλλες υπηρεσίες της { -mozilla } accountBenefitMoz = Μάθετε για τις άλλες υπηρεσίες της { -mozilla }
signOut = Αποσύνδεση signOut = Αποσύνδεση
okButton = OK okButton = OK
downloadingTitle = Γίνεται λήψη downloadingTitle = Λήψη
noStreamsWarning = Αυτό το πρόγραμμα περιήγησης ενδέχεται να μην μπορέσει να αποκρυπτογραφήσει αρχεία αυτού του μεγέθους. noStreamsWarning = Αυτό το πρόγραμμα περιήγησης ενδέχεται να μην μπορέσει να αποκρυπτογραφήσει αρχεία αυτού του μεγέθους.
noStreamsOptionCopy = Αντιγράψτε το σύνδεσμο για άνοιγμα σε άλλο πρόγραμμα περιήγησης noStreamsOptionCopy = Αντιγράψτε το σύνδεσμο για άνοιγμα σε άλλο πρόγραμμα περιήγησης
noStreamsOptionFirefox = Δοκιμάστε το αγαπημένο μας πρόγραμμα περιήγησης noStreamsOptionFirefox = Δοκιμάστε το αγαπημένο μας πρόγραμμα περιήγησης
@@ -153,33 +151,3 @@ shareLinkButton = Κοινή χρήση συνδέσμου
shareMessage = Λήψη του “{ $name }” με το { -send-brand }: απλός και ασφαλής διαμοιρασμός αρχείων shareMessage = Λήψη του “{ $name }” με το { -send-brand }: απλός και ασφαλής διαμοιρασμός αρχείων
trailheadPromo = Υπάρχει τρόπος να προστατέψετε το απόρρητό σας. Γίνετε μέλος του Firefox. trailheadPromo = Υπάρχει τρόπος να προστατέψετε το απόρρητό σας. Γίνετε μέλος του Firefox.
learnMore = Μάθετε περισσότερα. learnMore = Μάθετε περισσότερα.
downloadFlagged = Αυτός ο σύνδεσμος έχει απενεργοποιηθεί λόγω παραβίασης των όρων υπηρεσίας.
downloadConfirmTitle = Κάτι ακόμα
downloadConfirmDescription = Βεβαιωθείτε ότι το αρχείο προέρχεται από έμπιστο άτομο, καθώς δεν μπορούμε να επαληθεύσουμε ότι δεν θα βλάψει τη συσκευή σας.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Εμπιστεύομαι το άτομο που έστειλε το αρχείο
*[other] Εμπιστεύομαι το άτομο που έστειλε τα αρχεία
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Αναφορά ύποπτου αρχείου
*[other] Αναφορά ύποπτων αρχείων
}
reportDescription = Βοηθήστε μας να καταλάβουμε τι συμβαίνει. Τι νομίζετε ότι δεν πάει καλά με αυτά τα αρχεία;
reportUnknownDescription = Παρακαλούμε μεταβείτε στο URL του συνδέσμου που θέλετε να αναφέρετε και κάντε κλικ στο "{ reportFile }".
reportButton = Αναφορά
reportReasonMalware = Αυτά τα αρχεία περιέχουν κακόβουλο λογισμικό ή αποτελούν μέρος μιας επίθεσης ηλεκτρονικού ψαρέματος.
reportReasonPii = Αυτά τα αρχεία περιέχουν προσωπικές μου πληροφορίες ταυτοποίησης.
reportReasonAbuse = Αυτά τα αρχεία περιέχουν παράνομο ή καταχρηστικό περιεχόμενο.
reportReasonCopyright = Για να αναφέρετε παραβίαση πνευματικών δικαιωμάτων ή εμπορικών σημάτων, χρησιμοποιήστε τη διαδικασία που περιγράφεται σε <a>αυτή τη σελίδα</a>.
reportedTitle = Έγινε αναφορά των αρχείων
reportedDescription = Σας ευχαριστούμε. Λάβαμε την αναφορά σας για τα αρχεία.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Feedback
importingFile = Importing… importingFile = Importing…
encryptingFile = Encrypting… encryptingFile = Encrypting…
decryptingFile = Decrypting… decryptingFile = Decrypting…
@@ -19,13 +19,13 @@ unlockButtonLabel = Unlock
downloadButtonLabel = Download downloadButtonLabel = Download
downloadFinish = Download Complete downloadFinish = Download Complete
fileSizeProgress = ({ $partialSize } of { $totalSize }) fileSizeProgress = ({ $partialSize } of { $totalSize })
sendYourFilesLink = Try Firefox Send sendYourFilesLink = Try Send
errorPageHeader = Something went wrong! errorPageHeader = Something went wrong!
fileTooBig = That file is too big to upload. It should be less than { $size }. fileTooBig = That file is too big to upload. It should be less than { $size }.
linkExpiredAlt = Link expired linkExpiredAlt = Link expired
notSupportedHeader = Your browser is not supported. notSupportedHeader = Your browser is not supported.
notSupportedLink = Why is my browser not supported? notSupportedLink = Why is my browser not supported?
notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Firefox Send. Youll need to update your browser. notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. Youll need to update your browser.
updateFirefox = Update Firefox updateFirefox = Update Firefox
deletePopupCancel = Cancel deletePopupCancel = Cancel
deleteButtonHover = Delete deleteButtonHover = Delete
@@ -33,8 +33,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Incorrect password. Try again. passwordTryAgain = Incorrect password. Try again.
javascriptRequired = Firefox Send requires JavaScript javascriptRequired = Send requires JavaScript
whyJavascript = Why does Firefox Send require JavaScript? whyJavascript = Why does Send require JavaScript?
enableJavascript = Please enable JavaScript and try again. enableJavascript = Please enable JavaScript and try again.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -47,8 +47,7 @@ passwordSetError = This password could not be set
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Version 1.0, dated March 12, 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Select files to upload addFilesButton = Select files to upload
trustWarningMessage = Make sure you trust your recipient when sharing sensitive data.
uploadButton = Upload uploadButton = Upload
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Drag and drop files dragAndDropFiles = Drag and drop files
@@ -153,33 +151,3 @@ shareLinkButton = Share link
shareMessage = Download “{ $name }” with { -send-brand }: simple, safe file sharing shareMessage = Download “{ $name }” with { -send-brand }: simple, safe file sharing
trailheadPromo = There is a way to protect your privacy. Join Firefox. trailheadPromo = There is a way to protect your privacy. Join Firefox.
learnMore = Learn more. learnMore = Learn more.
downloadFlagged = This link has been disabled for violating the terms of service.
downloadConfirmTitle = One more thing
downloadConfirmDescription = Make sure you trust the person who sent you this file because we cant verify that it will not harm your device.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] I trust the person who sent this file
*[other] I trust the person who sent these files
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Report this file as suspicious
*[other] Report these files as suspicious
}
reportDescription = Help us understand whats going on. What do you think is wrong with these files?
reportUnknownDescription = Please go to the URL of the link you wish to report and click “{ reportFile }”.
reportButton = Report
reportReasonMalware = These files contain malware or are part of a phishing attack.
reportReasonPii = These files contain personally identifiable information about me.
reportReasonAbuse = These files contain illegal or abusive content.
reportReasonCopyright = To report copyright or trademark infringement, use the process described at <a>this page</a>.
reportedTitle = Files Reported
reportedDescription = Thank you. We have received your report on these files.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Feedback
importingFile = Importing… importingFile = Importing…
encryptingFile = Encrypting… encryptingFile = Encrypting…
decryptingFile = Decrypting… decryptingFile = Decrypting…
@@ -19,13 +19,13 @@ unlockButtonLabel = Unlock
downloadButtonLabel = Download downloadButtonLabel = Download
downloadFinish = Download Complete downloadFinish = Download Complete
fileSizeProgress = ({ $partialSize } of { $totalSize }) fileSizeProgress = ({ $partialSize } of { $totalSize })
sendYourFilesLink = Try Firefox Send sendYourFilesLink = Try Send
errorPageHeader = Something went wrong! errorPageHeader = Something went wrong!
fileTooBig = That file is too big to upload. It should be less than { $size }. fileTooBig = That file is too big to upload. It should be less than { $size }.
linkExpiredAlt = Link expired linkExpiredAlt = Link expired
notSupportedHeader = Your browser is not supported. notSupportedHeader = Your browser is not supported.
notSupportedLink = Why is my browser not supported? notSupportedLink = Why is my browser not supported?
notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Firefox Send. Youll need to update your browser. notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. Youll need to update your browser.
updateFirefox = Update Firefox updateFirefox = Update Firefox
deletePopupCancel = Cancel deletePopupCancel = Cancel
deleteButtonHover = Delete deleteButtonHover = Delete
@@ -33,8 +33,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Incorrect password. Try again. passwordTryAgain = Incorrect password. Try again.
javascriptRequired = Firefox Send requires JavaScript javascriptRequired = Send requires JavaScript
whyJavascript = Why does Firefox Send require JavaScript? whyJavascript = Why does Send require JavaScript?
enableJavascript = Please enable JavaScript and try again. enableJavascript = Please enable JavaScript and try again.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -47,8 +47,7 @@ passwordSetError = This password could not be set
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Version 1.0, dated March 12, 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Select files to upload addFilesButton = Select files to upload
trustWarningMessage = Make sure you trust your recipient when sharing sensitive data.
uploadButton = Upload uploadButton = Upload
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Drag and drop files dragAndDropFiles = Drag and drop files
@@ -153,33 +151,3 @@ shareLinkButton = Share link
shareMessage = Download “{ $name }” with { -send-brand }: simple, safe file sharing shareMessage = Download “{ $name }” with { -send-brand }: simple, safe file sharing
trailheadPromo = There is a way to protect your privacy. Join Firefox. trailheadPromo = There is a way to protect your privacy. Join Firefox.
learnMore = Learn more. learnMore = Learn more.
downloadFlagged = This link has been disabled for violating the terms of service.
downloadConfirmTitle = One more thing
downloadConfirmDescription = Make sure you trust the person who sent you this file because we cant verify that it will not harm your device.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] I trust the person who sent this file
*[other] I trust the person who sent these files
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Report this file as suspicious
*[other] Report these files as suspicious
}
reportDescription = Help us understand whats going on. What do you think is wrong with these files?
reportUnknownDescription = Please go to the url of the link you wish to report and click “{ reportFile }”.
reportButton = Report
reportReasonMalware = These files contain malware or are part of a phishing attack.
reportReasonPii = These files contain personally identifiable information about me.
reportReasonAbuse = These files contain illegal or abusive content.
reportReasonCopyright = To report copyright or trademark infringement, use the process described at <a>this page</a>.
reportedTitle = Files Reported
reportedDescription = Thank you. We have received your report on these files.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Feedback
importingFile = Importing… importingFile = Importing…
encryptingFile = Encrypting… encryptingFile = Encrypting…
decryptingFile = Decrypting… decryptingFile = Decrypting…
@@ -17,13 +17,13 @@ unlockButtonLabel = Unlock
downloadButtonLabel = Download downloadButtonLabel = Download
downloadFinish = Download complete downloadFinish = Download complete
fileSizeProgress = ({ $partialSize } of { $totalSize }) fileSizeProgress = ({ $partialSize } of { $totalSize })
sendYourFilesLink = Try Firefox Send sendYourFilesLink = Try Send
errorPageHeader = Something went wrong! errorPageHeader = Something went wrong!
fileTooBig = That file is too big to upload. It should be less than { $size } fileTooBig = That file is too big to upload. It should be less than { $size }
linkExpiredAlt = Link expired linkExpiredAlt = Link expired
notSupportedHeader = Your browser is not supported. notSupportedHeader = Your browser is not supported.
notSupportedLink = Why is my browser not supported? notSupportedLink = Why is my browser not supported?
notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Firefox Send. Youll need to update your browser. notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Send. Youll need to update your browser.
updateFirefox = Update Firefox updateFirefox = Update Firefox
deletePopupCancel = Cancel deletePopupCancel = Cancel
deleteButtonHover = Delete deleteButtonHover = Delete
@@ -31,8 +31,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Incorrect password. Try again. passwordTryAgain = Incorrect password. Try again.
javascriptRequired = Firefox Send requires JavaScript javascriptRequired = Send requires JavaScript
whyJavascript = Why does Firefox Send require JavaScript? whyJavascript = Why does Send require JavaScript?
enableJavascript = Please enable JavaScript and try again. enableJavascript = Please enable JavaScript and try again.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -45,8 +45,7 @@ passwordSetError = This password could not be set
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -108,7 +107,6 @@ legalDateStamp = Version 1.0, dated March 12, 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Select files to upload addFilesButton = Select files to upload
trustWarningMessage = Make sure you trust your recipient when sharing sensitive data.
uploadButton = Upload uploadButton = Upload
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Drag and drop files dragAndDropFiles = Drag and drop files
@@ -143,35 +141,4 @@ shareLinkDescription = Share the link to your file:
shareLinkButton = Share link shareLinkButton = Share link
# $name is the name of the file # $name is the name of the file
shareMessage = Download “{ $name }” with { -send-brand }: simple, safe file sharing shareMessage = Download “{ $name }” with { -send-brand }: simple, safe file sharing
trailheadPromo = There is a way to protect your privacy. Join Firefox.
learnMore = Learn more. learnMore = Learn more.
downloadFlagged = This link has been disabled for violating the terms of service.
downloadConfirmTitle = One more thing
downloadConfirmDescription = Make sure you trust the person who sent you this file because we cant verify that it will not harm your device.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] I trust the person who sent this file
*[other] I trust the person who sent these files
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Report this file as suspicious
*[other] Report these files as suspicious
}
reportDescription = Help us understand whats going on. What do you think is wrong with these files?
reportUnknownDescription = Please go to the url of the link you wish to report and click “{ reportFile }”.
reportButton = Report
reportReasonMalware = These files contain malware or are part of a phishing attack.
reportReasonPii = These files contain personally identifiable information about me.
reportReasonAbuse = These files contain illegal or abusive content.
reportReasonCopyright = To report copyright or trademark infringement, use the process described at <a>this page</a>.
reportedTitle = Files Reported
reportedDescription = Thank you. We have received your report on these files.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Opinión
importingFile = Importando… importingFile = Importando…
encryptingFile = Cifrando… encryptingFile = Cifrando…
decryptingFile = Descifrando… decryptingFile = Descifrando…
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear
downloadButtonLabel = Descargar downloadButtonLabel = Descargar
downloadFinish = Descarga completa downloadFinish = Descarga completa
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Probá Firefox Send sendYourFilesLink = Probá Send
errorPageHeader = ¡Algo falló! errorPageHeader = ¡Algo falló!
fileTooBig = El archivo es demasiado grande para subir. Debería tener menos de { $size }. fileTooBig = El archivo es demasiado grande para subir. Debería tener menos de { $size }.
linkExpiredAlt = Enlace explirado linkExpiredAlt = Enlace explirado
notSupportedHeader = El navegador no está soportado. notSupportedHeader = El navegador no está soportado.
notSupportedLink = ¿Por qué mi navegador no está soportado? notSupportedLink = ¿Por qué mi navegador no está soportado?
notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox no soporta la tecnología web que necesita Firefox Send. Necesitás actualizar el navegador. notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox no soporta la tecnología web que necesita Send. Necesitás actualizar el navegador.
updateFirefox = Actualizar Firefox updateFirefox = Actualizar Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Borrar deleteButtonHover = Borrar
@@ -33,8 +33,8 @@ footerLinkLegal = Legales
footerLinkPrivacy = Privacidad footerLinkPrivacy = Privacidad
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Contraseña incorrecta. Intentá nuevamente. passwordTryAgain = Contraseña incorrecta. Intentá nuevamente.
javascriptRequired = Firefox Send requiere JavaScript javascriptRequired = Send requiere JavaScript
whyJavascript = ¿Por qué Firefox Send requiere Java Script? whyJavascript = ¿Por qué Send requiere Java Script?
enableJavascript = Por favor habilite JavaScript y pruebe de nuevo. enableJavascript = Por favor habilite JavaScript y pruebe de nuevo.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = h { $hours } m { $minutes } expiresHoursMinutes = h { $hours } m { $minutes }
@@ -47,8 +47,7 @@ passwordSetError = No se pudo establecer la contraseña
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Versión 1.0, con fecha 12 de marzo de 2019.
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Seleccionar archivos para subir addFilesButton = Seleccionar archivos para subir
trustWarningMessage = Asegurate de que confiás en tu destinatario cuando compartís datos confidenciales.
uploadButton = Subir uploadButton = Subir
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Arrastrar y soltar archivos dragAndDropFiles = Arrastrar y soltar archivos
@@ -153,33 +151,3 @@ shareLinkButton = Compartir el enlace
shareMessage = Descargar "{ $name }" con { -send-brand }: compartir archivos de forma simple y segura shareMessage = Descargar "{ $name }" con { -send-brand }: compartir archivos de forma simple y segura
trailheadPromo = Hay una forma de proteger tu privacidad. Unite a Firefox. trailheadPromo = Hay una forma de proteger tu privacidad. Unite a Firefox.
learnMore = Conocer más. learnMore = Conocer más.
downloadFlagged = Este enlace fue deshabilitado por violar los términos del servicio.
downloadConfirmTitle = Una cosa más
downloadConfirmDescription = Asegurate de confiar en la persona que te envió este archivo porque no podemos verificar que no va a dañar tu dispositivo.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Confío en la persona que envió este archivo
*[other] Confío en la persona que envió estos archivos
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Denunciar este archivo como sospechoso
*[other] Denunciar estos archivos como sospechosos
}
reportDescription = Ayudanos a entender lo que está pasando. ¿Qué creés que está mal con estos archivos?
reportUnknownDescription = Navegá a la url del enlace que querés denunciar y hacé clic en "{ reportFile }".
reportButton = Denunciar
reportReasonMalware = Estos archivos contienen programas dañinos o son parte de un fraude electrónico.
reportReasonPii = Estos archivos contienen información personal que me puede identificar.
reportReasonAbuse = Estos archivos contienen contenido ilegal o abusivo.
reportReasonCopyright = Para denunciar una infracción de derechos de autor o de marca registrada, seguí el proceso descrito en <a>esta página</a>.
reportedTitle = Archivos denunciados
reportedDescription = Gracias. Recibimos tu denuncia sobre estos archivos.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Comentarios
importingFile = Importando… importingFile = Importando…
encryptingFile = Cifrando… encryptingFile = Cifrando…
decryptingFile = Descifrando… decryptingFile = Descifrando…
@@ -19,13 +19,13 @@ unlockButtonLabel = Desbloquear
downloadButtonLabel = Descargar downloadButtonLabel = Descargar
downloadFinish = Descarga completa downloadFinish = Descarga completa
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Probar Firefox Send sendYourFilesLink = Probar Send
errorPageHeader = ¡Algo se fue a las pailas! errorPageHeader = ¡Algo se fue a las pailas!
fileTooBig = Ese archivo es muy grande para ser subido. Debiera tener un tamaño menor a { $size }. fileTooBig = Ese archivo es muy grande para ser subido. Debiera tener un tamaño menor a { $size }.
linkExpiredAlt = Enlace expirado linkExpiredAlt = Enlace expirado
notSupportedHeader = Tu navegador no está soportado. notSupportedHeader = Tu navegador no está soportado.
notSupportedLink = ¿Por qué mi navegador no es soportado? notSupportedLink = ¿Por qué mi navegador no es soportado?
notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta la tecnología web que potencia a Firefox Send. Deberás actualizar tu navegador. notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta la tecnología web que potencia a Send. Deberás actualizar tu navegador.
updateFirefox = Actualizar Firefox updateFirefox = Actualizar Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Eliminar deleteButtonHover = Eliminar
@@ -33,8 +33,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privacidad footerLinkPrivacy = Privacidad
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Contraseña incorrecta. Vuelve a intentarlo. passwordTryAgain = Contraseña incorrecta. Vuelve a intentarlo.
javascriptRequired = Firefox Send requiere JavaScript. javascriptRequired = Send requiere JavaScript.
whyJavascript = ¿Por qué Firefox Send requiere JavaScript? whyJavascript = ¿Por qué Send requiere JavaScript?
enableJavascript = Por favor, activa JavaScript y vuelve a intentarlo. enableJavascript = Por favor, activa JavaScript y vuelve a intentarlo.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -47,8 +47,7 @@ passwordSetError = Esta contraseña no pudo ser establecida
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Versión 1.0 del 12 de marzo de 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Selecciona los archivos a subir addFilesButton = Selecciona los archivos a subir
trustWarningMessage = Asegúrate de que confías en tu destinatario cuando compartas datos sensibles.
uploadButton = Subir uploadButton = Subir
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Arrastra y suelta archivos dragAndDropFiles = Arrastra y suelta archivos
@@ -153,33 +151,3 @@ shareLinkButton = Compartir enlace
shareMessage = Baja "{ $name }" con { -send-brand }: compartir archivos de forma simple y segura shareMessage = Baja "{ $name }" con { -send-brand }: compartir archivos de forma simple y segura
trailheadPromo = Hay una forma de proteger tu privacidad. Únete a Firefox. trailheadPromo = Hay una forma de proteger tu privacidad. Únete a Firefox.
learnMore = Aprender más. learnMore = Aprender más.
downloadFlagged = Este enlace ha sido deshabilitado por violar los términos del servicio.
downloadConfirmTitle = Una cosa más
downloadConfirmDescription = Asegúrate de confiar en la persona que te envió este archivo porque no podemos verificar que no dañará tu dispositivo.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Confío en la persona que envió es archivo
*[other] Confío en la persona que envió estos archivos
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Reportar este archivo como sospechoso
*[other] Reportar estos archivos como sospechosos
}
reportDescription = Ayúdanos a entender lo que está pasando. ¿Qué crees que está mal con estos archivos?
reportUnknownDescription = Por favor, ve a la url del enlace que quieres reportar y haz clic en "{ reportFile }".
reportButton = Reportar
reportReasonMalware = Estos archivos contienen malware o son parte de un ataque de phishing.
reportReasonPii = Estos archivos contienen información personal identificable sobre mí.
reportReasonAbuse = Estos archivos contienen contenido ilegal o abusivo.
reportReasonCopyright = Para denunciar una infracción de derechos de autor o de marca registrada, sigue el proceso descrito en <a>esta página</a>.
reportedTitle = Archivos reportados
reportedDescription = Gracias. Hemos recibido tu reporte sobre estos archivos.

View File

@@ -1,8 +1,8 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Comentario
importingFile = Importando... importingFile = Importando...
encryptingFile = Cifrando... encryptingFile = Encriptando...
decryptingFile = Descifrando... decryptingFile = Desencriptando...
downloadCount = downloadCount =
{ $num -> { $num ->
[one] 1 descarga [one] 1 descarga
@@ -19,22 +19,22 @@ unlockButtonLabel = Desbloquear
downloadButtonLabel = Descargar downloadButtonLabel = Descargar
downloadFinish = Descarga completa downloadFinish = Descarga completa
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Prueba Firefox Send sendYourFilesLink = Prueba Send
errorPageHeader = ¡Se ha producido un error! errorPageHeader = ¡Se produjo un error!
fileTooBig = Ese archivo es muy grande. Debería ocupar menos de { $size }. fileTooBig = Ese archivo es muy grande. Debería ocupar menos de { $size }.
linkExpiredAlt = Enlace caducado linkExpiredAlt = Enlace caducado
notSupportedHeader = Tu navegador no es compatible. notSupportedHeader = Tu navegador no está admitido.
notSupportedLink = ¿Por qué mi navegador no es compatible? notSupportedLink = ¿Por qué no se admite mi navegador?
notSupportedOutdatedDetail = Lamentablemente, esta versión de Firefox no admite la tecnología web que impulsa Firefox Send. Tendrás que actualizar tu navegador. notSupportedOutdatedDetail = Lamentablemente, esta versión de Firefox no admite la tecnología web que impulsa Send. Tendrás que actualizar tu navegador.
updateFirefox = Actualizar Firefox updateFirefox = Actualizar Firefox
deletePopupCancel = Cancelar deletePopupCancel = Cancelar
deleteButtonHover = Eliminar deleteButtonHover = Eliminar
footerLinkLegal = Legal footerLinkLegal = Legal
footerLinkPrivacy = Privacidad footerLinkPrivacy = Privacidad
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Contraseña incorrecta. Inténtalo de nuevo. passwordTryAgain = Contraseña incorrecta. Inténtelo de nuevo.
javascriptRequired = Firefox Send requiere JavaScript javascriptRequired = Send requiere JavaScript
whyJavascript = ¿Por qué Firefox Send requiere JavaScript? whyJavascript = ¿Por qué Send requiere JavaScript?
enableJavascript = Por favor, activa JavaScript y vuelve a intentarlo. enableJavascript = Por favor, activa JavaScript y vuelve a intentarlo.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -47,8 +47,7 @@ passwordSetError = No se ha podido establecer la contraseña
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Enviar -send-short-brand = Enviar
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Versión 1.0 del 12 de marzo de 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Seleccionar archivos para subir addFilesButton = Seleccionar archivos para subir
trustWarningMessage = Asegúrate de que confías en tu destinatario cuando compartas datos sensibles.
uploadButton = Subir uploadButton = Subir
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Arrastrar y soltar archivos dragAndDropFiles = Arrastrar y soltar archivos
@@ -153,33 +151,3 @@ shareLinkButton = Compartir enlace
shareMessage = Descargar “{ $name }” con { -send-brand }: comparte archivos de forma segura y sencilla shareMessage = Descargar “{ $name }” con { -send-brand }: comparte archivos de forma segura y sencilla
trailheadPromo = Existe la forma de proteger tu privacidad. Únete a Firefox. trailheadPromo = Existe la forma de proteger tu privacidad. Únete a Firefox.
learnMore = Saber más. learnMore = Saber más.
downloadFlagged = Este enlace ha sido desactivado por violar los términos del servicio.
downloadConfirmTitle = Una cosa más
downloadConfirmDescription = Asegúrate de confiar en la persona que te envió este archivo porque no podemos verificar que no va a dañar tu dispositivo.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Confío en la persona que envió este archivo
*[other] Confío en la persona que envió estos archivos
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Denunciar este archivo como sospechoso
*[other] Denunciar estos archivos como sospechosos
}
reportDescription = Ayúdanos a entender lo que está pasando. ¿Qué crees que está mal con estos archivos?
reportUnknownDescription = Por favor, ve a la url del enlace que quieres denunciar y haz clic en “{ reportFile }”.
reportButton = Denunciar
reportReasonMalware = Estos archivos contienen malware o son parte de un ataque de phishing.
reportReasonPii = Estos archivos contienen información personal identificable sobre mí.
reportReasonAbuse = Estos archivos tienen contenido ilegal o abusivo.
reportReasonCopyright = Para denunciar una infracción de derechos de autor o marca registrada, sigue el proceso descrito en <a>esta página</a>.
reportedTitle = Archivos denunciados
reportedDescription = Gracias. Hemos recibido tu denuncia sobre estos archivos.

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Palaute
importingFile = Tuodaan… importingFile = Tuodaan…
encryptingFile = Salataan... encryptingFile = Salataan...
decryptingFile = Puretaan salausta... decryptingFile = Puretaan salausta...
@@ -19,13 +19,13 @@ unlockButtonLabel = Avaa
downloadButtonLabel = Lataa downloadButtonLabel = Lataa
downloadFinish = Lataus valmis downloadFinish = Lataus valmis
fileSizeProgress = { $partialSize } / { $totalSize } fileSizeProgress = { $partialSize } / { $totalSize }
sendYourFilesLink = Kokeile Firefox Send -palvelua sendYourFilesLink = Kokeile Send -palvelua
errorPageHeader = Jokin meni pieleen! errorPageHeader = Jokin meni pieleen!
fileTooBig = Tämä tiedosto on liian suuri ladattavaksi. Sen pitäisi olla pienempi kuin { $size }. fileTooBig = Tämä tiedosto on liian suuri ladattavaksi. Sen pitäisi olla pienempi kuin { $size }.
linkExpiredAlt = Linkki on vanhentunut linkExpiredAlt = Linkki on vanhentunut
notSupportedHeader = Selaintasi ei tueta. notSupportedHeader = Selaintasi ei tueta.
notSupportedLink = Miksi selaintani ei tueta? notSupportedLink = Miksi selaintani ei tueta?
notSupportedOutdatedDetail = Valitettavasti tämä Firefoxin versio ei tue Firefox Sendiä käyttävää web-tekniikkaa. Sinun on päivitettävä selaimesi. notSupportedOutdatedDetail = Valitettavasti tämä Firefoxin versio ei tue Sendiä käyttävää web-tekniikkaa. Sinun on päivitettävä selaimesi.
updateFirefox = Päivitä Firefox updateFirefox = Päivitä Firefox
deletePopupCancel = Peruuta deletePopupCancel = Peruuta
deleteButtonHover = Poista deleteButtonHover = Poista
@@ -34,7 +34,7 @@ footerLinkPrivacy = Tietosuoja
footerLinkCookies = Evästeet footerLinkCookies = Evästeet
passwordTryAgain = Väärä salasana. Yritä uudelleen. passwordTryAgain = Väärä salasana. Yritä uudelleen.
javascriptRequired = Firefox-Send vaatii JavaScriptin javascriptRequired = Firefox-Send vaatii JavaScriptin
whyJavascript = Miksi Firefox Send vaatii JavaScriptin? whyJavascript = Miksi Send vaatii JavaScriptin?
enableJavascript = Ota JavaScript käyttöön ja yritä uudelleen. enableJavascript = Ota JavaScript käyttöön ja yritä uudelleen.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } t { $minutes } min expiresHoursMinutes = { $hours } t { $minutes } min
@@ -47,8 +47,7 @@ passwordSetError = Tätä salasanaa ei voitu asettaa
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Versio 1.0, päivätty 13. maaliskuuta 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } pv { $hours } t { $minutes } min expiresDaysHoursMinutes = { $days } pv { $hours } t { $minutes } min
addFilesButton = Valitse lähetettävät tiedostot addFilesButton = Valitse lähetettävät tiedostot
trustWarningMessage = Varmista, että luotat vastaanottajaan jakaessasi arkaluontoisia tietoja.
uploadButton = Lähetä uploadButton = Lähetä
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Vedä ja pudota tiedostot dragAndDropFiles = Vedä ja pudota tiedostot
@@ -153,33 +151,3 @@ shareLinkButton = Jaa linkki
shareMessage = Lataa tiedosto ”{ $name }” { -send-brand } -palvelusta: yksinkertaista ja turvallista tiedostonjakoa shareMessage = Lataa tiedosto ”{ $name }” { -send-brand } -palvelusta: yksinkertaista ja turvallista tiedostonjakoa
trailheadPromo = On tapa suojata yksityisyyttään. Liity Firefoxiin. trailheadPromo = On tapa suojata yksityisyyttään. Liity Firefoxiin.
learnMore = Lue lisää. learnMore = Lue lisää.
downloadFlagged = Tämä linkki on poistettu käytöstä palvelun käyttöehtojen rikkomisen vuoksi.
downloadConfirmTitle = Vielä yksi asia
downloadConfirmDescription = Varmista, että luotat sinulle tämän tiedoston lähettäneeseen henkilöön, koska emme voi vahvistaa, ettei kyseinen tiedosto vahingoita laitettasi.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Luotan henkilöön, joka lähetti tämän tiedoston
*[other] Luotan henkilöön, joka lähetti nämä tiedostot
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Ilmoita tämä tiedosto epäilyttävänä
*[other] Ilmoita nämä tiedostot epäilyttävinä
}
reportDescription = Auta meitä ymmärtämään mitä tapahtuu. Mikä on mielestäsi vialla näissä tiedostoissa?
reportUnknownDescription = Siirry sen linkin osoitteeseen, josta haluat tehdä ilmoituksen, ja napsauta “{ reportFile }”.
reportButton = Ilmoita
reportReasonMalware = Nämä tiedostot sisältävät haittaohjelmia tai ovat osa tietojenkalasteluhyökkäystä.
reportReasonPii = Nämä tiedostot sisältävät henkilökohtaisia tietoja minusta.
reportReasonAbuse = Nämä tiedostot sisältävät laitonta tai loukkaavaa sisältöä.
reportReasonCopyright = Ilmoita tekijänoikeuksien tai tavaramerkkien loukkauksista <a>tällä sivulla</a> kuvatun prosessin mukaisesti.
reportedTitle = Tiedostot ilmoitettu
reportedDescription = Kiitos. Olemme vastaanottaneet raporttisi näistä tiedostoista.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Votre avis
importingFile = Importation… importingFile = Importation…
encryptingFile = Chiffrement… encryptingFile = Chiffrement…
decryptingFile = Déchiffrement… decryptingFile = Déchiffrement…
@@ -19,13 +19,13 @@ unlockButtonLabel = Déverrouiller
downloadButtonLabel = Télécharger downloadButtonLabel = Télécharger
downloadFinish = Téléchargement terminé downloadFinish = Téléchargement terminé
fileSizeProgress = ({ $partialSize } sur { $totalSize }) fileSizeProgress = ({ $partialSize } sur { $totalSize })
sendYourFilesLink = Essayer Firefox Send sendYourFilesLink = Essayer Send
errorPageHeader = Une erreur sest produite. errorPageHeader = Une erreur sest produite.
fileTooBig = Ce fichier est trop volumineux pour être envoyé. Sa taille doit être inférieure à { $size }. fileTooBig = Ce fichier est trop volumineux pour être envoyé. Sa taille doit être inférieure à { $size }.
linkExpiredAlt = Le lien a expiré linkExpiredAlt = Le lien a expiré
notSupportedHeader = Votre navigateur nest pas pris en charge. notSupportedHeader = Votre navigateur nest pas pris en charge.
notSupportedLink = Pourquoi mon navigateur nest-il pas pris en charge ? notSupportedLink = Pourquoi mon navigateur nest-il pas pris en charge ?
notSupportedOutdatedDetail = Malheureusement, cette version de Firefox ne prend pas en charge les technologies web utilisées par Firefox Send. Vous devez mettre à jour votre navigateur. notSupportedOutdatedDetail = Malheureusement, cette version de Firefox ne prend pas en charge les technologies web utilisées par Send. Vous devez mettre à jour votre navigateur.
updateFirefox = Mettre à jour Firefox updateFirefox = Mettre à jour Firefox
deletePopupCancel = Annuler deletePopupCancel = Annuler
deleteButtonHover = Supprimer deleteButtonHover = Supprimer
@@ -33,8 +33,8 @@ footerLinkLegal = Mentions légales
footerLinkPrivacy = Confidentialité footerLinkPrivacy = Confidentialité
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Mot de passe incorrect. Veuillez réessayer. passwordTryAgain = Mot de passe incorrect. Veuillez réessayer.
javascriptRequired = Firefox Send nécessite JavaScript javascriptRequired = Send nécessite JavaScript
whyJavascript = Pourquoi Firefox Send nécessite-t-il JavaScript ? whyJavascript = Pourquoi Send nécessite-t-il JavaScript ?
enableJavascript = Veuillez activer JavaScript puis réessayer. enableJavascript = Veuillez activer JavaScript puis réessayer.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } h { $minutes } min expiresHoursMinutes = { $hours } h { $minutes } min
@@ -47,8 +47,7 @@ passwordSetError = Ce mot de passe na pas pu être défini
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Version 1.0 du 12 mars 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } j { $hours } h { $minutes } min expiresDaysHoursMinutes = { $days } j { $hours } h { $minutes } min
addFilesButton = Sélectionnez des fichiers à envoyer addFilesButton = Sélectionnez des fichiers à envoyer
trustWarningMessage = Assurez-vous de faire confiance au destinataire lorsque vous partagez des données sensibles.
uploadButton = Envoyer uploadButton = Envoyer
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Glissez-déposez des fichiers dragAndDropFiles = Glissez-déposez des fichiers
@@ -153,33 +151,3 @@ shareLinkButton = Partager le lien
shareMessage = Télécharger « { $name } » avec { -send-brand } : un moyen simple et sûr de partager des fichiers shareMessage = Télécharger « { $name } » avec { -send-brand } : un moyen simple et sûr de partager des fichiers
trailheadPromo = Il existe un moyen de protéger votre vie privée. Rejoignez Firefox. trailheadPromo = Il existe un moyen de protéger votre vie privée. Rejoignez Firefox.
learnMore = En savoir plus. learnMore = En savoir plus.
downloadFlagged = Ce lien a été désactivé en raison dune violation des conditions dutilisation.
downloadConfirmTitle = Une dernière chose
downloadConfirmDescription = Assurez-vous de faire confiance à la personne qui vous a envoyé ce fichier, car nous ne pouvons pas vérifier quil nendommagera pas votre appareil.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Je fais confiance à la personne qui a envoyé ce fichier
*[other] Je fais confiance à la personne qui a envoyé ces fichiers
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Signaler ce fichier comme suspect
*[other] Signaler ces fichiers comme suspects
}
reportDescription = Aidez-nous à comprendre ce qui se passe. Selon vous, quel est le problème avec ces fichiers ?
reportUnknownDescription = Accédez à ladresse du lien que vous souhaitez signaler et cliquez sur « { reportFile } ».
reportButton = Signaler
reportReasonMalware = Ces fichiers contiennent des logiciels malveillants ou contribuent à une attaque de hameçonnage.
reportReasonPii = Ces fichiers contiennent des informations personnelles qui me concernent.
reportReasonAbuse = Ces fichiers contiennent du contenu illégal ou abusif.
reportReasonCopyright = Pour signaler une violation de droit dauteur ou de marque, suivez la procédure décrite sur <a>cette page</a>.
reportedTitle = Fichiers signalés
reportedDescription = Merci, nous avons reçu votre signalement relatif à ces fichiers.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Kommentaar
importingFile = Ymportearje… importingFile = Ymportearje…
encryptingFile = Fersiferje… encryptingFile = Fersiferje…
decryptingFile = Untsiferje… decryptingFile = Untsiferje…
@@ -19,13 +19,13 @@ unlockButtonLabel = Deblokkearje
downloadButtonLabel = Downloade downloadButtonLabel = Downloade
downloadFinish = Download foltôge downloadFinish = Download foltôge
fileSizeProgress = ({ $partialSize } fan { $totalSize }) fileSizeProgress = ({ $partialSize } fan { $totalSize })
sendYourFilesLink = Firefox Send probearje sendYourFilesLink = Send probearje
errorPageHeader = Der is wat misgien! errorPageHeader = Der is wat misgien!
fileTooBig = It bestân is te grut om op te laden. It moat lytser wêze as { $size }. fileTooBig = It bestân is te grut om op te laden. It moat lytser wêze as { $size }.
linkExpiredAlt = Keppeling ferrûn linkExpiredAlt = Keppeling ferrûn
notSupportedHeader = Jo browser wurdt net stipe. notSupportedHeader = Jo browser wurdt net stipe.
notSupportedLink = Wêrom wurdt myn browser net stipe? notSupportedLink = Wêrom wurdt myn browser net stipe?
notSupportedOutdatedDetail = Spitigernôch stipet dizze ferzje fan Firefox de webtechnology dy't Firefox Send mooflik makket net. Jo moatte jo browser fernije. notSupportedOutdatedDetail = Spitigernôch stipet dizze ferzje fan Firefox de webtechnology dy't Send mooflik makket net. Jo moatte jo browser fernije.
updateFirefox = Firefox fernije updateFirefox = Firefox fernije
deletePopupCancel = Annulearje deletePopupCancel = Annulearje
deleteButtonHover = Fuortsmite deleteButtonHover = Fuortsmite
@@ -33,8 +33,8 @@ footerLinkLegal = Juridysk
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Net krekt wachtwurd. Probearje it opnij. passwordTryAgain = Net krekt wachtwurd. Probearje it opnij.
javascriptRequired = Firefox Send fereasket JavaScript. javascriptRequired = Send fereasket JavaScript.
whyJavascript = Werom hat Firefox Send JavaScript nedich? whyJavascript = Werom hat Send JavaScript nedich?
enableJavascript = Skeakelje JavaScript yn en probearje nochris. enableJavascript = Skeakelje JavaScript yn en probearje nochris.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }o { $minutes }m expiresHoursMinutes = { $hours }o { $minutes }m
@@ -47,8 +47,7 @@ passwordSetError = Dit wachtwurd koe net ynsteld wurde
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Ferzje 1.0, datearre 12 maart 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }o { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }o { $minutes }m
addFilesButton = Bestannen selektearje om op te laden addFilesButton = Bestannen selektearje om op te laden
trustWarningMessage = Soargje derfoar dat jo jo ûntfanger fertrouwe wannear't jo gefoelige gegevens diele.
uploadButton = Oplade uploadButton = Oplade
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Sleep en pleats bestannen dragAndDropFiles = Sleep en pleats bestannen
@@ -153,33 +151,3 @@ shareLinkButton = Keppeling diele
shareMessage = Download { $name } mei { -send-brand }: ienfâldich, feilich bestannen diele shareMessage = Download { $name } mei { -send-brand }: ienfâldich, feilich bestannen diele
trailheadPromo = Der is in manier om jo privacy te beskermjen. Doch mei mei Firefox. trailheadPromo = Der is in manier om jo privacy te beskermjen. Doch mei mei Firefox.
learnMore = Mear ynfo. learnMore = Mear ynfo.
downloadFlagged = Dizze keppeling is útskeakele fanwegen skeining fan de servicebetingsten.
downloadConfirmTitle = Noch ien ding
downloadConfirmDescription = Soargje derfoar dat jo de persoan fertrouwe dy't jo dit bestân stjoerd hat, omdat wy net ferifiearje kinne dat it jo apparaat net skansearje sil.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Ik fertrou de persoan dy't dit bestân stjoerd hat
*[other] Ik fertrou de persoan dy't dizze bestannen stjoerd hat
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Dit bestân as fertocht rapportearje
*[other] Dizze bestannen as fertocht rapportearje
}
reportDescription = Help ús te begripen wat der oan de hân is. Wat is der neffens jo mis mei dizze bestannen?
reportUnknownDescription = Gean nei de URL fan de keppeling dy't jo melde wolle en klik op { reportFile }.
reportButton = Rapportearje
reportReasonMalware = Dizze bestannen befetsje malware of binne part fan in phishingoanfal.
reportReasonPii = Dizze bestannen befetsje persoanlik identifisearjende ynformaasje oer my.
reportReasonAbuse = Dizze bestannen befetsje yllegale of beledigjende ynhâld.
reportReasonCopyright = Brûk de proseduere op <a>dizze side</a> om ynbreuk op auteursrjochten of hannelsmerken te melden.
reportedTitle = Bestannen rapportearre
reportedDescription = Tank. Wy hawwe jo rapport oer dizze bestannen ûntfongen.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Jeejey
importingFile = Ojegueruhína… importingFile = Ojegueruhína…
encryptingFile = Moãmby… encryptingFile = Moãmby…
decryptingFile = Ñemoão… decryptingFile = Ñemoão…
@@ -19,13 +19,13 @@ unlockButtonLabel = Mbojera
downloadButtonLabel = Mboguejy downloadButtonLabel = Mboguejy
downloadFinish = Oguejypáma downloadFinish = Oguejypáma
fileSizeProgress = ({ $partialSize } rehe { $totalSize }) fileSizeProgress = ({ $partialSize } rehe { $totalSize })
sendYourFilesLink = Eipuru Firefox Send sendYourFilesLink = Eipuru Send
errorPageHeader = ¡Oiko jejavy! errorPageHeader = ¡Oiko jejavy!
fileTooBig = Marandurenda tuichaiterei ehupi hag̃ua. Michĩvevaerã { $size } gui. fileTooBig = Marandurenda tuichaiterei ehupi hag̃ua. Michĩvevaerã { $size } gui.
linkExpiredAlt = Juajuha ndoikóiva linkExpiredAlt = Juajuha ndoikóiva
notSupportedHeader = Ne kundaha ndorekói pytyvõ. notSupportedHeader = Ne kundaha ndorekói pytyvõ.
notSupportedLink = ¿Mbaére che kundahára ndorekói ñepytyvõ? notSupportedLink = ¿Mbaére che kundahára ndorekói ñepytyvõ?
notSupportedOutdatedDetail = Ko Firefox rembiapo ndaipuakái ñanduti rembipurupyahu oikotevẽva Firefox Send. Embohekopyahúke ne kundahára. notSupportedOutdatedDetail = Ko Firefox rembiapo ndaipuakái ñanduti rembipurupyahu oikotevẽva Send. Embohekopyahúke ne kundahára.
updateFirefox = Firefox mbohekopyahu updateFirefox = Firefox mbohekopyahu
deletePopupCancel = Heja deletePopupCancel = Heja
deleteButtonHover = Mboguete deleteButtonHover = Mboguete
@@ -33,8 +33,8 @@ footerLinkLegal = Añetegua
footerLinkPrivacy = Ñemigua footerLinkPrivacy = Ñemigua
footerLinkCookies = Kookie footerLinkCookies = Kookie
passwordTryAgain = Ñeẽñemi ndoikóiva. Ehaãjey. passwordTryAgain = Ñeẽñemi ndoikóiva. Ehaãjey.
javascriptRequired = Firefox Send oikotevẽ JavaScript javascriptRequired = Send oikotevẽ JavaScript
whyJavascript = ¿Mbaére Firefox Send oikotevẽ JavaScript? whyJavascript = ¿Mbaére Send oikotevẽ JavaScript?
enableJavascript = Ikatúpa embojuruja JavaScript ha ehaãjey uperire. enableJavascript = Ikatúpa embojuruja JavaScript ha ehaãjey uperire.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } h { $minutes } m expiresHoursMinutes = { $hours } h { $minutes } m
@@ -47,12 +47,11 @@ passwordSetError = Ndaikatúi oikóvo ko ñeẽñemi
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
introTitle = Marandurenda ñemoambue hasyỹ ha ñemiguáva introTitle = Marandurenda ñemoambue hasy'ỹ ha ñemiguáva
introDescription = { -send-brand } omoherakuãkuaa marandurenda papapýpe ñepyrũ guive opa peve ha juajuha opareíva ijehegui. Ikatu oreko ñemihápe emoherakuãva ha ehecháta mbaéicha ne mbaekuéra noĩri ñandutípe opa ára. introDescription = { -send-brand } omoherakuãkuaa marandurenda papapýpe ñepyrũ guive opa peve ha juajuha opareíva ijehegui. Ikatu oreko ñemihápe emoherakuãva ha ehecháta mbaéicha ne mbaekuéra noĩri ñandutípe opa ára.
notifyUploadEncryptDone = Ne marandurenda oñemoã ha ikatúma emondo notifyUploadEncryptDone = Ne marandurenda oñemoã ha ikatúma emondo
# downloadCount is from the downloadCount string and timespan is a timespanMinutes string. ex. 'Expires after 2 downloads or 25 minutes' # downloadCount is from the downloadCount string and timespan is a timespanMinutes string. ex. 'Expires after 2 downloads or 25 minutes'
@@ -115,7 +114,6 @@ legalDateStamp = Mbaepyahu 1.0, 12 jasyapy 2019 peguare
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Eiporavo marandurenda ehupi hag̃ua addFilesButton = Eiporavo marandurenda ehupi hag̃ua
trustWarningMessage = Ejerovia añetépa emondotaháre emoherakuãvo mbaekuaarã kañyguáva.
uploadButton = Hupi uploadButton = Hupi
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Embosyryry ha epoi marandurenda dragAndDropFiles = Embosyryry ha epoi marandurenda
@@ -137,7 +135,7 @@ accountBenefitTimeLimit =
*[other] Eguereko juajuha hendyhápe { $count } ára *[other] Eguereko juajuha hendyhápe { $count } ára
} }
accountBenefitSync = Eñangareko marandurenda moherakuãmbyrére oimeraẽ mbaeoka guive. accountBenefitSync = Eñangareko marandurenda moherakuãmbyrére oimeraẽ mbaeoka guive.
accountBenefitMoz = Eikuaa ambue { -mozilla } mbaepytyvõrã accountBenefitMoz = Eikuaa ambue { -mozilla } mba'epytyvõrã
signOut = Emboty tembiapo signOut = Emboty tembiapo
okButton = OK okButton = OK
downloadingTitle = Oñemboguejyhína downloadingTitle = Oñemboguejyhína
@@ -150,36 +148,6 @@ downloadFirefoxPromo = Ipyahúva { -firefox } omeẽse ndéve { -send-short-b
shareLinkDescription = Emoherakuã juajuha ne mbaeoka ndive: shareLinkDescription = Emoherakuã juajuha ne mbaeoka ndive:
shareLinkButton = Emoherakuã juajuha shareLinkButton = Emoherakuã juajuha
# $name is the name of the file # $name is the name of the file
shareMessage = Emboguejy “{ $name }” { -send-brand } ndive: emoherakuã marandurenda tasyỹ ha tekorosãme shareMessage = Emboguejy “{ $name }” { -send-brand } ndive: emoherakuã marandurenda tasy'ỹ ha tekorosãme
trailheadPromo = Mbaéichapa emoãta ne ñemigua. Eipuru Firefox. trailheadPromo = Mbaéichapa emoãta ne ñemigua. Eipuru Firefox.
learnMore = Kuaave. learnMore = Kuaave.
downloadFlagged = Ko juajuha ojepeáma ombyai rupi mbaepytyvõrã ñemboguata.
downloadConfirmTitle = Peteĩ mbaeve
downloadConfirmDescription = Ejerovia añetépa pe tapicha oguerukáva ndéve ko marandurenda ndaikatúire rohechajey ne mbaeoka.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Ajerovia tapicháre orukáva ko marandurenda
*[other] Ajerovia umi tapicha orukáva koã marandurenda
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Ehechauka ko marandurenda imarãkuaávarõ
*[other] Ehechauka koã marandurenda imarãkuaávarõ
}
reportDescription = Orepytyvõ roikumbývo mbaépa oiko. ¿Mbaépa ere oĩvaiha koã marandurenda ndive?
reportUnknownDescription = Eikundaha pe url juajuha ekoroiseha ndive ha eikutu “{ reportFile }”.
reportButton = Ekorói
reportReasonMalware = Koã marandurenda oreko tembiaporape imarãva térã oñembyaikuaáva.
reportReasonPii = Koã marandurenda oreko marandu nembaetéva che kuaaukakuaáva.
reportReasonAbuse = Koã marandurenda oreko tetepy ivai térã imbaretéva.
reportReasonCopyright = Ekoróitarõ derécho ñembyaíre térã marca registrada, ehecha jehaipyre <a>ko kuatiaroguépe</a>.
reportedTitle = Marandurenda jekoroihague
reportedDescription = Aguyje. Og̃uahẽ nde jekorói koã marandurenda rehegua.

View File

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

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = משוב
importingFile = מתבצע ייבוא… importingFile = מתבצע ייבוא…
encryptingFile = מתבצעת הצפנה... encryptingFile = מתבצעת הצפנה...
decryptingFile = מתבצע פענוח... decryptingFile = מתבצע פענוח...
@@ -20,13 +20,13 @@ unlockButtonLabel = שחרור נעילה
downloadButtonLabel = הורדה downloadButtonLabel = הורדה
downloadFinish = ההורדה הושלמה downloadFinish = ההורדה הושלמה
fileSizeProgress = ({ $partialSize } מתוך { $totalSize }) fileSizeProgress = ({ $partialSize } מתוך { $totalSize })
sendYourFilesLink = נסו את Firefox Send sendYourFilesLink = נסו את Send
errorPageHeader = משהו השתבש! errorPageHeader = משהו השתבש!
fileTooBig = הקובץ הזה גדול מידי להעלאה. עליו להיות קטן מ־{ $size }. fileTooBig = הקובץ הזה גדול מידי להעלאה. עליו להיות קטן מ־{ $size }.
linkExpiredAlt = הקישור פג linkExpiredAlt = הקישור פג
notSupportedHeader = הדפדפן שלך לא נתמך. notSupportedHeader = הדפדפן שלך לא נתמך.
notSupportedLink = למה אין תמיכה בדפדפן שלי? notSupportedLink = למה אין תמיכה בדפדפן שלי?
notSupportedOutdatedDetail = לצערנו גרסת Firefox זו לא תומכת בטכנולוגית הרשת שמפעילה את Firefox Send. יש לעדכן את הגרסה של הדפדפן שלך. notSupportedOutdatedDetail = לצערנו גרסת Firefox זו לא תומכת בטכנולוגית הרשת שמפעילה את Send. יש לעדכן את הגרסה של הדפדפן שלך.
updateFirefox = עדכון Firefox updateFirefox = עדכון Firefox
deletePopupCancel = ביטול deletePopupCancel = ביטול
deleteButtonHover = מחיקה deleteButtonHover = מחיקה
@@ -34,8 +34,8 @@ footerLinkLegal = מידע משפטי
footerLinkPrivacy = פרטיות footerLinkPrivacy = פרטיות
footerLinkCookies = קובצי עוגיות footerLinkCookies = קובצי עוגיות
passwordTryAgain = סיסמה שגויה. נא לנסות שוב. passwordTryAgain = סיסמה שגויה. נא לנסות שוב.
javascriptRequired = ל־Firefox Send דרוש JavaScript javascriptRequired = ל־Send דרוש JavaScript
whyJavascript = למה ל־Firefox Send דרוש JavaScript? whyJavascript = למה ל־Send דרוש JavaScript?
enableJavascript = נא להפעיל JavaScript ולנסות שוב. enableJavascript = נא להפעיל JavaScript ולנסות שוב.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } שע׳ { $minutes } דק׳ expiresHoursMinutes = { $hours } שע׳ { $minutes } דק׳
@@ -48,8 +48,7 @@ passwordSetError = לא ניתן להגדיר את הססמה הזאת
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -118,7 +117,6 @@ legalDateStamp = גרסה 1.0, בתאריך 12 במרץ 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } ימים { $hours } שעות { $minutes } דקות expiresDaysHoursMinutes = { $days } ימים { $hours } שעות { $minutes } דקות
addFilesButton = בחירת קבצים להעלאה addFilesButton = בחירת קבצים להעלאה
trustWarningMessage = עליך לוודא שבעת שיתוף מידע רגיש הנמענים שלך הם מהימנים.
uploadButton = העלאה uploadButton = העלאה
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = גרירה והשלכת קבצים dragAndDropFiles = גרירה והשלכת קבצים
@@ -156,31 +154,3 @@ shareLinkButton = שיתוף קישור
shareMessage = הורדת ״{ $name }״ עם { -send-brand }: שיתוף קבצים פשוט ובטוח shareMessage = הורדת ״{ $name }״ עם { -send-brand }: שיתוף קבצים פשוט ובטוח
trailheadPromo = ישנן דרכים נוספות להגן על הפרטיות שלכם. הצטרפו אל Firefox. trailheadPromo = ישנן דרכים נוספות להגן על הפרטיות שלכם. הצטרפו אל Firefox.
learnMore = מידע נוסף. learnMore = מידע נוסף.
downloadFlagged = קישור זה הושבת מכיוון שהפר את תנאי השירות.
downloadConfirmTitle = דבר אחד אחרון
downloadConfirmDescription = נא לוודא שמי ששלח לך את הקובץ הזה מהימן כיוון שאין לנו אפשרות לוודא שהוא לא יפגע במכשיר שלך.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] שולח הקובץ הזה מהימן
*[other] שולח הקבצים האלו מהימן
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] דיווח על קובץ זה כחשוד
*[other] דיווח על קבצים אלו כחשודים
}
reportUnknownDescription = נא לגשת אל כתובת הקישור עליו ברצונך לדווח וללחוץ על ״{ reportFile }״.
reportButton = דיווח
reportReasonMalware = קבצים אלה מכילים תוכנה זדונית או שהינם חלק מהתקפת דיוג.
reportReasonAbuse = קבצים אלה מכילים תוכן בלתי חוקי או פוגע.
reportReasonCopyright = כדי לדווח על הפרה של זכויות יוצרים או סימני מסחר, יש להשתמש בתהליך המתואר ב<a>דף זה</a>.
reportedTitle = קבצים שדווחו
reportedDescription = תודה. קיבלנו את הדיווח שלך על קבצים אלה.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Povratne informacije
importingFile = Uvoz… importingFile = Uvoz…
encryptingFile = Šifriranje … encryptingFile = Šifriranje …
decryptingFile = Dešifriranje … decryptingFile = Dešifriranje …
@@ -21,13 +21,13 @@ unlockButtonLabel = Otključaj
downloadButtonLabel = Preuzmi downloadButtonLabel = Preuzmi
downloadFinish = Preuzimanje je završeno. downloadFinish = Preuzimanje je završeno.
fileSizeProgress = ({ $partialSize } od { $totalSize }) fileSizeProgress = ({ $partialSize } od { $totalSize })
sendYourFilesLink = Isprobaj Firefox Send sendYourFilesLink = Isprobaj Send
errorPageHeader = Dogodila se neka greška! errorPageHeader = Dogodila se neka greška!
fileTooBig = Datoteka je prevelika za prijenos. Mora biti manja od { $size }. fileTooBig = Datoteka je prevelika za prijenos. Mora biti manja od { $size }.
linkExpiredAlt = Poveznica je istekla linkExpiredAlt = Poveznica je istekla
notSupportedHeader = Tvoj preglednik nije podržan. notSupportedHeader = Tvoj preglednik nije podržan.
notSupportedLink = Zašto moj preglednik nije podržan? notSupportedLink = Zašto moj preglednik nije podržan?
notSupportedOutdatedDetail = Nažalost, ovo izdanje Firefoxa ne podržava web tehnologiju koja omogućava Firefox Send. Morat ćeš ažurirati preglednik. notSupportedOutdatedDetail = Nažalost, ovo izdanje Firefoxa ne podržava web tehnologiju koja omogućava Send. Morat ćeš ažurirati preglednik.
updateFirefox = Ažuriraj Firefox updateFirefox = Ažuriraj Firefox
deletePopupCancel = Odustani deletePopupCancel = Odustani
deleteButtonHover = Obriši deleteButtonHover = Obriši
@@ -35,8 +35,8 @@ footerLinkLegal = Pravni podaci
footerLinkPrivacy = Privatnost footerLinkPrivacy = Privatnost
footerLinkCookies = Kolačići footerLinkCookies = Kolačići
passwordTryAgain = Netočna lozinka. Pokušaj ponovo. passwordTryAgain = Netočna lozinka. Pokušaj ponovo.
javascriptRequired = Za Firefox Send potreban je JavaScript javascriptRequired = Za Send potreban je JavaScript
whyJavascript = Zašto je za Firefox Send potreban JavaScript? whyJavascript = Zašto je za Send potreban JavaScript?
enableJavascript = Aktiviraj JavaScript i pokušaj ponovo. enableJavascript = Aktiviraj JavaScript i pokušaj ponovo.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }s { $minutes }m expiresHoursMinutes = { $hours }s { $minutes }m
@@ -49,8 +49,7 @@ passwordSetError = Lozinku nije moguće postaviti
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -123,7 +122,6 @@ legalDateStamp = Verzija 1.0, od 12. ožujka 2019. godine
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }s { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }s { $minutes }m
addFilesButton = Odaberi datoteke za prijenos addFilesButton = Odaberi datoteke za prijenos
trustWarningMessage = Budite sigurni da vjerujete primatelju prije dijeljenja osjetljivih podataka.
uploadButton = Prijenos uploadButton = Prijenos
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Povuci i ispusti datoteke dragAndDropFiles = Povuci i ispusti datoteke
@@ -162,35 +160,3 @@ shareLinkButton = Dijeli poveznicu
shareMessage = Preuzmi „{ $name }” pomoću { -send-brand }: jednostavno i sigurno dijeljenje datoteka shareMessage = Preuzmi „{ $name }” pomoću { -send-brand }: jednostavno i sigurno dijeljenje datoteka
trailheadPromo = Postoji način, kako zaštititi vlastitu privatnost. Pridruži se Firefoxu. trailheadPromo = Postoji način, kako zaštititi vlastitu privatnost. Pridruži se Firefoxu.
learnMore = Saznaj više. learnMore = Saznaj više.
downloadFlagged = Poveznica je onemogućena zbog kršenja uvjeta pružanja usluge.
downloadConfirmTitle = Još jedna stvar
downloadConfirmDescription = Budite sigurni da vjerujete osobi koja vam je poslala ovu datoteku, zato što mi ne možemo provjeriti da li će ova datoteka naštetiti vašem uređaju.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Vjerujem osobi koja je poslala ove datoteke
[few] Vjerujem osobi koja je poslala ove datoteke
*[other] Vjerujem osobi koja je poslala ove datoteke
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Prijavi ove datoteke kao sumnjive
[few] Prijavi ove datoteke kao sumnjive
*[other] Prijavi ove datoteke kao sumnjive
}
reportDescription = Pomozite nam da shvatimo što se dešava. Zašto mislite da nešto nije u redu s ovim datotekama?
reportUnknownDescription = Idite na poveznicu koju želite prijaviti i kliknite “{ reportFile }”.
reportButton = Prijavi datoteku
reportReasonMalware = Ove datoteke sadrže zlonamjerni softver ili su dio napada za krađu identiteta.
reportReasonPii = Ove datoteke sadrže moje osobne podatke.
reportReasonAbuse = Ove datoteke sadrže ilegalni ili nasilni sadržaj.
reportReasonCopyright = Kako biste prijavili kršenje autorskih prava, koristite proces opisan na <a>ovoj stranici</a>.
reportedTitle = Datoteke prijavljene
reportedDescription = Hvala vam. Primili smo vašu prijavu za ove datoteke.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Komentar
importingFile = Importuje so... importingFile = Importuje so...
encryptingFile = Zaklučuje so... encryptingFile = Zaklučuje so...
decryptingFile = Dešifruje so... decryptingFile = Dešifruje so...
@@ -23,13 +23,13 @@ unlockButtonLabel = Wotewrěć
downloadButtonLabel = Sćahnyć downloadButtonLabel = Sćahnyć
downloadFinish = Sćehnjenje dokónčene downloadFinish = Sćehnjenje dokónčene
fileSizeProgress = ({ $partialSize } z { $totalSize }) fileSizeProgress = ({ $partialSize } z { $totalSize })
sendYourFilesLink = Firefox Send wupruwować sendYourFilesLink = Send wupruwować
errorPageHeader = Něšto je so nimokuliło! errorPageHeader = Něšto je so nimokuliło!
fileTooBig = Tuta dataja je přewulka za nahraće. Měła mjeńša hač { $size } być. fileTooBig = Tuta dataja je přewulka za nahraće. Měła mjeńša hač { $size } być.
linkExpiredAlt = Wotkaz je spadnjeny linkExpiredAlt = Wotkaz je spadnjeny
notSupportedHeader = Waš wobhladowak so njepodpěruje. notSupportedHeader = Waš wobhladowak so njepodpěruje.
notSupportedLink = Čehodla so mój wobhladowak njepodpěruje? notSupportedLink = Čehodla so mój wobhladowak njepodpěruje?
notSupportedOutdatedDetail = Bohužel tuta wersija Firefox webtechnologiju njepodpěruje, na kotrejž Firefox Send bazuje. Dyrbiće swój wobhladowak aktualizować. notSupportedOutdatedDetail = Bohužel tuta wersija Firefox webtechnologiju njepodpěruje, na kotrejž Send bazuje. Dyrbiće swój wobhladowak aktualizować.
updateFirefox = Firefox aktualizować updateFirefox = Firefox aktualizować
deletePopupCancel = Přetorhnyć deletePopupCancel = Přetorhnyć
deleteButtonHover = Zhašeć deleteButtonHover = Zhašeć
@@ -37,8 +37,8 @@ footerLinkLegal = Prawniske
footerLinkPrivacy = Priwatnosć footerLinkPrivacy = Priwatnosć
footerLinkCookies = Placki footerLinkCookies = Placki
passwordTryAgain = Wopačne hesło. Prošu spytajće hišće raz. passwordTryAgain = Wopačne hesło. Prošu spytajće hišće raz.
javascriptRequired = Firefox Send JavaScript trjeba javascriptRequired = Send JavaScript trjeba
whyJavascript = Čehodla Firefox Send JavaScript trjeba? whyJavascript = Čehodla Send JavaScript trjeba?
enableJavascript = Prošu zmóžńće JavaScript a spytajće hišće raz. enableJavascript = Prošu zmóžńće JavaScript a spytajće hišće raz.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } hodź. { $minutes } mjeń. expiresHoursMinutes = { $hours } hodź. { $minutes } mjeń.
@@ -51,8 +51,7 @@ passwordSetError = Tute hesło njeda so nastajić
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -131,7 +130,6 @@ legalDateStamp = Wersija 1.0 wot 12. měrca 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Dataje za nahrawanje wubrać addFilesButton = Dataje za nahrawanje wubrać
trustWarningMessage = Wy měł přijimarjej dowěrić, hdyž sensibelne daty dźěliće.
uploadButton = Nahrać uploadButton = Nahrać
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Ćehńće a wotkładźće dataje dragAndDropFiles = Ćehńće a wotkładźće dataje
@@ -171,37 +169,3 @@ shareLinkButton = Wotkaz dźělić
shareMessage = Sćehńće „{ $name }“ z { -send-brand }: jednore, wěste dźělenje datajow shareMessage = Sćehńće „{ $name }“ z { -send-brand }: jednore, wěste dźělenje datajow
trailheadPromo = Je móžnosć, wašu priwatnosć škitać. Přińdźće k Firefox. trailheadPromo = Je móžnosć, wašu priwatnosć škitać. Přińdźće k Firefox.
learnMore = Dalše informacije. learnMore = Dalše informacije.
downloadFlagged = Tutón wotkaz je so přestupjenja wužiwanskich wuměnjenjow dla znjemóžnił.
downloadConfirmTitle = Jedna wěc hišće
downloadConfirmDescription = Wy měł wotpósłarjej tuteje dataje dowěrić, dokelž njemóžemy přepruwować, hač to wašemu gratej wadźi.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Dowěrju wosobje, kotraž je tutu dataju pósłała
[two] Dowěrju wosobje, kotraž je tutej dataji pósłała
[few] Dowěrju wosobje, kotraž je tute dataje pósłała
*[other] Dowěrju wosobje, kotraž je tute dataje pósłała
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Tutu dataju jako podhladnu zdźělić
[two] Tutej dataji jako podhladnej zdźělić
[few] Tute dataje jako podhladne zdźělić
*[other] Tute dataje jako podhladne zdźělić
}
reportDescription = Pomhajće nam rozumić, što so stawa. Što po wašim zdaću z tutymi datajemi w porjadku njeje?
reportUnknownDescription = Dźiće prošu k URL wotkaza, kotryž chceće zdźělić a klikńće na „{ reportFile }“.
reportButton = Zdźělić
reportReasonMalware = Tute dataje škódnu softwaru wobsahuja abo su dźěl nadpada kradnjenja datow.
reportReasonPii = Tute dataje wosobinske informacije wo mni, kotrež móža mje identifikować.
reportReasonAbuse = Tute dataje njedowoleny abo ranjacy wobsah wobsahuja.
reportReasonCopyright = Zo byšće zranjenje awtorskeho prawa abo prawa wikowanskich znamjenjow zdźělił, wužiwajće postupowanje, kotrež so na <a>tutej stronje</a> wopisuje.
reportedTitle = Dataje su zdźělene
reportedDescription = Wulki dźak. Smy wašu rozprawu wo tutych datajach dóstali.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Visszajelzés
importingFile = Importálás… importingFile = Importálás…
encryptingFile = Titkosítás… encryptingFile = Titkosítás…
decryptingFile = Visszafejtés… decryptingFile = Visszafejtés…
@@ -19,13 +19,13 @@ unlockButtonLabel = Feloldás
downloadButtonLabel = Letöltés downloadButtonLabel = Letöltés
downloadFinish = A letöltés befejeződött downloadFinish = A letöltés befejeződött
fileSizeProgress = ({ $partialSize } / { $totalSize }) fileSizeProgress = ({ $partialSize } / { $totalSize })
sendYourFilesLink = Próbálja ki a Firefox Sendet sendYourFilesLink = Próbálja ki a Sendet
errorPageHeader = Hiba történt! errorPageHeader = Hiba történt!
fileTooBig = Ez a fájl túl nagy a feltöltéshez. Kevesebb mint { $size } kell legyen. fileTooBig = Ez a fájl túl nagy a feltöltéshez. Kevesebb mint { $size } kell legyen.
linkExpiredAlt = A hivatkozás lejárt linkExpiredAlt = A hivatkozás lejárt
notSupportedHeader = A böngésző nem támogatott. notSupportedHeader = A böngésző nem támogatott.
notSupportedLink = Miért nem támogatott a böngészőm? notSupportedLink = Miért nem támogatott a böngészőm?
notSupportedOutdatedDetail = Sajnos a Firefox ezen verziója nem támogatja a Firefox Send alapját képező technológiát. Frissítenie kell a böngészőjét. notSupportedOutdatedDetail = Sajnos a Firefox ezen verziója nem támogatja a Send alapját képező technológiát. Frissítenie kell a böngészőjét.
updateFirefox = Firefox frissítése updateFirefox = Firefox frissítése
deletePopupCancel = Mégse deletePopupCancel = Mégse
deleteButtonHover = Törlés deleteButtonHover = Törlés
@@ -33,8 +33,8 @@ footerLinkLegal = Jogi információk
footerLinkPrivacy = Adatvédelem footerLinkPrivacy = Adatvédelem
footerLinkCookies = Sütik footerLinkCookies = Sütik
passwordTryAgain = Helytelen jelszó. Próbálja meg újra. passwordTryAgain = Helytelen jelszó. Próbálja meg újra.
javascriptRequired = A Firefox Sendhez JavaScript szükséges javascriptRequired = A Sendhez JavaScript szükséges
whyJavascript = Miért van szükség JavaScriptre a Firefox Sendhez? whyJavascript = Miért van szükség JavaScriptre a Sendhez?
enableJavascript = Kérjük engedélyezze a JavaScriptet, majd próbálkozzon újra. enableJavascript = Kérjük engedélyezze a JavaScriptet, majd próbálkozzon újra.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }ó { $minutes }p expiresHoursMinutes = { $hours }ó { $minutes }p
@@ -47,8 +47,7 @@ passwordSetError = Ez a jelszó nem állítható be
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = 1.0-s verzió, kelt 2019. március 12-én
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }n { $hours }ó { $minutes }p expiresDaysHoursMinutes = { $days }n { $hours }ó { $minutes }p
addFilesButton = Válassza ki a feltöltendő fájlokat addFilesButton = Válassza ki a feltöltendő fájlokat
trustWarningMessage = Érzékeny adatok megosztásakor győződjön meg róla, hogy megbízik-e a címzettben.
uploadButton = Feltöltés uploadButton = Feltöltés
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Húzza ide a fájlokat dragAndDropFiles = Húzza ide a fájlokat
@@ -153,33 +151,3 @@ shareLinkButton = Hivatkozás megosztása
shareMessage = „{ $name }” letöltése a { -send-brand } segítségével: egyszerű, biztonságos fájlmegosztás shareMessage = „{ $name }” letöltése a { -send-brand } segítségével: egyszerű, biztonságos fájlmegosztás
trailheadPromo = Védje meg a magánszféráját. Csatlakozzon a Firefoxhoz. trailheadPromo = Védje meg a magánszféráját. Csatlakozzon a Firefoxhoz.
learnMore = További tudnivalók. learnMore = További tudnivalók.
downloadFlagged = Ezt a hivatkozást a szolgáltatási feltételek megsértése miatt letiltottuk.
downloadConfirmTitle = Még egy dolog
downloadConfirmDescription = Győződjön meg arról, hogy megbízik-e abban, aki küldte a fájlt, mert nem tudjuk ellenőrizni, hogy nem okoz-e kárt az eszközén.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Megbízom abban a személyben, aki elküldte ezt a fájlt
*[other] Megbízom abban a személyben, aki elküldte ezeket a fájlokat
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Fájl jelentése gyanúsként
*[other] Fájlok jelentése gyanúsként
}
reportDescription = Segítsen megérteni, hogy mi a helyzet. Ön szerint mi a baj ezekkel a fájlokkal?
reportUnknownDescription = Ugorjon a jelentendő hivatkozás URL-jéhez, és kattintson a „{ reportFile }” gombra.
reportButton = Jelentés
reportReasonMalware = Ezek a fájlok rosszindulatú programokat tartalmaznak, vagy adathalász támadás részét képezik.
reportReasonPii = Ezek a fájlok személyesen azonosítható információkat tartalmaznak rólam.
reportReasonAbuse = Ezek a fájlok illegális vagy visszaélésszerű tartalmúak.
reportReasonCopyright = A szerzői jogok vagy védjegyek megsértésének jelentéséhez használja az <a>ezen az oldalon</a> írt folyamatot.
reportedTitle = Fájlok jelentve
reportedDescription = Köszönjük. Megkaptuk a jelentését ezekről a fájlokról.

View File

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

View File

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

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Reaction
importingFile = Importation… importingFile = Importation…
encryptingFile = Cryptation... encryptingFile = Cryptation...
decryptingFile = Decryptation… decryptingFile = Decryptation…
@@ -19,13 +19,13 @@ unlockButtonLabel = Disblocar
downloadButtonLabel = Discargar downloadButtonLabel = Discargar
downloadFinish = Discargamento completate downloadFinish = Discargamento completate
fileSizeProgress = ({ $partialSize } de { $totalSize }) fileSizeProgress = ({ $partialSize } de { $totalSize })
sendYourFilesLink = Proba Firefox Send sendYourFilesLink = Proba Send
errorPageHeader = Un error occurreva! errorPageHeader = Un error occurreva!
fileTooBig = Iste file es troppo grande pro incargar. Illo debe esser inferior a { $size }. fileTooBig = Iste file es troppo grande pro incargar. Illo debe esser inferior a { $size }.
linkExpiredAlt = Ligamine expirate linkExpiredAlt = Ligamine expirate
notSupportedHeader = Tu navigator non es supportate notSupportedHeader = Tu navigator non es supportate
notSupportedLink = Proque non es mi navigator supportate? notSupportedLink = Proque non es mi navigator supportate?
notSupportedOutdatedDetail = Infelicemente iste version de Firefox non supporta le nove technologia web que actiona Firefox Send. Tu debe actualisar tu navigator. notSupportedOutdatedDetail = Infelicemente iste version de Firefox non supporta le nove technologia web que actiona Send. Tu debe actualisar tu navigator.
updateFirefox = Actualisar Firefox updateFirefox = Actualisar Firefox
deletePopupCancel = Cancellar deletePopupCancel = Cancellar
deleteButtonHover = Deler deleteButtonHover = Deler
@@ -33,8 +33,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Confidentialitate footerLinkPrivacy = Confidentialitate
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Contrasigno incorrecte. Retenta. passwordTryAgain = Contrasigno incorrecte. Retenta.
javascriptRequired = Firefox Send require JavaScript javascriptRequired = Send require JavaScript
whyJavascript = Proque Firefox Send require JavaScript? whyJavascript = Proque Send require JavaScript?
enableJavascript = Por favor activa JavaScript e tenta novemente. enableJavascript = Por favor activa JavaScript e tenta novemente.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -47,8 +47,7 @@ passwordSetError = Iste contrasigno non ha potite esser establite
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Version 1.0 del 12 martio 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Selige le files a incargar addFilesButton = Selige le files a incargar
trustWarningMessage = Verifica que tu te fide a tu destinatario quando tu comparti datos sensibile.
uploadButton = Incargar uploadButton = Incargar
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Traher e deponer files dragAndDropFiles = Traher e deponer files
@@ -153,33 +151,3 @@ shareLinkButton = Condivide ligamine
shareMessage = Discarga “{ $name }” con { -send-brand }: condivide files in modo simple e secur shareMessage = Discarga “{ $name }” con { -send-brand }: condivide files in modo simple e secur
trailheadPromo = Il ha un via pro proteger tu confidentialitate. Junge te a Firefox! trailheadPromo = Il ha un via pro proteger tu confidentialitate. Junge te a Firefox!
learnMore = Saper plus. learnMore = Saper plus.
downloadFlagged = Iste ligamine ha essite disactivate per violation del terminos de servicio.
downloadConfirmTitle = Un altere cosa
downloadConfirmDescription = Verifica que tu te fide al persona qui te inviava iste file, perque nos non pote verificar que illo non violara tu apparato.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Io me fide al persona qui inviava iste file
*[other] Io me fide al persona qui inviava iste files
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] reportar iste file como suspecte
*[other] reportar iste files como suspecte
}
reportDescription = Adjuta nos a comprender lo que eveni. Que pensa tu es problematic con iste files?
reportUnknownDescription = Va al URL del ligamine que tu desira signalar e clicca “{ reportFile }”.
reportButton = Reportar
reportReasonMalware = Iste files contine malware o es parte de un attacco fraudulente.
reportReasonPii = Iste files contine informationes personal identificabile re me.
reportReasonAbuse = Iste files contine contento illegal o abusive.
reportReasonCopyright = Pro signalar violation de derectos de autor o marca de fabrica, usa le procedura describite a <a>iste pagina</a>.
reportedTitle = Files reportate
reportedDescription = Gratias. Nos ha recipite tu reporto sur iste files.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Saran
importingFile = Mengimpor… importingFile = Mengimpor…
encryptingFile = Mengenkripsi... encryptingFile = Mengenkripsi...
decryptingFile = Mendekripsi... decryptingFile = Mendekripsi...
@@ -17,13 +17,13 @@ unlockButtonLabel = Buka
downloadButtonLabel = Unduh downloadButtonLabel = Unduh
downloadFinish = Unduhan Selesai downloadFinish = Unduhan Selesai
fileSizeProgress = ({ $partialSize } dari { $totalSize }) fileSizeProgress = ({ $partialSize } dari { $totalSize })
sendYourFilesLink = Coba Firefox Send sendYourFilesLink = Coba Send
errorPageHeader = Terjadi kesalahan! errorPageHeader = Terjadi kesalahan!
fileTooBig = Berkas terlalu besar untuk diunggah. Harus kurang dari { $size }. fileTooBig = Berkas terlalu besar untuk diunggah. Harus kurang dari { $size }.
linkExpiredAlt = Tautan kedaluwarsa linkExpiredAlt = Tautan kedaluwarsa
notSupportedHeader = Peramban Anda tidak mendukung. notSupportedHeader = Peramban Anda tidak mendukung.
notSupportedLink = Mengapa peramban saya tidak didukung? notSupportedLink = Mengapa peramban saya tidak didukung?
notSupportedOutdatedDetail = Sayangnya Firefox versi ini tidak mendukung teknologi web yang menggerakkan Firefox Send. Anda perlu memperbarui peramban Anda. notSupportedOutdatedDetail = Sayangnya Firefox versi ini tidak mendukung teknologi web yang menggerakkan Send. Anda perlu memperbarui peramban Anda.
updateFirefox = Perbarui Firefox updateFirefox = Perbarui Firefox
deletePopupCancel = Batal deletePopupCancel = Batal
deleteButtonHover = Hapus deleteButtonHover = Hapus
@@ -31,8 +31,8 @@ footerLinkLegal = Legal
footerLinkPrivacy = Privasi footerLinkPrivacy = Privasi
footerLinkCookies = Kuki footerLinkCookies = Kuki
passwordTryAgain = Sandi salah. Silakan coba lagi. passwordTryAgain = Sandi salah. Silakan coba lagi.
javascriptRequired = Firefox Send membutuhkan JavaScript. javascriptRequired = Send membutuhkan JavaScript.
whyJavascript = Mengapa Firefox Send membutuhkan JavaScript? whyJavascript = Mengapa Send membutuhkan JavaScript?
enableJavascript = Silakan aktifkan JavaScript dan coba lagi. enableJavascript = Silakan aktifkan JavaScript dan coba lagi.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }j { $minutes }m expiresHoursMinutes = { $hours }j { $minutes }m
@@ -45,8 +45,7 @@ passwordSetError = Tidak bisa menyetel sandi ini
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -107,7 +106,6 @@ legalDateStamp = Versi 1.0, tertanggal 12 Maret 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }h { $hours }j { $minutes }m expiresDaysHoursMinutes = { $days }h { $hours }j { $minutes }m
addFilesButton = Pilih berkas untuk diunggah addFilesButton = Pilih berkas untuk diunggah
trustWarningMessage = Pastikan Anda mempercayai penerima Anda saat berbagi data sensitif.
uploadButton = Unggah uploadButton = Unggah
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Seret dan jatuhkan berkas dragAndDropFiles = Seret dan jatuhkan berkas
@@ -144,31 +142,3 @@ shareLinkButton = Bagikan tautan
shareMessage = Unduh "{ $name }" dengan { -send-brand }: berbagi berkas dengan sederhana dan aman shareMessage = Unduh "{ $name }" dengan { -send-brand }: berbagi berkas dengan sederhana dan aman
trailheadPromo = Ada cara untuk melindungi privasi Anda. Bergabunglah dengan Firefox. trailheadPromo = Ada cara untuk melindungi privasi Anda. Bergabunglah dengan Firefox.
learnMore = Pelajari lebih lanjut. learnMore = Pelajari lebih lanjut.
downloadFlagged = Tautan ini telah dinonaktifkan karena melanggar persyaratan layanan.
downloadConfirmTitle = Satu hal lagi
downloadConfirmDescription = Pastikan Anda memercayai orang yang mengirimi Anda file ini karena kami tidak dapat memverifikasi bahwa hal itu tidak akan merusak perangkat Anda.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
*[other] Saya percaya orang yang mengirim file-file ini
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
*[other] Laporkan file-file ini karena mencurigakan
}
reportDescription = Bantu kami memahami apa yang sedang terjadi. Apa yang menurut Anda salah dengan file-file ini?
reportUnknownDescription = Buka url tautan yang ingin Anda laporkan dan klik “{ reportFile }”.
reportButton = Melaporkan
reportReasonMalware = File-file ini mengandung malware atau merupakan bagian dari serangan phishing.
reportReasonPii = File-file ini mengandung informasi pribadi tentang saya.
reportReasonAbuse = File-file ini mengandung konten ilegal atau kasar.
reportReasonCopyright = Untuk melaporkan pelanggaran hak cipta atau merek dagang, gunakan proses yang dijelaskan di <a> laman ini </a>.
reportedTitle = File Dilaporkan
reportedDescription = Terima kasih. Kami telah menerima laporan Anda tentang file-file ini.

View File

@@ -1,5 +1,6 @@
# Firefox Send is a brand name and should not be localized. # Send is a brand name and should not be localized.
title = Firefox Zipu title = Zipu
siteFeedback = Nzaghachi
importingFile = Mbubata… importingFile = Mbubata…
encryptingFile = ezoro ezo... encryptingFile = ezoro ezo...
decryptingFile = Kpebie decryptingFile = Kpebie
@@ -19,22 +20,17 @@ unlockButtonLabel = imeghe
downloadButtonLabel = budata downloadButtonLabel = budata
downloadFinish = Mbudata zuru ezu downloadFinish = Mbudata zuru ezu
fileSizeProgress = ({ $partialSize } nke { $totalSize }) fileSizeProgress = ({ $partialSize } nke { $totalSize })
sendYourFilesLink = Firefox Zipu sendYourFilesLink = Zipu
errorPageHeader = Onwere ihe na-adighi mma errorPageHeader = Onwere ihe na-adighi mma
fileTooBig = Failu a ebuka ibulite. Ọ kwẹsịghi ịkalị { $size } fileTooBig = Failu a ebuka ibulite. Ọ kwẹsịghi ịkalị { $size }
linkExpiredAlt = Njiko jedebe linkExpiredAlt = Njiko jedebe
notSupportedHeader = Adighi akwado ihe nchogharị gị notSupportedHeader = Adighi akwado ihe nchogharị gị
notSupportedLink = Gịnị kpatara na akwadoghị ihe nchọgharị m? notSupportedLink = Gịnị kpatara na akwadoghị ihe nchọgharị m?
notSupportedOutdatedDetail = Ọ dị nwute na ụdị Firefox a anaghị akwado teknụzụ weebụ na-eji Firefox Zipụ. Ikwesiri imelite ihe nchọgharị gị. notSupportedOutdatedDetail = Ọ dị nwute na ụdị Firefox a anaghị akwado teknụzụ weebụ na-eji Zipụ. Ikwesiri imelite ihe nchọgharị gị.
updateFirefox = Melite Firefox updateFirefox = Melite Firefox
deletePopupCancel = Kagbuo deletePopupCancel = Kagbuo
deleteButtonHover = Hichapụ deleteButtonHover = Hichapụ
footerLinkLegal = n'Iwu whyJavascript = Kedu ihe kpatara Send jiri chọ JavaScript?
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?
enableJavascript = Biko họrọ JavaScript ma nwaa ọzọ enableJavascript = Biko họrọ JavaScript ma nwaa ọzọ
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -47,13 +43,11 @@ passwordSetError = Enweghị ike ịtọ paswọọdụ a
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Zipu, Ziga -send-short-brand = Zipu, Ziga
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
introTitle = Mfe, nkekọrịta faịlụ nkeonwe introTitle = Mfe, nkekọrịta faịlụ nkeonwe
introDescription = na-ahapu gị ịkekọrịta faịlụ na izo ya na njedebe na njedebe na-akwụsị na akpaghị aka. Yabụ ị nwere ike idobe ihe ị na -eche ma hụ na ngwongwo gị agaghị adị n'ịntanetị ruo mgbe ebighi ebi.
notifyUploadEncryptDone = Failu gi zoro ezo ma di njikere iziga notifyUploadEncryptDone = Failu gi zoro ezo ma di njikere iziga
# downloadCount is from the downloadCount string and timespan is a timespanMinutes string. ex. 'Expires after 2 downloads or 25 minutes' # downloadCount is from the downloadCount string and timespan is a timespanMinutes string. ex. 'Expires after 2 downloads or 25 minutes'
archiveExpiryInfo = Ọ ga-agwu mgbe { $downloadCount } ma ọ bụ { $timespan } gasịrị archiveExpiryInfo = Ọ ga-agwu mgbe { $downloadCount } ma ọ bụ { $timespan } gasịrị
@@ -67,27 +61,4 @@ timespanWeeks =
[one] 1 izu [one] 1 izu
*[other] izu { $num } *[other] izu { $num }
} }
# byte abbreviation
bytes = B
# kibibyte abbreviation
kb = KB
# mebibyte abbreviation
mb = MB
# gibibyte abbreviation
gb = GB
# localized number and byte abbreviation. example "2.5MB"
fileSize = { $Number } { $nkeji }
# $size is the size of the file, displayed using the fileSize message as format (e.g. "2.5MB")
totalSize = { $nha }
# the next line after the colon contains a file name
copyLinkDescription = Detuo njikọ ahụ iji kee faịlụ gị
copyLinkButton = Detuo njikọ
downloadTitle = Budata faịlụ gasi
downloadDescription = Nkekọrịta faịlụ a site na site na iji zoo njedebe na-njedebe yana otu njikọ na-akwụsị na-akpaghị aka.
trySendDescription = Gbalịa maka nyefe faịlụ dị mfe.
expiredTitle = Njikọ a emebiela.
notSupportedDescription = agaghị eji ihe nchọgharị a rụọ ọrụ. na arụ ọrụ kacha mma na ụdị nke , ọ ga-arụkwa ụdị nke ihe nchọgharị ka ugbu a.
downloadFirefox = Budata
legalTitle = Nkwupụta Nzuzo
legalDateStamp = 1.dị 1.0, akara ụbọchị Maachi 12, 2019
okButton = O okButton = O

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Feedback
importingFile = Importazione in corso… importingFile = Importazione in corso…
encryptingFile = Crittazione in corso… encryptingFile = Crittazione in corso…
decryptingFile = Decrittazione in corso… decryptingFile = Decrittazione in corso…
@@ -19,13 +19,13 @@ unlockButtonLabel = Sblocca
downloadButtonLabel = Scarica downloadButtonLabel = Scarica
downloadFinish = Download completato downloadFinish = Download completato
fileSizeProgress = ({ $partialSize } di { $totalSize }) fileSizeProgress = ({ $partialSize } di { $totalSize })
sendYourFilesLink = Prova Firefox Send sendYourFilesLink = Prova Send
errorPageHeader = Si è verificato un errore. errorPageHeader = Si è verificato un errore.
fileTooBig = Le dimensioni di questo file sono eccessive. Dovrebbe essere inferiore a { $size }. fileTooBig = Le dimensioni di questo file sono eccessive. Dovrebbe essere inferiore a { $size }.
linkExpiredAlt = Link scaduto linkExpiredAlt = Link scaduto
notSupportedHeader = Il browser in uso non è supportato. notSupportedHeader = Il browser in uso non è supportato.
notSupportedLink = Perché questo browser non risulta supportato? notSupportedLink = Perché questo browser non risulta supportato?
notSupportedOutdatedDetail = Purtroppo questa versione di Firefox non supporta le tecnologie web alla base di Firefox Send. È necessario aggiornare il browser. notSupportedOutdatedDetail = Purtroppo questa versione di Firefox non supporta le tecnologie web alla base di Send. È necessario aggiornare il browser.
updateFirefox = Aggiorna Firefox updateFirefox = Aggiorna Firefox
deletePopupCancel = Annulla deletePopupCancel = Annulla
deleteButtonHover = Elimina deleteButtonHover = Elimina
@@ -33,8 +33,8 @@ footerLinkLegal = Note legali
footerLinkPrivacy = Privacy footerLinkPrivacy = Privacy
footerLinkCookies = Cookie footerLinkCookies = Cookie
passwordTryAgain = Password errata, riprovare. passwordTryAgain = Password errata, riprovare.
javascriptRequired = Firefox Send richiede JavaScript javascriptRequired = Send richiede JavaScript
whyJavascript = Perché Firefox Send richiede JavaScript? whyJavascript = Perché Send richiede JavaScript?
enableJavascript = Attiva JavaScript e riprova. enableJavascript = Attiva JavaScript e riprova.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -47,8 +47,7 @@ passwordSetError = Impossibile impostare la password
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -107,7 +106,6 @@ legalDateStamp = Versione 1.0 del 12 marzo 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }g { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }g { $hours }h { $minutes }m
addFilesButton = Seleziona i file da caricare addFilesButton = Seleziona i file da caricare
trustWarningMessage = Assicurati che il destinatario sia affidabile quando condividi dati sensibili.
uploadButton = Carica uploadButton = Carica
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Trascina e rilascia i file dragAndDropFiles = Trascina e rilascia i file
@@ -145,33 +143,3 @@ shareLinkButton = Condividi link
shareMessage = Scarica “{ $name }” con { -send-brand }: condivisione di file semplice e sicura shareMessage = Scarica “{ $name }” con { -send-brand }: condivisione di file semplice e sicura
trailheadPromo = Cè un modo per proteggere la tua privacy. Entra in Firefox. trailheadPromo = Cè un modo per proteggere la tua privacy. Entra in Firefox.
learnMore = Ulteriori informazioni. learnMore = Ulteriori informazioni.
downloadFlagged = Questo link è stato disattivato perché vìola i termini di servizio.
downloadConfirmTitle = Unultima cosa
downloadConfirmDescription = Assicurati che la persona che ti ha inviato questo file sia affidabile perché non possiamo garantire che non sia in grado di danneggiare il tuo dispositivo.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Considero affidabile la persona che ha inviato questo file
*[other] Considero affidabile la persona che ha inviato questi file
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Segnala questo file come sospetto
*[other] Segnala questi file come sospetti
}
reportDescription = Aiutaci a capire che cosa è successo. Qual è il problema con questi file?
reportUnknownDescription = Vai allindirizzo del link che vuoi segnalare e fai clic su “{ reportFile }”.
reportButton = Segnala
reportReasonMalware = Questi file contengono malware o fanno parte di un attacco phishing.
reportReasonPii = Questi file contengono informazioni personali identificabili che mi riguardano.
reportReasonAbuse = Questi file contengono contenuti illegali o offensivi.
reportReasonCopyright = Per segnalare violazioni del copyright o abusi di marchi registrati, utilizzare la procedura descritta in <a>questa pagina</a>.
reportedTitle = File segnalati
reportedDescription = Grazie, abbiamo ricevuto la tua segnalazione relativa a questi file.

View File

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

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = フィードバック
importingFile = インポート中... importingFile = インポート中...
encryptingFile = 暗号化中... encryptingFile = 暗号化中...
decryptingFile = 復号化中... decryptingFile = 復号化中...
@@ -17,13 +17,13 @@ unlockButtonLabel = ロック解除
downloadButtonLabel = ダウンロード downloadButtonLabel = ダウンロード
downloadFinish = ダウンロード完了 downloadFinish = ダウンロード完了
fileSizeProgress = ({ $partialSize } / { $totalSize }) fileSizeProgress = ({ $partialSize } / { $totalSize })
sendYourFilesLink = Firefox Send を試す sendYourFilesLink = Send を試す
errorPageHeader = 何か問題が発生しました。 errorPageHeader = 何か問題が発生しました。
fileTooBig = このファイルは大きすぎるためアップロードできません。上限は { $size } です。 fileTooBig = このファイルは大きすぎるためアップロードできません。上限は { $size } です。
linkExpiredAlt = リンク期限切れ linkExpiredAlt = リンク期限切れ
notSupportedHeader = お使いのブラウザーには対応していません。 notSupportedHeader = お使いのブラウザーには対応していません。
notSupportedLink = なぜ私のブラウザーには対応していないのでしょうか? notSupportedLink = なぜ私のブラウザーには対応していないのでしょうか?
notSupportedOutdatedDetail = 残念ながらお使いのバージョンの Firefox は Firefox Send が活用しているウェブ技術に対応していません。ブラウザーを更新する必要があります。 notSupportedOutdatedDetail = 残念ながらお使いのバージョンの Firefox は Send が活用しているウェブ技術に対応していません。ブラウザーを更新する必要があります。
updateFirefox = Firefox を更新 updateFirefox = Firefox を更新
deletePopupCancel = キャンセル deletePopupCancel = キャンセル
deleteButtonHover = 削除 deleteButtonHover = 削除
@@ -31,8 +31,8 @@ footerLinkLegal = 法的情報
footerLinkPrivacy = プライバシー footerLinkPrivacy = プライバシー
footerLinkCookies = Cookie footerLinkCookies = Cookie
passwordTryAgain = パスワードが正しくありません。再度入力してください。 passwordTryAgain = パスワードが正しくありません。再度入力してください。
javascriptRequired = Firefox Send を使うには JavaScript が必要です javascriptRequired = Send を使うには JavaScript が必要です
whyJavascript = Firefox Send が JavaScript を必要とする理由 whyJavascript = Send が JavaScript を必要とする理由
enableJavascript = JavaScript を有効にして再度試してください。 enableJavascript = JavaScript を有効にして再度試してください。
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } 時間 { $minutes } 分 expiresHoursMinutes = { $hours } 時間 { $minutes } 分
@@ -45,8 +45,7 @@ passwordSetError = このパスワードは設定できませんでした
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -107,7 +106,6 @@ legalDateStamp = バージョン 1.0, 2019年3月12日時点
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } 日 { $hours } 時 { $minutes } 分 expiresDaysHoursMinutes = { $days } 日 { $hours } 時 { $minutes } 分
addFilesButton = アップロードするファイルを選択 addFilesButton = アップロードするファイルを選択
trustWarningMessage = 機密データを共有する場合は、受信者が信頼できる相手であることを確認してください。
uploadButton = アップロード uploadButton = アップロード
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = ファイルをドラッグ&ドロップ dragAndDropFiles = ファイルをドラッグ&ドロップ
@@ -144,31 +142,3 @@ shareLinkButton = リンクを共有
shareMessage = { -send-brand } で "{ $name }" をダウンロード: シンプルで安全なファイル共有 shareMessage = { -send-brand } で "{ $name }" をダウンロード: シンプルで安全なファイル共有
trailheadPromo = プライバシーを保護する方法があります。Firefox を試してください。 trailheadPromo = プライバシーを保護する方法があります。Firefox を試してください。
learnMore = 詳細情報 learnMore = 詳細情報
downloadFlagged = サービス利用規約に違反しているため、このリンクは無効になっています。
downloadConfirmTitle = さらにもう一つ
downloadConfirmDescription = このファイルが端末に悪影響を及ぼさないことを確かめられないため、送信者が信頼できる相手であることを確認してください。
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
*[other] ファイルの送信者を信頼します
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
*[other] 疑わしいファイルとして報告する
}
reportDescription = 詳しく調べるためにお知らせください。これらのファイルの何が問題だと思われますか?
reportUnknownDescription = 報告したい内容のリンクの URL にアクセスし、“{ reportFile }” をクリックしてください。
reportButton = 問題を報告
reportReasonMalware = これらのファイルにはマルウェアが含まれているか、フィッシング詐欺攻撃の一部です。
reportReasonPii = これらのファイルには私に関する個人情報が含まれています。
reportReasonAbuse = これらのファイルには違法または虐待的なコンテンツが含まれています。
reportReasonCopyright = 著作権または商標の侵害を報告するには、<a>このページ</a> に記載された手続きに従ってください。
reportedTitle = ファイルを報告しました
reportedDescription = ご協力ありがとうございました。これらのファイルに関する報告を受け取りました。

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = გამოხმაურება
importingFile = გადმოტანა... importingFile = გადმოტანა...
encryptingFile = დაშიფვრა... encryptingFile = დაშიფვრა...
decryptingFile = გაშიფვრა... decryptingFile = გაშიფვრა...
@@ -19,13 +19,13 @@ unlockButtonLabel = გახსნა
downloadButtonLabel = ჩამოტვირთვა downloadButtonLabel = ჩამოტვირთვა
downloadFinish = ჩამოტვირთვა დასრულდა downloadFinish = ჩამოტვირთვა დასრულდა
fileSizeProgress = ({ $partialSize } { $totalSize }-იდან) fileSizeProgress = ({ $partialSize } { $totalSize }-იდან)
sendYourFilesLink = გამოცადეთ Firefox Send sendYourFilesLink = გამოცადეთ Send
errorPageHeader = რაღაც ხარვეზია! errorPageHeader = რაღაც ხარვეზია!
fileTooBig = ფაილი ზედმეტად დიდია. უნდა იყოს { $size } ზომაზე ნაკლები. fileTooBig = ფაილი ზედმეტად დიდია. უნდა იყოს { $size } ზომაზე ნაკლები.
linkExpiredAlt = ბმული ვადაგასულია linkExpiredAlt = ბმული ვადაგასულია
notSupportedHeader = თქვენი ბრაუზერი არაა მხარდაჭერილი. notSupportedHeader = თქვენი ბრაუზერი არაა მხარდაჭერილი.
notSupportedLink = რატომ არაა ჩემი ბრაუზერი მხარდაჭერილი? notSupportedLink = რატომ არაა ჩემი ბრაუზერი მხარდაჭერილი?
notSupportedOutdatedDetail = სამწუხაროდ, Firefox-ის ამ ვერსიას არ გააჩნია ის ტექნოლოგია, რომელიც აუცილებელია Firefox Send-ის მუშაობისთვის. გესაჭიროებათ, ბრაუზერის განახლება. notSupportedOutdatedDetail = სამწუხაროდ, Firefox-ის ამ ვერსიას არ გააჩნია ის ტექნოლოგია, რომელიც აუცილებელია Send-ის მუშაობისთვის. გესაჭიროებათ, ბრაუზერის განახლება.
updateFirefox = Firefox-ის განახლება updateFirefox = Firefox-ის განახლება
deletePopupCancel = გაუქმება deletePopupCancel = გაუქმება
deleteButtonHover = წაშლა deleteButtonHover = წაშლა
@@ -33,8 +33,8 @@ footerLinkLegal = სამართლებრივი საკითხე
footerLinkPrivacy = პირადულობა footerLinkPrivacy = პირადულობა
footerLinkCookies = ფუნთუშები footerLinkCookies = ფუნთუშები
passwordTryAgain = პაროლი არასწორია. სცადეთ ხელახლა. passwordTryAgain = პაროლი არასწორია. სცადეთ ხელახლა.
javascriptRequired = Firefox Send საჭიროებს JavaScript-ს javascriptRequired = Send საჭიროებს JavaScript-ს
whyJavascript = რატომ საჭიროებს Firefox Send JavaScript-ს? whyJavascript = რატომ საჭიროებს Send JavaScript-ს?
enableJavascript = გთხოვთ ჩართოთ JavaScript და სცადოთ ხელახლა. enableJavascript = გთხოვთ ჩართოთ JavaScript და სცადოთ ხელახლა.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }სთ { $minutes }წთ expiresHoursMinutes = { $hours }სთ { $minutes }წთ
@@ -47,8 +47,7 @@ passwordSetError = ამ პაროლის დაყენება ვე
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = ვერსია 1.0, დათარიღებული 12
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } დღე { $hours } სთ { $minutes } წთ expiresDaysHoursMinutes = { $days } დღე { $hours } სთ { $minutes } წთ
addFilesButton = ფაილების შერჩევა ასატვირთად addFilesButton = ფაილების შერჩევა ასატვირთად
trustWarningMessage = დარწმუნდით, რომ ენდობით მიმღებს, სანამ მნიშვნელოვან მონაცემებს გაუზიარებთ.
uploadButton = ატვირთვა uploadButton = ატვირთვა
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = გადმოიტანეთ და მოათავსეთ ფაილები dragAndDropFiles = გადმოიტანეთ და მოათავსეთ ფაილები
@@ -153,33 +151,3 @@ shareLinkButton = ბმულის გაზიარება
shareMessage = ჩამოტვირთეთ „{ $name }“ { -send-brand }-ით: ფაილების გაზიარება მარტივად, უსაფრთხოდ shareMessage = ჩამოტვირთეთ „{ $name }“ { -send-brand }-ით: ფაილების გაზიარება მარტივად, უსაფრთხოდ
trailheadPromo = გზა, თქვენი პირადულობის დასაცავად. შემოუერთდით Firefox-ს. trailheadPromo = გზა, თქვენი პირადულობის დასაცავად. შემოუერთდით Firefox-ს.
learnMore = იხილეთ ვრცლად. learnMore = იხილეთ ვრცლად.
downloadFlagged = ბმული გაუქმებულია, მომსახურების პირობების დარღვევის გამო.
downloadConfirmTitle = კიდევ ერთი რამ
downloadConfirmDescription = დარწმუნდით, რომ სანდოა პირი, ვინც ეს ფაილი გამოგიგზავნათ, რადგან ჩვენ ვერ დაგპირდებით, რომ არ დააზიანებს თქვენს მოწყობილობას.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] ვენდობი პირს, რომელმაც ეს ფაილი გამომიგზავნა
*[other] ვენდობი პირს, რომელმაც ეს ფაილები გამომიგზავნა
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] მოხსენება, საეჭვო ფაილზე
*[other] მოხსენება, საეჭვო ფაილებზე
}
reportDescription = დაგვეხმარეთ გარკვევაში. თქვენი აზრით, რა ფაილებია?
reportUnknownDescription = გთხოვთ გადახვიდეთ ბმულზე, რომლზეც გსურთ გვაცნობოთ და დაწკაპეთ „{ reportFile }“.
reportButton = მოხსენება
reportReasonMalware = ეს ფაილები შეიცავს მავნე კოდს ან თაღლითური შეტევის ნაწილია.
reportReasonPii = ეს ფაილები შეიცავს ვინაობის ამსახველ მასალას ჩემზე.
reportReasonAbuse = ეს ფაილები შეიცავს უკანონო ან შეურაცხმყოფელ მასალას.
reportReasonCopyright = საავტორო უფლებებთან ან სავაჭრო ნიშნებთან დაკავშირებულ დარღვევებზე მოხსენებისთვის, გთხოვთ იხილოთ განმარტებითი მითითებები <a>ამ გვერდზე</a>.
reportedTitle = ფაილებზე მოხსენება გაგზავნილია
reportedDescription = გმადლობთ. მივიღეთ თქვენი მოხსენება, ამ ფაილებზე.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Tikti
importingFile = Akter... importingFile = Akter...
encryptingFile = Awgelhen... encryptingFile = Awgelhen...
decryptingFile = Azmek... decryptingFile = Azmek...
@@ -19,13 +19,13 @@ unlockButtonLabel = Serreḥ
downloadButtonLabel = Sider downloadButtonLabel = Sider
downloadFinish = Asider yemmed downloadFinish = Asider yemmed
fileSizeProgress = ({ $partialSize } seg { $totalSize }) fileSizeProgress = ({ $partialSize } seg { $totalSize })
sendYourFilesLink = Ɛreḍ Firefox Send sendYourFilesLink = Ɛreḍ Send
errorPageHeader = Yella wayen yeḍran! errorPageHeader = Yella wayen yeḍran!
fileTooBig = Afaylu-agi meqqer aṭas. Yessefk ad yili daw n { $size }. fileTooBig = Afaylu-agi meqqer aṭas. Yessefk ad yili daw n { $size }.
linkExpiredAlt = Aseɣwen yemmut linkExpiredAlt = Aseɣwen yemmut
notSupportedHeader = Iminig-ik ur ittusefrak ara notSupportedHeader = Iminig-ik ur ittusefrak ara
notSupportedLink = Ayγer iminig inu ur yettwasefrek ara? notSupportedLink = Ayγer iminig inu ur yettwasefrek ara?
notSupportedOutdatedDetail = Ad nesḥissef imilqem-agi n Firefox Firefox ur isefrak ara titiknulujiyin web yettwaseqdacen di Firefox Send. Yessefk ad tleqmeḍ iminig-ik. notSupportedOutdatedDetail = Ad nesḥissef imilqem-agi n Firefox Firefox ur isefrak ara titiknulujiyin web yettwaseqdacen di Send. Yessefk ad tleqmeḍ iminig-ik.
updateFirefox = Leqqem Firefox updateFirefox = Leqqem Firefox
deletePopupCancel = Sefsex deletePopupCancel = Sefsex
deleteButtonHover = Kkes deleteButtonHover = Kkes
@@ -33,8 +33,8 @@ footerLinkLegal = Usḍif
footerLinkPrivacy = Tabaḍnit footerLinkPrivacy = Tabaḍnit
footerLinkCookies = Inagan n tuqqna footerLinkCookies = Inagan n tuqqna
passwordTryAgain = Yir awal uffir. Ɛreḍ tikelt nniḍen. passwordTryAgain = Yir awal uffir. Ɛreḍ tikelt nniḍen.
javascriptRequired = Firefox Send yesra JavaScript javascriptRequired = Send yesra JavaScript
whyJavascript = Ayɣer firefox Send yesra JavaScript? whyJavascript = Ayɣer Send yesra JavaScript?
enableJavascript = Ma ulac aɣilif rmed JavaScript sakin ɛreḍ tikkelt nniḍen. enableJavascript = Ma ulac aɣilif rmed JavaScript sakin ɛreḍ tikkelt nniḍen.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }Isragen { $minutes }Tisdatin expiresHoursMinutes = { $hours }Isragen { $minutes }Tisdatin
@@ -47,8 +47,7 @@ passwordSetError = Awal-agi uffir ur izmir ara ad ittwabaded
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -75,7 +74,7 @@ timespanWeeks =
fileCount = fileCount =
{ $num -> { $num ->
[one] 1 n ufaylu [one] 1 n ufaylu
*[other] { $num } n yifuyla *[other] { $num } n ifuyla
} }
# byte abbreviation # byte abbreviation
bytes = B bytes = B
@@ -115,7 +114,6 @@ legalDateStamp = Lqem 1.0, azemz n 12 Meɣres 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } ass { $hours } srg { $minutes } tsd expiresDaysHoursMinutes = { $days } ass { $hours } srg { $minutes } tsd
addFilesButton = Fren ifuyla ad tessaliḍ addFilesButton = Fren ifuyla ad tessaliḍ
trustWarningMessage = Ḍmen d akken tumneḍ anermis ticki tebḍiḍ isefka n tbadnit.
uploadButton = Sali uploadButton = Sali
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Ẓuɣer sakin sers ifuyla dragAndDropFiles = Ẓuɣer sakin sers ifuyla
@@ -153,33 +151,3 @@ shareLinkButton = Bḍu aseɣwen
shareMessage = Sider "{ $name }" s { -send-brand }: d fessas, d aɣelsan i beṭṭu n yifuyla. shareMessage = Sider "{ $name }" s { -send-brand }: d fessas, d aɣelsan i beṭṭu n yifuyla.
trailheadPromo = Yella wallal n ummesten n tudert-ik tusligt. Ddu ɣer Firefox. trailheadPromo = Yella wallal n ummesten n tudert-ik tusligt. Ddu ɣer Firefox.
learnMore = Issin ugar. learnMore = Issin ugar.
downloadFlagged = Aseɣwen-a yensa acku ur iquder ara tiwtilin n useqdec.
downloadConfirmTitle = Taɣawsa-nniḍen
downloadConfirmDescription = Ḍmen d akken tumneḍ amdan i ak-d-yuznen afaylu-a acku ur nezmir ara ad nwali ma yella ur iṭuṛṛu ara ibenk-ik.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Umneɣ amdan i yi-d-yuznen afaylu-a.
*[other] Umneɣ amdan i yi-d-yuznen ifuyla-a.
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Mmel-d afaylu-a ma tkukraḍ
*[other] Mmel-d ifuyla-a ma tkukraḍ
}
reportDescription = Mudd-aɣ-d afus n tallalt akken ad negzu acu i la iḍerrun. Acu twalaḍ cwiya-t kan deg yifuyla-a?
reportUnknownDescription = Ttxil-k·m rzu ɣer url n useɣwen i tebɣiḍ ad t-tceggreḍ syen sit ɣef “{ reportFile }”.
reportButton = Aneqqis
reportReasonMalware = Ifuyla-a deg-sen yir iseɣzanen neɣ d aḥric seg uẓdam n ṣṣyada.
reportReasonPii = Ifuyla-a deg-sen talɣut tudmawant yettwassnen i yi-yeɛnan.
reportReasonAbuse = Ifuyla-a deg-sen agbur arusḍif neɣ anaffal.
reportReasonCopyright = I ucegger n tkerḍa n yizerfan n umeskar neɣ n tecraḍ, seqdec asesfer i d-yettwagelmen ɣef <a>usebter-a</a>.
reportedTitle = Ifuyla i d-yettwaceqqren
reportedDescription = Tanemmirt. Nermes-d aneqqis-ik·im ɣef yifuyla-a.

View File

@@ -1,5 +1,6 @@
# Firefox Send is a brand name and should not be localized. # Send is a brand name and should not be localized.
title = Firefox Send title = Send
siteFeedback = 사용자 의견
importingFile = 가져오는 중… importingFile = 가져오는 중…
encryptingFile = 암호화 중… encryptingFile = 암호화 중…
decryptingFile = 복호화 중… decryptingFile = 복호화 중…
@@ -11,13 +12,13 @@ unlockButtonLabel = 잠금 해제
downloadButtonLabel = 다운로드 downloadButtonLabel = 다운로드
downloadFinish = 다운로드 완료 downloadFinish = 다운로드 완료
fileSizeProgress = ({ $partialSize } / { $totalSize }) fileSizeProgress = ({ $partialSize } / { $totalSize })
sendYourFilesLink = Firefox Send 써보기 sendYourFilesLink = Send 써보기
errorPageHeader = 오류가 발생했습니다! errorPageHeader = 오류가 발생했습니다!
fileTooBig = 파일의 크기가 너무 큽니다. { $size } 보다 작아야 합니다. fileTooBig = 파일의 크기가 너무 큽니다. { $size } 보다 작아야 합니다.
linkExpiredAlt = 링크가 만료됨 linkExpiredAlt = 링크가 만료됨
notSupportedHeader = 이 브라우저는 지원되지 않습니다. notSupportedHeader = 이 브라우저는 지원되지 않습니다.
notSupportedLink = 왜 이 브라우저는 지원이 되지 않나요? notSupportedLink = 왜 이 브라우저는 지원이 되지 않나요?
notSupportedOutdatedDetail = 안타깝게도 사용중인 Firefox 버전에서는 Firefox Send에 사용되는 웹 기술을 지원하지 않습니다. 브라우저 업데이트가 필요합니다. notSupportedOutdatedDetail = 안타깝게도 사용중인 Firefox 버전에서는 Send에 사용되는 웹 기술을 지원하지 않습니다. 브라우저 업데이트가 필요합니다.
updateFirefox = Firefox 업데이트 updateFirefox = Firefox 업데이트
deletePopupCancel = 아니오 deletePopupCancel = 아니오
deleteButtonHover = 삭제 deleteButtonHover = 삭제
@@ -25,8 +26,8 @@ footerLinkLegal = 법적 정보
footerLinkPrivacy = 개인정보 보호 footerLinkPrivacy = 개인정보 보호
footerLinkCookies = 쿠키 footerLinkCookies = 쿠키
passwordTryAgain = 비밀번호가 맞지 않습니다. 다시 시도해 주세요. passwordTryAgain = 비밀번호가 맞지 않습니다. 다시 시도해 주세요.
javascriptRequired = Firefox Send는 JavaScript를 필요로 합니다 javascriptRequired = Send는 JavaScript를 필요로 합니다
whyJavascript = 왜 Firefox Send에 JavaScript가 필요하죠? whyJavascript = 왜 Send에 JavaScript가 필요하죠?
enableJavascript = JavaScript를 활성화하고 다시 시도해 주세요. enableJavascript = JavaScript를 활성화하고 다시 시도해 주세요.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }시간 { $minutes }분 expiresHoursMinutes = { $hours }시간 { $minutes }분
@@ -39,8 +40,7 @@ passwordSetError = 이 비밀번호를 설정할 수 없었습니다
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -96,12 +96,11 @@ tooManyArchives =
expiredTitle = 이 링크는 만료되었습니다. expiredTitle = 이 링크는 만료되었습니다.
notSupportedDescription = { -send-brand }는 이 브라우저와 작동하지 않습니다. { -send-short-brand }는 최신 { -firefox }와 가장 잘 작동하며, 대부분의 최신 웹 브라우저와도 잘 작동합니다. notSupportedDescription = { -send-brand }는 이 브라우저와 작동하지 않습니다. { -send-short-brand }는 최신 { -firefox }와 가장 잘 작동하며, 대부분의 최신 웹 브라우저와도 잘 작동합니다.
downloadFirefox = { -firefox } 다운로드 downloadFirefox = { -firefox } 다운로드
legalTitle = { -send-short-brand } 개인정보처리방침 legalTitle = { -send-short-brand } 개인정보 보호 공지
legalDateStamp = 버전 1.0, 2019년 3월 12일자 legalDateStamp = 버전 1.0, 2019년 3월 12일자
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }일 { $hours }시간 { $minutes }분 expiresDaysHoursMinutes = { $days }일 { $hours }시간 { $minutes }분
addFilesButton = 업로드할 파일들을 선택하세요 addFilesButton = 업로드할 파일들을 선택하세요
trustWarningMessage = 중요한 정보를 공유할 때는 수신자들이 모두 믿을 만한 사람들인지를 꼭 확인하세요.
uploadButton = 업로드 uploadButton = 업로드
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = 파일들을 여기에 끌어서 놓으세요 dragAndDropFiles = 파일들을 여기에 끌어서 놓으세요
@@ -138,31 +137,3 @@ shareLinkButton = 링크 공유
shareMessage = { -send-brand }으로 “{ $name }” 파일을 내려받으세요: 쉽고 안전한 파일 공유입니다. shareMessage = { -send-brand }으로 “{ $name }” 파일을 내려받으세요: 쉽고 안전한 파일 공유입니다.
trailheadPromo = 개인 정보를 보호하는 방법이 있습니다. Firefox에 가입하세요. trailheadPromo = 개인 정보를 보호하는 방법이 있습니다. Firefox에 가입하세요.
learnMore = 더 알아보기. learnMore = 더 알아보기.
downloadFlagged = 서비스 약관 위반으로 인해 비활성화된 링크입니다.
downloadConfirmTitle = 한 가지 더
downloadConfirmDescription = 이 파일이 기기에 해를 끼치지 않는 다는 점을 확인하지 못했기 때문에 이 파일을 보낸 사람을 신뢰할 수 있는지 확인하세요.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
*[other] 이 파일을 보낸 사람을 신뢰함
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
*[other] 이 파일을 의심스러운 것으로 신고
}
reportDescription = 어떤 일이 발생했는지 알려 주세요. 이 파일의 어느 부분이 문제인 것 같나요?
reportUnknownDescription = 신고하려는 링크의 URL로 가서 “{ reportFile }”를 클릭하세요.
reportButton = 신고
reportReasonMalware = 이 파일은 악성 코드를 포함하고 있거나 피싱 공격의 일부입니다.
reportReasonPii = 이 파일에는 본인에 대한 개인 식별 정보가 포함되어 있습니다.
reportReasonAbuse = 이 파일에는 불법적이거나 모욕적인 내용이 들어 있습니다.
reportReasonCopyright = 저작권 또는 상표권 침해를 신고하려면 <a>이 페이지</a>에 설명된 절차를 따르십시오.
reportedTitle = 파일 신고됨
reportedDescription = 파일에 대한 신고를 접수했습니다. 감사합니다.

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Pateikti atsiliepimą
importingFile = Importuojama… importingFile = Importuojama…
encryptingFile = Šifruojama… encryptingFile = Šifruojama…
decryptingFile = Iššifruojama… decryptingFile = Iššifruojama…
@@ -21,13 +21,13 @@ unlockButtonLabel = Atrakinti
downloadButtonLabel = Parsisiųsti downloadButtonLabel = Parsisiųsti
downloadFinish = Parsiuntimas baigtas downloadFinish = Parsiuntimas baigtas
fileSizeProgress = ({ $partialSize } iš { $totalSize }) fileSizeProgress = ({ $partialSize } iš { $totalSize })
sendYourFilesLink = Išbandyti „Firefox Send“ sendYourFilesLink = Išbandyti „Send“
errorPageHeader = Nutiko kažkas negero! errorPageHeader = Nutiko kažkas negero!
fileTooBig = Pasirinktas failas yra per didelis, kad jį būtų galima įkelti. Failo dydis neturėtų viršyti { $size } fileTooBig = Pasirinktas failas yra per didelis, kad jį būtų galima įkelti. Failo dydis neturėtų viršyti { $size }
linkExpiredAlt = Saitas nebegalioja linkExpiredAlt = Saitas nebegalioja
notSupportedHeader = Jūsų naršyklė nepalaikoma. notSupportedHeader = Jūsų naršyklė nepalaikoma.
notSupportedLink = Kodėl mano naršyklė nepalaikoma? notSupportedLink = Kodėl mano naršyklė nepalaikoma?
notSupportedOutdatedDetail = Deja, šioje „Firefox“ naršyklės laidoje nepalaikoma „Firefox Send“ veikti reikalinga technologija. Jeigu norite naudotis šia paslauga, turėsite atnaujinti savo naršyklę. notSupportedOutdatedDetail = Deja, šioje „Firefox“ naršyklės laidoje nepalaikoma „Send“ veikti reikalinga technologija. Jeigu norite naudotis šia paslauga, turėsite atnaujinti savo naršyklę.
updateFirefox = Atnaujinti „Firefox“ updateFirefox = Atnaujinti „Firefox“
deletePopupCancel = Atsisakyti deletePopupCancel = Atsisakyti
deleteButtonHover = Šalinti deleteButtonHover = Šalinti
@@ -35,8 +35,8 @@ footerLinkLegal = Teisinė informacija
footerLinkPrivacy = Privatumas footerLinkPrivacy = Privatumas
footerLinkCookies = Slapukai footerLinkCookies = Slapukai
passwordTryAgain = Slaptažodis netinka. Bandykite dar kartą. passwordTryAgain = Slaptažodis netinka. Bandykite dar kartą.
javascriptRequired = „Firefox Send“ veikimui būtina įgalinti „JavaScript“ palaikymą javascriptRequired = „Send“ veikimui būtina įgalinti „JavaScript“ palaikymą
whyJavascript = Kodėl „Firefox Send“ neveikia išjungus „JavaScript“? whyJavascript = Kodėl „Send“ neveikia išjungus „JavaScript“?
enableJavascript = Įgalinkit „JavaScript“ ir bandykite dar kartą. enableJavascript = Įgalinkit „JavaScript“ ir bandykite dar kartą.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours } val. { $minutes } min. expiresHoursMinutes = { $hours } val. { $minutes } min.
@@ -49,8 +49,7 @@ passwordSetError = Slaptažodžio nustatyti nepavyko
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = -mozilla =
@@ -131,7 +130,6 @@ legalDateStamp = 1.0 versija, 2019 m. kovo 12 d
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days } d. { $hours } val. { $minutes } min. expiresDaysHoursMinutes = { $days } d. { $hours } val. { $minutes } min.
addFilesButton = Rinktis failus įkėlimui addFilesButton = Rinktis failus įkėlimui
trustWarningMessage = Dalindamiesi svarbiais duomenimis įsitikinkite, kad pasitikite gavėju.
uploadButton = Įkelti uploadButton = Įkelti
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Užtempkite ir numeskite failus čia dragAndDropFiles = Užtempkite ir numeskite failus čia
@@ -170,35 +168,3 @@ shareLinkButton = Dalintis saitu
shareMessage = Atsisiųskite „{ $name }“ su „{ -send-brand }“: paprastas, saugus dalinimasis failais shareMessage = Atsisiųskite „{ $name }“ su „{ -send-brand }“: paprastas, saugus dalinimasis failais
trailheadPromo = Yra būdas apsaugoti jūsų privatumą. Naudokite „Firefox“. trailheadPromo = Yra būdas apsaugoti jūsų privatumą. Naudokite „Firefox“.
learnMore = Sužinoti daugiau. learnMore = Sužinoti daugiau.
downloadFlagged = Šis saitas panaikintas dėl paslaugos teikimo nuostatų pažeidimo.
downloadConfirmTitle = Dar vienas dalykas
downloadConfirmDescription = Įsitikinkite, kad pasitikite asmeniu, atsiuntusiu šį failą, nes mes negalime užtikrinti, kad jis nepakenks jūsų įrenginiui.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Aš pasitikiu asmeniu, atsiuntusiu šį failą
[few] Aš pasitikiu asmeniu, atsiuntusiu šiuos failus
*[other] Aš pasitikiu asmeniu, atsiuntusiu šiuos failus
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Pranešti apie įtartiną failą
[few] Pranešti apie įtartinus failus
*[other] Pranešti apie įtartinus failus
}
reportDescription = Padėkite mums suprasti situaciją. Kas jūsų nuomone negerai su šiais failais?
reportUnknownDescription = Atverkite saitą, apie kurį norite pranešti, ir spustelėkite „{ reportFile }“.
reportButton = Pranešti
reportReasonMalware = Šiuose failuose yra kenkėjiškos programinės įrangos, arba jie yra dalis sukčiavimo atakos.
reportReasonPii = Šiuose failuose yra mano asmeninės informacijos.
reportReasonAbuse = Šiuose failuose yra nelegalaus arba neteisėto turinio.
reportReasonCopyright = Norėdami pranešti apie autorių teisių ar prekės ženklo pažeidimus, vadovaukitės <a>šiame puslapyje</a> aprašytu procesu.
reportedTitle = Apie failus pranešta
reportedDescription = Ačiū. Mes gavome jūsų pranešimą apie šiuos failus.

View File

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

View File

@@ -1,5 +1,5 @@
# Firefox Send is a brand name and should not be localized. title = Send
title = Firefox Send siteFeedback = Tu'un meu
importingFile = Ndakiin… importingFile = Ndakiin…
encryptingFile = Ndasami tu'un… encryptingFile = Ndasami tu'un…
decryptingFile = Nchiko tu'un… decryptingFile = Nchiko tu'un…
@@ -19,13 +19,13 @@ unlockButtonLabel = Kuna
downloadButtonLabel = Snuù downloadButtonLabel = Snuù
downloadFinish = Ntsinu snui downloadFinish = Ntsinu snui
fileSizeProgress = ({ $partialSize } ña { $totalSize }) fileSizeProgress = ({ $partialSize } ña { $totalSize })
sendYourFilesLink = Kuachu'un Firefox Send sendYourFilesLink = Kuachu'un Send
errorPageHeader = ¡Yee ña va'a! errorPageHeader = ¡Yee ña va'a!
fileTooBig = Kanu tutu yo. Tsini ñu'u koi tana { $size }. fileTooBig = Kanu tutu yo. Tsini ñu'u koi tana { $size }.
linkExpiredAlt = Ntoo enlace linkExpiredAlt = Ntoo enlace
notSupportedHeader = Kue ku kuni página. notSupportedHeader = Kue ku kuni página.
notSupportedLink = ¿Chanu kue ku kuncheuña? notSupportedLink = ¿Chanu kue ku kuncheuña?
notSupportedOutdatedDetail = Firefox kue ku kuni página web takua kuachu'un Firefox Send. tsiniñu'u ndu tsa'a navegador. notSupportedOutdatedDetail = Firefox kue ku kuni página web takua kuachu'un Send. tsiniñu'u ndu tsa'a navegador.
updateFirefox = Ndu tsa'a Firefox updateFirefox = Ndu tsa'a Firefox
deletePopupCancel = Kunchatu deletePopupCancel = Kunchatu
deleteButtonHover = Stoò deleteButtonHover = Stoò
@@ -33,8 +33,8 @@ footerLinkLegal = Aviso legal
footerLinkPrivacy = Ña meu footerLinkPrivacy = Ña meu
footerLinkCookies = Cookies footerLinkCookies = Cookies
passwordTryAgain = Kue vaa ni chau sivi siki. Chai tuku. passwordTryAgain = Kue vaa ni chau sivi siki. Chai tuku.
javascriptRequired = Firefox Send tsiniñui JavaScript javascriptRequired = Send tsiniñui JavaScript
whyJavascript = ¿Chanu Firefox Send tsiniñui JavaScript? whyJavascript = ¿Chanu Send tsiniñui JavaScript?
enableJavascript = Saá ña mani katsi JavaScript chá kitsa tuku. enableJavascript = Saá ña mani katsi JavaScript chá kitsa tuku.
# A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m" # A short representation of a countdown timer containing the number of hours and minutes remaining as digits, example "13h 47m"
expiresHoursMinutes = { $hours }h { $minutes }m expiresHoursMinutes = { $hours }h { $minutes }m
@@ -47,8 +47,7 @@ passwordSetError = Ma ku ntanii tu'un see
## Send version 2 strings ## Send version 2 strings
# Firefox Send, Send, Firefox, Mozilla are proper names and should not be localized -send-brand = Send
-send-brand = Firefox Send
-send-short-brand = Send -send-short-brand = Send
-firefox = Firefox -firefox = Firefox
-mozilla = Mozilla -mozilla = Mozilla
@@ -115,7 +114,6 @@ legalDateStamp = Versión 1.0 del 12 de marzo de 2019
# A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m" # A short representation of a countdown timer containing the number of days, hours, and minutes remaining as digits, example "2d 11h 56m"
expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m expiresDaysHoursMinutes = { $days }d { $hours }h { $minutes }m
addFilesButton = Katsi tutu ku skau addFilesButton = Katsi tutu ku skau
trustWarningMessage = Kunche'e a va'a nu ku ntachuún ña.
uploadButton = Skaa uploadButton = Skaa
# the first part of the string 'Drag and drop files or click to send up to 1GB' # the first part of the string 'Drag and drop files or click to send up to 1GB'
dragAndDropFiles = Xita cha sia kue tutu dragAndDropFiles = Xita cha sia kue tutu
@@ -153,33 +151,3 @@ shareLinkButton = Stucha Enlace
shareMessage = Snuu «{ $name }» tsi { -send-brand }: kue nchichi shareMessage = Snuu «{ $name }» tsi { -send-brand }: kue nchichi
trailheadPromo = Ku china vau ña chau. Kita'an tsi Firefox. trailheadPromo = Ku china vau ña chau. Kita'an tsi Firefox.
learnMore = Skua'a kuakaa. learnMore = Skua'a kuakaa.
downloadFlagged = Va'á enlace yo.
downloadConfirmTitle = Una cosa más
downloadConfirmDescription = A tsinu nivo tachu'un tutu yo takua ma stivia kàa ndusu ku.
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
downloadTrustCheckbox =
{ $count ->
[one] Va'a nivi ntachu'un tutu yo
*[other] Va'a nivi ntachu'un tutu yo
}
# This string has a special case for '1' and [other] (default). If necessary for
# your language, you can add {$count} to your translations and use the
# standard CLDR forms, or only use the form for [other] if both strings should
# be identical.
reportFile =
{ $count ->
[one] Katu'un ña va'á tutu yo
*[other] Katu'un ña va'á kue tutu yo
}
reportDescription = Chinche kue yu na kunikue ña yee. ¿A va'á kue tutu yo?
reportUnknownDescription = Sa'a ña mani kuncheu, url ña enlace ña va'á cha katavi “{ reportFile }”.
reportButton = Ka tu'un
reportReasonMalware = Inka ña va'á nu kue tutu yo.
reportReasonPii = Inka kue tu'un me nu kue tutu yo.
reportReasonAbuse = Yee ña va'á nu kue tutu yo.
reportReasonCopyright = Tatu ye ña va'á nu derechos de autor a marca registrada, kavi tutu yo <a>esta página</a>.
reportedTitle = Ku ncheé tutu
reportedDescription = Ti tsavu. tsa kumikue tu'un tsa'a tutuku.

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