X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0e96027a209d59ff5e7f5c2b1405febc59664a16..ceb6a86430343b379e09771d7f040c223adde69d:/app/controllers/diary_entry_controller.rb diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index 018f4a48a..d5f6f59fc 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -8,7 +8,7 @@ class DiaryEntryController < ApplicationController before_filter :check_database_writable, :only => [:new, :edit] def new - @title = 'New diary entry' + @title = I18n.t('diary_entry.list.new') if params[:diary_entry] @diary_entry = DiaryEntry.new(params[:diary_entry]) @@ -26,7 +26,7 @@ class DiaryEntryController < ApplicationController end def edit - @title= 'Edit diary entry' + @title= I18n.t('diary_entry.edit.title') @diary_entry = DiaryEntry.find(params[:id]) if @user != @diary_entry.user @@ -70,7 +70,7 @@ class DiaryEntryController < ApplicationController render :action => 'no_such_user', :status => :not_found end else - @title = "Users' diaries" + @title = I18n.t('diary_entry.list.title') @entry_pages, @entries = paginate(:diary_entries, :include => :user, :conditions => ["users.visible = ?", true], :order => 'created_at DESC',