forked from microsoft/copilot-for-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessages.java
More file actions
51 lines (45 loc) · 1.98 KB
/
Copy pathMessages.java
File metadata and controls
51 lines (45 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package com.microsoft.copilot.eclipse.ui.chat;
import org.eclipse.osgi.util.NLS;
/**
* Message class for the i18n.
*/
public final class Messages extends NLS {
private static final String BUNDLE_NAME = "com.microsoft.copilot.eclipse.ui.chat.messages"; //$NON-NLS-1$
public static String chat_chatContentView_errorTemplate;
public static String chat_toolCall_genericError;
public static String chat_toolCall_errorTemplate;
public static String endChat_confirmationTitle;
public static String endChat_confirmationMessage;
public static String confirmDialog_keepChangesButton;
public static String confirmDialog_undoChangesButton;
public static String chat_warnWidget_defaultErrorMsg;
public static String chat_warnWidget_byokQuotaUsageMessage;
public static String configureModes;
public static String agentMessageWidget_openInBrowserButton;
public static String agentMessageWidget_openInBrowserTooltip;
public static String agentMessageWidget_openJobListButton;
public static String agentMessageWidget_openJobListTooltip;
public static String handoffContainer_proceedFrom;
public static String fileChangeSummary_filesChanged;
public static String fileChangeSummary_fileChanged;
public static String fileChangeSummary_keepButton;
public static String fileChangeSummary_undoButton;
public static String fileChangeSummary_collapseTooltip;
public static String fileChangeSummary_expandTooltip;
public static String todoList_titleWithCount;
public static String todoList_clearButton;
public static String todoList_clearButtonDisabled;
public static String todoList_expandTooltip;
public static String todoList_collapseTooltip;
public static String thinking_title;
public static String thinking_expandTooltip;
public static String thinking_collapseTooltip;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}