trans: Translate success message
This commit is contained in:
parent
b7f2a3ed67
commit
128ef795d8
@ -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-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.",
|
||||
"cage-measurements": "Käfigmaße"
|
||||
"cage-measurements": "Käfigmaße",
|
||||
"cage-complies-with-all-criteria": "Der Käfig erfüllt alle Kriterien!"
|
||||
}
|
@ -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-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.",
|
||||
"cage-measurements": "Cage measurements"
|
||||
"cage-measurements": "Cage measurements",
|
||||
"cage-complies-with-all-criteria": "This cage complies with all criteria!"
|
||||
}
|
@ -256,13 +256,13 @@ function getResultFromChecks(checks) {
|
||||
const ul = document.createElement('ul');
|
||||
for (const key in checks) {
|
||||
const li = document.createElement('li');
|
||||
li.textContent = `❌` + checks[key];
|
||||
li.textContent = `❌ ` + checks[key];
|
||||
ul.appendChild(li);
|
||||
}
|
||||
return ul;
|
||||
} else {
|
||||
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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user