Как следует из названия. Как бы я интернационализировать что-то такое, как это:Как мне интернационализировать ссылку на подтверждение?
= link_to t('.close'), topic_path(@topic, topic: { closed: '0' }),
method: :put, confirm: 'Are you sure you want to close this topic?',
class: 'btn btn-mini', title: "Close topic '#{@topic.title}'"
То, что я хочу сделать, это I18N часть подтверждения ссылки на метод. Как мне это сделать? Я слишком долго играл с файлом topic.en.yml (показано ниже). Некоторая помощь будет оценена по достоинству.
en:
topics:
new:
create_topic: 'Post Topic'
create:
success: 'Topic successfully created'
error: 'Unable to successfully create topic'
show:
close: 'Close'
# close_confirm: 'Are you sure you want to close this topic?'
delete: 'Delete'
reopen: 'Re-open'
edit:
save_changes: 'Save Changes'
update:
success: 'Topic updated'
error: 'Sorry, there was a problem updating the topic'
destroy:
success: 'Topic successfully removed'
error: 'There was a problem deleting the forum'
form:
title: 'Title (required)'
enter_topic_title: 'Enter the topic title.'
message: 'Message'
first_post: 'This will be the first post'
sticky: 'Sticky'
closed: 'Closed'