diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2021-03-12 18:44:41 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2021-03-12 18:44:41 +0300 |
commit | 5716bfd7548e386b12703e76cdf273bce839116c (patch) | |
tree | 5b21a9a8f6fd53e225f43385537d39fde70fa7c3 /config.toml | |
download | saucesource.cc-5716bfd7548e386b12703e76cdf273bce839116c.tar.gz saucesource.cc-5716bfd7548e386b12703e76cdf273bce839116c.zip |
Initial commit
Essential functional website.
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..cbb311e --- /dev/null +++ b/config.toml @@ -0,0 +1,77 @@ +title = "saucesource" +base_url = "http://saucesource.cc/" + +generate_feed = false +#feed_filename = "feed.xml" + +compile_sass = true +build_search_index = false + +taxonomies = [ + {name = "categories"}, + {name = "tags"}, +] + +default_language = "en" +languages = [ + {code = "es"}, + {code = "ru"}, +] + +[translations] + +[translations.en] +home="Home" +recipes="Recipes" +archive="Archive" +about="About" +cookbook="Cookbook" +published = "Published" +published_on = "on" +edited = "Last edited" +also_read = "This recipe is also available in other languages: " +archive_title = "Recipes archive" +recipes_title = "Latest recipes" +page = "Page" +first = "First" +last = "Last" +author_website = "Website" +author_donate = "Tip the author" + +[translations.es] +home="Inicio" +recipes="Recetas" +archive="Archivo" +about="Acerca de" +cookbook="Recetario" +published = "Publicado el" +published_on = "en:" +edited = "Última edición: " +also_read = "Esta receta está disponible en otros idiomas: " +archive_title = "Archivo de recetas" +recipes_title = "Últimas recetas" +page = "Página" +first = "Primera" +last = "Última" +author_website = "Sitio web" +author_donate = "Donar al autor" + +[translations.ru] +home="Главная" +recipes="Рецепты" +archive="Архив" +about="О сайте" +cookbook="Книга рецептов" +published = "Опубликовано" +published_on = "в: " +edited = "Отредакировано: " +also_read = "Данный рецепт также доступен на других языках: " +archive_title = "Архив рецептов" +recipes_title = "Последние рецепты" +page = "Страница" +first = "Начало" +last = "Конец" +author_website = "Веб-сайт" +author_donate = "Пожертвовать автору" + +[extra] |