/*
 * Resource bundle for Lexacto
 *
 * Add your messages in both
 * languages and make sure to use
 * unicode code for special characters
 * (ie. '\u00E8' without the quotes for 'è')
 */



/* ***************************** */
/*    ENGLISH RESOURCE BUNDLE    */
/* ***************************** */
var _en_lexactoBundle = new Hash({
	english: 'english',
	french: 'french',
	january: 'January',
	february: 'February',
	march: 'March',
	april: 'April',
	may: 'May',
	june: 'June',
	july: 'July',
	august: 'August',
	september: 'September',
	october: 'October',
	november: 'November',
	december: 'December',
	sunday: 'Sunday',
	monday: 'Monday',
	tuesday: 'Tuesday',
	wednesday: 'Wednesday',
	thursday: 'Thursday',
	friday: 'Friday',
	saturday: 'Saturday',
	simpleSearch: 'Simple Search',
	advancedSearch: 'Advanced Search',
	/* Add your english strings here */
	annotationCountTemplate: '{count} annotation{plural}',
	annotationTitle: 'Title',
	annotationLocation: 'Location',
	annotationLocationWeb: 'Internet',
	annotationLocationPaper: 'Paper',
	annotationLocationSharePoint: 'SharePoint',
	annotationFile: 'File',
	annotationComment: 'Comment',
	annotationDate: 'Date',
	annotationSource: 'Source',
	annotationAuthor: 'Author',
	annotationType: 'Type',
	annotationTypeChoose: 'Choose a type',
	annotationTypeLegislation: 'legislation',
	annotationTypeJurisprudence: 'jurisprudence',
	annotationTypeDoctrine: 'doctrine',
	annotationTypeWeb: 'web document',
	annotationTypeBlog: 'blog',
	annotationTypeMemory: 'TRANSLATE m\u00E9moire',
	annotationTypeOpinion: 'TRANSLATE opinion juridique',
	annotationTypeEmail: 'email',
	annotationTypeMemo: 'memo',
	annotationTypeComment: 'comment',
	annotationActive: 'Active',
	annotationSubmit: 'Submit annotation',
	annotationCancel: 'Cancel',
	annotationCancelTitle: 'Don\u0027t submit annotation'
});

/* ***************************** */
/*    FRENCH RESOURCE BUNDLE     */
/* ***************************** */
var _fr_lexactoBundle = new Hash({
	english: 'anglais',
	french: 'fran\u00E7ais',
	january: 'Janvier',
	february: 'F\u00E9vrier',
	march: 'Mars',
	april: 'Avril',
	may: 'Mai',
	june: 'Juin',
	july: 'Juillet',
	august: 'Ao\u00FBt',
	september: 'Septembre',
	october: 'Octobre',
	november: 'Novembre',
	december: 'D\u00E9cembre',
	sunday: 'Dimanche',
	monday: 'Lundi',
	tuesday: 'Mardi',
	wednesday: 'Mercredi',
	thursday: 'Jeudi',
	friday: 'Vendredi',
	saturday: 'Samedi',
	simpleSearch: 'Recherche simple',
	advancedSearch: 'Recherche avanc\u00E9e',
	/* Add your french strings here */
	annotationCountTemplate: '{count} annotation{plural}',
	annotationTitle: 'Titre',
	annotationLocation: 'Emplacement',
	annotationLocationWeb: 'Internet',
	annotationLocationPaper: 'Papier',
	annotationLocationSharePoint: 'SharePoint',
	annotationFile: 'Fichier',
	annotationComment: 'Commentaire',
	annotationDate: 'Date',
	annotationSource: 'Source',
	annotationAuthor: 'Auteur',
	annotationType: 'Type',
	annotationTypeChoose: 'Choisissez un type',
	annotationTypeLegislation: 'l\u00E9gislation',
	annotationTypeJurisprudence: 'jurisprudence',
	annotationTypeDoctrine: 'doctrine',
	annotationTypeWeb: 'document web',
	annotationTypeBlog: 'blog',
	annotationTypeMemory: 'm\u00E9moire',
	annotationTypeOpinion: 'opinion juridique',
	annotationTypeEmail: 'courriel',
	annotationTypeMemo: 'm\u00E9mo',
	annotationTypeComment: 'commentaire',
	annotationActive: 'Activ\u00E9e',
	annotationSubmit: 'Soumettre l\u0027annotation',
	annotationCancel: 'Annuler',
	annotationCancelTitle: 'Ne pas soumettre l\u0027annotation'
});

/* ************************************** */
/* *** RESOURCE BUNDLE INITIALIZATION *** */
/* ************************************** */
// Don't touch
var _bundle = new Hash();
_bundle.set('en', _en_lexactoBundle);
_bundle.set('fr', _fr_lexactoBundle);

/* **************************************** */
/* *** CALENDAR RESOURCE INITIALIZATION *** */
/* **************************************** */
var _months = new Hash();
_months.set('en',[
	_en_lexactoBundle.get('january'), _en_lexactoBundle.get('february'), _en_lexactoBundle.get('march'),
	_en_lexactoBundle.get('april'), _en_lexactoBundle.get('may'), _en_lexactoBundle.get('june'),
	_en_lexactoBundle.get('july'), _en_lexactoBundle.get('august'), _en_lexactoBundle.get('september'),
	_en_lexactoBundle.get('october'), _en_lexactoBundle.get('november'), _en_lexactoBundle.get('december')
]);
_months.set('fr', [
	_fr_lexactoBundle.get('january'), _fr_lexactoBundle.get('february'), _fr_lexactoBundle.get('march'),
	_fr_lexactoBundle.get('april'), _fr_lexactoBundle.get('may'), _fr_lexactoBundle.get('june'),
	_fr_lexactoBundle.get('july'), _fr_lexactoBundle.get('august'), _fr_lexactoBundle.get('september'),
	_fr_lexactoBundle.get('october'), _fr_lexactoBundle.get('november'), _fr_lexactoBundle.get('december')
]);

var _weekdays = new Hash();
_weekdays.set('en', [
	_en_lexactoBundle.get('sunday'), _en_lexactoBundle.get('monday'), _en_lexactoBundle.get('tuesday'),
	_en_lexactoBundle.get('wednesday'), _en_lexactoBundle.get('thursday'), _en_lexactoBundle.get('friday'),
	_en_lexactoBundle.get('saturday')
]);
_weekdays.set('fr', [
	_fr_lexactoBundle.get('sunday'), _fr_lexactoBundle.get('monday'), _fr_lexactoBundle.get('tuesday'),
	_fr_lexactoBundle.get('wednesday'), _fr_lexactoBundle.get('thursday'), _fr_lexactoBundle.get('friday'),
	_fr_lexactoBundle.get('saturday')
]);


