@librecode/i18n 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -0
- package/package.json +28 -0
- package/src/app/ar.ts +843 -0
- package/src/app/br.ts +855 -0
- package/src/app/bs.ts +931 -0
- package/src/app/da.ts +925 -0
- package/src/app/de.ts +867 -0
- package/src/app/en.ts +935 -0
- package/src/app/es.ts +938 -0
- package/src/app/fr.ts +866 -0
- package/src/app/index.ts +17 -0
- package/src/app/ja.ts +850 -0
- package/src/app/ko.ts +849 -0
- package/src/app/no.ts +932 -0
- package/src/app/pl.ts +853 -0
- package/src/app/ru.ts +934 -0
- package/src/app/th.ts +921 -0
- package/src/app/tr.ts +940 -0
- package/src/app/zh.ts +920 -0
- package/src/app/zht.ts +915 -0
- package/src/desktop/ar.ts +59 -0
- package/src/desktop/br.ts +61 -0
- package/src/desktop/bs.ts +62 -0
- package/src/desktop/da.ts +61 -0
- package/src/desktop/de.ts +62 -0
- package/src/desktop/en.ts +61 -0
- package/src/desktop/es.ts +61 -0
- package/src/desktop/fr.ts +62 -0
- package/src/desktop/index.ts +15 -0
- package/src/desktop/ja.ts +62 -0
- package/src/desktop/ko.ts +60 -0
- package/src/desktop/no.ts +61 -0
- package/src/desktop/pl.ts +62 -0
- package/src/desktop/ru.ts +61 -0
- package/src/desktop/zh.ts +59 -0
- package/src/desktop/zht.ts +59 -0
- package/src/ui/ar.ts +160 -0
- package/src/ui/br.ts +160 -0
- package/src/ui/bs.ts +164 -0
- package/src/ui/da.ts +159 -0
- package/src/ui/de.ts +165 -0
- package/src/ui/en.ts +162 -0
- package/src/ui/es.ts +160 -0
- package/src/ui/fr.ts +160 -0
- package/src/ui/index.ts +17 -0
- package/src/ui/ja.ts +159 -0
- package/src/ui/ko.ts +160 -0
- package/src/ui/no.ts +163 -0
- package/src/ui/pl.ts +159 -0
- package/src/ui/ru.ts +159 -0
- package/src/ui/th.ts +161 -0
- package/src/ui/tr.ts +166 -0
- package/src/ui/zh.ts +164 -0
- package/src/ui/zht.ts +164 -0
package/src/ui/en.ts
ADDED
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
export const dict: Record<string, string> = {
|
|
2
|
+
"ui.sessionReview.title": "Session changes",
|
|
3
|
+
"ui.sessionReview.title.lastTurn": "Last turn changes",
|
|
4
|
+
"ui.sessionReview.diffStyle.unified": "Unified",
|
|
5
|
+
"ui.sessionReview.diffStyle.split": "Split",
|
|
6
|
+
"ui.sessionReview.expandAll": "Expand all",
|
|
7
|
+
"ui.sessionReview.collapseAll": "Collapse all",
|
|
8
|
+
"ui.sessionReview.change.added": "Added",
|
|
9
|
+
"ui.sessionReview.change.removed": "Removed",
|
|
10
|
+
"ui.sessionReview.change.modified": "Modified",
|
|
11
|
+
"ui.sessionReview.image.loading": "Loading...",
|
|
12
|
+
"ui.sessionReview.image.placeholder": "Image",
|
|
13
|
+
"ui.sessionReview.largeDiff.title": "Diff too large to render",
|
|
14
|
+
"ui.sessionReview.largeDiff.meta": "Limit: {{limit}} changed lines. Current: {{current}} changed lines.",
|
|
15
|
+
"ui.sessionReview.largeDiff.renderAnyway": "Render anyway",
|
|
16
|
+
"ui.sessionReview.openFile": "Open file",
|
|
17
|
+
"ui.sessionReview.selection.line": "line {{line}}",
|
|
18
|
+
"ui.sessionReview.selection.lines": "lines {{start}}-{{end}}",
|
|
19
|
+
|
|
20
|
+
"ui.fileMedia.kind.image": "image",
|
|
21
|
+
"ui.fileMedia.kind.audio": "audio",
|
|
22
|
+
"ui.fileMedia.state.removed": "Removed {{kind}} file.",
|
|
23
|
+
"ui.fileMedia.state.loading": "Loading {{kind}}...",
|
|
24
|
+
"ui.fileMedia.state.error": "Unable to load {{kind}}.",
|
|
25
|
+
"ui.fileMedia.state.unavailable": "{{kind}} preview unavailable.",
|
|
26
|
+
"ui.fileMedia.binary.title": "Binary file",
|
|
27
|
+
"ui.fileMedia.binary.description.path": "{{path}} is binary.",
|
|
28
|
+
"ui.fileMedia.binary.description.default": "Binary content",
|
|
29
|
+
|
|
30
|
+
"ui.lineComment.label.prefix": "Comment on ",
|
|
31
|
+
"ui.lineComment.label.suffix": "",
|
|
32
|
+
"ui.lineComment.editorLabel.prefix": "Commenting on ",
|
|
33
|
+
"ui.lineComment.editorLabel.suffix": "",
|
|
34
|
+
"ui.lineComment.placeholder": "Add comment",
|
|
35
|
+
"ui.lineComment.submit": "Comment",
|
|
36
|
+
|
|
37
|
+
"ui.sessionTurn.steps.show": "Show steps",
|
|
38
|
+
"ui.sessionTurn.steps.hide": "Hide steps",
|
|
39
|
+
"ui.sessionTurn.summary.response": "Response",
|
|
40
|
+
"ui.sessionTurn.diff.showMore": "Show more changes ({{count}})",
|
|
41
|
+
|
|
42
|
+
"ui.sessionTurn.retry.retrying": "retrying",
|
|
43
|
+
"ui.sessionTurn.retry.inSeconds": "in {{seconds}}s",
|
|
44
|
+
"ui.sessionTurn.retry.attempt": "attempt #{{attempt}}",
|
|
45
|
+
"ui.sessionTurn.retry.attemptLine": "{{line}} - attempt #{{attempt}}",
|
|
46
|
+
"ui.sessionTurn.retry.geminiHot": "gemini is way too hot right now",
|
|
47
|
+
"ui.sessionTurn.error.freeUsageExceeded": "Free usage exceeded",
|
|
48
|
+
"ui.sessionTurn.error.addCredits": "Add credits",
|
|
49
|
+
|
|
50
|
+
"ui.sessionTurn.status.delegating": "Delegating work",
|
|
51
|
+
"ui.sessionTurn.status.planning": "Planning next steps",
|
|
52
|
+
"ui.sessionTurn.status.gatheringContext": "Exploring",
|
|
53
|
+
"ui.sessionTurn.status.gatheredContext": "Explored",
|
|
54
|
+
"ui.sessionTurn.status.searchingCodebase": "Searching the codebase",
|
|
55
|
+
"ui.sessionTurn.status.searchingWeb": "Searching the web",
|
|
56
|
+
"ui.sessionTurn.status.makingEdits": "Making edits",
|
|
57
|
+
"ui.sessionTurn.status.runningCommands": "Running commands",
|
|
58
|
+
"ui.sessionTurn.status.thinking": "Thinking",
|
|
59
|
+
"ui.sessionTurn.status.thinkingWithTopic": "Thinking - {{topic}}",
|
|
60
|
+
"ui.sessionTurn.status.gatheringThoughts": "Gathering thoughts",
|
|
61
|
+
"ui.sessionTurn.status.consideringNextSteps": "Considering next steps",
|
|
62
|
+
|
|
63
|
+
"ui.messagePart.diagnostic.error": "Error",
|
|
64
|
+
"ui.messagePart.title.edit": "Edit",
|
|
65
|
+
"ui.messagePart.title.write": "Write",
|
|
66
|
+
"ui.messagePart.option.typeOwnAnswer": "Type your own answer",
|
|
67
|
+
"ui.messagePart.review.title": "Review your answers",
|
|
68
|
+
"ui.messagePart.questions.dismissed": "Questions dismissed",
|
|
69
|
+
"ui.messagePart.compaction": "Session compacted",
|
|
70
|
+
"ui.messagePart.context.read.one": "{{count}} read",
|
|
71
|
+
"ui.messagePart.context.read.other": "{{count}} reads",
|
|
72
|
+
"ui.messagePart.context.search.one": "{{count}} search",
|
|
73
|
+
"ui.messagePart.context.search.other": "{{count}} searches",
|
|
74
|
+
"ui.messagePart.context.list.one": "{{count}} list",
|
|
75
|
+
"ui.messagePart.context.list.other": "{{count}} lists",
|
|
76
|
+
|
|
77
|
+
"ui.list.loading": "Loading",
|
|
78
|
+
"ui.list.empty": "No results",
|
|
79
|
+
"ui.list.clearFilter": "Clear filter",
|
|
80
|
+
"ui.list.emptyWithFilter.prefix": "No results for",
|
|
81
|
+
"ui.list.emptyWithFilter.suffix": "",
|
|
82
|
+
|
|
83
|
+
"ui.fileSearch.placeholder": "Find",
|
|
84
|
+
"ui.fileSearch.previousMatch": "Previous match",
|
|
85
|
+
"ui.fileSearch.nextMatch": "Next match",
|
|
86
|
+
"ui.fileSearch.close": "Close search",
|
|
87
|
+
|
|
88
|
+
"ui.messageNav.newMessage": "New message",
|
|
89
|
+
|
|
90
|
+
"ui.textField.copyToClipboard": "Copy to clipboard",
|
|
91
|
+
"ui.textField.copyLink": "Copy link",
|
|
92
|
+
"ui.textField.copied": "Copied",
|
|
93
|
+
|
|
94
|
+
"ui.imagePreview.alt": "Image preview",
|
|
95
|
+
"ui.scrollView.ariaLabel": "scrollable content",
|
|
96
|
+
|
|
97
|
+
"ui.tool.read": "Read",
|
|
98
|
+
"ui.tool.loaded": "Loaded",
|
|
99
|
+
"ui.tool.list": "List",
|
|
100
|
+
"ui.tool.glob": "Glob",
|
|
101
|
+
"ui.tool.grep": "Grep",
|
|
102
|
+
"ui.tool.task": "Task",
|
|
103
|
+
"ui.tool.webfetch": "Webfetch",
|
|
104
|
+
"ui.tool.websearch": "Web Search",
|
|
105
|
+
"ui.tool.codesearch": "Code Search",
|
|
106
|
+
"ui.tool.shell": "Shell",
|
|
107
|
+
"ui.tool.patch": "Patch",
|
|
108
|
+
"ui.tool.todos": "To-dos",
|
|
109
|
+
"ui.tool.todos.read": "Read to-dos",
|
|
110
|
+
"ui.tool.questions": "Questions",
|
|
111
|
+
"ui.tool.agent": "{{type}} Agent",
|
|
112
|
+
"ui.tool.agent.default": "Agent",
|
|
113
|
+
"ui.tool.skill": "Skill",
|
|
114
|
+
|
|
115
|
+
"ui.basicTool.called": "Called `{{tool}}`",
|
|
116
|
+
"ui.toolErrorCard.failed": "Failed",
|
|
117
|
+
"ui.toolErrorCard.copyError": "Copy error",
|
|
118
|
+
|
|
119
|
+
"ui.common.file.one": "file",
|
|
120
|
+
"ui.common.file.other": "files",
|
|
121
|
+
"ui.common.question.one": "question",
|
|
122
|
+
"ui.common.question.other": "questions",
|
|
123
|
+
|
|
124
|
+
"ui.common.add": "Add",
|
|
125
|
+
"ui.common.back": "Back",
|
|
126
|
+
"ui.common.cancel": "Cancel",
|
|
127
|
+
"ui.common.confirm": "Confirm",
|
|
128
|
+
"ui.common.dismiss": "Dismiss",
|
|
129
|
+
"ui.common.close": "Close",
|
|
130
|
+
"ui.common.next": "Next",
|
|
131
|
+
"ui.common.submit": "Submit",
|
|
132
|
+
|
|
133
|
+
"ui.permission.deny": "Deny",
|
|
134
|
+
"ui.permission.allowAlways": "Allow always",
|
|
135
|
+
"ui.permission.allowOnce": "Allow once",
|
|
136
|
+
|
|
137
|
+
"ui.message.expand": "Expand message",
|
|
138
|
+
"ui.message.collapse": "Collapse message",
|
|
139
|
+
"ui.message.copy": "Copy",
|
|
140
|
+
"ui.message.copyMessage": "Copy message",
|
|
141
|
+
"ui.message.forkMessage": "Fork to new session",
|
|
142
|
+
"ui.message.revertMessage": "Revert message",
|
|
143
|
+
"ui.message.copyResponse": "Copy response",
|
|
144
|
+
"ui.message.copied": "Copied",
|
|
145
|
+
"ui.message.duration.seconds": "{{count}}s",
|
|
146
|
+
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
147
|
+
"ui.message.interrupted": "Interrupted",
|
|
148
|
+
"ui.message.queued": "Queued",
|
|
149
|
+
"ui.message.attachment.alt": "attachment",
|
|
150
|
+
|
|
151
|
+
"ui.patch.action.deleted": "Deleted",
|
|
152
|
+
"ui.patch.action.created": "Created",
|
|
153
|
+
"ui.patch.action.moved": "Moved",
|
|
154
|
+
"ui.patch.action.patched": "Patched",
|
|
155
|
+
|
|
156
|
+
"ui.question.subtitle.answered": "{{count}} answered",
|
|
157
|
+
"ui.question.answer.none": "(no answer)",
|
|
158
|
+
"ui.question.review.notAnswered": "(not answered)",
|
|
159
|
+
"ui.question.multiHint": "Select all answers that apply",
|
|
160
|
+
"ui.question.singleHint": "Select one answer",
|
|
161
|
+
"ui.question.custom.placeholder": "Type your answer...",
|
|
162
|
+
}
|
package/src/ui/es.ts
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
export const dict = {
|
|
2
|
+
"ui.sessionReview.title": "Cambios de la sesión",
|
|
3
|
+
"ui.sessionReview.title.lastTurn": "Cambios del último turno",
|
|
4
|
+
"ui.sessionReview.diffStyle.unified": "Unificado",
|
|
5
|
+
"ui.sessionReview.diffStyle.split": "Dividido",
|
|
6
|
+
"ui.sessionReview.openFile": "Abrir archivo",
|
|
7
|
+
"ui.sessionReview.selection.line": "línea {{line}}",
|
|
8
|
+
"ui.sessionReview.selection.lines": "líneas {{start}}-{{end}}",
|
|
9
|
+
"ui.sessionReview.expandAll": "Expandir todo",
|
|
10
|
+
"ui.sessionReview.collapseAll": "Colapsar todo",
|
|
11
|
+
"ui.sessionReview.change.added": "Añadido",
|
|
12
|
+
"ui.sessionReview.change.removed": "Eliminado",
|
|
13
|
+
"ui.sessionReview.change.modified": "Modificado",
|
|
14
|
+
"ui.sessionReview.image.loading": "Cargando...",
|
|
15
|
+
"ui.sessionReview.image.placeholder": "Imagen",
|
|
16
|
+
"ui.sessionReview.largeDiff.title": "Diff demasiado grande para renderizar",
|
|
17
|
+
"ui.sessionReview.largeDiff.meta": "Límite: {{limit}} líneas modificadas. Actual: {{current}} líneas modificadas.",
|
|
18
|
+
"ui.sessionReview.largeDiff.renderAnyway": "Renderizar de todos modos",
|
|
19
|
+
"ui.fileMedia.kind.image": "imagen",
|
|
20
|
+
"ui.fileMedia.kind.audio": "audio",
|
|
21
|
+
"ui.fileMedia.state.removed": "Archivo de {{kind}} eliminado",
|
|
22
|
+
"ui.fileMedia.state.loading": "Cargando archivo de {{kind}}",
|
|
23
|
+
"ui.fileMedia.state.error": "Error en el archivo de {{kind}}",
|
|
24
|
+
"ui.fileMedia.state.unavailable": "Archivo de {{kind}} no disponible",
|
|
25
|
+
"ui.fileMedia.binary.title": "Archivo binario",
|
|
26
|
+
"ui.fileMedia.binary.description.path": "No se puede mostrar {{path}} porque es un archivo binario.",
|
|
27
|
+
"ui.fileMedia.binary.description.default": "No se puede mostrar este archivo porque es un archivo binario.",
|
|
28
|
+
|
|
29
|
+
"ui.lineComment.label.prefix": "Comentar en ",
|
|
30
|
+
"ui.lineComment.label.suffix": "",
|
|
31
|
+
"ui.lineComment.editorLabel.prefix": "Comentando en ",
|
|
32
|
+
"ui.lineComment.editorLabel.suffix": "",
|
|
33
|
+
"ui.lineComment.placeholder": "Añadir comentario",
|
|
34
|
+
"ui.lineComment.submit": "Comentar",
|
|
35
|
+
|
|
36
|
+
"ui.sessionTurn.steps.show": "Mostrar pasos",
|
|
37
|
+
"ui.sessionTurn.steps.hide": "Ocultar pasos",
|
|
38
|
+
"ui.sessionTurn.summary.response": "Respuesta",
|
|
39
|
+
"ui.sessionTurn.diff.showMore": "Mostrar más cambios ({{count}})",
|
|
40
|
+
|
|
41
|
+
"ui.sessionTurn.retry.retrying": "reintentando",
|
|
42
|
+
"ui.sessionTurn.retry.inSeconds": "en {{seconds}}s",
|
|
43
|
+
"ui.sessionTurn.retry.attempt": "intento #{{attempt}}",
|
|
44
|
+
"ui.sessionTurn.retry.attemptLine": "{{line}} - intento #{{attempt}}",
|
|
45
|
+
"ui.sessionTurn.retry.geminiHot": "gemini está demasiado saturado",
|
|
46
|
+
"ui.sessionTurn.error.freeUsageExceeded": "Límite de uso gratuito excedido",
|
|
47
|
+
"ui.sessionTurn.error.addCredits": "Añadir créditos",
|
|
48
|
+
|
|
49
|
+
"ui.sessionTurn.status.delegating": "Delegando trabajo",
|
|
50
|
+
"ui.sessionTurn.status.planning": "Planificando siguientes pasos",
|
|
51
|
+
"ui.sessionTurn.status.gatheringContext": "Explorando",
|
|
52
|
+
"ui.sessionTurn.status.gatheredContext": "Explorado",
|
|
53
|
+
"ui.sessionTurn.status.searchingCodebase": "Buscando en la base de código",
|
|
54
|
+
"ui.sessionTurn.status.searchingWeb": "Buscando en la web",
|
|
55
|
+
"ui.sessionTurn.status.makingEdits": "Realizando ediciones",
|
|
56
|
+
"ui.sessionTurn.status.runningCommands": "Ejecutando comandos",
|
|
57
|
+
"ui.sessionTurn.status.thinking": "Pensando",
|
|
58
|
+
"ui.sessionTurn.status.thinkingWithTopic": "Pensando - {{topic}}",
|
|
59
|
+
"ui.sessionTurn.status.gatheringThoughts": "Recopilando pensamientos",
|
|
60
|
+
"ui.sessionTurn.status.consideringNextSteps": "Considerando siguientes pasos",
|
|
61
|
+
|
|
62
|
+
"ui.messagePart.questions.dismissed": "Preguntas descartadas",
|
|
63
|
+
"ui.messagePart.compaction": "Sesión compactada",
|
|
64
|
+
"ui.messagePart.context.read.one": "{{count}} lectura",
|
|
65
|
+
"ui.messagePart.context.read.other": "{{count}} lecturas",
|
|
66
|
+
"ui.messagePart.context.search.one": "{{count}} búsqueda",
|
|
67
|
+
"ui.messagePart.context.search.other": "{{count}} búsquedas",
|
|
68
|
+
"ui.messagePart.context.list.one": "{{count}} lista",
|
|
69
|
+
"ui.messagePart.context.list.other": "{{count}} listas",
|
|
70
|
+
"ui.messagePart.diagnostic.error": "Error",
|
|
71
|
+
"ui.messagePart.title.edit": "Editar",
|
|
72
|
+
"ui.messagePart.title.write": "Escribir",
|
|
73
|
+
"ui.messagePart.option.typeOwnAnswer": "Escribe tu propia respuesta",
|
|
74
|
+
"ui.messagePart.review.title": "Revisa tus respuestas",
|
|
75
|
+
|
|
76
|
+
"ui.list.loading": "Cargando",
|
|
77
|
+
"ui.list.empty": "Sin resultados",
|
|
78
|
+
"ui.list.clearFilter": "Borrar filtro",
|
|
79
|
+
"ui.list.emptyWithFilter.prefix": "Sin resultados para",
|
|
80
|
+
"ui.list.emptyWithFilter.suffix": "",
|
|
81
|
+
|
|
82
|
+
"ui.messageNav.newMessage": "Nuevo mensaje",
|
|
83
|
+
|
|
84
|
+
"ui.textField.copyToClipboard": "Copiar al portapapeles",
|
|
85
|
+
"ui.textField.copyLink": "Copiar enlace",
|
|
86
|
+
"ui.textField.copied": "Copiado",
|
|
87
|
+
|
|
88
|
+
"ui.imagePreview.alt": "Vista previa de imagen",
|
|
89
|
+
"ui.scrollView.ariaLabel": "contenido desplazable",
|
|
90
|
+
|
|
91
|
+
"ui.tool.read": "Leer",
|
|
92
|
+
"ui.tool.loaded": "Cargado",
|
|
93
|
+
"ui.tool.list": "Listar",
|
|
94
|
+
"ui.tool.glob": "Glob",
|
|
95
|
+
"ui.tool.grep": "Grep",
|
|
96
|
+
"ui.tool.webfetch": "Webfetch",
|
|
97
|
+
"ui.tool.websearch": "Búsqueda web",
|
|
98
|
+
"ui.tool.codesearch": "Búsqueda de código",
|
|
99
|
+
"ui.tool.shell": "Shell",
|
|
100
|
+
"ui.tool.patch": "Parche",
|
|
101
|
+
"ui.tool.todos": "Tareas",
|
|
102
|
+
"ui.tool.todos.read": "Leer tareas",
|
|
103
|
+
"ui.tool.questions": "Preguntas",
|
|
104
|
+
"ui.tool.agent": "Agente {{type}}",
|
|
105
|
+
"ui.tool.agent.default": "Agente",
|
|
106
|
+
|
|
107
|
+
"ui.common.file.one": "archivo",
|
|
108
|
+
"ui.common.file.other": "archivos",
|
|
109
|
+
"ui.common.question.one": "pregunta",
|
|
110
|
+
"ui.common.question.other": "preguntas",
|
|
111
|
+
|
|
112
|
+
"ui.common.add": "Añadir",
|
|
113
|
+
"ui.common.back": "Atrás",
|
|
114
|
+
"ui.common.cancel": "Cancelar",
|
|
115
|
+
"ui.common.confirm": "Confirmar",
|
|
116
|
+
"ui.common.dismiss": "Descartar",
|
|
117
|
+
"ui.common.close": "Cerrar",
|
|
118
|
+
"ui.common.next": "Siguiente",
|
|
119
|
+
"ui.common.submit": "Enviar",
|
|
120
|
+
|
|
121
|
+
"ui.permission.deny": "Denegar",
|
|
122
|
+
"ui.permission.allowAlways": "Permitir siempre",
|
|
123
|
+
"ui.permission.allowOnce": "Permitir una vez",
|
|
124
|
+
|
|
125
|
+
"ui.message.expand": "Expandir mensaje",
|
|
126
|
+
"ui.message.collapse": "Colapsar mensaje",
|
|
127
|
+
"ui.message.copy": "Copiar",
|
|
128
|
+
"ui.message.copyMessage": "Copiar mensaje",
|
|
129
|
+
"ui.message.forkMessage": "Bifurcar a nueva sesión",
|
|
130
|
+
"ui.message.revertMessage": "Restablecer a este punto",
|
|
131
|
+
"ui.message.copyResponse": "Copiar respuesta",
|
|
132
|
+
"ui.message.copied": "¡Copiado!",
|
|
133
|
+
"ui.message.interrupted": "Interrumpido",
|
|
134
|
+
"ui.message.queued": "En cola",
|
|
135
|
+
"ui.message.attachment.alt": "adjunto",
|
|
136
|
+
|
|
137
|
+
"ui.patch.action.deleted": "Eliminado",
|
|
138
|
+
"ui.patch.action.created": "Creado",
|
|
139
|
+
"ui.patch.action.moved": "Movido",
|
|
140
|
+
"ui.patch.action.patched": "Parcheado",
|
|
141
|
+
|
|
142
|
+
"ui.question.subtitle.answered": "{{count}} respondidas",
|
|
143
|
+
"ui.question.answer.none": "(sin respuesta)",
|
|
144
|
+
"ui.question.review.notAnswered": "(no respondida)",
|
|
145
|
+
"ui.question.multiHint": "Selecciona todas las que correspondan",
|
|
146
|
+
"ui.question.singleHint": "Selecciona una respuesta",
|
|
147
|
+
"ui.question.custom.placeholder": "Escribe tu respuesta...",
|
|
148
|
+
|
|
149
|
+
"ui.fileSearch.placeholder": "Buscar",
|
|
150
|
+
"ui.fileSearch.previousMatch": "Anterior",
|
|
151
|
+
"ui.fileSearch.nextMatch": "Siguiente",
|
|
152
|
+
"ui.fileSearch.close": "Cerrar búsqueda",
|
|
153
|
+
"ui.tool.task": "Tarea",
|
|
154
|
+
"ui.tool.skill": "Habilidad",
|
|
155
|
+
"ui.basicTool.called": "Llamado `{{tool}}`",
|
|
156
|
+
"ui.toolErrorCard.failed": "Falló",
|
|
157
|
+
"ui.toolErrorCard.copyError": "Copiar error",
|
|
158
|
+
"ui.message.duration.seconds": "{{count}}s",
|
|
159
|
+
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
160
|
+
}
|
package/src/ui/fr.ts
ADDED
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
export const dict = {
|
|
2
|
+
"ui.sessionReview.title": "Modifications de la session",
|
|
3
|
+
"ui.sessionReview.title.lastTurn": "Modifications du dernier tour",
|
|
4
|
+
"ui.sessionReview.diffStyle.unified": "Unifié",
|
|
5
|
+
"ui.sessionReview.diffStyle.split": "Divisé",
|
|
6
|
+
"ui.sessionReview.openFile": "Ouvrir le fichier",
|
|
7
|
+
"ui.sessionReview.selection.line": "ligne {{line}}",
|
|
8
|
+
"ui.sessionReview.selection.lines": "lignes {{start}}-{{end}}",
|
|
9
|
+
"ui.sessionReview.expandAll": "Tout développer",
|
|
10
|
+
"ui.sessionReview.collapseAll": "Tout réduire",
|
|
11
|
+
"ui.sessionReview.change.added": "Ajouté",
|
|
12
|
+
"ui.sessionReview.change.removed": "Supprimé",
|
|
13
|
+
"ui.sessionReview.change.modified": "Modifié",
|
|
14
|
+
"ui.sessionReview.image.loading": "Chargement...",
|
|
15
|
+
"ui.sessionReview.image.placeholder": "Image",
|
|
16
|
+
"ui.sessionReview.largeDiff.title": "Diff trop volumineux pour être affiché",
|
|
17
|
+
"ui.sessionReview.largeDiff.meta": "Limite : {{limit}} lignes modifiées. Actuel : {{current}} lignes modifiées.",
|
|
18
|
+
"ui.sessionReview.largeDiff.renderAnyway": "Afficher quand même",
|
|
19
|
+
"ui.fileMedia.kind.image": "image",
|
|
20
|
+
"ui.fileMedia.kind.audio": "audio",
|
|
21
|
+
"ui.fileMedia.state.removed": "Fichier {{kind}} supprimé",
|
|
22
|
+
"ui.fileMedia.state.loading": "Chargement du fichier {{kind}}",
|
|
23
|
+
"ui.fileMedia.state.error": "Erreur avec le fichier {{kind}}",
|
|
24
|
+
"ui.fileMedia.state.unavailable": "Fichier {{kind}} indisponible",
|
|
25
|
+
"ui.fileMedia.binary.title": "Fichier binaire",
|
|
26
|
+
"ui.fileMedia.binary.description.path": "Impossible d'afficher {{path}} car il s'agit d'un fichier binaire.",
|
|
27
|
+
"ui.fileMedia.binary.description.default": "Impossible d'afficher ce fichier car il s'agit d'un fichier binaire.",
|
|
28
|
+
|
|
29
|
+
"ui.lineComment.label.prefix": "Commenter sur ",
|
|
30
|
+
"ui.lineComment.label.suffix": "",
|
|
31
|
+
"ui.lineComment.editorLabel.prefix": "Commentaire sur ",
|
|
32
|
+
"ui.lineComment.editorLabel.suffix": "",
|
|
33
|
+
"ui.lineComment.placeholder": "Ajouter un commentaire",
|
|
34
|
+
"ui.lineComment.submit": "Commenter",
|
|
35
|
+
|
|
36
|
+
"ui.sessionTurn.steps.show": "Afficher les étapes",
|
|
37
|
+
"ui.sessionTurn.steps.hide": "Masquer les étapes",
|
|
38
|
+
"ui.sessionTurn.summary.response": "Réponse",
|
|
39
|
+
"ui.sessionTurn.diff.showMore": "Afficher plus de modifications ({{count}})",
|
|
40
|
+
|
|
41
|
+
"ui.sessionTurn.retry.retrying": "nouvelle tentative",
|
|
42
|
+
"ui.sessionTurn.retry.inSeconds": "dans {{seconds}}s",
|
|
43
|
+
"ui.sessionTurn.retry.attempt": "tentative n°{{attempt}}",
|
|
44
|
+
"ui.sessionTurn.retry.attemptLine": "{{line}} - tentative n°{{attempt}}",
|
|
45
|
+
"ui.sessionTurn.retry.geminiHot": "gemini est en surchauffe",
|
|
46
|
+
"ui.sessionTurn.error.freeUsageExceeded": "Limite d'utilisation gratuite dépassée",
|
|
47
|
+
"ui.sessionTurn.error.addCredits": "Ajouter des crédits",
|
|
48
|
+
|
|
49
|
+
"ui.sessionTurn.status.delegating": "Délégation du travail",
|
|
50
|
+
"ui.sessionTurn.status.planning": "Planification des prochaines étapes",
|
|
51
|
+
"ui.sessionTurn.status.gatheringContext": "Exploration",
|
|
52
|
+
"ui.sessionTurn.status.gatheredContext": "Exploré",
|
|
53
|
+
"ui.sessionTurn.status.searchingCodebase": "Recherche dans la base de code",
|
|
54
|
+
"ui.sessionTurn.status.searchingWeb": "Recherche sur le web",
|
|
55
|
+
"ui.sessionTurn.status.makingEdits": "Application des modifications",
|
|
56
|
+
"ui.sessionTurn.status.runningCommands": "Exécution des commandes",
|
|
57
|
+
"ui.sessionTurn.status.thinking": "Réflexion",
|
|
58
|
+
"ui.sessionTurn.status.thinkingWithTopic": "Réflexion - {{topic}}",
|
|
59
|
+
"ui.sessionTurn.status.gatheringThoughts": "Rassemblement des idées",
|
|
60
|
+
"ui.sessionTurn.status.consideringNextSteps": "Examen des prochaines étapes",
|
|
61
|
+
|
|
62
|
+
"ui.messagePart.questions.dismissed": "Questions ignorées",
|
|
63
|
+
"ui.messagePart.compaction": "Session compactée",
|
|
64
|
+
"ui.messagePart.context.read.one": "{{count}} lecture",
|
|
65
|
+
"ui.messagePart.context.read.other": "{{count}} lectures",
|
|
66
|
+
"ui.messagePart.context.search.one": "{{count}} recherche",
|
|
67
|
+
"ui.messagePart.context.search.other": "{{count}} recherches",
|
|
68
|
+
"ui.messagePart.context.list.one": "{{count}} liste",
|
|
69
|
+
"ui.messagePart.context.list.other": "{{count}} listes",
|
|
70
|
+
"ui.messagePart.diagnostic.error": "Erreur",
|
|
71
|
+
"ui.messagePart.title.edit": "Modifier",
|
|
72
|
+
"ui.messagePart.title.write": "Écrire",
|
|
73
|
+
"ui.messagePart.option.typeOwnAnswer": "Tapez votre propre réponse",
|
|
74
|
+
"ui.messagePart.review.title": "Passez en revue vos réponses",
|
|
75
|
+
|
|
76
|
+
"ui.list.loading": "Chargement",
|
|
77
|
+
"ui.list.empty": "Aucun résultat",
|
|
78
|
+
"ui.list.clearFilter": "Effacer le filtre",
|
|
79
|
+
"ui.list.emptyWithFilter.prefix": "Aucun résultat pour",
|
|
80
|
+
"ui.list.emptyWithFilter.suffix": "",
|
|
81
|
+
|
|
82
|
+
"ui.messageNav.newMessage": "Nouveau message",
|
|
83
|
+
|
|
84
|
+
"ui.textField.copyToClipboard": "Copier dans le presse-papiers",
|
|
85
|
+
"ui.textField.copyLink": "Copier le lien",
|
|
86
|
+
"ui.textField.copied": "Copié",
|
|
87
|
+
|
|
88
|
+
"ui.imagePreview.alt": "Aperçu de l'image",
|
|
89
|
+
"ui.scrollView.ariaLabel": "contenu défilable",
|
|
90
|
+
|
|
91
|
+
"ui.tool.read": "Lire",
|
|
92
|
+
"ui.tool.loaded": "Chargé",
|
|
93
|
+
"ui.tool.list": "Lister",
|
|
94
|
+
"ui.tool.glob": "Glob",
|
|
95
|
+
"ui.tool.grep": "Grep",
|
|
96
|
+
"ui.tool.webfetch": "Webfetch",
|
|
97
|
+
"ui.tool.websearch": "Recherche Web",
|
|
98
|
+
"ui.tool.codesearch": "Recherche de code",
|
|
99
|
+
"ui.tool.shell": "Shell",
|
|
100
|
+
"ui.tool.patch": "Patch",
|
|
101
|
+
"ui.tool.todos": "Tâches",
|
|
102
|
+
"ui.tool.todos.read": "Lire les tâches",
|
|
103
|
+
"ui.tool.questions": "Questions",
|
|
104
|
+
"ui.tool.agent": "Agent {{type}}",
|
|
105
|
+
"ui.tool.agent.default": "Agent",
|
|
106
|
+
|
|
107
|
+
"ui.common.file.one": "fichier",
|
|
108
|
+
"ui.common.file.other": "fichiers",
|
|
109
|
+
"ui.common.question.one": "question",
|
|
110
|
+
"ui.common.question.other": "questions",
|
|
111
|
+
|
|
112
|
+
"ui.common.add": "Ajouter",
|
|
113
|
+
"ui.common.back": "Retour",
|
|
114
|
+
"ui.common.cancel": "Annuler",
|
|
115
|
+
"ui.common.confirm": "Confirmer",
|
|
116
|
+
"ui.common.dismiss": "Ignorer",
|
|
117
|
+
"ui.common.close": "Fermer",
|
|
118
|
+
"ui.common.next": "Suivant",
|
|
119
|
+
"ui.common.submit": "Soumettre",
|
|
120
|
+
|
|
121
|
+
"ui.permission.deny": "Refuser",
|
|
122
|
+
"ui.permission.allowAlways": "Toujours autoriser",
|
|
123
|
+
"ui.permission.allowOnce": "Autoriser une fois",
|
|
124
|
+
|
|
125
|
+
"ui.message.expand": "Développer le message",
|
|
126
|
+
"ui.message.collapse": "Réduire le message",
|
|
127
|
+
"ui.message.copy": "Copier",
|
|
128
|
+
"ui.message.copyMessage": "Copier le message",
|
|
129
|
+
"ui.message.forkMessage": "Bifurquer vers une nouvelle session",
|
|
130
|
+
"ui.message.revertMessage": "Réinitialiser à ce point",
|
|
131
|
+
"ui.message.copyResponse": "Copier la réponse",
|
|
132
|
+
"ui.message.copied": "Copié !",
|
|
133
|
+
"ui.message.interrupted": "Interrompu",
|
|
134
|
+
"ui.message.queued": "En file",
|
|
135
|
+
"ui.message.attachment.alt": "pièce jointe",
|
|
136
|
+
|
|
137
|
+
"ui.patch.action.deleted": "Supprimé",
|
|
138
|
+
"ui.patch.action.created": "Créé",
|
|
139
|
+
"ui.patch.action.moved": "Déplacé",
|
|
140
|
+
"ui.patch.action.patched": "Corrigé",
|
|
141
|
+
|
|
142
|
+
"ui.question.subtitle.answered": "{{count}} répondu(s)",
|
|
143
|
+
"ui.question.answer.none": "(pas de réponse)",
|
|
144
|
+
"ui.question.review.notAnswered": "(non répondu)",
|
|
145
|
+
"ui.question.multiHint": "Sélectionnez tout ce qui s'applique",
|
|
146
|
+
"ui.question.singleHint": "Sélectionnez une réponse",
|
|
147
|
+
"ui.question.custom.placeholder": "Tapez votre réponse...",
|
|
148
|
+
|
|
149
|
+
"ui.fileSearch.placeholder": "Rechercher",
|
|
150
|
+
"ui.fileSearch.previousMatch": "Précédent",
|
|
151
|
+
"ui.fileSearch.nextMatch": "Suivant",
|
|
152
|
+
"ui.fileSearch.close": "Fermer la recherche",
|
|
153
|
+
"ui.tool.task": "Tâche",
|
|
154
|
+
"ui.tool.skill": "Compétence",
|
|
155
|
+
"ui.basicTool.called": "Appelé `{{tool}}`",
|
|
156
|
+
"ui.toolErrorCard.failed": "Échoué",
|
|
157
|
+
"ui.toolErrorCard.copyError": "Copier l'erreur",
|
|
158
|
+
"ui.message.duration.seconds": "{{count}}s",
|
|
159
|
+
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
160
|
+
}
|
package/src/ui/index.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export { dict as en } from "./en"
|
|
2
|
+
export { dict as zh } from "./zh"
|
|
3
|
+
export { dict as zht } from "./zht"
|
|
4
|
+
export { dict as ko } from "./ko"
|
|
5
|
+
export { dict as de } from "./de"
|
|
6
|
+
export { dict as es } from "./es"
|
|
7
|
+
export { dict as fr } from "./fr"
|
|
8
|
+
export { dict as da } from "./da"
|
|
9
|
+
export { dict as ja } from "./ja"
|
|
10
|
+
export { dict as pl } from "./pl"
|
|
11
|
+
export { dict as ru } from "./ru"
|
|
12
|
+
export { dict as ar } from "./ar"
|
|
13
|
+
export { dict as no } from "./no"
|
|
14
|
+
export { dict as br } from "./br"
|
|
15
|
+
export { dict as th } from "./th"
|
|
16
|
+
export { dict as tr } from "./tr"
|
|
17
|
+
export { dict as bs } from "./bs"
|
package/src/ui/ja.ts
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
export const dict = {
|
|
2
|
+
"ui.sessionReview.title": "セッションの変更",
|
|
3
|
+
"ui.sessionReview.title.lastTurn": "前回ターンの変更",
|
|
4
|
+
"ui.sessionReview.diffStyle.unified": "Unified",
|
|
5
|
+
"ui.sessionReview.diffStyle.split": "Split",
|
|
6
|
+
"ui.sessionReview.openFile": "ファイルを開く",
|
|
7
|
+
"ui.sessionReview.selection.line": "{{line}} 行目",
|
|
8
|
+
"ui.sessionReview.selection.lines": "{{start}}-{{end}} 行目",
|
|
9
|
+
"ui.sessionReview.expandAll": "すべて展開",
|
|
10
|
+
"ui.sessionReview.collapseAll": "すべて折りたたむ",
|
|
11
|
+
|
|
12
|
+
"ui.sessionReview.change.added": "追加",
|
|
13
|
+
"ui.sessionReview.change.removed": "削除",
|
|
14
|
+
"ui.sessionReview.change.modified": "変更",
|
|
15
|
+
"ui.sessionReview.image.loading": "読み込み中...",
|
|
16
|
+
"ui.sessionReview.image.placeholder": "画像",
|
|
17
|
+
"ui.sessionReview.largeDiff.title": "差分が大きすぎて表示できません",
|
|
18
|
+
"ui.sessionReview.largeDiff.meta": "上限: {{limit}} 変更行。現在: {{current}} 変更行。",
|
|
19
|
+
"ui.sessionReview.largeDiff.renderAnyway": "それでも表示する",
|
|
20
|
+
"ui.fileMedia.kind.image": "画像",
|
|
21
|
+
"ui.fileMedia.kind.audio": "音声",
|
|
22
|
+
"ui.fileMedia.state.removed": "{{kind}}は削除されました",
|
|
23
|
+
"ui.fileMedia.state.loading": "{{kind}}を読み込んでいます...",
|
|
24
|
+
"ui.fileMedia.state.error": "{{kind}}の読み込みに失敗しました",
|
|
25
|
+
"ui.fileMedia.state.unavailable": "{{kind}}は表示できません",
|
|
26
|
+
"ui.fileMedia.binary.title": "バイナリファイル",
|
|
27
|
+
"ui.fileMedia.binary.description.path": "{{path}} はバイナリファイルのため表示できません。",
|
|
28
|
+
"ui.fileMedia.binary.description.default": "このファイルはバイナリファイルのため表示できません。",
|
|
29
|
+
"ui.lineComment.label.prefix": "",
|
|
30
|
+
"ui.lineComment.label.suffix": "へのコメント",
|
|
31
|
+
"ui.lineComment.editorLabel.prefix": "",
|
|
32
|
+
"ui.lineComment.editorLabel.suffix": "へのコメントを作成中",
|
|
33
|
+
"ui.lineComment.placeholder": "コメントを追加",
|
|
34
|
+
"ui.lineComment.submit": "コメント",
|
|
35
|
+
"ui.sessionTurn.steps.show": "ステップを表示",
|
|
36
|
+
"ui.sessionTurn.steps.hide": "ステップを隠す",
|
|
37
|
+
"ui.sessionTurn.summary.response": "応答",
|
|
38
|
+
"ui.sessionTurn.diff.showMore": "さらに変更を表示 ({{count}})",
|
|
39
|
+
|
|
40
|
+
"ui.sessionTurn.retry.retrying": "再試行中",
|
|
41
|
+
"ui.sessionTurn.retry.inSeconds": "{{seconds}}秒後",
|
|
42
|
+
"ui.sessionTurn.retry.attempt": "{{attempt}}回目",
|
|
43
|
+
"ui.sessionTurn.retry.attemptLine": "{{line}} - {{attempt}}回目",
|
|
44
|
+
"ui.sessionTurn.retry.geminiHot": "gemini が混雑しています",
|
|
45
|
+
"ui.sessionTurn.error.freeUsageExceeded": "無料使用制限に達しました",
|
|
46
|
+
"ui.sessionTurn.error.addCredits": "クレジットを追加",
|
|
47
|
+
|
|
48
|
+
"ui.sessionTurn.status.delegating": "作業を委任中",
|
|
49
|
+
"ui.sessionTurn.status.planning": "次のステップを計画中",
|
|
50
|
+
"ui.sessionTurn.status.gatheringContext": "探索中",
|
|
51
|
+
"ui.sessionTurn.status.gatheredContext": "探索済み",
|
|
52
|
+
"ui.sessionTurn.status.searchingCodebase": "コードベースを検索中",
|
|
53
|
+
"ui.sessionTurn.status.searchingWeb": "ウェブを検索中",
|
|
54
|
+
"ui.sessionTurn.status.makingEdits": "編集を実行中",
|
|
55
|
+
"ui.sessionTurn.status.runningCommands": "コマンドを実行中",
|
|
56
|
+
"ui.sessionTurn.status.thinking": "思考中",
|
|
57
|
+
"ui.sessionTurn.status.thinkingWithTopic": "思考中 - {{topic}}",
|
|
58
|
+
"ui.sessionTurn.status.gatheringThoughts": "考えをまとめています",
|
|
59
|
+
"ui.sessionTurn.status.consideringNextSteps": "次のステップを検討中",
|
|
60
|
+
|
|
61
|
+
"ui.messagePart.questions.dismissed": "質問をスキップしました",
|
|
62
|
+
"ui.messagePart.compaction": "セッションを圧縮しました",
|
|
63
|
+
"ui.messagePart.context.read.one": "{{count}} 件の読み取り",
|
|
64
|
+
"ui.messagePart.context.read.other": "{{count}} 件の読み取り",
|
|
65
|
+
"ui.messagePart.context.search.one": "{{count}} 件の検索",
|
|
66
|
+
"ui.messagePart.context.search.other": "{{count}} 件の検索",
|
|
67
|
+
"ui.messagePart.context.list.one": "{{count}} 件のリスト",
|
|
68
|
+
"ui.messagePart.context.list.other": "{{count}} 件のリスト",
|
|
69
|
+
"ui.messagePart.diagnostic.error": "エラー",
|
|
70
|
+
"ui.messagePart.title.edit": "編集",
|
|
71
|
+
"ui.messagePart.title.write": "作成",
|
|
72
|
+
"ui.messagePart.option.typeOwnAnswer": "自分の回答を入力",
|
|
73
|
+
"ui.messagePart.review.title": "回答を確認",
|
|
74
|
+
|
|
75
|
+
"ui.list.loading": "読み込み中",
|
|
76
|
+
"ui.list.empty": "結果なし",
|
|
77
|
+
"ui.list.clearFilter": "フィルターをクリア",
|
|
78
|
+
"ui.list.emptyWithFilter.prefix": "次の検索結果はありません: ",
|
|
79
|
+
"ui.list.emptyWithFilter.suffix": "",
|
|
80
|
+
|
|
81
|
+
"ui.messageNav.newMessage": "新しいメッセージ",
|
|
82
|
+
|
|
83
|
+
"ui.textField.copyToClipboard": "クリップボードにコピー",
|
|
84
|
+
"ui.textField.copyLink": "リンクをコピー",
|
|
85
|
+
"ui.textField.copied": "コピーしました",
|
|
86
|
+
|
|
87
|
+
"ui.imagePreview.alt": "画像プレビュー",
|
|
88
|
+
"ui.scrollView.ariaLabel": "スクロール可能なコンテンツ",
|
|
89
|
+
|
|
90
|
+
"ui.tool.read": "読み込み",
|
|
91
|
+
"ui.tool.loaded": "読み込み済み",
|
|
92
|
+
"ui.tool.list": "リスト",
|
|
93
|
+
"ui.tool.glob": "Glob",
|
|
94
|
+
"ui.tool.grep": "Grep",
|
|
95
|
+
"ui.tool.webfetch": "Webfetch",
|
|
96
|
+
"ui.tool.websearch": "Web検索",
|
|
97
|
+
"ui.tool.codesearch": "コード検索",
|
|
98
|
+
"ui.tool.shell": "Shell",
|
|
99
|
+
"ui.tool.patch": "Patch",
|
|
100
|
+
"ui.tool.todos": "Todo",
|
|
101
|
+
"ui.tool.todos.read": "Todo読み込み",
|
|
102
|
+
"ui.tool.questions": "質問",
|
|
103
|
+
"ui.tool.agent": "{{type}}エージェント",
|
|
104
|
+
"ui.tool.agent.default": "エージェント",
|
|
105
|
+
|
|
106
|
+
"ui.common.file.one": "ファイル",
|
|
107
|
+
"ui.common.file.other": "ファイル",
|
|
108
|
+
"ui.common.question.one": "質問",
|
|
109
|
+
"ui.common.question.other": "質問",
|
|
110
|
+
|
|
111
|
+
"ui.common.add": "追加",
|
|
112
|
+
"ui.common.back": "戻る",
|
|
113
|
+
"ui.common.cancel": "キャンセル",
|
|
114
|
+
"ui.common.confirm": "確認",
|
|
115
|
+
"ui.common.dismiss": "閉じる",
|
|
116
|
+
"ui.common.close": "閉じる",
|
|
117
|
+
"ui.common.next": "次へ",
|
|
118
|
+
"ui.common.submit": "送信",
|
|
119
|
+
|
|
120
|
+
"ui.permission.deny": "拒否",
|
|
121
|
+
"ui.permission.allowAlways": "常に許可",
|
|
122
|
+
"ui.permission.allowOnce": "今回のみ許可",
|
|
123
|
+
|
|
124
|
+
"ui.message.expand": "メッセージを展開",
|
|
125
|
+
"ui.message.collapse": "メッセージを折りたたむ",
|
|
126
|
+
"ui.message.copy": "コピー",
|
|
127
|
+
"ui.message.copyMessage": "メッセージをコピー",
|
|
128
|
+
"ui.message.forkMessage": "新しいセッションにフォーク",
|
|
129
|
+
"ui.message.revertMessage": "この時点までリセット",
|
|
130
|
+
"ui.message.copyResponse": "応答をコピー",
|
|
131
|
+
"ui.message.copied": "コピーしました!",
|
|
132
|
+
"ui.message.interrupted": "中断",
|
|
133
|
+
"ui.message.queued": "待機中",
|
|
134
|
+
"ui.message.attachment.alt": "添付ファイル",
|
|
135
|
+
|
|
136
|
+
"ui.patch.action.deleted": "削除済み",
|
|
137
|
+
"ui.patch.action.created": "作成済み",
|
|
138
|
+
"ui.patch.action.moved": "移動済み",
|
|
139
|
+
"ui.patch.action.patched": "パッチ適用済み",
|
|
140
|
+
|
|
141
|
+
"ui.question.subtitle.answered": "{{count}}件回答済み",
|
|
142
|
+
"ui.question.answer.none": "(回答なし)",
|
|
143
|
+
"ui.question.review.notAnswered": "(未回答)",
|
|
144
|
+
"ui.question.multiHint": "該当するものをすべて選択",
|
|
145
|
+
"ui.question.singleHint": "1 つ選択",
|
|
146
|
+
"ui.question.custom.placeholder": "回答を入力...",
|
|
147
|
+
|
|
148
|
+
"ui.fileSearch.placeholder": "検索",
|
|
149
|
+
"ui.fileSearch.previousMatch": "前の一致",
|
|
150
|
+
"ui.fileSearch.nextMatch": "次の一致",
|
|
151
|
+
"ui.fileSearch.close": "検索を閉じる",
|
|
152
|
+
"ui.tool.task": "タスク",
|
|
153
|
+
"ui.tool.skill": "スキル",
|
|
154
|
+
"ui.basicTool.called": "`{{tool}}` を呼び出しました",
|
|
155
|
+
"ui.toolErrorCard.failed": "失敗",
|
|
156
|
+
"ui.toolErrorCard.copyError": "エラーをコピー",
|
|
157
|
+
"ui.message.duration.seconds": "{{count}}秒",
|
|
158
|
+
"ui.message.duration.minutesSeconds": "{{minutes}}分 {{seconds}}秒",
|
|
159
|
+
}
|