aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-02-18 22:02:34 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-02-18 22:02:34 +0530
commit2cb86cdb8a0e1d66a646ce81c8e9a065427f89e3 (patch)
tree1c1f928ff506c4a605356e2b1da522e08ff12020 /actionpack/lib/action_view/helpers
parent2f689d462d8e94365724c5575b14ab997e11bb43 (diff)
parent709f33d6042463bd4dbfb16f6f8946785556d5ab (diff)
downloadrails-2cb86cdb8a0e1d66a646ce81c8e9a065427f89e3.tar.gz
rails-2cb86cdb8a0e1d66a646ce81c8e9a065427f89e3.tar.bz2
rails-2cb86cdb8a0e1d66a646ce81c8e9a065427f89e3.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r--actionpack/lib/action_view/helpers/form_helper.rb10
1 files 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 44e24fecd1..cae345a1d6 100644
--- a/actionpack/lib/action_view/helpers/form_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_helper.rb
@@ -1102,14 +1102,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}"
#
@@ -1117,7 +1117,7 @@ module ActionView
#
# en:
# helpers:
- # button:
+ # submit:
# post:
# create: "Add %{model}"
#