119602: Update values after converters implementation

This commit is contained in:
Andreas Awouters
2024-11-18 14:26:48 +01:00
parent ecb00a95a0
commit fdfa6e2c06
2 changed files with 4 additions and 4 deletions

View File

@@ -227,9 +227,9 @@ export class AccessibilitySettingsService {
getPlaceholder(setting: AccessibilitySetting): string {
switch (setting) {
case AccessibilitySetting.NotificationTimeOut:
return environment.notifications.timeOut.toString();
return millisecondsToSeconds(environment.notifications.timeOut.toString());
case AccessibilitySetting.LiveRegionTimeOut:
return environment.liveRegion.messageTimeOutDurationMs.toString();
return millisecondsToSeconds(environment.liveRegion.messageTimeOutDurationMs.toString());
default:
return '';
}

View File

@@ -1846,11 +1846,11 @@
"info.accessibility-settings.liveRegionTimeOut.label": "Live region time-out",
"info.accessibility-settings.liveRegionTimeOut.hint": "The duration in milliseconds after which a message in the live region disappears.",
"info.accessibility-settings.liveRegionTimeOut.hint": "The duration in seconds after which a message in the live region disappears.",
"info.accessibility-settings.notificationTimeOut.label": "Notification time-out",
"info.accessibility-settings.notificationTimeOut.hint": "The duration in milliseconds after which a notification disappears. Set to 0 for notifications to remain indefinitely.",
"info.accessibility-settings.notificationTimeOut.hint": "The duration in seconds after which a notification disappears. Set to 0 for notifications to remain indefinitely.",
"info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.",