Ext.namespace('fcbm.i18n');

fcbm.i18n.FormuleLeuco = function () {
	
	var tab = new Array();
	var nb = 'Nb';
	var unit = '10<sup>9</sup>/l';
	
	tab[0] = {
		id: 'PNN',
		abbrev: 'PNN',
		shortName: 'PNN',
		name: 'Polynucléaires neutrophiles',
		special: 0
	};
	tab[1] = {
		id: 'PNE',
		abbrev: 'PNE',
		shortName: 'PNE',
		name: 'Polynucléaires éosinophiles',
		special: 0
	};
	tab[2] = {
		id: 'PNB',
		abbrev: 'PNB',
		shortName: 'PNB',
		name: 'Polynucléaires basophiles',
		special: 0
	};
	tab[3] = {
		id: 'LYM',
		abbrev: 'LYM',
		shortName: 'Lymph',
		name: 'Lymphocytes',
		special: 0
	};
	tab[4] = {
		id: 'MON',
		abbrev: 'MON',
		shortName: 'Mono',
		name: 'Monocytes',
		special: 0
	};
	tab[5] = {
		id: 'BAND',
		abbrev: 'BAND',
		shortName: 'Band',
		name: 'Band form',
		special: 0
	};
	tab[6] = {
		id: 'MET',
		abbrev: 'MET',
		shortName: 'Méta',
		name: 'Métamyélocytes',
		special: 0
	};
	tab[7] = {
		id: 'MLO',
		abbrev: 'MYE',
		shortName: 'Myélo',
		name: 'Myélocytes',
		special: 0
	};
	tab[8] = {
		id: 'PMO',
		abbrev: 'PMY',
		shortName: 'Promyélo',
		name: 'Promyélocytes',
		special: 0
	};
	tab[9] = {
		id: 'BLA',
		abbrev: 'BLAS',
		shortName: 'Blastes',
		name: 'Blastes',
		special: 0
	};
	tab[10] = {
		id: 'PLA',
		abbrev: 'PLAS',
		shortName: 'Plasmo',
		name: 'Plasmocytes',
		special: 0
	};
	tab[11] = {
		id: 'LYA',
		abbrev: 'LYA',
		shortName: 'Lymph Atyp',
		name: 'Lymphocytes atypiques',
		special: 0
	};
	tab[12] = {
		id: 'PLO',
		abbrev: 'PLY',
		shortName: 'ProLymph',
		name: 'Prolymphocytes',
		special: 0
	};
	tab[13] = {
		id: 'TCO',
		abbrev: 'TRI',
		shortName: 'Tricho',
		name: 'Tricholeucocytes',
		special: 0
	};
	tab[14] = {
		id: 'ACA',
		abbrev: 'ACA',
		shortName: 'Autres C. anorm',
		name: 'Autres cellules anormales',
		special: 0
	};
	tab[15] = {
		id: 'UNC',
		abbrev: 'C ??',
		shortName: 'Cell &quot;?&quot;',
		name: 'Cellules indéterminées',
		special: 0
	};
	tab[16] = {
		id: 'ERB',
		abbrev: 'ERY',
		shortName: 'Erythro',
		name: 'Erythroblastes',
		special: 0
	};


	this.getTranslationArray = function(){
		return tab;
	}	
	
}

