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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
| import { Translation } from "./definition"
|
| export default {
| propertyDefaults: {
| title: "Sem título",
| description: "Sem descrição",
| },
| components: {
| callout: {
| note: "Nota",
| abstract: "Abstrato",
| info: "Info",
| todo: "Pendência",
| tip: "Dica",
| success: "Sucesso",
| question: "Pergunta",
| warning: "Aviso",
| failure: "Falha",
| danger: "Perigo",
| bug: "Bug",
| example: "Exemplo",
| quote: "Citação",
| },
| backlinks: {
| title: "Backlinks",
| noBacklinksFound: "Sem backlinks encontrados",
| },
| themeToggle: {
| lightMode: "Tema claro",
| darkMode: "Tema escuro",
| },
| explorer: {
| title: "Explorador",
| },
| footer: {
| createdWith: "Criado com",
| },
| graph: {
| title: "Visão de gráfico",
| },
| recentNotes: {
| title: "Notas recentes",
| seeRemainingMore: ({ remaining }) => `Veja mais ${remaining} →`,
| },
| transcludes: {
| transcludeOf: ({ targetSlug }) => `Transcrever de ${targetSlug}`,
| linkToOriginal: "Link ao original",
| },
| search: {
| title: "Pesquisar",
| searchBarPlaceholder: "Pesquisar por algo",
| },
| tableOfContents: {
| title: "Sumário",
| },
| contentMeta: {
| readingTime: ({ minutes }) => `Leitura de ${minutes} min`,
| },
| },
| pages: {
| rss: {
| recentNotes: "Notas recentes",
| lastFewNotes: ({ count }) => `Últimas ${count} notas`,
| },
| error: {
| title: "Não encontrado",
| notFound: "Esta página é privada ou não existe.",
| },
| folderContent: {
| folder: "Arquivo",
| itemsUnderFolder: ({ count }) =>
| count === 1 ? "1 item neste arquivo." : `${count} items neste arquivo.`,
| },
| tagContent: {
| tag: "Tag",
| tagIndex: "Sumário de Tags",
| itemsUnderTag: ({ count }) =>
| count === 1 ? "1 item com esta tag." : `${count} items com esta tag.`,
| showingFirst: ({ count }) => `Mostrando as ${count} primeiras tags.`,
| totalTags: ({ count }) => `Encontradas ${count} tags.`,
| },
| },
| } as const satisfies Translation
|
|