2017-07-05 11:41:19 +02:00
|
|
|
|
/*
|
2018-01-16 08:24:00 +01:00
|
|
|
|
* Copyright (c) 2018 ETH Zürich, Educational Development and Technology (LET)
|
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/.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-06 18:18:39 +02:00
|
|
|
|
namespace SafeExamBrowser.Contracts.I18n
|
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
|
|
|
|
{
|
2017-07-31 20:22:53 +02:00
|
|
|
|
Browser_ShowDeveloperConsole,
|
2017-08-07 12:23:56 +02:00
|
|
|
|
LogWindow_Title,
|
2018-02-27 15:28:54 +01:00
|
|
|
|
MessageBox_ApplicationError,
|
|
|
|
|
MessageBox_ApplicationErrorTitle,
|
2018-03-08 15:27:12 +01:00
|
|
|
|
MessageBox_ClientConfigurationQuestion,
|
|
|
|
|
MessageBox_ClientConfigurationQuestionTitle,
|
2018-06-21 07:56:25 +02:00
|
|
|
|
MessageBox_ConfigurationDownloadError,
|
|
|
|
|
MessageBox_ConfigurationDownloadErrorTitle,
|
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,
|
|
|
|
|
MessageBox_ReconfigurationQuestion,
|
|
|
|
|
MessageBox_ReconfigurationQuestionTitle,
|
2018-02-07 13:25:49 +01:00
|
|
|
|
MessageBox_SessionStartError,
|
|
|
|
|
MessageBox_SessionStartErrorTitle,
|
2018-02-27 15:28:54 +01:00
|
|
|
|
MessageBox_SessionStopError,
|
|
|
|
|
MessageBox_SessionStopErrorTitle,
|
2017-07-07 15:46:32 +02:00
|
|
|
|
MessageBox_ShutdownError,
|
|
|
|
|
MessageBox_ShutdownErrorTitle,
|
2017-07-05 17:21:52 +02:00
|
|
|
|
MessageBox_SingleInstance,
|
2017-07-07 15:46:32 +02:00
|
|
|
|
MessageBox_SingleInstanceTitle,
|
|
|
|
|
MessageBox_StartupError,
|
2017-07-14 10:28:59 +02:00
|
|
|
|
MessageBox_StartupErrorTitle,
|
2017-07-17 16:59:50 +02:00
|
|
|
|
Notification_AboutTooltip,
|
2017-08-07 12:23:56 +02:00
|
|
|
|
Notification_LogTooltip,
|
2018-10-03 15:42:50 +02:00
|
|
|
|
OperationStatus_CloseRuntimeConnection,
|
|
|
|
|
OperationStatus_EmptyClipboard,
|
|
|
|
|
OperationStatus_FinalizeServiceSession,
|
|
|
|
|
OperationStatus_InitializeBrowser,
|
|
|
|
|
OperationStatus_InitializeConfiguration,
|
|
|
|
|
OperationStatus_InitializeKioskMode,
|
|
|
|
|
OperationStatus_InitializeProcessMonitoring,
|
|
|
|
|
OperationStatus_InitializeRuntimeConnection,
|
|
|
|
|
OperationStatus_InitializeServiceSession,
|
|
|
|
|
OperationStatus_InitializeTaskbar,
|
|
|
|
|
OperationStatus_InitializeWindowMonitoring,
|
|
|
|
|
OperationStatus_InitializeWorkingArea,
|
|
|
|
|
OperationStatus_RestartCommunicationHost,
|
|
|
|
|
OperationStatus_RestoreWorkingArea,
|
|
|
|
|
OperationStatus_RevertKioskMode,
|
|
|
|
|
OperationStatus_ShutdownProcedure,
|
|
|
|
|
OperationStatus_StartClient,
|
|
|
|
|
OperationStatus_StartCommunicationHost,
|
|
|
|
|
OperationStatus_StartEventHandling,
|
|
|
|
|
OperationStatus_StartKeyboardInterception,
|
|
|
|
|
OperationStatus_StartMouseInterception,
|
|
|
|
|
OperationStatus_InitializeSession,
|
|
|
|
|
OperationStatus_StopClient,
|
|
|
|
|
OperationStatus_StopCommunicationHost,
|
|
|
|
|
OperationStatus_StopEventHandling,
|
|
|
|
|
OperationStatus_StopKeyboardInterception,
|
|
|
|
|
OperationStatus_StopMouseInterception,
|
|
|
|
|
OperationStatus_StopProcessMonitoring,
|
|
|
|
|
OperationStatus_StopWindowMonitoring,
|
|
|
|
|
OperationStatus_TerminateBrowser,
|
|
|
|
|
OperationStatus_TerminateTaskbar,
|
|
|
|
|
OperationStatus_WaitExplorerStartup,
|
|
|
|
|
OperationStatus_WaitExplorerTermination,
|
|
|
|
|
OperationStatus_WaitRuntimeDisconnection,
|
2018-06-27 14:02:16 +02:00
|
|
|
|
PasswordDialog_AdminPasswordRequired,
|
|
|
|
|
PasswordDialog_AdminPasswordRequiredTitle,
|
2018-07-04 09:53:33 +02:00
|
|
|
|
PasswordDialog_Cancel,
|
|
|
|
|
PasswordDialog_Confirm,
|
2018-06-27 14:02:16 +02:00
|
|
|
|
PasswordDialog_SettingsPasswordRequired,
|
|
|
|
|
PasswordDialog_SettingsPasswordRequiredTitle,
|
2018-01-26 12:33:36 +01:00
|
|
|
|
RuntimeWindow_ApplicationRunning,
|
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,
|
2017-11-14 15:43:13 +01:00
|
|
|
|
SystemControl_WirelessConnected,
|
|
|
|
|
SystemControl_WirelessDisconnected,
|
|
|
|
|
SystemControl_WirelessNotAvailable,
|
2017-07-14 10:28:59 +02:00
|
|
|
|
Version
|
2017-07-05 11:41:19 +02:00
|
|
|
|
}
|
|
|
|
|
}
|