提交 b28a15be 编写于 作者: S SA357

dbeaver-corp/dbeaver-i18n#173

fixed
上级 135f8c49
......@@ -6,7 +6,6 @@ Bundle-SymbolicName: org.jkiss.dbeaver.tasks.sql.ui;singleton:=true
Bundle-Version: 1.0.1.qualifier
Bundle-Release-Date: 20200622
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-Activator: org.jkiss.dbeaver.tasks.ui.internal.TSQLUIActivator
Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.swt,
......
/*
* DBeaver - Universal Database Manager
* Copyright (C) 2010-2020 DBeaver Corp and others
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jkiss.dbeaver.tasks.ui.internal;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
public class TSQLUIActivator extends AbstractUIPlugin {
// The plug-in ID
public static final String PLUGIN_ID = "org.jkiss.dbeaver.tasks.sql.ui";
// The shared instance
private static TSQLUIActivator plugin;
public TSQLUIActivator() {
}
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
public static TSQLUIActivator getDefault() {
return plugin;
}
public static ImageDescriptor getImageDescriptor(String path) {
return imageDescriptorFromPlugin(PLUGIN_ID, path);
}
public void saveDialogSettings() {
super.saveDialogSettings();
}
}
......@@ -20,7 +20,7 @@ package org.jkiss.dbeaver.tasks.ui.internal;
import org.eclipse.osgi.util.NLS;
public class TSQLUIMessages extends NLS {
static final String BUNDLE_NAME = "org.jkiss.dbeaver.tasks.sql.ui.internal.TSQLUIMessages"; //$NON-NLS-1$
static final String BUNDLE_NAME = "org.jkiss.dbeaver.tasks.ui.internal.TSQLUIMessages"; //$NON-NLS-1$
public static String sql_tool_task_object_selector_dialog_title;
public static String sql_tool_task_wizard_page_settings_name;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册