Changeset 97
- Timestamp:
- 10/02/08 10:48:58 (10 months ago)
- Files:
-
- trunk/src/vlcskineditor/Main.java (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/vlcskineditor/Main.java
r96 r97 1032 1032 Resource r = s.getResource(selected_resource); 1033 1033 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"); 1036 1036 if(r.getClass()==Bitmap.class) { 1037 1037 Bitmap b = (Bitmap)r; … … 1063 1063 else if(e.getSource().equals(win_duplicate)) { 1064 1064 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"); 1067 1067 if(selected_layout==null) { 1068 1068 Window w = s.getWindow(selected_window); … … 1087 1087 else if(e.getSource().equals(items_duplicate)) { 1088 1088 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"); 1091 1091 Item i = s.getItem(selected_item); 1092 1092 if(i==null) return;
