summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2019-01-12 18:18:23 +0100
committerRuben Pollan <meskio@sindominio.net>2019-01-15 14:39:21 +0100
commitbea32af5d45702e5608d347bf2bf6314d899f2e0 (patch)
tree3a3b65123a751624a866176d9d59424707474363 /tools
parent933ad2aeda754499753e91be05aa9f5556539d35 (diff)
[feat] Reorganize code
Let's use a more structured folder system: https://github.com/golang-standards/project-layout - Resolves: #99
Diffstat (limited to 'tools')
-rw-r--r--tools/transifex/Makefile8
-rw-r--r--tools/transifex/main.go124
-rw-r--r--tools/transifex/messages.json28
3 files changed, 160 insertions, 0 deletions
diff --git a/tools/transifex/Makefile b/tools/transifex/Makefile
new file mode 100644
index 0000000..bf5bf2b
--- /dev/null
+++ b/tools/transifex/Makefile
@@ -0,0 +1,8 @@
+
+all: build generate_json
+
+build:
+ go build
+
+generate_json:
+ ./transifex g2t ../../locales/en-US/out.gotext.json messages.json
diff --git a/tools/transifex/main.go b/tools/transifex/main.go
new file mode 100644
index 0000000..37bae97
--- /dev/null
+++ b/tools/transifex/main.go
@@ -0,0 +1,124 @@
+package main
+
+import (
+ "encoding/json"
+ "fmt"
+ "os"
+ "path"
+
+ "golang.org/x/text/message/pipeline"
+)
+
+const (
+ outGotext = "out.gotext.json"
+ messagesGotext = "messages.gotext.json"
+)
+
+type transifex map[string]string
+
+func main() {
+ if len(os.Args) < 2 {
+ panic("g2t or t2g should be passed as argument")
+ }
+
+ switch os.Args[1] {
+ case "g2t":
+ g2t(func(m pipeline.Message) string { return m.Message.Msg })
+ case "lang2t":
+ g2t(func(m pipeline.Message) string { return m.Translation.Msg })
+ case "t2g":
+ t2g()
+ default:
+ panic("g2t or t2g should be passed as argument")
+ }
+}
+
+func g2t(getMessage func(pipeline.Message) string) {
+ if len(os.Args) < 4 {
+ panic(fmt.Sprintf("usage: %s g2t inFile outFile", os.Args[0]))
+ }
+
+ inF, err := os.Open(os.Args[2])
+ if err != nil {
+ panic(fmt.Sprintf("Can't open input file %s: %v", os.Args[2], err))
+ }
+ outF, err := os.Create(os.Args[3])
+ if err != nil {
+ panic(fmt.Sprintf("Can't open output file %s: %v", os.Args[3], err))
+ }
+
+ toTransifex(inF, outF, getMessage)
+}
+
+func t2g() {
+ if len(os.Args) < 3 {
+ panic(fmt.Sprintf("usage: %s t2g localeFolder", os.Args[0]))
+ }
+
+ origF, err := os.Open(path.Join(os.Args[2], outGotext))
+ if err != nil {
+ panic(fmt.Sprintf("Can't open file %s/%s: %v", os.Args[3], outGotext, err))
+ }
+ outF, err := os.Create(path.Join(os.Args[2], messagesGotext))
+ if err != nil {
+ panic(fmt.Sprintf("Can't open output file %s/%v: %v", os.Args[3], messagesGotext, err))
+ }
+ toGotext(origF, os.Stdin, outF)
+}
+
+func toTransifex(inF, outF *os.File, getMessage func(pipeline.Message) string) {
+ messages := pipeline.Messages{}
+ dec := json.NewDecoder(inF)
+ err := dec.Decode(&messages)
+ if err != nil {
+ panic(fmt.Sprintf("An error ocurred decoding json: %v", err))
+ }
+
+ transfx := make(transifex)
+ for _, m := range messages.Messages {
+ transfx[m.ID[0]] = getMessage(m)
+ }
+ enc := json.NewEncoder(outF)
+ enc.SetIndent("", " ")
+ err = enc.Encode(transfx)
+ if err != nil {
+ panic(fmt.Sprintf("An error ocurred encoding json: %v", err))
+ }
+}
+
+func toGotext(origF, inF, outF *os.File) {
+ transfx := make(transifex)
+ dec := json.NewDecoder(inF)
+ err := dec.Decode(&transfx)
+ if err != nil {
+ panic(fmt.Sprintf("An error ocurred decoding json: %v", err))
+ }
+
+ messages := pipeline.Messages{}
+ dec = json.NewDecoder(origF)
+ err = dec.Decode(&messages)
+ if err != nil {
+ panic(fmt.Sprintf("An error ocurred decoding orig json: %v", err))
+ }
+
+ for k, v := range transfx {
+ found := false
+ for i, m := range messages.Messages {
+ if m.ID[0] == k {
+ messages.Messages[i].Translation.Msg = v
+ found = true
+ break
+ }
+ }
+ if !found {
+ fmt.Printf("The original document doesn't have id: %s\n", k)
+ }
+ }
+
+ enc := json.NewEncoder(outF)
+ enc.SetIndent("", " ")
+ err = enc.Encode(messages)
+ if err != nil {
+ panic(fmt.Sprintf("An error ocurred encoding json: %v", err))
+ }
+}
diff --git a/tools/transifex/messages.json b/tools/transifex/messages.json
new file mode 100644
index 0000000..40a4145
--- /dev/null
+++ b/tools/transifex/messages.json
@@ -0,0 +1,28 @@
+{
+ "About": "About",
+ "About...": "About...",
+ "Cancel": "Cancel",
+ "Checking status...": "Checking status...",
+ "Connecting to {ApplicationName}": "Connecting to {ApplicationName}",
+ "Donate": "Donate",
+ "Donate...": "Donate...",
+ "Error starting VPN": "Error starting VPN",
+ "Help...": "Help...",
+ "Initialization error": "Initialization error",
+ "Missing authentication agent": "Missing authentication agent",
+ "Quit": "Quit",
+ "Retry": "Retry",
+ "Route traffic through": "Route traffic through",
+ "Stopping {ApplicationName}": "Stopping {ApplicationName}",
+ "Turn off": "Turn off",
+ "Turn on": "Turn on",
+ "Use {ApplicationName} {City} gateway": "Use {ApplicationName} {City} gateway",
+ "aboutText": "{ApplicationName} is an easy, fast, and secure VPN service from riseup.net. {ApplicationName} does not require a user account, keep logs, or track you in any way.\n\t \nThis service is paid for entirely by donations from users like you. Please donate at https://riseup.net/vpn/donate.\n\t\t\nBy using this application, you agree to the Terms of Service available at https://riseup.net/tos. This service is provide as-is, without any warranty, and is intended for people who work to make the world a better place.\n\n\n{ApplicationName_1} version: {Version}",
+ "donationText": "The {ApplicationName} service is expensive to run. Because we don't want to store personal information about you, there is no accounts or billing for this service. But if you want the service to continue, donate at least $5 each month.\n\t\nDo you want to donate now?",
+ "errorMsg": "An error has ocurred initializing the VPN: {Err}",
+ "errorStartingVPN": "Can't connect to {ApplicationName}: {Err}",
+ "missingAuthAgent": "Could not find a polkit authentication agent. Please run one and try again.",
+ "{ApplicationName} blocking internet": "{ApplicationName} blocking internet",
+ "{ApplicationName} off": "{ApplicationName} off",
+ "{ApplicationName} on": "{ApplicationName} on"
+}