🌐 feat(i18n): overhaul translation system & add languages (#145)
Revamp the existing translation system, simplifying management and adding several new languages. The new system reads from TOML files in the `/i18n` directory and improves template structures. It also enhances customisation options and robustness by providing fallbacks and modularity. - Implement a new, streamlined translation macro. - Load translations from `/i18n` TOML files. - Remove redundant configuration requirements. - Refactor templates to align with new i18n system. - Add support for Hindi, Japanese, Russian, Portuguese, Chinese, Italian, German, Ukranian, Korean, and French languages. - Credit Thomas Weitzel (@thomasweitzel) for inspiration.
This commit is contained in:
61
i18n/ko.toml
Normal file
61
i18n/ko.toml
Normal file
@@ -0,0 +1,61 @@
|
||||
# This has been machine translated.
|
||||
# If you would like to help correct errors or improve the translation,
|
||||
# please open an issue or submit a pull request.
|
||||
# https://github.com/welpo/tabi
|
||||
language_name = "한국어" # Shown in language picker for multi-language sites.
|
||||
date_locale = "ko_KR"
|
||||
full_stop = "." # Used at the end of a sentence.
|
||||
|
||||
# Menu items.
|
||||
# Should match the names in config.extra.menu
|
||||
blog = "블로그"
|
||||
archive = "아카이브"
|
||||
tags = "태그"
|
||||
projects = "프로젝트"
|
||||
|
||||
# Navigation.
|
||||
read_more = "더 읽기"
|
||||
post = "게시물"
|
||||
posts = "게시물" # Plural of "post".
|
||||
prev = "이전" # As in "Previous" page.
|
||||
next = "다음" # As in "Next" page.
|
||||
of = "중" # E.g. Page 1 "of" 3
|
||||
all_posts = "모든 게시물"
|
||||
all_tags = "모든 태그"
|
||||
|
||||
# Post metadata.
|
||||
draft = "임시 저장"
|
||||
min_read = "분 읽기"
|
||||
words = "단어"
|
||||
last_updated_on = "최근 업데이트"
|
||||
see_changes = "변경사항 보기"
|
||||
|
||||
# Post body.
|
||||
table_of_contents = "목차"
|
||||
load_comments = "댓글 불러오기"
|
||||
|
||||
# Footer: Powered by Zola and tabi.
|
||||
powered_by = "제공됨"
|
||||
and = "&"
|
||||
site_source = "사이트 소스"
|
||||
|
||||
# 404 error.
|
||||
# https://welpo.github.io/tabi/404.html
|
||||
page_missing = "요청하신 페이지가 없습니다"
|
||||
translation_missing = "또는 아직 해당 언어로 번역되지 않았습니다"
|
||||
check_url = "URL을 확인하거나"
|
||||
go_home = "홈페이지로 돌아가기"
|
||||
|
||||
# For multilingual quote shortcode.
|
||||
# https://welpo.github.io/tabi/blog/shortcodes/#multilingual-quotes
|
||||
show_original_quote = "원문 인용 보기"
|
||||
show_translation = "번역 보기"
|
||||
open_quotation_mark = "“"
|
||||
close_quotation_mark = "”"
|
||||
|
||||
# Translations for stylised Atom feed.
|
||||
# https://welpo.github.io/tabi/atom.xml
|
||||
# Must contain "About Feeds"; it will become a link.
|
||||
about_feeds = "이것은 웹 피드이며, Atom 피드로도 알려져 있습니다. 주소 표시 줄의 URL을 뉴스 리더로 복사하여 구독하세요. About Feeds를 방문하여 자세히 알아보고 시작하세요. 무료입니다."
|
||||
visit_the_site = "웹사이트 방문하기"
|
||||
recent_posts = "최근 게시물"
|
Reference in New Issue
Block a user