rename WLED to LED
Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
@@ -16,11 +16,9 @@ const translations = {
|
||||
'subtab.devices': '🔗 Geräte',
|
||||
'subtab.scenes': '🎬 Szenen',
|
||||
|
||||
// WLED Configuration
|
||||
'wled.config.title': 'WLED Konfiguration',
|
||||
'wled.config.desc': 'Konfiguriere die WLED-Segmente und LEDs pro Segment',
|
||||
'wled.host': 'WLED Host',
|
||||
'wled.host.placeholder': 'z.B. 192.168.1.100 oder wled.local',
|
||||
// LED Configuration
|
||||
'wled.config.title': 'LED Konfiguration',
|
||||
'wled.config.desc': 'Konfiguriere die LED-Segmente und Anzahl LEDs pro Segment',
|
||||
'wled.segments.title': 'Segmente',
|
||||
'wled.segments.empty': 'Keine Segmente konfiguriert',
|
||||
'wled.segments.empty.hint': 'Klicke auf "Segment hinzufügen" um ein Segment zu erstellen',
|
||||
@@ -29,10 +27,9 @@ const translations = {
|
||||
'wled.segment.leds': 'Anzahl LEDs',
|
||||
'wled.segment.start': 'Start-LED',
|
||||
'wled.segment.remove': 'Entfernen',
|
||||
'wled.saved': 'WLED-Konfiguration gespeichert!',
|
||||
'wled.error.host': 'Bitte WLED Host eingeben',
|
||||
'wled.error.save': 'Fehler beim Speichern der WLED-Konfiguration',
|
||||
'wled.loaded': 'WLED-Konfiguration geladen',
|
||||
'wled.saved': 'LED-Konfiguration gespeichert!',
|
||||
'wled.error.save': 'Fehler beim Speichern der LED-Konfiguration',
|
||||
'wled.loaded': 'LED-Konfiguration geladen',
|
||||
|
||||
// Light Control
|
||||
'control.light.title': 'Lichtsteuerung',
|
||||
@@ -190,11 +187,9 @@ const translations = {
|
||||
'subtab.devices': '🔗 Devices',
|
||||
'subtab.scenes': '🎬 Scenes',
|
||||
|
||||
// WLED Configuration
|
||||
'wled.config.title': 'WLED Configuration',
|
||||
'wled.config.desc': 'Configure WLED segments and LEDs per segment',
|
||||
'wled.host': 'WLED Host',
|
||||
'wled.host.placeholder': 'e.g. 192.168.1.100 or wled.local',
|
||||
// LED Configuration
|
||||
'wled.config.title': 'LED Configuration',
|
||||
'wled.config.desc': 'Configure LED segments and number of LEDs per segment',
|
||||
'wled.segments.title': 'Segments',
|
||||
'wled.segments.empty': 'No segments configured',
|
||||
'wled.segments.empty.hint': 'Click "Add Segment" to create a segment',
|
||||
@@ -203,10 +198,9 @@ const translations = {
|
||||
'wled.segment.leds': 'Number of LEDs',
|
||||
'wled.segment.start': 'Start LED',
|
||||
'wled.segment.remove': 'Remove',
|
||||
'wled.saved': 'WLED configuration saved!',
|
||||
'wled.error.host': 'Please enter WLED host',
|
||||
'wled.error.save': 'Error saving WLED configuration',
|
||||
'wled.loaded': 'WLED configuration loaded',
|
||||
'wled.saved': 'LED configuration saved!',
|
||||
'wled.error.save': 'Error saving LED configuration',
|
||||
'wled.loaded': 'LED configuration loaded',
|
||||
|
||||
// Light Control
|
||||
'control.light.title': 'Light Control',
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// WLED Configuration Module
|
||||
// Manages WLED segments and LED configuration
|
||||
// LED Configuration Module
|
||||
// Manages LED segments and configuration
|
||||
|
||||
let wledConfig = {
|
||||
segments: []
|
||||
@@ -24,7 +24,7 @@ async function loadWledConfig() {
|
||||
showStatus('wled-status', t('wled.loaded'), 'success');
|
||||
}
|
||||
} catch (error) {
|
||||
console.log('Using default WLED config');
|
||||
console.log('Using default LED config');
|
||||
wledConfig = { segments: [] };
|
||||
renderWledSegments();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user