2017-07-05 11:41:19 +02:00
|
|
|
|
/*
|
2024-03-05 18:37:42 +01:00
|
|
|
|
* Copyright (c) 2024 ETH Zürich, IT Services
|
2017-07-05 11:41:19 +02:00
|
|
|
|
*
|
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-08-30 09:55:26 +02:00
|
|
|
|
namespace SafeExamBrowser.I18n.Contracts
|
2017-07-05 11:41:19 +02:00
|
|
|
|
{
|
2017-07-12 15:36:30 +02:00
|
|
|
|
/// <summary>
|
2018-10-03 15:42:50 +02:00
|
|
|
|
/// Defines all text elements of the user interface. Use the pattern "LogicalGroup_Description" to allow for a better overview over all
|
2018-03-06 11:38:12 +01:00
|
|
|
|
/// keys and their usage (where applicable).
|
2017-07-12 15:36:30 +02:00
|
|
|
|
/// </summary>
|
2017-08-03 15:35:22 +02:00
|
|
|
|
public enum TextKey
|
2017-07-05 11:41:19 +02:00
|
|
|
|
{
|
2020-01-21 09:43:25 +01:00
|
|
|
|
AboutWindow_LicenseInfo,
|
2020-03-09 17:35:48 +01:00
|
|
|
|
AboutWindow_Title,
|
2019-09-10 11:01:49 +02:00
|
|
|
|
Browser_BlockedContentMessage,
|
|
|
|
|
Browser_BlockedPageButton,
|
|
|
|
|
Browser_BlockedPageMessage,
|
|
|
|
|
Browser_BlockedPageTitle,
|
2020-08-06 14:30:37 +02:00
|
|
|
|
Browser_LoadErrorMessage,
|
|
|
|
|
Browser_LoadErrorTitle,
|
2019-12-02 15:48:06 +01:00
|
|
|
|
Browser_Name,
|
2022-07-25 20:25:42 +02:00
|
|
|
|
Browser_PrintNotAllowed,
|
2019-11-06 08:45:37 +01:00
|
|
|
|
Browser_Tooltip,
|
2022-02-11 10:54:37 +01:00
|
|
|
|
BrowserWindow_BackwardButton,
|
2023-01-25 10:50:01 +01:00
|
|
|
|
BrowserWindow_CloseButton,
|
2019-05-22 11:42:31 +02:00
|
|
|
|
BrowserWindow_DeveloperConsoleMenuItem,
|
2020-01-22 15:16:11 +01:00
|
|
|
|
BrowserWindow_Downloading,
|
|
|
|
|
BrowserWindow_DownloadCancelled,
|
|
|
|
|
BrowserWindow_DownloadComplete,
|
2022-02-11 10:54:37 +01:00
|
|
|
|
BrowserWindow_DownloadsButton,
|
2020-08-10 21:42:51 +02:00
|
|
|
|
BrowserWindow_FindCaseSensitive,
|
|
|
|
|
BrowserWindow_FindMenuItem,
|
2022-02-11 10:54:37 +01:00
|
|
|
|
BrowserWindow_ForwardButton,
|
|
|
|
|
BrowserWindow_HomeButton,
|
|
|
|
|
BrowserWindow_MenuButton,
|
2022-02-08 10:33:23 +01:00
|
|
|
|
BrowserWindow_ReloadButton,
|
2023-01-25 10:50:01 +01:00
|
|
|
|
BrowserWindow_SearchNext,
|
|
|
|
|
BrowserWindow_SearchPrevious,
|
|
|
|
|
BrowserWindow_SearchTextBox,
|
2022-02-11 10:54:37 +01:00
|
|
|
|
BrowserWindow_UrlTextBox,
|
2022-05-18 14:23:46 +02:00
|
|
|
|
BrowserWindow_ZoomLevelReset,
|
2019-01-18 16:11:33 +01:00
|
|
|
|
BrowserWindow_ZoomMenuItem,
|
2022-05-18 14:23:46 +02:00
|
|
|
|
BrowserWindow_ZoomMenuMinus,
|
|
|
|
|
BrowserWindow_ZoomMenuPlus,
|
2019-08-13 10:02:05 +02:00
|
|
|
|
Build,
|
2024-05-21 19:11:42 +02:00
|
|
|
|
CredentialsDialog_PasswordLabel,
|
|
|
|
|
CredentialsDialog_UsernameLabel,
|
|
|
|
|
CredentialsDialog_UsernameOptionalLabel,
|
|
|
|
|
CredentialsDialog_WirelessNetworkMessage,
|
|
|
|
|
CredentialsDialog_WirelessNetworkTitle,
|
2020-07-22 18:11:51 +02:00
|
|
|
|
ExamSelectionDialog_Cancel,
|
|
|
|
|
ExamSelectionDialog_Message,
|
|
|
|
|
ExamSelectionDialog_Select,
|
|
|
|
|
ExamSelectionDialog_Title,
|
2020-01-20 16:13:08 +01:00
|
|
|
|
FileSystemDialog_Cancel,
|
|
|
|
|
FileSystemDialog_LoadError,
|
|
|
|
|
FileSystemDialog_Loading,
|
|
|
|
|
FileSystemDialog_OpenFileMessage,
|
|
|
|
|
FileSystemDialog_OpenFolderMessage,
|
|
|
|
|
FileSystemDialog_OverwriteWarning,
|
|
|
|
|
FileSystemDialog_OverwriteWarningTitle,
|
|
|
|
|
FileSystemDialog_SaveAs,
|
|
|
|
|
FileSystemDialog_SaveFileMessage,
|
|
|
|
|
FileSystemDialog_SaveFolderMessage,
|
|
|
|
|
FileSystemDialog_Select,
|
|
|
|
|
FileSystemDialog_Title,
|
2019-12-06 17:42:46 +01:00
|
|
|
|
FolderDialog_ApplicationLocation,
|
2022-11-24 14:50:25 +01:00
|
|
|
|
LockScreen_ApplicationIntegrityMessage,
|
2020-06-29 19:29:48 +02:00
|
|
|
|
LockScreen_ApplicationsAllowOption,
|
|
|
|
|
LockScreen_ApplicationsMessage,
|
|
|
|
|
LockScreen_ApplicationsTerminateOption,
|
2023-09-01 12:28:03 +02:00
|
|
|
|
LockScreen_CursorContinueOption,
|
|
|
|
|
LockScreen_CursorMessage,
|
|
|
|
|
LockScreen_CursorTerminateOption,
|
2021-05-30 20:04:44 +02:00
|
|
|
|
LockScreen_DisplayConfigurationContinueOption,
|
|
|
|
|
LockScreen_DisplayConfigurationMessage,
|
2022-12-21 05:37:03 +01:00
|
|
|
|
LockScreen_DisplayConfigurationTerminateOption,
|
|
|
|
|
LockScreen_EaseOfAccessContinueOption,
|
|
|
|
|
LockScreen_EaseOfAccessMessage,
|
|
|
|
|
LockScreen_EaseOfAccessTerminateOption,
|
2022-11-24 14:50:25 +01:00
|
|
|
|
LockScreen_SessionIntegrityMessage,
|
2024-07-24 20:31:08 +02:00
|
|
|
|
LockScreen_StickyKeysMessage,
|
|
|
|
|
LockScreen_StickyKeysContinueOption,
|
|
|
|
|
LockScreen_StickyKeysTerminateOption,
|
2022-07-18 21:37:04 +02:00
|
|
|
|
LockScreen_Title,
|
|
|
|
|
LockScreen_UnlockButton,
|
2020-06-29 19:29:48 +02:00
|
|
|
|
LockScreen_UserSessionContinueOption,
|
|
|
|
|
LockScreen_UserSessionMessage,
|
|
|
|
|
LockScreen_UserSessionTerminateOption,
|
2019-11-22 15:21:14 +01:00
|
|
|
|
LogWindow_AlwaysOnTop,
|
2019-11-13 11:24:57 +01:00
|
|
|
|
LogWindow_AutoScroll,
|
2017-08-07 12:23:56 +02:00
|
|
|
|
LogWindow_Title,
|
2019-10-04 16:36:12 +02:00
|
|
|
|
MessageBox_ApplicationAutoTerminationDataLossWarning,
|
|
|
|
|
MessageBox_ApplicationAutoTerminationQuestion,
|
|
|
|
|
MessageBox_ApplicationAutoTerminationQuestionTitle,
|
2018-02-27 15:28:54 +01:00
|
|
|
|
MessageBox_ApplicationError,
|
|
|
|
|
MessageBox_ApplicationErrorTitle,
|
2019-11-05 10:08:19 +01:00
|
|
|
|
MessageBox_ApplicationInitializationFailure,
|
|
|
|
|
MessageBox_ApplicationInitializationFailureTitle,
|
|
|
|
|
MessageBox_ApplicationNotFound,
|
|
|
|
|
MessageBox_ApplicationNotFoundTitle,
|
2019-10-04 16:36:12 +02:00
|
|
|
|
MessageBox_ApplicationTerminationFailure,
|
|
|
|
|
MessageBox_ApplicationTerminationFailureTitle,
|
2020-10-05 23:37:23 +02:00
|
|
|
|
MessageBox_BrowserHomeQuestion,
|
|
|
|
|
MessageBox_BrowserHomeQuestionTitle,
|
2019-09-12 12:31:17 +02:00
|
|
|
|
MessageBox_BrowserNavigationBlocked,
|
|
|
|
|
MessageBox_BrowserNavigationBlockedTitle,
|
2019-12-19 15:02:40 +01:00
|
|
|
|
MessageBox_BrowserQuitUrlConfirmation,
|
|
|
|
|
MessageBox_BrowserQuitUrlConfirmationTitle,
|
2019-03-22 12:17:14 +01:00
|
|
|
|
MessageBox_CancelButton,
|
2018-12-14 15:30:10 +01:00
|
|
|
|
MessageBox_ClientConfigurationError,
|
|
|
|
|
MessageBox_ClientConfigurationErrorTitle,
|
2018-03-08 15:27:12 +01:00
|
|
|
|
MessageBox_ClientConfigurationQuestion,
|
|
|
|
|
MessageBox_ClientConfigurationQuestionTitle,
|
2018-06-21 07:56:25 +02:00
|
|
|
|
MessageBox_ConfigurationDownloadError,
|
|
|
|
|
MessageBox_ConfigurationDownloadErrorTitle,
|
2022-05-13 12:03:06 +02:00
|
|
|
|
MessageBox_DisplayConfigurationError,
|
|
|
|
|
MessageBox_DisplayConfigurationErrorTitle,
|
|
|
|
|
MessageBox_DisplayConfigurationInternal,
|
|
|
|
|
MessageBox_DisplayConfigurationInternalOrExternal,
|
|
|
|
|
MessageBox_DownloadNotAllowed,
|
|
|
|
|
MessageBox_DownloadNotAllowedTitle,
|
2018-11-08 09:39:52 +01:00
|
|
|
|
MessageBox_InvalidConfigurationData,
|
|
|
|
|
MessageBox_InvalidConfigurationDataTitle,
|
2020-10-05 23:37:23 +02:00
|
|
|
|
MessageBox_InvalidHomePassword,
|
|
|
|
|
MessageBox_InvalidHomePasswordTitle,
|
2018-12-11 16:06:10 +01:00
|
|
|
|
MessageBox_InvalidPasswordError,
|
|
|
|
|
MessageBox_InvalidPasswordErrorTitle,
|
2019-01-10 10:04:30 +01:00
|
|
|
|
MessageBox_InvalidQuitPassword,
|
|
|
|
|
MessageBox_InvalidQuitPasswordTitle,
|
2019-10-11 15:46:15 +02:00
|
|
|
|
MessageBox_InvalidUnlockPassword,
|
|
|
|
|
MessageBox_InvalidUnlockPasswordTitle,
|
2019-03-22 12:17:14 +01:00
|
|
|
|
MessageBox_NoButton,
|
2018-11-08 09:39:52 +01:00
|
|
|
|
MessageBox_NotSupportedConfigurationResource,
|
|
|
|
|
MessageBox_NotSupportedConfigurationResourceTitle,
|
2019-03-22 12:17:14 +01:00
|
|
|
|
MessageBox_OkButton,
|
2018-02-27 15:28:54 +01:00
|
|
|
|
MessageBox_Quit,
|
|
|
|
|
MessageBox_QuitTitle,
|
|
|
|
|
MessageBox_QuitError,
|
|
|
|
|
MessageBox_QuitErrorTitle,
|
2018-03-08 15:27:12 +01:00
|
|
|
|
MessageBox_ReconfigurationDenied,
|
|
|
|
|
MessageBox_ReconfigurationDeniedTitle,
|
|
|
|
|
MessageBox_ReconfigurationError,
|
|
|
|
|
MessageBox_ReconfigurationErrorTitle,
|
2019-01-17 11:12:17 +01:00
|
|
|
|
MessageBox_ReloadConfirmation,
|
|
|
|
|
MessageBox_ReloadConfirmationTitle,
|
2020-12-04 15:21:51 +01:00
|
|
|
|
MessageBox_RemoteSessionNotAllowed,
|
|
|
|
|
MessageBox_RemoteSessionNotAllowedTitle,
|
2024-03-11 09:55:44 +01:00
|
|
|
|
MessageBox_ScreenProctoringDisclaimer,
|
|
|
|
|
MessageBox_ScreenProctoringDisclaimerTitle,
|
2022-03-16 11:45:06 +01:00
|
|
|
|
MessageBox_ServerReconfigurationWarning,
|
|
|
|
|
MessageBox_ServerReconfigurationWarningTitle,
|
2019-06-11 09:53:33 +02:00
|
|
|
|
MessageBox_ServiceUnavailableError,
|
|
|
|
|
MessageBox_ServiceUnavailableErrorTitle,
|
|
|
|
|
MessageBox_ServiceUnavailableWarning,
|
|
|
|
|
MessageBox_ServiceUnavailableWarningTitle,
|
2019-03-22 15:41:25 +01:00
|
|
|
|
MessageBox_SessionStartError,
|
|
|
|
|
MessageBox_SessionStartErrorTitle,
|
2017-07-07 15:46:32 +02:00
|
|
|
|
MessageBox_ShutdownError,
|
|
|
|
|
MessageBox_ShutdownErrorTitle,
|
|
|
|
|
MessageBox_StartupError,
|
2017-07-14 10:28:59 +02:00
|
|
|
|
MessageBox_StartupErrorTitle,
|
2018-11-08 09:39:52 +01:00
|
|
|
|
MessageBox_UnexpectedConfigurationError,
|
|
|
|
|
MessageBox_UnexpectedConfigurationErrorTitle,
|
2022-05-13 12:03:06 +02:00
|
|
|
|
MessageBox_UploadNotAllowed,
|
|
|
|
|
MessageBox_UploadNotAllowedTitle,
|
2023-07-03 15:25:31 +02:00
|
|
|
|
MessageBox_VersionRestrictionError,
|
|
|
|
|
MessageBox_VersionRestrictionErrorTitle,
|
|
|
|
|
MessageBox_VersionRestrictionMinimum,
|
2024-03-11 09:55:44 +01:00
|
|
|
|
MessageBox_VideoProctoringDisclaimer,
|
|
|
|
|
MessageBox_VideoProctoringDisclaimerTitle,
|
2020-01-06 15:11:57 +01:00
|
|
|
|
MessageBox_VirtualMachineNotAllowed,
|
|
|
|
|
MessageBox_VirtualMachineNotAllowedTitle,
|
2019-03-22 12:17:14 +01:00
|
|
|
|
MessageBox_YesButton,
|
2023-11-08 18:07:30 +01:00
|
|
|
|
MessageBox_ZoomNotSupported,
|
|
|
|
|
MessageBox_ZoomNotSupportedTitle,
|
2017-07-17 16:59:50 +02:00
|
|
|
|
Notification_AboutTooltip,
|
2017-08-07 12:23:56 +02:00
|
|
|
|
Notification_LogTooltip,
|
2021-04-12 19:57:11 +02:00
|
|
|
|
Notification_ProctoringActiveTooltip,
|
2021-09-17 10:47:02 +02:00
|
|
|
|
Notification_ProctoringHandLowered,
|
|
|
|
|
Notification_ProctoringHandRaised,
|
2021-04-12 19:57:11 +02:00
|
|
|
|
Notification_ProctoringInactiveTooltip,
|
2021-09-17 10:47:02 +02:00
|
|
|
|
Notification_ProctoringLowerHand,
|
|
|
|
|
Notification_ProctoringRaiseHand,
|
2018-10-03 15:42:50 +02:00
|
|
|
|
OperationStatus_CloseRuntimeConnection,
|
2019-10-04 16:36:12 +02:00
|
|
|
|
OperationStatus_FinalizeApplications,
|
2023-07-21 09:31:59 +02:00
|
|
|
|
OperationStatus_FinalizeClipboard,
|
2020-07-13 22:57:19 +02:00
|
|
|
|
OperationStatus_FinalizeServer,
|
2018-10-03 15:42:50 +02:00
|
|
|
|
OperationStatus_FinalizeServiceSession,
|
2020-06-29 19:29:48 +02:00
|
|
|
|
OperationStatus_FinalizeSystemEvents,
|
2019-10-04 16:36:12 +02:00
|
|
|
|
OperationStatus_InitializeApplications,
|
2018-10-03 15:42:50 +02:00
|
|
|
|
OperationStatus_InitializeBrowser,
|
2023-07-21 09:31:59 +02:00
|
|
|
|
OperationStatus_InitializeClipboard,
|
2018-10-03 15:42:50 +02:00
|
|
|
|
OperationStatus_InitializeConfiguration,
|
|
|
|
|
OperationStatus_InitializeKioskMode,
|
2021-02-19 22:03:52 +01:00
|
|
|
|
OperationStatus_InitializeProctoring,
|
2018-10-03 15:42:50 +02:00
|
|
|
|
OperationStatus_InitializeRuntimeConnection,
|
2020-07-13 22:57:19 +02:00
|
|
|
|
OperationStatus_InitializeServer,
|
2018-10-03 15:42:50 +02:00
|
|
|
|
OperationStatus_InitializeServiceSession,
|
2020-06-29 19:29:48 +02:00
|
|
|
|
OperationStatus_InitializeSession,
|
2019-03-08 15:56:38 +01:00
|
|
|
|
OperationStatus_InitializeShell,
|
2020-06-29 19:29:48 +02:00
|
|
|
|
OperationStatus_InitializeSystemEvents,
|
2018-10-03 15:42:50 +02:00
|
|
|
|
OperationStatus_InitializeWorkingArea,
|
|
|
|
|
OperationStatus_RestartCommunicationHost,
|
|
|
|
|
OperationStatus_RestoreWorkingArea,
|
|
|
|
|
OperationStatus_RevertKioskMode,
|
|
|
|
|
OperationStatus_StartClient,
|
|
|
|
|
OperationStatus_StartCommunicationHost,
|
|
|
|
|
OperationStatus_StartKeyboardInterception,
|
|
|
|
|
OperationStatus_StartMouseInterception,
|
|
|
|
|
OperationStatus_StopClient,
|
|
|
|
|
OperationStatus_StopCommunicationHost,
|
|
|
|
|
OperationStatus_StopKeyboardInterception,
|
|
|
|
|
OperationStatus_StopMouseInterception,
|
|
|
|
|
OperationStatus_TerminateBrowser,
|
2021-02-19 22:03:52 +01:00
|
|
|
|
OperationStatus_TerminateProctoring,
|
2019-03-08 15:56:38 +01:00
|
|
|
|
OperationStatus_TerminateShell,
|
2021-05-30 20:04:44 +02:00
|
|
|
|
OperationStatus_ValidateDisplayConfiguration,
|
2020-12-04 15:21:51 +01:00
|
|
|
|
OperationStatus_ValidateRemoteSessionPolicy,
|
2023-07-03 15:25:31 +02:00
|
|
|
|
OperationStatus_ValidateVersionRestrictions,
|
2020-01-06 15:11:57 +01:00
|
|
|
|
OperationStatus_ValidateVirtualMachinePolicy,
|
2022-07-18 21:37:04 +02:00
|
|
|
|
OperationStatus_VerifyApplicationIntegrity,
|
2022-12-21 05:37:03 +01:00
|
|
|
|
OperationStatus_VerifySessionIntegrity,
|
2021-02-09 23:07:09 +01:00
|
|
|
|
OperationStatus_WaitDisclaimerConfirmation,
|
2023-11-08 18:07:30 +01:00
|
|
|
|
OperationStatus_WaitErrorConfirmation,
|
2018-10-03 15:42:50 +02:00
|
|
|
|
OperationStatus_WaitExplorerStartup,
|
|
|
|
|
OperationStatus_WaitExplorerTermination,
|
|
|
|
|
OperationStatus_WaitRuntimeDisconnection,
|
2020-10-05 23:37:23 +02:00
|
|
|
|
PasswordDialog_BrowserHomePasswordRequired,
|
|
|
|
|
PasswordDialog_BrowserHomePasswordRequiredTitle,
|
2018-07-04 09:53:33 +02:00
|
|
|
|
PasswordDialog_Cancel,
|
|
|
|
|
PasswordDialog_Confirm,
|
2019-01-30 14:43:41 +01:00
|
|
|
|
PasswordDialog_LocalAdminPasswordRequired,
|
|
|
|
|
PasswordDialog_LocalAdminPasswordRequiredTitle,
|
|
|
|
|
PasswordDialog_LocalSettingsPasswordRequired,
|
|
|
|
|
PasswordDialog_LocalSettingsPasswordRequiredTitle,
|
2019-01-10 10:04:30 +01:00
|
|
|
|
PasswordDialog_QuitPasswordRequired,
|
|
|
|
|
PasswordDialog_QuitPasswordRequiredTitle,
|
2018-06-27 14:02:16 +02:00
|
|
|
|
PasswordDialog_SettingsPasswordRequired,
|
|
|
|
|
PasswordDialog_SettingsPasswordRequiredTitle,
|
2024-02-29 21:05:43 +01:00
|
|
|
|
ProctoringFinalizationDialog_Confirm,
|
|
|
|
|
ProctoringFinalizationDialog_FailureMessage,
|
|
|
|
|
ProctoringFinalizationDialog_InfoMessage,
|
|
|
|
|
ProctoringFinalizationDialog_Status,
|
|
|
|
|
ProctoringFinalizationDialog_StatusAndTime,
|
|
|
|
|
ProctoringFinalizationDialog_StatusWaiting,
|
|
|
|
|
ProctoringFinalizationDialog_Title,
|
2018-01-26 12:33:36 +01:00
|
|
|
|
RuntimeWindow_ApplicationRunning,
|
2020-07-24 18:22:22 +02:00
|
|
|
|
ServerFailureDialog_Abort,
|
|
|
|
|
ServerFailureDialog_Fallback,
|
|
|
|
|
ServerFailureDialog_Message,
|
|
|
|
|
ServerFailureDialog_Retry,
|
|
|
|
|
ServerFailureDialog_Title,
|
2019-03-15 11:38:59 +01:00
|
|
|
|
Shell_QuitButton,
|
2019-08-15 10:46:47 +02:00
|
|
|
|
SystemControl_AudioDeviceInfo,
|
|
|
|
|
SystemControl_AudioDeviceInfoMuted,
|
2019-08-15 16:16:51 +02:00
|
|
|
|
SystemControl_AudioDeviceMuteTooltip,
|
2019-08-15 10:46:47 +02:00
|
|
|
|
SystemControl_AudioDeviceNotFound,
|
2019-08-15 16:16:51 +02:00
|
|
|
|
SystemControl_AudioDeviceUnmuteTooltip,
|
2017-08-17 12:17:58 +02:00
|
|
|
|
SystemControl_BatteryCharged,
|
|
|
|
|
SystemControl_BatteryCharging,
|
|
|
|
|
SystemControl_BatteryChargeCriticalWarning,
|
|
|
|
|
SystemControl_BatteryChargeLowInfo,
|
|
|
|
|
SystemControl_BatteryRemainingCharge,
|
2017-09-13 08:33:12 +02:00
|
|
|
|
SystemControl_KeyboardLayoutTooltip,
|
2022-04-19 18:21:29 +02:00
|
|
|
|
SystemControl_NetworkDisconnected,
|
|
|
|
|
SystemControl_NetworkNotAvailable,
|
|
|
|
|
SystemControl_NetworkWiredConnected,
|
|
|
|
|
SystemControl_NetworkWirelessConnected,
|
|
|
|
|
SystemControl_NetworkWirelessConnecting,
|
2017-07-14 10:28:59 +02:00
|
|
|
|
Version
|
2017-07-05 11:41:19 +02:00
|
|
|
|
}
|
|
|
|
|
}
|