Changeset 97

Show
Ignore:
Timestamp:
10/02/08 10:48:58 (10 months ago)
Author:
altglass
Message:

Very little change, reformulation of the rename pattern input dialogs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/vlcskineditor/Main.java

    r96 r97  
    10321032      Resource r = s.getResource(selected_resource); 
    10331033      if(r==null) return; 
    1034       String p = JOptionPane.showInputDialog(this, "Please enter the rename pattern for the duplicated object.\n" + 
    1035                 "%oldid% will be replaced by the old ID of the resource.", "%oldid%_copy"); 
     1034      String p = JOptionPane.showInputDialog(this, "Please enter the rename pattern for the duplicated objects.\n" + 
     1035                "%oldid% will be replaced by the old ID of the object.", "%oldid%_copy"); 
    10361036      if(r.getClass()==Bitmap.class) { 
    10371037        Bitmap b = (Bitmap)r;         
     
    10631063    else if(e.getSource().equals(win_duplicate)) { 
    10641064        if(selected_window==null) return; 
    1065         String p = JOptionPane.showInputDialog(this, "Please enter the rename pattern for the duplicated object.\n" + 
    1066                 "%oldid% will be replaced by the old ID of the resource.", "%oldid%_copy"); 
     1065        String p = JOptionPane.showInputDialog(this, "Please enter the rename pattern for the duplicated objects.\n" + 
     1066                "%oldid% will be replaced by the old ID of the object.", "%oldid%_copy"); 
    10671067        if(selected_layout==null) { 
    10681068            Window w = s.getWindow(selected_window); 
     
    10871087    else if(e.getSource().equals(items_duplicate)) { 
    10881088        if(selected_item==null) return; 
    1089         String p = JOptionPane.showInputDialog(this, "Please enter the rename pattern for the duplicated object.\n" + 
    1090                 "%oldid% will be replaced by the old ID of the resource.", "%oldid%_copy"); 
     1089        String p = JOptionPane.showInputDialog(this, "Please enter the rename pattern for the duplicated objects.\n" + 
     1090                "%oldid% will be replaced by the old ID of the object.", "%oldid%_copy"); 
    10911091        Item i = s.getItem(selected_item); 
    10921092        if(i==null) return;