missing_translation 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c635cce1eb98a5bd1f740a60b7311e85cd2ec15532add15927a7012167f0ed40
4
+ data.tar.gz: c0c7c35e2f50c131d1a49461351a983daf2b700a96843918916f17a340d5c7d5
5
+ SHA512:
6
+ metadata.gz: 1d50f60a5a94a4899b11d48b578ae9796835f1785894da4c969798cecea213da022bdc44d7bf44872f58fa31b4661bdcf29cb56ddb21b9ebe56c1b90f6adc565
7
+ data.tar.gz: 29c527801c6a65cd9be76afe5f47d83090b9bcf1e45a37d9ad94ec29a1ca1d3efd55e3aa8581b9018035b25aa9747a1f5356123984dc567227eb39b514109689
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-10-21
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at kevin@9troisquarts.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in missing_translation.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.21"
data/Gemfile.lock ADDED
@@ -0,0 +1,71 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ missing_translation (0.1.0)
5
+ httparty (~> 0.18)
6
+ net-sftp (~> 3.0.0)
7
+ thor (~> 1.1)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ ast (2.4.2)
13
+ diff-lcs (1.5.0)
14
+ httparty (0.20.0)
15
+ mime-types (~> 3.0)
16
+ multi_xml (>= 0.5.2)
17
+ json (2.6.2)
18
+ mime-types (3.4.1)
19
+ mime-types-data (~> 3.2015)
20
+ mime-types-data (3.2022.0105)
21
+ multi_xml (0.6.0)
22
+ net-sftp (3.0.0)
23
+ net-ssh (>= 5.0.0, < 7.0.0)
24
+ net-ssh (6.1.0)
25
+ parallel (1.22.1)
26
+ parser (3.1.2.1)
27
+ ast (~> 2.4.1)
28
+ rainbow (3.1.1)
29
+ rake (13.0.6)
30
+ regexp_parser (2.6.0)
31
+ rexml (3.2.5)
32
+ rspec (3.11.0)
33
+ rspec-core (~> 3.11.0)
34
+ rspec-expectations (~> 3.11.0)
35
+ rspec-mocks (~> 3.11.0)
36
+ rspec-core (3.11.0)
37
+ rspec-support (~> 3.11.0)
38
+ rspec-expectations (3.11.1)
39
+ diff-lcs (>= 1.2.0, < 2.0)
40
+ rspec-support (~> 3.11.0)
41
+ rspec-mocks (3.11.1)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.11.0)
44
+ rspec-support (3.11.1)
45
+ rubocop (1.37.0)
46
+ json (~> 2.3)
47
+ parallel (~> 1.10)
48
+ parser (>= 3.1.2.1)
49
+ rainbow (>= 2.2.2, < 4.0)
50
+ regexp_parser (>= 1.8, < 3.0)
51
+ rexml (>= 3.2.5, < 4.0)
52
+ rubocop-ast (>= 1.22.0, < 2.0)
53
+ ruby-progressbar (~> 1.7)
54
+ unicode-display_width (>= 1.4.0, < 3.0)
55
+ rubocop-ast (1.22.0)
56
+ parser (>= 3.1.1.0)
57
+ ruby-progressbar (1.11.0)
58
+ thor (1.2.1)
59
+ unicode-display_width (2.3.0)
60
+
61
+ PLATFORMS
62
+ arm64-darwin-21
63
+
64
+ DEPENDENCIES
65
+ missing_translation!
66
+ rake (~> 13.0)
67
+ rspec (~> 3.0)
68
+ rubocop (~> 1.21)
69
+
70
+ BUNDLED WITH
71
+ 2.3.22
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Kevin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # MissingTranslation
2
+
3
+ This gem allow to upload and download rails translations to missing translation using
4
+
5
+ ## Installation
6
+
7
+ Install the gem and add to the application's Gemfile by executing:
8
+
9
+ $ bundle add missing_translation
10
+
11
+ If bundler is not being used to manage dependencies, install the gem by executing:
12
+
13
+ $ gem install missing_translation
14
+
15
+ ## Usage
16
+
17
+ ```
18
+ bundle exec missing_translation install
19
+ ```
20
+
21
+ ### Upload
22
+
23
+ ```
24
+ bundle exec missing_translation upload
25
+ ```
26
+
27
+ ### Download
28
+
29
+ ```
30
+ bundle exec missing_translation download
31
+ ```
32
+ ## Development
33
+
34
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
35
+
36
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
37
+
38
+ ## Contributing
39
+
40
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/missing_translation. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/missing_translation/blob/master/CODE_OF_CONDUCT.md).
41
+
42
+ ## License
43
+
44
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
45
+
46
+ ## Code of Conduct
47
+
48
+ Everyone interacting in the MissingTranslation project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/missing_translation/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "missing_translation"
5
+
6
+ MissingTranslation::Cli.start(ARGV)
@@ -0,0 +1,56 @@
1
+ require 'thor'
2
+ require 'missing_translation/configuration'
3
+ require 'missing_translation/translation_file'
4
+ require 'missing_translation_api'
5
+
6
+ module MissingTranslation
7
+
8
+ class Cli < Thor
9
+ desc "install", "It will guide you in the configuration process"
10
+ def install
11
+ all = options[:all]
12
+ unless Configuration.file_exists?
13
+ puts "Configuration file not found, Creating file..."
14
+ Configuration.create_file
15
+ end
16
+ api_token = ask("What is the api token of missing translation project ?")
17
+ configuration = Configuration.new
18
+ configuration.update_key api_token
19
+ end
20
+
21
+ desc "upload", 'Upload file in locale folder to missing translation'
22
+ def upload
23
+ file_extension = ""
24
+ config_folder = "./config/locales/#{file_extension}/*.yml"
25
+ file_pathnames = Dir[config_folder]
26
+ return unless file_pathnames && file_pathnames.size > 0
27
+
28
+ configuration = Configuration.new
29
+ api = MissingTranslationApi.new(configuration.config[:key])
30
+ file_pathnames.each do |pathname|
31
+ file = MissingTranslation::TranslationFile.new(pathname)
32
+ p file.language
33
+ p file.group
34
+ p file.to_json
35
+ api.upload(file.language, file.group, file.to_json, "yaml")
36
+ end
37
+ end
38
+
39
+ desc "download", "Download all file from missing translation"
40
+ def download
41
+ directory = "./config/locales"
42
+ configuration = Configuration.new
43
+ api = MissingTranslationApi.new(configuration.config[:key])
44
+ response = api.download("yaml")
45
+ response.each do |f|
46
+ file = MissingTranslation::TranslationFile.new
47
+ file.group = f["group"]
48
+ file.language = f["language"]
49
+ file.translations = f["keys"]
50
+ file.write(directory)
51
+ end
52
+ end
53
+
54
+ end
55
+
56
+ end
@@ -0,0 +1,47 @@
1
+ require 'yaml'
2
+
3
+ module MissingTranslation
4
+
5
+ class Configuration
6
+ attr_accessor :config
7
+ FILE_NAME = "missing_translation.yml"
8
+
9
+ def self.file_exists?
10
+ File.exist?(FILE_NAME)
11
+ end
12
+
13
+ def self.create_file
14
+ File.open(FILE_NAME, 'w+') do |f|
15
+ f.flock(File::LOCK_EX)
16
+ f.rewind
17
+ f.write({ key: nil }.to_yaml)
18
+ f.flush
19
+ end
20
+ end
21
+
22
+ def self.write_config(config)
23
+ File.open(FILE_NAME, "w+") do |f|
24
+ f.flock(File::LOCK_EX)
25
+ f.truncate(0)
26
+ f.write(config.to_hash.to_yaml)
27
+ f.flush
28
+ end
29
+ end
30
+
31
+ def initialize
32
+ @file = File.open(FILE_NAME)
33
+ unless @file
34
+ puts "Configuration file does not exist"
35
+ return
36
+ end
37
+ @config = (YAML.load(@file.read) || { key: nil })
38
+ end
39
+
40
+ def update_key(key)
41
+ @config[:key] = key
42
+ self.class.write_config(@config)
43
+ end
44
+
45
+ end
46
+
47
+ end
@@ -0,0 +1,62 @@
1
+ require 'yaml'
2
+ require 'psych'
3
+
4
+ module MissingTranslation
5
+ class TranslationFile
6
+ attr_accessor :pathname, :content, :group, :language, :translations
7
+
8
+ def initialize(pathname = nil)
9
+ return unless pathname
10
+
11
+ @pathname = pathname
12
+ @file = File.open(pathname)
13
+ if @file
14
+ @content = (YAML.load(@file.read) || {})
15
+ end
16
+ end
17
+
18
+ def to_json
19
+ return nil unless @content
20
+
21
+ @content.to_hash
22
+ end
23
+
24
+ def group
25
+ return @group if @group
26
+
27
+ groups = pathname.split('/').last.gsub('.yml', '').split('.')
28
+ return '' unless groups.size > 1
29
+
30
+ @group = groups.first
31
+ end
32
+
33
+ def language
34
+ return @language if @language
35
+
36
+ @language = pathname.split('/').last.gsub('.yml', '').split('.').last
37
+ end
38
+
39
+ def write(directory)
40
+ return nil unless translations
41
+
42
+ result = Psych.parse_stream translations.to_yaml
43
+ result.grep(Psych::Nodes::Scalar).each do |node|
44
+ node.plain = false
45
+ node.quoted = true
46
+ node.style = Psych::Nodes::Scalar::DOUBLE_QUOTED
47
+ end
48
+ result.grep(Psych::Nodes::Mapping).each do |node|
49
+ node.children.each_slice(2) do |k, _|
50
+ k.plain = true
51
+ k.quoted = false
52
+ k.style = Psych::Nodes::Scalar::ANY
53
+ end
54
+ end
55
+ filename = [group, language, "yml"].compact.reject{|s| s.size <= 0}.join('.')
56
+
57
+ p "Writing file #{directory}/#{filename}..."
58
+ File.write("#{directory}/#{filename}", result.yaml)
59
+ end
60
+
61
+ end
62
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module MissingTranslation
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "missing_translation/version"
4
+ require 'missing_translation/cli'
5
+
6
+ module MissingTranslation
7
+ class Error < StandardError; end
8
+ # Your code goes here...
9
+ end
@@ -0,0 +1,40 @@
1
+ require 'httparty'
2
+
3
+ class MissingTranslationApi
4
+ include HTTParty
5
+
6
+ attr_accessor :api_token
7
+
8
+ #base_uri 'http://api-missing-translation.localhost.test:3000'
9
+ base_uri 'https://api-missing-translation.9troisquarts.com'
10
+
11
+ def initialize(api_token)
12
+ @api_token = api_token
13
+ @options = {
14
+ headers: {
15
+ token: @api_token,
16
+ 'Content-Type': "application/json"
17
+ }
18
+ }
19
+ end
20
+
21
+ def upload(language, group, keys, content_type = "yaml")
22
+ self.class.post("/translations/import", @options.merge({
23
+ body: {
24
+ content_type: content_type,
25
+ group: group,
26
+ language: language,
27
+ keys: keys
28
+ }.to_json
29
+ }))
30
+ end
31
+
32
+ def download(content_type = "yaml")
33
+ response = self.class.get('/translations/export', @options.merge({
34
+ body: {
35
+ content_type: content_type
36
+ }.to_json
37
+ }))
38
+ response.parsed_response["data"] || []
39
+ end
40
+ end
@@ -0,0 +1,4 @@
1
+ module MissingTranslation
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: missing_translation
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Kevin Clercin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-10-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: httparty
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.18'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.18'
41
+ - !ruby/object:Gem::Dependency
42
+ name: net-sftp
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 3.0.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 3.0.0
55
+ description:
56
+ email:
57
+ - kevin@9troisquarts.com
58
+ executables:
59
+ - missing_translation
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".rspec"
64
+ - ".rubocop.yml"
65
+ - CHANGELOG.md
66
+ - CODE_OF_CONDUCT.md
67
+ - Gemfile
68
+ - Gemfile.lock
69
+ - LICENSE.txt
70
+ - README.md
71
+ - Rakefile
72
+ - bin/missing_translation
73
+ - lib/missing_translation.rb
74
+ - lib/missing_translation/cli.rb
75
+ - lib/missing_translation/configuration.rb
76
+ - lib/missing_translation/translation_file.rb
77
+ - lib/missing_translation/version.rb
78
+ - lib/missing_translation_api.rb
79
+ - sig/missing_translation.rbs
80
+ homepage: https://github.com/9troisquarts/missing_translation
81
+ licenses:
82
+ - MIT
83
+ metadata:
84
+ homepage_uri: https://github.com/9troisquarts/missing_translation
85
+ source_code_uri: https://github.com/9troisquarts/missing_translation
86
+ changelog_uri: https://github.com/9troisquarts/missing_translation/CHANGELOG.md
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: 2.6.0
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubygems_version: 3.3.7
103
+ signing_key:
104
+ specification_version: 4
105
+ summary: Upload and download your I18n to missing translation
106
+ test_files: []