From: Shaun McDonald Date: Sun, 31 May 2009 23:02:50 +0000 (+0000) Subject: Fix typo, which meant that there was a missing translation when selecting an area... X-Git-Tag: live~8291 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/010dc8719596add0fec05a7d43f677dffdf03beb Fix typo, which meant that there was a missing translation when selecting an area in the databrowser data browser that was too large --- diff --git a/app/views/browse/start.rjs b/app/views/browse/start.rjs index ccb39e4ff..c7a795b98 100644 --- a/app/views/browse/start.rjs +++ b/app/views/browse/start.rjs @@ -187,7 +187,7 @@ page << < 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 { loadGML("/api/#{API_VERSION}/map?bbox=" + projected.toBBOX()); }