fix: correct German umlaut typos in collection.js
This commit is contained in:
@@ -113,7 +113,7 @@ export function importCollection() {
|
||||
renderSammlung();
|
||||
alert('Import erfolgreich.');
|
||||
} catch {
|
||||
alert('Ungultige Datei.');
|
||||
alert('Ungültige Datei.');
|
||||
}
|
||||
};
|
||||
reader.readAsText(file);
|
||||
@@ -162,7 +162,7 @@ export function renderSammlung() {
|
||||
|
||||
const del = document.createElement('button');
|
||||
del.className = 'action-btn';
|
||||
del.textContent = 'Loschen';
|
||||
del.textContent = 'Löschen';
|
||||
del.style.fontSize = '0.7rem';
|
||||
del.addEventListener('click', () => removeFavorit(hex));
|
||||
cell.appendChild(del);
|
||||
@@ -212,7 +212,7 @@ export function renderSammlung() {
|
||||
|
||||
const delBtn = document.createElement('button');
|
||||
delBtn.className = 'action-btn';
|
||||
delBtn.textContent = 'Schema loschen';
|
||||
delBtn.textContent = 'Schema löschen';
|
||||
delBtn.style.fontSize = '0.75rem';
|
||||
delBtn.addEventListener('click', () => deleteSchema(schema.name));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user