mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
119602: Update values after converters implementation
This commit is contained in:
@@ -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 '';
|
||||
}
|
||||
|
@@ -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.",
|
||||
|
||||
|
Reference in New Issue
Block a user