From ab1ec9cb6996505ba787976805940bc4a591e5bf Mon Sep 17 00:00:00 2001 From: Discourse Translator Bot Date: Thu, 16 Jul 2020 14:00:47 +0200 Subject: [PATCH] DEV: Switch from Transifex to Crowdin --- .tx/config | 15 --------------- Gemfile | 1 - Gemfile.lock | 7 ------- bin/pull_translations.rb | 16 ---------------- translator.yml | 7 +++++++ 5 files changed, 7 insertions(+), 39 deletions(-) delete mode 100644 .tx/config delete mode 100755 bin/pull_translations.rb create mode 100644 translator.yml diff --git a/.tx/config b/.tx/config deleted file mode 100644 index 9b304e4..0000000 --- a/.tx/config +++ /dev/null @@ -1,15 +0,0 @@ -[main] -host = https://www.transifex.com -lang_map = el_GR: el, es_ES: es, fr_FR: fr, hu_HU: hu, ko_KR: ko, pt_PT: pt, sk_SK: sk, vi_VN: vi - -[discourse-org.plugindiscourse-data-explorerclientenyml] -file_filter = config/locales/client..yml -source_file = config/locales/client.en.yml -source_lang = en -type = YML - -[discourse-org.plugindiscourse-data-explorerserverenyml] -file_filter = config/locales/server..yml -source_file = config/locales/server.en.yml -source_lang = en -type = YML diff --git a/Gemfile b/Gemfile index f6bd3b2..fc48edf 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,5 @@ # frozen_string_literal: true group :development do - gem 'translations-manager', git: 'https://github.com/discourse/translations-manager.git' gem 'rubocop-discourse' end diff --git a/Gemfile.lock b/Gemfile.lock index a49fac9..25eeb8a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,9 +1,3 @@ -GIT - remote: https://github.com/discourse/translations-manager.git - revision: d6da5ff928b9ea39a15c9b6f16b856f46bc9069b - specs: - translations-manager (0.6) - GEM specs: ast (2.4.0) @@ -34,7 +28,6 @@ PLATFORMS DEPENDENCIES rubocop-discourse - translations-manager! BUNDLED WITH 2.1.4 diff --git a/bin/pull_translations.rb b/bin/pull_translations.rb deleted file mode 100755 index 789ccaa..0000000 --- a/bin/pull_translations.rb +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env ruby -# frozen_string_literal: true - -# Usage: -# bundle install -# bundle exec bin/pull_translations.rb -# -# To choose which languages to update, list them as arguments: -# bundle exec bin/pull_translations.rb he uk - -require 'translations_manager' - -YML_DIRS = ['config/locales'].map { |d| File.expand_path(d) } -YML_FILE_PREFIXES = ['server', 'client'] - -TranslationsManager::TransifexUpdater.new(YML_DIRS, YML_FILE_PREFIXES, *ARGV).perform diff --git a/translator.yml b/translator.yml new file mode 100644 index 0000000..5caa8f7 --- /dev/null +++ b/translator.yml @@ -0,0 +1,7 @@ +# Configuration file for discourse-translator-bot + +files: +- source_path: config/locales/client.en.yml + destination_path: client.yml +- source_path: config/locales/server.en.yml + destination_path: server.yml