diff options
author | EuAndreh <eu@euandre.org> | 2023-04-08 16:20:00 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-08 21:18:22 -0300 |
commit | 6c2cbb02ac4b16ee7b4c37de50403ce604868ec0 (patch) | |
tree | ffb2fb30a741a04f89474f64a2e01df3d891cd12 /v2/src/lib | |
parent | v2: src/lib/: Unmark things as executable (diff) | |
download | euandre.org-6c2cbb02ac4b16ee7b4c37de50403ce604868ec0.tar.gz euandre.org-6c2cbb02ac4b16ee7b4c37de50403ce604868ec0.tar.xz |
v2: i18n of the collection name, "article" collection in root
Diffstat (limited to '')
-rw-r--r-- | v2/src/lib/base.en.conf | 39 | ||||
-rw-r--r-- | v2/src/lib/base.pt.conf | 39 | ||||
-rw-r--r-- | v2/src/lib/commencement.en.conf | 7 | ||||
-rw-r--r-- | v2/src/lib/commencement.pt.conf | 7 |
4 files changed, 64 insertions, 28 deletions
diff --git a/v2/src/lib/base.en.conf b/v2/src/lib/base.en.conf index 5ced00a..bc90b10 100644 --- a/v2/src/lib/base.en.conf +++ b/v2/src/lib/base.en.conf @@ -4,30 +4,41 @@ export site_name="EuAndreh's website" export lang='en' -export index_pastebins_title='Pastebins' +export about='About' -export index_recent_pastebins_title='Pastebins listing' +export about_url_name='about.html' -export index_category_pastebins_title='Pastebins by category' +export by_category_url_name='by-category.html' -export index by_category_url_part='by-category.html' +export homepage_url="$(url-for "$lang/")" -export feed_pastebins_title="EuAndreh's pastebins" +export homepage_url_absolute="$(absolute "$homepage_url")" -export index_tils_title='TIL' +export about_url="$(url-for "$lang/$about_url_name")" -export index_recent_tils_title='TIL listing' -export index_category_tils_title='TIL by category' +export index__title='Blog' -export feed_tils_title="EuAndreh's TIL" +export index_recent__title='Recent articles' -export about='About' +export index_category__title='Articles by category' -export about_url_name='about.html' +export feed__title="EuAndreh's articles" -export homepage_url="$(url-for "$lang/")" -export homepage_url_absolute="$(absolute "$homepage_url")" +export index_pastebin_title='Pastebins' -export about_url="$(url-for "$lang/$about_url_name")" +export index_recent_pastebin_title='Pastebins listing' + +export index_category_pastebin_title='Pastebins by category' + +export feed_pastebin_title="EuAndreh's pastebins" + + +export index_til_title='TIL' + +export index_recent_til_title='TIL listing' + +export index_category_til_title='TIL by category' + +export feed_til_title="EuAndreh's TIL" diff --git a/v2/src/lib/base.pt.conf b/v2/src/lib/base.pt.conf index fe03f42..5703bed 100644 --- a/v2/src/lib/base.pt.conf +++ b/v2/src/lib/base.pt.conf @@ -4,30 +4,41 @@ export site_name="EuAndreh's website" export lang='pt' -export index_pastebins_title='Pastebins' +export about='About' -export index_recent_pastebins_title='Pastebins listing' +export about_url_name='sobre.html' -export index_category_pastebins_title='Pastebins by category' +export by_category_url_name='por-categoria.html' -export index by_category_url_part='by-category.html' +export homepage_url="$(url-for "$lang/")" -export feed_pastebins_title="EuAndreh's pastebins" +export homepage_url_absolute="$(absolute "$homepage_url")" -export index_tils_title='TIL' +export about_url="$(url-for "$lang/$about_url_name")" -export index_recent_tils_title='TIL listing' -export index_category_tils_title='TIL by category' +export index__title='Blog' -export feed_tils_title="EuAndreh's TIL" +export index_recent__title='Artigos recentes' -export about='About' +export index_category__title='Artigos por categoria' -export about_url_name='about.html' +export feed__title="Artigos do EuAndreh" -export homepage_url="$(url-for "$lang/")" -export homepage_url_absolute="$(absolute "$homepage_url")" +export index_pastebin_title='Pastebins' -export about_url="$(url-for "$lang/$about_url_name")" +export index_recent_pastebin_title='Pastebins listing' + +export index_category_pastebin_title='Pastebins by category' + +export feed_pastebin_title="EuAndreh's pastebins" + + +export index_til_title='HEA' + +export index_recent_til_title='HEA recentes' + +export index_category_til_title='HEA por categoria' + +export feed_til_title="HEA do EuAndreh" diff --git a/v2/src/lib/commencement.en.conf b/v2/src/lib/commencement.en.conf new file mode 100644 index 0000000..9b19b18 --- /dev/null +++ b/v2/src/lib/commencement.en.conf @@ -0,0 +1,7 @@ +#!/bin/sh + +export article_collection_name='' + +export pastebin_collection_name='pastebin' + +export til_collection_name='til' diff --git a/v2/src/lib/commencement.pt.conf b/v2/src/lib/commencement.pt.conf new file mode 100644 index 0000000..e3b9544 --- /dev/null +++ b/v2/src/lib/commencement.pt.conf @@ -0,0 +1,7 @@ +#!/bin/sh + +export article_collection_name='' + +export pastebin_collection_name='pastebin' + +export til_collection_name='hea' |