68 lines
1.6 KiB
Ruby
68 lines
1.6 KiB
Ruby
require "pathname"
|
|
|
|
BUILD_DIR = Pathname("build")
|
|
LOCALE_DIR = Pathname("trans")
|
|
TRANS_DIR = Pathname("translate")
|
|
PSEUDO_LANG = "ach"
|
|
|
|
CROWDIN_SNIPPET = <<EOS
|
|
|
|
<script type="text/javascript">
|
|
var _jipt = [];
|
|
_jipt.push(['project', 'plume-docs']);
|
|
_jipt.push(['escape', function() {
|
|
window.location.href = 'https://joinplu.me';
|
|
}]);
|
|
</script>
|
|
<script type="text/javascript" src="//cdn.crowdin.com/jipt/jipt.js"></script>
|
|
EOS
|
|
|
|
class Pathname
|
|
alias to_str to_s
|
|
end
|
|
|
|
desc "Build site"
|
|
task :build_site => [:build_base, "crowdin:download"] do
|
|
LOCALE_DIR.glob("**/*.html").each do |html|
|
|
dest = Pathname(html.to_path.sub(LOCALE_DIR, BUILD_DIR))
|
|
dest.parent.mkpath
|
|
copy html, dest
|
|
end
|
|
end
|
|
|
|
task :build_base do
|
|
sh "middleman", "build"
|
|
end
|
|
|
|
desc "Build site for translate.docs.joinplu.me"
|
|
task :build_trans do
|
|
sh "middleman", "build", "--build-dir", TRANS_DIR
|
|
|
|
(LOCALE_DIR/PSEUDO_LANG/"trans").glob("**/*.html").each do |html|
|
|
doc = html.read
|
|
doc.sub! "<head>", "<head>" + CROWDIN_SNIPPET
|
|
dest = Pathname(html.to_path.sub(LOCALE_DIR/PSEUDO_LANG/"trans", TRANS_DIR))
|
|
$stderr.puts "#{html} -> #{dest}"
|
|
dest.write doc
|
|
end
|
|
end
|
|
|
|
task :build_trans_src do
|
|
sh "middleman", "build", "--build-dir", LOCALE_DIR
|
|
end
|
|
|
|
namespace :crowdin do
|
|
desc "Download translations"
|
|
task :download => :build_trans_src do
|
|
sh "crowdin", "download"
|
|
end
|
|
|
|
desc "Upload translation sources"
|
|
task :upload do
|
|
sh "crowdin", "upload", "sources"
|
|
end
|
|
|
|
task :download_pseudo do
|
|
sh "crowdin", "download", "--pseudo"
|
|
end
|
|
end
|