fix: Missing localization

onboarding
Christian Pauly 5 years ago
parent f290bf206c
commit 0035c03f9e

@ -1380,6 +1380,11 @@
"type": "text", "type": "text",
"placeholders": {} "placeholders": {}
}, },
"soundVibrationLedColor": "Sound, vibration LED-color",
"@soundVibrationLedColor": {
"type": "text",
"placeholders": {}
},
"sendAudio": "Send audio", "sendAudio": "Send audio",
"@sendAudio": { "@sendAudio": {
"type": "text", "type": "text",

@ -146,7 +146,7 @@ class SettingsNotifications extends StatelessWidget {
if (!Matrix.of(context).client.allPushNotificationsMuted) ...{ if (!Matrix.of(context).client.allPushNotificationsMuted) ...{
if (!kIsWeb && Platform.isAndroid) if (!kIsWeb && Platform.isAndroid)
ListTile( ListTile(
title: Text('Ton, Vibration, LED-Farbe'), title: Text(L10n.of(context).soundVibrationLedColor),
trailing: CircleAvatar( trailing: CircleAvatar(
backgroundColor: backgroundColor:
Theme.of(context).scaffoldBackgroundColor, Theme.of(context).scaffoldBackgroundColor,

Loading…
Cancel
Save