Remove superfluous "language" from diary strings - it sounds weird (other option would be to change to "the {{language}} language")

This commit is contained in:
Thomas Wood 2009-06-12 18:48:36 +00:00
parent 13040367f3
commit 5123163e92
2 changed files with 2 additions and 2 deletions

View file

@ -102,7 +102,7 @@ class DiaryEntryController < ApplicationController
:conditions => ["users.visible = ? AND diary_entries.language_code = ?", true, params[:language]],
:order => 'created_at DESC', :limit => 20)
@title = "OpenStreetMap diary entries in #{Language.find(params[:language]).english_name}"
@description = "Recent diary entries from users of OpenStreetMap in #{Language.find(params[:language]).english_name} language"
@description = "Recent diary entries from users of OpenStreetMap in #{Language.find(params[:language]).english_name}"
@link = "http://#{SERVER_URL}/diary/#{params[:language]}"
else
@entries = DiaryEntry.find(:all, :include => :user,