Changeset 4658


Ignore:
Timestamp:
2003-06-13T16:46:35+12:00 (21 years ago)
Author:
mdewsnip
Message:

Changed to use the new interface language variable in Configuration instead of the (incorrect) default language used for partition indexes.

File:
1 edited

Legend:

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

    r4633 r4658  
    264264        }
    265265        else {
    266             collection_extra_language.setText(manager.languages.getDefaultLanguage().toString());
     266            collection_extra_language.setText(Gatherer.config.interface_language.toString());
    267267        }
    268268        }
     
    281281        }
    282282        else {
    283             collection_name_language.setText(manager.languages.getDefaultLanguage().toString());
     283            collection_name_language.setText(Gatherer.config.interface_language.toString());
    284284        }
    285285        }
     
    298298        }
    299299        else {
    300             icon_collection_language.setText(manager.languages.getDefaultLanguage().toString());
     300            icon_collection_language.setText(Gatherer.config.interface_language.toString());
    301301        }
    302302        }
     
    315315        }
    316316        else {
    317             icon_collection_small_language.setText(manager.languages.getDefaultLanguage().toString());
     317            icon_collection_small_language.setText(Gatherer.config.interface_language.toString());
    318318        }
    319319        }
Note: See TracChangeset for help on using the changeset viewer.