Changeset 15155 for platform/eclipse/sabotter/trunk/jp.xet.sabotter.eclipse/src/jp/xet/sabotter/eclipse/action/AddTabAction.java
- Timestamp:
- 07/04/08 16:50:56 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
platform/eclipse/sabotter/trunk/jp.xet.sabotter.eclipse/src/jp/xet/sabotter/eclipse/action/AddTabAction.java
r15092 r15155 281 281 */ 282 282 public CloseTabAction() { 283 setText( "&Close Tab"); // TODO to resource file283 setText(Messages.action_close_tab); 284 284 } 285 285 … … 320 320 */ 321 321 public CloseAllTabExceptThisAction() { 322 setText( "Close &Others"); // TODO to resource file322 setText(Messages.action_close_other_tabs); 323 323 } 324 324 … … 352 352 */ 353 353 public RenameTabAction() { 354 setText( "タブ名を変更");354 setText(Messages.action_rename_tab); 355 355 } 356 356 … … 365 365 366 366 InputDialog dialog = 367 new InputDialog(tabFolder.getShell(), "Rename Tab", "タブ名を入力して下さい。", item.getText(),368 new IInputValidator() {367 new InputDialog(tabFolder.getShell(), Messages.rename_tab_dialog_title, 368 Messages.rename_tab_dialog_message, item.getText(), new IInputValidator() { 369 369 370 370 public String isValid(String newText) { 371 371 if (newText.length() == 0) { 372 return "タブ名は必須です。";372 return Messages.error_tab_name_required; 373 373 } 374 374 return null;
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)