fix: Missing localization

This commit is contained in:
Christian Pauly 2020-12-01 07:11:49 +01:00
parent f8ee2deef5
commit cb191e211a
2 changed files with 6 additions and 1 deletions

View File

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

View File

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