
// Resources
var RSRC = {

  // Data array
  __data : {},

  // Gets locale for current language, by locale key
  ld : function( key ) {

     var res = RSRC.__data[ key ];
     if( ! res )
        res = 'LD:' + key;
     return res;
  }, // ld

  // Initialize locales
  init : function() {

     // Generated code start
     RSRC.__data[ 'cmm.btn.close' ] = 'Sluiten';
RSRC.__data[ 'err.internal' ] = 'Interne fout';
RSRC.__data[ 'err.tbl.select.first' ] = 'Maak eerst een selectie';
     // Generated code end

  } // init

} // RSRC

// Init locales
RSRC.init();
