trans: Translate success message

This commit is contained in:
moanos [he/him] 2024-07-31 19:29:33 +02:00
parent b7f2a3ed67
commit 128ef795d8
3 changed files with 6 additions and 4 deletions

View File

@ -17,5 +17,6 @@
"alt-savic-xl": "Bild des Käfigs Savic Suite Royal XL, ein Drahtkäfig mit vier Türen die erlauben die gesamte Vorderseite zu öffnen. Auf halber Höhe ist eine weitere Vollebene.", "alt-savic-xl": "Bild des Käfigs Savic Suite Royal XL, ein Drahtkäfig mit vier Türen die erlauben die gesamte Vorderseite zu öffnen. Auf halber Höhe ist eine weitere Vollebene.",
"alt-savic-95-double": "Bild eines dekorierten Käfigs, des Savic Suite Royale 95 Double. Auf insgesamt vie Vollebenen sind Holz- und Papphäusschen, Hängematten, Futterschalen und mehr.", "alt-savic-95-double": "Bild eines dekorierten Käfigs, des Savic Suite Royale 95 Double. Auf insgesamt vie Vollebenen sind Holz- und Papphäusschen, Hängematten, Futterschalen und mehr.",
"alt-tiaki": "Bild des Tiaki-Käfigs, ein Drahtkäfig mit vier Türen die erlauben die gesamte Vorderseite zu öffnen. Auf halber Höhe ist eine weitere Vollebene.", "alt-tiaki": "Bild des Tiaki-Käfigs, ein Drahtkäfig mit vier Türen die erlauben die gesamte Vorderseite zu öffnen. Auf halber Höhe ist eine weitere Vollebene.",
"cage-measurements": "Käfigmaße" "cage-measurements": "Käfigmaße",
"cage-complies-with-all-criteria": "Der Käfig erfüllt alle Kriterien!"
} }

View File

@ -17,5 +17,6 @@
"alt-savic-xl": "A picture of a wire bar cage with four doors that allow to open the full front of the cage. In the middle of the cage is a additional full floor.", "alt-savic-xl": "A picture of a wire bar cage with four doors that allow to open the full front of the cage. In the middle of the cage is a additional full floor.",
"alt-savic-95-double": "A picture of a decorated wire bar cage with four doors that allow to open the full front of the cage. Inside there are hammocks, toys and four full floors with lots of hides", "alt-savic-95-double": "A picture of a decorated wire bar cage with four doors that allow to open the full front of the cage. Inside there are hammocks, toys and four full floors with lots of hides",
"alt-tiaki": "A picture of a decorated wire bar cage with four doors that allow to open the full front of the cage.", "alt-tiaki": "A picture of a decorated wire bar cage with four doors that allow to open the full front of the cage.",
"cage-measurements": "Cage measurements" "cage-measurements": "Cage measurements",
"cage-complies-with-all-criteria": "This cage complies with all criteria!"
} }

View File

@ -256,13 +256,13 @@ function getResultFromChecks(checks) {
const ul = document.createElement('ul'); const ul = document.createElement('ul');
for (const key in checks) { for (const key in checks) {
const li = document.createElement('li'); const li = document.createElement('li');
li.textContent = `` + checks[key]; li.textContent = ` ` + checks[key];
ul.appendChild(li); ul.appendChild(li);
} }
return ul; return ul;
} else { } else {
const p = document.createElement('p'); const p = document.createElement('p');
p.innerHTML = "✅ Der Käfig erfüllt alle Kriterien!" p.innerHTML = "✅ " + i18next.t("cage-complies-with-all-criteria")
return p; return p;
} }