mirror of
https://github.com/lubuntu-team/blog.git
synced 2025-04-15 17:31:12 +00:00
Automatically translate all posts.
This commit is contained in:
parent
317ce8cd3f
commit
b3b30bb0b4
@ -6,4 +6,4 @@ posts/newsletter/4
|
|||||||
posts/newsletter/5
|
posts/newsletter/5
|
||||||
posts/newsletter/6
|
posts/newsletter/6
|
||||||
posts/newsletter/7
|
posts/newsletter/7
|
||||||
posts/release/lubuntu-16.04.5/
|
posts/release/lubuntu-16.04.5
|
||||||
|
@ -2,4 +2,3 @@
|
|||||||
title: Lubuntu 16.04.5 has been released!
|
title: Lubuntu 16.04.5 has been released!
|
||||||
slug: xenial-5-released
|
slug: xenial-5-released
|
||||||
type: release
|
type: release
|
||||||
l10n: ["es"]
|
|
||||||
|
52
publish-l10n
52
publish-l10n
@ -35,34 +35,38 @@ def main():
|
|||||||
if not path.exists("l10n"):
|
if not path.exists("l10n"):
|
||||||
makedirs("l10n")
|
makedirs("l10n")
|
||||||
|
|
||||||
for directory in getdirectories(sys.argv[1:]):
|
with open("post-list") as posts:
|
||||||
info = open(directory+"/info.yaml", "r", encoding="utf-8")
|
for directory in posts:
|
||||||
infoyaml = yaml.load(info, Loader=yaml.CSafeLoader)
|
directory = directory.strip("\n")
|
||||||
info.close()
|
if path.exists(directory + "/info.yaml"):
|
||||||
|
info = open(directory + "/info.yaml", "r", encoding="utf-8")
|
||||||
|
infoyaml = yaml.load(info, Loader=yaml.CSafeLoader)
|
||||||
|
info.close()
|
||||||
|
|
||||||
slugdir = "l10n/" + infoyaml["slug"] + "/"
|
slugdir = "l10n/" + infoyaml["slug"] + "/"
|
||||||
if not path.exists(slugdir):
|
if not path.exists(slugdir):
|
||||||
makedirs(slugdir)
|
makedirs(slugdir)
|
||||||
for lang in infoyaml["l10n"]:
|
if "l10n" in infoyaml:
|
||||||
if not path.exists(slugdir + lang):
|
for lang in infoyaml["l10n"]:
|
||||||
makedirs(slugdir + lang)
|
if not path.exists(slugdir + lang):
|
||||||
if path.exists(slugdir + lang + "index.html"):
|
makedirs(slugdir + lang)
|
||||||
remove(slugdir + lang + "index.html")
|
if path.exists(slugdir + lang + "index.html"):
|
||||||
|
remove(slugdir + lang + "index.html")
|
||||||
|
|
||||||
mdf = open(directory + "/l10n/" + lang + ".md", "r", encoding="utf-8")
|
mdf = open(directory + "/l10n/" + lang + ".md", "r", encoding="utf-8")
|
||||||
mdt = mdf.read()
|
mdt = mdf.read()
|
||||||
md = markdown(text=mdt)
|
md = markdown(text=mdt)
|
||||||
mdf.close()
|
mdf.close()
|
||||||
|
|
||||||
html = open("l10n-template.html", "r", encoding="utf-8")
|
html = open("l10n-template.html", "r", encoding="utf-8")
|
||||||
htmltext = html.read()
|
htmltext = html.read()
|
||||||
translatedtext = htmltext.replace("POSTCONTENT", md)
|
translatedtext = htmltext.replace("POSTCONTENT", md)
|
||||||
translatedtext = translatedtext.replace("TITLE", infoyaml["title"].replace("POUND", "#"))
|
translatedtext = translatedtext.replace("TITLE", infoyaml["title"].replace("POUND", "#"))
|
||||||
translatedtext = translatedtext.replace("SLUG", infoyaml["slug"])
|
translatedtext = translatedtext.replace("SLUG", infoyaml["slug"])
|
||||||
|
|
||||||
l10nfile = open(slugdir + lang + "/index.html", "w")
|
l10nfile = open(slugdir + lang + "/index.html", "w")
|
||||||
l10nfile.write(translatedtext)
|
l10nfile.write(translatedtext)
|
||||||
l10nfile.close()
|
l10nfile.close()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user