🌐 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.
1 year ago
|
|
|
# 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 and config.extra.footer_menu.
|
🌐 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.
1 year ago
|
|
|
blog = "블로그"
|
|
|
|
archive = "아카이브"
|
|
|
|
tags = "태그"
|
|
|
|
projects = "프로젝트"
|
|
|
|
about = "소개"
|
|
|
|
contact = "연락처"
|
|
|
|
privacy = "개인정보 처리방침"
|
|
|
|
site_statistics = "사이트 통계"
|
|
|
|
sitemap = "사이트맵"
|
🌐 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.
1 year ago
|
|
|
|
|
|
|
# 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 = "모든 태그"
|
|
|
|
language_selection = "언어 선택"
|
|
|
|
toggle_mode = "$MODE 모드로 전환" # $MODE will be replaced by a value (or both) below.
|
|
|
|
dark = "어두운"
|
|
|
|
light = "밝은"
|
|
|
|
reset_mode = "모드를 OS 기본값으로 재설정"
|
🌐 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.
1 year ago
|
|
|
|
|
|
|
# Quick navigation buttons.
|
|
|
|
toggle_toc = "목차 토글"
|
|
|
|
go_to_top = "페이지 상단으로"
|
|
|
|
go_to_comments = "댓글 섹션으로"
|
|
|
|
|
🌐 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.
1 year ago
|
|
|
# Post metadata.
|
|
|
|
draft = "임시 저장"
|
|
|
|
min_read = "분 읽기"
|
|
|
|
words = "단어"
|
|
|
|
last_updated_on = "최근 업데이트"
|
|
|
|
see_changes = "변경사항 보기"
|
|
|
|
|
|
|
|
# Post body.
|
|
|
|
table_of_contents = "목차"
|
|
|
|
load_comments = "댓글 불러오기"
|
|
|
|
|
|
|
|
# Copy code block button.
|
|
|
|
copied = "복사됨!"
|
|
|
|
copy_code_to_clipboard = "코드를 클립보드에 복사"
|
|
|
|
|
🌐 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.
1 year ago
|
|
|
# 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 = "최근 게시물"
|