Ignore:
Timestamp:
2004-08-26T11:51:09+12:00 (20 years ago)
Author:
kjdon
Message:

changed the library url warnign message for gs3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/Gatherer.java

    r7991 r8062  
    574574     */
    575575    static public void missingEXEC() {
    576     WarningDialog dialog = new WarningDialog("warning.MissingEXEC", "general.exec_address");
     576    String message_name;
     577    if (GS3) {
     578        message_name = "warning.MissingEXEC_GS3";
     579    } else {
     580        message_name = "warning.MissingEXEC";
     581    }
     582    WarningDialog dialog = new WarningDialog(message_name, "general.exec_address" );
    577583    dialog.setValueField(new URLField(Gatherer.config.getColor("coloring.editable_foreground", false), Gatherer.config.getColor("coloring.editable_background", false), Gatherer.config.getColor("coloring.error_foreground", false), Gatherer.config.getColor("coloring.error_background", false)));
    578584    dialog.display();
Note: See TracChangeset for help on using the changeset viewer.