immosquare-yaml 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50e7d05885b777e715b408072108ddcaae7936b709389813b8887d92f5184f15
4
- data.tar.gz: ff4a85e7b21ac1e42b7a702be0e8b1fa597bc23ed4cf016690cdad703fc7ca47
3
+ metadata.gz: 34fe15584e7edf73f2dec2857095829c4beb6a680913dc78e045401f23c7cd71
4
+ data.tar.gz: b8c4daa1be8c56c243b2699e3871f15d5169ff8e19ce4b099b6e825494ff5ab1
5
5
  SHA512:
6
- metadata.gz: bcac3817a355e9a734e4d4686d54716c86eef5fcb399c5644ed55a3a4dc14a4d6f453045c739dfbfb9a061812d9d5ef0322d94144568143f3a051729e18f5036
7
- data.tar.gz: a64600294f32924511fbd9ede26f83469ba0497a44986c7573053d8cd2c2f16807b5dabe3db4e5624ceaaa45bf8c73ea036acf2987aa8ae1499edf119ebd8b4f
6
+ metadata.gz: 55beab9ea32cfd5d2643c9785b3f9bfa5023c406aa5cdc7d843a84afb2fa537d649823c25b7ebea199a961ec64d7cf46ef3ca66ab142e54b128f004566fe9177
7
+ data.tar.gz: d5c3144daba11a689d746fb0ccc7265da0fea8a2787415336d13662b9d16b3c550c7baffe89075f4def8db989faaa4834c52e3904d2d1a7199a0e91aca9235a9
@@ -234,7 +234,7 @@ module ImmosquareYaml
234
234
  "- Do not escape apostrophes in translated strings; leave them as they are.\n" \
235
235
  "- Special characters, except apostrophes, that need to be escaped in translated strings should be escaped using a single backslash (\\), not double (\\\\).\n" \
236
236
  "- If a string cannot be translated use the string '#{cant_be_translated}' translated as the translation value witouth quote (simple or double) quote, just the string\n" \
237
- "- If you dont know the correct translatation but the original word seems to make sense in the original language use it for the translated field otherwise use the #{cant_be_translated} strategy of the preceding point\n" \
237
+ "- If you dont know the correct translatation use the #{cant_be_translated} strategy of the preceding point\n" \
238
238
  "- Use only doubles quotes (\") to enclose translated strings and avoid using single quotes (').\n" \
239
239
  "- Your output must ONLY be an array with the same number of pairs as the input, without any additional text or explanation.\n" \
240
240
  "- You need to check that the globle array is correctly closed at the end of the response. (the response must therefore end with ]] to to be consistent)"
@@ -1,3 +1,3 @@
1
1
  module ImmosquareYaml
2
- VERSION = "0.1.4".freeze
2
+ VERSION = "0.1.5".freeze
3
3
  end
@@ -2,18 +2,21 @@ namespace :immosquare_yaml do
2
2
 
3
3
  ##============================================================##
4
4
  ## Function to translate translation files in rails app
5
- ## rake immosquare_yaml:translate LOCALE=fr
5
+ ## rake immosquare_yaml:translate SOURCE_LOCALE=fr
6
6
  ##============================================================##
7
7
  desc "Translate translation files in rails app"
8
8
  task :translate => :environment do
9
9
  begin
10
- source_locale = ENV.fetch("LOCALE", nil) || "fr"
11
- raise("Please provide a valid locale") if !I18n.available_locales.map(&:to_s).include?(source_locale)
12
-
10
+ source_locale = ENV.fetch("SOURCE_LOCALE", nil) || "fr"
11
+ reset_translations = ENV.fetch("RESET_TRANSLATIONS", nil) || false
12
+ raise("Please provide a valid locale") if !I18n.available_locales.map(&:to_s).include?(source_locale)
13
+ raise("Please provide a valid boolean for reset_translations") if ![true, false].include?(reset_translations)
14
+
13
15
  locales = I18n.available_locales.map(&:to_s).reject {|l| l == source_locale }
16
+ puts("Translating #{source_locale} to #{locales.join(", ")} with reset_translations=#{reset_translations}")
14
17
  Dir.glob("#{Rails.root}/config/locales/**/*#{source_locale}.yml").each do |file|
15
18
  locales.each do |locale|
16
- ImmosquareYaml::Translate.translate(file, locale)
19
+ ImmosquareYaml::Translate.translate(file, locale, reset_translations)
17
20
  end
18
21
  end
19
22
  rescue StandardError => e
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: immosquare-yaml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - IMMO SQUARE