summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-07-06 17:18:20 -0700
committerelijah <elijah@riseup.net>2013-07-06 17:18:20 -0700
commit7dd56114d8bf6749f140835358de4f8ebeaf81ba (patch)
treecdb97377acdc6506fa3227b607eb88c0b40401f4
parent84acdd9133dd30d88b42d63b08d25067e168980d (diff)
minor - i18n text edit
-rw-r--r--core/config/locales/en.yml1
-rw-r--r--help/app/views/tickets/new.html.haml2
-rw-r--r--help/config/locales/en.yml2
3 files changed, 3 insertions, 2 deletions
diff --git a/core/config/locales/en.yml b/core/config/locales/en.yml
index 38724ca..25b377a 100644
--- a/core/config/locales/en.yml
+++ b/core/config/locales/en.yml
@@ -1,6 +1,7 @@
en:
no_such_thing: "No such %{thing}."
thing_was_successfully_created: "%{thing} was successfully created."
+ create_thing: "Create %{thing}"
overview: "Overview"
user_control_panel: "user control panel"
diff --git a/help/app/views/tickets/new.html.haml b/help/app/views/tickets/new.html.haml
index 4d35659..c0a343d 100644
--- a/help/app/views/tickets/new.html.haml
+++ b/help/app/views/tickets/new.html.haml
@@ -23,7 +23,7 @@
- if admin?
= c.input :private, :as => :boolean, :label => false, :inline_label => true
.form-actions
- = f.button :submit, :class => 'btn-primary'
+ = f.button :submit, :class => 'btn-primary', :value => t(:create_thing, :thing => t(:ticket))
- if logged_in?
= link_to t(:cancel), auto_tickets_path, :class => :btn
- else
diff --git a/help/config/locales/en.yml b/help/config/locales/en.yml
index 79e745f..342adea 100644
--- a/help/config/locales/en.yml
+++ b/help/config/locales/en.yml
@@ -1,6 +1,6 @@
en:
access_ticket_text: >
- You can later access this ticket at the url %{full_url}. You might want to bookmark this page to find it again.
+ You can later access this ticket at the URL %{full_url}. You might want to bookmark this page to find it again.
Anybody with this URL will be able to access this ticket, so if you are on a shared computer you might want to
remove it from the browser history.
support_tickets: "Support Tickets"