-
Analyzing Patterns
-
Simulating surjective mappings in Rust...
+
Analysiere Muster
+
Berechne surjective Mappings in Rust...
@@ -465,8 +448,8 @@
const g1 = g1NamesText.value.split('\n').map(s => s.trim()).filter(s => s.length > 0);
const g2 = g2NamesText.value.split('\n').map(s => s.trim()).filter(s => s.length > 0);
- if (g1.length === 0 || g2.length === 0) return showError("Enter contestant names to begin.");
- if (g1.length > g2.length) return showError("The matcher group must be smaller than or equal to the pool.");
+ if (g1.length === 0 || g2.length === 0) return showError("Bitte gib die Namen der Teilnehmer ein.");
+ if (g1.length > g2.length) return showError("Gruppe A darf nicht größer sein als Gruppe B.");
group1Names = g1;
group2Names = g2;
@@ -478,7 +461,7 @@
populateSelectors();
populateCeremonyPairBuilder();
- initialPossibilitiesText.textContent = `${group1Names.length} Matches • ${group2Names.length} Potential Pools`;
+ initialPossibilitiesText.textContent = `${group1Names.length} in Gruppe A • ${group2Names.length} in Gruppe B`;
inputSections.classList.remove("hidden");
statusDashboard.classList.remove("hidden");
@@ -500,7 +483,7 @@