{"id":15527251,"url":"https://github.com/patrickgramatowski/habluhablu_gem","last_synced_at":"2025-10-08T18:12:02.207Z","repository":{"id":45073808,"uuid":"364863685","full_name":"patrickgramatowski/habluhablu_gem","owner":"patrickgramatowski","description":":earth_americas: HabluHablu is a CLI written in Ruby, which allows you to generate a language file (for I18n) with translations of the most useful phrases.","archived":false,"fork":false,"pushed_at":"2022-01-10T22:35:36.000Z","size":209,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-27T21:12:04.052Z","etag":null,"topics":["cli","gem","i18n","ruby","ruby-gem","ruby-on-rails","translations"],"latest_commit_sha":null,"homepage":"https://rubygems.org/gems/habluhablu","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/patrickgramatowski.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-05-06T09:57:27.000Z","updated_at":"2025-03-24T11:13:22.000Z","dependencies_parsed_at":"2022-08-20T10:40:35.647Z","dependency_job_id":null,"html_url":"https://github.com/patrickgramatowski/habluhablu_gem","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/patrickgramatowski/habluhablu_gem","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickgramatowski%2Fhabluhablu_gem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickgramatowski%2Fhabluhablu_gem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickgramatowski%2Fhabluhablu_gem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickgramatowski%2Fhabluhablu_gem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patrickgramatowski","download_url":"https://codeload.github.com/patrickgramatowski/habluhablu_gem/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickgramatowski%2Fhabluhablu_gem/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267973196,"owners_count":24174399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","gem","i18n","ruby","ruby-gem","ruby-on-rails","translations"],"created_at":"2024-10-02T11:05:13.578Z","updated_at":"2025-10-08T18:11:57.160Z","avatar_url":"https://github.com/patrickgramatowski.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Gem Version](https://badge.fury.io/rb/habluhablu.svg)](https://badge.fury.io/rb/habluhablu)\n[![Build Status](https://travis-ci.org/patrickgramatowski/habluhablu_gem.svg?branch=master)](https://travis-ci.org/patrickgramatowski/habluhablu_gem)\n\n# HabluHablu\n\n:earth_americas: HabluHablu is a CLI written in Ruby, which allows you to generate a language file (for I18n) with translations of the most useful phrases. :closed_book:\n\n:dart: The main goal for me is to create a library of translations for the most of languages and maybe even for the most popular dialects.   \nWhat about ancient languages? :scroll:\n\n## Supported languages\n\n- English\n- Spanish\n- German\n- French\n- Italian\n- Japanese\n- Russian\n- Korean\n- Portuguese\n- Turkish\n- Polish\n- Hungarian\n- Thai (th - symbol)\n- Chinese (zh - symbol)\n- Arabic\n- Hebrew\n- If you want to help me out and add your language, don't hesitate!\n- In progress...\n\n### Installation\n\n**Important!**\nTo be able to use the gem:\n- Install [I18n gem](https://github.com/ruby-i18n/i18n)\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'habluhablu'\n```\n\nAnd then execute:\n\n    $ bundle install\n\nOr install it yourself as:\n\n    $ gem install habluhablu\n\n### Usage\n\n[List of symbols](https://www.w3.org/International/O-charset-lang.html)   \nGenerate file for a specific language using `habluhablu -l \u003csymbol\u003e` command.\n   \nGenerate an example language file using `habluhablu -l example` command (it generates empty file with keywords to fill).    \n    \nGenerate files for a more languages using `habluhablu -m \u003csymbols\u003e(separated by '_')` command.  \n    \nTo generate a keyword for all languages files use: `habluhablu -k \u003ckeyword\u003e` command.     \n    \nTo translate a phrase/word use: `habluhablu -t hello_world -f en -o es`, where the command translates 'hello there' to spanish (-o flag).    \n     \n**Important!** to use translator you will have to create an account [Google API](https://rapidapi.com/googlecloud/api/google-translate1) and set the api key as ENV variable - `ENV['HABLUHABLU_API_KEY']`  \n    \nIf you want to generate your own sample for languages files, You can do it by:     \n- creating your own sample.yml file in config/locales directory    \n- using `habluhablu -s \u003csymbols\u003e(separated by '_')` command    \n    \nGenerate a json file of the languages you want, use `habluhablu -j \u003csymbols\u003e(separated by '_')` command.   \n   \n`habluhablu --help`\n\nThere is also an option to add countries flag using bootstrap (for more informations go to languages/Countries_Flags.md).\n\n### Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/patrickgramatowski/habluhablu_gem.\n\n### License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickgramatowski%2Fhabluhablu_gem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatrickgramatowski%2Fhabluhablu_gem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickgramatowski%2Fhabluhablu_gem/lists"}