Changeset 3431


Ignore:
Timestamp:
2002-09-25T16:19:30+12:00 (22 years ago)
Author:
sjboddie
Message:

Extracted some english language strings from C++ code and put in macro file

Location:
trunk/gsdl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/macros/english2.dm

    r3419 r3431  
    308308_textexpt_ {export collection}
    309309
     310_textdownloadingfiles_ {Downloading files ...}
     311_textimportingcollection_ {Importing collection ...}
     312_textbuildingcollection_ {Building collection ...}
     313_textcreatingcollection_ {creating collection ...}
     314
    310315_textcollectorblurb_ {
    311316<i>The pen is mightier than the sword!
  • trunk/gsdl/src/recpt/collectoraction.cpp

    r3300 r3431  
    10151015
    10161016  if (file_exists (bld_file + ".download")) {
    1017     statusline = "Downloading files ...<br>\n";
    1018     statusline += file_tail (bld_file + ".download", 1, 0);
     1017    statusline = "_collector:textdownloadingfiles_<br>\n";
     1018    statusline += dm_safe(file_tail(bld_file + ".download", 1, 0));
    10191019  } else if (file_exists (bld_file + ".import")) {
    1020     statusline = "Importing collection ...<br>\n";
    1021     statusline += file_tail (bld_file + ".import", 1, 0);
     1020    statusline = "_collector:textimportingcollection_<br>\n";
     1021    statusline += dm_safe(file_tail(bld_file + ".import", 1, 0));
    10221022  } else if (file_exists (bld_file + ".build")) {
    1023     statusline = "Building collection ...<br>\n";
    1024     statusline += file_tail (bld_file + ".build", 1, 0);
     1023    statusline = "_collector:textbuildingcollection_<br>\n";
     1024    statusline += dm_safe(file_tail(bld_file + ".build", 1, 0));
    10251025  } else {
    1026     statusline += "creating collection ...<br>\n";
    1027     statusline += file_tail (bld_file, 1, 0);
    1028   }
    1029 
    1030   disp.setmacro ("statusline", "collector", dm_safe(statusline));
     1026    statusline += "_collector:textcreatingcollection_<br>\n";
     1027    statusline += dm_safe(file_tail(bld_file, 1, 0));
     1028  }
     1029
     1030  disp.setmacro ("statusline", "collector", statusline);
    10311031
    10321032}
Note: See TracChangeset for help on using the changeset viewer.