diff options
author | elijah <elijah@riseup.net> | 2013-06-23 22:21:55 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-07-04 04:04:55 -0700 |
commit | 7d2163263c8e5af7f4d7a2d40cd55eefac188e58 (patch) | |
tree | 1a368298e2fb378dcf74ece1ae4990f681dca240 | |
parent | e5a37b4ed76df8aec6131789e7361ed6efa3394b (diff) |
moved app locales to core gem.
-rw-r--r-- | config/locales/en.yml | 21 | ||||
-rw-r--r-- | core/config/locales/en.yml | 25 |
2 files changed, 25 insertions, 21 deletions
diff --git a/config/locales/en.yml b/config/locales/en.yml index f4e35f2..63f1c3e 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -1,22 +1 @@ -# Sample localization file for English. Add more files in this directory for other locales. -# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points. - en: - hello: "Hello world" - no_such_thing: "No such %{thing}." - - overview: "Overview" - user_control_panel: "user control panel" - - created: "Created" - created_by_on: "Created by %{user} on %{time}" - updated: "Updated" - - none: "None" - unknown: "Unknown" - admin: "Admin" - anonymous: "Anonymous" - save: "Save" - - changes_saved: "Changes saved successfully." - thing_was_successfully_created: "%{thing} was successfully created."
\ No newline at end of file diff --git a/core/config/locales/en.yml b/core/config/locales/en.yml new file mode 100644 index 0000000..24a2a13 --- /dev/null +++ b/core/config/locales/en.yml @@ -0,0 +1,25 @@ +en: + no_such_thing: "No such %{thing}." + thing_was_successfully_created: "%{thing} was successfully created." + + overview: "Overview" + user_control_panel: "user control panel" + + created: "Created" + created_by_on: "Created by %{user} on %{time}" + updated: "Updated" + + none: "None" + unknown: "Unknown" + admin: "Admin" + anonymous: "Anonymous" + save: "Save" + changes_saved: "Changes saved successfully." + + download_client: "Download LEAP" + download_client_info: "The LEAP application allows you to use %{provider} services. It is available for Linux, Mac, Windows, and Android." + login_info: "Log in to change your account settings, create support tickets, and manage payments." + signup_info: "Sign up for a new user account via this website (it is better if you use the LEAP application to sign up, but this website works too)." + welcome: "Welcome to %{provider}." + get_help: "Get Help" + help_info: "Can't login? Create a new support ticket anonymously."
\ No newline at end of file |