Fix typo, which meant that there was a missing translation when selecting an area in the databrowser data browser that was too large

This commit is contained in:
Shaun McDonald 2009-05-31 23:02:50 +00:00
parent ceb4677d7f
commit 010dc87195

View file

@ -187,7 +187,7 @@ page << <<EOJ
var size = projected.getWidth() * projected.getHeight(); var size = projected.getWidth() * projected.getHeight();
if (size > 0.25) { if (size > 0.25) {
setStatus("#{I18n.t('browse.start_rjs.unable_to_load')} " + size + " #{I18n.t('must_be_smaller')}"); setStatus("#{I18n.t('browse.start_rjs.unable_to_load')} " + size + " #{I18n.t('browse.start_rjs.must_be_smaller')}");
} else { } else {
loadGML("/api/#{API_VERSION}/map?bbox=" + projected.toBBOX()); loadGML("/api/#{API_VERSION}/map?bbox=" + projected.toBBOX());
} }