import org.eclipse.ui.IViewActionDelegate;
import org.eclipse.ui.IViewPart;
+import net.sourceforge.phpdt.sql.Messages;
import net.sourceforge.phpdt.sql.bookmarks.Bookmark;
import net.sourceforge.phpdt.sql.view.BookmarkView;
public void run() {
Bookmark bookmark = view.getCurrentBookmark();
InputDialog dialog = new InputDialog(view.getSite().getShell(),
- "Set Schema", "Please enter the name of new schema:",
+ Messages.getString("SetSchemaAction.SetSchema"), Messages.getString("SetSchemaAction.PleaseEnterName"), //$NON-NLS-1$ //$NON-NLS-2$
bookmark.getSchema(), null);
dialog.open();
String value = dialog.getValue();