jekyll-task-i18n 1.0.9 → 1.1.0

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: 4156d92b5c76de010ee1091cb8f5bf7c432c0ad15ac8026fd5d6c2d5afb76b21
4
- data.tar.gz: 7583965e477957041691d0c8ee36ecd750abf8e9c34e907e40daaa09c513d3bf
3
+ metadata.gz: 1b3f56e5eb01ea56294f8c26092d3e50a4ea3df69be89755e51b95d681dd05d0
4
+ data.tar.gz: d3b5cbcbcea5037a3b27a85e21437b3c9658af961ddaed9a85b9bd643e0ed053
5
5
  SHA512:
6
- metadata.gz: a3bc0412d6f06731f3ff1141399c2cebeceb0d48ebf020a4a870d6612e0a8dc990c9904d208a886f8ad58d28111bfb86a5e400f3b2a1e3f6572741f474abaea3
7
- data.tar.gz: edd06c8e0b2319434e4fb562c96219b17aad03d724377aaaac488ae7c1a2765b8066fb9215e255b3909731132d86e2953b7c3295a5cbe139a2332338f7d22265
6
+ metadata.gz: dd2cd2121b56c5f7185032ba8446b14dece1089bfda1de2d3458f97e0403b416eaba10bf0449e3df15c2b4d903aa18198980e1eb56529cc30b51cf63dc27b837
7
+ data.tar.gz: d018e82e47cd8093439d8ed1037762cf491aa411f9e7fff9b20db4a378a624d7e7f05524fe19ef4fee101245fb7f26e936d03664ab7c7e1d47f97070912ada55
@@ -17,7 +17,7 @@
17
17
  module Jekyll
18
18
  module Task
19
19
  class I18n
20
- VERSION = "1.0.9"
20
+ VERSION = "1.1.0"
21
21
  end
22
22
  end
23
23
  end
@@ -99,9 +99,10 @@ module Jekyll
99
99
  path.source_pot_file.open("w") do |output|
100
100
  output.puts(generator.generate)
101
101
  end
102
- msgcat("--output", path.pot_file.to_s,
103
- "--no-all-comments",
102
+ msgcat("--no-all-comments",
103
+ "--no-update-po-revision-date",
104
104
  "--no-wrap",
105
+ "--output", path.pot_file.to_s,
105
106
  "--remove-header-field=Language-Team",
106
107
  "--remove-header-field=Last-Translator",
107
108
  "--remove-header-field=POT-Creation-Date",
@@ -114,7 +115,8 @@ module Jekyll
114
115
  end
115
116
  unless path.edit_po_file.exist?
116
117
  if path.po_file.exist?
117
- msgcat("--no-wrap",
118
+ msgcat("--no-update-po-revision-date",
119
+ "--no-wrap",
118
120
  "--output", path.edit_po_file.to_s,
119
121
  path.po_file.to_s)
120
122
  else
@@ -137,7 +139,8 @@ module Jekyll
137
139
  "--sort-by-file",
138
140
  path.po_file.to_s,
139
141
  path.edit_po_file.to_s)
140
- msgcat("--no-wrap",
142
+ msgcat("--no-update-po-revision-date",
143
+ "--no-wrap",
141
144
  "--output", path.edit_po_file.to_s,
142
145
  path.edit_po_file.to_s)
143
146
  end
@@ -149,7 +152,8 @@ module Jekyll
149
152
  "--sort-by-file",
150
153
  path.all_po_file.to_s,
151
154
  path.edit_po_file.to_s)
152
- msgcat("--no-wrap",
155
+ msgcat("--no-update-po-revision-date",
156
+ "--no-wrap",
153
157
  "--output", path.edit_po_file.to_s,
154
158
  path.edit_po_file.to_s)
155
159
  end
@@ -193,6 +197,7 @@ module Jekyll
193
197
  "--no-location",
194
198
  "--no-obsolete-entries",
195
199
  "--no-report-warning",
200
+ "--no-update-po-revision-date",
196
201
  "--no-wrap",
197
202
  "--output", po_file,
198
203
  "--remove-header-field=POT-Creation-Date",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-task-i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou