zendesk_apps_tools 1.18.1 → 1.18.2
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bfc64c01bafd525a7d0b99f2905a29e63dfd8599
|
4
|
+
data.tar.gz: c7f84e9d8c6934d3c78a5c502023a2f8d0213c39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59fc11dd290bffae7972df0be3272579169dbcea5ac583385039372315355dbf9bccf16169f606cd3c14dc69306bc666ee595df3def99f529c3bdcf338800fd1
|
7
|
+
data.tar.gz: bd7d73b4c5fd386bd35a8fa167f3eb5e2e8c2433001cb365e9d944a8a9b0703fc562efaa106e87412001bbe5bffb9fdad6d27ac2c8799da080dd64ed0282d37e
|
@@ -1,10 +1,14 @@
|
|
1
1
|
module ZendeskAppsTools
|
2
2
|
class LocaleIdentifier
|
3
|
-
attr_reader :
|
3
|
+
attr_reader :locale_id
|
4
4
|
|
5
5
|
# Convert :"en-US-x-12" to 'en-US'
|
6
6
|
def initialize(code)
|
7
|
-
@
|
7
|
+
@locale_id = if code.start_with?('en-US') #default locale
|
8
|
+
'en-US'
|
9
|
+
else
|
10
|
+
code.sub(/-x-.*/, '').downcase
|
11
|
+
end
|
8
12
|
end
|
9
13
|
end
|
10
14
|
end
|
@@ -67,7 +67,7 @@ module ZendeskAppsTools
|
|
67
67
|
locale_response = api_request(locale_url, request_builder).body
|
68
68
|
translations = JSON.parse(locale_response)['locale']['translations']
|
69
69
|
|
70
|
-
locale_name = ZendeskAppsTools::LocaleIdentifier.new(locale['locale']).
|
70
|
+
locale_name = ZendeskAppsTools::LocaleIdentifier.new(locale['locale']).locale_id
|
71
71
|
write_json("#{destination_root}/translations/#{locale_name}.json", nest_translations_hash(translations, key_prefix))
|
72
72
|
end
|
73
73
|
say("Translations updated", :green)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zendesk_apps_tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.18.
|
4
|
+
version: 1.18.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James A. Rosen
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2014-
|
14
|
+
date: 2014-06-04 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: thor
|