mirror of
https://ghfast.top/https://github.com/discourse/discourse-akismet.git
synced 2026-07-15 11:36:24 +08:00
9 lines
273 B
Ruby
Executable file
9 lines
273 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
require 'translations_manager'
|
|
|
|
YML_DIRS = ['config/locales'].map { |d| File.expand_path(d) }
|
|
YML_FILE_PREFIXES = ['client', 'server']
|
|
|
|
TranslationsManager::TransifexUpdater.new(YML_DIRS, YML_FILE_PREFIXES, *ARGV).perform
|