Skip to content

Commit 45da439

Browse files
committed
[#] Init commit
0 parents  commit 45da439

20 files changed

+377
-0
lines changed

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/.bundle/
2+
/.yardoc
3+
/Gemfile.lock
4+
/_yardoc/
5+
/coverage/
6+
/doc/
7+
/pkg/
8+
/spec/reports/
9+
/tmp/
10+
11+
.rvmrc
12+
.ruby-version
13+
env.json

.rspec

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--format documentation
2+
--color

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
sudo: false
2+
language: ruby
3+
rvm:
4+
- 2.5.1
5+
before_install: gem install bundler -v 1.14.3

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
### New Features
2+
* Translation yaml files with Google Translate API
3+
4+
[@khusnetdinov]: https://github.com/khusnetdinov

CODE_OF_CONDUCT.md

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, gender identity and expression, level of experience,
9+
nationality, personal appearance, race, religion, or sexual identity and
10+
orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at [email protected]. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at [http://contributor-covenant.org/version/1/4][version]
72+
73+
[homepage]: http://contributor-covenant.org
74+
[version]: http://contributor-covenant.org/version/1/4/

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
3+
# Specify your gem's dependencies in localizator.gemspec
4+
gemspec

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2019 Marat Khusnetdinov
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.

README.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Localizator [![Open Source Helpers](https://www.codetriage.com/symbiod/localizator/badges/users.svg)](https://www.codetriage.com/symbiod/localizator)
2+
3+
Localizator gem provides translation for Yaml files. Gem uses Google Cloud Translation API.
4+
5+
## Notes
6+
7+
This gem in experemental development. It is used as local solution for translation.
8+
9+
## Requirements
10+
11+
- Google Cloud Account
12+
- Google Cloud Translation API is ON
13+
- Google Cloud Service Account json
14+
15+
Read docs about [Google Translation API](https://cloud.google.com/translate/)
16+
17+
## Installation
18+
19+
`git clone https://github.com/symbiod/localizator`
20+
21+
## Usage
22+
23+
Execute file is located in `bin` folder.
24+
25+
```
26+
$ ./bin/localizator -i /path/to/source -o /path/to/input -d en -l ru
27+
```
28+
29+
Options:
30+
31+
`-i`, `--input` - Folder with source yaml files.
32+
33+
`-o`, `--output` - Distanation folder where will be saved translaed files under locale name folder.
34+
35+
`-d`, `--default` - Default language that is used in source files.
36+
37+
`-l`, `--locales` - One or Array (separated with `,` with not spaces) locales.
38+
39+
`-k`, `--key` - Hash key for hash parsed from yaml file.
40+
41+
Example:
42+
`./bin/localizator -i ~/Desktop/locales/input -o ~/Desktop/locales/output -d en -l ru,cn -k pages`
43+
44+
## License
45+
46+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
47+

Rakefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
require "bundler/gem_tasks"
2+
require "rspec/core/rake_task"
3+
4+
RSpec::Core::RakeTask.new(:spec)
5+
6+
task :default => :spec

bin/console

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env ruby
2+
3+
require "bundler/setup"
4+
require "localizator"
5+
6+
# You can add fixtures and/or initialization code here to make experimenting
7+
# with your gem easier. You can also use a different console, if you like.
8+
9+
# (If you use this, don't forget to add pry to your Gemfile!)
10+
# require "pry"
11+
# Pry.start
12+
13+
require "irb"
14+
IRB.start(__FILE__)

bin/localizator

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env ruby
2+
3+
require 'pathname'
4+
5+
$LOAD_PATH << (Pathname.new(__FILE__).dirname + '../lib').expand_path
6+
7+
require 'localizator'
8+
9+
Localizator::CLI.new(ARGV).()

bin/setup

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
set -euo pipefail
3+
IFS=$'\n\t'
4+
set -vx
5+
6+
bundle install
7+
8+
# Do any other automated setup that you need to do here

lib/localizator.rb

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
require "localizator/cli"
2+
require "localizator/options"
3+
require "localizator/translation"
4+
require "localizator/version"
5+
6+
begin
7+
require "pry"
8+
rescue LoadError
9+
end
10+
11+
module Localizator
12+
end

lib/localizator/cli.rb

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
require 'yaml'
2+
3+
module Localizator
4+
class CLI
5+
def initialize(args)
6+
@options = Options.new(args)
7+
end
8+
9+
def call
10+
@options.locales.each do |locale|
11+
output_dir = @options.output + '/' + locale
12+
translation = Translation.new(default: @options.default, locale: locale)
13+
14+
Dir.rmdir(output_dir) if Dir.exists?(output_dir)
15+
Dir.mkdir(output_dir)
16+
17+
files.each do |file|
18+
input_path = @options.input + '/' + file
19+
output_path = output_dir + '/' + file
20+
yaml = translation.(input_path, @options.key).to_yaml
21+
File.write(output_path, yaml)
22+
end
23+
end
24+
end
25+
26+
private
27+
28+
def files
29+
Dir.new(@options.input).select do |locale|
30+
locale.end_with?('.yml')
31+
end
32+
end
33+
end
34+
end
35+
36+

lib/localizator/options.rb

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
require 'optparse'
2+
3+
module Localizator
4+
class Options
5+
attr_reader :input, :output, :default, :locales, :key
6+
7+
def initialize(args)
8+
OptionParser.new do |parser|
9+
parser.on("-i", "--input [PATH]") do |input|
10+
@input = input
11+
end
12+
13+
parser.on("-o", "--output [PATH]") do |output|
14+
@output = output
15+
end
16+
17+
parser.on("-d", "--default [NAME]") do |default|
18+
@default= default
19+
end
20+
21+
parser.on("-l", "--locales [ARRAY]") do |locales|
22+
@locales = locales.split(',')
23+
end
24+
25+
parser.on("-k", "--key [NAME]") do |key|
26+
@key = key
27+
end
28+
end.parse!
29+
end
30+
end
31+
end

lib/localizator/translation.rb

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
require 'google/cloud/translate'
2+
require 'yaml'
3+
4+
module Localizator
5+
class Translation
6+
def initialize(default:, locale:)
7+
@default = default
8+
@locale = locale
9+
@translator = Google::Cloud::Translate.new(
10+
project_id: 'localizator-gem',
11+
credentials: Google::Cloud::Translate::Credentials.new('env.json')
12+
)
13+
end
14+
15+
def call(path, key = nil)
16+
hash = YAML.load_file(path)
17+
iterate(key ? hash[key] : hash)
18+
end
19+
20+
private
21+
22+
def iterate(hash)
23+
hash.each do |key, value|
24+
if value.is_a? Hash
25+
iterate(value)
26+
else
27+
hash[key] = translate(value)
28+
end
29+
end
30+
end
31+
32+
def translate(string)
33+
@translator.translate(string, to: @locale).text
34+
end
35+
end
36+
end

lib/localizator/version.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Localizator
2+
VERSION = "0.1.0"
3+
end

localizator.gemspec

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# coding: utf-8
2+
lib = File.expand_path('../lib', __FILE__)
3+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4+
require 'localizator/version'
5+
6+
Gem::Specification.new do |spec|
7+
spec.name = "localizator"
8+
spec.version = Localizator::VERSION
9+
spec.authors = ["Marat Khusnetdinov"]
10+
spec.email = ["[email protected]"]
11+
12+
spec.summary = "Localizator is a script for translation locales using AWS translate"
13+
spec.description = "Localizator is a script for translation locales using AWS translate"
14+
spec.homepage = "https://github.com/symbiod/localizator"
15+
spec.license = "MIT"
16+
17+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
18+
f.match(%r{^(test|spec|features)/})
19+
end
20+
spec.bindir = "exe"
21+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22+
spec.require_paths = ["lib"]
23+
24+
spec.add_development_dependency "bundler", "~> 1.14"
25+
spec.add_development_dependency "rake", "~> 10.0"
26+
spec.add_development_dependency "rspec", "~> 3.5"
27+
spec.add_development_dependency "pry"
28+
29+
spec.add_dependency "google-cloud-translate"
30+
end

spec/localizator_spec.rb

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
require "spec_helper"
2+
3+
RSpec.describe Localizator do
4+
it "has a version number" do
5+
expect(Localizator::VERSION).not_to be nil
6+
end
7+
8+
it "does something useful" do
9+
expect(false).to eq(true)
10+
end
11+
end

spec/spec_helper.rb

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
require "bundler/setup"
2+
require "localizator"
3+
4+
RSpec.configure do |config|
5+
# Enable flags like --only-failures and --next-failure
6+
config.example_status_persistence_file_path = ".rspec_status"
7+
8+
config.expect_with :rspec do |c|
9+
c.syntax = :expect
10+
end
11+
end

0 commit comments

Comments
 (0)