rails_i18n_manager 1.0.1 → 1.0.3
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 +4 -4
- data/README.md +1 -1
- data/app/assets/config/rails_i18n_manager_manifest.rb +3 -0
- data/app/lib/rails_i18n_manager/forms/translation_file_form.rb +12 -8
- data/app/models/rails_i18n_manager/application_record.rb +1 -1
- data/app/views/rails_i18n_manager/form_builder/_basic_field.html.erb +2 -2
- data/app/views/rails_i18n_manager/translations/_translation_value_fields.html.slim +1 -1
- data/lib/rails_i18n_manager/engine.rb +21 -21
- data/lib/rails_i18n_manager/version.rb +1 -1
- metadata +10 -9
- /data/{public → app/assets/images}/rails_i18n_manager/favicon.ico +0 -0
- /data/{public → app/assets/javascripts}/rails_i18n_manager/application.js +0 -0
- /data/{public → app/assets/stylesheets}/rails_i18n_manager/application.css +0 -0
- /data/{public → app/assets/stylesheets}/rails_i18n_manager/utility.css +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8f237f3945385f864800ae205e29a56db0968035bf0121e0efbf24e890b924b
|
4
|
+
data.tar.gz: c000f125974eb73ecadde8ef9d14e6dcc9bb031145d1c693e02dc60c9d564fdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 227ab42ce4c3ef87b9325f2570607f9beb4db7a66073f60adfb753623337394e7ddea82d221cfa9e74481f69d259321e2ef1e89de56fcb4e916f5e67de78c779
|
7
|
+
data.tar.gz: a02b2383a8495a14bd25a4b5a48eafb8fff08b3dd161a75f4d999b383f7a08a28b0e00ea3f6ade4d08c5382be72836aca53caa17fe1a07fc67e14ca813c2ffd8
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
> A complete translation editor and workflow
|
3
3
|
|
4
4
|
<a href="https://badge.fury.io/rb/rails_i18n_manager" target="_blank"><img height="21" style='border:0px;height:21px;' border='0' src="https://badge.fury.io/rb/rails_i18n_manager.svg" alt="Gem Version"></a>
|
5
|
-
<a href='https://github.com/westonganger/rails_i18n_manager/actions' target='_blank'><img src="https://github.com/westonganger/rails_i18n_manager/workflows/
|
5
|
+
<a href='https://github.com/westonganger/rails_i18n_manager/actions' target='_blank'><img src="https://github.com/westonganger/rails_i18n_manager/actions/workflows/test.yml/badge.svg" style="max-width:100%;" height='21' style='border:0px;height:21px;' border='0' alt="CI Status"></a>
|
6
6
|
|
7
7
|
Web interface to manage i18n translations helping to facilitate the editors of your translations. Provides a low-tech and complete workflow for importing, translating, and exporting your I18n translation files. Designed to allow you to keep the translation files inside your projects git repository where they should be.
|
8
8
|
|
@@ -23,26 +23,30 @@ module RailsI18nManager
|
|
23
23
|
return
|
24
24
|
end
|
25
25
|
|
26
|
-
|
27
|
-
|
26
|
+
file_extname = File.extname(file)
|
27
|
+
|
28
|
+
if [".yml", ".yaml", ".json"].exclude?(file_extname)
|
29
|
+
errors.add(:file, "Invalid file format. Must be yaml or json file.")
|
28
30
|
return
|
29
31
|
end
|
30
32
|
|
31
|
-
|
33
|
+
file_contents = File.read(file)
|
34
|
+
|
35
|
+
if file_contents.blank?
|
32
36
|
errors.add(:file, "Empty file provided.")
|
33
37
|
return
|
34
38
|
end
|
35
39
|
|
36
|
-
case
|
37
|
-
when ".yml"
|
38
|
-
if !YAML.safe_load(
|
39
|
-
errors.add(:file, "Invalid
|
40
|
+
case file_extname
|
41
|
+
when ".yml", ".yaml"
|
42
|
+
if !YAML.safe_load(file_contents).is_a?(Hash)
|
43
|
+
errors.add(:file, "Invalid #{file_extname.sub(".","")} file.")
|
40
44
|
return
|
41
45
|
end
|
42
46
|
|
43
47
|
when ".json"
|
44
48
|
begin
|
45
|
-
JSON.parse(
|
49
|
+
JSON.parse(file_contents)
|
46
50
|
rescue JSON::ParserError
|
47
51
|
errors.add(:file, "Invalid json file.")
|
48
52
|
return
|
@@ -7,7 +7,7 @@
|
|
7
7
|
options[:label_wrapper_html][:class].concat(" col-md-1 col-form-label text-md-end").strip!
|
8
8
|
|
9
9
|
options[:input_wrapper_html][:class] ||= ""
|
10
|
-
options[:input_wrapper_html][:class].concat(" col-
|
10
|
+
options[:input_wrapper_html][:class].concat(" col-md-11").strip!
|
11
11
|
end
|
12
12
|
|
13
13
|
if type == :text_area
|
@@ -49,7 +49,7 @@
|
|
49
49
|
|
50
50
|
<% field = capture do %>
|
51
51
|
<% if type == :view %>
|
52
|
-
<%=
|
52
|
+
<%= text_area_tag nil, options[:input_html][:value], options[:input_html] %>
|
53
53
|
<% elsif type == :select %>
|
54
54
|
<%=
|
55
55
|
f.select(
|
@@ -7,4 +7,4 @@
|
|
7
7
|
|
8
8
|
.nested-fields.translation-value-fields
|
9
9
|
= f.hidden_field :locale
|
10
|
-
= f.field :translation, type: :textarea, label: "#{locale}", required: required, help_text: help_text, field_layout: :horizontal, input_html: {rows: 1
|
10
|
+
= f.field :translation, type: :textarea, label: "#{locale}", required: required, help_text: help_text, field_layout: :horizontal, input_html: {rows: 1}
|
@@ -17,27 +17,27 @@ module RailsI18nManager
|
|
17
17
|
app.middleware.use ::ActionDispatch::Static, "#{root}/public"
|
18
18
|
end
|
19
19
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
20
|
+
initializer "rails_i18n_manager.assets.precompile" do |app|
|
21
|
+
# this initializer is only called when sprockets is in use
|
22
|
+
|
23
|
+
app.config.assets.precompile << "rails_i18n_manager_manifest.js" ### manifest file required
|
24
|
+
app.config.assets.precompile << "rails_i18n_manager/favicon.ico"
|
25
|
+
|
26
|
+
### Automatically precompile assets in specified folders
|
27
|
+
["app/assets/images/"].each do |folder|
|
28
|
+
dir = app.root.join(folder)
|
29
|
+
|
30
|
+
if Dir.exist?(dir)
|
31
|
+
Dir.glob(File.join(dir, "**/*")).each do |f|
|
32
|
+
asset_name = f.to_s
|
33
|
+
.split(folder).last # Remove fullpath
|
34
|
+
.sub(/^\/*/, '') ### Remove leading '/'
|
35
|
+
|
36
|
+
app.config.assets.precompile << asset_name
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
41
|
|
42
42
|
end
|
43
43
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_i18n_manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Weston Ganger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-12-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '6.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '6.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: slim
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -220,6 +220,11 @@ files:
|
|
220
220
|
- LICENSE
|
221
221
|
- README.md
|
222
222
|
- Rakefile
|
223
|
+
- app/assets/config/rails_i18n_manager_manifest.rb
|
224
|
+
- app/assets/images/rails_i18n_manager/favicon.ico
|
225
|
+
- app/assets/javascripts/rails_i18n_manager/application.js
|
226
|
+
- app/assets/stylesheets/rails_i18n_manager/application.css
|
227
|
+
- app/assets/stylesheets/rails_i18n_manager/utility.css
|
223
228
|
- app/controllers/rails_i18n_manager/application_controller.rb
|
224
229
|
- app/controllers/rails_i18n_manager/translation_apps_controller.rb
|
225
230
|
- app/controllers/rails_i18n_manager/translations_controller.rb
|
@@ -265,10 +270,6 @@ files:
|
|
265
270
|
- lib/rails_i18n_manager/config.rb
|
266
271
|
- lib/rails_i18n_manager/engine.rb
|
267
272
|
- lib/rails_i18n_manager/version.rb
|
268
|
-
- public/rails_i18n_manager/application.css
|
269
|
-
- public/rails_i18n_manager/application.js
|
270
|
-
- public/rails_i18n_manager/favicon.ico
|
271
|
-
- public/rails_i18n_manager/utility.css
|
272
273
|
homepage: https://github.com/westonganger/rails_i18n_manager
|
273
274
|
licenses:
|
274
275
|
- MIT
|
@@ -288,7 +289,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
288
289
|
- !ruby/object:Gem::Version
|
289
290
|
version: '0'
|
290
291
|
requirements: []
|
291
|
-
rubygems_version: 3.4.
|
292
|
+
rubygems_version: 3.4.22
|
292
293
|
signing_key:
|
293
294
|
specification_version: 4
|
294
295
|
summary: Web interface to manage i18n translations for your apps to facilitate the
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|