diff --git a/special-pages/pages/special-error/app/components/App.jsx b/special-pages/pages/special-error/app/components/App.jsx
index 39d0f0119..68b19954b 100644
--- a/special-pages/pages/special-error/app/components/App.jsx
+++ b/special-pages/pages/special-error/app/components/App.jsx
@@ -34,10 +34,10 @@ function PageTitle() {
useEffect(() => {
switch (kind) {
case 'malware':
- document.title = t('malwarePageHeading');
+ document.title = t('malwareTabTitle');
break;
case 'phishing':
- document.title = t('phishingPageHeading');
+ document.title = t('phishingTabTitle');
break;
default:
document.title = t('sslPageHeading');
diff --git a/special-pages/pages/special-error/app/components/App.module.css b/special-pages/pages/special-error/app/components/App.module.css
index fc44c7ff3..d3a3fcaeb 100644
--- a/special-pages/pages/special-error/app/components/App.module.css
+++ b/special-pages/pages/special-error/app/components/App.module.css
@@ -14,7 +14,6 @@ body {
top: 0;
left: 0;
-
@media (max-height: 400px) {
padding-top: var(--sp-10);
align-items: flex-start;
diff --git a/special-pages/pages/special-error/app/components/Warning.jsx b/special-pages/pages/special-error/app/components/Warning.jsx
index fee264d1e..7baf28755 100644
--- a/special-pages/pages/special-error/app/components/Warning.jsx
+++ b/special-pages/pages/special-error/app/components/Warning.jsx
@@ -53,7 +53,12 @@ export function WarningHeading() {
return (
-
+
{heading}
diff --git a/special-pages/pages/special-error/app/components/Warning.module.css b/special-pages/pages/special-error/app/components/Warning.module.css
index 01919740d..476ba0a8b 100644
--- a/special-pages/pages/special-error/app/components/Warning.module.css
+++ b/special-pages/pages/special-error/app/components/Warning.module.css
@@ -87,6 +87,7 @@
& .content {
text-align: center;
+ white-space: pre-line; /* Preserve line breaks on all screen sizes */
}
& .buttonContainer {
@@ -117,12 +118,26 @@
}
& .phishing .icon, & .malware .icon {
- background-image: url(../../../../shared/assets/img/icons/Malware-Site-96.svg);
+ background-image: url(../../../../shared/assets/img/icons/Malware-Site-128.svg);
}
- /* Inserts line break before an inline element. Used for the Learn More link in the Warning text */
- & [data-line-break]::before {
- content: ' ';
- display: block;
+ /* Preserves line breaks on smaller screens to avoid orfan words.
+ This is a fallback for browsers that don't support text-wrap: balance */
+ & .title {
+ white-space: pre-line;
+
+ @media (min-width: 600px) {
+ white-space: normal;
+ }
+ }
+}
+
+@supports (text-wrap: balance) {
+ /* Balanced line breaks on title for browsers that support it */
+ [data-platform-name="ios"] {
+ & .title {
+ text-wrap: balance;
+ white-space: normal;
+ }
}
}
\ No newline at end of file
diff --git a/special-pages/pages/special-error/app/hooks/ErrorStrings.jsx b/special-pages/pages/special-error/app/hooks/ErrorStrings.jsx
index f5b0eb5c5..6273feaa0 100644
--- a/special-pages/pages/special-error/app/hooks/ErrorStrings.jsx
+++ b/special-pages/pages/special-error/app/hooks/ErrorStrings.jsx
@@ -27,7 +27,6 @@ const sanitizeURL = (urlString) => {
*/
const helpPageAnchorTagParams = {
- 'data-line-break': true,
href: phishingMalwareHelpPageURL,
target: '_blank',
};
@@ -62,11 +61,11 @@ export function useWarningHeading() {
const { kind } = useErrorData();
if (kind === 'phishing') {
- return t('phishingPageHeading');
+ return t('phishingPageHeading').replace('{newline}', '\n');
}
if (kind === 'malware') {
- return t('malwarePageHeading');
+ return t('malwarePageHeading').replace('{newline}', '\n');
}
if (kind === 'ssl') {
@@ -85,11 +84,13 @@ export function useWarningContent() {
const { kind } = useErrorData();
if (kind === 'phishing') {
- return [];
+ const text = t('phishingWarningText').replace('{newline}', '\n');
+ return [];
}
if (kind === 'malware') {
- return [];
+ const text = t('malwareWarningText').replace('{newline}', '\n');
+ return [];
}
if (kind === 'ssl') {
diff --git a/special-pages/pages/special-error/integration-tests/special-error.js b/special-pages/pages/special-error/integration-tests/special-error.js
index 2fe593caa..65a352607 100644
--- a/special-pages/pages/special-error/integration-tests/special-error.js
+++ b/special-pages/pages/special-error/integration-tests/special-error.js
@@ -150,6 +150,10 @@ export class SpecialErrorPage {
async showsExpiredPage() {
const { page } = this;
+
+ const title = await page.locator('title').textContent();
+ expect(title).toBe('Warning: This site may be insecure');
+
await expect(page.getByText('Warning: This site may be insecure', { exact: true })).toBeVisible();
await expect(
page.getByText(
@@ -174,6 +178,10 @@ export class SpecialErrorPage {
async showsInvalidPage() {
const { page } = this;
+
+ const title = await page.locator('title').textContent();
+ expect(title).toBe('Warning: This site may be insecure');
+
await expect(page.getByText('Warning: This site may be insecure', { exact: true })).toBeVisible();
await expect(
page.getByText(
@@ -193,6 +201,10 @@ export class SpecialErrorPage {
async showsSelfSignedPage() {
const { page } = this;
+
+ const title = await page.locator('title').textContent();
+ expect(title).toBe('Warning: This site may be insecure');
+
await expect(page.getByText('Warning: This site may be insecure', { exact: true })).toBeVisible();
await expect(
page.getByText(
@@ -212,6 +224,10 @@ export class SpecialErrorPage {
async showsWrongHostPage() {
const { page } = this;
+
+ const title = await page.locator('title').textContent();
+ expect(title).toBe('Warning: This site may be insecure');
+
await expect(page.getByText('Warning: This site may be insecure', { exact: true })).toBeVisible();
await expect(
page.getByText(
@@ -231,7 +247,11 @@ export class SpecialErrorPage {
async showsPhishingPage() {
const { page } = this;
- await expect(page.getByText('Warning: This site may put your personal information at risk', { exact: true })).toBeVisible();
+
+ const title = await page.locator('title').textContent();
+ expect(title).toBe('Warning: Security Risk');
+
+ await expect(page.getByText('Warning: This site may be a security risk', { exact: true })).toBeVisible();
await expect(
page.getByText(
'This website may be impersonating a legitimate site in order to trick you into providing personal information, such as passwords or credit card numbers. Learn more',
@@ -249,7 +269,11 @@ export class SpecialErrorPage {
async showsMalwarePage() {
const { page } = this;
- await expect(page.getByText('Warning: This site may put your personal information at risk', { exact: true })).toBeVisible();
+
+ const title = await page.locator('title').textContent();
+ expect(title).toBe('Warning: Security Risk');
+
+ await expect(page.getByText('Warning: This site may be a security risk', { exact: true })).toBeVisible();
await expect(
page.getByText(
'DuckDuckGo blocked this page because it may be distributing malware designed to compromise your device or steal your personal information. Learn more',
diff --git a/special-pages/pages/special-error/public/locales/bg/special-error.json b/special-pages/pages/special-error/public/locales/bg/special-error.json
index d591cc186..a53c7f7f8 100644
--- a/special-pages/pages/special-error/public/locales/bg/special-error.json
+++ b/special-pages/pages/special-error/public/locales/bg/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Предупреждение: Този сайт може да изложи личната ви информация на риск",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Предупреждение: Този сайт може да представлява{newline}риск за сигурността",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Предупреждение: Риск за сигурността",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo блокира тази страница, защото тя може да разпространява зловреден софтуер, който да компрометира устройството ви или да открадне личната ви информация. Научете повече",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo блокира тази страница, защото тя може да разпространява зловреден софтуер, който да компрометира устройството ви или да открадне личната ви информация.{newline}Научете повече",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Ако смятате, че този уебсайт е безопасен, можете да съобщите за грешка. Все пак можете да посетите уебсайта на свой собствен риск.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Предупреждение: Този сайт може да изложи личната ви информация на риск",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Предупреждение: Този сайт може да представлява{newline}риск за сигурността",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Предупреждение: Риск за сигурността",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Този уебсайт може да имитира легитимен сайт, за да ви подмами да предоставите лична информация, като например пароли или номера на кредитни карти. Научете повече",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Този уебсайт може да имитира легитимен сайт, за да ви подмами да предоставите лична информация, като например пароли или номера на кредитни карти.{newline}Научете повече",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Ако смятате, че този уебсайт е безопасен, можете да съобщите за грешка. Все пак можете да посетите уебсайта на свой собствен риск.",
diff --git a/special-pages/pages/special-error/public/locales/cs/special-error.json b/special-pages/pages/special-error/public/locales/cs/special-error.json
index 802bf23c2..eebb73262 100644
--- a/special-pages/pages/special-error/public/locales/cs/special-error.json
+++ b/special-pages/pages/special-error/public/locales/cs/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Pozor: Tahle stránka může vystavit tvoje osobní údaje riziku",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Pozor: Tahle stránka může představovat{newline}bezpečnostní riziko",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Pozor: Bezpečnostní riziko",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "Služba DuckDuckGo tuhle stránku zablokovala, protože může šířit malware, jehož cílem je narušit zabezpečení zařízení nebo odcizit osobní údaje. Přečti si další informace.",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "Služba DuckDuckGo tuhle stránku zablokovala, protože může šířit malware, jehož cílem je narušit zabezpečení zařízení nebo odcizit osobní údaje.{newline}Přečti si další informace.",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Pokud věříš, že je tahle stránka bezpečná, můžeš nahlásit chybu. Můžeš taky stránku navštívit na vlastní nebezpečí.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Pozor: Tahle stránka může vystavit tvoje osobní údaje riziku",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Pozor: Tahle stránka může představovat{newline}bezpečnostní riziko",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Pozor: Bezpečnostní riziko",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Tahle webová stránka se může vydávat za legitimní web, aby tě přiměla k poskytnutí osobních údajů, jako jsou hesla nebo čísla kreditních karet. Přečti si další informace",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Tahle webová stránka se může vydávat za legitimní web, aby tě přiměla k poskytnutí osobních údajů, jako jsou hesla nebo čísla platebních karet.{newline}Přečti si další informace.",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Pokud věříš, že je tahle stránka bezpečná, můžeš nahlásit chybu. Můžeš taky stránku navštívit na vlastní nebezpečí.",
diff --git a/special-pages/pages/special-error/public/locales/da/special-error.json b/special-pages/pages/special-error/public/locales/da/special-error.json
index b8656c43c..86f171eab 100644
--- a/special-pages/pages/special-error/public/locales/da/special-error.json
+++ b/special-pages/pages/special-error/public/locales/da/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Advarsel: Denne side kan udgøre en risiko for dine personlige oplysninger",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Advarsel: Dette websted kan udgøre en{newline}sikkerhedsrisiko",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Advarsel: Sikkerhedsrisiko",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo har blokeret denne side, fordi den muligvis distribuerer malware, der er designet til at kompromittere din enhed eller stjæle dine personlige oplysninger. Få mere at vide",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo har blokeret denne side, fordi den muligvis distribuerer malware, der er designet til at kompromittere din enhed eller stjæle dine personlige oplysninger.{newline}Få mere at vide",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Hvis du mener, at dette websted er sikkert, kan du anmelde en fejl. Du kan stadig besøge webstedet på eget ansvar.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Advarsel: Denne side kan udgøre en risiko for dine personlige oplysninger",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Advarsel: Dette websted kan udgøre en{newline}sikkerhedsrisiko",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Advarsel: Sikkerhedsrisiko",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Dette websted efterligner muligvis et legitimt websted for at narre dig til at give personlige oplysninger, såsom adgangskoder eller kreditkortnumre. Få mere at vide",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Dette websted efterligner muligvis et legitimt websted for at narre dig til at give personlige oplysninger, såsom adgangskoder eller kreditkortnumre.{newline}Få mere at vide",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Hvis du mener, at dette websted er sikkert, kan du anmelde en fejl. Du kan stadig besøge webstedet på eget ansvar.",
diff --git a/special-pages/pages/special-error/public/locales/de/special-error.json b/special-pages/pages/special-error/public/locales/de/special-error.json
index cc69be59e..690490aec 100644
--- a/special-pages/pages/special-error/public/locales/de/special-error.json
+++ b/special-pages/pages/special-error/public/locales/de/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Warnung: Diese Seite könnte deine persönlichen Daten gefährden",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Warnung: Diese Website stellt möglicherweise ein{newline}Sicherheitsrisiko dar",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Warnung: Sicherheitsrisiko",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo hat diese Seite blockiert, weil sie möglicherweise Malware verbreitet, die darauf abzielt, dein Gerät zu kompromittieren oder deine persönlichen Daten zu stehlen. Mehr erfahren",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo hat diese Seite blockiert, weil sie möglicherweise Malware verbreitet, die darauf abzielt, dein Gerät zu kompromittieren oder deine persönlichen Daten zu stehlen.{newline}Mehr erfahren",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Wenn du glaubst, dass diese Website sicher ist, kannst du einen Fehler melden. Du kannst die Website weiterhin auf eigenes Risiko besuchen.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Warnung: Diese Seite könnte deine persönlichen Daten gefährden",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Warnung: Diese Website stellt möglicherweise ein{newline}Sicherheitsrisiko dar",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Warnung: Sicherheitsrisiko",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Diese Website gibt sich möglicherweise als legitime Website aus, um dich dazu zu verleiten, personenbezogene Daten wie Passwörter oder Kreditkartennummern preiszugeben. Mehr erfahren",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Diese Website gibt sich möglicherweise als legitime Website aus, um dich dazu zu verleiten, personenbezogene Daten wie Passwörter oder Kreditkartennummern preiszugeben.{newline}Mehr erfahren",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Wenn du glaubst, dass diese Website sicher ist, kannst du einen Fehler melden. Du kannst die Website weiterhin auf eigenes Risiko besuchen.",
diff --git a/special-pages/pages/special-error/public/locales/el/special-error.json b/special-pages/pages/special-error/public/locales/el/special-error.json
index f369d47e5..002527f32 100644
--- a/special-pages/pages/special-error/public/locales/el/special-error.json
+++ b/special-pages/pages/special-error/public/locales/el/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Προειδοποίηση: Αυτός ο ιστότοπος μπορεί να θέσει σε κίνδυνο τα προσωπικά στοιχεία σας",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Προειδοποίηση: Αυτός ο ιστότοπος μπορεί να είναι{newline}επικίνδυνος για την ασφάλεια",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Προειδοποίηση: Κίνδυνος για την ασφάλεια",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "Το DuckDuckGo μπλόκαρε αυτήν τη σελίδα επειδή μπορεί να διανέμει κακόβουλο λογισμικό, το οποίο έχει σχεδιαστεί για να θέσει σε κίνδυνο τη συσκευή σας ή να υποκλέψει τα προσωπικά στοιχεία σας. Μάθετε περισσότερα",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "Το DuckDuckGo μπλόκαρε αυτήν τη σελίδα επειδή μπορεί να διανέμει κακόβουλο λογισμικό, το οποίο έχει σχεδιαστεί για να θέσει σε κίνδυνο τη συσκευή σας ή να υποκλέψει τα προσωπικά στοιχεία σας.{newline}Μάθετε περισσότερα",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Εάν πιστεύετε ότι αυτός ο ιστότοπος είναι ασφαλής, μπορείτε να αναφέρετε ένα σφάλμα. Μπορείτε ακόμα να επισκεφθείτε τον ιστότοπο, με δική σας ευθύνη.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Προειδοποίηση: Αυτός ο ιστότοπος μπορεί να θέσει σε κίνδυνο τα προσωπικά στοιχεία σας",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Προειδοποίηση: Αυτός ο ιστότοπος μπορεί να είναι{newline}επικίνδυνος για την ασφάλεια",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Προειδοποίηση: Κίνδυνος για την ασφάλεια",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Ο ιστότοπος αυτός μπορεί να υποδύεται έναν νόμιμο ιστότοπο προκειμένου να σας εξαπατήσει ώστε να παράσχετε προσωπικές πληροφορίες, όπως κωδικούς πρόσβασης ή αριθμούς πιστωτικών καρτών. Μάθετε περισσότερα",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Ο ιστότοπος αυτός μπορεί να υποδύεται έναν νόμιμο ιστότοπο προκειμένου να σας εξαπατήσει ώστε να παράσχετε προσωπικές πληροφορίες, όπως κωδικούς πρόσβασης ή αριθμούς πιστωτικών καρτών.{newline}Μάθετε περισσότερα",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Εάν πιστεύετε ότι αυτός ο ιστότοπος είναι ασφαλής, μπορείτε να αναφέρετε ένα σφάλμα. Μπορείτε ακόμα να επισκεφθείτε τον ιστότοπο, με δική σας ευθύνη.",
diff --git a/special-pages/pages/special-error/public/locales/en/special-error.json b/special-pages/pages/special-error/public/locales/en/special-error.json
index c59c9bd93..4fe0536dc 100644
--- a/special-pages/pages/special-error/public/locales/en/special-error.json
+++ b/special-pages/pages/special-error/public/locales/en/special-error.json
@@ -26,24 +26,32 @@
"note": "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading": {
- "title": "Warning: This site may put your personal information at risk",
- "note": "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title": "Warning: This site may be a{newline}security risk",
+ "note": "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle": {
+ "title": "Warning: Security Risk",
+ "note": "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText": {
- "title": "DuckDuckGo blocked this page because it may be distributing malware designed to compromise your device or steal your personal information. Learn more",
- "note": "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title": "DuckDuckGo blocked this page because it may be distributing malware designed to compromise your device or steal your personal information.{newline}Learn more",
+ "note": "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading": {
"title": "If you believe this website is safe, you can report an error. You can still visit the website at your own risk.",
"note": "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading": {
- "title": "Warning: This site may put your personal information at risk",
- "note": "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title": "Warning: This site may be a{newline}security risk",
+ "note": "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle": {
+ "title": "Warning: Security Risk",
+ "note": "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText": {
- "title": "This website may be impersonating a legitimate site in order to trick you into providing personal information, such as passwords or credit card numbers. Learn more",
- "note": "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title": "This website may be impersonating a legitimate site in order to trick you into providing personal information, such as passwords or credit card numbers.{newline}Learn more",
+ "note": "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading": {
"title": "If you believe this website is safe, you can report an error. You can still visit the website at your own risk.",
diff --git a/special-pages/pages/special-error/public/locales/es/special-error.json b/special-pages/pages/special-error/public/locales/es/special-error.json
index f06a44345..569d02826 100644
--- a/special-pages/pages/special-error/public/locales/es/special-error.json
+++ b/special-pages/pages/special-error/public/locales/es/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Advertencia: este sitio puede poner en riesgo tu información personal",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Advertencia: este sitio puede suponer un riesgo para la seguridad{newline}",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Advertencia: riesgo de seguridad",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo ha bloqueado esta página porque podría estar distribuyendo malware diseñado para comprometer tu dispositivo o robar tu información personal. Más información",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo ha bloqueado esta página porque podría estar distribuyendo malware diseñado para comprometer tu dispositivo o robar tu información personal.{newline}Más información",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Si crees que este sitio web es seguro, puedes informar de un error. Puedes seguir visitando el sitio web por tu cuenta y riesgo.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Advertencia: este sitio puede poner en riesgo tu información personal",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Advertencia: este sitio puede suponer un{newline}riesgo para la seguridad",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Advertencia: riesgo de seguridad",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Este sitio web puede hacerse pasar por un sitio legítimo con el fin de engañarte para que proporciones información personal, como contraseñas o números de tarjetas de crédito. Más información",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Este sitio web podría estar haciéndose pasar por un sitio legítimo con el fin de engañarte para que proporciones información personal, como contraseñas o números de tarjetas de crédito.{newline}Más información",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Si crees que este sitio web es seguro, puedes informar de un error. Puedes seguir visitando el sitio web por tu cuenta y riesgo.",
diff --git a/special-pages/pages/special-error/public/locales/et/special-error.json b/special-pages/pages/special-error/public/locales/et/special-error.json
index 8b958778b..4f7577f97 100644
--- a/special-pages/pages/special-error/public/locales/et/special-error.json
+++ b/special-pages/pages/special-error/public/locales/et/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Hoiatus! See sait võib teie isikuandmed ohtu seada",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Hoiatus: see sait võib olla{newline}turvaoht",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Hoiatus: turvaroht",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo blokeeris selle saidi, kuna see võib levitada pahavara, mis on loodud teie seadme kahjustamiseks või teie isikuandmete varastamiseks. Vaata lähemalt",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo blokeeris selle saidi, kuna see võib levitada pahavara, mis on loodud teie seadme kahjustamiseks või teie isikuandmete varastamiseks.{newline}Vaata lähemalt",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Kui arvate, et see veebisait on turvaline, võite teatada veast. Võite siiski külastada veebisaiti omal vastutusel.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Hoiatus! See sait võib teie isikuandmed ohtu seada",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Hoiatus: see sait võib olla{newline}turvaoht",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Hoiatus: turvaoht",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "See veebisait võib imiteerida seaduslikku veebisaiti, et sinult välja petta isiklikke andmeid, näiteks paroole või krediitkaardi numbreid. Vaata lähemalt",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "See veebisait võib imiteerida seaduslikku veebisaiti, et teilt isiklikke andmeid välja petta, näiteks paroole või krediitkaardi numbreid.{newline}Vaata lähemalt",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Kui arvate, et see veebisait on turvaline, võite teatada veast. Võite siiski külastada veebisaiti omal vastutusel.",
diff --git a/special-pages/pages/special-error/public/locales/fi/special-error.json b/special-pages/pages/special-error/public/locales/fi/special-error.json
index bd91d33d5..a8c4e70a5 100644
--- a/special-pages/pages/special-error/public/locales/fi/special-error.json
+++ b/special-pages/pages/special-error/public/locales/fi/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Varoitus: Tämä sivusto saattaa vaarantaa henkilötietosi",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Varoitus: Tämä sivusto saattaa olla{newline}tietoturvariski",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Varoitus: Tietoturvariski",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo esti tämän sivun, koska se saattaa levittää haittaohjelmia, jotka voivat vaarantaa laitteesi tai varastaa henkilökohtaisia tietojasi. Lue lisää",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo esti tämän sivun, koska se saattaa levittää haittaohjelmia, jotka voivat vaarantaa laitteesi tai varastaa henkilökohtaisia tietojasi.{newline}Lue lisää",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Jos uskot, että tämä verkkosivusto on turvallinen, voit ilmoittaa virheestä. Voit silti vierailla verkkosivustolla omalla vastuullasi.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Varoitus: Tämä sivusto saattaa vaarantaa henkilötietosi",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Varoitus: Tämä sivusto saattaa olla{newline}tietoturvariski",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Varoitus: Tietoturvariski",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Tämä verkkosivusto saattaa esiintyä laillisena sivustona huijatakseen sinua antamaan henkilötietoja, kuten salasanan tai luottokortin numeron. Lue lisää",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Tämä verkkosivusto saattaa esiintyä laillisena sivustona huijatakseen sinua antamaan henkilökohtaisia tietoja, kuten salasanan tai luottokortin numeron.{newline}Lue lisää",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Jos uskot, että tämä verkkosivusto on turvallinen, voit ilmoittaa virheestä. Voit silti vierailla verkkosivustolla omalla vastuullasi.",
diff --git a/special-pages/pages/special-error/public/locales/fr/special-error.json b/special-pages/pages/special-error/public/locales/fr/special-error.json
index 715770e79..c8e8c9ec5 100644
--- a/special-pages/pages/special-error/public/locales/fr/special-error.json
+++ b/special-pages/pages/special-error/public/locales/fr/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Attention : ce site peut faire courir un risque à vos informations personnelles",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Avertissement : ce site peut présenter un risque pour la{newline}sécurité",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Avertissement : risque de sécurité",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo a bloqué cette page car elle pourrait diffuser des logiciels malveillants conçus pour compromettre votre appareil ou voler vos informations personnelles. En savoir plus",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo a bloqué cette page car elle pourrait diffuser des logiciels malveillants conçus pour compromettre votre appareil ou voler vos informations personnelles.{newline}En savoir plus",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Si vous pensez que ce site Web est sûr, vous pouvez signaler une erreur. La visite du site Web se fera à vos risques et périls.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Attention : ce site peut faire courir un risque à vos informations personnelles",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Avertissement : ce site peut présenter un risque pour la{newline}sécurité",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Avertissement : risque de sécurité",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Ce site Web se fait peut-être passer pour un site légitime afin de vous inciter à communiquer des informations personnelles, telles que des mots de passe ou des numéros de carte bancaire. En savoir plus",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Ce site Web se fait peut-être passer pour un site légitime afin de vous inciter à communiquer des informations personnelles, telles que des mots de passe ou des numéros de carte bancaire.{newline}En savoir plus",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Si vous pensez que ce site Web est sûr, vous pouvez signaler une erreur. La visite du site Web se fera à vos risques et périls.",
diff --git a/special-pages/pages/special-error/public/locales/hr/special-error.json b/special-pages/pages/special-error/public/locales/hr/special-error.json
index fa75302f6..a962b1ab7 100644
--- a/special-pages/pages/special-error/public/locales/hr/special-error.json
+++ b/special-pages/pages/special-error/public/locales/hr/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Upozorenje: ovo web-mjesto može ugroziti tvoje osobne podatke",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Upozorenje: ovo web-mjesto može predstavljati{newline}sigurnosni rizik",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Upozorenje: sigurnosni rizik",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo je blokirao ovu stranicu jer možda širi zlonamjerni softver izrađen da ugrozi tvoj uređaj ili ukrade tvoje osobne podatke. Saznaj više",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo je blokirao ovo web-mjesto jer možda širi zlonamjerni softver izrađen da ugrozi tvoj uređaj ili ukrade tvoje osobne podatke.{newline}Saznaj više",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Ako vjeruješ da je ovo web-mjesto sigurno, možeš prijaviti pogrešku. Još uvijek možeš posjetiti web-mjesto na vlastitu odgovornost.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Upozorenje: ovo web-mjesto može ugroziti tvoje osobne podatke",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Upozorenje: ovo web-mjesto može predstavljati{newline}sigurnosni rizik",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Upozorenje: sigurnosni rizik",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Ovo web-mjesto može se lažno predstavljati kao legitimno web-mjesto kako bi te prevarilo da uneseš svoje osobne podatke, kao što su lozinke ili brojevi kreditnih kartica. Saznaj više",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Ovo web-mjesto možda se lažno predstavlja kao legitimno web-mjesto kako bi te prevarilo da uneseš svoje osobne podatke, kao što su lozinke ili brojevi kreditnih kartica.{newline}Saznaj više",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Ako vjeruješ da je ovo web-mjesto sigurno, možeš prijaviti pogrešku. Još uvijek možeš posjetiti web-mjesto na vlastitu odgovornost.",
diff --git a/special-pages/pages/special-error/public/locales/hu/special-error.json b/special-pages/pages/special-error/public/locales/hu/special-error.json
index f0eebfaad..9d57407e0 100644
--- a/special-pages/pages/special-error/public/locales/hu/special-error.json
+++ b/special-pages/pages/special-error/public/locales/hu/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Figyelmeztetés: Ez a webhely veszélyt jelenthet a személyes adataidra",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Figyelmeztetés: Lehet, hogy ez a webhely{newline}biztonsági kockázatot jelent",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Figyelmeztetés: Biztonsági kockázat",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "A DuckDuckGo blokkolta ezt az oldalt, mert lehetséges, hogy olyan rosszindulatú programokat terjeszt, amelyek veszélyeztethetik az eszközöd biztonságát vagy ellophatják a személyes adataidat. További részletek",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "A DuckDuckGo blokkolta ezt az oldalt, mert lehetséges, hogy olyan rosszindulatú programokat terjeszt, amelyek veszélyeztethetik az eszközöd biztonságát vagy ellophatják a személyes adataidat.{newline}További részletek",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Ha úgy gondolod, hogy ez a weboldal biztonságos, tegyél hibabejelentést. A weboldalt továbbra is saját felelősségedre látogathatod.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Figyelmeztetés: Ez a webhely veszélyt jelenthet a személyes adataidra",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Figyelem: A webhely{newline}biztonsági kockázatot jelenthet",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Figyelem: Biztonsági kockázat",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Előfordulhat, hogy ez a webhely legitim webhelynek adja ki magát, hogy személyes adatok, például jelszavak vagy hitelkártyaszámok megadására vegyen rá. További részletek",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Előfordulhat, hogy ez a webhely legitim webhelynek adja ki magát, hogy személyes adatok, például jelszavak vagy hitelkártyaszámok megadására vegyen rá.{newline}További részletek",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Ha úgy gondolod, hogy ez a weboldal biztonságos, tegyél hibabejelentést. A weboldalt továbbra is saját felelősségedre látogathatod.",
diff --git a/special-pages/pages/special-error/public/locales/it/special-error.json b/special-pages/pages/special-error/public/locales/it/special-error.json
index 5215ec368..2f10fbeb4 100644
--- a/special-pages/pages/special-error/public/locales/it/special-error.json
+++ b/special-pages/pages/special-error/public/locales/it/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Attenzione: questo sito potrebbe mettere a rischio i tuoi dati personali",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Attenzione: questo sito potrebbe essere un{newline}rischio per la sicurezza",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Attenzione: rischio per la sicurezza",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo ha bloccato questa pagina perché potrebbe distribuire malware progettato per compromettere il tuo dispositivo o rubare le tue informazioni personali. Ulteriori informazioni",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo ha bloccato questa pagina perché potrebbe distribuire malware progettato per compromettere il tuo dispositivo o rubare le tue informazioni personali.{newline}Scopri di più",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Se ritieni che questo sito web sia sicuro, puoi segnalare un errore. Puoi comunque visitare il sito web a tuo rischio e pericolo.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Attenzione: questo sito potrebbe mettere a rischio i tuoi dati personali",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Attenzione: questo sito potrebbe rappresentare un{newline}rischio per la sicurezza",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Attenzione: rischio per la sicurezza",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Questo sito web potrebbe imitare un sito legittimo per ingannarti e indurti a rivelare informazioni personali, come password o numeri di carta di credito. Ulteriori informazioni",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Questo sito web potrebbe imitare un sito legittimo per ingannarti e indurti a rivelare informazioni personali, come password o numeri di carta di credito.{newline}Ulteriori informazioni",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Se ritieni che questo sito web sia sicuro, puoi segnalare un errore. Puoi comunque visitare il sito web a tuo rischio e pericolo.",
diff --git a/special-pages/pages/special-error/public/locales/lt/special-error.json b/special-pages/pages/special-error/public/locales/lt/special-error.json
index 764faad01..f601a0df9 100644
--- a/special-pages/pages/special-error/public/locales/lt/special-error.json
+++ b/special-pages/pages/special-error/public/locales/lt/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Įspėjimas: ši svetainė gali kelti pavojų jūsų asmeninei informacijai",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Įspėjimas: ši svetainė gali kelti{newline}saugumo riziką",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Įspėjimas: saugumo rizika",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "„DuckDuckGo“ užblokavo šį puslapį, nes jame gali būti platinama kenkėjiška programinė įranga, kuria siekiama pakenkti jūsų įrenginiui arba pavogti jūsų asmeninę informaciją. Sužinokite daugiau",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "„DuckDuckGo“ užblokavo šį puslapį, nes jame gali būti platinama kenkėjiška programinė įranga, kuria siekiama pakenkti jūsų įrenginiui arba pavogti jūsų asmeninę informaciją.{newline}Sužinokite daugiau",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Jei manote, kad ši svetainė yra saugi, galite pranešti apie klaidą. Vis dar galite apsilankyti svetainėje savo rizika.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Įspėjimas: ši svetainė gali kelti pavojų jūsų asmeninei informacijai",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Įspėjimas: ši svetainė gali kelti{newline}saugumo riziką",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Įspėjimas: saugumo rizika",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Ši svetainė gali apsimesti teisėta svetaine, siekiant apgauti jus pateikti asmeninę informaciją, pvz., slaptažodžius ar kredito kortelių numerius. Sužinokite daugiau",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Ši svetainė gali apsimesti teisėta svetaine, siekiant apgauti jus pateikti asmeninę informaciją, pvz., slaptažodžius ar kredito kortelių numerius.{newline}Sužinokite daugiau",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Jei manote, kad ši svetainė yra saugi, galite pranešti apie klaidą. Vis dar galite apsilankyti svetainėje savo rizika.",
diff --git a/special-pages/pages/special-error/public/locales/lv/special-error.json b/special-pages/pages/special-error/public/locales/lv/special-error.json
index b8ea368d1..1eba697b9 100644
--- a/special-pages/pages/special-error/public/locales/lv/special-error.json
+++ b/special-pages/pages/special-error/public/locales/lv/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Brīdinājums: Šī vietne var apdraudēt tavu personisko informāciju.",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Brīdinājums: šī vietne var būt{newline}risks tavai drošībai",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Brīdinājums: Drošības risks",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo bloķēja šo lapu, jo tajā, iespējams, tiek izplatīta ļaunprātīga programmatūra, kas paredzēta, lai apdraudētu tavu ierīci vai nozagtu tavu personisko informāciju. Uzzināt vairāk",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo bloķēja šo lapu, jo tajā, iespējams, tiek izplatīta ļaunprātīga programmatūra, kas paredzēta, lai apdraudētu tavu ierīci vai nozagtu tavu personisko informāciju.{newline}Uzzini vairāk",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Ja uzskati, ka šī vietne ir droša, vari ziņot par kļūdu. Tu joprojām vari apmeklēt šo vietni, apzinoties savu risku.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Brīdinājums: Šī vietne var apdraudēt tavu personisko informāciju",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Brīdinājums: šī vietne iespējama ar {newline}drošības risku",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Brīdinājums: Drošības risks",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Iespējams, ka šī vietne uzdodas par likumīgu vietni, lai tevi maldinātu sniegt personisku informāciju, piemēram, paroles vai kredītkartes numurus. Uzzināt vairāk",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Iespējams, ka šī vietne uzdodas par likumīgu vietni, lai tevi maldinātu un izvilinātu personisku informāciju, piemēram, paroles vai kredītkartes numurus.{newline}Uzzini vairāk",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Ja uzskati, ka šī vietne ir droša, vari ziņot par kļūdu. Tu joprojām vari apmeklēt šo vietni, apzinoties savu risku.",
diff --git a/special-pages/pages/special-error/public/locales/nb/special-error.json b/special-pages/pages/special-error/public/locales/nb/special-error.json
index 7581dc850..a0f74d18b 100644
--- a/special-pages/pages/special-error/public/locales/nb/special-error.json
+++ b/special-pages/pages/special-error/public/locales/nb/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Advarsel: Dette nettstedet kan sette personopplysningene dine i fare",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Advarsel: Dette nettstedet kan utgjøre en{newline}sikkerhetsrisiko",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Advarsel: sikkerhetsrisiko",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo blokkerte denne siden fordi det er mulig at den distribuerer skadelig programvare som er laget for å kompromittere enheten din eller stjele personopplysningene dine. Finn ut mer",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo blokkerte denne siden fordi det er mulig at den distribuerer skadelig programvare som er laget for å kompromittere enheten din eller stjele personopplysningene dine.{newline}Finn ut mer",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Hvis du mener at dette nettstedet er trygt, kan du rapportere en feil. Du kan fortsatt besøke nettstedet på egen risiko.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Advarsel: Dette nettstedet kan sette personopplysningene dine i fare",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Advarsel: Dette nettstedet kan utgjøre{newline}en sikkerhetsrisiko",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Advarsel: sikkerhetsrisiko",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Dette nettstedet utgir seg muligens for å være et legitimt nettsted for å lure deg til å oppgi personopplysninger, som passord eller kredittkortnumre. Finn ut mer",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Det er mulig at dette nettstedet utgir seg for å være et legitimt nettsted for å lure deg til å oppgi personopplysninger, som passord eller kredittkortnumre.{newline}Finn ut mer",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Hvis du mener at dette nettstedet er trygt, kan du rapportere en feil. Du kan besøke nettstedet på egen risiko.",
diff --git a/special-pages/pages/special-error/public/locales/nl/special-error.json b/special-pages/pages/special-error/public/locales/nl/special-error.json
index 5d7db69c1..76b47ef4e 100644
--- a/special-pages/pages/special-error/public/locales/nl/special-error.json
+++ b/special-pages/pages/special-error/public/locales/nl/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Opgelet: Deze site vormt mogelijk een risico voor je persoonlijke gegevens",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Waarschuwing: Deze website is mogelijk een{newline}veiligheidsrisico",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Waarschuwing: veiligheidsrisico",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo heeft deze pagina geblokkeerd omdat deze mogelijk malware verspreidt om je apparaat te beschadigen of je persoonlijke gegevens te stelen. Meer informatie",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo heeft deze pagina geblokkeerd omdat deze mogelijk malware verspreidt om je apparaat te beschadigen of je persoonlijke gegevens te stelen.{newline}Meer informatie",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Je kunt een fout melden als je denkt dat deze website veilig is. Je kunt de website nog steeds bezoeken op eigen risico.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Opgelet: deze site vormt mogelijk een risico voor je persoonlijke gegevens",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Waarschuwing: deze website is mogelijk een{newline}veiligheidsrisico",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Waarschuwing: veiligheidsrisico",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Deze website kan zich voordoen als een legitieme site om je te verleiden tot het verstrekken van persoonlijke informatie, zoals wachtwoorden of creditcardnummers. Meer informatie",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Deze website kan zich voordoen als een legitieme site om je aan te zetten tot het verstrekken van persoonlijke informatie, zoals wachtwoorden of creditcardnummers.{newline}Meer informatie",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Je kunt een fout melden als je denkt dat deze website veilig is. Je kunt de website nog steeds bezoeken op eigen risico.",
diff --git a/special-pages/pages/special-error/public/locales/pl/special-error.json b/special-pages/pages/special-error/public/locales/pl/special-error.json
index 9fde3b89a..54d3911de 100644
--- a/special-pages/pages/special-error/public/locales/pl/special-error.json
+++ b/special-pages/pages/special-error/public/locales/pl/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Ostrzeżenie: ta strona może narazić Twoje dane osobowe na ryzyko",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Ostrzeżenie: ta witryna może stanowić{newline}zagrożenie bezpieczeństwa",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Ostrzeżenie: Zagrożenie bezpieczeństwa",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "Ta strona została zablokowana przez DuckDuckGo, ponieważ może rozpowszechniać złośliwe oprogramowanie, którego celem jest naruszenie bezpieczeństwa urządzenia lub kradzież danych osobowych. Dowiedz się więcej",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "Ta strona została zablokowana przez DuckDuckGo, ponieważ może rozpowszechniać złośliwe oprogramowanie, którego celem jest naruszenie bezpieczeństwa urządzenia lub kradzież danych osobowych.{newline}Dowiedz się więcej",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Jeśli uważasz, że ta strona jest bezpieczna, możesz zgłosić błąd. Możesz odwiedzić tę stronę internetową na własne ryzyko.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Ostrzeżenie: ta strona może narazić Twoje dane osobowe na ryzyko",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Ostrzeżenie: ta witryna może stanowić{newline}zagrożenie dla bezpieczeństwa",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Ostrzeżenie: Zagrożenie bezpieczeństwa",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Ta witryna może podszywać się pod legalną witrynę w celu nakłonienia użytkownika do podania danych osobowych, takich jak hasła lub numery kart kredytowych. Dowiedz się więcej",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Ta witryna może podszywać się pod legalną witrynę w celu nakłonienia użytkownika do podania danych osobowych, takich jak hasła lub numery kart kredytowych.{newline}Dowiedz się więcej",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Jeśli uważasz, że ta strona jest bezpieczna, możesz zgłosić błąd. Możesz odwiedzić tę stronę internetową na własne ryzyko.",
diff --git a/special-pages/pages/special-error/public/locales/pt/special-error.json b/special-pages/pages/special-error/public/locales/pt/special-error.json
index 05fd1676f..eb75f3cba 100644
--- a/special-pages/pages/special-error/public/locales/pt/special-error.json
+++ b/special-pages/pages/special-error/public/locales/pt/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Aviso: este site pode pôr em risco as tuas informações pessoais",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Aviso: Este site pode ser um{newline}risco para a segurança",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Aviso: Risco para a segurança",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "O DuckDuckGo bloqueou esta página porque pode estar a distribuir malware projetado para comprometer o teu dispositivo ou roubar as tuas informações pessoais. Sabe mais",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "O DuckDuckGo bloqueou esta página porque pode estar a distribuir malware projetado para comprometer o teu dispositivo ou roubar as tuas informações pessoais.{newline}Sabe mais",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Se considerares que este site é seguro, podes denunciar um erro. Mesmo assim, podes visitar o site por tua conta e risco.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Aviso: este site pode pôr em risco as tuas informações pessoais",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Aviso: Este site pode ser um{newline}risco para a segurança",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Aviso: Risco para a segurança",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Este site pode estar a fazer-se passar por um site legítimo para te enganar a fornecer informações pessoais, como palavras-passe ou números de cartão de crédito. Sabe mais",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Este site pode estar a fazer-se passar por um site legítimo para te enganar e levar a fornecer informações pessoais, como palavras-passe ou números de cartão de crédito.{newline}Sabe mais",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Se considerares que este site é seguro, podes denunciar um erro. Mesmo assim, podes visitar o site por tua conta e risco.",
diff --git a/special-pages/pages/special-error/public/locales/ro/special-error.json b/special-pages/pages/special-error/public/locales/ro/special-error.json
index 6bb2b74b8..2b3e6f7f5 100644
--- a/special-pages/pages/special-error/public/locales/ro/special-error.json
+++ b/special-pages/pages/special-error/public/locales/ro/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Avertizare: acest site ar putea pune în pericol informațiile tale personale",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Avertizare: acest site ar putea prezenta un{newline}risc de securitate",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Avertizare: risc de securitate",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo a blocat această pagină deoarece este posibil să distribuie programe rău intenționate, menite să-ți compromită dispozitivul sau să-ți fure datele cu caracter personal. Află mai multe",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo a blocat această pagină deoarece este posibil să distribuie programe rău intenționate, menite să-ți compromită dispozitivul sau să-ți sustragă informații personale.{newline}Află mai multe",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Dacă crezi că acest site este sigur, poți să raportezi o eroare. Poți vizita în continuare site-ul pe propriul risc.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Avertizare: acest site ți-ar putea pune în pericol datele cu caracter personal",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Atenție: acest site ar putea prezenta un{newline}risc de securitate",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Atenție: risc de securitate",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Acest site poate imita un site legitim pentru a te induce în eroare să furnizezi informații personale, cum ar fi parole sau numere de carduri de credit. Află mai multe",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Acest site poate imita un site legitim pentru a te induce în eroare să furnizezi informații personale, cum ar fi parole sau numere de carduri de credit.{newline}Află mai multe",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Dacă crezi că acest site este sigur, poți să raportezi o eroare. Poți vizita în continuare site-ul pe propriul risc.",
diff --git a/special-pages/pages/special-error/public/locales/ru/special-error.json b/special-pages/pages/special-error/public/locales/ru/special-error.json
index 8aae12047..eb13b1bfa 100644
--- a/special-pages/pages/special-error/public/locales/ru/special-error.json
+++ b/special-pages/pages/special-error/public/locales/ru/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Внимание! Потенциальная угроза личным данным",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Предупреждение: этот сайт может представлять угрозу безопасности{newline}",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Предупреждение: угроза безопасности",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo заблокировал эту страницу: возможно, она распространяет вредоносное ПО для взлома устройств или кражи личной информации. Подробнее...",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo заблокировал эту страницу: возможно, она распространяет вредоносное ПО для взлома устройств или кражи личной информации.{newline}Подробнее...",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Если вы уверены в безопасности этого сайта, можете сообщить нам об ошибке. Решив посетить его, вы принимаете на себя все связанные с этим риски.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Осторожно! Потенциальная угроза личным данным",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Предупреждение: этот сайт может{newline}представлять угрозу безопасности",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Предупреждение: угроза безопасности",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Возможно, это лишь имитация настоящего сайта, созданная с целью собрать ваши данные (например, пароли и номера платежных карт) обманным путем. Подробнее...",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Возможно, это лишь имитация настоящего сайта, созданная с целью собрать ваши данные (например, пароли и номера платежных карт) обманным путем.{newline}Подробнее...",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Если вы уверены в безопасности этого сайта, можете сообщить нам об ошибке. Решив посетить его, вы принимаете на себя все связанные с этим риски.",
diff --git a/special-pages/pages/special-error/public/locales/sk/special-error.json b/special-pages/pages/special-error/public/locales/sk/special-error.json
index 1aa826ef9..a5ae6341d 100644
--- a/special-pages/pages/special-error/public/locales/sk/special-error.json
+++ b/special-pages/pages/special-error/public/locales/sk/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Upozornenie: Táto stránka môže ohroziť tvoje osobné údaje",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Varovanie: Táto stránka môže predstavovať{newline}bezpečnostné riziko",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Upozornenie: Bezpečnostné riziko",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo zablokoval túto stránku, pretože môže šíriť škodlivý softvér určený na ohrozenie tvojho zariadenia alebo krádež tvojich osobných údajov. Zistiť viac",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo zablokoval túto stránku, pretože môže šíriť škodlivý softvér určený na ohrozenie tvojho zariadenia alebo krádež tvojich osobných údajov.{newline}Zistiť viac",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Ak si myslíš, že táto webová stránka je bezpečná, môžeš nahlásiť chybu. Webovú stránku môžeš stále navštíviť na vlastné riziko.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Upozornenie: Táto stránka môže ohroziť tvoje osobné údaje",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Varovanie: Táto lokalita môže predstavovať{newline}riziko pre zabezpečenie",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Upozornenie: Riziko pre zabezpečenie",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Táto webová lokalita sa môže vydávať za legitímnu lokalitu s cieľom oklamať vás k poskytnutiu osobných údajov, ako sú heslá alebo čísla kreditných kariet. Zistiť viac",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Táto webová lokalita sa môže vydávať za legitímnu lokalitu s cieľom vylákať od teba poskytnutie osobných údajov, ako sú heslá alebo čísla kreditných kariet.{newline}Zistiť viac",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Ak si myslíš, že táto webová stránka je bezpečná, môžeš nahlásiť chybu. Webovú stránku môžeš stále navštíviť na vlastné riziko.",
diff --git a/special-pages/pages/special-error/public/locales/sl/special-error.json b/special-pages/pages/special-error/public/locales/sl/special-error.json
index b667a904e..f838d7349 100644
--- a/special-pages/pages/special-error/public/locales/sl/special-error.json
+++ b/special-pages/pages/special-error/public/locales/sl/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Opozorilo: to spletno mesto lahko ogrozi vaše osebne podatke",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Opozorilo: To spletno mesto je lahko{newline}varnostno tveganje",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Opozorilo: Varnostno tveganje",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo je blokiral to stran, ker morda distribuira zlonamerno programsko opremo, namenjeno ogrožanju vaše naprave ali kraji vaših osebnih podatkov. Preberite več o tem",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo je blokiral to stran, ker morda distribuira zlonamerno programsko opremo, namenjeno ogrožanju vaše naprave ali kraji vaših osebnih podatkov.{newline}Preberite več o tem",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Če menite, da je to spletno mesto varno, lahko prijavite napako. Spletno mesto lahko še vedno obiščete na lastno odgovornost.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Opozorilo: to spletno mesto lahko ogrozi vaše osebne podatke",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Opozorilo: To spletno mesto je lahko{newline}varnostno tveganje",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Opozorilo: Varnostno tveganje",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "To spletno mesto se morda predstavlja kot zakonito spletno mesto, da bi vas pretentalo, da posredujete osebne podatke, kot so gesla ali številke kreditnih kartic. Preberite več o tem",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "To spletno mesto se morda predstavlja kot zakonito spletno mesto, da bi vas pretentalo, da posredujete osebne podatke, kot so gesla ali številke kreditnih kartic.{newline}Preberite več o tem",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Če menite, da je to spletno mesto varno, lahko prijavite napako. Spletno mesto lahko še vedno obiščete na lastno odgovornost.",
diff --git a/special-pages/pages/special-error/public/locales/sv/special-error.json b/special-pages/pages/special-error/public/locales/sv/special-error.json
index 195337a45..35af29a87 100644
--- a/special-pages/pages/special-error/public/locales/sv/special-error.json
+++ b/special-pages/pages/special-error/public/locales/sv/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Varning: Den här webbplatsen kan utsätta din personliga information för risker",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Varning: Den här webbplatsen kan utgöra en{newline}säkerhetsrisk",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Varning: säkerhetsrisk",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "DuckDuckGo har blockerat den här sidan eftersom den kan distribuera skadlig programvara avsedd att göra intrång på din enhet eller stjäla din personliga information. Läs mer",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "DuckDuckGo har blockerat den här sidan eftersom den kan distribuera skadlig programvara avsedd att göra intrång på din enhet eller stjäla din personliga information.{newline}Läs mer",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Om du tror att den här webbplatsen är säker kan du rapportera ett fel. Du kan fortfarande besöka webbplatsen på egen risk.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Varning: Den här webbplatsen kan utsätta din personliga information för risker",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Varning: Den här webbplatsen kan vara en{newline}säkerhetsrisk",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Varning: säkerhetsrisk",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Den här webbplatsen kan utge sig för att vara en legitim webbplats för att lura dig att lämna ut personlig information som lösenord eller kortnummer. Läs mer",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Den här webbplatsen kan utge sig för att vara en legitim webbplats för att lura dig att lämna ut personlig information som lösenord eller kortnummer.{newline}Läs mer",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Om du tror att den här webbplatsen är säker kan du rapportera ett fel. Du kan fortfarande besöka webbplatsen på egen risk.",
diff --git a/special-pages/pages/special-error/public/locales/tr/special-error.json b/special-pages/pages/special-error/public/locales/tr/special-error.json
index 846243cb5..5e87cb8eb 100644
--- a/special-pages/pages/special-error/public/locales/tr/special-error.json
+++ b/special-pages/pages/special-error/public/locales/tr/special-error.json
@@ -25,24 +25,32 @@
"note" : "Button shown in an error page that warns users of security risks on a website due to Phishing or Malware issues. The buttons allows the user to visit the website anyway despite the risks."
},
"malwarePageHeading" : {
- "title" : "Uyarı: Bu site kişisel bilgilerinizi riske atabilir",
- "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution"
+ "title" : "Uyarı: Bu site yeni bir{newline}güvenlik riski olabilir",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "malwareTabTitle" : {
+ "title" : "Uyarı: Güvenlik Riski",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to malware"
},
"malwareWarningText" : {
- "title" : "Cihazınızı tehlikeye atmak veya kişisel bilgilerinizi çalmak için tasarlanmış kötü amaçlı yazılım dağıtıyor olabileceğinden, DuckDuckGo bu sayfayı engelledi. Daha fazla bilgi",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution."
+ "title" : "Cihazınızı tehlikeye atmak veya kişisel bilgilerinizi çalmak için tasarlanmış kötü amaçlı yazılım dağıtıyor olabileceğinden, DuckDuckGo bu sayfayı engelledi.{newline}Daha fazla bilgi edinin",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to malware distribution. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"malwareAdvancedInfoHeading" : {
"title" : "Bu web sitesinin güvenli olduğuna inanıyorsanız bir hata bildirebilirsiniz. Riski göze alabiliyorsanız web sitesini yine de ziyaret edebilirsiniz.",
"note" : "Title of the Advanced info section shown in an error page that warns users of security risks on a website due to malware distribution."
},
"phishingPageHeading" : {
- "title" : "Uyarı: Bu site kişisel bilgilerinizi riske atabilir",
- "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues"
+ "title" : "Uyarı: Bu site yeni bir{newline}güvenlik riski olabilir",
+ "note" : "Title shown in an error page that warn users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed within the sentence to avoid having a single word hanging on the last line"
+ },
+ "phishingTabTitle" : {
+ "title" : "Uyarı: Güvenlik Riski",
+ "note" : "Title shown in the browser window or tab when the current page may be a security risk due to phishing"
},
"phishingWarningText" : {
- "title" : "Bu web sitesi, şifre veya kredi kartı numarası gibi kişisel bilgilerinizi vermeniz için sizi kandırmak amacıyla meşru bir siteyi taklit ediyor olabilir. Daha fazla bilgi",
- "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues."
+ "title" : "Bu web sitesi, şifreler veya kredi kartı numaraları gibi kişisel bilgilerinizi ele geçirmek için meşru bir siteyi taklit ediyor olabilir.{newline}Daha fazla bilgi edinin",
+ "note" : "Error description shown in an error page that warns users of security risks on a website due to Phishing issues. The {newline} tag should not be translated. It should be placed before the translated Learn More text."
},
"phishingAdvancedInfoHeading" : {
"title" : "Bu web sitesinin güvenli olduğuna inanıyorsanız bir hata bildirebilirsiniz. Riski göze alabiliyorsanız web sitesini yine de ziyaret edebilirsiniz.",
diff --git a/special-pages/shared/assets/img/icons/Malware-Site-128.svg b/special-pages/shared/assets/img/icons/Malware-Site-128.svg
new file mode 100644
index 000000000..2032cba45
--- /dev/null
+++ b/special-pages/shared/assets/img/icons/Malware-Site-128.svg
@@ -0,0 +1,15 @@
+