summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/en_US.yml1
-rw-r--r--lib/tasks/i18n.rake30
2 files changed, 17 insertions, 14 deletions
diff --git a/lib/en_US.yml b/lib/en_US.yml
index 5c4190f..76e49a8 100644
--- a/lib/en_US.yml
+++ b/lib/en_US.yml
@@ -74,6 +74,7 @@ en_US:
signup_info: Create a new user account. For higher security, we recommend you create
your account via the Bitmask application instead.
support_info: Can't login? Create a new support ticket anonymously.
+ get_help: Get Help
########################################
diff --git a/lib/tasks/i18n.rake b/lib/tasks/i18n.rake
index 896f67e..6ffbb23 100644
--- a/lib/tasks/i18n.rake
+++ b/lib/tasks/i18n.rake
@@ -26,24 +26,26 @@ namespace :i18n do
#
desc "combine config/locales/*.en.yml to lib/en_US.yml"
task :bundle do
- en_yml = File.join(Rails.root, 'lib', 'en_US.yml')
- File.open(en_yml, 'w') do |output|
- output.write("en_US:\n\n"+
- "### Do NOT edit this file directly, as all changes will be overwritten by `rake i18n:bundle`\n"+
- "### Instead, make changes in the appropriate file in config/locales.\n"+
- "### Source strings in transifex are automatically updated from this file (via github url)")
+ Dir.chdir(Rails.root) do
+ en_yml = 'lib/en_US.yml'
+ File.open(en_yml, 'w') do |output|
+ output.write("en_US:\n\n"+
+ "### Do NOT edit this file directly, as all changes will be overwritten by `rake i18n:bundle`\n"+
+ "### Instead, make changes in the appropriate file in config/locales.\n"+
+ "### Source strings in transifex are automatically updated from this file (via github url)")
- Dir.chdir('config/locales/') do
- Dir.glob('*.en.yml').sort.each do |file|
- process_locale_file(output, file)
+ Dir.chdir('config/locales/en') do
+ Dir.glob('*.en.yml').sort.each do |file|
+ process_locale_file(output, file)
+ end
end
- end
- Dir.chdir('engines/') do
- Dir.glob('*/config/locales/en.yml').sort.each do |file|
- process_locale_file(output, file)
+ Dir.chdir('engines') do
+ Dir.glob('*/config/locales/en.yml').sort.each do |file|
+ process_locale_file(output, file)
+ end
end
+ puts "You can now find the bundled locale yml in: #{en_yml}"
end
- puts "You can now find the bundled locale yml in: #{en_yml}"
end
end