mirror of
https://github.com/saicaca/fuwari.git
synced 2026-01-12 07:12:52 +01:00
* Add code copy * fix: safari copyButton style * fix: addPreCopyButton up time * modify: CopyButton style * fix: Duplicate rendering issue with copy button
42 lines
1002 B
TypeScript
42 lines
1002 B
TypeScript
import Key from '../i18nKey'
|
|
import type { Translation } from '../translation'
|
|
|
|
export const ja: Translation = {
|
|
[Key.home]: 'Home',
|
|
[Key.about]: 'About',
|
|
[Key.archive]: '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]: 'ライセンス',
|
|
|
|
[Key.codeCopy]: 'コピー',
|
|
[Key.codeCopied]: 'コピーしました',
|
|
}
|