2017-07-05 11:41:19 +02:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2017 ETH Zürich, Educational Development and Technology (LET)
|
|
|
|
|
*
|
|
|
|
|
* 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>
|
|
|
|
|
/// Defines all text components of the user interface.
|
|
|
|
|
/// </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,
|
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,
|
2017-08-07 18:08:55 +02:00
|
|
|
|
SplashScreen_EmptyClipboard,
|
2017-07-14 10:28:59 +02:00
|
|
|
|
SplashScreen_InitializeBrowser,
|
2017-07-19 14:43:54 +02:00
|
|
|
|
SplashScreen_InitializeProcessMonitoring,
|
|
|
|
|
SplashScreen_InitializeTaskbar,
|
2017-07-24 15:29:17 +02:00
|
|
|
|
SplashScreen_InitializeWindowMonitoring,
|
2017-07-20 14:16:47 +02:00
|
|
|
|
SplashScreen_InitializeWorkingArea,
|
|
|
|
|
SplashScreen_RestoreWorkingArea,
|
2017-07-19 14:43:54 +02:00
|
|
|
|
SplashScreen_ShutdownProcedure,
|
2017-07-26 14:36:20 +02:00
|
|
|
|
SplashScreen_StartEventHandling,
|
2017-08-07 09:42:12 +02:00
|
|
|
|
SplashScreen_StartKeyboardInterception,
|
|
|
|
|
SplashScreen_StartMouseInterception,
|
2017-07-14 10:28:59 +02:00
|
|
|
|
SplashScreen_StartupProcedure,
|
2017-07-26 14:36:20 +02:00
|
|
|
|
SplashScreen_StopEventHandling,
|
2017-08-07 09:42:12 +02:00
|
|
|
|
SplashScreen_StopKeyboardInterception,
|
|
|
|
|
SplashScreen_StopMouseInterception,
|
2017-07-19 14:43:54 +02:00
|
|
|
|
SplashScreen_StopProcessMonitoring,
|
2017-07-24 15:29:17 +02:00
|
|
|
|
SplashScreen_StopWindowMonitoring,
|
2017-07-26 14:36:20 +02:00
|
|
|
|
SplashScreen_TerminateBrowser,
|
2017-07-19 14:43:54 +02:00
|
|
|
|
SplashScreen_WaitExplorerStartup,
|
|
|
|
|
SplashScreen_WaitExplorerTermination,
|
2017-07-14 10:28:59 +02:00
|
|
|
|
Version
|
2017-07-05 11:41:19 +02:00
|
|
|
|
}
|
|
|
|
|
}
|