@fresh-editor/fresh-editor 0.1.87 → 0.1.90
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/CHANGELOG.md +69 -0
- package/package.json +1 -1
- package/plugins/audit_mode.ts +6 -13
- package/plugins/clangd_support.i18n.json +26 -26
- package/plugins/config-schema.json +205 -116
- package/plugins/csharp_support.i18n.json +52 -52
- package/plugins/csharp_support.ts +214 -41
- package/plugins/examples/bookmarks.ts +4 -10
- package/plugins/examples/hello_world.ts +3 -10
- package/plugins/find_references.i18n.json +91 -91
- package/plugins/git_log.i18n.json +182 -182
- package/plugins/git_log.ts +70 -165
- package/plugins/lib/finder.ts +19 -80
- package/plugins/lib/fresh.d.ts +124 -5
- package/plugins/live_grep.i18n.json +39 -39
- package/plugins/markdown_compose.i18n.json +13 -13
- package/plugins/merge_conflict.i18n.json +143 -143
- package/plugins/merge_conflict.ts +8 -20
- package/plugins/pkg.i18n.json +314 -0
- package/plugins/pkg.ts +2514 -0
- package/plugins/schemas/package.schema.json +192 -0
- package/plugins/schemas/theme.schema.json +815 -0
- package/plugins/search_replace.i18n.json +143 -143
- package/plugins/theme_editor.i18n.json +92 -14
- package/plugins/theme_editor.ts +5 -5
- package/themes/dracula.json +26 -5
- package/plugins/calculator.i18n.json +0 -93
- package/plugins/calculator.ts +0 -769
- package/plugins/color_highlighter.i18n.json +0 -145
- package/plugins/color_highlighter.ts +0 -306
- package/plugins/csharp-lsp.ts +0 -147
- package/plugins/examples/git_grep.ts +0 -262
- package/plugins/todo_highlighter.i18n.json +0 -184
- package/plugins/todo_highlighter.ts +0 -206
|
@@ -5,18 +5,18 @@
|
|
|
5
5
|
"cmd.hide_references": "Skryt panel odkazu",
|
|
6
6
|
"cmd.hide_references_desc": "Zavrit panel odkazu",
|
|
7
7
|
"status.ready": "Plugin Najit odkazy nacten",
|
|
8
|
-
"status.no_references": "Zadne odkazy pro '{symbol}' nenalezeny",
|
|
9
|
-
"status.found_references": "Nalezeno {count} odkazu{limit} - Nahoru/Dolu navigace, RET skok, q zavrit",
|
|
10
|
-
"status.showing_first": " (zobrazuji prvnich {max})",
|
|
11
|
-
"status.reference_index": "Odkaz {current}
|
|
12
|
-
"status.jumped_to": "Skok na {file}
|
|
8
|
+
"status.no_references": "Zadne odkazy pro '%{symbol}' nenalezeny",
|
|
9
|
+
"status.found_references": "Nalezeno %{count} odkazu%{limit} - Nahoru/Dolu navigace, RET skok, q zavrit",
|
|
10
|
+
"status.showing_first": " (zobrazuji prvnich %{max})",
|
|
11
|
+
"status.reference_index": "Odkaz %{current}/%{total}",
|
|
12
|
+
"status.jumped_to": "Skok na %{file}:%{line}",
|
|
13
13
|
"status.no_references_to_jump": "Zadne odkazy k preskoceni",
|
|
14
14
|
"status.source_split_unavailable": "Rozdeleni zdroje neni k dispozici",
|
|
15
15
|
"status.move_cursor": "Presunte kurzor na radek odkazu",
|
|
16
16
|
"status.closed": "Panel odkazu zavren",
|
|
17
17
|
"status.failed_open_panel": "Nepodarilo se otevrit panel odkazu",
|
|
18
|
-
"panel.header": "Odkazy na {symbol} ({count}{limit})",
|
|
19
|
-
"panel.limited": ", omezeno na {max}",
|
|
18
|
+
"panel.header": "Odkazy na %{symbol} (%{count}%{limit})",
|
|
19
|
+
"panel.limited": ", omezeno na %{max}",
|
|
20
20
|
"panel.no_references": "Zadne odkazy nenalezeny",
|
|
21
21
|
"panel.help": "[Nahoru/Dolu] navigace [RET] skok [q/Esc] zavrit"
|
|
22
22
|
},
|
|
@@ -26,18 +26,18 @@
|
|
|
26
26
|
"cmd.hide_references": "Referenzen-Panel ausblenden",
|
|
27
27
|
"cmd.hide_references_desc": "Das Referenzen-Panel schliessen",
|
|
28
28
|
"status.ready": "Referenzen-Plugin geladen",
|
|
29
|
-
"status.no_references": "Keine Referenzen fur '{symbol}' gefunden",
|
|
30
|
-
"status.found_references": "{count} Referenz(en) gefunden{limit} - Auf/Ab navigieren, RET springen, q schliessen",
|
|
31
|
-
"status.showing_first": " (zeige erste {max})",
|
|
32
|
-
"status.reference_index": "Referenz {current}
|
|
33
|
-
"status.jumped_to": "Gesprungen zu {file}
|
|
29
|
+
"status.no_references": "Keine Referenzen fur '%{symbol}' gefunden",
|
|
30
|
+
"status.found_references": "%{count} Referenz(en) gefunden%{limit} - Auf/Ab navigieren, RET springen, q schliessen",
|
|
31
|
+
"status.showing_first": " (zeige erste %{max})",
|
|
32
|
+
"status.reference_index": "Referenz %{current}/%{total}",
|
|
33
|
+
"status.jumped_to": "Gesprungen zu %{file}:%{line}",
|
|
34
34
|
"status.no_references_to_jump": "Keine Referenzen zum Springen",
|
|
35
35
|
"status.source_split_unavailable": "Quell-Split nicht verfugbar",
|
|
36
36
|
"status.move_cursor": "Cursor auf eine Referenzzeile bewegen",
|
|
37
37
|
"status.closed": "Referenzen-Panel geschlossen",
|
|
38
38
|
"status.failed_open_panel": "Fehler beim Offnen des Referenzen-Panels",
|
|
39
|
-
"panel.header": "Referenzen zu {symbol} ({count}{limit})",
|
|
40
|
-
"panel.limited": ", begrenzt auf {max}",
|
|
39
|
+
"panel.header": "Referenzen zu %{symbol} (%{count}%{limit})",
|
|
40
|
+
"panel.limited": ", begrenzt auf %{max}",
|
|
41
41
|
"panel.no_references": "Keine Referenzen gefunden",
|
|
42
42
|
"panel.help": "[Auf/Ab] navigieren [RET] springen [q/Esc] schliessen"
|
|
43
43
|
},
|
|
@@ -47,18 +47,18 @@
|
|
|
47
47
|
"cmd.hide_references": "Hide References Panel",
|
|
48
48
|
"cmd.hide_references_desc": "Close the references panel",
|
|
49
49
|
"status.ready": "Find References plugin loaded",
|
|
50
|
-
"status.no_references": "No references found for '{symbol}'",
|
|
51
|
-
"status.found_references": "Found {count} reference(s){limit} - Up/Down navigate, RET jump, q close",
|
|
52
|
-
"status.showing_first": " (showing first {max})",
|
|
53
|
-
"status.reference_index": "Reference {current}
|
|
54
|
-
"status.jumped_to": "Jumped to {file}
|
|
50
|
+
"status.no_references": "No references found for '%{symbol}'",
|
|
51
|
+
"status.found_references": "Found %{count} reference(s)%{limit} - Up/Down navigate, RET jump, q close",
|
|
52
|
+
"status.showing_first": " (showing first %{max})",
|
|
53
|
+
"status.reference_index": "Reference %{current}/%{total}",
|
|
54
|
+
"status.jumped_to": "Jumped to %{file}:%{line}",
|
|
55
55
|
"status.no_references_to_jump": "No references to jump to",
|
|
56
56
|
"status.source_split_unavailable": "Source split not available",
|
|
57
57
|
"status.move_cursor": "Move cursor to a reference line",
|
|
58
58
|
"status.closed": "References panel closed",
|
|
59
59
|
"status.failed_open_panel": "Failed to open references panel",
|
|
60
|
-
"panel.header": "References to {symbol} ({count}{limit})",
|
|
61
|
-
"panel.limited": ", limited to {max}",
|
|
60
|
+
"panel.header": "References to %{symbol} (%{count}%{limit})",
|
|
61
|
+
"panel.limited": ", limited to %{max}",
|
|
62
62
|
"panel.no_references": "No references found",
|
|
63
63
|
"panel.help": "[Up/Down] navigate [RET] jump [q/Esc] close"
|
|
64
64
|
},
|
|
@@ -68,18 +68,18 @@
|
|
|
68
68
|
"cmd.hide_references": "Ocultar Panel de Referencias",
|
|
69
69
|
"cmd.hide_references_desc": "Cerrar el panel de referencias",
|
|
70
70
|
"status.ready": "Plugin Buscar Referencias cargado",
|
|
71
|
-
"status.no_references": "No se encontraron referencias para '{symbol}'",
|
|
72
|
-
"status.found_references": "Se encontraron {count} referencia(s){limit} - Arriba/Abajo navegar, RET saltar, q cerrar",
|
|
73
|
-
"status.showing_first": " (mostrando primeros {max})",
|
|
74
|
-
"status.reference_index": "Referencia {current}
|
|
75
|
-
"status.jumped_to": "Salto a {file}
|
|
71
|
+
"status.no_references": "No se encontraron referencias para '%{symbol}'",
|
|
72
|
+
"status.found_references": "Se encontraron %{count} referencia(s)%{limit} - Arriba/Abajo navegar, RET saltar, q cerrar",
|
|
73
|
+
"status.showing_first": " (mostrando primeros %{max})",
|
|
74
|
+
"status.reference_index": "Referencia %{current}/%{total}",
|
|
75
|
+
"status.jumped_to": "Salto a %{file}:%{line}",
|
|
76
76
|
"status.no_references_to_jump": "No hay referencias a las que saltar",
|
|
77
77
|
"status.source_split_unavailable": "Division de origen no disponible",
|
|
78
78
|
"status.move_cursor": "Mueve el cursor a una linea de referencia",
|
|
79
79
|
"status.closed": "Panel de referencias cerrado",
|
|
80
80
|
"status.failed_open_panel": "Error al abrir el panel de referencias",
|
|
81
|
-
"panel.header": "Referencias a {symbol} ({count}{limit})",
|
|
82
|
-
"panel.limited": ", limitado a {max}",
|
|
81
|
+
"panel.header": "Referencias a %{symbol} (%{count}%{limit})",
|
|
82
|
+
"panel.limited": ", limitado a %{max}",
|
|
83
83
|
"panel.no_references": "No se encontraron referencias",
|
|
84
84
|
"panel.help": "[Arriba/Abajo] navegar [RET] saltar [q/Esc] cerrar"
|
|
85
85
|
},
|
|
@@ -89,18 +89,18 @@
|
|
|
89
89
|
"cmd.hide_references": "Masquer le panneau des references",
|
|
90
90
|
"cmd.hide_references_desc": "Fermer le panneau des references",
|
|
91
91
|
"status.ready": "Plugin Trouver les References charge",
|
|
92
|
-
"status.no_references": "Aucune reference trouvee pour '{symbol}'",
|
|
93
|
-
"status.found_references": "{count} reference(s) trouvee(s){limit} - Haut/Bas naviguer, RET sauter, q fermer",
|
|
94
|
-
"status.showing_first": " (affichage des {max} premiers)",
|
|
95
|
-
"status.reference_index": "Reference {current}
|
|
96
|
-
"status.jumped_to": "Saute a {file}
|
|
92
|
+
"status.no_references": "Aucune reference trouvee pour '%{symbol}'",
|
|
93
|
+
"status.found_references": "%{count} reference(s) trouvee(s)%{limit} - Haut/Bas naviguer, RET sauter, q fermer",
|
|
94
|
+
"status.showing_first": " (affichage des %{max} premiers)",
|
|
95
|
+
"status.reference_index": "Reference %{current}/%{total}",
|
|
96
|
+
"status.jumped_to": "Saute a %{file}:%{line}",
|
|
97
97
|
"status.no_references_to_jump": "Aucune reference vers laquelle sauter",
|
|
98
98
|
"status.source_split_unavailable": "Panneau source non disponible",
|
|
99
99
|
"status.move_cursor": "Deplacez le curseur sur une ligne de reference",
|
|
100
100
|
"status.closed": "Panneau des references ferme",
|
|
101
101
|
"status.failed_open_panel": "Echec de l'ouverture du panneau des references",
|
|
102
|
-
"panel.header": "References a {symbol} ({count}{limit})",
|
|
103
|
-
"panel.limited": ", limite a {max}",
|
|
102
|
+
"panel.header": "References a %{symbol} (%{count}%{limit})",
|
|
103
|
+
"panel.limited": ", limite a %{max}",
|
|
104
104
|
"panel.no_references": "Aucune reference trouvee",
|
|
105
105
|
"panel.help": "[Haut/Bas] naviguer [RET] sauter [q/Esc] fermer"
|
|
106
106
|
},
|
|
@@ -110,18 +110,18 @@
|
|
|
110
110
|
"cmd.hide_references": "Nascondi pannello riferimenti",
|
|
111
111
|
"cmd.hide_references_desc": "Chiudi il pannello riferimenti",
|
|
112
112
|
"status.ready": "Plugin Trova riferimenti caricato",
|
|
113
|
-
"status.no_references": "Nessun riferimento trovato per '{symbol}'",
|
|
114
|
-
"status.found_references": "Trovati {count} riferimenti{limit} - Su/Giù naviga, RET vai a, q chiudi",
|
|
115
|
-
"status.showing_first": " (visualizzati i primi {max})",
|
|
116
|
-
"status.reference_index": "Riferimento {current}
|
|
117
|
-
"status.jumped_to": "Passato a {file}
|
|
113
|
+
"status.no_references": "Nessun riferimento trovato per '%{symbol}'",
|
|
114
|
+
"status.found_references": "Trovati %{count} riferimenti%{limit} - Su/Giù naviga, RET vai a, q chiudi",
|
|
115
|
+
"status.showing_first": " (visualizzati i primi %{max})",
|
|
116
|
+
"status.reference_index": "Riferimento %{current}/%{total}",
|
|
117
|
+
"status.jumped_to": "Passato a %{file}:%{line}",
|
|
118
118
|
"status.no_references_to_jump": "Nessun riferimento a cui passare",
|
|
119
119
|
"status.source_split_unavailable": "Split sorgente non disponibile",
|
|
120
120
|
"status.move_cursor": "Sposta il cursore su una riga di riferimento",
|
|
121
121
|
"status.closed": "Pannello riferimenti chiuso",
|
|
122
122
|
"status.failed_open_panel": "Impossibile aprire il pannello riferimenti",
|
|
123
|
-
"panel.header": "Riferimenti a {symbol} ({count}{limit})",
|
|
124
|
-
"panel.limited": ", limitati a {max}",
|
|
123
|
+
"panel.header": "Riferimenti a %{symbol} (%{count}%{limit})",
|
|
124
|
+
"panel.limited": ", limitati a %{max}",
|
|
125
125
|
"panel.no_references": "Nessun riferimento trovato",
|
|
126
126
|
"panel.help": "[Su/Giù] naviga [RET] vai a [q/Esc] chiudi"
|
|
127
127
|
},
|
|
@@ -131,18 +131,18 @@
|
|
|
131
131
|
"cmd.hide_references": "参照パネルを非表示",
|
|
132
132
|
"cmd.hide_references_desc": "参照パネルを閉じる",
|
|
133
133
|
"status.ready": "参照検索プラグインが読み込まれました",
|
|
134
|
-
"status.no_references": "'{symbol}' の参照が見つかりません",
|
|
135
|
-
"status.found_references": "{count}
|
|
136
|
-
"status.showing_first": " (最初の {max} 件を表示)",
|
|
137
|
-
"status.reference_index": "参照 {current}
|
|
138
|
-
"status.jumped_to": "{file}
|
|
134
|
+
"status.no_references": "'%{symbol}' の参照が見つかりません",
|
|
135
|
+
"status.found_references": "%{count} 件の参照が見つかりました%{limit} - 上/下で移動、RETでジャンプ、qで閉じる",
|
|
136
|
+
"status.showing_first": " (最初の %{max} 件を表示)",
|
|
137
|
+
"status.reference_index": "参照 %{current}/%{total}",
|
|
138
|
+
"status.jumped_to": "%{file}:%{line} にジャンプしました",
|
|
139
139
|
"status.no_references_to_jump": "ジャンプする参照がありません",
|
|
140
140
|
"status.source_split_unavailable": "ソース分割が利用できません",
|
|
141
141
|
"status.move_cursor": "カーソルを参照行に移動してください",
|
|
142
142
|
"status.closed": "参照パネルを閉じました",
|
|
143
143
|
"status.failed_open_panel": "参照パネルを開けませんでした",
|
|
144
|
-
"panel.header": "{symbol} への参照 ({count}{limit})",
|
|
145
|
-
"panel.limited": "、最大 {max} 件",
|
|
144
|
+
"panel.header": "%{symbol} への参照 (%{count}%{limit})",
|
|
145
|
+
"panel.limited": "、最大 %{max} 件",
|
|
146
146
|
"panel.no_references": "参照が見つかりません",
|
|
147
147
|
"panel.help": "[上/下] 移動 [RET] ジャンプ [q/Esc] 閉じる"
|
|
148
148
|
},
|
|
@@ -152,18 +152,18 @@
|
|
|
152
152
|
"cmd.hide_references": "참조 패널 숨기기",
|
|
153
153
|
"cmd.hide_references_desc": "참조 패널 닫기",
|
|
154
154
|
"status.ready": "참조 찾기 플러그인이 로드되었습니다",
|
|
155
|
-
"status.no_references": "'{symbol}'에 대한 참조를 찾을 수 없습니다",
|
|
156
|
-
"status.found_references": "{count}개의 참조를
|
|
157
|
-
"status.showing_first": " (처음 {max}개 표시)",
|
|
158
|
-
"status.reference_index": "참조 {current}
|
|
159
|
-
"status.jumped_to": "{file}
|
|
155
|
+
"status.no_references": "'%{symbol}'에 대한 참조를 찾을 수 없습니다",
|
|
156
|
+
"status.found_references": "%{count}개의 참조를 찾았습니다%{limit} - 위/아래 탐색, RET 이동, q 닫기",
|
|
157
|
+
"status.showing_first": " (처음 %{max}개 표시)",
|
|
158
|
+
"status.reference_index": "참조 %{current}/%{total}",
|
|
159
|
+
"status.jumped_to": "%{file}:%{line}(으)로 이동했습니다",
|
|
160
160
|
"status.no_references_to_jump": "이동할 참조가 없습니다",
|
|
161
161
|
"status.source_split_unavailable": "소스 분할을 사용할 수 없습니다",
|
|
162
162
|
"status.move_cursor": "커서를 참조 줄로 이동하세요",
|
|
163
163
|
"status.closed": "참조 패널이 닫혔습니다",
|
|
164
164
|
"status.failed_open_panel": "참조 패널을 열 수 없습니다",
|
|
165
|
-
"panel.header": "{symbol}에 대한 참조 ({count}{limit})",
|
|
166
|
-
"panel.limited": ", {max}개로 제한",
|
|
165
|
+
"panel.header": "%{symbol}에 대한 참조 (%{count}%{limit})",
|
|
166
|
+
"panel.limited": ", %{max}개로 제한",
|
|
167
167
|
"panel.no_references": "참조를 찾을 수 없습니다",
|
|
168
168
|
"panel.help": "[위/아래] 탐색 [RET] 이동 [q/Esc] 닫기"
|
|
169
169
|
},
|
|
@@ -173,18 +173,18 @@
|
|
|
173
173
|
"cmd.hide_references": "Ocultar Painel de Referencias",
|
|
174
174
|
"cmd.hide_references_desc": "Fechar o painel de referencias",
|
|
175
175
|
"status.ready": "Plugin Encontrar Referencias carregado",
|
|
176
|
-
"status.no_references": "Nenhuma referencia encontrada para '{symbol}'",
|
|
177
|
-
"status.found_references": "Encontradas {count} referencia(s){limit} - Cima/Baixo navegar, RET pular, q fechar",
|
|
178
|
-
"status.showing_first": " (mostrando primeiras {max})",
|
|
179
|
-
"status.reference_index": "Referencia {current}
|
|
180
|
-
"status.jumped_to": "Pulou para {file}
|
|
176
|
+
"status.no_references": "Nenhuma referencia encontrada para '%{symbol}'",
|
|
177
|
+
"status.found_references": "Encontradas %{count} referencia(s)%{limit} - Cima/Baixo navegar, RET pular, q fechar",
|
|
178
|
+
"status.showing_first": " (mostrando primeiras %{max})",
|
|
179
|
+
"status.reference_index": "Referencia %{current}/%{total}",
|
|
180
|
+
"status.jumped_to": "Pulou para %{file}:%{line}",
|
|
181
181
|
"status.no_references_to_jump": "Nenhuma referencia para pular",
|
|
182
182
|
"status.source_split_unavailable": "Divisao de origem nao disponivel",
|
|
183
183
|
"status.move_cursor": "Mova o cursor para uma linha de referencia",
|
|
184
184
|
"status.closed": "Painel de referencias fechado",
|
|
185
185
|
"status.failed_open_panel": "Falha ao abrir o painel de referencias",
|
|
186
|
-
"panel.header": "Referencias a {symbol} ({count}{limit})",
|
|
187
|
-
"panel.limited": ", limitado a {max}",
|
|
186
|
+
"panel.header": "Referencias a %{symbol} (%{count}%{limit})",
|
|
187
|
+
"panel.limited": ", limitado a %{max}",
|
|
188
188
|
"panel.no_references": "Nenhuma referencia encontrada",
|
|
189
189
|
"panel.help": "[Cima/Baixo] navegar [RET] pular [q/Esc] fechar"
|
|
190
190
|
},
|
|
@@ -194,18 +194,18 @@
|
|
|
194
194
|
"cmd.hide_references": "Скрыть панель ссылок",
|
|
195
195
|
"cmd.hide_references_desc": "Закрыть панель ссылок",
|
|
196
196
|
"status.ready": "Плагин поиска ссылок загружен",
|
|
197
|
-
"status.no_references": "Ссылки для '{symbol}' не найдены",
|
|
198
|
-
"status.found_references": "Найдено {count}
|
|
199
|
-
"status.showing_first": " (показаны первые {max})",
|
|
200
|
-
"status.reference_index": "Ссылка {current}
|
|
201
|
-
"status.jumped_to": "Переход к {file}
|
|
197
|
+
"status.no_references": "Ссылки для '%{symbol}' не найдены",
|
|
198
|
+
"status.found_references": "Найдено %{count} ссылок%{limit} - Вверх/Вниз навигация, RET переход, q закрыть",
|
|
199
|
+
"status.showing_first": " (показаны первые %{max})",
|
|
200
|
+
"status.reference_index": "Ссылка %{current}/%{total}",
|
|
201
|
+
"status.jumped_to": "Переход к %{file}:%{line}",
|
|
202
202
|
"status.no_references_to_jump": "Нет ссылок для перехода",
|
|
203
203
|
"status.source_split_unavailable": "Разделение источника недоступно",
|
|
204
204
|
"status.move_cursor": "Переместите курсор на строку ссылки",
|
|
205
205
|
"status.closed": "Панель ссылок закрыта",
|
|
206
206
|
"status.failed_open_panel": "Не удалось открыть панель ссылок",
|
|
207
|
-
"panel.header": "Ссылки на {symbol} ({count}{limit})",
|
|
208
|
-
"panel.limited": ", ограничено до {max}",
|
|
207
|
+
"panel.header": "Ссылки на %{symbol} (%{count}%{limit})",
|
|
208
|
+
"panel.limited": ", ограничено до %{max}",
|
|
209
209
|
"panel.no_references": "Ссылки не найдены",
|
|
210
210
|
"panel.help": "[Вверх/Вниз] навигация [RET] переход [q/Esc] закрыть"
|
|
211
211
|
},
|
|
@@ -215,18 +215,18 @@
|
|
|
215
215
|
"cmd.hide_references": "ซ่อนแผงการอ้างอิง",
|
|
216
216
|
"cmd.hide_references_desc": "ปิดแผงการอ้างอิง",
|
|
217
217
|
"status.ready": "โหลดปลั๊กอินค้นหาการอ้างอิงแล้ว",
|
|
218
|
-
"status.no_references": "ไม่พบการอ้างอิงสำหรับ '{symbol}'",
|
|
219
|
-
"status.found_references": "พบ {count}
|
|
220
|
-
"status.showing_first": " (แสดง {max} รายการแรก)",
|
|
221
|
-
"status.reference_index": "การอ้างอิง {current}
|
|
222
|
-
"status.jumped_to": "ข้ามไปที่ {file}
|
|
218
|
+
"status.no_references": "ไม่พบการอ้างอิงสำหรับ '%{symbol}'",
|
|
219
|
+
"status.found_references": "พบ %{count} การอ้างอิง%{limit} - ขึ้น/ลง นำทาง, RET ข้าม, q ปิด",
|
|
220
|
+
"status.showing_first": " (แสดง %{max} รายการแรก)",
|
|
221
|
+
"status.reference_index": "การอ้างอิง %{current}/%{total}",
|
|
222
|
+
"status.jumped_to": "ข้ามไปที่ %{file}:%{line}",
|
|
223
223
|
"status.no_references_to_jump": "ไม่มีการอ้างอิงให้ข้าม",
|
|
224
224
|
"status.source_split_unavailable": "การแยกแหล่งที่มาไม่พร้อมใช้งาน",
|
|
225
225
|
"status.move_cursor": "เลื่อนเคอร์เซอร์ไปที่บรรทัดการอ้างอิง",
|
|
226
226
|
"status.closed": "ปิดแผงการอ้างอิงแล้ว",
|
|
227
227
|
"status.failed_open_panel": "ไม่สามารถเปิดแผงการอ้างอิง",
|
|
228
|
-
"panel.header": "การอ้างอิงถึง {symbol} ({count}{limit})",
|
|
229
|
-
"panel.limited": ", จำกัด {max}",
|
|
228
|
+
"panel.header": "การอ้างอิงถึง %{symbol} (%{count}%{limit})",
|
|
229
|
+
"panel.limited": ", จำกัด %{max}",
|
|
230
230
|
"panel.no_references": "ไม่พบการอ้างอิง",
|
|
231
231
|
"panel.help": "[ขึ้น/ลง] นำทาง [RET] ข้าม [q/Esc] ปิด"
|
|
232
232
|
},
|
|
@@ -236,18 +236,18 @@
|
|
|
236
236
|
"cmd.hide_references": "Сховати панель посилань",
|
|
237
237
|
"cmd.hide_references_desc": "Закрити панель посилань",
|
|
238
238
|
"status.ready": "Плагін пошуку посилань завантажено",
|
|
239
|
-
"status.no_references": "Посилання для '{symbol}' не знайдено",
|
|
240
|
-
"status.found_references": "Знайдено {count}
|
|
241
|
-
"status.showing_first": " (показано перші {max})",
|
|
242
|
-
"status.reference_index": "Посилання {current}
|
|
243
|
-
"status.jumped_to": "Перехід до {file}
|
|
239
|
+
"status.no_references": "Посилання для '%{symbol}' не знайдено",
|
|
240
|
+
"status.found_references": "Знайдено %{count} посилань%{limit} - Вгору/Вниз навігація, RET перехід, q закрити",
|
|
241
|
+
"status.showing_first": " (показано перші %{max})",
|
|
242
|
+
"status.reference_index": "Посилання %{current}/%{total}",
|
|
243
|
+
"status.jumped_to": "Перехід до %{file}:%{line}",
|
|
244
244
|
"status.no_references_to_jump": "Немає посилань для переходу",
|
|
245
245
|
"status.source_split_unavailable": "Розділення джерела недоступне",
|
|
246
246
|
"status.move_cursor": "Перемістіть курсор на рядок посилання",
|
|
247
247
|
"status.closed": "Панель посилань закрито",
|
|
248
248
|
"status.failed_open_panel": "Не вдалося відкрити панель посилань",
|
|
249
|
-
"panel.header": "Посилання на {symbol} ({count}{limit})",
|
|
250
|
-
"panel.limited": ", обмежено до {max}",
|
|
249
|
+
"panel.header": "Посилання на %{symbol} (%{count}%{limit})",
|
|
250
|
+
"panel.limited": ", обмежено до %{max}",
|
|
251
251
|
"panel.no_references": "Посилання не знайдено",
|
|
252
252
|
"panel.help": "[Вгору/Вниз] навігація [RET] перехід [q/Esc] закрити"
|
|
253
253
|
},
|
|
@@ -257,18 +257,18 @@
|
|
|
257
257
|
"cmd.hide_references": "隐藏引用面板",
|
|
258
258
|
"cmd.hide_references_desc": "关闭引用面板",
|
|
259
259
|
"status.ready": "查找引用插件已加载",
|
|
260
|
-
"status.no_references": "未找到 '{symbol}' 的引用",
|
|
261
|
-
"status.found_references": "找到 {count}
|
|
262
|
-
"status.showing_first": " (显示前 {max} 个)",
|
|
263
|
-
"status.reference_index": "引用 {current}
|
|
264
|
-
"status.jumped_to": "跳转到 {file}
|
|
260
|
+
"status.no_references": "未找到 '%{symbol}' 的引用",
|
|
261
|
+
"status.found_references": "找到 %{count} 个引用%{limit} - 上/下导航,回车跳转,q 关闭",
|
|
262
|
+
"status.showing_first": " (显示前 %{max} 个)",
|
|
263
|
+
"status.reference_index": "引用 %{current}/%{total}",
|
|
264
|
+
"status.jumped_to": "跳转到 %{file}:%{line}",
|
|
265
265
|
"status.no_references_to_jump": "没有可跳转的引用",
|
|
266
266
|
"status.source_split_unavailable": "源分割不可用",
|
|
267
267
|
"status.move_cursor": "将光标移动到引用行",
|
|
268
268
|
"status.closed": "引用面板已关闭",
|
|
269
269
|
"status.failed_open_panel": "无法打开引用面板",
|
|
270
|
-
"panel.header": "{symbol} 的引用 ({count}{limit})",
|
|
271
|
-
"panel.limited": ",限制为 {max}",
|
|
270
|
+
"panel.header": "%{symbol} 的引用 (%{count}%{limit})",
|
|
271
|
+
"panel.limited": ",限制为 %{max}",
|
|
272
272
|
"panel.no_references": "未找到引用",
|
|
273
273
|
"panel.help": "[上/下] 导航 [回车] 跳转 [q/Esc] 关闭"
|
|
274
274
|
}
|