Adding a new post plus some upgrades from upstream
This commit is contained in:
parent
73d324bec1
commit
054d8e3bb8
20 changed files with 1311 additions and 0 deletions
38
src/i18n/languages/es.ts
Normal file
38
src/i18n/languages/es.ts
Normal file
|
@ -0,0 +1,38 @@
|
|||
import Key from '../i18nKey'
|
||||
import type { Translation } from '../translation'
|
||||
|
||||
export const es: Translation = {
|
||||
[Key.home]: 'Inicio',
|
||||
[Key.about]: 'Sobre mí',
|
||||
[Key.archive]: 'Archivo',
|
||||
[Key.search]: 'Buscar',
|
||||
|
||||
[Key.tags]: 'Etiquetas',
|
||||
[Key.categories]: 'Categorías',
|
||||
[Key.recentPosts]: 'Publicaciones recientes',
|
||||
|
||||
[Key.comments]: 'Comentarios',
|
||||
|
||||
[Key.untitled]: 'Sin título',
|
||||
[Key.uncategorized]: 'Sin categoría',
|
||||
[Key.noTags]: 'Sin etiquetas',
|
||||
|
||||
[Key.wordCount]: 'palabra',
|
||||
[Key.wordsCount]: 'palabras',
|
||||
[Key.minuteCount]: 'minuto',
|
||||
[Key.minutesCount]: 'minutos',
|
||||
[Key.postCount]: 'publicación',
|
||||
[Key.postsCount]: 'publicaciones',
|
||||
|
||||
[Key.themeColor]: 'Color del tema',
|
||||
|
||||
[Key.lightMode]: 'Claro',
|
||||
[Key.darkMode]: 'Oscuro',
|
||||
[Key.systemMode]: 'Sistema',
|
||||
|
||||
[Key.more]: 'Más',
|
||||
|
||||
[Key.author]: 'Autor',
|
||||
[Key.publishedAt]: 'Publicado el',
|
||||
[Key.license]: 'Licencia',
|
||||
}
|
38
src/i18n/languages/ko.ts
Normal file
38
src/i18n/languages/ko.ts
Normal file
|
@ -0,0 +1,38 @@
|
|||
import Key from '../i18nKey'
|
||||
import type { Translation } from '../translation'
|
||||
|
||||
export const ko: Translation = {
|
||||
[Key.home]: '홈',
|
||||
[Key.about]: '소개',
|
||||
[Key.archive]: '아카이브',
|
||||
[Key.search]: '검색',
|
||||
|
||||
[Key.tags]: '태그',
|
||||
[Key.categories]: '카테고리',
|
||||
[Key.recentPosts]: '최근 게시물',
|
||||
|
||||
[Key.comments]: '댓글',
|
||||
|
||||
[Key.untitled]: '제목 없음',
|
||||
[Key.uncategorized]: '분류되지 않음',
|
||||
[Key.noTags]: '태그 없음',
|
||||
|
||||
[Key.wordCount]: '단어',
|
||||
[Key.wordsCount]: '단어',
|
||||
[Key.minuteCount]: '분',
|
||||
[Key.minutesCount]: '분',
|
||||
[Key.postCount]: '게시물',
|
||||
[Key.postsCount]: '게시물',
|
||||
|
||||
[Key.themeColor]: '테마 색상',
|
||||
|
||||
[Key.lightMode]: '밝은 모드',
|
||||
[Key.darkMode]: '어두운 모드',
|
||||
[Key.systemMode]: '시스템 모드',
|
||||
|
||||
[Key.more]: '더 보기',
|
||||
|
||||
[Key.author]: '저자',
|
||||
[Key.publishedAt]: '게시일',
|
||||
[Key.license]: '라이선스',
|
||||
}
|
38
src/i18n/languages/th.ts
Normal file
38
src/i18n/languages/th.ts
Normal file
|
@ -0,0 +1,38 @@
|
|||
import Key from '../i18nKey'
|
||||
import type { Translation } from '../translation'
|
||||
|
||||
export const th: Translation = {
|
||||
[Key.home]: 'หน้าแรก',
|
||||
[Key.about]: 'เกี่ยวกับ',
|
||||
[Key.archive]: 'คลัง',
|
||||
[Key.search]: 'ค้นหา',
|
||||
|
||||
[Key.tags]: 'ป้ายกำกับ',
|
||||
[Key.categories]: 'หมวดหมู่',
|
||||
[Key.recentPosts]: 'โพสต์ล่าสุด',
|
||||
|
||||
[Key.comments]: 'ความคิดเห็น',
|
||||
|
||||
[Key.untitled]: 'ไม่ได้ตั้งชื่อ',
|
||||
[Key.uncategorized]: 'ไม่ได้จัดหมวดหมู่',
|
||||
[Key.noTags]: 'ไม่มีป้ายกำกับ',
|
||||
|
||||
[Key.wordCount]: 'คำ',
|
||||
[Key.wordsCount]: 'คำ',
|
||||
[Key.minuteCount]: 'นาที',
|
||||
[Key.minutesCount]: 'นาที',
|
||||
[Key.postCount]: 'โพสต์',
|
||||
[Key.postsCount]: 'โพสต์',
|
||||
|
||||
[Key.themeColor]: 'สีของธีม',
|
||||
|
||||
[Key.lightMode]: 'สว่าง',
|
||||
[Key.darkMode]: 'มืด',
|
||||
[Key.systemMode]: 'ตามระบบ',
|
||||
|
||||
[Key.more]: 'ดูเพิ่ม',
|
||||
|
||||
[Key.author]: 'ผู้เขียน',
|
||||
[Key.publishedAt]: 'เผยแพร่เมื่อ',
|
||||
[Key.license]: 'สัญญาอนุญาต',
|
||||
}
|
Reference in a new issue