1 /* 2 * Copyright (C) 2011 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.ide.eclipse.ddms.i18n; 18 19 import org.eclipse.osgi.util.NLS; 20 21 public class Messages extends NLS { 22 private static final String BUNDLE_NAME = "com.android.ide.eclipse.ddms.i18n.messages"; //$NON-NLS-1$ 23 public static String DdmsPlugin_Message_Tag_Mask_1; 24 public static String DdmsPlugin_Message_Tag_Mask_2; 25 public static String DdmsPlugin_DDMS_Post_Create_Init; 26 public static String DeviceView_ADB_Error; 27 public static String DeviceView_ADB_Failed_Restart; 28 public static String DeviceView_Cause_GC; 29 public static String DeviceView_Cause_GC_Tooltip; 30 public static String DeviceView_Debug_Process; 31 public static String DeviceView_Debug_Process_Title; 32 public static String DeviceView_Debug_Process_Tooltip; 33 public static String DeviceView_Debug_Session_Failed; 34 public static String DeviceView_Dump_HPROF_File; 35 public static String DeviceView_Dump_HPROF_File_Not_Supported_By_VM; 36 public static String DeviceView_Dump_HPROF_File_Tooltip; 37 public static String DeviceView_Failed_To_Save_HPROF_Data; 38 public static String DeviceView_HPROF_Error; 39 public static String DeviceView_Process_Already_Being_Debugged; 40 public static String DeviceView_Process_Debug_Already_In_Use; 41 public static String DeviceView_Pulling_From_Device; 42 public static String DeviceView_Reset_ADB; 43 public static String DeviceView_Reset_ADB_Host_Deamon; 44 public static String DeviceView_Save_HPROF_File; 45 public static String DeviceView_Screen_Capture; 46 public static String DeviceView_Screen_Capture_Tooltip; 47 public static String DeviceView_Start_Method_Profiling; 48 public static String DeviceView_Start_Method_Profiling_Not_Suported_By_Vm; 49 public static String DeviceView_Start_Method_Profiling_Tooltip; 50 public static String DeviceView_Stop_Method_Profiling; 51 public static String DeviceView_Stop_Method_Profiling_Tooltip; 52 public static String DeviceView_Stop_Process; 53 public static String DeviceView_Stop_Process_Tooltip; 54 public static String DeviceView_Threads; 55 public static String DeviceView_Threads_Tooltip; 56 public static String DeviceView_Unable_Create_HPROF_For_Application; 57 public static String DeviceView_Unable_Download_HPROF_From_Device_One_Param_First_Message; 58 public static String DeviceView_Unable_Download_HPROF_From_Device_One_Param_Second_Message; 59 public static String DeviceView_Unable_Download_HPROF_From_Device_Two_Param; 60 public static String DeviceView_Update_Heap; 61 public static String DeviceView_Update_Heap_Tooltip; 62 public static String EventLogView_Clear_Log; 63 public static String EventLogView_Clears_Event_Log; 64 public static String EventLogView_Import_Bug_Report_Log; 65 public static String EventLogView_Imports_Bug_Report; 66 public static String EventLogView_Load_Log; 67 public static String EventLogView_Loads_Event_Log; 68 public static String EventLogView_Opens_Options_Panel; 69 public static String EventLogView_Options; 70 public static String EventLogView_Save_Log; 71 public static String EventLogView_Saves_Event_Log; 72 public static String FileExplorerView_Delete; 73 public static String FileExplorerView_Delete_The_Selection; 74 public static String FileExplorerView_Pull_File; 75 public static String FileExplorerView_Pull_File_From_File; 76 public static String FileExplorerView_Push_File; 77 public static String FileExplorerView_Push_File_Onto_Device; 78 public static String LogCatPreferencePage_Display_Font; 79 public static String LogCatPreferencePage_MaxMessages; 80 public static String LogCatPreferencePage_Switch_Perspective; 81 public static String LogCatPreferencePage_Switch_To; 82 public static String LogCatPreferencePage_AutoMonitorLogcat; 83 public static String LogCatPreferencePage_SessionFilterLogLevel; 84 public static String LogCatView_Clear_Log; 85 public static String LogCatView_Copy; 86 public static String LogCatView_Create_Filter; 87 public static String LogCatView_Create_Filter_Tooltip; 88 public static String LogCatView_Delete_Filter; 89 public static String LogCatView_Delete_Filter_Tooltip; 90 public static String LogCatView_Edit_Filter; 91 public static String LogCatView_Edit_Filter_Tooltip; 92 public static String LogCatView_Export_Selection_As_Text; 93 public static String LogCatView_Export_Selection_As_Text_Tooltip; 94 public static String LogCatView_Select_All; 95 public static String PreferencePage_ADB_Connection_Time_Out; 96 public static String PreferencePage_Adbhost_value; 97 public static String PreferencePage_Assert; 98 public static String PreferencePage_Base_Local_Debugger_Port; 99 public static String PreferencePage_Debug; 100 public static String PreferencePage_Error; 101 public static String PreferencePage_Heap_Updates_Enabled_Default; 102 public static String PreferencePage_HPROF_Action; 103 public static String PreferencePage_Info; 104 public static String PreferencePage_Logging_Level; 105 public static String PreferencePage_Open_Eclipse; 106 public static String PreferencePage_Save_Disk; 107 public static String PreferencePage_Thread_Status_Refresh_Interval; 108 public static String PreferencePage_Thread_Updates_Enabled_By_Default; 109 public static String PreferencePage_Use_Adbhost; 110 public static String PreferencePage_Verbose; 111 public static String PreferencePage_Warning; 112 public static String TableView_Copy; 113 public static String TableView_Select_All; 114 static { 115 // initialize resource bundle 116 NLS.initializeMessages(BUNDLE_NAME, Messages.class); 117 } 118 119 private Messages() { 120 } 121 } 122