fastlane-plugin-google_sheet_localize 0.1.63 → 0.1.64
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 05b1531dfb2bd531c4301e51e592906fbcd9700e31feba28fe2fafebe5a0248c
|
|
4
|
+
data.tar.gz: 689461c40ae49ded7fcb9780cf0153b8968a4325093194bc96ad146c9bcd2729
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe6535025f73b1c16768ba4374dcc6f3b4ead606ef5eee1e819c3f32c8b9f66964417b4f5d01e1d1bf7f047b4607d342e195dc962b0753764cc0877beff4b82c
|
|
7
|
+
data.tar.gz: b8534eb4b9f7893ad540e36c463e5e84608ffdb51131db680560972e31e41cb92b3f444add956ce3622e10ddbe0bd50a9ba305a71195855621e7186742118420
|
|
@@ -103,7 +103,7 @@ module Fastlane
|
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
File.open(swiftFilepath, "w") do |f|
|
|
106
|
-
f.write("import Foundation\n\n\npublic struct Localization {\n")
|
|
106
|
+
f.write("import Foundation\n\n// swiftlint:disable file_length\npublic struct Localization {\n")
|
|
107
107
|
filteredItems.each { |item|
|
|
108
108
|
|
|
109
109
|
identifier = item['identifierIos']
|
|
@@ -165,7 +165,7 @@ module Fastlane
|
|
|
165
165
|
default_language_object = self.filterUnusedRows(default_language_object,'identifierIos')
|
|
166
166
|
|
|
167
167
|
defaultLanguageText = default_language_object[index]['text']
|
|
168
|
-
puts "found empty text for
|
|
168
|
+
puts "found empty text for:\n\tidentifier: #{identifier}\n\tlanguage:#{language['language']}\n\treplacing it with: #{defaultLanguageText}"
|
|
169
169
|
text = self.mapInvalidPlaceholder(defaultLanguageText)
|
|
170
170
|
end
|
|
171
171
|
|
|
@@ -216,7 +216,7 @@ module Fastlane
|
|
|
216
216
|
default_language_object = self.filterUnusedRows(default_language_object,'identifierAndroid')
|
|
217
217
|
|
|
218
218
|
defaultLanguageText = default_language_object[index]['text']
|
|
219
|
-
puts "found empty text for
|
|
219
|
+
puts "found empty text for:\n\tidentifier: #{identifier}\n\tlanguage:#{language['language']}\n\treplacing it with: #{defaultLanguageText}"
|
|
220
220
|
text = defaultLanguageText
|
|
221
221
|
end
|
|
222
222
|
|