]> git.openstreetmap.org Git - rails.git/commitdiff
Fix typo, which meant that there was a missing translation when selecting an area...
authorShaun McDonald <shaun@shaunmcdonald.me.uk>
Sun, 31 May 2009 23:02:50 +0000 (23:02 +0000)
committerShaun McDonald <shaun@shaunmcdonald.me.uk>
Sun, 31 May 2009 23:02:50 +0000 (23:02 +0000)
app/views/browse/start.rjs

index ccb39e4ff3e2793f282e825688ff49d4fc595edb..c7a795b9806562082d750a26ac07a512a7c4354b 100644 (file)
@@ -187,7 +187,7 @@ page << <<EOJ
     var size = projected.getWidth() * projected.getHeight();
 
     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 {
       loadGML("/api/#{API_VERSION}/map?bbox=" + projected.toBBOX());
     }