From 06599ffb5f1c9a3f05f6da546acc1d93fb1a7331 Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Tue, 14 Feb 2012 07:46:24 -0200 Subject: [PATCH] Update f.button docs to reflect real label implementation --- actionpack/lib/action_view/helpers/form_helper.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb index bdfef920c5..79a190a07b 100644 --- a/actionpack/lib/action_view/helpers/form_helper.rb +++ b/actionpack/lib/action_view/helpers/form_helper.rb @@ -1084,14 +1084,14 @@ module ActionView # <% end %> # # In the example above, if @post is a new record, it will use "Create Post" as - # submit button label, otherwise, it uses "Update Post". + # button label, otherwise, it uses "Update Post". # - # Those labels can be customized using I18n, under the helpers.submit key and accept - # the %{model} as translation interpolation: + # Those labels can be customized using I18n, under the helpers.submit key + # (the same as submit helper) and accept the %{model} as translation interpolation: # # en: # helpers: - # button: + # submit: # create: "Create a %{model}" # update: "Confirm changes to %{model}" # @@ -1099,7 +1099,7 @@ module ActionView # # en: # helpers: - # button: + # submit: # post: # create: "Add %{model}" #