Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 3039 → Rev 3040

/trunk/widget/modules/cartopoint/squelettes/scripts/carto.js
120,19 → 120,16
stationNbreFormate = stations.stats.stations.formaterNombre();
}
var stats = obsNbreFormate+' ' + msg('observation');
stats += (obsNbre > 1) ? 's' : '' ;
var stats = obsNbreFormate + ' ' + ((obsNbre > 1) ? msg('observations') : msg('observation'));
 
if (photos != null && photos == 1) {
stats += ' ' + msg('avec photos') + ' ';
}
stats += ' ' + msg('sur') + ' '+(stationNbre+ communeNbre)+' ' + msg('station');
stats += (stationNbre > 1) ? 's' : '' ;
stats += ' ' + msg('sur') + ' ' + (stationNbre+ communeNbre)+' ' + ((stationNbre > 1) ? msg('stations') : msg('station'));
if (nt == '*') {
stats += ' ' + msg('parmi') + ' '+plteNbreFormate+' ' + msg('taxon');
stats += (plteNbre > 1) ? 's' : '' ;
stats += ' ' + msg('parmi') + ' '+plteNbreFormate+' ' + ((plteNbre > 1) ? msg('taxons') : msg('taxon'));
} else {
if($('.taxon-actif .taxon').text() != '') {
var element = $('.taxon-actif .taxon').clone();