@involvex/fresh-editor 0.1.76 → 0.1.78
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/bin/CHANGELOG.md +1017 -0
- package/bin/LICENSE +117 -0
- package/bin/README.md +248 -0
- package/bin/fresh.exe +0 -0
- package/bin/plugins/README.md +71 -0
- package/bin/plugins/audit_mode.i18n.json +821 -0
- package/bin/plugins/audit_mode.ts +1810 -0
- package/bin/plugins/buffer_modified.i18n.json +67 -0
- package/bin/plugins/buffer_modified.ts +281 -0
- package/bin/plugins/calculator.i18n.json +93 -0
- package/bin/plugins/calculator.ts +770 -0
- package/bin/plugins/clangd-lsp.ts +168 -0
- package/bin/plugins/clangd_support.i18n.json +223 -0
- package/bin/plugins/clangd_support.md +20 -0
- package/bin/plugins/clangd_support.ts +325 -0
- package/bin/plugins/color_highlighter.i18n.json +145 -0
- package/bin/plugins/color_highlighter.ts +304 -0
- package/bin/plugins/config-schema.json +768 -0
- package/bin/plugins/csharp-lsp.ts +147 -0
- package/bin/plugins/csharp_support.i18n.json +80 -0
- package/bin/plugins/csharp_support.ts +170 -0
- package/bin/plugins/css-lsp.ts +143 -0
- package/bin/plugins/diagnostics_panel.i18n.json +236 -0
- package/bin/plugins/diagnostics_panel.ts +642 -0
- package/bin/plugins/examples/README.md +85 -0
- package/bin/plugins/examples/async_demo.ts +165 -0
- package/bin/plugins/examples/bookmarks.ts +329 -0
- package/bin/plugins/examples/buffer_query_demo.ts +110 -0
- package/bin/plugins/examples/git_grep.ts +262 -0
- package/bin/plugins/examples/hello_world.ts +93 -0
- package/bin/plugins/examples/virtual_buffer_demo.ts +116 -0
- package/bin/plugins/find_references.i18n.json +275 -0
- package/bin/plugins/find_references.ts +359 -0
- package/bin/plugins/git_blame.i18n.json +496 -0
- package/bin/plugins/git_blame.ts +707 -0
- package/bin/plugins/git_find_file.i18n.json +314 -0
- package/bin/plugins/git_find_file.ts +300 -0
- package/bin/plugins/git_grep.i18n.json +171 -0
- package/bin/plugins/git_grep.ts +191 -0
- package/bin/plugins/git_gutter.i18n.json +93 -0
- package/bin/plugins/git_gutter.ts +477 -0
- package/bin/plugins/git_log.i18n.json +481 -0
- package/bin/plugins/git_log.ts +1285 -0
- package/bin/plugins/go-lsp.ts +143 -0
- package/bin/plugins/html-lsp.ts +145 -0
- package/bin/plugins/json-lsp.ts +145 -0
- package/bin/plugins/lib/fresh.d.ts +1321 -0
- package/bin/plugins/lib/index.ts +24 -0
- package/bin/plugins/lib/navigation-controller.ts +214 -0
- package/bin/plugins/lib/panel-manager.ts +220 -0
- package/bin/plugins/lib/types.ts +72 -0
- package/bin/plugins/lib/virtual-buffer-factory.ts +130 -0
- package/bin/plugins/live_grep.i18n.json +171 -0
- package/bin/plugins/live_grep.ts +422 -0
- package/bin/plugins/markdown_compose.i18n.json +223 -0
- package/bin/plugins/markdown_compose.ts +630 -0
- package/bin/plugins/merge_conflict.i18n.json +821 -0
- package/bin/plugins/merge_conflict.ts +1810 -0
- package/bin/plugins/path_complete.i18n.json +80 -0
- package/bin/plugins/path_complete.ts +165 -0
- package/bin/plugins/python-lsp.ts +162 -0
- package/bin/plugins/rust-lsp.ts +166 -0
- package/bin/plugins/search_replace.i18n.json +405 -0
- package/bin/plugins/search_replace.ts +484 -0
- package/bin/plugins/test_i18n.i18n.json +67 -0
- package/bin/plugins/test_i18n.ts +18 -0
- package/bin/plugins/theme_editor.i18n.json +3746 -0
- package/bin/plugins/theme_editor.ts +2063 -0
- package/bin/plugins/todo_highlighter.i18n.json +184 -0
- package/bin/plugins/todo_highlighter.ts +206 -0
- package/bin/plugins/typescript-lsp.ts +167 -0
- package/bin/plugins/vi_mode.i18n.json +1549 -0
- package/bin/plugins/vi_mode.ts +2747 -0
- package/bin/plugins/welcome.i18n.json +236 -0
- package/bin/plugins/welcome.ts +76 -0
- package/bin/themes/dark.json +102 -0
- package/bin/themes/dracula.json +62 -0
- package/bin/themes/high-contrast.json +102 -0
- package/bin/themes/light.json +102 -0
- package/bin/themes/nord.json +62 -0
- package/bin/themes/nostalgia.json +102 -0
- package/bin/themes/solarized-dark.json +62 -0
- package/binary-install.js +1 -1
- package/dist/bin/fresh.js +9 -0
- package/dist/binary-install.js +149 -0
- package/dist/binary.js +30 -0
- package/dist/fresh-6yhknp07.exe +0 -0
- package/dist/install.js +158 -0
- package/dist/run-fresh.js +43 -0
- package/package.json +7 -2
|
@@ -0,0 +1,496 @@
|
|
|
1
|
+
{
|
|
2
|
+
"en": {
|
|
3
|
+
"cmd.git_blame": "Git Blame",
|
|
4
|
+
"cmd.git_blame_desc": "Show git blame for current file (magit-style)",
|
|
5
|
+
"cmd.git_blame_close": "Git Blame: Close",
|
|
6
|
+
"cmd.git_blame_close_desc": "Close the git blame panel",
|
|
7
|
+
"cmd.git_blame_go_back": "Git Blame: Go Back",
|
|
8
|
+
"cmd.git_blame_go_back_desc": "Show blame at parent commit of current line",
|
|
9
|
+
|
|
10
|
+
"status.already_open": "Git blame already open",
|
|
11
|
+
"status.loading": "Loading git blame...",
|
|
12
|
+
"status.no_file": "No file open to blame",
|
|
13
|
+
"status.no_blame_info": "No blame information available (not a git file or error)",
|
|
14
|
+
"status.failed_open": "Failed to open git blame panel",
|
|
15
|
+
"status.closed": "Git blame closed",
|
|
16
|
+
"status.blame_ready": "Git blame: {count} blocks | b: blame at parent | q: close",
|
|
17
|
+
"status.move_to_line": "Move cursor to a blame line first",
|
|
18
|
+
"status.not_committed": "This line is not yet committed",
|
|
19
|
+
"status.loading_parent": "Loading blame at {hash}^...",
|
|
20
|
+
"status.cannot_go_back": "Cannot get blame at {hash}^ (may be initial commit or file didn't exist)",
|
|
21
|
+
"status.blame_at_parent": "Git blame at {hash}^ | depth: {depth} | b: go deeper | q: close",
|
|
22
|
+
"status.hash_copied": "Copied: {short} ({full})",
|
|
23
|
+
"status.hash_display": "Hash: {hash}",
|
|
24
|
+
"status.git_error": "Git blame error: {error}",
|
|
25
|
+
|
|
26
|
+
"time.just_now": "just now",
|
|
27
|
+
"time.minutes_ago": "{count} minute ago",
|
|
28
|
+
"time.minutes_ago_plural": "{count} minutes ago",
|
|
29
|
+
"time.hours_ago": "{count} hour ago",
|
|
30
|
+
"time.hours_ago_plural": "{count} hours ago",
|
|
31
|
+
"time.days_ago": "{count} day ago",
|
|
32
|
+
"time.days_ago_plural": "{count} days ago",
|
|
33
|
+
"time.weeks_ago": "{count} week ago",
|
|
34
|
+
"time.weeks_ago_plural": "{count} weeks ago",
|
|
35
|
+
"time.months_ago": "{count} month ago",
|
|
36
|
+
"time.months_ago_plural": "{count} months ago",
|
|
37
|
+
"time.years_ago": "{count} year ago",
|
|
38
|
+
"time.years_ago_plural": "{count} years ago"
|
|
39
|
+
},
|
|
40
|
+
"cs": {
|
|
41
|
+
"cmd.git_blame": "Git Blame",
|
|
42
|
+
"cmd.git_blame_desc": "Zobrazit git blame pro aktualni soubor (styl magit)",
|
|
43
|
+
"cmd.git_blame_close": "Git Blame: Zavrit",
|
|
44
|
+
"cmd.git_blame_close_desc": "Zavrit panel git blame",
|
|
45
|
+
"cmd.git_blame_go_back": "Git Blame: Zpet",
|
|
46
|
+
"cmd.git_blame_go_back_desc": "Zobrazit blame v rodicovskem commitu aktualniho radku",
|
|
47
|
+
|
|
48
|
+
"status.already_open": "Git blame je jiz otevreny",
|
|
49
|
+
"status.loading": "Nacitam git blame...",
|
|
50
|
+
"status.no_file": "Zadny soubor neni otevren pro blame",
|
|
51
|
+
"status.no_blame_info": "Informace o blame nejsou k dispozici (neni to git soubor nebo doslo k chybe)",
|
|
52
|
+
"status.failed_open": "Nepodarilo se otevrit panel git blame",
|
|
53
|
+
"status.closed": "Git blame zavren",
|
|
54
|
+
"status.blame_ready": "Git blame: {count} bloku | b: blame v rodici | q: zavrit",
|
|
55
|
+
"status.move_to_line": "Nejprve presunte kurzor na radek blame",
|
|
56
|
+
"status.not_committed": "Tento radek jeste neni commitnut",
|
|
57
|
+
"status.loading_parent": "Nacitam blame v {hash}^...",
|
|
58
|
+
"status.cannot_go_back": "Nelze ziskat blame v {hash}^ (muze byt pocatecni commit nebo soubor neexistoval)",
|
|
59
|
+
"status.blame_at_parent": "Git blame v {hash}^ | hloubka: {depth} | b: jit hloubeji | q: zavrit",
|
|
60
|
+
"status.hash_copied": "Zkopirovano: {short} ({full})",
|
|
61
|
+
"status.hash_display": "Hash: {hash}",
|
|
62
|
+
"status.git_error": "Chyba git blame: {error}",
|
|
63
|
+
|
|
64
|
+
"time.just_now": "prave ted",
|
|
65
|
+
"time.minutes_ago": "pred {count} minutou",
|
|
66
|
+
"time.minutes_ago_plural": "pred {count} minutami",
|
|
67
|
+
"time.hours_ago": "pred {count} hodinou",
|
|
68
|
+
"time.hours_ago_plural": "pred {count} hodinami",
|
|
69
|
+
"time.days_ago": "pred {count} dnem",
|
|
70
|
+
"time.days_ago_plural": "pred {count} dny",
|
|
71
|
+
"time.weeks_ago": "pred {count} tydnem",
|
|
72
|
+
"time.weeks_ago_plural": "pred {count} tydny",
|
|
73
|
+
"time.months_ago": "pred {count} mesicem",
|
|
74
|
+
"time.months_ago_plural": "pred {count} mesici",
|
|
75
|
+
"time.years_ago": "pred {count} rokem",
|
|
76
|
+
"time.years_ago_plural": "pred {count} lety"
|
|
77
|
+
},
|
|
78
|
+
"de": {
|
|
79
|
+
"cmd.git_blame": "Git Blame",
|
|
80
|
+
"cmd.git_blame_desc": "Git blame fuer aktuelle Datei anzeigen (Magit-Stil)",
|
|
81
|
+
"cmd.git_blame_close": "Git Blame: Schliessen",
|
|
82
|
+
"cmd.git_blame_close_desc": "Git blame Panel schliessen",
|
|
83
|
+
"cmd.git_blame_go_back": "Git Blame: Zurueck",
|
|
84
|
+
"cmd.git_blame_go_back_desc": "Blame beim Eltern-Commit der aktuellen Zeile anzeigen",
|
|
85
|
+
|
|
86
|
+
"status.already_open": "Git blame bereits geoeffnet",
|
|
87
|
+
"status.loading": "Lade git blame...",
|
|
88
|
+
"status.no_file": "Keine Datei zum Blamen geoeffnet",
|
|
89
|
+
"status.no_blame_info": "Keine Blame-Informationen verfuegbar (keine Git-Datei oder Fehler)",
|
|
90
|
+
"status.failed_open": "Git blame Panel konnte nicht geoeffnet werden",
|
|
91
|
+
"status.closed": "Git blame geschlossen",
|
|
92
|
+
"status.blame_ready": "Git blame: {count} Bloecke | b: Blame bei Eltern | q: schliessen",
|
|
93
|
+
"status.move_to_line": "Zuerst Cursor auf eine Blame-Zeile bewegen",
|
|
94
|
+
"status.not_committed": "Diese Zeile ist noch nicht committet",
|
|
95
|
+
"status.loading_parent": "Lade blame bei {hash}^...",
|
|
96
|
+
"status.cannot_go_back": "Kann blame bei {hash}^ nicht abrufen (moeglicherweise initialer Commit oder Datei existierte nicht)",
|
|
97
|
+
"status.blame_at_parent": "Git blame bei {hash}^ | Tiefe: {depth} | b: tiefer gehen | q: schliessen",
|
|
98
|
+
"status.hash_copied": "Kopiert: {short} ({full})",
|
|
99
|
+
"status.hash_display": "Hash: {hash}",
|
|
100
|
+
"status.git_error": "Git blame Fehler: {error}",
|
|
101
|
+
|
|
102
|
+
"time.just_now": "gerade eben",
|
|
103
|
+
"time.minutes_ago": "vor {count} Minute",
|
|
104
|
+
"time.minutes_ago_plural": "vor {count} Minuten",
|
|
105
|
+
"time.hours_ago": "vor {count} Stunde",
|
|
106
|
+
"time.hours_ago_plural": "vor {count} Stunden",
|
|
107
|
+
"time.days_ago": "vor {count} Tag",
|
|
108
|
+
"time.days_ago_plural": "vor {count} Tagen",
|
|
109
|
+
"time.weeks_ago": "vor {count} Woche",
|
|
110
|
+
"time.weeks_ago_plural": "vor {count} Wochen",
|
|
111
|
+
"time.months_ago": "vor {count} Monat",
|
|
112
|
+
"time.months_ago_plural": "vor {count} Monaten",
|
|
113
|
+
"time.years_ago": "vor {count} Jahr",
|
|
114
|
+
"time.years_ago_plural": "vor {count} Jahren"
|
|
115
|
+
},
|
|
116
|
+
"es": {
|
|
117
|
+
"cmd.git_blame": "Git Blame",
|
|
118
|
+
"cmd.git_blame_desc": "Mostrar git blame del archivo actual (estilo magit)",
|
|
119
|
+
"cmd.git_blame_close": "Git Blame: Cerrar",
|
|
120
|
+
"cmd.git_blame_close_desc": "Cerrar el panel de git blame",
|
|
121
|
+
"cmd.git_blame_go_back": "Git Blame: Retroceder",
|
|
122
|
+
"cmd.git_blame_go_back_desc": "Mostrar blame en el commit padre de la linea actual",
|
|
123
|
+
|
|
124
|
+
"status.already_open": "Git blame ya esta abierto",
|
|
125
|
+
"status.loading": "Cargando git blame...",
|
|
126
|
+
"status.no_file": "No hay archivo abierto para blame",
|
|
127
|
+
"status.no_blame_info": "No hay informacion de blame disponible (no es un archivo git o hay un error)",
|
|
128
|
+
"status.failed_open": "Error al abrir el panel de git blame",
|
|
129
|
+
"status.closed": "Git blame cerrado",
|
|
130
|
+
"status.blame_ready": "Git blame: {count} bloques | b: blame en padre | q: cerrar",
|
|
131
|
+
"status.move_to_line": "Primero mueve el cursor a una linea de blame",
|
|
132
|
+
"status.not_committed": "Esta linea aun no esta comprometida",
|
|
133
|
+
"status.loading_parent": "Cargando blame en {hash}^...",
|
|
134
|
+
"status.cannot_go_back": "No se puede obtener blame en {hash}^ (puede ser el commit inicial o el archivo no existia)",
|
|
135
|
+
"status.blame_at_parent": "Git blame en {hash}^ | profundidad: {depth} | b: ir mas profundo | q: cerrar",
|
|
136
|
+
"status.hash_copied": "Copiado: {short} ({full})",
|
|
137
|
+
"status.hash_display": "Hash: {hash}",
|
|
138
|
+
"status.git_error": "Error de git blame: {error}",
|
|
139
|
+
|
|
140
|
+
"time.just_now": "ahora mismo",
|
|
141
|
+
"time.minutes_ago": "hace {count} minuto",
|
|
142
|
+
"time.minutes_ago_plural": "hace {count} minutos",
|
|
143
|
+
"time.hours_ago": "hace {count} hora",
|
|
144
|
+
"time.hours_ago_plural": "hace {count} horas",
|
|
145
|
+
"time.days_ago": "hace {count} dia",
|
|
146
|
+
"time.days_ago_plural": "hace {count} dias",
|
|
147
|
+
"time.weeks_ago": "hace {count} semana",
|
|
148
|
+
"time.weeks_ago_plural": "hace {count} semanas",
|
|
149
|
+
"time.months_ago": "hace {count} mes",
|
|
150
|
+
"time.months_ago_plural": "hace {count} meses",
|
|
151
|
+
"time.years_ago": "hace {count} ano",
|
|
152
|
+
"time.years_ago_plural": "hace {count} anos"
|
|
153
|
+
},
|
|
154
|
+
"fr": {
|
|
155
|
+
"cmd.git_blame": "Git Blame",
|
|
156
|
+
"cmd.git_blame_desc": "Afficher git blame pour le fichier actuel (style magit)",
|
|
157
|
+
"cmd.git_blame_close": "Git Blame: Fermer",
|
|
158
|
+
"cmd.git_blame_close_desc": "Fermer le panneau git blame",
|
|
159
|
+
"cmd.git_blame_go_back": "Git Blame: Retour",
|
|
160
|
+
"cmd.git_blame_go_back_desc": "Afficher le blame au commit parent de la ligne actuelle",
|
|
161
|
+
|
|
162
|
+
"status.already_open": "Git blame deja ouvert",
|
|
163
|
+
"status.loading": "Chargement de git blame...",
|
|
164
|
+
"status.no_file": "Aucun fichier ouvert pour blame",
|
|
165
|
+
"status.no_blame_info": "Aucune information de blame disponible (pas un fichier git ou erreur)",
|
|
166
|
+
"status.failed_open": "Echec de l'ouverture du panneau git blame",
|
|
167
|
+
"status.closed": "Git blame ferme",
|
|
168
|
+
"status.blame_ready": "Git blame: {count} blocs | b: blame au parent | q: fermer",
|
|
169
|
+
"status.move_to_line": "Deplacez d'abord le curseur sur une ligne de blame",
|
|
170
|
+
"status.not_committed": "Cette ligne n'est pas encore commitee",
|
|
171
|
+
"status.loading_parent": "Chargement du blame a {hash}^...",
|
|
172
|
+
"status.cannot_go_back": "Impossible d'obtenir le blame a {hash}^ (peut etre le commit initial ou le fichier n'existait pas)",
|
|
173
|
+
"status.blame_at_parent": "Git blame a {hash}^ | profondeur: {depth} | b: aller plus loin | q: fermer",
|
|
174
|
+
"status.hash_copied": "Copie: {short} ({full})",
|
|
175
|
+
"status.hash_display": "Hash: {hash}",
|
|
176
|
+
"status.git_error": "Erreur git blame: {error}",
|
|
177
|
+
|
|
178
|
+
"time.just_now": "a l'instant",
|
|
179
|
+
"time.minutes_ago": "il y a {count} minute",
|
|
180
|
+
"time.minutes_ago_plural": "il y a {count} minutes",
|
|
181
|
+
"time.hours_ago": "il y a {count} heure",
|
|
182
|
+
"time.hours_ago_plural": "il y a {count} heures",
|
|
183
|
+
"time.days_ago": "il y a {count} jour",
|
|
184
|
+
"time.days_ago_plural": "il y a {count} jours",
|
|
185
|
+
"time.weeks_ago": "il y a {count} semaine",
|
|
186
|
+
"time.weeks_ago_plural": "il y a {count} semaines",
|
|
187
|
+
"time.months_ago": "il y a {count} mois",
|
|
188
|
+
"time.months_ago_plural": "il y a {count} mois",
|
|
189
|
+
"time.years_ago": "il y a {count} an",
|
|
190
|
+
"time.years_ago_plural": "il y a {count} ans"
|
|
191
|
+
},
|
|
192
|
+
"it": {
|
|
193
|
+
"cmd.git_blame": "Git Blame",
|
|
194
|
+
"cmd.git_blame_desc": "Mostra git blame per il file corrente (stile magit)",
|
|
195
|
+
"cmd.git_blame_close": "Git Blame: Chiudi",
|
|
196
|
+
"cmd.git_blame_close_desc": "Chiudi il pannello git blame",
|
|
197
|
+
"cmd.git_blame_go_back": "Git Blame: Torna indietro",
|
|
198
|
+
"cmd.git_blame_go_back_desc": "Mostra il blame al commit genitore della riga corrente",
|
|
199
|
+
|
|
200
|
+
"status.already_open": "Git blame già aperto",
|
|
201
|
+
"status.loading": "Caricamento git blame...",
|
|
202
|
+
"status.no_file": "Nessun file aperto per il blame",
|
|
203
|
+
"status.no_blame_info": "Nessuna informazione di blame disponibile (non è un file git o errore)",
|
|
204
|
+
"status.failed_open": "Impossibile aprire il pannello git blame",
|
|
205
|
+
"status.closed": "Git blame chiuso",
|
|
206
|
+
"status.blame_ready": "Git blame: {count} blocchi | b: blame al genitore | q: chiudi",
|
|
207
|
+
"status.move_to_line": "Sposta prima il cursore su una riga di blame",
|
|
208
|
+
"status.not_committed": "Questa riga non è stata ancora committata",
|
|
209
|
+
"status.loading_parent": "Caricamento blame a {hash}^...",
|
|
210
|
+
"status.cannot_go_back": "Impossibile ottenere il blame a {hash}^ (potrebbe essere il commit iniziale o il file non esisteva)",
|
|
211
|
+
"status.blame_at_parent": "Git blame a {hash}^ | profondità: {depth} | b: vai più a fondo | q: chiudi",
|
|
212
|
+
"status.hash_copied": "Copiato: {short} ({full})",
|
|
213
|
+
"status.hash_display": "Hash: {hash}",
|
|
214
|
+
"status.git_error": "Errore git blame: {error}",
|
|
215
|
+
|
|
216
|
+
"time.just_now": "proprio ora",
|
|
217
|
+
"time.minutes_ago": "{count} minuto fa",
|
|
218
|
+
"time.minutes_ago_plural": "{count} minuti fa",
|
|
219
|
+
"time.hours_ago": "{count} ora fa",
|
|
220
|
+
"time.hours_ago_plural": "{count} ore fa",
|
|
221
|
+
"time.days_ago": "{count} giorno fa",
|
|
222
|
+
"time.days_ago_plural": "{count} giorni fa",
|
|
223
|
+
"time.weeks_ago": "{count} settimana fa",
|
|
224
|
+
"time.weeks_ago_plural": "{count} settimane fa",
|
|
225
|
+
"time.months_ago": "{count} mese fa",
|
|
226
|
+
"time.months_ago_plural": "{count} mesi fa",
|
|
227
|
+
"time.years_ago": "{count} anno fa",
|
|
228
|
+
"time.years_ago_plural": "{count} anni fa"
|
|
229
|
+
},
|
|
230
|
+
"ja": {
|
|
231
|
+
"cmd.git_blame": "Git Blame",
|
|
232
|
+
"cmd.git_blame_desc": "現在のファイルのgit blameを表示(magitスタイル)",
|
|
233
|
+
"cmd.git_blame_close": "Git Blame: 閉じる",
|
|
234
|
+
"cmd.git_blame_close_desc": "git blameパネルを閉じる",
|
|
235
|
+
"cmd.git_blame_go_back": "Git Blame: 戻る",
|
|
236
|
+
"cmd.git_blame_go_back_desc": "現在の行の親コミットでblameを表示",
|
|
237
|
+
|
|
238
|
+
"status.already_open": "Git blameは既に開いています",
|
|
239
|
+
"status.loading": "Git blameを読み込み中...",
|
|
240
|
+
"status.no_file": "blameするファイルが開かれていません",
|
|
241
|
+
"status.no_blame_info": "blame情報がありません(gitファイルではないかエラーです)",
|
|
242
|
+
"status.failed_open": "Git blameパネルを開けませんでした",
|
|
243
|
+
"status.closed": "Git blameを閉じました",
|
|
244
|
+
"status.blame_ready": "Git blame: {count}ブロック | b: 親でblame | q: 閉じる",
|
|
245
|
+
"status.move_to_line": "まずカーソルをblame行に移動してください",
|
|
246
|
+
"status.not_committed": "この行はまだコミットされていません",
|
|
247
|
+
"status.loading_parent": "{hash}^でblameを読み込み中...",
|
|
248
|
+
"status.cannot_go_back": "{hash}^でblameを取得できません(初期コミットかファイルが存在しなかった可能性があります)",
|
|
249
|
+
"status.blame_at_parent": "Git blame {hash}^ | 深さ: {depth} | b: さらに深く | q: 閉じる",
|
|
250
|
+
"status.hash_copied": "コピーしました: {short} ({full})",
|
|
251
|
+
"status.hash_display": "ハッシュ: {hash}",
|
|
252
|
+
"status.git_error": "Git blameエラー: {error}",
|
|
253
|
+
|
|
254
|
+
"time.just_now": "たった今",
|
|
255
|
+
"time.minutes_ago": "{count}分前",
|
|
256
|
+
"time.minutes_ago_plural": "{count}分前",
|
|
257
|
+
"time.hours_ago": "{count}時間前",
|
|
258
|
+
"time.hours_ago_plural": "{count}時間前",
|
|
259
|
+
"time.days_ago": "{count}日前",
|
|
260
|
+
"time.days_ago_plural": "{count}日前",
|
|
261
|
+
"time.weeks_ago": "{count}週間前",
|
|
262
|
+
"time.weeks_ago_plural": "{count}週間前",
|
|
263
|
+
"time.months_ago": "{count}ヶ月前",
|
|
264
|
+
"time.months_ago_plural": "{count}ヶ月前",
|
|
265
|
+
"time.years_ago": "{count}年前",
|
|
266
|
+
"time.years_ago_plural": "{count}年前"
|
|
267
|
+
},
|
|
268
|
+
"ko": {
|
|
269
|
+
"cmd.git_blame": "Git Blame",
|
|
270
|
+
"cmd.git_blame_desc": "현재 파일의 git blame 표시 (magit 스타일)",
|
|
271
|
+
"cmd.git_blame_close": "Git Blame: 닫기",
|
|
272
|
+
"cmd.git_blame_close_desc": "git blame 패널 닫기",
|
|
273
|
+
"cmd.git_blame_go_back": "Git Blame: 뒤로",
|
|
274
|
+
"cmd.git_blame_go_back_desc": "현재 줄의 부모 커밋에서 blame 표시",
|
|
275
|
+
|
|
276
|
+
"status.already_open": "Git blame이 이미 열려 있습니다",
|
|
277
|
+
"status.loading": "Git blame 로딩 중...",
|
|
278
|
+
"status.no_file": "blame할 파일이 열려 있지 않습니다",
|
|
279
|
+
"status.no_blame_info": "blame 정보를 사용할 수 없습니다 (git 파일이 아니거나 오류)",
|
|
280
|
+
"status.failed_open": "git blame 패널을 열지 못했습니다",
|
|
281
|
+
"status.closed": "Git blame 닫힘",
|
|
282
|
+
"status.blame_ready": "Git blame: {count}개 블록 | b: 부모에서 blame | q: 닫기",
|
|
283
|
+
"status.move_to_line": "먼저 커서를 blame 줄로 이동하세요",
|
|
284
|
+
"status.not_committed": "이 줄은 아직 커밋되지 않았습니다",
|
|
285
|
+
"status.loading_parent": "{hash}^에서 blame 로딩 중...",
|
|
286
|
+
"status.cannot_go_back": "{hash}^에서 blame을 가져올 수 없습니다 (초기 커밋이거나 파일이 존재하지 않았을 수 있음)",
|
|
287
|
+
"status.blame_at_parent": "Git blame {hash}^ | 깊이: {depth} | b: 더 깊이 | q: 닫기",
|
|
288
|
+
"status.hash_copied": "복사됨: {short} ({full})",
|
|
289
|
+
"status.hash_display": "해시: {hash}",
|
|
290
|
+
"status.git_error": "Git blame 오류: {error}",
|
|
291
|
+
|
|
292
|
+
"time.just_now": "방금",
|
|
293
|
+
"time.minutes_ago": "{count}분 전",
|
|
294
|
+
"time.minutes_ago_plural": "{count}분 전",
|
|
295
|
+
"time.hours_ago": "{count}시간 전",
|
|
296
|
+
"time.hours_ago_plural": "{count}시간 전",
|
|
297
|
+
"time.days_ago": "{count}일 전",
|
|
298
|
+
"time.days_ago_plural": "{count}일 전",
|
|
299
|
+
"time.weeks_ago": "{count}주 전",
|
|
300
|
+
"time.weeks_ago_plural": "{count}주 전",
|
|
301
|
+
"time.months_ago": "{count}개월 전",
|
|
302
|
+
"time.months_ago_plural": "{count}개월 전",
|
|
303
|
+
"time.years_ago": "{count}년 전",
|
|
304
|
+
"time.years_ago_plural": "{count}년 전"
|
|
305
|
+
},
|
|
306
|
+
"pt-BR": {
|
|
307
|
+
"cmd.git_blame": "Git Blame",
|
|
308
|
+
"cmd.git_blame_desc": "Mostrar git blame para o arquivo atual (estilo magit)",
|
|
309
|
+
"cmd.git_blame_close": "Git Blame: Fechar",
|
|
310
|
+
"cmd.git_blame_close_desc": "Fechar o painel git blame",
|
|
311
|
+
"cmd.git_blame_go_back": "Git Blame: Voltar",
|
|
312
|
+
"cmd.git_blame_go_back_desc": "Mostrar blame no commit pai da linha atual",
|
|
313
|
+
|
|
314
|
+
"status.already_open": "Git blame ja esta aberto",
|
|
315
|
+
"status.loading": "Carregando git blame...",
|
|
316
|
+
"status.no_file": "Nenhum arquivo aberto para blame",
|
|
317
|
+
"status.no_blame_info": "Nenhuma informacao de blame disponivel (nao e um arquivo git ou erro)",
|
|
318
|
+
"status.failed_open": "Falha ao abrir o painel git blame",
|
|
319
|
+
"status.closed": "Git blame fechado",
|
|
320
|
+
"status.blame_ready": "Git blame: {count} blocos | b: blame no pai | q: fechar",
|
|
321
|
+
"status.move_to_line": "Primeiro mova o cursor para uma linha de blame",
|
|
322
|
+
"status.not_committed": "Esta linha ainda nao foi commitada",
|
|
323
|
+
"status.loading_parent": "Carregando blame em {hash}^...",
|
|
324
|
+
"status.cannot_go_back": "Nao foi possivel obter blame em {hash}^ (pode ser commit inicial ou arquivo nao existia)",
|
|
325
|
+
"status.blame_at_parent": "Git blame em {hash}^ | profundidade: {depth} | b: ir mais fundo | q: fechar",
|
|
326
|
+
"status.hash_copied": "Copiado: {short} ({full})",
|
|
327
|
+
"status.hash_display": "Hash: {hash}",
|
|
328
|
+
"status.git_error": "Erro git blame: {error}",
|
|
329
|
+
|
|
330
|
+
"time.just_now": "agora mesmo",
|
|
331
|
+
"time.minutes_ago": "ha {count} minuto",
|
|
332
|
+
"time.minutes_ago_plural": "ha {count} minutos",
|
|
333
|
+
"time.hours_ago": "ha {count} hora",
|
|
334
|
+
"time.hours_ago_plural": "ha {count} horas",
|
|
335
|
+
"time.days_ago": "ha {count} dia",
|
|
336
|
+
"time.days_ago_plural": "ha {count} dias",
|
|
337
|
+
"time.weeks_ago": "ha {count} semana",
|
|
338
|
+
"time.weeks_ago_plural": "ha {count} semanas",
|
|
339
|
+
"time.months_ago": "ha {count} mes",
|
|
340
|
+
"time.months_ago_plural": "ha {count} meses",
|
|
341
|
+
"time.years_ago": "ha {count} ano",
|
|
342
|
+
"time.years_ago_plural": "ha {count} anos"
|
|
343
|
+
},
|
|
344
|
+
"ru": {
|
|
345
|
+
"cmd.git_blame": "Git Blame",
|
|
346
|
+
"cmd.git_blame_desc": "Pokazat' git blame dlya tekushchego fayla (stil' magit)",
|
|
347
|
+
"cmd.git_blame_close": "Git Blame: Zakryt'",
|
|
348
|
+
"cmd.git_blame_close_desc": "Zakryt' panel' git blame",
|
|
349
|
+
"cmd.git_blame_go_back": "Git Blame: Nazad",
|
|
350
|
+
"cmd.git_blame_go_back_desc": "Pokazat' blame v roditel'skom kommite tekushchey stroki",
|
|
351
|
+
|
|
352
|
+
"status.already_open": "Git blame uzhe otkryt",
|
|
353
|
+
"status.loading": "Zagruzka git blame...",
|
|
354
|
+
"status.no_file": "Net otkrytogo fayla dlya blame",
|
|
355
|
+
"status.no_blame_info": "Net informatsii blame (ne git fayl ili oshibka)",
|
|
356
|
+
"status.failed_open": "Ne udalos' otkryt' panel' git blame",
|
|
357
|
+
"status.closed": "Git blame zakryt",
|
|
358
|
+
"status.blame_ready": "Git blame: {count} blokov | b: blame v roditelye | q: zakryt'",
|
|
359
|
+
"status.move_to_line": "Snachala peremesstite kursor na stroku blame",
|
|
360
|
+
"status.not_committed": "Eta stroka eshche ne zakommichena",
|
|
361
|
+
"status.loading_parent": "Zagruzka blame v {hash}^...",
|
|
362
|
+
"status.cannot_go_back": "Ne udalos' poluchit' blame v {hash}^ (vozmozhno nachal'nyy kommit ili fayl ne sushchestvoval)",
|
|
363
|
+
"status.blame_at_parent": "Git blame v {hash}^ | glubina: {depth} | b: glubzhe | q: zakryt'",
|
|
364
|
+
"status.hash_copied": "Skopirovano: {short} ({full})",
|
|
365
|
+
"status.hash_display": "Khesh: {hash}",
|
|
366
|
+
"status.git_error": "Oshibka git blame: {error}",
|
|
367
|
+
|
|
368
|
+
"time.just_now": "tol'ko chto",
|
|
369
|
+
"time.minutes_ago": "{count} minutu nazad",
|
|
370
|
+
"time.minutes_ago_plural": "{count} minut nazad",
|
|
371
|
+
"time.hours_ago": "{count} chas nazad",
|
|
372
|
+
"time.hours_ago_plural": "{count} chasov nazad",
|
|
373
|
+
"time.days_ago": "{count} den' nazad",
|
|
374
|
+
"time.days_ago_plural": "{count} dney nazad",
|
|
375
|
+
"time.weeks_ago": "{count} nedelyu nazad",
|
|
376
|
+
"time.weeks_ago_plural": "{count} nedel' nazad",
|
|
377
|
+
"time.months_ago": "{count} mesyats nazad",
|
|
378
|
+
"time.months_ago_plural": "{count} mesyatsev nazad",
|
|
379
|
+
"time.years_ago": "{count} god nazad",
|
|
380
|
+
"time.years_ago_plural": "{count} let nazad"
|
|
381
|
+
},
|
|
382
|
+
"th": {
|
|
383
|
+
"cmd.git_blame": "Git Blame",
|
|
384
|
+
"cmd.git_blame_desc": "แสดง git blame สำหรับไฟล์ปัจจุบัน (สไตล์ magit)",
|
|
385
|
+
"cmd.git_blame_close": "Git Blame: ปิด",
|
|
386
|
+
"cmd.git_blame_close_desc": "ปิดแผง git blame",
|
|
387
|
+
"cmd.git_blame_go_back": "Git Blame: ย้อนกลับ",
|
|
388
|
+
"cmd.git_blame_go_back_desc": "แสดง blame ที่คอมมิตหลักของบรรทัดปัจจุบัน",
|
|
389
|
+
|
|
390
|
+
"status.already_open": "Git blame เปิดอยู่แล้ว",
|
|
391
|
+
"status.loading": "กำลังโหลด git blame...",
|
|
392
|
+
"status.no_file": "ไม่มีไฟล์เปิดอยู่สำหรับ blame",
|
|
393
|
+
"status.no_blame_info": "ไม่มีข้อมูล blame (ไม่ใช่ไฟล์ git หรือมีข้อผิดพลาด)",
|
|
394
|
+
"status.failed_open": "ไม่สามารถเปิดแผง git blame ได้",
|
|
395
|
+
"status.closed": "ปิด Git blame แล้ว",
|
|
396
|
+
"status.blame_ready": "Git blame: {count} บล็อก | b: blame ที่หลัก | q: ปิด",
|
|
397
|
+
"status.move_to_line": "กรุณาเลื่อนเคอร์เซอร์ไปที่บรรทัด blame ก่อน",
|
|
398
|
+
"status.not_committed": "บรรทัดนี้ยังไม่ได้คอมมิต",
|
|
399
|
+
"status.loading_parent": "กำลังโหลด blame ที่ {hash}^...",
|
|
400
|
+
"status.cannot_go_back": "ไม่สามารถรับ blame ที่ {hash}^ (อาจเป็นคอมมิตแรกหรือไฟล์ไม่เคยมีอยู่)",
|
|
401
|
+
"status.blame_at_parent": "Git blame ที่ {hash}^ | ความลึก: {depth} | b: ลึกขึ้น | q: ปิด",
|
|
402
|
+
"status.hash_copied": "คัดลอกแล้ว: {short} ({full})",
|
|
403
|
+
"status.hash_display": "แฮช: {hash}",
|
|
404
|
+
"status.git_error": "ข้อผิดพลาด Git blame: {error}",
|
|
405
|
+
|
|
406
|
+
"time.just_now": "เมื่อกี้",
|
|
407
|
+
"time.minutes_ago": "{count} นาทีที่แล้ว",
|
|
408
|
+
"time.minutes_ago_plural": "{count} นาทีที่แล้ว",
|
|
409
|
+
"time.hours_ago": "{count} ชั่วโมงที่แล้ว",
|
|
410
|
+
"time.hours_ago_plural": "{count} ชั่วโมงที่แล้ว",
|
|
411
|
+
"time.days_ago": "{count} วันที่แล้ว",
|
|
412
|
+
"time.days_ago_plural": "{count} วันที่แล้ว",
|
|
413
|
+
"time.weeks_ago": "{count} สัปดาห์ที่แล้ว",
|
|
414
|
+
"time.weeks_ago_plural": "{count} สัปดาห์ที่แล้ว",
|
|
415
|
+
"time.months_ago": "{count} เดือนที่แล้ว",
|
|
416
|
+
"time.months_ago_plural": "{count} เดือนที่แล้ว",
|
|
417
|
+
"time.years_ago": "{count} ปีที่แล้ว",
|
|
418
|
+
"time.years_ago_plural": "{count} ปีที่แล้ว"
|
|
419
|
+
},
|
|
420
|
+
"uk": {
|
|
421
|
+
"cmd.git_blame": "Git Blame",
|
|
422
|
+
"cmd.git_blame_desc": "Pokazaty git blame dlya potochnoho failu (styl' magit)",
|
|
423
|
+
"cmd.git_blame_close": "Git Blame: Zakryty",
|
|
424
|
+
"cmd.git_blame_close_desc": "Zakryty panel' git blame",
|
|
425
|
+
"cmd.git_blame_go_back": "Git Blame: Nazad",
|
|
426
|
+
"cmd.git_blame_go_back_desc": "Pokazaty blame v bat'kivs'komu komiti potochnoho ryadka",
|
|
427
|
+
|
|
428
|
+
"status.already_open": "Git blame vzhe vidkryto",
|
|
429
|
+
"status.loading": "Zavantazhennya git blame...",
|
|
430
|
+
"status.no_file": "Nemaye vidkrytoho failu dlya blame",
|
|
431
|
+
"status.no_blame_info": "Nemaye informatsiyi blame (ne git fayl abo pomylka)",
|
|
432
|
+
"status.failed_open": "Ne vdalosya vidkryty panel' git blame",
|
|
433
|
+
"status.closed": "Git blame zakryto",
|
|
434
|
+
"status.blame_ready": "Git blame: {count} blokiv | b: blame v bat'ka | q: zakryty",
|
|
435
|
+
"status.move_to_line": "Spochatku peremistit' kursor na ryadok blame",
|
|
436
|
+
"status.not_committed": "Tsey ryadok shche ne zakomicheno",
|
|
437
|
+
"status.loading_parent": "Zavantazhennya blame v {hash}^...",
|
|
438
|
+
"status.cannot_go_back": "Ne vdalosya otrymaty blame v {hash}^ (mozhe buty pochatkovyy komit abo fayl ne isnuvav)",
|
|
439
|
+
"status.blame_at_parent": "Git blame v {hash}^ | hlybyna: {depth} | b: hlybshe | q: zakryty",
|
|
440
|
+
"status.hash_copied": "Skopiyovano: {short} ({full})",
|
|
441
|
+
"status.hash_display": "Khesh: {hash}",
|
|
442
|
+
"status.git_error": "Pomylka git blame: {error}",
|
|
443
|
+
|
|
444
|
+
"time.just_now": "shchoyno",
|
|
445
|
+
"time.minutes_ago": "{count} khvylynu tomu",
|
|
446
|
+
"time.minutes_ago_plural": "{count} khvylyn tomu",
|
|
447
|
+
"time.hours_ago": "{count} hodynu tomu",
|
|
448
|
+
"time.hours_ago_plural": "{count} hodyn tomu",
|
|
449
|
+
"time.days_ago": "{count} den' tomu",
|
|
450
|
+
"time.days_ago_plural": "{count} dniv tomu",
|
|
451
|
+
"time.weeks_ago": "{count} tyzhden' tomu",
|
|
452
|
+
"time.weeks_ago_plural": "{count} tyzhniv tomu",
|
|
453
|
+
"time.months_ago": "{count} misyats' tomu",
|
|
454
|
+
"time.months_ago_plural": "{count} misyatsiv tomu",
|
|
455
|
+
"time.years_ago": "{count} rik tomu",
|
|
456
|
+
"time.years_ago_plural": "{count} rokiv tomu"
|
|
457
|
+
},
|
|
458
|
+
"zh-CN": {
|
|
459
|
+
"cmd.git_blame": "Git Blame",
|
|
460
|
+
"cmd.git_blame_desc": "显示当前文件的git blame(magit风格)",
|
|
461
|
+
"cmd.git_blame_close": "Git Blame: 关闭",
|
|
462
|
+
"cmd.git_blame_close_desc": "关闭git blame面板",
|
|
463
|
+
"cmd.git_blame_go_back": "Git Blame: 返回",
|
|
464
|
+
"cmd.git_blame_go_back_desc": "显示当前行的父提交的blame",
|
|
465
|
+
|
|
466
|
+
"status.already_open": "Git blame已经打开",
|
|
467
|
+
"status.loading": "正在加载git blame...",
|
|
468
|
+
"status.no_file": "没有打开的文件可以blame",
|
|
469
|
+
"status.no_blame_info": "没有可用的blame信息(不是git文件或出错)",
|
|
470
|
+
"status.failed_open": "无法打开git blame面板",
|
|
471
|
+
"status.closed": "Git blame已关闭",
|
|
472
|
+
"status.blame_ready": "Git blame: {count}个块 | b: 在父提交blame | q: 关闭",
|
|
473
|
+
"status.move_to_line": "请先将光标移动到blame行",
|
|
474
|
+
"status.not_committed": "此行尚未提交",
|
|
475
|
+
"status.loading_parent": "正在加载{hash}^的blame...",
|
|
476
|
+
"status.cannot_go_back": "无法获取{hash}^的blame(可能是初始提交或文件不存在)",
|
|
477
|
+
"status.blame_at_parent": "Git blame {hash}^ | 深度: {depth} | b: 更深入 | q: 关闭",
|
|
478
|
+
"status.hash_copied": "已复制: {short} ({full})",
|
|
479
|
+
"status.hash_display": "哈希: {hash}",
|
|
480
|
+
"status.git_error": "Git blame错误: {error}",
|
|
481
|
+
|
|
482
|
+
"time.just_now": "刚刚",
|
|
483
|
+
"time.minutes_ago": "{count}分钟前",
|
|
484
|
+
"time.minutes_ago_plural": "{count}分钟前",
|
|
485
|
+
"time.hours_ago": "{count}小时前",
|
|
486
|
+
"time.hours_ago_plural": "{count}小时前",
|
|
487
|
+
"time.days_ago": "{count}天前",
|
|
488
|
+
"time.days_ago_plural": "{count}天前",
|
|
489
|
+
"time.weeks_ago": "{count}周前",
|
|
490
|
+
"time.weeks_ago_plural": "{count}周前",
|
|
491
|
+
"time.months_ago": "{count}个月前",
|
|
492
|
+
"time.months_ago_plural": "{count}个月前",
|
|
493
|
+
"time.years_ago": "{count}年前",
|
|
494
|
+
"time.years_ago_plural": "{count}年前"
|
|
495
|
+
}
|
|
496
|
+
}
|