1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
| import { Translation } from "./definition"
|
| export default {
| propertyDefaults: {
| title: "無題",
| description: "説明なし",
| },
| components: {
| backlinks: {
| title: "バックリンク",
| noBacklinksFound: "バックリンクはありません",
| },
| themeToggle: {
| lightMode: "ライトモード",
| darkMode: "ダークモード",
| },
| explorer: {
| title: "エクスプローラー",
| },
| footer: {
| createdWith: "作成",
| },
| graph: {
| title: "グラフビュー",
| },
| recentNotes: {
| title: "最近の記事",
| seeRemainingMore: ({ remaining }) => `さらに${remaining}件 →`,
| },
| transcludes: {
| transcludeOf: ({ targetSlug }) => `${targetSlug}のまとめ`,
| linkToOriginal: "元記事へのリンク",
| },
| search: {
| title: "検索",
| searchBarPlaceholder: "検索ワードを入力",
| },
| tableOfContents: {
| title: "目次",
| },
| },
| pages: {
| rss: {
| recentNotes: "最近の記事",
| lastFewNotes: ({ count }) => `最新の${count}件`,
| },
| error: {
| title: "Not Found",
| notFound: "ページが存在しないか、非公開設定になっています。",
| },
| folderContent: {
| folder: "フォルダ",
| itemsUnderFolder: ({ count }) => `${count}件のページ`,
| },
| tagContent: {
| tag: "タグ",
| tagIndex: "タグ一覧",
| itemsUnderTag: ({ count }) => `${count}件のページ`,
| showingFirst: ({ count }) => `のうち最初の${count}件を表示しています`,
| totalTags: ({ count }) => `全${count}個のタグを表示中`,
| },
| },
| } as const satisfies Translation
|
|