i18n_po_tools 0.9.0 → 0.9.1
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 +8 -8
- data/Changelog.txt +10 -0
- data/lib/i18n_po_tools/formats/android_format.rb +2 -2
- data/lib/i18n_po_tools/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YjNlYzg3ZjVlYzk0NGE0NzUwODg5NzY3OWVjYzZkNjlhZjg4ZTYxNg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NDJlZDEzOWQ3YzBlZWMxODgzMWQ1MDk1OTdmZTM1YTg0ZTI5ODIzYQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NjJhMGE0YjhjZWFlZTIzNjc3ZGRlOTZhZGZlOWNjMDhhYTBhNDJiZGI2ZTdm
|
|
10
|
+
NzY2NzNkMjg3YTc5ZGVhNDY0YTIyYjc5YzhlMWRlMzU4MGUxMmRmNzM2NjA5
|
|
11
|
+
OWU1MzBhNTE5MjJhMDNjZjFkZmJjZDlhNDFlNjZhNTM0NTFiOTE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NTIwN2QzZmExNDEwNjM4NTVkMWY0ZTlmNmY2ZjNlYTk3NDM3MjYwMTFkYWFh
|
|
14
|
+
ODY4OTk1ZWM2MmY2OGMwMWI3ZGI2YmM5ZTdlYzAwMTRhMDcxZDM4MDBkNjU2
|
|
15
|
+
MTY1MjhmMDM1ZTY2OTVhMjQyMjhhOTQ4N2MyNWY3YzM2MDE0YmM=
|
data/Changelog.txt
ADDED
|
@@ -14,8 +14,8 @@ module I18nPoTools
|
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
def write(output_filename, data)
|
|
17
|
-
content = "
|
|
18
|
-
content += "
|
|
17
|
+
content = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
|
|
18
|
+
content += "<!-- "+banner_msg+" -->\n"
|
|
19
19
|
content += "<resources>\n\n"
|
|
20
20
|
data.each_pair do |k,v|
|
|
21
21
|
content += " <string name=\""+(k.nil? ? '':k)+"\">"+(v.nil? ? '':Nokogiri::HTML.fragment(v).to_html)+"</string>\n"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: i18n_po_tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Igor Stepin
|
|
@@ -129,6 +129,7 @@ extensions: []
|
|
|
129
129
|
extra_rdoc_files: []
|
|
130
130
|
files:
|
|
131
131
|
- .gitignore
|
|
132
|
+
- Changelog.txt
|
|
132
133
|
- Design.md
|
|
133
134
|
- Design.ru.md
|
|
134
135
|
- Gemfile
|