Show
Ignore:
Timestamp:
02/09/10 23:41:28 (7 months ago)
Author:
sgk
Branch:
default
Message:

Directory refernece 'reference' and 'examples' should be internationalized.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • app/src/processing/app/Base.java

    r1 r10  
    250250    // Get paths for the libraries and examples in the Processing folder 
    251251    //String workingDirectory = System.getProperty("user.dir"); 
    252     examplesFolder = getContentFile("examples"); 
     252    examplesFolder = getContentFile(_("examples")); 
    253253    librariesFolder = getContentFile("libraries"); 
    254254    toolsFolder = getContentFile("tools"); 
     
    17411741 
    17421742  static public void showReference(String filename) { 
    1743     File referenceFolder = Base.getContentFile("reference"); 
     1743    File referenceFolder = Base.getContentFile(_("reference")); 
    17441744    File referenceFile = new File(referenceFolder, filename); 
    17451745    openURL(referenceFile.getAbsolutePath());