Changeset 23662


Ignore:
Timestamp:
2011-02-02T16:55:43+13:00 (13 years ago)
Author:
ak19
Message:

Renamed warning message and title for for NoEncodingSupport

Location:
main/trunk/gli
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gli/classes/dictionary.properties

    r23433 r23662  
    652652General.Warning:Warning
    653653General.Yes:Yes
    654 General.MultipleFileNamesNotSupported.Message:Your locale seems to be in UTF-8. Non-UTF-8 filenames are not supported by your setup.
    655 General.MultipleFileNamesNotSupported.Title:Filename Encoding Support
    656654#****************************
    657655#
     
    885883MissingImageMagick.Message:Warning! The Librarian Interface failed to locate an appropriate version of ImageMagick. Images can be included in collections but no image processing functionality will be available, such as converting images to a different type, or generating thumbnails.
    886884MissingImageMagick.Title:Missing ImageMagick
     885#******** Multiple filename encodings not supported *******
     886NoEncodingSupport.Message:Your locale seems to be in UTF-8. Non-UTF-8 filenames are not supported by your setup.
     887NoEncodingSupport.Title:No Filename Encoding Support
    887888#*****************************
    888889#
  • main/trunk/gli/src/org/greenstone/gatherer/Gatherer.java

    r23433 r23662  
    12791279    static private void multipleFilenameEncodingsNotSupported() {   
    12801280        WarningDialog dialog = new WarningDialog("warning.NoEncodingSupport",
    1281             Dictionary.get("General.MultipleFileNamesNotSupported.Title"),
    1282             Dictionary.get("General.MultipleFileNamesNotSupported.Message"), null, false);
     1281            Dictionary.get("NoEncodingSupport.Title"),
     1282            Dictionary.get("NoEncodingSupport.Message"), null, false);
    12831283        dialog.display();
    12841284        dialog.dispose();
Note: See TracChangeset for help on using the changeset viewer.