2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-07-31 10:30:19 +00:00
|
|
|
|
|
|
|
// +build ignore
|
|
|
|
|
2014-07-20 11:49:26 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"log"
|
|
|
|
"os"
|
2015-08-02 06:27:05 +00:00
|
|
|
"path/filepath"
|
2014-08-06 12:41:46 +00:00
|
|
|
"regexp"
|
2014-07-20 11:49:26 +00:00
|
|
|
"strings"
|
|
|
|
|
2014-11-29 23:17:00 +00:00
|
|
|
"golang.org/x/net/html"
|
2014-07-20 11:49:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var trans = make(map[string]string)
|
2014-08-06 12:41:46 +00:00
|
|
|
var attrRe = regexp.MustCompile(`\{\{'([^']+)'\s+\|\s+translate\}\}`)
|
2014-07-20 11:49:26 +00:00
|
|
|
|
2017-03-18 00:27:22 +00:00
|
|
|
// exceptions to the untranslated text warning
|
|
|
|
var noStringRe = regexp.MustCompile(
|
2017-04-29 15:48:00 +00:00
|
|
|
`^((\W*\{\{.*?\}\} ?.?\/?.?(bps)?\W*)+(\.stignore)?|[^a-zA-Z]+.?[^a-zA-Z]*|[kMGT]?B|Twitter|JS\W?|DEV|https?://\S+)$`)
|
2017-03-18 00:27:22 +00:00
|
|
|
|
|
|
|
// exceptions to the untranslated text warning specific to aboutModalView.html
|
|
|
|
var aboutRe = regexp.MustCompile(`^([^/]+/[^/]+|(The Go Pro|Font Awesome ).+)$`)
|
|
|
|
|
2015-08-02 06:27:05 +00:00
|
|
|
func generalNode(n *html.Node, filename string) {
|
2014-07-20 11:49:26 +00:00
|
|
|
translate := false
|
|
|
|
if n.Type == html.ElementNode {
|
2015-08-02 06:27:05 +00:00
|
|
|
if n.Data == "translate" { // for <translate>Text</translate>
|
|
|
|
translate = true
|
2017-03-18 00:27:22 +00:00
|
|
|
} else if n.Data == "style" {
|
|
|
|
return
|
2015-08-02 06:27:05 +00:00
|
|
|
} else {
|
|
|
|
for _, a := range n.Attr {
|
|
|
|
if a.Key == "translate" {
|
|
|
|
translate = true
|
2017-03-18 00:27:22 +00:00
|
|
|
} else if a.Key == "id" && (a.Val == "contributor-list" ||
|
|
|
|
a.Val == "copyright-notices") {
|
|
|
|
// Don't translate a list of names and
|
|
|
|
// copyright notices of other projects
|
|
|
|
return
|
2015-08-02 06:27:05 +00:00
|
|
|
} else {
|
|
|
|
if matches := attrRe.FindStringSubmatch(a.Val); len(matches) == 2 {
|
|
|
|
translation(matches[1])
|
|
|
|
}
|
2017-03-25 11:56:51 +00:00
|
|
|
if a.Key == "data-content" &&
|
|
|
|
!noStringRe.MatchString(a.Val) {
|
|
|
|
log.Println("Untranslated data-content string (" + filename + "):")
|
|
|
|
log.Print("\t" + a.Val)
|
|
|
|
}
|
2014-08-06 12:41:46 +00:00
|
|
|
}
|
2014-07-20 11:49:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if n.Type == html.TextNode {
|
|
|
|
v := strings.TrimSpace(n.Data)
|
2017-03-18 00:27:22 +00:00
|
|
|
if len(v) > 1 && !noStringRe.MatchString(v) &&
|
|
|
|
!(filename == "aboutModalView.html" && aboutRe.MatchString(v)) &&
|
|
|
|
!(filename == "logbar.html" && (v == "warn" || v == "errors")) {
|
2015-08-02 06:27:05 +00:00
|
|
|
log.Println("Untranslated text node (" + filename + "):")
|
2014-07-20 11:49:26 +00:00
|
|
|
log.Print("\t" + v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for c := n.FirstChild; c != nil; c = c.NextSibling {
|
|
|
|
if translate {
|
2015-08-02 06:27:05 +00:00
|
|
|
inTranslate(c, filename)
|
2014-07-20 11:49:26 +00:00
|
|
|
} else {
|
2015-08-02 06:27:05 +00:00
|
|
|
generalNode(c, filename)
|
2014-07-20 11:49:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-02 06:27:05 +00:00
|
|
|
func inTranslate(n *html.Node, filename string) {
|
2014-07-20 11:49:26 +00:00
|
|
|
if n.Type == html.TextNode {
|
2014-08-06 12:41:46 +00:00
|
|
|
translation(n.Data)
|
2014-07-20 11:49:26 +00:00
|
|
|
} else {
|
2015-08-02 06:27:05 +00:00
|
|
|
log.Println("translate node with non-text child < (" + filename + ")")
|
2014-07-20 11:49:26 +00:00
|
|
|
log.Println(n)
|
|
|
|
}
|
|
|
|
if n.FirstChild != nil {
|
2015-08-02 06:27:05 +00:00
|
|
|
log.Println("translate node has children (" + filename + "):")
|
2014-07-20 11:49:26 +00:00
|
|
|
log.Println(n.Data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-06 12:41:46 +00:00
|
|
|
func translation(v string) {
|
|
|
|
v = strings.TrimSpace(v)
|
|
|
|
if _, ok := trans[v]; !ok {
|
|
|
|
av := strings.Replace(v, "{%", "{{", -1)
|
|
|
|
av = strings.Replace(av, "%}", "}}", -1)
|
|
|
|
trans[v] = av
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-02 06:27:05 +00:00
|
|
|
func walkerFor(basePath string) filepath.WalkFunc {
|
|
|
|
return func(name string, info os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if filepath.Ext(name) == ".html" && info.Mode().IsRegular() {
|
|
|
|
fd, err := os.Open(name)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
doc, err := html.Parse(fd)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
fd.Close()
|
|
|
|
generalNode(doc, filepath.Base(name))
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-20 11:49:26 +00:00
|
|
|
func main() {
|
|
|
|
fd, err := os.Open(os.Args[1])
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
err = json.NewDecoder(fd).Decode(&trans)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
fd.Close()
|
|
|
|
|
2015-08-02 06:27:05 +00:00
|
|
|
var guiDir = os.Args[2]
|
|
|
|
|
|
|
|
filepath.Walk(guiDir, walkerFor(guiDir))
|
2014-08-18 19:38:22 +00:00
|
|
|
|
2014-07-20 11:49:26 +00:00
|
|
|
bs, err := json.MarshalIndent(trans, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
os.Stdout.Write(bs)
|
2014-07-31 07:08:08 +00:00
|
|
|
os.Stdout.WriteString("\n")
|
2014-07-20 11:49:26 +00:00
|
|
|
}
|