From 46364090e5f8d38a43fb3d105032083c7c31345c Mon Sep 17 00:00:00 2001 From: Sungchan Yi Date: Sun, 25 Jun 2023 17:58:07 +0900 Subject: [PATCH] feat: update config and locale --- _config.yml | 24 ++++++------ _data/locales/en.yml | 91 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+), 11 deletions(-) create mode 100644 _data/locales/en.yml diff --git a/_config.yml b/_config.yml index 7ed3e72..49181b6 100644 --- a/_config.yml +++ b/_config.yml @@ -13,14 +13,14 @@ baseurl: "" lang: en # Change to your timezone › http://www.timezoneconverter.com/cgi-bin/findzone/findzone -timezone: +timezone: "Asia/Seoul" # jekyll-seo-tag settings › https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md # ↓ -------------------------- -title: Chirpy # the main title +title: Life Log # the main title -tagline: A text-focused Jekyll theme # it will display as the sub-title +tagline: Recording Life # it will display as the sub-title description: >- # used by seo meta and the atom feed A minimal, responsive and feature-rich Jekyll theme for technical writing. @@ -29,20 +29,19 @@ description: >- # used by seo meta and the atom feed url: "" github: - username: github_username # change to your github username + username: calofmijuck # change to your github username twitter: - username: twitter_username # change to your twitter username + username: calofmijuck # change to your twitter username social: # Change to your full name. # It will be displayed as the default author of the posts and the copyright owner in the Footer - name: your_full_name - email: example@domain.com # change to your email address + name: Sungchan Yi + email: calofmijuck@snu.ac.kr # change to your email address links: # The first element serves as the copyright owner's link - - https://twitter.com/username # change to your twitter homepage - - https://github.com/username # change to your github homepage + - https://github.com/calofmijuck # change to your github homepage # Uncomment below to add more social links # - https://www.facebook.com/username # - https://www.linkedin.com/in/username @@ -70,7 +69,7 @@ google_analytics: # light - Use the light color scheme # dark - Use the dark color scheme # -theme_mode: # [light|dark] +theme_mode: light # The CDN endpoint for images. # Notice that once it is assigned, the CDN url @@ -80,7 +79,7 @@ theme_mode: # [light|dark] img_cdn: # the avatar on sidebar, support local or CORS resources -avatar: +avatar: assets/img/avatar.png # boolean type, the global switch for TOC in posts. toc: true @@ -197,3 +196,6 @@ jekyll-archives: permalinks: tag: /tags/:name/ category: /categories/:name/ + +plugins: + - jekyll-include-cache diff --git a/_data/locales/en.yml b/_data/locales/en.yml new file mode 100644 index 0000000..6e65110 --- /dev/null +++ b/_data/locales/en.yml @@ -0,0 +1,91 @@ +# The layout text of site + +# ----- Commons label ----- + +layout: + post: Post + category: Category + tag: Tag + +# The tabs of sidebar +tabs: + # format: : + home: Home + categories: Categories + tags: Tags + archives: Archives + about: About + +# the text displayed in the search bar & search results +search: + hint: search + cancel: Cancel + no_results: Oops! No results found. + +panel: + lastmod: Recently Updated + trending_tags: Trending Tags + toc: Contents + +copyright: + # Shown at the bottom of the post + license: + template: This post is licensed under :LICENSE_NAME by the author. + name: CC BY 4.0 + link: https://creativecommons.org/licenses/by/4.0/ + + # Displayed in the footer + brief: All rights reserved. + verbose: >- + Except where otherwise noted, the blog posts on this site are licensed + under the Creative Commons Attribution 4.0 International (CC BY 4.0) License by the author. + +meta: "" + +not_found: + statment: Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. + +notification: + update_found: A new version of content is available. + update: Update + +# ----- Posts related labels ----- + +post: + written_by: By + posted: Posted + updated: Updated + words: words + pageview_measure: views + read_time: + unit: min + prompt: read + relate_posts: Further Reading + share: Share + button: + next: Newer + previous: Older + copy_code: + succeed: Copied! + share_link: + title: Copy link + succeed: Link copied successfully! + +# Date time format. +# See: , +df: + post: + strftime: "%b %e, %Y" + dayjs: "ll" + archives: + strftime: "%b" + dayjs: "MMM" + +# categories page +categories: + category_measure: + singular: category + plural: categories + post_measure: + singular: post + plural: posts