From a7cfc562e95b930c0963f6846a0775848ab1abeb Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 9 Apr 2023 19:49:35 +0200 Subject: [PATCH] Fix: Add back title and description for translated sites --- blog/config.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/blog/config.toml b/blog/config.toml index cdf6ee34..ca8230fb 100644 --- a/blog/config.toml +++ b/blog/config.toml @@ -51,6 +51,9 @@ translation_contributors = "With contributions from" word_separator = "and" # Chinese (simplified) +[languages.zh-CN] +title = "Writing an OS in Rust" +description = "This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code." [languages.zh-CN.translations] lang_name = "Chinese (simplified)" toc = "目录" @@ -66,6 +69,9 @@ translation_contributors = "With contributions from" word_separator = "和" # Chinese (traditional) +[languages.zh-TW] +title = "Writing an OS in Rust" +description = "This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code." [languages.zh-TW.translations] lang_name = "Chinese (traditional)" toc = "目錄" @@ -81,6 +87,9 @@ translation_contributors = "With contributions from" word_separator = "和" # Japanese +[languages.ja] +title = "Writing an OS in Rust" +description = "This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code." [languages.ja.translations] lang_name = "Japanese" toc = "目次" @@ -96,6 +105,9 @@ translation_contributors = "With contributions from" word_separator = "及び" # Persian +[languages.fa] +title = "Writing an OS in Rust" +description = "This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code." [languages.fa.translations] lang_name = "Persian" toc = "فهرست مطالب" @@ -111,6 +123,9 @@ translation_contributors = "With contributions from" word_separator = "و" # Russian +[languages.ru] +title = "Writing an OS in Rust" +description = "This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code." [languages.ru.translations] lang_name = "Russian" toc = "Содержание" @@ -126,6 +141,9 @@ translation_contributors = "With contributions from" word_separator = "и" # French +[languages.fr] +title = "Writing an OS in Rust" +description = "This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code." [languages.fr.translations] lang_name = "French" toc = "Table des matières" @@ -141,6 +159,9 @@ translation_contributors = "With contributions from" word_separator = "et" # Korean +[languages.ko] +title = "Writing an OS in Rust" +description = "This blog series creates a small operating system in the Rust programming language. Each post is a small tutorial and includes all needed code." [languages.ko.translations] lang_name = "Korean" toc = "목차"