* Translations workflow and tools * improved the name of the workflow * need this commit to trigger the workflow for the first time * swift tools can now run on CI * only strings and stringsdict will be committed * fixed a workflow issue * starting the workflow to save it * fixing downgrade issues * fixing URL usage * install localazy * fixing add-paths typo * downloaded strings * removing on push trigger * Update Tools/Sources/DownloadTranslations.swift Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * Added locheck for string verification * code formatting improvement * Update Tools/Sources/Locheck.swift Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * pr suggestion --------- Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com>
19 lines
556 B
Swift
19 lines
556 B
Swift
import ArgumentParser
|
|
import Foundation
|
|
|
|
struct DownloadStrings: ParsableCommand {
|
|
static var configuration = CommandConfiguration(abstract: "A tool to download localizable strings from localazy")
|
|
|
|
@Flag(help: "Use to download translation keys for all languages")
|
|
var allLanguages = false
|
|
|
|
func run() throws {
|
|
try localazyDownload()
|
|
}
|
|
|
|
private func localazyDownload() throws {
|
|
let json = allLanguages ? "localazy-all.json" : "localazy-en.json"
|
|
try Utilities.zsh("localazy download --config \(json)")
|
|
}
|
|
}
|