Remove legal page, add no affiliation text in footer
This commit is contained in:
parent
6c3a2e53af
commit
3165086869
|
@ -7,7 +7,6 @@ module.exports = function(app = choo({ hash: true })) {
|
|||
app.route('/download/:id', body(download));
|
||||
app.route('/download/:id/:key', body(download));
|
||||
app.route('/unsupported/:reason', body(require('./ui/unsupported')));
|
||||
app.route('/legal', body(require('./ui/legal')));
|
||||
app.route('/error', body(require('./ui/error')));
|
||||
app.route('/blank', body(require('./ui/blank')));
|
||||
app.route('/oauth', function(state, emit) {
|
||||
|
|
|
@ -17,15 +17,14 @@ class Footer extends Component {
|
|||
<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"
|
||||
>
|
||||
<div></div>
|
||||
<div>${translate('footerText')}</div>
|
||||
<ul
|
||||
class="flex flex-col md:flex-row items-start md:items-center md:justify-end"
|
||||
>
|
||||
<li class="m-2">
|
||||
<a href="/legal"> ${translate('footerLinkPrivacy')} </a>
|
||||
</li>
|
||||
<li class="m-2">
|
||||
<a href="https://gitlab.com/timvisee/send">Source</a>
|
||||
<a href="https://gitlab.com/timvisee/send"
|
||||
>${translate('footerLinkSource')}</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</footer>
|
||||
|
|
109
app/ui/legal.js
109
app/ui/legal.js
|
@ -1,109 +0,0 @@
|
|||
const html = require('choo/html');
|
||||
const modal = require('./modal');
|
||||
|
||||
module.exports = function(state, emit) {
|
||||
state.modal = null;
|
||||
return html`
|
||||
<main class="main">
|
||||
${state.modal && modal(state, emit)}
|
||||
<div
|
||||
class="flex flex-col items-center bg-white m-4 px-6 py-8 border border-grey-30 md:border-none md:px-12 md:py-16 shadow w-full md:h-full dark:bg-grey-90"
|
||||
>
|
||||
<h1 class="text-center text-3xl font-bold">
|
||||
${state.translate('legalTitle')}
|
||||
</h1>
|
||||
<p class="mt-2">${state.translate('legalDateStamp')}</p>
|
||||
<div class="overflow-y-scroll py-8 px-12">
|
||||
<p class="leading-normal">
|
||||
<span>When Mozilla receives information from you, our</span>
|
||||
<a
|
||||
href="https://www.mozilla.org/privacy/"
|
||||
target="__blank"
|
||||
rel="noopener noreferrer"
|
||||
class="link-blue hover:underline"
|
||||
>Mozilla Privacy Policy</a
|
||||
>
|
||||
<span
|
||||
>describes how we handle that information. Below are the top
|
||||
things you should know about Send. You can also view the
|
||||
code</span
|
||||
>
|
||||
<a
|
||||
href="https://github.com/mozilla/send/blob/master/docs/metrics.md"
|
||||
target="__blank"
|
||||
rel="noopener noreferrer"
|
||||
class="link-blue hover:underline"
|
||||
>here</a
|
||||
>.
|
||||
</p>
|
||||
<ul class="mt-6 leading-normal">
|
||||
<li class="mb-4">
|
||||
<b>Content</b>: Mozilla receives an encrypted copy of the file you
|
||||
upload but we cannot access the content or name of your encrypted
|
||||
file. By default, files are stored for a maximum of either 24
|
||||
hours or 7 days. If you choose a download cap, the file can be
|
||||
deleted from our server sooner.
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<b>Data on your device</b>: So that you can check status or delete
|
||||
files, basic information about your uploaded files is stored on
|
||||
your local device. This includes our identifier for the file, the
|
||||
filename, and the file’s unique download URL. This is cleared if
|
||||
you delete your uploaded file or upon visiting Send after the file
|
||||
expires. Note, however, that the URL will persist in your browsing
|
||||
history (and with whomever you shared it) until manually deleted.
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<b>Personal data</b>: The following is necessary to provide the
|
||||
service:
|
||||
<ul class="mt-6 leading-normal">
|
||||
<li class="mb-4">
|
||||
<u>IP addresses</u>: We receive IP addresses of downloaders
|
||||
and uploaders as part of our standard server logs. These are
|
||||
retained for 90 days, and for that period, may be connected to
|
||||
activity of a file’s download URL. Although we develop our
|
||||
services in ways that minimize identification, you should know
|
||||
that it may be possible to correlate the IP address of a Send
|
||||
user to the IP address of other Mozilla services with
|
||||
accounts; and if there is a match, this could identify the
|
||||
account email address.
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<u>Firefox Account</u>: This is required for authentication
|
||||
only if you wish to upload larger file sizes. Your Firefox
|
||||
Account record will retain aggregate data on your usage of
|
||||
Send: for example, if you created a Firefox Account in
|
||||
connection with Send, number of files sent and approximate
|
||||
file sizes, and how many times you’ve used the service.
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<b>Non-personal data</b>: We receive the following to improve our
|
||||
service and performance:
|
||||
<ul class="mt-6 leading-normal">
|
||||
<li class="mb-4">
|
||||
<u>Interaction data</u>: This includes information such as
|
||||
number of people sending and receiving files, number of files
|
||||
uploaded and approximate file sizes, percentage of file
|
||||
downloaders who become uploaders, how people engage with the
|
||||
website (time spent, clicks, referrer information, site exit
|
||||
path, use of passwords).
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<u>Technical data</u>: This includes information such as
|
||||
operating system, browser, language preference, country,
|
||||
timestamps, duration for file transfer, reasons for errors,
|
||||
reasons for file expiration.
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="mb-4">
|
||||
<b>Third Party Services</b>: We use Google Cloud Platform.
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
`;
|
||||
};
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Esta versión de Firefox no admite la tecnolochía
|
|||
updateFirefox = Esviellar Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Borrar
|
||||
footerLinkLegal = Aviso legal
|
||||
footerLinkPrivacy = Privacidat
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = La contrasenya ye incorrecta. Torne-lo a intentar.
|
||||
javascriptRequired = Send necesita JavaScript
|
||||
whyJavascript = Per qué Send necesita JavaScript?
|
||||
|
|
|
@ -36,9 +36,6 @@ notSupportedOutdatedDetail = للأسف فإن إصدارة فَيَرفُكس
|
|||
updateFirefox = حدّث فَيَرفُكس
|
||||
deletePopupCancel = ألغِ
|
||||
deleteButtonHover = احذف
|
||||
footerLinkLegal = القانونية
|
||||
footerLinkPrivacy = الخصوصية
|
||||
footerLinkCookies = الكعكات
|
||||
passwordTryAgain = كلمة السر خاطئة. أعِد المحاولة.
|
||||
javascriptRequired = يتطلب فَيَرفُكس سِنْد جافاسكربت
|
||||
whyJavascript = لماذا يتطلب فَيَرفُكس سِنْد جافاسكربت؟
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox nun sof
|
|||
updateFirefox = Anovar Firefox
|
||||
deletePopupCancel = Encaboxar
|
||||
deleteButtonHover = Desaniciar
|
||||
footerLinkLegal = Llegal
|
||||
footerLinkPrivacy = Privacidá
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = La contraseña ye incorreuta. Volvi tentalo.
|
||||
javascriptRequired = Send rique JavaScript
|
||||
whyJavascript = ¿Por qué Send rique JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Heyf ki, Firefox səyyahının bu versiyası Send-
|
|||
updateFirefox = Firefox-u Yenilə
|
||||
deletePopupCancel = Ləğv et
|
||||
deleteButtonHover = Sil
|
||||
footerLinkLegal = Hüquqi
|
||||
footerLinkPrivacy = Məxfilik
|
||||
footerLinkCookies = Çərəzlər
|
||||
passwordTryAgain = Səhv parol. Təkrar yoxlayın.
|
||||
javascriptRequired = Send üçün JavaScript lazımdır
|
||||
whyJavascript = Send niyə JavaScript tələb edir?
|
||||
|
|
|
@ -26,9 +26,6 @@ notSupportedOutdatedDetail = Tetayokoltij, Firefox tein tikuitok amo kiselia tep
|
|||
updateFirefox = Maj Firefox moyankuili
|
||||
deletePopupCancel = Maj motsakuili uan amo tami tein kichiujtok
|
||||
deleteButtonHover = Maj majchiua
|
||||
footerLinkLegal = Keniuj motekitiltis
|
||||
footerLinkPrivacy = Keniuj tikyekpiaj tein tikseliaj
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Amo yektik ichtakatajtol. Oksepa xikijkuilo.
|
||||
javascriptRequired = Send kineki maj moajsi JavaScript
|
||||
whyJavascript = ¿Keyej Send kineki maj moajsi JavaScript?
|
||||
|
|
|
@ -30,9 +30,6 @@ notSupportedOutdatedDetail = На жаль, гэтая версія Firefox не
|
|||
updateFirefox = Абнавіць Firefox
|
||||
deletePopupCancel = Скасаваць
|
||||
deleteButtonHover = Выдаліць
|
||||
footerLinkLegal = Прававыя звесткі
|
||||
footerLinkPrivacy = Прыватнасць
|
||||
footerLinkCookies = Кукі
|
||||
passwordTryAgain = Некарэктны пароль. Паспрабуйце зноў.
|
||||
javascriptRequired = Для Send неабходны JavaScript
|
||||
whyJavascript = Чаму для Send неабходны JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = দুর্ভাগ্যবশত Firefox এই
|
|||
updateFirefox = Firefox হালনাগাদ করুন
|
||||
deletePopupCancel = বাতিল
|
||||
deleteButtonHover = মুছে ফেলুন
|
||||
footerLinkLegal = আইনগত
|
||||
footerLinkPrivacy = গোপনীয়তা
|
||||
footerLinkCookies = কুকি
|
||||
passwordTryAgain = ভুল পাসওয়ার্ড। আবার চেষ্টা করুন।
|
||||
javascriptRequired = Send এর জাভাস্ক্রিপ্ট প্রয়োজন।
|
||||
whyJavascript = কেন Send এর জাভাস্ক্রিপ্ট প্রয়োজন?
|
||||
|
|
|
@ -34,9 +34,6 @@ notSupportedOutdatedDetail = Siwazh n'eo ket skoret ar c'halvezerezhioù implije
|
|||
updateFirefox = Hizivaat Firefox
|
||||
deletePopupCancel = Nullañ
|
||||
deleteButtonHover = Dilemel
|
||||
footerLinkLegal = Lezennel
|
||||
footerLinkPrivacy = Buhez prevez
|
||||
footerLinkCookies = Toupinoù
|
||||
passwordTryAgain = Ger-tremen direizh. Klaskit en-dro.
|
||||
javascriptRequired = Send a azgoulenn Javascript
|
||||
whyJavascript = Perak e azgoulenn Send Javascript?
|
||||
|
|
|
@ -92,12 +92,9 @@ deletePopupYes = Da
|
|||
deletePopupCancel = Otkaži
|
||||
deleteButtonHover = Izbriši
|
||||
copyUrlHover = Kopiraj URL
|
||||
footerLinkLegal = Pravno
|
||||
# Test Pilot is a proper name and should not be localized.
|
||||
footerLinkAbout = O Test Pilotu
|
||||
footerLinkPrivacy = Privatnost
|
||||
footerLinkTerms = Uslovi
|
||||
footerLinkCookies = Kolačići
|
||||
requirePasswordCheckbox = Zahtjevaj lozinku za preuzimanje ove datoteke
|
||||
addPasswordButton = Dodaj lozinku
|
||||
changePasswordButton = Promijeni
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Aquesta versió del Firefox no admet la tecnologia
|
|||
updateFirefox = Actualitza el Firefox
|
||||
deletePopupCancel = Cancel·la
|
||||
deleteButtonHover = Suprimeix
|
||||
footerLinkLegal = Avís legal
|
||||
footerLinkPrivacy = Privadesa
|
||||
footerLinkCookies = Galetes
|
||||
passwordTryAgain = La contrasenya és incorrecta. Torneu-ho a provar.
|
||||
javascriptRequired = El Send necessita JavaScript
|
||||
whyJavascript = Per què el Send necessita JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = K'ayew ruma re ruwäch Firefox re' man nuköch' ta
|
|||
updateFirefox = Tik'ex ri Firefox
|
||||
deletePopupCancel = Tiq'at
|
||||
deleteButtonHover = Tiyuj
|
||||
footerLinkLegal = Taqanel tzijol
|
||||
footerLinkPrivacy = Ichinanem
|
||||
footerLinkCookies = Taq kaxlanwey
|
||||
passwordTryAgain = Itzel ri ewan tzij. Tatojtob'ej chik.
|
||||
javascriptRequired = K'atzinel JavaScript chi re ri Send
|
||||
whyJavascript = ¿Achike ruma toq ri Send nrajo' JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = بەداخەوە ئەم وەشانەی Firefox پش
|
|||
updateFirefox = فاەرفۆکس نوێبکەرەوە
|
||||
deletePopupCancel = پاشگەزبوونەوە
|
||||
deleteButtonHover = سڕینەوە
|
||||
footerLinkLegal = یاسایی
|
||||
footerLinkPrivacy = تایبەتیی
|
||||
footerLinkCookies = شەکرۆکە
|
||||
passwordTryAgain = وشەی تێپەڕبوون هەڵەیە. هەوڵ بدەرەوە.
|
||||
javascriptRequired = فارفۆکسی ناردن پێویستە بە JavaScript هەیە
|
||||
whyJavascript = بۆچی پێویستی بە JavaScript هەیە؟
|
||||
|
|
|
@ -30,9 +30,6 @@ notSupportedOutdatedDetail = Tato verze Firefoxu bohužel nepodporuje webovou te
|
|||
updateFirefox = Aktualizovat Firefox
|
||||
deletePopupCancel = Zrušit
|
||||
deleteButtonHover = Smazat
|
||||
footerLinkLegal = Právní informace
|
||||
footerLinkPrivacy = Soukromí
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Špatné heslo. Zkuste to znovu.
|
||||
javascriptRequired = Send vyžaduje povolený JavaScript
|
||||
whyJavascript = Proč Send vyžaduje povolený JavaScript?
|
||||
|
|
|
@ -36,9 +36,6 @@ notSupportedOutdatedDetail = Yn anffodus, nid yw'r fersiwn yma o Firefox yn cynn
|
|||
updateFirefox = Diweddaru Firefox
|
||||
deletePopupCancel = Diddymu
|
||||
deleteButtonHover = Dileu
|
||||
footerLinkLegal = Cyfreithiol
|
||||
footerLinkPrivacy = Preifatrwydd
|
||||
footerLinkCookies = Cwcis
|
||||
passwordTryAgain = Cyfrinair anghywir. Ceisiwch eto.
|
||||
javascriptRequired = Mae Send angen JavaScript
|
||||
whyJavascript = Pam fod Send angen JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Desværre understøtter denne version af Firefox ik
|
|||
updateFirefox = Opdater Firefox
|
||||
deletePopupCancel = Annuller
|
||||
deleteButtonHover = Slet
|
||||
footerLinkLegal = Juridisk
|
||||
footerLinkPrivacy = Privatliv
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Forkert adgangskode. Prøv igen.
|
||||
javascriptRequired = Send kræver JavaScript
|
||||
whyJavascript = Hvorfor kræver Send JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Leider unterstützt diese Firefox-Version die Web-T
|
|||
updateFirefox = Firefox aktualisieren
|
||||
deletePopupCancel = Abbrechen
|
||||
deleteButtonHover = Löschen
|
||||
footerLinkLegal = Rechtliches
|
||||
footerLinkPrivacy = Datenschutz
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Falsches Passwort. Versuche es nochmal.
|
||||
javascriptRequired = Send benötigt JavaScript
|
||||
whyJavascript = Warum benötigt Send JavaScript?
|
||||
|
|
|
@ -32,9 +32,6 @@ notSupportedOutdatedDetail = Bóžko toś ta wersija Firefox webtechnologiju nje
|
|||
updateFirefox = Firefox aktualizěrowaś
|
||||
deletePopupCancel = Pśetergnuś
|
||||
deleteButtonHover = Wulašowaś
|
||||
footerLinkLegal = Pšawniske
|
||||
footerLinkPrivacy = Priwatnosć
|
||||
footerLinkCookies = Cookieje
|
||||
passwordTryAgain = Wopacne gronidło. Wopytajśo hyšći raz.
|
||||
javascriptRequired = Send JavaScript trjeba
|
||||
whyJavascript = Cogodla Send JavaScript trjeba?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Δυστυχώς, αυτή η έκδοση του F
|
|||
updateFirefox = Ενημέρωση Firefox
|
||||
deletePopupCancel = Ακύρωση
|
||||
deleteButtonHover = Διαγραφή
|
||||
footerLinkLegal = Νομικά
|
||||
footerLinkPrivacy = Απόρρητο
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Λάθος κωδικός πρόσβασης. Δοκιμάστε ξανά.
|
||||
javascriptRequired = Το Send απαιτεί JavaScript
|
||||
whyJavascript = Γιατί το Send απαιτεί JavaScript;
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Unfortunately this version of Firefox does not supp
|
|||
updateFirefox = Update Firefox
|
||||
deletePopupCancel = Cancel
|
||||
deleteButtonHover = Delete
|
||||
footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Incorrect password. Try again.
|
||||
javascriptRequired = Send requires JavaScript
|
||||
whyJavascript = Why does Send require JavaScript?
|
||||
|
|
|
@ -28,9 +28,8 @@ notSupportedOutdatedDetail = Unfortunately this version of Firefox does not supp
|
|||
updateFirefox = Update Firefox
|
||||
deletePopupCancel = Cancel
|
||||
deleteButtonHover = Delete
|
||||
footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookies
|
||||
footerText = Not affiliated with Mozilla or Firefox.
|
||||
footerLinkSource = Source
|
||||
passwordTryAgain = Incorrect password. Try again.
|
||||
javascriptRequired = Send requires JavaScript
|
||||
whyJavascript = Why does Send require JavaScript?
|
||||
|
|
|
@ -26,9 +26,8 @@ notSupportedOutdatedDetail = Unfortunately this version of Firefox does not supp
|
|||
updateFirefox = Update Firefox
|
||||
deletePopupCancel = Cancel
|
||||
deleteButtonHover = Delete
|
||||
footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookies
|
||||
footerText = Not affiliated with Mozilla or Firefox.
|
||||
footerLinkSource = Source
|
||||
passwordTryAgain = Incorrect password. Try again.
|
||||
javascriptRequired = Send requires JavaScript
|
||||
whyJavascript = Why does Send require JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Desafortunadamente esta versión de Firefox no sopo
|
|||
updateFirefox = Actualizar Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Borrar
|
||||
footerLinkLegal = Legales
|
||||
footerLinkPrivacy = Privacidad
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contraseña incorrecta. Intentá nuevamente.
|
||||
javascriptRequired = Send requiere JavaScript
|
||||
whyJavascript = ¿Por qué Send requiere Java Script?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta
|
|||
updateFirefox = Actualizar Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Eliminar
|
||||
footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacidad
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contraseña incorrecta. Vuelve a intentarlo.
|
||||
javascriptRequired = Send requiere JavaScript.
|
||||
whyJavascript = ¿Por qué Send requiere JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Lamentablemente, esta versión de Firefox no admite
|
|||
updateFirefox = Actualizar Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Eliminar
|
||||
footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacidad
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contraseña incorrecta. Inténtalo de nuevo.
|
||||
javascriptRequired = Send requiere JavaScript
|
||||
whyJavascript = ¿Por qué Send requiere JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Lamentablemente esta versión de Firefox no soporta
|
|||
updateFirefox = Actualizar Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Eliminar
|
||||
footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacidad
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contraseña incorrecta. Intenta de nuevo.
|
||||
javascriptRequired = Send requiere JavaScript
|
||||
whyJavascript = ¿Por qué Send requiere JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Kahjuks ei toeta see Firefoxi versioon veebitehnolo
|
|||
updateFirefox = Uuenda Firefox
|
||||
deletePopupCancel = Loobu
|
||||
deleteButtonHover = Kustuta
|
||||
footerLinkLegal = Õiguslik teave
|
||||
footerLinkPrivacy = Privaatsusest
|
||||
footerLinkCookies = Küpsistest
|
||||
passwordTryAgain = Vale parool. Palun proovi uuesti.
|
||||
javascriptRequired = Send'i kasutamiseks tuleb JavaScript lubada
|
||||
whyJavascript = Miks Send JavaScripti vajab?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Zoritxarrez Firefox bertsio honek ez du Send-ek beh
|
|||
updateFirefox = Eguneratu Firefox
|
||||
deletePopupCancel = Utzi
|
||||
deleteButtonHover = Ezabatu
|
||||
footerLinkLegal = Lege-oharra
|
||||
footerLinkPrivacy = Pribatutasuna
|
||||
footerLinkCookies = Cookieak
|
||||
passwordTryAgain = Pasahitz okerra. Saiatu berriro.
|
||||
javascriptRequired = JavaScript beharrezkoa da Send erabiltzeko.
|
||||
whyJavascript = Zergatik behar du Send-ek JavasScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = متاسفانه این نسخه از فایرفا
|
|||
updateFirefox = بروزرسانی فایرفاکس
|
||||
deletePopupCancel = انصراف
|
||||
deleteButtonHover = حذف
|
||||
footerLinkLegal = ملاحظات حقوقی
|
||||
footerLinkPrivacy = حریمخصوصی
|
||||
footerLinkCookies = کوکیها
|
||||
passwordTryAgain = کلمه عبور اشتباه است. مجدد تلاش کنید.
|
||||
javascriptRequired = Send نیازمند جاوااسکریپت است
|
||||
whyJavascript = چرا Send جاوااسکریپت لازم داد؟
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Valitettavasti tämä Firefoxin versio ei tue Sendi
|
|||
updateFirefox = Päivitä Firefox
|
||||
deletePopupCancel = Peruuta
|
||||
deleteButtonHover = Poista
|
||||
footerLinkLegal = Juridiset asiat
|
||||
footerLinkPrivacy = Tietosuoja
|
||||
footerLinkCookies = Evästeet
|
||||
passwordTryAgain = Väärä salasana. Yritä uudelleen.
|
||||
javascriptRequired = Firefox-Send vaatii JavaScriptin
|
||||
whyJavascript = Miksi Send vaatii JavaScriptin?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Malheureusement, cette version de Firefox ne prend
|
|||
updateFirefox = Mettre à jour Firefox
|
||||
deletePopupCancel = Annuler
|
||||
deleteButtonHover = Supprimer
|
||||
footerLinkLegal = Mentions légales
|
||||
footerLinkPrivacy = Confidentialité
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Mot de passe incorrect. Veuillez réessayer.
|
||||
javascriptRequired = Send nécessite JavaScript
|
||||
whyJavascript = Pourquoi Send nécessite-t-il JavaScript ?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Spitigernôch stipet dizze ferzje fan Firefox de we
|
|||
updateFirefox = Firefox fernije
|
||||
deletePopupCancel = Annulearje
|
||||
deleteButtonHover = Fuortsmite
|
||||
footerLinkLegal = Juridysk
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Net krekt wachtwurd. Probearje it opnij.
|
||||
javascriptRequired = Send fereasket JavaScript.
|
||||
whyJavascript = Werom hat Send JavaScript nedich?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Ko Firefox rembiapo ndaipu’akái ñanduti rembipu
|
|||
updateFirefox = Firefox mbohekopyahu
|
||||
deletePopupCancel = Heja
|
||||
deleteButtonHover = Mboguete
|
||||
footerLinkLegal = Añetegua
|
||||
footerLinkPrivacy = Ñemigua
|
||||
footerLinkCookies = Kookie
|
||||
passwordTryAgain = Ñe’ẽñemi ndoikóiva. Eha’ãjey.
|
||||
javascriptRequired = Send oikotevẽ JavaScript
|
||||
whyJavascript = ¿Mba’ére Send oikotevẽ JavaScript?
|
||||
|
|
|
@ -54,7 +54,6 @@ deletePopupYes = Joo
|
|||
deletePopupCancel = Bataliya
|
||||
deleteButtonHover = Luluta
|
||||
copyUrlHover = Kupe'iya URL
|
||||
footerLinkLegal = Legal
|
||||
# Test Pilot is a proper name and should not be localized.
|
||||
footerLinkAbout = Tomimbihu Test Pilot
|
||||
changePasswordButton = Boli'a
|
||||
|
|
|
@ -29,9 +29,6 @@ notSupportedOutdatedDetail = לצערנו גרסת Firefox זו לא תומכת
|
|||
updateFirefox = עדכון Firefox
|
||||
deletePopupCancel = ביטול
|
||||
deleteButtonHover = מחיקה
|
||||
footerLinkLegal = מידע משפטי
|
||||
footerLinkPrivacy = פרטיות
|
||||
footerLinkCookies = קובצי עוגיות
|
||||
passwordTryAgain = סיסמה שגויה. נא לנסות שוב.
|
||||
javascriptRequired = ל־Send דרוש JavaScript
|
||||
whyJavascript = למה ל־Send דרוש JavaScript?
|
||||
|
|
|
@ -30,9 +30,6 @@ notSupportedOutdatedDetail = Nažalost, ovo izdanje Firefoxa ne podržava web te
|
|||
updateFirefox = Ažuriraj Firefox
|
||||
deletePopupCancel = Odustani
|
||||
deleteButtonHover = Obriši
|
||||
footerLinkLegal = Pravni podaci
|
||||
footerLinkPrivacy = Privatnost
|
||||
footerLinkCookies = Kolačići
|
||||
passwordTryAgain = Netočna lozinka. Pokušaj ponovo.
|
||||
javascriptRequired = Za Send potreban je JavaScript
|
||||
whyJavascript = Zašto je za Send potreban JavaScript?
|
||||
|
|
|
@ -32,9 +32,6 @@ notSupportedOutdatedDetail = Bohužel tuta wersija Firefox webtechnologiju njepo
|
|||
updateFirefox = Firefox aktualizować
|
||||
deletePopupCancel = Přetorhnyć
|
||||
deleteButtonHover = Zhašeć
|
||||
footerLinkLegal = Prawniske
|
||||
footerLinkPrivacy = Priwatnosć
|
||||
footerLinkCookies = Placki
|
||||
passwordTryAgain = Wopačne hesło. Prošu spytajće hišće raz.
|
||||
javascriptRequired = Send JavaScript trjeba
|
||||
whyJavascript = Čehodla Send JavaScript trjeba?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Sajnos a Firefox ezen verziója nem támogatja a Se
|
|||
updateFirefox = Firefox frissítése
|
||||
deletePopupCancel = Mégse
|
||||
deleteButtonHover = Törlés
|
||||
footerLinkLegal = Jogi információk
|
||||
footerLinkPrivacy = Adatvédelem
|
||||
footerLinkCookies = Sütik
|
||||
passwordTryAgain = Helytelen jelszó. Próbálja meg újra.
|
||||
javascriptRequired = A Sendhez JavaScript szükséges
|
||||
whyJavascript = Miért van szükség JavaScriptre a Sendhez?
|
||||
|
|
|
@ -26,9 +26,6 @@ notSupportedOutdatedDetail = Yab u awil ka eyendha' Send kom an NAVEGADOR Firefo
|
|||
updateFirefox = Ka itmedha' Firefox
|
||||
deletePopupCancel = Ka kuba'
|
||||
deleteButtonHover = Ka pakuw
|
||||
footerLinkLegal = Axi walkadh ka t'ajan
|
||||
footerLinkPrivacy = Tsinataláb
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Yab ja' an tsinat japixtaláb. Ka exa' junil.
|
||||
javascriptRequired = Send in yejenchal JavaScript
|
||||
whyJavascript = ¿Jale' Send in yejenchal JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Դժբախտաբար, Firefox- ի այս տարբե
|
|||
updateFirefox = Թարմացնել Firefox-ը
|
||||
deletePopupCancel = Չեղարկել
|
||||
deleteButtonHover = Ջնջել
|
||||
footerLinkLegal = Իրավական
|
||||
footerLinkPrivacy = Գաղտնիություն
|
||||
footerLinkCookies = Cookie-ներ
|
||||
passwordTryAgain = Սխալ գաղտնաբառ. Կրկին փորձեք:
|
||||
javascriptRequired = Send-ը պահանջում է JavaScript
|
||||
whyJavascript = Ինչո՞ւ է Send-ը պահանջում JavaScript.
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Infelicemente iste version de Firefox non supporta
|
|||
updateFirefox = Actualisar Firefox
|
||||
deletePopupCancel = Cancellar
|
||||
deleteButtonHover = Deler
|
||||
footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Confidentialitate
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contrasigno incorrecte. Retenta.
|
||||
javascriptRequired = Send require JavaScript
|
||||
whyJavascript = Proque Send require JavaScript?
|
||||
|
|
|
@ -26,9 +26,6 @@ notSupportedOutdatedDetail = Sayangnya Firefox versi ini tidak mendukung teknolo
|
|||
updateFirefox = Perbarui Firefox
|
||||
deletePopupCancel = Batal
|
||||
deleteButtonHover = Hapus
|
||||
footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privasi
|
||||
footerLinkCookies = Kuki
|
||||
passwordTryAgain = Sandi salah. Silakan coba lagi.
|
||||
javascriptRequired = Send membutuhkan JavaScript.
|
||||
whyJavascript = Mengapa Send membutuhkan JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Ọ dị nwute na ụdị Firefox a anaghị akwado
|
|||
updateFirefox = Melite Firefox
|
||||
deletePopupCancel = Kagbuo
|
||||
deleteButtonHover = Hichapụ
|
||||
footerLinkLegal = n'Iwu
|
||||
footerLinkPrivacy = nzuzo
|
||||
footerLinkCookies = Kuki ga
|
||||
passwordTryAgain = okwuntughe ezighi ezi.Nwaa ọzọ
|
||||
javascriptRequired = Zipu chọrọ
|
||||
whyJavascript = Kedu ihe kpatara Zipu jiri chọ JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Purtroppo questa versione di Firefox non supporta l
|
|||
updateFirefox = Aggiorna Firefox
|
||||
deletePopupCancel = Annulla
|
||||
deleteButtonHover = Elimina
|
||||
footerLinkLegal = Note legali
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookie
|
||||
passwordTryAgain = Password errata, riprovare.
|
||||
javascriptRequired = Send richiede JavaScript
|
||||
whyJavascript = Perché Send richiede JavaScript?
|
||||
|
|
|
@ -25,8 +25,6 @@ notSupportedLink = Kam q'ii uve' ye' kuxh ni toleb' u chukb'al vaq'one'?
|
|||
updateFirefox = Tz'ajsa tatine' Firefox
|
||||
deletePopupCancel = Ya'samal
|
||||
deleteButtonHover = Sojsa
|
||||
footerLinkPrivacy = Tetz kuxhtu'
|
||||
footerLinkCookies = Cookies
|
||||
# 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
|
||||
# A short representation of a countdown timer containing the number of minutes remaining as digits, example "56m"
|
||||
|
|
|
@ -26,9 +26,6 @@ notSupportedOutdatedDetail = 残念ながらお使いのバージョンの Firef
|
|||
updateFirefox = Firefox を更新
|
||||
deletePopupCancel = キャンセル
|
||||
deleteButtonHover = 削除
|
||||
footerLinkLegal = 法的情報
|
||||
footerLinkPrivacy = プライバシー
|
||||
footerLinkCookies = Cookie
|
||||
passwordTryAgain = パスワードが正しくありません。再度入力してください。
|
||||
javascriptRequired = Send を使うには JavaScript が必要です
|
||||
whyJavascript = Send が JavaScript を必要とする理由
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = სამწუხაროდ, Firefox-ის ა
|
|||
updateFirefox = Firefox-ის განახლება
|
||||
deletePopupCancel = გაუქმება
|
||||
deleteButtonHover = წაშლა
|
||||
footerLinkLegal = სამართლებრივი საკითხები
|
||||
footerLinkPrivacy = პირადულობა
|
||||
footerLinkCookies = ფუნთუშები
|
||||
passwordTryAgain = პაროლი არასწორია. სცადეთ ხელახლა.
|
||||
javascriptRequired = Send საჭიროებს JavaScript-ს
|
||||
whyJavascript = რატომ საჭიროებს Send JavaScript-ს?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Ad nesḥissef imilqem-agi n Firefox Firefox ur ise
|
|||
updateFirefox = Leqqem Firefox
|
||||
deletePopupCancel = Sefsex
|
||||
deleteButtonHover = Kkes
|
||||
footerLinkLegal = Usḍif
|
||||
footerLinkPrivacy = Tabaḍnit
|
||||
footerLinkCookies = Inagan n tuqqna
|
||||
passwordTryAgain = Yir awal uffir. Ɛreḍ tikelt nniḍen.
|
||||
javascriptRequired = Send yesra JavaScript
|
||||
whyJavascript = Ayɣer Send yesra JavaScript?
|
||||
|
|
|
@ -21,9 +21,6 @@ notSupportedOutdatedDetail = 안타깝게도 사용중인 Firefox 버전에서
|
|||
updateFirefox = Firefox 업데이트
|
||||
deletePopupCancel = 아니오
|
||||
deleteButtonHover = 삭제
|
||||
footerLinkLegal = 법적 정보
|
||||
footerLinkPrivacy = 개인정보 보호
|
||||
footerLinkCookies = 쿠키
|
||||
passwordTryAgain = 비밀번호가 맞지 않습니다. 다시 시도해 주세요.
|
||||
javascriptRequired = Send는 JavaScript를 필요로 합니다
|
||||
whyJavascript = 왜 Send에 JavaScript가 필요하죠?
|
||||
|
|
|
@ -30,9 +30,6 @@ notSupportedOutdatedDetail = Deja, šioje „Firefox“ naršyklės laidoje nepa
|
|||
updateFirefox = Atnaujinti „Firefox“
|
||||
deletePopupCancel = Atsisakyti
|
||||
deleteButtonHover = Šalinti
|
||||
footerLinkLegal = Teisinė informacija
|
||||
footerLinkPrivacy = Privatumas
|
||||
footerLinkCookies = Slapukai
|
||||
passwordTryAgain = Slaptažodis netinka. Bandykite dar kartą.
|
||||
javascriptRequired = „Send“ veikimui būtina įgalinti „JavaScript“ palaikymą
|
||||
whyJavascript = Kodėl „Send“ neveikia išjungus „JavaScript“?
|
||||
|
|
|
@ -27,9 +27,6 @@ notSupportedOutdatedDetail = Tuni Firefox ya´a ntu satiñu vii jii Send. Nejika
|
|||
updateFirefox = Naxi´ñá Firefox
|
||||
deletePopupCancel = Nkuvi-ka
|
||||
deleteButtonHover = Xita
|
||||
footerLinkLegal = Tu´un nichi
|
||||
footerLinkPrivacy = Tu´un xitu a kumiji noo´o
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Contraseña ntu vatu. Nachu´un tuku.
|
||||
javascriptRequired = Send ni´i JavaScript
|
||||
whyJavascript = ¿Navi Send ni´i JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Firefox kue ku kuni página web takua kuachu'un Sen
|
|||
updateFirefox = Ndu tsa'a Firefox
|
||||
deletePopupCancel = Kunchatu
|
||||
deleteButtonHover = Stoò
|
||||
footerLinkLegal = Aviso legal
|
||||
footerLinkPrivacy = Ña meu
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Kue vaa ni chau sivi siki. Chai tuku.
|
||||
javascriptRequired = Send tsiniñui JavaScript
|
||||
whyJavascript = ¿Chanu Send tsiniñui JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = ദൗർഭാഗ്യവശാൽ ഫയർഫ
|
|||
updateFirefox = ഫയർഫോക്സ് പുതുക്കൂ
|
||||
deletePopupCancel = റദ്ദാക്കുക
|
||||
deleteButtonHover = നീക്കം ചെയ്യുക
|
||||
footerLinkLegal = നിയമസംബന്ധവിവരങ്ങൾ
|
||||
footerLinkPrivacy = സ്വകാര്യത
|
||||
footerLinkCookies = കുക്കികൾ
|
||||
passwordTryAgain = രഹസ്യവാക്ക് തെറ്റാണ്. വീണ്ടും ശ്രമിക്കുക.
|
||||
javascriptRequired = ഫയർഫോക്സ് സെൻഡ് പ്രവർത്തിക്കാൻ ജാവാസ്ക്രിപ്റ്റ് വേണം
|
||||
whyJavascript = ഫയർഫോക്സ് സെൻഡ് പ്രവർത്തിക്കാൻ എന്തിനാണ് ജാവാസ്ക്രിപ്റ്റ്?
|
||||
|
|
|
@ -88,12 +88,9 @@ deletePopupYes = Ya
|
|||
deletePopupCancel = Batal
|
||||
deleteButtonHover = Buang
|
||||
copyUrlHover = Salin URL
|
||||
footerLinkLegal = Perundangan
|
||||
# Test Pilot is a proper name and should not be localized.
|
||||
footerLinkAbout = Perihal Ujian Perintis
|
||||
footerLinkPrivacy = Privasi
|
||||
footerLinkTerms = Terma
|
||||
footerLinkCookies = Kuki
|
||||
requirePasswordCheckbox = Perlu kata laluan untuk memuat turun fail ini
|
||||
addPasswordButton = Tambah Kata laluan
|
||||
changePasswordButton = Tukar
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Dessverre støtter ikke denne versjonen av Firefox
|
|||
updateFirefox = Oppdater Firefox
|
||||
deletePopupCancel = Avbryt
|
||||
deleteButtonHover = Slett
|
||||
footerLinkLegal = Juridisk informasjon
|
||||
footerLinkPrivacy = Personvern
|
||||
footerLinkCookies = Infokapsler
|
||||
passwordTryAgain = Feil passord. Prøv igjen.
|
||||
javascriptRequired = Send krever JavaScript.
|
||||
whyJavascript = Hvorfor krever Send JavaScript?
|
||||
|
|
|
@ -28,9 +28,8 @@ notSupportedOutdatedDetail = Helaas ondersteunt deze versie van Firefox de webte
|
|||
updateFirefox = Firefox bijwerken
|
||||
deletePopupCancel = Annuleren
|
||||
deleteButtonHover = Verwijderen
|
||||
footerLinkLegal = Juridisch
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Cookies
|
||||
footerText = Niet aangesloten aan Mozilla of Firefox.
|
||||
footerLinkSource = Broncode
|
||||
passwordTryAgain = Onjuist wachtwoord. Probeer het opnieuw.
|
||||
javascriptRequired = Send vereist JavaScript
|
||||
whyJavascript = Waarom vereist Send JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Dessverre støttar ikkje denne versjonen av Firefox
|
|||
updateFirefox = Oppdater Firefox
|
||||
deletePopupCancel = Avbryt
|
||||
deleteButtonHover = Slett
|
||||
footerLinkLegal = Juridisk informasjon
|
||||
footerLinkPrivacy = Personvern
|
||||
footerLinkCookies = Infokapslar
|
||||
passwordTryAgain = Feil passord. Prøv på nytt.
|
||||
javascriptRequired = Send krev JavaScript.
|
||||
whyJavascript = Kvifor krev Send JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Aquesta version de Firefox es pas compatibla amb la
|
|||
updateFirefox = Metre a jorn Firefox
|
||||
deletePopupCancel = Anullar
|
||||
deleteButtonHover = Suprimir
|
||||
footerLinkLegal = Mencions legalas
|
||||
footerLinkPrivacy = Vida privada
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Senhal incorrècte. Tornatz ensajar.
|
||||
javascriptRequired = Send requesís JavaScript
|
||||
whyJavascript = Perque Send requesís JavaScript ?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = ਅਫ਼ਸੋਸ ਹੈ ਕਿ ਫਾਇਰਫਾ
|
|||
updateFirefox = ਫਾਇਰਫਾਕਸ ਅੱਪਡੇਟ ਕਰੋ
|
||||
deletePopupCancel = ਰੱਦ ਕਰੋ
|
||||
deleteButtonHover = ਹਟਾਓ
|
||||
footerLinkLegal = ਕਨੂੰਨ
|
||||
footerLinkPrivacy = ਪਰਦੇਦਾਰੀ
|
||||
footerLinkCookies = ਕੂਕੀਜ਼
|
||||
passwordTryAgain = ਗਲਤ ਪਾਸਵਰਡ ਹੈ। ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।
|
||||
javascriptRequired = Send ਲਈ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਚਾਹੀਦੀ ਹੈ
|
||||
whyJavascript = Send ਨੂੰ ਜਾਵਾ-ਸਕ੍ਰਿਪਟ ਦੀ ਲੋੜ ਕਿਓ ਹੈ?
|
||||
|
|
|
@ -30,9 +30,6 @@ notSupportedOutdatedDetail = Ta wersja Firefoksa nie obsługuje technologii inte
|
|||
updateFirefox = Uaktualnij Firefoksa
|
||||
deletePopupCancel = Anuluj
|
||||
deleteButtonHover = Usuń
|
||||
footerLinkLegal = Kwestie prawne
|
||||
footerLinkPrivacy = Prywatność
|
||||
footerLinkCookies = Ciasteczka
|
||||
passwordTryAgain = Niepoprawne hasło. Spróbuj ponownie.
|
||||
javascriptRequired = Send wymaga języka JavaScript
|
||||
whyJavascript = Dlaczego Send wymaga języka JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Ini tamakalis ipal Firefox tesu kimati ne tzawaltek
|
|||
updateFirefox = Shikyankwili Firefox
|
||||
deletePopupCancel = Shikilwi tesu
|
||||
deleteButtonHover = Shikpulu
|
||||
footerLinkLegal = Ipanpa ne tajtuli
|
||||
footerLinkPrivacy = Teichtakayu
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Ne ichtakatajkwilul tesu yek. Shikejeku uksenpa.
|
||||
javascriptRequired = Send muneki JavaScript
|
||||
whyJavascript = Taika Send muneki JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Infelizmente essa versão do Firefox não suporta a
|
|||
updateFirefox = Atualizar o Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Remover da lista
|
||||
footerLinkLegal = Jurídico
|
||||
footerLinkPrivacy = Privacidade
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Senha incorreta. Tente novamente.
|
||||
javascriptRequired = O Send requer JavaScript
|
||||
whyJavascript = Por que o Send precisa do JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Infelizmente esta versão do Firefox não suporta a
|
|||
updateFirefox = Atualizar o Firefox
|
||||
deletePopupCancel = Cancelar
|
||||
deleteButtonHover = Apagar
|
||||
footerLinkLegal = Informação legal
|
||||
footerLinkPrivacy = Privacidade
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Palavra-passe incorreta. Tente novamente.
|
||||
javascriptRequired = O Send requer JavaScript
|
||||
whyJavascript = Porque é que o Send requer JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Chakuyu' we okib'al rech Firefox man kutoq'aj ta le
|
|||
updateFirefox = Chak'ak'arisaj Firefox
|
||||
deletePopupCancel = Uq'atexik
|
||||
deleteButtonHover = Uchupik
|
||||
footerLinkLegal = Nim wuj
|
||||
footerLinkPrivacy = Echeb'alil
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Man utz ta le retokib'al. Chab'ana' chi jumul.
|
||||
javascriptRequired = Le Send kajawataj JavaScript chech
|
||||
whyJavascript = ¿jasche kajawataj JavaScript chech Send?
|
||||
|
|
|
@ -30,9 +30,6 @@ notSupportedOutdatedDetail = Din păcate, această versiune de Firefox nu suport
|
|||
updateFirefox = Actualizează Firefox
|
||||
deletePopupCancel = Renunță
|
||||
deleteButtonHover = Șterge
|
||||
footerLinkLegal = Mențiuni legale
|
||||
footerLinkPrivacy = Confidențialitate
|
||||
footerLinkCookies = Cookie-uri
|
||||
passwordTryAgain = Parolă incorectă. Încearcă din nou.
|
||||
javascriptRequired = Send necesită JavaScript
|
||||
whyJavascript = De ce Send necesită JavaScript?
|
||||
|
|
|
@ -30,9 +30,6 @@ notSupportedOutdatedDetail = К сожалению, эта версия Firefox
|
|||
updateFirefox = Обновить Firefox
|
||||
deletePopupCancel = Отмена
|
||||
deleteButtonHover = Удалить
|
||||
footerLinkLegal = Права
|
||||
footerLinkPrivacy = Приватность
|
||||
footerLinkCookies = Куки
|
||||
passwordTryAgain = Неверный пароль. Попробуйте снова.
|
||||
javascriptRequired = Для Send необходим JavaScript
|
||||
whyJavascript = Почему Send требуется JavaScript?
|
||||
|
|
|
@ -30,9 +30,6 @@ notSupportedOutdatedDetail = Žiaľ, táto verzia Firefoxu nepodporuje webovú t
|
|||
updateFirefox = Aktualizovať Firefox
|
||||
deletePopupCancel = Zrušiť
|
||||
deleteButtonHover = Odstrániť
|
||||
footerLinkLegal = Právne informácie
|
||||
footerLinkPrivacy = Súkromie
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Nesprávne heslo. Skúste to znova.
|
||||
javascriptRequired = Send vyžaduje JavaScript
|
||||
whyJavascript = Prečo Send vyžaduje JavaScript?
|
||||
|
|
|
@ -32,9 +32,6 @@ notSupportedOutdatedDetail = Ta brskalnik žal ne podpira tehnologije, na kateri
|
|||
updateFirefox = Posodobi Firefox
|
||||
deletePopupCancel = Prekliči
|
||||
deleteButtonHover = Izbriši
|
||||
footerLinkLegal = Pravno obvestilo
|
||||
footerLinkPrivacy = Zasebnost
|
||||
footerLinkCookies = Piškotki
|
||||
passwordTryAgain = Napačno geslo. Poskusite znova.
|
||||
javascriptRequired = Send zahteva JavaScript
|
||||
whyJavascript = Zakaj Send zahteva JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Mjerisht, ky version i Firefox-it nuk e mbulon tekn
|
|||
updateFirefox = Përditësojeni Firefox-in
|
||||
deletePopupCancel = Anuloje
|
||||
deleteButtonHover = Fshije
|
||||
footerLinkLegal = Ligjore
|
||||
footerLinkPrivacy = Privatësi
|
||||
footerLinkCookies = Cookies
|
||||
passwordTryAgain = Fjalëkalim i pasaktë. Riprovoni.
|
||||
javascriptRequired = Send lyp JavaScript
|
||||
whyJavascript = Ç’i duhet Send-it JavaScript-i?
|
||||
|
|
|
@ -30,9 +30,6 @@ notSupportedOutdatedDetail = Нажалост, ово издање Firefox-a н
|
|||
updateFirefox = Ажурирај Firefox
|
||||
deletePopupCancel = Откажи
|
||||
deleteButtonHover = Обриши
|
||||
footerLinkLegal = Правни подаци
|
||||
footerLinkPrivacy = Приватност
|
||||
footerLinkCookies = Колачићи
|
||||
passwordTryAgain = Нетачна лозинка. Пробајте поново.
|
||||
javascriptRequired = За Send је потребан JavaScript
|
||||
whyJavascript = Зашто је потребан JavaScript за Send?
|
||||
|
|
|
@ -26,9 +26,6 @@ notSupportedOutdatedDetail = Hanjakal Firefox vérsi ieu teu ngarojong téhnolog
|
|||
updateFirefox = Apdét Firefox
|
||||
deletePopupCancel = Bolay
|
||||
deleteButtonHover = Pupus
|
||||
footerLinkLegal = Légal
|
||||
footerLinkPrivacy = Privasi
|
||||
footerLinkCookies = Réréméh
|
||||
passwordTryAgain = Kecap sandi salah. Pecakan deui.
|
||||
javascriptRequired = Send merlukeun JavaScript
|
||||
whyJavascript = Naha Send merlukeun JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Tyvärr stödjer den här versionen av Firefox inte
|
|||
updateFirefox = Uppdatera Firefox
|
||||
deletePopupCancel = Avbryt
|
||||
deleteButtonHover = Ta bort
|
||||
footerLinkLegal = Juridisk information
|
||||
footerLinkPrivacy = Sekretess
|
||||
footerLinkCookies = Kakor
|
||||
passwordTryAgain = Felaktigt lösenord. Försök igen.
|
||||
javascriptRequired = Send kräver JavaScript
|
||||
whyJavascript = Varför kräver Send JavaScript?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = దురదృష్టవశాత్తు Firef
|
|||
updateFirefox = Firefoxను నవీకరించు
|
||||
deletePopupCancel = రద్దుచేయి
|
||||
deleteButtonHover = తొలగించు
|
||||
footerLinkLegal = చట్టపరమైన
|
||||
footerLinkPrivacy = గోప్యత
|
||||
footerLinkCookies = కుకీలు
|
||||
passwordTryAgain = సరికాని సంకేతపదం. మళ్ళీ ప్రయత్నించండి.
|
||||
javascriptRequired = Sendకి జావాస్క్రిప్టు కావాలి
|
||||
whyJavascript = Sendకి జావాస్క్రిప్టు ఎందుకు కావాలి?
|
||||
|
|
|
@ -26,9 +26,6 @@ notSupportedOutdatedDetail = น่าเสียดายที่ Firefox ร
|
|||
updateFirefox = อัปเดต Firefox
|
||||
deletePopupCancel = ยกเลิก
|
||||
deleteButtonHover = ลบ
|
||||
footerLinkLegal = ข้อกฎหมาย
|
||||
footerLinkPrivacy = ความเป็นส่วนตัว
|
||||
footerLinkCookies = คุกกี้
|
||||
passwordTryAgain = รหัสผ่านไม่ถูกต้อง ลองอีกครั้ง
|
||||
javascriptRequired = Send จำเป็นต้องใช้ JavaScript
|
||||
whyJavascript = ทำไม Send จึงจำเป็นต้องใช้ JavaScript?
|
||||
|
|
|
@ -23,9 +23,6 @@ notSupportedOutdatedDetail = Sa kasamaang palad ang bersyon na ito ng Firefox ay
|
|||
updateFirefox = I-update ang Firefox
|
||||
deletePopupCancel = Kanselahin
|
||||
deleteButtonHover = I-delete
|
||||
footerLinkLegal = Legal
|
||||
footerLinkPrivacy = Privacy
|
||||
footerLinkCookies = Mga cookie
|
||||
passwordTryAgain = Maling password. Subukan muli.
|
||||
javascriptRequired = Nangangailangan ang Send ng JavaScript
|
||||
whyJavascript = Bakit ang Send ay nangangailangan ng JavaScript?
|
||||
|
|
|
@ -24,9 +24,6 @@ notSupportedOutdatedDetail = Kullandığınız Firefox sürümü Send için gere
|
|||
updateFirefox = Firefox’u güncelle
|
||||
deletePopupCancel = Vazgeç
|
||||
deleteButtonHover = Sil
|
||||
footerLinkLegal = Yasal Bilgiler
|
||||
footerLinkPrivacy = Gizlilik
|
||||
footerLinkCookies = Çerezler
|
||||
passwordTryAgain = Yanlış parola. Yeniden deneyin.
|
||||
javascriptRequired = Send için JavaScript gerekir
|
||||
whyJavascript = Send neden JavaScript kullanıyor?
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = Nu unùkuaj Firefox nan gi'iaj sunj ngà sa 'iaj su
|
|||
updateFirefox = Nagi'iaj nakà Firefox
|
||||
deletePopupCancel = Duyichin'
|
||||
deleteButtonHover = Dure'
|
||||
footerLinkLegal = Nuguan' a'nï'ïn
|
||||
footerLinkPrivacy = Sa hùii
|
||||
footerLinkCookies = Nej kôki
|
||||
passwordTryAgain = Sê da'nga' huì dan huin. Ginù huin ñû.
|
||||
javascriptRequired = Ni'ñānj Send JavaScript
|
||||
whyJavascript = Nù huin saj ni'ñānj Send JavaScript rà'aj?
|
||||
|
|
|
@ -30,9 +30,6 @@ notSupportedOutdatedDetail = На жаль, ця версія Firefox не пі
|
|||
updateFirefox = Оновити Firefox
|
||||
deletePopupCancel = Скасувати
|
||||
deleteButtonHover = Видалити
|
||||
footerLinkLegal = Права
|
||||
footerLinkPrivacy = Приватність
|
||||
footerLinkCookies = Куки
|
||||
passwordTryAgain = Невірний пароль. Спробуйте знову.
|
||||
javascriptRequired = Send потребує JavaScript
|
||||
whyJavascript = Чому для Send потрібен JavaScript?
|
||||
|
|
|
@ -26,9 +26,6 @@ notSupportedOutdatedDetail = Thật không may là phiên bản Firefox này kh
|
|||
updateFirefox = Cập nhật Firefox
|
||||
deletePopupCancel = Hủy bỏ
|
||||
deleteButtonHover = Xóa
|
||||
footerLinkLegal = Pháp lý
|
||||
footerLinkPrivacy = Quyền riêng tư
|
||||
footerLinkCookies = Cookie
|
||||
passwordTryAgain = Sai mật khẩu. Vui lòng thử lại.
|
||||
javascriptRequired = Send cần JavaScript
|
||||
whyJavascript = Tại sao Send cần JavaScript?
|
||||
|
|
|
@ -51,13 +51,10 @@ deletePopupCancel =
|
|||
deleteButtonHover =
|
||||
Mú kúrò
|
||||
Parẹ́
|
||||
footerLinkLegal =
|
||||
b’ófin mu
|
||||
n’ílànà òfin
|
||||
footerLinkPrivacy =
|
||||
Ibi ìkọ̀kọ̀
|
||||
Ibi ìpamọ́
|
||||
footerLinkCookies =
|
||||
Cookie
|
||||
Àmì-ẹ̀rọ aránṣẹ́-jíṣẹ́
|
||||
passwordTryAgain =
|
||||
|
|
|
@ -28,9 +28,6 @@ notSupportedOutdatedDetail = ⵙ ⵜⵎⴳⵕⵥⴰ, ⵜⴰⵍⵇⵇⵎⵜ ⴰ
|
|||
updateFirefox = ⵙⴷⵖⵉ ⴼⴰⵢⵔⴼⵓⴽⵙ
|
||||
deletePopupCancel = ⵙⵔ
|
||||
deleteButtonHover = ⴽⴽⵙ
|
||||
footerLinkLegal = ⵓⵙⴹⵉⴼ
|
||||
footerLinkPrivacy = ⵜⵉⵏⵏⵓⵜⵍⴰ
|
||||
footerLinkCookies = ⵉⴽⵓⴽⵉⵜⵏ
|
||||
passwordTryAgain = ⵜⴰⴳⵓⵔⵉ ⵏ ⵓⵣⵔⴰⵢ ⵓⵔ ⵢⵓⵖⵉⴷⵏ. ⴰⵔⵎ ⴷⴰⵖ.
|
||||
javascriptRequired = ⴷⴰ ⵉⵜⵜⴰⵙⵔ ⴼⴰⵢⵔⴼⵓⴽⵙ ⵙⵉⵏⴷ ⵊⴰⴼⴰⵙⴽⵔⵉⴱⵜ
|
||||
whyJavascript = ⵎⴰⵖⴼ ⴷⴰ ⵉⵜⵜⴰⵙⵔ ⴼⴰⵢⵔⴼⵓⴽⵙ ⵙⵉⵏⴷ ⵊⴰⴼⴰⵙⴽⵔⵉⴱⵜ?
|
||||
|
|
|
@ -26,9 +26,6 @@ notSupportedOutdatedDetail = 很可惜,此版本的 Firefox 不支持 Send 所
|
|||
updateFirefox = 更新 Firefox
|
||||
deletePopupCancel = 取消
|
||||
deleteButtonHover = 删除
|
||||
footerLinkLegal = 法律
|
||||
footerLinkPrivacy = 隐私
|
||||
footerLinkCookies = Cookie
|
||||
passwordTryAgain = 密码不正确。请重试。
|
||||
javascriptRequired = Send 需要 JavaScript
|
||||
whyJavascript = 为什么 Send 需要 JavaScript?
|
||||
|
|
|
@ -26,9 +26,6 @@ notSupportedOutdatedDetail = 很可惜,此版本的 Firefox 不支援 Send 所
|
|||
updateFirefox = 更新 Firefox
|
||||
deletePopupCancel = 取消
|
||||
deleteButtonHover = 刪除
|
||||
footerLinkLegal = 法律資訊
|
||||
footerLinkPrivacy = 隱私權
|
||||
footerLinkCookies = Cookie
|
||||
passwordTryAgain = 密碼不正確,請再試一次。
|
||||
javascriptRequired = Send 需要開啟 JavaScript 功能
|
||||
whyJavascript = 為什麼 Send 需要 JavaScript 才能使用?
|
||||
|
|
|
@ -32,7 +32,6 @@ module.exports = function(app, devServer) {
|
|||
if (process.env.ANDROID) {
|
||||
// map all html routes to the android index.html
|
||||
app.get('/', android);
|
||||
app.get('/legal', android);
|
||||
app.get(`/share/:id${ID_REGEX}`, android);
|
||||
app.get('/completed', android);
|
||||
app.get('/preferences', android);
|
||||
|
|
|
@ -36,11 +36,9 @@ module.exports = function(app) {
|
|||
defaultSrc: ["'self'"],
|
||||
connectSrc: [
|
||||
"'self'",
|
||||
config.base_url.replace(/^https:\/\//, 'wss://'),
|
||||
],
|
||||
imgSrc: [
|
||||
"'self'",
|
||||
config.base_url.replace(/^https:\/\//, 'wss://')
|
||||
],
|
||||
imgSrc: ["'self'"],
|
||||
scriptSrc: [
|
||||
"'self'",
|
||||
function(req) {
|
||||
|
@ -90,7 +88,6 @@ module.exports = function(app) {
|
|||
});
|
||||
app.get('/error', language, pages.blank);
|
||||
app.get('/oauth', language, pages.blank);
|
||||
app.get('/legal', language, pages.legal);
|
||||
app.get('/login', language, pages.index);
|
||||
app.get('/app.webmanifest', language, require('./webmanifest'));
|
||||
app.get(`/download/:id${ID_REGEX}`, language, pages.download);
|
||||
|
|
|
@ -49,11 +49,6 @@ module.exports = {
|
|||
);
|
||||
},
|
||||
|
||||
legal: async function(req, res) {
|
||||
const appState = await state(req);
|
||||
res.send(stripEvents(routes().toString('/legal', appState)));
|
||||
},
|
||||
|
||||
notfound: async function(req, res) {
|
||||
const appState = await state(req);
|
||||
res
|
||||
|
|
|
@ -6,7 +6,7 @@ describe('Send homepage', function() {
|
|||
this.retries(2);
|
||||
const homePage = new HomePage();
|
||||
const baseUrl = browser.options['baseUrl'];
|
||||
const footerLinks = ['mozilla', 'legal', 'legal', 'cookies', 'github'];
|
||||
const footerLinks = ['mozilla', 'cookies', 'github'];
|
||||
|
||||
beforeEach(function() {
|
||||
homePage.open();
|
||||
|
|
Loading…
Reference in New Issue