Show
Ignore:
Timestamp:
07/04/08 16:50:56 (5 months ago)
Author:
ewigkeit
Message:

リソースファイルの修正。

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  
    281281                 */ 
    282282                public CloseTabAction() { 
    283                         setText("&Close Tab"); // TODO to resource file 
     283                        setText(Messages.action_close_tab); 
    284284                } 
    285285                 
     
    320320                 */ 
    321321                public CloseAllTabExceptThisAction() { 
    322                         setText("Close &Others"); // TODO to resource file 
     322                        setText(Messages.action_close_other_tabs); 
    323323                } 
    324324                 
     
    352352                 */ 
    353353                public RenameTabAction() { 
    354                         setText("タブ名を変更"); 
     354                        setText(Messages.action_rename_tab); 
    355355                } 
    356356                 
     
    365365                         
    366366                        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() { 
    369369                                                                 
    370370                                                                public String isValid(String newText) { 
    371371                                                                        if (newText.length() == 0) { 
    372                                                                                 return "タブ名は必須です。"; 
     372                                                                                return Messages.error_tab_name_required; 
    373373                                                                        } 
    374374                                                                        return null;