var Locales = new Object();

Locales.getCameraName = function(id){
  return cameraNames[id].camname;
}

Locales.getTypeParameters = function(type){
  return typeParameters[type];
}

Locales.weekday = function(index) {
  return weekdays_short[index];
}

Locales.today = function() {
  return today;
}

Locales.month = function(index) {
  return months[index];
}

Locales.shortMonth = function(index) {
  return months_short[index];   
}
    
Locales.translate = function() {	 
  return translator;
}

